* cpu-h8300.c: Add support for MEMIND addressing mode
[deliverable/binutils-gdb.git] / bfd / libcoff.h
CommitLineData
3c8a3c56
JG
1/* BFD COFF object file private structure.
2 Copyright (C) 1990-1991 Free Software Foundation, Inc.
3 Written by Cygnus Support.
4a81b561 4
3c8a3c56 5This file is part of BFD, the Binary File Descriptor library.
4a81b561 6
3c8a3c56 7This program is free software; you can redistribute it and/or modify
4a81b561 8it under the terms of the GNU General Public License as published by
3c8a3c56
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
4a81b561 11
3c8a3c56 12This program is distributed in the hope that it will be useful,
4a81b561
DHW
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
3c8a3c56
JG
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
4a81b561 20
4a81b561 21
4a81b561
DHW
22/* Object file tdata; access macros */
23
3b4f1a5d
SC
24#define coff_data(bfd) ((coff_data_type *) ((bfd)->tdata))
25#define exec_hdr(bfd) (coff_data(bfd)->hdr)
26#define obj_symbols(bfd) (coff_data(bfd)->symbols)
27#define obj_sym_filepos(bfd) (coff_data(bfd)->sym_filepos)
3c8a3c56 28
3b4f1a5d
SC
29#define obj_relocbase(bfd) (coff_data(bfd)->relocbase)
30#define obj_raw_syments(bfd) (coff_data(bfd)->raw_syments)
31#define obj_convert(bfd) (coff_data(bfd)->conversion_table)
0cda46cf
SC
32#if CFILE_STUFF
33#define obj_symbol_slew(bfd) (coff_data(bfd)->symbol_index_slew)
34#else
35#define obj_symbol_slew(bfd) 0
36#endif
37
38#if 0
39typedef struct coff_ptr_struct
40{
41 unsigned int offset;
42 char fix_tag;
43 char fix_end;
44 union {
45 union internal_auxent auxent;
46 struct internal_syment syment;
47 } u;
48} combined_entry_type;
49
3c8a3c56 50
0cda46cf
SC
51typedef struct
52{
53 asymbol symbol;
54 combined_entry_type *native;
55 struct lineno_cache_entry *lineno;
56} coff_symbol_type;
57#endif
4a81b561 58
3b4f1a5d 59/* `Tdata' information kept for COFF files. */
3c8a3c56 60
3b4f1a5d
SC
61typedef struct coff_tdata
62{
63 struct coff_symbol_struct *symbols; /* symtab for input bfd */
4a81b561
DHW
64 unsigned int *conversion_table;
65 file_ptr sym_filepos;
66
67 long symbol_index_slew; /* used during read to mark whether a
68 C_FILE symbol as been added. */
69
3b4f1a5d 70 struct coff_ptr_struct *raw_syments;
4a81b561
DHW
71 struct lineno *raw_linenos;
72 unsigned int raw_syment_count;
9872a49c 73 unsigned short flags;
3b4f1a5d 74
4a81b561
DHW
75 /* These are only valid once writing has begun */
76 long int relocbase;
3b4f1a5d
SC
77
78 /* These members communicate important constants about the symbol table
79 to GDB's symbol-reading code. These `constants' unfortunately vary
80 from coff implementation to implementation... */
81 unsigned local_n_btmask;
82 unsigned local_n_btshft;
83 unsigned local_n_tmask;
84 unsigned local_n_tshift;
85 unsigned local_symesz;
86 unsigned local_auxesz;
87 unsigned local_linesz;
9872a49c 88} coff_data_type;
4a81b561 89
fc723380 90/* We take the address of the first element of a asymbol to ensure that the
4a81b561
DHW
91 * macro is only ever applied to an asymbol. */
92#define coffsymbol(asymbol) ((coff_symbol_type *)(&((asymbol)->the_bfd)))
fc723380
JG
93
94
3c8a3c56 95
c618de01 96/*THE FOLLOWING IS EXTRACTED FROM THE SOURCE*/
3c8a3c56 97
3b4f1a5d 98/*:coffcode.h*/
0cda46cf
SC
99typedef struct coff_ptr_struct
100{
101unsigned int offset;
102char fix_tag;
103char fix_end;
104union {
105 union internal_auxent auxent;
106 struct internal_syment syment;
107 } u;
108} combined_entry_type;
109typedef struct coff_symbol_struct
110{
111asymbol symbol;
112combined_entry_type *native;
113struct lineno_cache_entry *lineno;
114} coff_symbol_type;
c618de01 115
This page took 0.041056 seconds and 4 git commands to generate.