2 Copyright 2001 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #define T_VOID 1 /* function argument (only used by compiler) */
22 #define T_CHAR 2 /* character */
23 #define T_SHORT 3 /* short integer */
24 #define T_INT 4 /* integer */
25 #define T_LONG 5 /* long integer */
26 #define T_FLOAT 6 /* floating point */
27 #define T_DOUBLE 7 /* double word */
28 #define T_STRUCT 8 /* structure */
29 #define T_UNION 9 /* union */
30 #define T_ENUM 10 /* enumeration */
31 #define T_MOE 11 /* member of enumeration*/
32 #define T_UCHAR 12 /* unsigned character */
33 #define T_USHORT 13 /* unsigned short */
34 #define T_UINT 14 /* unsigned integer */
35 #define T_ULONG 15 /* unsigned long */
36 #define T_LNGDBL 16 /* long double */
42 struct coff_symbol *symbol;
52 int number; /* 0..n, .text = 0 */
55 struct coff_reloc *relocs;
56 struct sec *bfd_section;
62 struct coff_sfile *source_head;
63 struct coff_sfile *source_tail;
65 struct coff_section *sections;
66 struct coff_symbol *symbol_list_head;
67 struct coff_symbol *symbol_list_tail;
70 struct coff_isection {
74 struct coff_section *parent;
80 struct coff_scope *scope;
81 struct coff_sfile *next;
83 /* Vector which maps where in each output section
84 the input file has it's data */
85 struct coff_isection *section;
95 coff_pointer_type, coff_function_type, coff_array_type, coff_structdef_type, coff_basic_type,
96 coff_structref_type, coff_enumref_type, coff_enumdef_type, coff_secdef_type
109 struct coff_scope *elements;
115 struct coff_symbol *ref;
120 struct coff_scope *elements;
125 struct coff_symbol *ref;
130 struct coff_type *points_to;
135 struct coff_type *array_of;
140 struct coff_type *function_returns;
141 struct coff_scope *parameters;
142 struct coff_scope *code;
143 struct coff_line *lines;
145 int basic; /* One of T_VOID.. T_UINT */
160 struct coff_section *sec; /* What section */
161 int offset; /* where */
162 int size; /* How big */
163 struct coff_scope *parent; /* one up */
165 struct coff_scope *next; /*next along */
169 struct coff_symbol *vars_head; /* symbols */
170 struct coff_symbol *vars_tail;
172 struct coff_scope *list_head; /* children */
173 struct coff_scope *list_tail;
189 coff_vis_member_of_struct,
190 coff_vis_member_of_enum,
200 coff_where_stack, coff_where_memory, coff_where_register, coff_where_unknown,
201 coff_where_strtag, coff_where_member_of_struct,
202 coff_where_member_of_enum, coff_where_entag, coff_where_typedef
208 struct coff_section *section;
215 struct coff_type *type;
216 struct coff_where *where;
217 struct coff_visible *visible;
218 struct coff_symbol *next;
219 struct coff_symbol *next_in_ofile_list; /* For the ofile list */
222 struct coff_sfile *sfile;
225 struct coff_ofile *coff_grok PARAMS ((bfd *));