2 Copyright 2001, 2002, 2003, 2005, 2007 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 3 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., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
22 #define T_VOID 1 /* function argument (only used by compiler) */
23 #define T_CHAR 2 /* character */
24 #define T_SHORT 3 /* short integer */
25 #define T_INT 4 /* integer */
26 #define T_LONG 5 /* long integer */
27 #define T_FLOAT 6 /* floating point */
28 #define T_DOUBLE 7 /* double word */
29 #define T_STRUCT 8 /* structure */
30 #define T_UNION 9 /* union */
31 #define T_ENUM 10 /* enumeration */
32 #define T_MOE 11 /* member of enumeration*/
33 #define T_UCHAR 12 /* unsigned character */
34 #define T_USHORT 13 /* unsigned short */
35 #define T_UINT 14 /* unsigned integer */
36 #define T_ULONG 15 /* unsigned long */
37 #define T_LNGDBL 16 /* long double */
43 struct coff_symbol
*symbol
;
53 int number
; /* 0..n, .text = 0 */
56 struct coff_reloc
*relocs
;
57 struct bfd_section
*bfd_section
;
63 struct coff_sfile
*source_head
;
64 struct coff_sfile
*source_tail
;
66 struct coff_section
*sections
;
67 struct coff_symbol
*symbol_list_head
;
68 struct coff_symbol
*symbol_list_tail
;
71 struct coff_isection
{
75 struct coff_section
*parent
;
81 struct coff_scope
*scope
;
82 struct coff_sfile
*next
;
84 /* Vector which maps where in each output section
85 the input file has it's data */
86 struct coff_isection
*section
;
96 coff_pointer_type
, coff_function_type
, coff_array_type
, coff_structdef_type
, coff_basic_type
,
97 coff_structref_type
, coff_enumref_type
, coff_enumdef_type
, coff_secdef_type
110 struct coff_scope
*elements
;
116 struct coff_symbol
*ref
;
121 struct coff_scope
*elements
;
126 struct coff_symbol
*ref
;
131 struct coff_type
*points_to
;
136 struct coff_type
*array_of
;
141 struct coff_type
*function_returns
;
142 struct coff_scope
*parameters
;
143 struct coff_scope
*code
;
144 struct coff_line
*lines
;
146 int basic
; /* One of T_VOID.. T_UINT */
161 struct coff_section
*sec
; /* What section */
162 int offset
; /* where */
163 int size
; /* How big */
164 struct coff_scope
*parent
; /* one up */
166 struct coff_scope
*next
; /*next along */
170 struct coff_symbol
*vars_head
; /* symbols */
171 struct coff_symbol
*vars_tail
;
173 struct coff_scope
*list_head
; /* children */
174 struct coff_scope
*list_tail
;
190 coff_vis_member_of_struct
,
191 coff_vis_member_of_enum
,
201 coff_where_stack
, coff_where_memory
, coff_where_register
, coff_where_unknown
,
202 coff_where_strtag
, coff_where_member_of_struct
,
203 coff_where_member_of_enum
, coff_where_entag
, coff_where_typedef
209 struct coff_section
*section
;
216 struct coff_type
*type
;
217 struct coff_where
*where
;
218 struct coff_visible
*visible
;
219 struct coff_symbol
*next
;
220 struct coff_symbol
*next_in_ofile_list
; /* For the ofile list */
223 struct coff_sfile
*sfile
;
226 struct coff_ofile
*coff_grok
PARAMS ((bfd
*));