2 Copyright (C) 2001-2016 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
;
76 struct coff_section
*parent
;
82 struct coff_scope
*scope
;
83 struct coff_sfile
*next
;
85 /* Vector which maps where in each output section
86 the input file has it's data. */
87 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
110 struct coff_scope
*elements
;
116 struct coff_symbol
*ref
;
121 struct coff_scope
*elements
;
127 struct coff_symbol
*ref
;
132 struct coff_type
*points_to
;
138 struct coff_type
*array_of
;
143 struct coff_type
* function_returns
;
144 struct coff_scope
* parameters
;
145 struct coff_scope
* code
;
146 struct coff_line
* lines
;
149 int basic
; /* One of T_VOID.. T_UINT */
162 struct coff_section
* sec
; /* Which section. */
163 int offset
; /* Where. */
164 int size
; /* How big. */
165 struct coff_scope
* parent
; /* One up. */
166 struct coff_scope
* next
; /* Next along. */
168 struct coff_symbol
* vars_head
; /* Symbols. */
169 struct coff_symbol
* vars_tail
;
170 struct coff_scope
* list_head
; /* Children. */
171 struct coff_scope
* list_tail
;
185 coff_vis_member_of_struct
,
186 coff_vis_member_of_enum
,
196 coff_where_stack
, coff_where_memory
, coff_where_register
, coff_where_unknown
,
197 coff_where_strtag
, coff_where_member_of_struct
,
198 coff_where_member_of_enum
, coff_where_entag
, coff_where_typedef
204 struct coff_section
*section
;
211 struct coff_type
* type
;
212 struct coff_where
* where
;
213 struct coff_visible
* visible
;
214 struct coff_symbol
* next
;
215 struct coff_symbol
* next_in_ofile_list
; /* For the ofile list. */
218 struct coff_sfile
* sfile
;
221 struct coff_ofile
* coff_grok (bfd
*);