]>
Commit | Line | Data |
---|---|---|
35f5886e | 1 | /* DWARF debugging format support for GDB. |
1ab3bf1b JG |
2 | Copyright (C) 1991, 1992 Free Software Foundation, Inc. |
3 | Written by Fred Fish at Cygnus Support. Portions based on dbxread.c, | |
35f5886e FF |
4 | mipsread.c, coffread.c, and dwarfread.c from a Data General SVR4 gdb port. |
5 | ||
6 | This file is part of GDB. | |
7 | ||
8 | This program is free software; you can redistribute it and/or modify | |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
12 | ||
13 | This program is distributed in the hope that it will be useful, | |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
21 | ||
22 | /* | |
23 | ||
24 | FIXME: Figure out how to get the frame pointer register number in the | |
25 | execution environment of the target. Remove R_FP kludge | |
26 | ||
27 | FIXME: Add generation of dependencies list to partial symtab code. | |
28 | ||
35f5886e FF |
29 | FIXME: Resolve minor differences between what information we put in the |
30 | partial symbol table and what dbxread puts in. For example, we don't yet | |
31 | put enum constants there. And dbxread seems to invent a lot of typedefs | |
32 | we never see. Use the new printpsym command to see the partial symbol table | |
33 | contents. | |
34 | ||
35f5886e FF |
35 | FIXME: Figure out a better way to tell gdb about the name of the function |
36 | contain the user's entry point (I.E. main()) | |
37 | ||
35f5886e FF |
38 | FIXME: See other FIXME's and "ifdef 0" scattered throughout the code for |
39 | other things to work on, if you get bored. :-) | |
40 | ||
41 | */ | |
4d315a07 | 42 | |
d747e0af | 43 | #include "defs.h" |
313fdead | 44 | #include <varargs.h> |
35f5886e | 45 | #include <fcntl.h> |
84ffdec2 | 46 | #include <string.h> |
35f5886e | 47 | |
35f5886e FF |
48 | #include "bfd.h" |
49 | #include "symtab.h" | |
1ab3bf1b | 50 | #include "gdbtypes.h" |
35f5886e | 51 | #include "symfile.h" |
5e2e79f8 | 52 | #include "objfiles.h" |
13b5a7ff | 53 | #include "libbfd.h" /* FIXME Secret Internal BFD stuff (bfd_read) */ |
f5f0679a | 54 | #include "elf/dwarf.h" |
4d315a07 | 55 | #include "buildsym.h" |
35f5886e FF |
56 | |
57 | #ifdef MAINTENANCE /* Define to 1 to compile in some maintenance stuff */ | |
58 | #define SQUAWK(stuff) dwarfwarn stuff | |
59 | #else | |
60 | #define SQUAWK(stuff) | |
61 | #endif | |
62 | ||
63 | #ifndef R_FP /* FIXME */ | |
64 | #define R_FP 14 /* Kludge to get frame pointer register number */ | |
65 | #endif | |
66 | ||
13b5a7ff | 67 | typedef unsigned int DIE_REF; /* Reference to a DIE */ |
35f5886e | 68 | |
4d315a07 FF |
69 | #ifndef GCC_PRODUCER |
70 | #define GCC_PRODUCER "GNU C " | |
71 | #endif | |
35f5886e FF |
72 | |
73 | #define STREQ(a,b) (strcmp(a,b)==0) | |
4d315a07 | 74 | #define STREQN(a,b,n) (strncmp(a,b,n)==0) |
35f5886e | 75 | |
13b5a7ff FF |
76 | /* Flags to target_to_host() that tell whether or not the data object is |
77 | expected to be signed. Used, for example, when fetching a signed | |
78 | integer in the target environment which is used as a signed integer | |
79 | in the host environment, and the two environments have different sized | |
80 | ints. In this case, *somebody* has to sign extend the smaller sized | |
81 | int. */ | |
82 | ||
83 | #define GET_UNSIGNED 0 /* No sign extension required */ | |
84 | #define GET_SIGNED 1 /* Sign extension required */ | |
85 | ||
86 | /* Defines for things which are specified in the document "DWARF Debugging | |
87 | Information Format" published by UNIX International, Programming Languages | |
88 | SIG. These defines are based on revision 1.0.0, Jan 20, 1992. */ | |
89 | ||
90 | #define SIZEOF_DIE_LENGTH 4 | |
91 | #define SIZEOF_DIE_TAG 2 | |
92 | #define SIZEOF_ATTRIBUTE 2 | |
93 | #define SIZEOF_FORMAT_SPECIFIER 1 | |
94 | #define SIZEOF_FMT_FT 2 | |
95 | #define SIZEOF_LINETBL_LENGTH 4 | |
96 | #define SIZEOF_LINETBL_LINENO 4 | |
97 | #define SIZEOF_LINETBL_STMT 2 | |
98 | #define SIZEOF_LINETBL_DELTA 4 | |
99 | #define SIZEOF_LOC_ATOM_CODE 1 | |
100 | ||
101 | #define FORM_FROM_ATTR(attr) ((attr) & 0xF) /* Implicitly specified */ | |
102 | ||
103 | /* Macros that return the sizes of various types of data in the target | |
104 | environment. | |
105 | ||
2d6d969c FF |
106 | FIXME: Currently these are just compile time constants (as they are in |
107 | other parts of gdb as well). They need to be able to get the right size | |
108 | either from the bfd or possibly from the DWARF info. It would be nice if | |
109 | the DWARF producer inserted DIES that describe the fundamental types in | |
110 | the target environment into the DWARF info, similar to the way dbx stabs | |
111 | producers produce information about their fundamental types. */ | |
112 | ||
113 | #define TARGET_FT_POINTER_SIZE(objfile) (TARGET_PTR_BIT / TARGET_CHAR_BIT) | |
114 | #define TARGET_FT_LONG_SIZE(objfile) (TARGET_LONG_BIT / TARGET_CHAR_BIT) | |
95967e73 | 115 | |
768be6e1 FF |
116 | /* The Amiga SVR4 header file <dwarf.h> defines AT_element_list as a |
117 | FORM_BLOCK2, and this is the value emitted by the AT&T compiler. | |
118 | However, the Issue 2 DWARF specification from AT&T defines it as | |
119 | a FORM_BLOCK4, as does the latest specification from UI/PLSIG. | |
120 | For backwards compatibility with the AT&T compiler produced executables | |
121 | we define AT_short_element_list for this variant. */ | |
122 | ||
123 | #define AT_short_element_list (0x00f0|FORM_BLOCK2) | |
124 | ||
125 | /* External variables referenced. */ | |
126 | ||
35f5886e | 127 | extern int info_verbose; /* From main.c; nonzero => verbose */ |
318bf84f | 128 | extern char *warning_pre_print; /* From utils.c */ |
35f5886e FF |
129 | |
130 | /* The DWARF debugging information consists of two major pieces, | |
131 | one is a block of DWARF Information Entries (DIE's) and the other | |
132 | is a line number table. The "struct dieinfo" structure contains | |
133 | the information for a single DIE, the one currently being processed. | |
134 | ||
135 | In order to make it easier to randomly access the attribute fields | |
13b5a7ff | 136 | of the current DIE, which are specifically unordered within the DIE, |
35f5886e FF |
137 | each DIE is scanned and an instance of the "struct dieinfo" |
138 | structure is initialized. | |
139 | ||
140 | Initialization is done in two levels. The first, done by basicdieinfo(), | |
141 | just initializes those fields that are vital to deciding whether or not | |
142 | to use this DIE, how to skip past it, etc. The second, done by the | |
143 | function completedieinfo(), fills in the rest of the information. | |
144 | ||
145 | Attributes which have block forms are not interpreted at the time | |
146 | the DIE is scanned, instead we just save pointers to the start | |
147 | of their value fields. | |
148 | ||
149 | Some fields have a flag <name>_p that is set when the value of the | |
150 | field is valid (I.E. we found a matching attribute in the DIE). Since | |
151 | we may want to test for the presence of some attributes in the DIE, | |
2d6186f4 | 152 | such as AT_low_pc, without restricting the values of the field, |
35f5886e FF |
153 | we need someway to note that we found such an attribute. |
154 | ||
155 | */ | |
156 | ||
157 | typedef char BLOCK; | |
158 | ||
159 | struct dieinfo { | |
13b5a7ff FF |
160 | char * die; /* Pointer to the raw DIE data */ |
161 | unsigned long die_length; /* Length of the raw DIE data */ | |
162 | DIE_REF die_ref; /* Offset of this DIE */ | |
163 | unsigned short die_tag; /* Tag for this DIE */ | |
164 | unsigned long at_padding; | |
165 | unsigned long at_sibling; | |
166 | BLOCK * at_location; | |
167 | char * at_name; | |
168 | unsigned short at_fund_type; | |
169 | BLOCK * at_mod_fund_type; | |
170 | unsigned long at_user_def_type; | |
171 | BLOCK * at_mod_u_d_type; | |
172 | unsigned short at_ordering; | |
173 | BLOCK * at_subscr_data; | |
174 | unsigned long at_byte_size; | |
175 | unsigned short at_bit_offset; | |
176 | unsigned long at_bit_size; | |
177 | BLOCK * at_element_list; | |
178 | unsigned long at_stmt_list; | |
179 | unsigned long at_low_pc; | |
180 | unsigned long at_high_pc; | |
181 | unsigned long at_language; | |
182 | unsigned long at_member; | |
183 | unsigned long at_discr; | |
184 | BLOCK * at_discr_value; | |
185 | unsigned short at_visibility; | |
186 | unsigned long at_import; | |
187 | BLOCK * at_string_length; | |
188 | char * at_comp_dir; | |
189 | char * at_producer; | |
190 | unsigned long at_frame_base; | |
191 | unsigned long at_start_scope; | |
192 | unsigned long at_stride_size; | |
193 | unsigned long at_src_info; | |
194 | char * at_prototyped; | |
195 | unsigned int has_at_low_pc:1; | |
196 | unsigned int has_at_stmt_list:1; | |
197 | unsigned int short_element_list:1; | |
35f5886e FF |
198 | }; |
199 | ||
200 | static int diecount; /* Approximate count of dies for compilation unit */ | |
201 | static struct dieinfo *curdie; /* For warnings and such */ | |
202 | ||
203 | static char *dbbase; /* Base pointer to dwarf info */ | |
204 | static int dbroff; /* Relative offset from start of .debug section */ | |
205 | static char *lnbase; /* Base pointer to line section */ | |
206 | static int isreg; /* Kludge to identify register variables */ | |
a5bd5ba6 | 207 | static int offreg; /* Kludge to identify basereg references */ |
35f5886e FF |
208 | |
209 | static CORE_ADDR baseaddr; /* Add to each symbol value */ | |
210 | ||
211 | /* Each partial symbol table entry contains a pointer to private data for the | |
212 | read_symtab() function to use when expanding a partial symbol table entry | |
213 | to a full symbol table entry. For DWARF debugging info, this data is | |
214 | contained in the following structure and macros are provided for easy | |
215 | access to the members given a pointer to a partial symbol table entry. | |
216 | ||
217 | dbfoff Always the absolute file offset to the start of the ".debug" | |
218 | section for the file containing the DIE's being accessed. | |
219 | ||
220 | dbroff Relative offset from the start of the ".debug" access to the | |
221 | first DIE to be accessed. When building the partial symbol | |
222 | table, this value will be zero since we are accessing the | |
223 | entire ".debug" section. When expanding a partial symbol | |
224 | table entry, this value will be the offset to the first | |
225 | DIE for the compilation unit containing the symbol that | |
226 | triggers the expansion. | |
227 | ||
228 | dblength The size of the chunk of DIE's being examined, in bytes. | |
229 | ||
230 | lnfoff The absolute file offset to the line table fragment. Ignored | |
231 | when building partial symbol tables, but used when expanding | |
232 | them, and contains the absolute file offset to the fragment | |
233 | of the ".line" section containing the line numbers for the | |
234 | current compilation unit. | |
235 | */ | |
236 | ||
237 | struct dwfinfo { | |
238 | int dbfoff; /* Absolute file offset to start of .debug section */ | |
239 | int dbroff; /* Relative offset from start of .debug section */ | |
240 | int dblength; /* Size of the chunk of DIE's being examined */ | |
241 | int lnfoff; /* Absolute file offset to line table fragment */ | |
242 | }; | |
243 | ||
244 | #define DBFOFF(p) (((struct dwfinfo *)((p)->read_symtab_private))->dbfoff) | |
245 | #define DBROFF(p) (((struct dwfinfo *)((p)->read_symtab_private))->dbroff) | |
246 | #define DBLENGTH(p) (((struct dwfinfo *)((p)->read_symtab_private))->dblength) | |
247 | #define LNFOFF(p) (((struct dwfinfo *)((p)->read_symtab_private))->lnfoff) | |
248 | ||
4d315a07 FF |
249 | /* The generic symbol table building routines have separate lists for |
250 | file scope symbols and all all other scopes (local scopes). So | |
251 | we need to select the right one to pass to add_symbol_to_list(). | |
252 | We do it by keeping a pointer to the correct list in list_in_scope. | |
35f5886e | 253 | |
4d315a07 FF |
254 | FIXME: The original dwarf code just treated the file scope as the first |
255 | local scope, and all other local scopes as nested local scopes, and worked | |
256 | fine. Check to see if we really need to distinguish these in buildsym.c */ | |
35f5886e | 257 | |
99140c31 | 258 | struct pending **list_in_scope = &file_symbols; |
35f5886e FF |
259 | |
260 | /* DIES which have user defined types or modified user defined types refer to | |
261 | other DIES for the type information. Thus we need to associate the offset | |
262 | of a DIE for a user defined type with a pointer to the type information. | |
263 | ||
264 | Originally this was done using a simple but expensive algorithm, with an | |
265 | array of unsorted structures, each containing an offset/type-pointer pair. | |
266 | This array was scanned linearly each time a lookup was done. The result | |
267 | was that gdb was spending over half it's startup time munging through this | |
268 | array of pointers looking for a structure that had the right offset member. | |
269 | ||
270 | The second attempt used the same array of structures, but the array was | |
271 | sorted using qsort each time a new offset/type was recorded, and a binary | |
272 | search was used to find the type pointer for a given DIE offset. This was | |
273 | even slower, due to the overhead of sorting the array each time a new | |
274 | offset/type pair was entered. | |
275 | ||
276 | The third attempt uses a fixed size array of type pointers, indexed by a | |
277 | value derived from the DIE offset. Since the minimum DIE size is 4 bytes, | |
278 | we can divide any DIE offset by 4 to obtain a unique index into this fixed | |
279 | size array. Since each element is a 4 byte pointer, it takes exactly as | |
280 | much memory to hold this array as to hold the DWARF info for a given | |
281 | compilation unit. But it gets freed as soon as we are done with it. */ | |
282 | ||
283 | static struct type **utypes; /* Pointer to array of user type pointers */ | |
284 | static int numutypes; /* Max number of user type pointers */ | |
285 | ||
286 | /* Forward declarations of static functions so we don't have to worry | |
1ab3bf1b JG |
287 | about ordering within this file. */ |
288 | ||
13b5a7ff FF |
289 | static int |
290 | attribute_size PARAMS ((unsigned int)); | |
291 | ||
292 | static unsigned long | |
293 | target_to_host PARAMS ((char *, int, int, struct objfile *)); | |
95967e73 | 294 | |
1ab3bf1b JG |
295 | static void |
296 | add_enum_psymbol PARAMS ((struct dieinfo *, struct objfile *)); | |
297 | ||
298 | static void | |
299 | read_file_scope PARAMS ((struct dieinfo *, char *, char *, struct objfile *)); | |
35f5886e | 300 | |
58050209 | 301 | static void |
1ab3bf1b | 302 | read_func_scope PARAMS ((struct dieinfo *, char *, char *, struct objfile *)); |
35f5886e FF |
303 | |
304 | static void | |
1ab3bf1b JG |
305 | read_lexical_block_scope PARAMS ((struct dieinfo *, char *, char *, |
306 | struct objfile *)); | |
35f5886e FF |
307 | |
308 | static void | |
1ab3bf1b | 309 | dwarfwarn (); |
4d315a07 | 310 | |
35f5886e | 311 | static void |
1ab3bf1b | 312 | scan_partial_symbols PARAMS ((char *, char *, struct objfile *)); |
35f5886e | 313 | |
35f5886e | 314 | static void |
1ab3bf1b JG |
315 | scan_compilation_units PARAMS ((char *, char *, char *, unsigned int, |
316 | unsigned int, struct objfile *)); | |
35f5886e FF |
317 | |
318 | static void | |
1ab3bf1b | 319 | add_partial_symbol PARAMS ((struct dieinfo *, struct objfile *)); |
35f5886e FF |
320 | |
321 | static void | |
1ab3bf1b | 322 | init_psymbol_list PARAMS ((struct objfile *, int)); |
35f5886e FF |
323 | |
324 | static void | |
95967e73 | 325 | basicdieinfo PARAMS ((struct dieinfo *, char *, struct objfile *)); |
35f5886e FF |
326 | |
327 | static void | |
95967e73 | 328 | completedieinfo PARAMS ((struct dieinfo *, struct objfile *)); |
1ab3bf1b JG |
329 | |
330 | static void | |
331 | dwarf_psymtab_to_symtab PARAMS ((struct partial_symtab *)); | |
332 | ||
333 | static void | |
334 | psymtab_to_symtab_1 PARAMS ((struct partial_symtab *)); | |
35f5886e FF |
335 | |
336 | static struct symtab * | |
1ab3bf1b | 337 | read_ofile_symtab PARAMS ((struct partial_symtab *)); |
35f5886e FF |
338 | |
339 | static void | |
1ab3bf1b | 340 | process_dies PARAMS ((char *, char *, struct objfile *)); |
35f5886e FF |
341 | |
342 | static void | |
1ab3bf1b JG |
343 | read_structure_scope PARAMS ((struct dieinfo *, char *, char *, |
344 | struct objfile *)); | |
35f5886e FF |
345 | |
346 | static struct type * | |
84ffdec2 | 347 | decode_array_element_type PARAMS ((char *)); |
35f5886e FF |
348 | |
349 | static struct type * | |
1ab3bf1b | 350 | decode_subscr_data PARAMS ((char *, char *)); |
35f5886e FF |
351 | |
352 | static void | |
1ab3bf1b | 353 | dwarf_read_array_type PARAMS ((struct dieinfo *)); |
35f5886e | 354 | |
9e4c1921 | 355 | static void |
1ab3bf1b | 356 | read_tag_pointer_type PARAMS ((struct dieinfo *dip)); |
9e4c1921 | 357 | |
35f5886e | 358 | static void |
1ab3bf1b | 359 | read_subroutine_type PARAMS ((struct dieinfo *, char *, char *)); |
35f5886e FF |
360 | |
361 | static void | |
1ab3bf1b | 362 | read_enumeration PARAMS ((struct dieinfo *, char *, char *, struct objfile *)); |
35f5886e FF |
363 | |
364 | static struct type * | |
1ab3bf1b | 365 | struct_type PARAMS ((struct dieinfo *, char *, char *, struct objfile *)); |
35f5886e FF |
366 | |
367 | static struct type * | |
1ab3bf1b | 368 | enum_type PARAMS ((struct dieinfo *, struct objfile *)); |
35f5886e | 369 | |
35f5886e | 370 | static void |
1ab3bf1b | 371 | decode_line_numbers PARAMS ((char *)); |
35f5886e FF |
372 | |
373 | static struct type * | |
1ab3bf1b | 374 | decode_die_type PARAMS ((struct dieinfo *)); |
35f5886e FF |
375 | |
376 | static struct type * | |
1ab3bf1b | 377 | decode_mod_fund_type PARAMS ((char *)); |
35f5886e FF |
378 | |
379 | static struct type * | |
1ab3bf1b | 380 | decode_mod_u_d_type PARAMS ((char *)); |
35f5886e FF |
381 | |
382 | static struct type * | |
1c92ca6f | 383 | decode_modified_type PARAMS ((char *, unsigned int, int)); |
35f5886e FF |
384 | |
385 | static struct type * | |
1ab3bf1b | 386 | decode_fund_type PARAMS ((unsigned int)); |
35f5886e FF |
387 | |
388 | static char * | |
1ab3bf1b | 389 | create_name PARAMS ((char *, struct obstack *)); |
35f5886e | 390 | |
35f5886e | 391 | static struct type * |
13b5a7ff | 392 | lookup_utype PARAMS ((DIE_REF)); |
35f5886e FF |
393 | |
394 | static struct type * | |
13b5a7ff | 395 | alloc_utype PARAMS ((DIE_REF, struct type *)); |
35f5886e FF |
396 | |
397 | static struct symbol * | |
1ab3bf1b | 398 | new_symbol PARAMS ((struct dieinfo *, struct objfile *)); |
35f5886e FF |
399 | |
400 | static int | |
1ab3bf1b | 401 | locval PARAMS ((char *)); |
35f5886e FF |
402 | |
403 | static void | |
1ab3bf1b JG |
404 | record_minimal_symbol PARAMS ((char *, CORE_ADDR, enum minimal_symbol_type, |
405 | struct objfile *)); | |
35f5886e FF |
406 | |
407 | /* | |
408 | ||
409 | GLOBAL FUNCTION | |
410 | ||
411 | dwarf_build_psymtabs -- build partial symtabs from DWARF debug info | |
412 | ||
413 | SYNOPSIS | |
414 | ||
415 | void dwarf_build_psymtabs (int desc, char *filename, CORE_ADDR addr, | |
416 | int mainline, unsigned int dbfoff, unsigned int dbsize, | |
a048c8f5 JG |
417 | unsigned int lnoffset, unsigned int lnsize, |
418 | struct objfile *objfile) | |
35f5886e FF |
419 | |
420 | DESCRIPTION | |
421 | ||
422 | This function is called upon to build partial symtabs from files | |
423 | containing DIE's (Dwarf Information Entries) and DWARF line numbers. | |
424 | ||
425 | It is passed a file descriptor for an open file containing the DIES | |
426 | and line number information, the corresponding filename for that | |
427 | file, a base address for relocating the symbols, a flag indicating | |
428 | whether or not this debugging information is from a "main symbol | |
429 | table" rather than a shared library or dynamically linked file, | |
430 | and file offset/size pairs for the DIE information and line number | |
431 | information. | |
432 | ||
433 | RETURNS | |
434 | ||
435 | No return value. | |
436 | ||
437 | */ | |
438 | ||
439 | void | |
1ab3bf1b JG |
440 | dwarf_build_psymtabs (desc, filename, addr, mainline, dbfoff, dbsize, |
441 | lnoffset, lnsize, objfile) | |
442 | int desc; | |
443 | char *filename; | |
444 | CORE_ADDR addr; | |
445 | int mainline; | |
446 | unsigned int dbfoff; | |
447 | unsigned int dbsize; | |
448 | unsigned int lnoffset; | |
449 | unsigned int lnsize; | |
450 | struct objfile *objfile; | |
35f5886e FF |
451 | { |
452 | struct cleanup *back_to; | |
453 | ||
95967e73 | 454 | current_objfile = objfile; |
35f5886e FF |
455 | dbbase = xmalloc (dbsize); |
456 | dbroff = 0; | |
457 | if ((lseek (desc, dbfoff, 0) != dbfoff) || | |
458 | (read (desc, dbbase, dbsize) != dbsize)) | |
459 | { | |
460 | free (dbbase); | |
461 | error ("can't read DWARF data from '%s'", filename); | |
462 | } | |
463 | back_to = make_cleanup (free, dbbase); | |
464 | ||
465 | /* If we are reinitializing, or if we have never loaded syms yet, init. | |
466 | Since we have no idea how many DIES we are looking at, we just guess | |
467 | some arbitrary value. */ | |
468 | ||
13b5a7ff FF |
469 | if (mainline || objfile -> global_psymbols.size == 0 || |
470 | objfile -> static_psymbols.size == 0) | |
35f5886e | 471 | { |
1ab3bf1b | 472 | init_psymbol_list (objfile, 1024); |
35f5886e FF |
473 | } |
474 | ||
84ffdec2 | 475 | /* Save the relocation factor where everybody can see it. */ |
f8b76e70 | 476 | |
84ffdec2 | 477 | baseaddr = addr; |
f8b76e70 | 478 | |
35f5886e FF |
479 | /* Follow the compilation unit sibling chain, building a partial symbol |
480 | table entry for each one. Save enough information about each compilation | |
481 | unit to locate the full DWARF information later. */ | |
482 | ||
4d315a07 | 483 | scan_compilation_units (filename, dbbase, dbbase + dbsize, |
a048c8f5 | 484 | dbfoff, lnoffset, objfile); |
35f5886e | 485 | |
35f5886e | 486 | do_cleanups (back_to); |
95967e73 | 487 | current_objfile = NULL; |
35f5886e FF |
488 | } |
489 | ||
490 | ||
491 | /* | |
492 | ||
493 | LOCAL FUNCTION | |
494 | ||
1ab3bf1b | 495 | record_minimal_symbol -- add entry to gdb's minimal symbol table |
35f5886e FF |
496 | |
497 | SYNOPSIS | |
498 | ||
1ab3bf1b JG |
499 | static void record_minimal_symbol (char *name, CORE_ADDR address, |
500 | enum minimal_symbol_type ms_type, | |
501 | struct objfile *objfile) | |
35f5886e FF |
502 | |
503 | DESCRIPTION | |
504 | ||
505 | Given a pointer to the name of a symbol that should be added to the | |
1ab3bf1b | 506 | minimal symbol table, and the address associated with that |
35f5886e | 507 | symbol, records this information for later use in building the |
1ab3bf1b | 508 | minimal symbol table. |
35f5886e | 509 | |
35f5886e FF |
510 | */ |
511 | ||
512 | static void | |
1ab3bf1b JG |
513 | record_minimal_symbol (name, address, ms_type, objfile) |
514 | char *name; | |
515 | CORE_ADDR address; | |
516 | enum minimal_symbol_type ms_type; | |
517 | struct objfile *objfile; | |
35f5886e | 518 | { |
1ab3bf1b JG |
519 | name = obsavestring (name, strlen (name), &objfile -> symbol_obstack); |
520 | prim_record_minimal_symbol (name, address, ms_type); | |
35f5886e FF |
521 | } |
522 | ||
523 | /* | |
524 | ||
525 | LOCAL FUNCTION | |
526 | ||
527 | dwarfwarn -- issue a DWARF related warning | |
528 | ||
529 | DESCRIPTION | |
530 | ||
531 | Issue warnings about DWARF related things that aren't serious enough | |
532 | to warrant aborting with an error, but should not be ignored either. | |
533 | This includes things like detectable corruption in DIE's, missing | |
534 | DIE's, unimplemented features, etc. | |
535 | ||
536 | In general, running across tags or attributes that we don't recognize | |
537 | is not considered to be a problem and we should not issue warnings | |
538 | about such. | |
539 | ||
540 | NOTES | |
541 | ||
542 | We mostly follow the example of the error() routine, but without | |
543 | returning to command level. It is arguable about whether warnings | |
544 | should be issued at all, and if so, where they should go (stdout or | |
545 | stderr). | |
546 | ||
547 | We assume that curdie is valid and contains at least the basic | |
548 | information for the DIE where the problem was noticed. | |
549 | */ | |
550 | ||
551 | static void | |
313fdead JG |
552 | dwarfwarn (va_alist) |
553 | va_dcl | |
35f5886e FF |
554 | { |
555 | va_list ap; | |
313fdead | 556 | char *fmt; |
35f5886e | 557 | |
313fdead JG |
558 | va_start (ap); |
559 | fmt = va_arg (ap, char *); | |
35f5886e | 560 | warning_setup (); |
13b5a7ff | 561 | fprintf (stderr, "warning: DWARF ref 0x%x: ", curdie -> die_ref); |
35f5886e FF |
562 | if (curdie -> at_name) |
563 | { | |
564 | fprintf (stderr, "'%s': ", curdie -> at_name); | |
565 | } | |
566 | vfprintf (stderr, fmt, ap); | |
567 | fprintf (stderr, "\n"); | |
568 | fflush (stderr); | |
569 | va_end (ap); | |
570 | } | |
4d315a07 | 571 | |
35f5886e FF |
572 | /* |
573 | ||
574 | LOCAL FUNCTION | |
575 | ||
576 | read_lexical_block_scope -- process all dies in a lexical block | |
577 | ||
578 | SYNOPSIS | |
579 | ||
580 | static void read_lexical_block_scope (struct dieinfo *dip, | |
581 | char *thisdie, char *enddie) | |
582 | ||
583 | DESCRIPTION | |
584 | ||
585 | Process all the DIES contained within a lexical block scope. | |
586 | Start a new scope, process the dies, and then close the scope. | |
587 | ||
588 | */ | |
589 | ||
590 | static void | |
1ab3bf1b JG |
591 | read_lexical_block_scope (dip, thisdie, enddie, objfile) |
592 | struct dieinfo *dip; | |
593 | char *thisdie; | |
594 | char *enddie; | |
595 | struct objfile *objfile; | |
35f5886e | 596 | { |
4d315a07 FF |
597 | register struct context_stack *new; |
598 | ||
599 | (void) push_context (0, dip -> at_low_pc); | |
13b5a7ff | 600 | process_dies (thisdie + dip -> die_length, enddie, objfile); |
4d315a07 FF |
601 | new = pop_context (); |
602 | if (local_symbols != NULL) | |
603 | { | |
604 | finish_block (0, &local_symbols, new -> old_blocks, new -> start_addr, | |
1ab3bf1b | 605 | dip -> at_high_pc, objfile); |
4d315a07 FF |
606 | } |
607 | local_symbols = new -> locals; | |
35f5886e FF |
608 | } |
609 | ||
610 | /* | |
611 | ||
612 | LOCAL FUNCTION | |
613 | ||
614 | lookup_utype -- look up a user defined type from die reference | |
615 | ||
616 | SYNOPSIS | |
617 | ||
13b5a7ff | 618 | static type *lookup_utype (DIE_REF die_ref) |
35f5886e FF |
619 | |
620 | DESCRIPTION | |
621 | ||
622 | Given a DIE reference, lookup the user defined type associated with | |
623 | that DIE, if it has been registered already. If not registered, then | |
624 | return NULL. Alloc_utype() can be called to register an empty | |
625 | type for this reference, which will be filled in later when the | |
626 | actual referenced DIE is processed. | |
627 | */ | |
628 | ||
629 | static struct type * | |
13b5a7ff FF |
630 | lookup_utype (die_ref) |
631 | DIE_REF die_ref; | |
35f5886e FF |
632 | { |
633 | struct type *type = NULL; | |
634 | int utypeidx; | |
635 | ||
13b5a7ff | 636 | utypeidx = (die_ref - dbroff) / 4; |
35f5886e FF |
637 | if ((utypeidx < 0) || (utypeidx >= numutypes)) |
638 | { | |
13b5a7ff | 639 | dwarfwarn ("reference to DIE (0x%x) outside compilation unit", die_ref); |
35f5886e FF |
640 | } |
641 | else | |
642 | { | |
643 | type = *(utypes + utypeidx); | |
644 | } | |
645 | return (type); | |
646 | } | |
647 | ||
648 | ||
649 | /* | |
650 | ||
651 | LOCAL FUNCTION | |
652 | ||
653 | alloc_utype -- add a user defined type for die reference | |
654 | ||
655 | SYNOPSIS | |
656 | ||
13b5a7ff | 657 | static type *alloc_utype (DIE_REF die_ref, struct type *utypep) |
35f5886e FF |
658 | |
659 | DESCRIPTION | |
660 | ||
13b5a7ff | 661 | Given a die reference DIE_REF, and a possible pointer to a user |
35f5886e FF |
662 | defined type UTYPEP, register that this reference has a user |
663 | defined type and either use the specified type in UTYPEP or | |
664 | make a new empty type that will be filled in later. | |
665 | ||
666 | We should only be called after calling lookup_utype() to verify that | |
13b5a7ff | 667 | there is not currently a type registered for DIE_REF. |
35f5886e FF |
668 | */ |
669 | ||
670 | static struct type * | |
13b5a7ff FF |
671 | alloc_utype (die_ref, utypep) |
672 | DIE_REF die_ref; | |
1ab3bf1b | 673 | struct type *utypep; |
35f5886e FF |
674 | { |
675 | struct type **typep; | |
676 | int utypeidx; | |
677 | ||
13b5a7ff | 678 | utypeidx = (die_ref - dbroff) / 4; |
35f5886e FF |
679 | typep = utypes + utypeidx; |
680 | if ((utypeidx < 0) || (utypeidx >= numutypes)) | |
681 | { | |
1ab3bf1b | 682 | utypep = lookup_fundamental_type (current_objfile, FT_INTEGER); |
13b5a7ff | 683 | dwarfwarn ("reference to DIE (0x%x) outside compilation unit", die_ref); |
35f5886e FF |
684 | } |
685 | else if (*typep != NULL) | |
686 | { | |
687 | utypep = *typep; | |
688 | SQUAWK (("internal error: dup user type allocation")); | |
689 | } | |
690 | else | |
691 | { | |
692 | if (utypep == NULL) | |
693 | { | |
694 | utypep = (struct type *) | |
1ab3bf1b JG |
695 | obstack_alloc (¤t_objfile -> type_obstack, |
696 | sizeof (struct type)); | |
35f5886e | 697 | (void) memset (utypep, 0, sizeof (struct type)); |
1ab3bf1b | 698 | TYPE_OBJFILE (utypep) = current_objfile; |
35f5886e FF |
699 | } |
700 | *typep = utypep; | |
701 | } | |
702 | return (utypep); | |
703 | } | |
704 | ||
705 | /* | |
706 | ||
707 | LOCAL FUNCTION | |
708 | ||
709 | decode_die_type -- return a type for a specified die | |
710 | ||
711 | SYNOPSIS | |
712 | ||
713 | static struct type *decode_die_type (struct dieinfo *dip) | |
714 | ||
715 | DESCRIPTION | |
716 | ||
717 | Given a pointer to a die information structure DIP, decode the | |
718 | type of the die and return a pointer to the decoded type. All | |
719 | dies without specific types default to type int. | |
720 | */ | |
721 | ||
722 | static struct type * | |
1ab3bf1b JG |
723 | decode_die_type (dip) |
724 | struct dieinfo *dip; | |
35f5886e FF |
725 | { |
726 | struct type *type = NULL; | |
727 | ||
728 | if (dip -> at_fund_type != 0) | |
729 | { | |
730 | type = decode_fund_type (dip -> at_fund_type); | |
731 | } | |
732 | else if (dip -> at_mod_fund_type != NULL) | |
733 | { | |
734 | type = decode_mod_fund_type (dip -> at_mod_fund_type); | |
735 | } | |
736 | else if (dip -> at_user_def_type) | |
737 | { | |
738 | if ((type = lookup_utype (dip -> at_user_def_type)) == NULL) | |
739 | { | |
740 | type = alloc_utype (dip -> at_user_def_type, NULL); | |
741 | } | |
742 | } | |
743 | else if (dip -> at_mod_u_d_type) | |
744 | { | |
745 | type = decode_mod_u_d_type (dip -> at_mod_u_d_type); | |
746 | } | |
747 | else | |
748 | { | |
1ab3bf1b | 749 | type = lookup_fundamental_type (current_objfile, FT_INTEGER); |
35f5886e FF |
750 | } |
751 | return (type); | |
752 | } | |
753 | ||
754 | /* | |
755 | ||
756 | LOCAL FUNCTION | |
757 | ||
758 | struct_type -- compute and return the type for a struct or union | |
759 | ||
760 | SYNOPSIS | |
761 | ||
762 | static struct type *struct_type (struct dieinfo *dip, char *thisdie, | |
8b5b6fae | 763 | char *enddie, struct objfile *objfile) |
35f5886e FF |
764 | |
765 | DESCRIPTION | |
766 | ||
767 | Given pointer to a die information structure for a die which | |
715cafcb FF |
768 | defines a union or structure (and MUST define one or the other), |
769 | and pointers to the raw die data that define the range of dies which | |
770 | define the members, compute and return the user defined type for the | |
771 | structure or union. | |
35f5886e FF |
772 | */ |
773 | ||
774 | static struct type * | |
1ab3bf1b JG |
775 | struct_type (dip, thisdie, enddie, objfile) |
776 | struct dieinfo *dip; | |
777 | char *thisdie; | |
778 | char *enddie; | |
779 | struct objfile *objfile; | |
35f5886e FF |
780 | { |
781 | struct type *type; | |
782 | struct nextfield { | |
783 | struct nextfield *next; | |
784 | struct field field; | |
785 | }; | |
786 | struct nextfield *list = NULL; | |
787 | struct nextfield *new; | |
788 | int nfields = 0; | |
789 | int n; | |
790 | char *tpart1; | |
35f5886e | 791 | struct dieinfo mbr; |
8b5b6fae | 792 | char *nextdie; |
35f5886e | 793 | |
13b5a7ff | 794 | if ((type = lookup_utype (dip -> die_ref)) == NULL) |
35f5886e | 795 | { |
5edf98d7 | 796 | /* No forward references created an empty type, so install one now */ |
13b5a7ff | 797 | type = alloc_utype (dip -> die_ref, NULL); |
35f5886e | 798 | } |
a3723a43 | 799 | INIT_CPLUS_SPECIFIC(type); |
13b5a7ff | 800 | switch (dip -> die_tag) |
35f5886e | 801 | { |
715cafcb | 802 | case TAG_structure_type: |
5edf98d7 | 803 | TYPE_CODE (type) = TYPE_CODE_STRUCT; |
715cafcb FF |
804 | tpart1 = "struct"; |
805 | break; | |
806 | case TAG_union_type: | |
807 | TYPE_CODE (type) = TYPE_CODE_UNION; | |
808 | tpart1 = "union"; | |
809 | break; | |
810 | default: | |
811 | /* Should never happen */ | |
812 | TYPE_CODE (type) = TYPE_CODE_UNDEF; | |
813 | tpart1 = "???"; | |
814 | SQUAWK (("missing structure or union tag")); | |
815 | break; | |
35f5886e | 816 | } |
5edf98d7 FF |
817 | /* Some compilers try to be helpful by inventing "fake" names for |
818 | anonymous enums, structures, and unions, like "~0fake" or ".0fake". | |
819 | Thanks, but no thanks... */ | |
715cafcb FF |
820 | if (dip -> at_name != NULL |
821 | && *dip -> at_name != '~' | |
822 | && *dip -> at_name != '.') | |
35f5886e | 823 | { |
95967e73 | 824 | TYPE_NAME (type) = obconcat (&objfile -> type_obstack, |
1ab3bf1b | 825 | tpart1, " ", dip -> at_name); |
35f5886e | 826 | } |
715cafcb | 827 | if (dip -> at_byte_size != 0) |
35f5886e | 828 | { |
35f5886e | 829 | TYPE_LENGTH (type) = dip -> at_byte_size; |
35f5886e | 830 | } |
13b5a7ff | 831 | thisdie += dip -> die_length; |
35f5886e FF |
832 | while (thisdie < enddie) |
833 | { | |
95967e73 FF |
834 | basicdieinfo (&mbr, thisdie, objfile); |
835 | completedieinfo (&mbr, objfile); | |
13b5a7ff | 836 | if (mbr.die_length <= SIZEOF_DIE_LENGTH) |
35f5886e FF |
837 | { |
838 | break; | |
839 | } | |
8b5b6fae FF |
840 | else if (mbr.at_sibling != 0) |
841 | { | |
842 | nextdie = dbbase + mbr.at_sibling - dbroff; | |
843 | } | |
844 | else | |
845 | { | |
13b5a7ff | 846 | nextdie = thisdie + mbr.die_length; |
8b5b6fae | 847 | } |
13b5a7ff | 848 | switch (mbr.die_tag) |
35f5886e FF |
849 | { |
850 | case TAG_member: | |
851 | /* Get space to record the next field's data. */ | |
852 | new = (struct nextfield *) alloca (sizeof (struct nextfield)); | |
853 | new -> next = list; | |
854 | list = new; | |
855 | /* Save the data. */ | |
856 | list -> field.name = savestring (mbr.at_name, strlen (mbr.at_name)); | |
857 | list -> field.type = decode_die_type (&mbr); | |
858 | list -> field.bitpos = 8 * locval (mbr.at_location); | |
4db8e515 FF |
859 | /* Handle bit fields. */ |
860 | list -> field.bitsize = mbr.at_bit_size; | |
861 | #if BITS_BIG_ENDIAN | |
862 | /* For big endian bits, the at_bit_offset gives the additional | |
863 | bit offset from the MSB of the containing anonymous object to | |
864 | the MSB of the field. We don't have to do anything special | |
865 | since we don't need to know the size of the anonymous object. */ | |
866 | list -> field.bitpos += mbr.at_bit_offset; | |
867 | #else | |
868 | /* For little endian bits, we need to have a non-zero at_bit_size, | |
869 | so that we know we are in fact dealing with a bitfield. Compute | |
870 | the bit offset to the MSB of the anonymous object, subtract off | |
871 | the number of bits from the MSB of the field to the MSB of the | |
872 | object, and then subtract off the number of bits of the field | |
873 | itself. The result is the bit offset of the LSB of the field. */ | |
874 | if (mbr.at_bit_size > 0) | |
875 | { | |
876 | list -> field.bitpos += | |
877 | mbr.at_byte_size * 8 - mbr.at_bit_offset - mbr.at_bit_size; | |
878 | } | |
879 | #endif | |
35f5886e FF |
880 | nfields++; |
881 | break; | |
882 | default: | |
8b5b6fae | 883 | process_dies (thisdie, nextdie, objfile); |
35f5886e FF |
884 | break; |
885 | } | |
8b5b6fae | 886 | thisdie = nextdie; |
35f5886e | 887 | } |
5edf98d7 FF |
888 | /* Now create the vector of fields, and record how big it is. We may |
889 | not even have any fields, if this DIE was generated due to a reference | |
890 | to an anonymous structure or union. In this case, TYPE_FLAG_STUB is | |
891 | set, which clues gdb in to the fact that it needs to search elsewhere | |
892 | for the full structure definition. */ | |
893 | if (nfields == 0) | |
35f5886e | 894 | { |
5edf98d7 FF |
895 | TYPE_FLAGS (type) |= TYPE_FLAG_STUB; |
896 | } | |
897 | else | |
898 | { | |
899 | TYPE_NFIELDS (type) = nfields; | |
900 | TYPE_FIELDS (type) = (struct field *) | |
95967e73 | 901 | obstack_alloc (&objfile -> type_obstack, |
1ab3bf1b | 902 | sizeof (struct field) * nfields); |
5edf98d7 FF |
903 | /* Copy the saved-up fields into the field vector. */ |
904 | for (n = nfields; list; list = list -> next) | |
905 | { | |
906 | TYPE_FIELD (type, --n) = list -> field; | |
907 | } | |
908 | } | |
35f5886e FF |
909 | return (type); |
910 | } | |
911 | ||
912 | /* | |
913 | ||
914 | LOCAL FUNCTION | |
915 | ||
916 | read_structure_scope -- process all dies within struct or union | |
917 | ||
918 | SYNOPSIS | |
919 | ||
920 | static void read_structure_scope (struct dieinfo *dip, | |
8b5b6fae | 921 | char *thisdie, char *enddie, struct objfile *objfile) |
35f5886e FF |
922 | |
923 | DESCRIPTION | |
924 | ||
925 | Called when we find the DIE that starts a structure or union | |
926 | scope (definition) to process all dies that define the members | |
927 | of the structure or union. DIP is a pointer to the die info | |
928 | struct for the DIE that names the structure or union. | |
929 | ||
930 | NOTES | |
931 | ||
932 | Note that we need to call struct_type regardless of whether or not | |
84ce6717 FF |
933 | the DIE has an at_name attribute, since it might be an anonymous |
934 | structure or union. This gets the type entered into our set of | |
935 | user defined types. | |
936 | ||
937 | However, if the structure is incomplete (an opaque struct/union) | |
938 | then suppress creating a symbol table entry for it since gdb only | |
939 | wants to find the one with the complete definition. Note that if | |
940 | it is complete, we just call new_symbol, which does it's own | |
941 | checking about whether the struct/union is anonymous or not (and | |
942 | suppresses creating a symbol table entry itself). | |
943 | ||
35f5886e FF |
944 | */ |
945 | ||
946 | static void | |
1ab3bf1b JG |
947 | read_structure_scope (dip, thisdie, enddie, objfile) |
948 | struct dieinfo *dip; | |
949 | char *thisdie; | |
950 | char *enddie; | |
951 | struct objfile *objfile; | |
35f5886e FF |
952 | { |
953 | struct type *type; | |
954 | struct symbol *sym; | |
955 | ||
8b5b6fae | 956 | type = struct_type (dip, thisdie, enddie, objfile); |
84ce6717 | 957 | if (!(TYPE_FLAGS (type) & TYPE_FLAG_STUB)) |
35f5886e | 958 | { |
1ab3bf1b | 959 | if ((sym = new_symbol (dip, objfile)) != NULL) |
84ce6717 FF |
960 | { |
961 | SYMBOL_TYPE (sym) = type; | |
962 | } | |
35f5886e FF |
963 | } |
964 | } | |
965 | ||
966 | /* | |
967 | ||
968 | LOCAL FUNCTION | |
969 | ||
970 | decode_array_element_type -- decode type of the array elements | |
971 | ||
972 | SYNOPSIS | |
973 | ||
974 | static struct type *decode_array_element_type (char *scan, char *end) | |
975 | ||
976 | DESCRIPTION | |
977 | ||
978 | As the last step in decoding the array subscript information for an | |
979 | array DIE, we need to decode the type of the array elements. We are | |
980 | passed a pointer to this last part of the subscript information and | |
981 | must return the appropriate type. If the type attribute is not | |
982 | recognized, just warn about the problem and return type int. | |
983 | */ | |
984 | ||
985 | static struct type * | |
84ffdec2 | 986 | decode_array_element_type (scan) |
1ab3bf1b | 987 | char *scan; |
35f5886e FF |
988 | { |
989 | struct type *typep; | |
13b5a7ff FF |
990 | DIE_REF die_ref; |
991 | unsigned short attribute; | |
35f5886e | 992 | unsigned short fundtype; |
13b5a7ff | 993 | int nbytes; |
35f5886e | 994 | |
13b5a7ff FF |
995 | attribute = target_to_host (scan, SIZEOF_ATTRIBUTE, GET_UNSIGNED, |
996 | current_objfile); | |
997 | scan += SIZEOF_ATTRIBUTE; | |
998 | if ((nbytes = attribute_size (attribute)) == -1) | |
999 | { | |
35f5886e | 1000 | SQUAWK (("bad array element type attribute 0x%x", attribute)); |
1ab3bf1b | 1001 | typep = lookup_fundamental_type (current_objfile, FT_INTEGER); |
13b5a7ff FF |
1002 | } |
1003 | else | |
1004 | { | |
1005 | switch (attribute) | |
1006 | { | |
1007 | case AT_fund_type: | |
1008 | fundtype = target_to_host (scan, nbytes, GET_UNSIGNED, | |
1009 | current_objfile); | |
1010 | typep = decode_fund_type (fundtype); | |
1011 | break; | |
1012 | case AT_mod_fund_type: | |
1013 | typep = decode_mod_fund_type (scan); | |
1014 | break; | |
1015 | case AT_user_def_type: | |
1016 | die_ref = target_to_host (scan, nbytes, GET_UNSIGNED, | |
1017 | current_objfile); | |
1018 | if ((typep = lookup_utype (die_ref)) == NULL) | |
1019 | { | |
1020 | typep = alloc_utype (die_ref, NULL); | |
1021 | } | |
1022 | break; | |
1023 | case AT_mod_u_d_type: | |
1024 | typep = decode_mod_u_d_type (scan); | |
1025 | break; | |
1026 | default: | |
1027 | SQUAWK (("bad array element type attribute 0x%x", attribute)); | |
1028 | typep = lookup_fundamental_type (current_objfile, FT_INTEGER); | |
1029 | break; | |
1030 | } | |
35f5886e FF |
1031 | } |
1032 | return (typep); | |
1033 | } | |
1034 | ||
1035 | /* | |
1036 | ||
1037 | LOCAL FUNCTION | |
1038 | ||
1039 | decode_subscr_data -- decode array subscript and element type data | |
1040 | ||
1041 | SYNOPSIS | |
1042 | ||
1043 | static struct type *decode_subscr_data (char *scan, char *end) | |
1044 | ||
1045 | DESCRIPTION | |
1046 | ||
1047 | The array subscripts and the data type of the elements of an | |
1048 | array are described by a list of data items, stored as a block | |
1049 | of contiguous bytes. There is a data item describing each array | |
1050 | dimension, and a final data item describing the element type. | |
1051 | The data items are ordered the same as their appearance in the | |
1052 | source (I.E. leftmost dimension first, next to leftmost second, | |
1053 | etc). | |
1054 | ||
1055 | We are passed a pointer to the start of the block of bytes | |
1056 | containing the data items, and a pointer to the first byte past | |
1057 | the data. This function decodes the data and returns a type. | |
1058 | ||
1059 | BUGS | |
1060 | FIXME: This code only implements the forms currently used | |
1061 | by the AT&T and GNU C compilers. | |
1062 | ||
1063 | The end pointer is supplied for error checking, maybe we should | |
1064 | use it for that... | |
1065 | */ | |
1066 | ||
1067 | static struct type * | |
1ab3bf1b JG |
1068 | decode_subscr_data (scan, end) |
1069 | char *scan; | |
1070 | char *end; | |
35f5886e FF |
1071 | { |
1072 | struct type *typep = NULL; | |
1073 | struct type *nexttype; | |
13b5a7ff FF |
1074 | unsigned int format; |
1075 | unsigned short fundtype; | |
1076 | unsigned long lowbound; | |
1077 | unsigned long highbound; | |
1078 | int nbytes; | |
35f5886e | 1079 | |
13b5a7ff FF |
1080 | format = target_to_host (scan, SIZEOF_FORMAT_SPECIFIER, GET_UNSIGNED, |
1081 | current_objfile); | |
1082 | scan += SIZEOF_FORMAT_SPECIFIER; | |
35f5886e FF |
1083 | switch (format) |
1084 | { | |
1085 | case FMT_ET: | |
84ffdec2 | 1086 | typep = decode_array_element_type (scan); |
35f5886e FF |
1087 | break; |
1088 | case FMT_FT_C_C: | |
13b5a7ff FF |
1089 | fundtype = target_to_host (scan, SIZEOF_FMT_FT, GET_UNSIGNED, |
1090 | current_objfile); | |
1091 | scan += SIZEOF_FMT_FT; | |
35f5886e FF |
1092 | if (fundtype != FT_integer && fundtype != FT_signed_integer |
1093 | && fundtype != FT_unsigned_integer) | |
1094 | { | |
1095 | SQUAWK (("array subscripts must be integral types, not type 0x%x", | |
13b5a7ff | 1096 | fundtype)); |
35f5886e FF |
1097 | } |
1098 | else | |
1099 | { | |
13b5a7ff FF |
1100 | nbytes = TARGET_FT_LONG_SIZE (current_objfile); |
1101 | lowbound = target_to_host (scan, nbytes, GET_UNSIGNED, | |
1102 | current_objfile); | |
1103 | scan += nbytes; | |
1104 | highbound = target_to_host (scan, nbytes, GET_UNSIGNED, | |
1105 | current_objfile); | |
1106 | scan += nbytes; | |
35f5886e FF |
1107 | nexttype = decode_subscr_data (scan, end); |
1108 | if (nexttype != NULL) | |
1109 | { | |
1110 | typep = (struct type *) | |
1ab3bf1b JG |
1111 | obstack_alloc (¤t_objfile -> type_obstack, |
1112 | sizeof (struct type)); | |
35f5886e | 1113 | (void) memset (typep, 0, sizeof (struct type)); |
1ab3bf1b | 1114 | TYPE_OBJFILE (typep) = current_objfile; |
35f5886e FF |
1115 | TYPE_CODE (typep) = TYPE_CODE_ARRAY; |
1116 | TYPE_LENGTH (typep) = TYPE_LENGTH (nexttype); | |
6c316cfd | 1117 | TYPE_LENGTH (typep) *= (highbound - lowbound) + 1; |
35f5886e FF |
1118 | TYPE_TARGET_TYPE (typep) = nexttype; |
1119 | } | |
1120 | } | |
1121 | break; | |
1122 | case FMT_FT_C_X: | |
1123 | case FMT_FT_X_C: | |
1124 | case FMT_FT_X_X: | |
1125 | case FMT_UT_C_C: | |
1126 | case FMT_UT_C_X: | |
1127 | case FMT_UT_X_C: | |
1128 | case FMT_UT_X_X: | |
1129 | SQUAWK (("array subscript format 0x%x not handled yet", format)); | |
1130 | break; | |
1131 | default: | |
1132 | SQUAWK (("unknown array subscript format %x", format)); | |
1133 | break; | |
1134 | } | |
1135 | return (typep); | |
1136 | } | |
1137 | ||
1138 | /* | |
1139 | ||
1140 | LOCAL FUNCTION | |
1141 | ||
4d315a07 | 1142 | dwarf_read_array_type -- read TAG_array_type DIE |
35f5886e FF |
1143 | |
1144 | SYNOPSIS | |
1145 | ||
4d315a07 | 1146 | static void dwarf_read_array_type (struct dieinfo *dip) |
35f5886e FF |
1147 | |
1148 | DESCRIPTION | |
1149 | ||
1150 | Extract all information from a TAG_array_type DIE and add to | |
1151 | the user defined type vector. | |
1152 | */ | |
1153 | ||
1154 | static void | |
1ab3bf1b JG |
1155 | dwarf_read_array_type (dip) |
1156 | struct dieinfo *dip; | |
35f5886e FF |
1157 | { |
1158 | struct type *type; | |
af213624 | 1159 | struct type *utype; |
35f5886e FF |
1160 | char *sub; |
1161 | char *subend; | |
13b5a7ff FF |
1162 | unsigned short blocksz; |
1163 | int nbytes; | |
35f5886e FF |
1164 | |
1165 | if (dip -> at_ordering != ORD_row_major) | |
1166 | { | |
1167 | /* FIXME: Can gdb even handle column major arrays? */ | |
1168 | SQUAWK (("array not row major; not handled correctly")); | |
1169 | } | |
1170 | if ((sub = dip -> at_subscr_data) != NULL) | |
1171 | { | |
13b5a7ff FF |
1172 | nbytes = attribute_size (AT_subscr_data); |
1173 | blocksz = target_to_host (sub, nbytes, GET_UNSIGNED, current_objfile); | |
1174 | subend = sub + nbytes + blocksz; | |
1175 | sub += nbytes; | |
35f5886e FF |
1176 | type = decode_subscr_data (sub, subend); |
1177 | if (type == NULL) | |
1178 | { | |
13b5a7ff | 1179 | if ((utype = lookup_utype (dip -> die_ref)) == NULL) |
af213624 | 1180 | { |
13b5a7ff | 1181 | utype = alloc_utype (dip -> die_ref, NULL); |
af213624 FF |
1182 | } |
1183 | TYPE_CODE (utype) = TYPE_CODE_ARRAY; | |
1ab3bf1b JG |
1184 | TYPE_TARGET_TYPE (utype) = |
1185 | lookup_fundamental_type (current_objfile, FT_INTEGER); | |
af213624 | 1186 | TYPE_LENGTH (utype) = 1 * TYPE_LENGTH (TYPE_TARGET_TYPE (utype)); |
35f5886e FF |
1187 | } |
1188 | else | |
1189 | { | |
13b5a7ff | 1190 | if ((utype = lookup_utype (dip -> die_ref)) == NULL) |
af213624 | 1191 | { |
13b5a7ff | 1192 | (void) alloc_utype (dip -> die_ref, type); |
af213624 FF |
1193 | } |
1194 | else | |
1195 | { | |
1196 | TYPE_CODE (utype) = TYPE_CODE_ARRAY; | |
1197 | TYPE_LENGTH (utype) = TYPE_LENGTH (type); | |
1198 | TYPE_TARGET_TYPE (utype) = TYPE_TARGET_TYPE (type); | |
1199 | } | |
35f5886e FF |
1200 | } |
1201 | } | |
1202 | } | |
1203 | ||
1204 | /* | |
1205 | ||
9e4c1921 FF |
1206 | LOCAL FUNCTION |
1207 | ||
1208 | read_tag_pointer_type -- read TAG_pointer_type DIE | |
1209 | ||
1210 | SYNOPSIS | |
1211 | ||
1212 | static void read_tag_pointer_type (struct dieinfo *dip) | |
1213 | ||
1214 | DESCRIPTION | |
1215 | ||
1216 | Extract all information from a TAG_pointer_type DIE and add to | |
1217 | the user defined type vector. | |
1218 | */ | |
1219 | ||
1220 | static void | |
1ab3bf1b JG |
1221 | read_tag_pointer_type (dip) |
1222 | struct dieinfo *dip; | |
9e4c1921 FF |
1223 | { |
1224 | struct type *type; | |
1225 | struct type *utype; | |
9e4c1921 FF |
1226 | |
1227 | type = decode_die_type (dip); | |
13b5a7ff | 1228 | if ((utype = lookup_utype (dip -> die_ref)) == NULL) |
9e4c1921 FF |
1229 | { |
1230 | utype = lookup_pointer_type (type); | |
13b5a7ff | 1231 | (void) alloc_utype (dip -> die_ref, utype); |
9e4c1921 FF |
1232 | } |
1233 | else | |
1234 | { | |
1235 | TYPE_TARGET_TYPE (utype) = type; | |
1236 | TYPE_POINTER_TYPE (type) = utype; | |
1237 | ||
1238 | /* We assume the machine has only one representation for pointers! */ | |
1239 | /* FIXME: This confuses host<->target data representations, and is a | |
1240 | poor assumption besides. */ | |
1241 | ||
1242 | TYPE_LENGTH (utype) = sizeof (char *); | |
1243 | TYPE_CODE (utype) = TYPE_CODE_PTR; | |
1244 | } | |
1245 | } | |
1246 | ||
1247 | /* | |
1248 | ||
35f5886e FF |
1249 | LOCAL FUNCTION |
1250 | ||
1251 | read_subroutine_type -- process TAG_subroutine_type dies | |
1252 | ||
1253 | SYNOPSIS | |
1254 | ||
1255 | static void read_subroutine_type (struct dieinfo *dip, char thisdie, | |
1256 | char *enddie) | |
1257 | ||
1258 | DESCRIPTION | |
1259 | ||
1260 | Handle DIES due to C code like: | |
1261 | ||
1262 | struct foo { | |
1263 | int (*funcp)(int a, long l); (Generates TAG_subroutine_type DIE) | |
1264 | int b; | |
1265 | }; | |
1266 | ||
1267 | NOTES | |
1268 | ||
1269 | The parameter DIES are currently ignored. See if gdb has a way to | |
1270 | include this info in it's type system, and decode them if so. Is | |
1271 | this what the type structure's "arg_types" field is for? (FIXME) | |
1272 | */ | |
1273 | ||
1274 | static void | |
1ab3bf1b JG |
1275 | read_subroutine_type (dip, thisdie, enddie) |
1276 | struct dieinfo *dip; | |
1277 | char *thisdie; | |
1278 | char *enddie; | |
35f5886e | 1279 | { |
af213624 FF |
1280 | struct type *type; /* Type that this function returns */ |
1281 | struct type *ftype; /* Function that returns above type */ | |
35f5886e | 1282 | |
af213624 FF |
1283 | /* Decode the type that this subroutine returns */ |
1284 | ||
35f5886e | 1285 | type = decode_die_type (dip); |
af213624 FF |
1286 | |
1287 | /* Check to see if we already have a partially constructed user | |
1288 | defined type for this DIE, from a forward reference. */ | |
1289 | ||
13b5a7ff | 1290 | if ((ftype = lookup_utype (dip -> die_ref)) == NULL) |
af213624 FF |
1291 | { |
1292 | /* This is the first reference to one of these types. Make | |
1293 | a new one and place it in the user defined types. */ | |
1294 | ftype = lookup_function_type (type); | |
13b5a7ff | 1295 | (void) alloc_utype (dip -> die_ref, ftype); |
af213624 FF |
1296 | } |
1297 | else | |
1298 | { | |
1299 | /* We have an existing partially constructed type, so bash it | |
1300 | into the correct type. */ | |
1301 | TYPE_TARGET_TYPE (ftype) = type; | |
1302 | TYPE_FUNCTION_TYPE (type) = ftype; | |
1303 | TYPE_LENGTH (ftype) = 1; | |
1304 | TYPE_CODE (ftype) = TYPE_CODE_FUNC; | |
1305 | } | |
35f5886e FF |
1306 | } |
1307 | ||
1308 | /* | |
1309 | ||
1310 | LOCAL FUNCTION | |
1311 | ||
1312 | read_enumeration -- process dies which define an enumeration | |
1313 | ||
1314 | SYNOPSIS | |
1315 | ||
1316 | static void read_enumeration (struct dieinfo *dip, char *thisdie, | |
1ab3bf1b | 1317 | char *enddie, struct objfile *objfile) |
35f5886e FF |
1318 | |
1319 | DESCRIPTION | |
1320 | ||
1321 | Given a pointer to a die which begins an enumeration, process all | |
1322 | the dies that define the members of the enumeration. | |
1323 | ||
1324 | NOTES | |
1325 | ||
1326 | Note that we need to call enum_type regardless of whether or not we | |
1327 | have a symbol, since we might have an enum without a tag name (thus | |
1328 | no symbol for the tagname). | |
1329 | */ | |
1330 | ||
1331 | static void | |
1ab3bf1b JG |
1332 | read_enumeration (dip, thisdie, enddie, objfile) |
1333 | struct dieinfo *dip; | |
1334 | char *thisdie; | |
1335 | char *enddie; | |
1336 | struct objfile *objfile; | |
35f5886e FF |
1337 | { |
1338 | struct type *type; | |
1339 | struct symbol *sym; | |
1340 | ||
1ab3bf1b JG |
1341 | type = enum_type (dip, objfile); |
1342 | if ((sym = new_symbol (dip, objfile)) != NULL) | |
35f5886e FF |
1343 | { |
1344 | SYMBOL_TYPE (sym) = type; | |
1345 | } | |
1346 | } | |
1347 | ||
1348 | /* | |
1349 | ||
1350 | LOCAL FUNCTION | |
1351 | ||
1352 | enum_type -- decode and return a type for an enumeration | |
1353 | ||
1354 | SYNOPSIS | |
1355 | ||
1ab3bf1b | 1356 | static type *enum_type (struct dieinfo *dip, struct objfile *objfile) |
35f5886e FF |
1357 | |
1358 | DESCRIPTION | |
1359 | ||
1360 | Given a pointer to a die information structure for the die which | |
1361 | starts an enumeration, process all the dies that define the members | |
1362 | of the enumeration and return a type pointer for the enumeration. | |
98618bf7 | 1363 | |
715cafcb FF |
1364 | At the same time, for each member of the enumeration, create a |
1365 | symbol for it with namespace VAR_NAMESPACE and class LOC_CONST, | |
1366 | and give it the type of the enumeration itself. | |
1367 | ||
1368 | NOTES | |
1369 | ||
98618bf7 FF |
1370 | Note that the DWARF specification explicitly mandates that enum |
1371 | constants occur in reverse order from the source program order, | |
1372 | for "consistency" and because this ordering is easier for many | |
1ab3bf1b | 1373 | compilers to generate. (Draft 6, sec 3.8.5, Enumeration type |
715cafcb FF |
1374 | Entries). Because gdb wants to see the enum members in program |
1375 | source order, we have to ensure that the order gets reversed while | |
98618bf7 | 1376 | we are processing them. |
35f5886e FF |
1377 | */ |
1378 | ||
1379 | static struct type * | |
1ab3bf1b JG |
1380 | enum_type (dip, objfile) |
1381 | struct dieinfo *dip; | |
1382 | struct objfile *objfile; | |
35f5886e FF |
1383 | { |
1384 | struct type *type; | |
1385 | struct nextfield { | |
1386 | struct nextfield *next; | |
1387 | struct field field; | |
1388 | }; | |
1389 | struct nextfield *list = NULL; | |
1390 | struct nextfield *new; | |
1391 | int nfields = 0; | |
1392 | int n; | |
35f5886e FF |
1393 | char *scan; |
1394 | char *listend; | |
13b5a7ff | 1395 | unsigned short blocksz; |
715cafcb | 1396 | struct symbol *sym; |
13b5a7ff | 1397 | int nbytes; |
35f5886e | 1398 | |
13b5a7ff | 1399 | if ((type = lookup_utype (dip -> die_ref)) == NULL) |
35f5886e | 1400 | { |
84ce6717 | 1401 | /* No forward references created an empty type, so install one now */ |
13b5a7ff | 1402 | type = alloc_utype (dip -> die_ref, NULL); |
35f5886e FF |
1403 | } |
1404 | TYPE_CODE (type) = TYPE_CODE_ENUM; | |
84ce6717 FF |
1405 | /* Some compilers try to be helpful by inventing "fake" names for |
1406 | anonymous enums, structures, and unions, like "~0fake" or ".0fake". | |
1407 | Thanks, but no thanks... */ | |
715cafcb FF |
1408 | if (dip -> at_name != NULL |
1409 | && *dip -> at_name != '~' | |
1410 | && *dip -> at_name != '.') | |
35f5886e | 1411 | { |
95967e73 | 1412 | TYPE_NAME (type) = obconcat (&objfile -> type_obstack, "enum", |
1ab3bf1b | 1413 | " ", dip -> at_name); |
35f5886e | 1414 | } |
715cafcb | 1415 | if (dip -> at_byte_size != 0) |
35f5886e FF |
1416 | { |
1417 | TYPE_LENGTH (type) = dip -> at_byte_size; | |
35f5886e | 1418 | } |
35f5886e FF |
1419 | if ((scan = dip -> at_element_list) != NULL) |
1420 | { | |
768be6e1 FF |
1421 | if (dip -> short_element_list) |
1422 | { | |
13b5a7ff | 1423 | nbytes = attribute_size (AT_short_element_list); |
768be6e1 FF |
1424 | } |
1425 | else | |
1426 | { | |
13b5a7ff | 1427 | nbytes = attribute_size (AT_element_list); |
768be6e1 | 1428 | } |
13b5a7ff FF |
1429 | blocksz = target_to_host (scan, nbytes, GET_UNSIGNED, objfile); |
1430 | listend = scan + nbytes + blocksz; | |
1431 | scan += nbytes; | |
35f5886e FF |
1432 | while (scan < listend) |
1433 | { | |
1434 | new = (struct nextfield *) alloca (sizeof (struct nextfield)); | |
1435 | new -> next = list; | |
1436 | list = new; | |
1437 | list -> field.type = NULL; | |
1438 | list -> field.bitsize = 0; | |
13b5a7ff FF |
1439 | list -> field.bitpos = |
1440 | target_to_host (scan, TARGET_FT_LONG_SIZE (objfile), GET_SIGNED, | |
1441 | objfile); | |
1442 | scan += TARGET_FT_LONG_SIZE (objfile); | |
35f5886e FF |
1443 | list -> field.name = savestring (scan, strlen (scan)); |
1444 | scan += strlen (scan) + 1; | |
1445 | nfields++; | |
715cafcb | 1446 | /* Handcraft a new symbol for this enum member. */ |
1ab3bf1b | 1447 | sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack, |
715cafcb FF |
1448 | sizeof (struct symbol)); |
1449 | (void) memset (sym, 0, sizeof (struct symbol)); | |
13b5a7ff FF |
1450 | SYMBOL_NAME (sym) = create_name (list -> field.name, |
1451 | &objfile->symbol_obstack); | |
715cafcb FF |
1452 | SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE; |
1453 | SYMBOL_CLASS (sym) = LOC_CONST; | |
1454 | SYMBOL_TYPE (sym) = type; | |
1455 | SYMBOL_VALUE (sym) = list -> field.bitpos; | |
4d315a07 | 1456 | add_symbol_to_list (sym, list_in_scope); |
35f5886e | 1457 | } |
84ce6717 FF |
1458 | /* Now create the vector of fields, and record how big it is. This is |
1459 | where we reverse the order, by pulling the members of the list in | |
1460 | reverse order from how they were inserted. If we have no fields | |
1461 | (this is apparently possible in C++) then skip building a field | |
1462 | vector. */ | |
1463 | if (nfields > 0) | |
1464 | { | |
1465 | TYPE_NFIELDS (type) = nfields; | |
1466 | TYPE_FIELDS (type) = (struct field *) | |
1ab3bf1b | 1467 | obstack_alloc (&objfile->symbol_obstack, sizeof (struct field) * nfields); |
84ce6717 FF |
1468 | /* Copy the saved-up fields into the field vector. */ |
1469 | for (n = 0; (n < nfields) && (list != NULL); list = list -> next) | |
1470 | { | |
1471 | TYPE_FIELD (type, n++) = list -> field; | |
1472 | } | |
1473 | } | |
35f5886e | 1474 | } |
35f5886e FF |
1475 | return (type); |
1476 | } | |
1477 | ||
1478 | /* | |
1479 | ||
1480 | LOCAL FUNCTION | |
1481 | ||
1482 | read_func_scope -- process all dies within a function scope | |
1483 | ||
35f5886e FF |
1484 | DESCRIPTION |
1485 | ||
1486 | Process all dies within a given function scope. We are passed | |
1487 | a die information structure pointer DIP for the die which | |
1488 | starts the function scope, and pointers into the raw die data | |
1489 | that define the dies within the function scope. | |
1490 | ||
1491 | For now, we ignore lexical block scopes within the function. | |
1492 | The problem is that AT&T cc does not define a DWARF lexical | |
1493 | block scope for the function itself, while gcc defines a | |
1494 | lexical block scope for the function. We need to think about | |
1495 | how to handle this difference, or if it is even a problem. | |
1496 | (FIXME) | |
1497 | */ | |
1498 | ||
1499 | static void | |
1ab3bf1b JG |
1500 | read_func_scope (dip, thisdie, enddie, objfile) |
1501 | struct dieinfo *dip; | |
1502 | char *thisdie; | |
1503 | char *enddie; | |
1504 | struct objfile *objfile; | |
35f5886e | 1505 | { |
4d315a07 | 1506 | register struct context_stack *new; |
35f5886e | 1507 | |
5e2e79f8 FF |
1508 | if (objfile -> ei.entry_point >= dip -> at_low_pc && |
1509 | objfile -> ei.entry_point < dip -> at_high_pc) | |
35f5886e | 1510 | { |
5e2e79f8 FF |
1511 | objfile -> ei.entry_func_lowpc = dip -> at_low_pc; |
1512 | objfile -> ei.entry_func_highpc = dip -> at_high_pc; | |
35f5886e | 1513 | } |
4d315a07 | 1514 | if (STREQ (dip -> at_name, "main")) /* FIXME: hardwired name */ |
35f5886e | 1515 | { |
5e2e79f8 FF |
1516 | objfile -> ei.main_func_lowpc = dip -> at_low_pc; |
1517 | objfile -> ei.main_func_highpc = dip -> at_high_pc; | |
35f5886e | 1518 | } |
4d315a07 | 1519 | new = push_context (0, dip -> at_low_pc); |
1ab3bf1b | 1520 | new -> name = new_symbol (dip, objfile); |
4d315a07 | 1521 | list_in_scope = &local_symbols; |
13b5a7ff | 1522 | process_dies (thisdie + dip -> die_length, enddie, objfile); |
4d315a07 FF |
1523 | new = pop_context (); |
1524 | /* Make a block for the local symbols within. */ | |
1525 | finish_block (new -> name, &local_symbols, new -> old_blocks, | |
1ab3bf1b | 1526 | new -> start_addr, dip -> at_high_pc, objfile); |
4d315a07 | 1527 | list_in_scope = &file_symbols; |
35f5886e FF |
1528 | } |
1529 | ||
1530 | /* | |
1531 | ||
1532 | LOCAL FUNCTION | |
1533 | ||
1534 | read_file_scope -- process all dies within a file scope | |
1535 | ||
35f5886e FF |
1536 | DESCRIPTION |
1537 | ||
1538 | Process all dies within a given file scope. We are passed a | |
1539 | pointer to the die information structure for the die which | |
1540 | starts the file scope, and pointers into the raw die data which | |
1541 | mark the range of dies within the file scope. | |
1542 | ||
1543 | When the partial symbol table is built, the file offset for the line | |
1544 | number table for each compilation unit is saved in the partial symbol | |
1545 | table entry for that compilation unit. As the symbols for each | |
1546 | compilation unit are read, the line number table is read into memory | |
1547 | and the variable lnbase is set to point to it. Thus all we have to | |
1548 | do is use lnbase to access the line number table for the current | |
1549 | compilation unit. | |
1550 | */ | |
1551 | ||
1552 | static void | |
1ab3bf1b JG |
1553 | read_file_scope (dip, thisdie, enddie, objfile) |
1554 | struct dieinfo *dip; | |
1555 | char *thisdie; | |
1556 | char *enddie; | |
1557 | struct objfile *objfile; | |
35f5886e FF |
1558 | { |
1559 | struct cleanup *back_to; | |
4d315a07 | 1560 | struct symtab *symtab; |
35f5886e | 1561 | |
5e2e79f8 FF |
1562 | if (objfile -> ei.entry_point >= dip -> at_low_pc && |
1563 | objfile -> ei.entry_point < dip -> at_high_pc) | |
35f5886e | 1564 | { |
5e2e79f8 FF |
1565 | objfile -> ei.entry_file_lowpc = dip -> at_low_pc; |
1566 | objfile -> ei.entry_file_highpc = dip -> at_high_pc; | |
35f5886e | 1567 | } |
4d315a07 FF |
1568 | if (dip -> at_producer != NULL) |
1569 | { | |
1570 | processing_gcc_compilation = | |
1571 | STREQN (dip -> at_producer, GCC_PRODUCER, strlen (GCC_PRODUCER)); | |
1572 | } | |
35f5886e FF |
1573 | numutypes = (enddie - thisdie) / 4; |
1574 | utypes = (struct type **) xmalloc (numutypes * sizeof (struct type *)); | |
1575 | back_to = make_cleanup (free, utypes); | |
1576 | (void) memset (utypes, 0, numutypes * sizeof (struct type *)); | |
4d315a07 | 1577 | start_symtab (dip -> at_name, NULL, dip -> at_low_pc); |
35f5886e | 1578 | decode_line_numbers (lnbase); |
13b5a7ff | 1579 | process_dies (thisdie + dip -> die_length, enddie, objfile); |
4d315a07 FF |
1580 | symtab = end_symtab (dip -> at_high_pc, 0, 0, objfile); |
1581 | /* FIXME: The following may need to be expanded for other languages */ | |
1582 | switch (dip -> at_language) | |
1583 | { | |
1584 | case LANG_C89: | |
1585 | case LANG_C: | |
1586 | symtab -> language = language_c; | |
1587 | break; | |
1588 | case LANG_C_PLUS_PLUS: | |
1589 | symtab -> language = language_cplus; | |
1590 | break; | |
1591 | default: | |
1592 | ; | |
1593 | } | |
35f5886e FF |
1594 | do_cleanups (back_to); |
1595 | utypes = NULL; | |
1596 | numutypes = 0; | |
1597 | } | |
1598 | ||
1599 | /* | |
1600 | ||
35f5886e FF |
1601 | LOCAL FUNCTION |
1602 | ||
1603 | process_dies -- process a range of DWARF Information Entries | |
1604 | ||
1605 | SYNOPSIS | |
1606 | ||
8b5b6fae FF |
1607 | static void process_dies (char *thisdie, char *enddie, |
1608 | struct objfile *objfile) | |
35f5886e FF |
1609 | |
1610 | DESCRIPTION | |
1611 | ||
1612 | Process all DIE's in a specified range. May be (and almost | |
1613 | certainly will be) called recursively. | |
1614 | */ | |
1615 | ||
1616 | static void | |
1ab3bf1b JG |
1617 | process_dies (thisdie, enddie, objfile) |
1618 | char *thisdie; | |
1619 | char *enddie; | |
1620 | struct objfile *objfile; | |
35f5886e FF |
1621 | { |
1622 | char *nextdie; | |
1623 | struct dieinfo di; | |
1624 | ||
1625 | while (thisdie < enddie) | |
1626 | { | |
95967e73 | 1627 | basicdieinfo (&di, thisdie, objfile); |
13b5a7ff | 1628 | if (di.die_length < SIZEOF_DIE_LENGTH) |
35f5886e FF |
1629 | { |
1630 | break; | |
1631 | } | |
13b5a7ff | 1632 | else if (di.die_tag == TAG_padding) |
35f5886e | 1633 | { |
13b5a7ff | 1634 | nextdie = thisdie + di.die_length; |
35f5886e FF |
1635 | } |
1636 | else | |
1637 | { | |
95967e73 | 1638 | completedieinfo (&di, objfile); |
35f5886e FF |
1639 | if (di.at_sibling != 0) |
1640 | { | |
1641 | nextdie = dbbase + di.at_sibling - dbroff; | |
1642 | } | |
1643 | else | |
1644 | { | |
13b5a7ff | 1645 | nextdie = thisdie + di.die_length; |
35f5886e | 1646 | } |
13b5a7ff | 1647 | switch (di.die_tag) |
35f5886e FF |
1648 | { |
1649 | case TAG_compile_unit: | |
a048c8f5 | 1650 | read_file_scope (&di, thisdie, nextdie, objfile); |
35f5886e FF |
1651 | break; |
1652 | case TAG_global_subroutine: | |
1653 | case TAG_subroutine: | |
2d6186f4 | 1654 | if (di.has_at_low_pc) |
35f5886e | 1655 | { |
a048c8f5 | 1656 | read_func_scope (&di, thisdie, nextdie, objfile); |
35f5886e FF |
1657 | } |
1658 | break; | |
1659 | case TAG_lexical_block: | |
a048c8f5 | 1660 | read_lexical_block_scope (&di, thisdie, nextdie, objfile); |
35f5886e FF |
1661 | break; |
1662 | case TAG_structure_type: | |
1663 | case TAG_union_type: | |
8b5b6fae | 1664 | read_structure_scope (&di, thisdie, nextdie, objfile); |
35f5886e FF |
1665 | break; |
1666 | case TAG_enumeration_type: | |
1ab3bf1b | 1667 | read_enumeration (&di, thisdie, nextdie, objfile); |
35f5886e FF |
1668 | break; |
1669 | case TAG_subroutine_type: | |
1670 | read_subroutine_type (&di, thisdie, nextdie); | |
1671 | break; | |
1672 | case TAG_array_type: | |
4d315a07 | 1673 | dwarf_read_array_type (&di); |
35f5886e | 1674 | break; |
9e4c1921 FF |
1675 | case TAG_pointer_type: |
1676 | read_tag_pointer_type (&di); | |
1677 | break; | |
35f5886e | 1678 | default: |
1ab3bf1b | 1679 | (void) new_symbol (&di, objfile); |
35f5886e FF |
1680 | break; |
1681 | } | |
1682 | } | |
1683 | thisdie = nextdie; | |
1684 | } | |
1685 | } | |
1686 | ||
1687 | /* | |
1688 | ||
35f5886e FF |
1689 | LOCAL FUNCTION |
1690 | ||
1691 | decode_line_numbers -- decode a line number table fragment | |
1692 | ||
1693 | SYNOPSIS | |
1694 | ||
1695 | static void decode_line_numbers (char *tblscan, char *tblend, | |
1696 | long length, long base, long line, long pc) | |
1697 | ||
1698 | DESCRIPTION | |
1699 | ||
1700 | Translate the DWARF line number information to gdb form. | |
1701 | ||
1702 | The ".line" section contains one or more line number tables, one for | |
1703 | each ".line" section from the objects that were linked. | |
1704 | ||
1705 | The AT_stmt_list attribute for each TAG_source_file entry in the | |
1706 | ".debug" section contains the offset into the ".line" section for the | |
1707 | start of the table for that file. | |
1708 | ||
1709 | The table itself has the following structure: | |
1710 | ||
1711 | <table length><base address><source statement entry> | |
1712 | 4 bytes 4 bytes 10 bytes | |
1713 | ||
1714 | The table length is the total size of the table, including the 4 bytes | |
1715 | for the length information. | |
1716 | ||
1717 | The base address is the address of the first instruction generated | |
1718 | for the source file. | |
1719 | ||
1720 | Each source statement entry has the following structure: | |
1721 | ||
1722 | <line number><statement position><address delta> | |
1723 | 4 bytes 2 bytes 4 bytes | |
1724 | ||
1725 | The line number is relative to the start of the file, starting with | |
1726 | line 1. | |
1727 | ||
1728 | The statement position either -1 (0xFFFF) or the number of characters | |
1729 | from the beginning of the line to the beginning of the statement. | |
1730 | ||
1731 | The address delta is the difference between the base address and | |
1732 | the address of the first instruction for the statement. | |
1733 | ||
1734 | Note that we must copy the bytes from the packed table to our local | |
1735 | variables before attempting to use them, to avoid alignment problems | |
1736 | on some machines, particularly RISC processors. | |
1737 | ||
1738 | BUGS | |
1739 | ||
1740 | Does gdb expect the line numbers to be sorted? They are now by | |
1741 | chance/luck, but are not required to be. (FIXME) | |
1742 | ||
1743 | The line with number 0 is unused, gdb apparently can discover the | |
1744 | span of the last line some other way. How? (FIXME) | |
1745 | */ | |
1746 | ||
1747 | static void | |
1ab3bf1b JG |
1748 | decode_line_numbers (linetable) |
1749 | char *linetable; | |
35f5886e FF |
1750 | { |
1751 | char *tblscan; | |
1752 | char *tblend; | |
13b5a7ff FF |
1753 | unsigned long length; |
1754 | unsigned long base; | |
1755 | unsigned long line; | |
1756 | unsigned long pc; | |
35f5886e FF |
1757 | |
1758 | if (linetable != NULL) | |
1759 | { | |
1760 | tblscan = tblend = linetable; | |
13b5a7ff FF |
1761 | length = target_to_host (tblscan, SIZEOF_LINETBL_LENGTH, GET_UNSIGNED, |
1762 | current_objfile); | |
1763 | tblscan += SIZEOF_LINETBL_LENGTH; | |
35f5886e | 1764 | tblend += length; |
13b5a7ff FF |
1765 | base = target_to_host (tblscan, TARGET_FT_POINTER_SIZE (objfile), |
1766 | GET_UNSIGNED, current_objfile); | |
1767 | tblscan += TARGET_FT_POINTER_SIZE (objfile); | |
35f5886e | 1768 | base += baseaddr; |
35f5886e FF |
1769 | while (tblscan < tblend) |
1770 | { | |
13b5a7ff FF |
1771 | line = target_to_host (tblscan, SIZEOF_LINETBL_LINENO, GET_UNSIGNED, |
1772 | current_objfile); | |
1773 | tblscan += SIZEOF_LINETBL_LINENO + SIZEOF_LINETBL_STMT; | |
1774 | pc = target_to_host (tblscan, SIZEOF_LINETBL_DELTA, GET_UNSIGNED, | |
1775 | current_objfile); | |
1776 | tblscan += SIZEOF_LINETBL_DELTA; | |
35f5886e | 1777 | pc += base; |
13b5a7ff | 1778 | if (line != 0) |
35f5886e | 1779 | { |
4d315a07 | 1780 | record_line (current_subfile, line, pc); |
35f5886e FF |
1781 | } |
1782 | } | |
1783 | } | |
1784 | } | |
1785 | ||
1786 | /* | |
1787 | ||
35f5886e FF |
1788 | LOCAL FUNCTION |
1789 | ||
1790 | locval -- compute the value of a location attribute | |
1791 | ||
1792 | SYNOPSIS | |
1793 | ||
1794 | static int locval (char *loc) | |
1795 | ||
1796 | DESCRIPTION | |
1797 | ||
1798 | Given pointer to a string of bytes that define a location, compute | |
1799 | the location and return the value. | |
1800 | ||
1801 | When computing values involving the current value of the frame pointer, | |
1802 | the value zero is used, which results in a value relative to the frame | |
1803 | pointer, rather than the absolute value. This is what GDB wants | |
1804 | anyway. | |
1805 | ||
1806 | When the result is a register number, the global isreg flag is set, | |
1807 | otherwise it is cleared. This is a kludge until we figure out a better | |
1808 | way to handle the problem. Gdb's design does not mesh well with the | |
1809 | DWARF notion of a location computing interpreter, which is a shame | |
1810 | because the flexibility goes unused. | |
1811 | ||
1812 | NOTES | |
1813 | ||
1814 | Note that stack[0] is unused except as a default error return. | |
1815 | Note that stack overflow is not yet handled. | |
1816 | */ | |
1817 | ||
1818 | static int | |
1ab3bf1b JG |
1819 | locval (loc) |
1820 | char *loc; | |
35f5886e FF |
1821 | { |
1822 | unsigned short nbytes; | |
13b5a7ff FF |
1823 | unsigned short locsize; |
1824 | auto long stack[64]; | |
35f5886e FF |
1825 | int stacki; |
1826 | char *end; | |
1827 | long regno; | |
13b5a7ff FF |
1828 | int loc_atom_code; |
1829 | int loc_value_size; | |
35f5886e | 1830 | |
13b5a7ff FF |
1831 | nbytes = attribute_size (AT_location); |
1832 | locsize = target_to_host (loc, nbytes, GET_UNSIGNED, current_objfile); | |
1833 | loc += nbytes; | |
1834 | end = loc + locsize; | |
35f5886e FF |
1835 | stacki = 0; |
1836 | stack[stacki] = 0; | |
1837 | isreg = 0; | |
a5bd5ba6 | 1838 | offreg = 0; |
13b5a7ff FF |
1839 | loc_value_size = TARGET_FT_LONG_SIZE (current_objfile); |
1840 | while (loc < end) | |
35f5886e | 1841 | { |
13b5a7ff FF |
1842 | loc_atom_code = target_to_host (loc, SIZEOF_LOC_ATOM_CODE, GET_UNSIGNED, |
1843 | current_objfile); | |
1844 | loc += SIZEOF_LOC_ATOM_CODE; | |
1845 | switch (loc_atom_code) | |
1846 | { | |
1847 | case 0: | |
1848 | /* error */ | |
1849 | loc = end; | |
1850 | break; | |
1851 | case OP_REG: | |
1852 | /* push register (number) */ | |
1853 | stack[++stacki] = target_to_host (loc, loc_value_size, | |
1854 | GET_UNSIGNED, current_objfile); | |
1855 | loc += loc_value_size; | |
1856 | isreg = 1; | |
1857 | break; | |
1858 | case OP_BASEREG: | |
1859 | /* push value of register (number) */ | |
1860 | /* Actually, we compute the value as if register has 0 */ | |
1861 | offreg = 1; | |
1862 | regno = target_to_host (loc, loc_value_size, GET_UNSIGNED, | |
1863 | current_objfile); | |
1864 | loc += loc_value_size; | |
1865 | if (regno == R_FP) | |
1866 | { | |
1867 | stack[++stacki] = 0; | |
1868 | } | |
1869 | else | |
1870 | { | |
1871 | stack[++stacki] = 0; | |
1872 | SQUAWK (("BASEREG %d not handled!", regno)); | |
1873 | } | |
1874 | break; | |
1875 | case OP_ADDR: | |
1876 | /* push address (relocated address) */ | |
1877 | stack[++stacki] = target_to_host (loc, loc_value_size, | |
1878 | GET_UNSIGNED, current_objfile); | |
1879 | loc += loc_value_size; | |
1880 | break; | |
1881 | case OP_CONST: | |
1882 | /* push constant (number) FIXME: signed or unsigned! */ | |
1883 | stack[++stacki] = target_to_host (loc, loc_value_size, | |
1884 | GET_SIGNED, current_objfile); | |
1885 | loc += loc_value_size; | |
1886 | break; | |
1887 | case OP_DEREF2: | |
1888 | /* pop, deref and push 2 bytes (as a long) */ | |
1889 | SQUAWK (("OP_DEREF2 address 0x%x not handled", stack[stacki])); | |
1890 | break; | |
1891 | case OP_DEREF4: /* pop, deref and push 4 bytes (as a long) */ | |
1892 | SQUAWK (("OP_DEREF4 address 0x%x not handled", stack[stacki])); | |
1893 | break; | |
1894 | case OP_ADD: /* pop top 2 items, add, push result */ | |
1895 | stack[stacki - 1] += stack[stacki]; | |
1896 | stacki--; | |
1897 | break; | |
1898 | } | |
35f5886e FF |
1899 | } |
1900 | return (stack[stacki]); | |
1901 | } | |
1902 | ||
1903 | /* | |
1904 | ||
1905 | LOCAL FUNCTION | |
1906 | ||
1907 | read_ofile_symtab -- build a full symtab entry from chunk of DIE's | |
1908 | ||
1909 | SYNOPSIS | |
1910 | ||
a048c8f5 | 1911 | static struct symtab *read_ofile_symtab (struct partial_symtab *pst) |
35f5886e FF |
1912 | |
1913 | DESCRIPTION | |
1914 | ||
1ab3bf1b JG |
1915 | When expanding a partial symbol table entry to a full symbol table |
1916 | entry, this is the function that gets called to read in the symbols | |
1917 | for the compilation unit. | |
1918 | ||
1919 | Returns a pointer to the newly constructed symtab (which is now | |
1920 | the new first one on the objfile's symtab list). | |
35f5886e FF |
1921 | */ |
1922 | ||
1923 | static struct symtab * | |
1ab3bf1b JG |
1924 | read_ofile_symtab (pst) |
1925 | struct partial_symtab *pst; | |
35f5886e FF |
1926 | { |
1927 | struct cleanup *back_to; | |
13b5a7ff | 1928 | unsigned long lnsize; |
35f5886e | 1929 | int foffset; |
1ab3bf1b | 1930 | bfd *abfd; |
13b5a7ff | 1931 | char lnsizedata[SIZEOF_LINETBL_LENGTH]; |
1ab3bf1b JG |
1932 | |
1933 | abfd = pst -> objfile -> obfd; | |
1934 | current_objfile = pst -> objfile; | |
1935 | ||
35f5886e FF |
1936 | /* Allocate a buffer for the entire chunk of DIE's for this compilation |
1937 | unit, seek to the location in the file, and read in all the DIE's. */ | |
1938 | ||
1939 | diecount = 0; | |
1940 | dbbase = xmalloc (DBLENGTH(pst)); | |
1941 | dbroff = DBROFF(pst); | |
1942 | foffset = DBFOFF(pst) + dbroff; | |
f8b76e70 | 1943 | baseaddr = pst -> addr; |
a048c8f5 JG |
1944 | if (bfd_seek (abfd, foffset, 0) || |
1945 | (bfd_read (dbbase, DBLENGTH(pst), 1, abfd) != DBLENGTH(pst))) | |
35f5886e FF |
1946 | { |
1947 | free (dbbase); | |
1948 | error ("can't read DWARF data"); | |
1949 | } | |
1950 | back_to = make_cleanup (free, dbbase); | |
1951 | ||
1952 | /* If there is a line number table associated with this compilation unit | |
13b5a7ff FF |
1953 | then read the size of this fragment in bytes, from the fragment itself. |
1954 | Allocate a buffer for the fragment and read it in for future | |
35f5886e FF |
1955 | processing. */ |
1956 | ||
1957 | lnbase = NULL; | |
1958 | if (LNFOFF (pst)) | |
1959 | { | |
a048c8f5 | 1960 | if (bfd_seek (abfd, LNFOFF (pst), 0) || |
13b5a7ff FF |
1961 | (bfd_read ((PTR) lnsizedata, sizeof (lnsizedata), 1, abfd) != |
1962 | sizeof (lnsizedata))) | |
35f5886e FF |
1963 | { |
1964 | error ("can't read DWARF line number table size"); | |
1965 | } | |
13b5a7ff FF |
1966 | lnsize = target_to_host (lnsizedata, SIZEOF_LINETBL_LENGTH, |
1967 | GET_UNSIGNED, pst -> objfile); | |
35f5886e | 1968 | lnbase = xmalloc (lnsize); |
a048c8f5 JG |
1969 | if (bfd_seek (abfd, LNFOFF (pst), 0) || |
1970 | (bfd_read (lnbase, lnsize, 1, abfd) != lnsize)) | |
35f5886e FF |
1971 | { |
1972 | free (lnbase); | |
1973 | error ("can't read DWARF line numbers"); | |
1974 | } | |
1975 | make_cleanup (free, lnbase); | |
1976 | } | |
1977 | ||
f8b76e70 | 1978 | process_dies (dbbase, dbbase + DBLENGTH(pst), pst -> objfile); |
35f5886e | 1979 | do_cleanups (back_to); |
1ab3bf1b JG |
1980 | current_objfile = NULL; |
1981 | return (pst -> objfile -> symtabs); | |
35f5886e FF |
1982 | } |
1983 | ||
1984 | /* | |
1985 | ||
1986 | LOCAL FUNCTION | |
1987 | ||
1988 | psymtab_to_symtab_1 -- do grunt work for building a full symtab entry | |
1989 | ||
1990 | SYNOPSIS | |
1991 | ||
a048c8f5 | 1992 | static void psymtab_to_symtab_1 (struct partial_symtab *pst) |
35f5886e FF |
1993 | |
1994 | DESCRIPTION | |
1995 | ||
1996 | Called once for each partial symbol table entry that needs to be | |
1997 | expanded into a full symbol table entry. | |
1998 | ||
1999 | */ | |
2000 | ||
2001 | static void | |
1ab3bf1b JG |
2002 | psymtab_to_symtab_1 (pst) |
2003 | struct partial_symtab *pst; | |
35f5886e FF |
2004 | { |
2005 | int i; | |
2006 | ||
1ab3bf1b | 2007 | if (pst != NULL) |
35f5886e | 2008 | { |
1ab3bf1b | 2009 | if (pst->readin) |
35f5886e | 2010 | { |
318bf84f | 2011 | warning ("psymtab for %s already read in. Shouldn't happen.", |
1ab3bf1b JG |
2012 | pst -> filename); |
2013 | } | |
2014 | else | |
2015 | { | |
2016 | /* Read in all partial symtabs on which this one is dependent */ | |
2017 | for (i = 0; i < pst -> number_of_dependencies; i++) | |
2018 | { | |
2019 | if (!pst -> dependencies[i] -> readin) | |
2020 | { | |
2021 | /* Inform about additional files that need to be read in. */ | |
2022 | if (info_verbose) | |
2023 | { | |
2024 | fputs_filtered (" ", stdout); | |
2025 | wrap_here (""); | |
2026 | fputs_filtered ("and ", stdout); | |
2027 | wrap_here (""); | |
2028 | printf_filtered ("%s...", | |
2029 | pst -> dependencies[i] -> filename); | |
2030 | wrap_here (""); | |
2031 | fflush (stdout); /* Flush output */ | |
2032 | } | |
2033 | psymtab_to_symtab_1 (pst -> dependencies[i]); | |
2034 | } | |
2035 | } | |
2036 | if (DBLENGTH (pst)) /* Otherwise it's a dummy */ | |
2037 | { | |
2038 | pst -> symtab = read_ofile_symtab (pst); | |
2039 | if (info_verbose) | |
2040 | { | |
2041 | printf_filtered ("%d DIE's, sorting...", diecount); | |
2042 | wrap_here (""); | |
2043 | fflush (stdout); | |
2044 | } | |
2045 | sort_symtab_syms (pst -> symtab); | |
2046 | } | |
2047 | pst -> readin = 1; | |
35f5886e | 2048 | } |
35f5886e | 2049 | } |
35f5886e FF |
2050 | } |
2051 | ||
2052 | /* | |
2053 | ||
2054 | LOCAL FUNCTION | |
2055 | ||
2056 | dwarf_psymtab_to_symtab -- build a full symtab entry from partial one | |
2057 | ||
2058 | SYNOPSIS | |
2059 | ||
2060 | static void dwarf_psymtab_to_symtab (struct partial_symtab *pst) | |
2061 | ||
2062 | DESCRIPTION | |
2063 | ||
2064 | This is the DWARF support entry point for building a full symbol | |
2065 | table entry from a partial symbol table entry. We are passed a | |
2066 | pointer to the partial symbol table entry that needs to be expanded. | |
2067 | ||
2068 | */ | |
2069 | ||
2070 | static void | |
1ab3bf1b JG |
2071 | dwarf_psymtab_to_symtab (pst) |
2072 | struct partial_symtab *pst; | |
35f5886e | 2073 | { |
7d9884b9 | 2074 | |
1ab3bf1b | 2075 | if (pst != NULL) |
35f5886e | 2076 | { |
1ab3bf1b | 2077 | if (pst -> readin) |
35f5886e | 2078 | { |
318bf84f | 2079 | warning ("psymtab for %s already read in. Shouldn't happen.", |
1ab3bf1b | 2080 | pst -> filename); |
35f5886e | 2081 | } |
1ab3bf1b | 2082 | else |
35f5886e | 2083 | { |
1ab3bf1b JG |
2084 | if (DBLENGTH (pst) || pst -> number_of_dependencies) |
2085 | { | |
2086 | /* Print the message now, before starting serious work, to avoid | |
2087 | disconcerting pauses. */ | |
2088 | if (info_verbose) | |
2089 | { | |
2090 | printf_filtered ("Reading in symbols for %s...", | |
2091 | pst -> filename); | |
2092 | fflush (stdout); | |
2093 | } | |
2094 | ||
2095 | psymtab_to_symtab_1 (pst); | |
2096 | ||
2097 | #if 0 /* FIXME: Check to see what dbxread is doing here and see if | |
2098 | we need to do an equivalent or is this something peculiar to | |
2099 | stabs/a.out format. | |
2100 | Match with global symbols. This only needs to be done once, | |
2101 | after all of the symtabs and dependencies have been read in. | |
2102 | */ | |
2103 | scan_file_globals (pst -> objfile); | |
2104 | #endif | |
2105 | ||
2106 | /* Finish up the verbose info message. */ | |
2107 | if (info_verbose) | |
2108 | { | |
2109 | printf_filtered ("done.\n"); | |
2110 | fflush (stdout); | |
2111 | } | |
2112 | } | |
35f5886e FF |
2113 | } |
2114 | } | |
2115 | } | |
2116 | ||
2117 | /* | |
2118 | ||
2119 | LOCAL FUNCTION | |
2120 | ||
2121 | init_psymbol_list -- initialize storage for partial symbols | |
2122 | ||
2123 | SYNOPSIS | |
2124 | ||
1ab3bf1b | 2125 | static void init_psymbol_list (struct objfile *objfile, int total_symbols) |
35f5886e FF |
2126 | |
2127 | DESCRIPTION | |
2128 | ||
2129 | Initializes storage for all of the partial symbols that will be | |
2130 | created by dwarf_build_psymtabs and subsidiaries. | |
2131 | */ | |
2132 | ||
2133 | static void | |
1ab3bf1b JG |
2134 | init_psymbol_list (objfile, total_symbols) |
2135 | struct objfile *objfile; | |
2136 | int total_symbols; | |
35f5886e FF |
2137 | { |
2138 | /* Free any previously allocated psymbol lists. */ | |
2139 | ||
1ab3bf1b | 2140 | if (objfile -> global_psymbols.list) |
35f5886e | 2141 | { |
84ffdec2 | 2142 | mfree (objfile -> md, (PTR)objfile -> global_psymbols.list); |
35f5886e | 2143 | } |
1ab3bf1b | 2144 | if (objfile -> static_psymbols.list) |
35f5886e | 2145 | { |
84ffdec2 | 2146 | mfree (objfile -> md, (PTR)objfile -> static_psymbols.list); |
35f5886e FF |
2147 | } |
2148 | ||
2149 | /* Current best guess is that there are approximately a twentieth | |
2150 | of the total symbols (in a debugging file) are global or static | |
2151 | oriented symbols */ | |
2152 | ||
1ab3bf1b JG |
2153 | objfile -> global_psymbols.size = total_symbols / 10; |
2154 | objfile -> static_psymbols.size = total_symbols / 10; | |
2155 | objfile -> global_psymbols.next = | |
2156 | objfile -> global_psymbols.list = (struct partial_symbol *) | |
318bf84f | 2157 | xmmalloc (objfile -> md, objfile -> global_psymbols.size |
1ab3bf1b JG |
2158 | * sizeof (struct partial_symbol)); |
2159 | objfile -> static_psymbols.next = | |
2160 | objfile -> static_psymbols.list = (struct partial_symbol *) | |
318bf84f | 2161 | xmmalloc (objfile -> md, objfile -> static_psymbols.size |
1ab3bf1b | 2162 | * sizeof (struct partial_symbol)); |
35f5886e FF |
2163 | } |
2164 | ||
35f5886e FF |
2165 | /* |
2166 | ||
715cafcb FF |
2167 | LOCAL FUNCTION |
2168 | ||
2169 | add_enum_psymbol -- add enumeration members to partial symbol table | |
2170 | ||
2171 | DESCRIPTION | |
2172 | ||
2173 | Given pointer to a DIE that is known to be for an enumeration, | |
2174 | extract the symbolic names of the enumeration members and add | |
2175 | partial symbols for them. | |
2176 | */ | |
2177 | ||
2178 | static void | |
1ab3bf1b JG |
2179 | add_enum_psymbol (dip, objfile) |
2180 | struct dieinfo *dip; | |
2181 | struct objfile *objfile; | |
715cafcb FF |
2182 | { |
2183 | char *scan; | |
2184 | char *listend; | |
13b5a7ff FF |
2185 | unsigned short blocksz; |
2186 | int nbytes; | |
715cafcb FF |
2187 | |
2188 | if ((scan = dip -> at_element_list) != NULL) | |
2189 | { | |
2190 | if (dip -> short_element_list) | |
2191 | { | |
13b5a7ff | 2192 | nbytes = attribute_size (AT_short_element_list); |
715cafcb FF |
2193 | } |
2194 | else | |
2195 | { | |
13b5a7ff | 2196 | nbytes = attribute_size (AT_element_list); |
715cafcb | 2197 | } |
13b5a7ff FF |
2198 | blocksz = target_to_host (scan, nbytes, GET_UNSIGNED, objfile); |
2199 | scan += nbytes; | |
2200 | listend = scan + blocksz; | |
715cafcb FF |
2201 | while (scan < listend) |
2202 | { | |
13b5a7ff | 2203 | scan += TARGET_FT_LONG_SIZE (objfile); |
b440b1e9 | 2204 | ADD_PSYMBOL_TO_LIST (scan, strlen (scan), VAR_NAMESPACE, LOC_CONST, |
1ab3bf1b | 2205 | objfile -> static_psymbols, 0); |
715cafcb FF |
2206 | scan += strlen (scan) + 1; |
2207 | } | |
2208 | } | |
2209 | } | |
2210 | ||
2211 | /* | |
2212 | ||
35f5886e FF |
2213 | LOCAL FUNCTION |
2214 | ||
2215 | add_partial_symbol -- add symbol to partial symbol table | |
2216 | ||
2217 | DESCRIPTION | |
2218 | ||
2219 | Given a DIE, if it is one of the types that we want to | |
2220 | add to a partial symbol table, finish filling in the die info | |
2221 | and then add a partial symbol table entry for it. | |
2222 | ||
2223 | */ | |
2224 | ||
2225 | static void | |
1ab3bf1b JG |
2226 | add_partial_symbol (dip, objfile) |
2227 | struct dieinfo *dip; | |
2228 | struct objfile *objfile; | |
35f5886e | 2229 | { |
13b5a7ff | 2230 | switch (dip -> die_tag) |
35f5886e FF |
2231 | { |
2232 | case TAG_global_subroutine: | |
1ab3bf1b JG |
2233 | record_minimal_symbol (dip -> at_name, dip -> at_low_pc, mst_text, |
2234 | objfile); | |
b440b1e9 | 2235 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2236 | VAR_NAMESPACE, LOC_BLOCK, |
2237 | objfile -> global_psymbols, | |
b440b1e9 | 2238 | dip -> at_low_pc); |
35f5886e FF |
2239 | break; |
2240 | case TAG_global_variable: | |
1ab3bf1b JG |
2241 | record_minimal_symbol (dip -> at_name, locval (dip -> at_location), |
2242 | mst_data, objfile); | |
b440b1e9 | 2243 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2244 | VAR_NAMESPACE, LOC_STATIC, |
2245 | objfile -> global_psymbols, | |
b440b1e9 | 2246 | 0); |
35f5886e FF |
2247 | break; |
2248 | case TAG_subroutine: | |
b440b1e9 | 2249 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2250 | VAR_NAMESPACE, LOC_BLOCK, |
2251 | objfile -> static_psymbols, | |
b440b1e9 | 2252 | dip -> at_low_pc); |
35f5886e FF |
2253 | break; |
2254 | case TAG_local_variable: | |
b440b1e9 | 2255 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2256 | VAR_NAMESPACE, LOC_STATIC, |
2257 | objfile -> static_psymbols, | |
b440b1e9 | 2258 | 0); |
35f5886e FF |
2259 | break; |
2260 | case TAG_typedef: | |
b440b1e9 | 2261 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2262 | VAR_NAMESPACE, LOC_TYPEDEF, |
2263 | objfile -> static_psymbols, | |
b440b1e9 | 2264 | 0); |
35f5886e FF |
2265 | break; |
2266 | case TAG_structure_type: | |
2267 | case TAG_union_type: | |
b440b1e9 | 2268 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2269 | STRUCT_NAMESPACE, LOC_TYPEDEF, |
2270 | objfile -> static_psymbols, | |
b440b1e9 | 2271 | 0); |
35f5886e | 2272 | break; |
715cafcb FF |
2273 | case TAG_enumeration_type: |
2274 | if (dip -> at_name) | |
2275 | { | |
b440b1e9 | 2276 | ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name), |
1ab3bf1b JG |
2277 | STRUCT_NAMESPACE, LOC_TYPEDEF, |
2278 | objfile -> static_psymbols, | |
b440b1e9 | 2279 | 0); |
715cafcb | 2280 | } |
1ab3bf1b | 2281 | add_enum_psymbol (dip, objfile); |
715cafcb | 2282 | break; |
35f5886e FF |
2283 | } |
2284 | } | |
2285 | ||
2286 | /* | |
2287 | ||
2288 | LOCAL FUNCTION | |
2289 | ||
2290 | scan_partial_symbols -- scan DIE's within a single compilation unit | |
2291 | ||
2292 | DESCRIPTION | |
2293 | ||
2294 | Process the DIE's within a single compilation unit, looking for | |
2295 | interesting DIE's that contribute to the partial symbol table entry | |
2296 | for this compilation unit. Since we cannot follow any sibling | |
2297 | chains without reading the complete DIE info for every DIE, | |
2298 | it is probably faster to just sequentially check each one to | |
715cafcb FF |
2299 | see if it is one of the types we are interested in, and if so, |
2300 | then extract all the attributes info and generate a partial | |
2301 | symbol table entry. | |
35f5886e | 2302 | |
2d6186f4 FF |
2303 | NOTES |
2304 | ||
715cafcb FF |
2305 | Don't attempt to add anonymous structures or unions since they have |
2306 | no name. Anonymous enumerations however are processed, because we | |
2307 | want to extract their member names (the check for a tag name is | |
2308 | done later). | |
2d6186f4 | 2309 | |
715cafcb FF |
2310 | Also, for variables and subroutines, check that this is the place |
2311 | where the actual definition occurs, rather than just a reference | |
2312 | to an external. | |
35f5886e FF |
2313 | */ |
2314 | ||
2315 | static void | |
1ab3bf1b JG |
2316 | scan_partial_symbols (thisdie, enddie, objfile) |
2317 | char *thisdie; | |
2318 | char *enddie; | |
2319 | struct objfile *objfile; | |
35f5886e FF |
2320 | { |
2321 | char *nextdie; | |
2322 | struct dieinfo di; | |
2323 | ||
2324 | while (thisdie < enddie) | |
2325 | { | |
95967e73 | 2326 | basicdieinfo (&di, thisdie, objfile); |
13b5a7ff | 2327 | if (di.die_length < SIZEOF_DIE_LENGTH) |
35f5886e FF |
2328 | { |
2329 | break; | |
2330 | } | |
2331 | else | |
2332 | { | |
13b5a7ff | 2333 | nextdie = thisdie + di.die_length; |
715cafcb FF |
2334 | /* To avoid getting complete die information for every die, we |
2335 | only do it (below) for the cases we are interested in. */ | |
13b5a7ff | 2336 | switch (di.die_tag) |
35f5886e FF |
2337 | { |
2338 | case TAG_global_subroutine: | |
35f5886e | 2339 | case TAG_subroutine: |
2d6186f4 | 2340 | case TAG_global_variable: |
35f5886e | 2341 | case TAG_local_variable: |
95967e73 | 2342 | completedieinfo (&di, objfile); |
2d6186f4 FF |
2343 | if (di.at_name && (di.has_at_low_pc || di.at_location)) |
2344 | { | |
1ab3bf1b | 2345 | add_partial_symbol (&di, objfile); |
2d6186f4 FF |
2346 | } |
2347 | break; | |
35f5886e FF |
2348 | case TAG_typedef: |
2349 | case TAG_structure_type: | |
2350 | case TAG_union_type: | |
95967e73 | 2351 | completedieinfo (&di, objfile); |
2d6186f4 | 2352 | if (di.at_name) |
35f5886e | 2353 | { |
1ab3bf1b | 2354 | add_partial_symbol (&di, objfile); |
35f5886e FF |
2355 | } |
2356 | break; | |
715cafcb | 2357 | case TAG_enumeration_type: |
95967e73 | 2358 | completedieinfo (&di, objfile); |
1ab3bf1b | 2359 | add_partial_symbol (&di, objfile); |
715cafcb | 2360 | break; |
35f5886e FF |
2361 | } |
2362 | } | |
2363 | thisdie = nextdie; | |
2364 | } | |
2365 | } | |
2366 | ||
2367 | /* | |
2368 | ||
2369 | LOCAL FUNCTION | |
2370 | ||
2371 | scan_compilation_units -- build a psymtab entry for each compilation | |
2372 | ||
2373 | DESCRIPTION | |
2374 | ||
2375 | This is the top level dwarf parsing routine for building partial | |
2376 | symbol tables. | |
2377 | ||
2378 | It scans from the beginning of the DWARF table looking for the first | |
2379 | TAG_compile_unit DIE, and then follows the sibling chain to locate | |
2380 | each additional TAG_compile_unit DIE. | |
2381 | ||
2382 | For each TAG_compile_unit DIE it creates a partial symtab structure, | |
2383 | calls a subordinate routine to collect all the compilation unit's | |
2384 | global DIE's, file scope DIEs, typedef DIEs, etc, and then links the | |
2385 | new partial symtab structure into the partial symbol table. It also | |
2386 | records the appropriate information in the partial symbol table entry | |
2387 | to allow the chunk of DIE's and line number table for this compilation | |
2388 | unit to be located and re-read later, to generate a complete symbol | |
2389 | table entry for the compilation unit. | |
2390 | ||
2391 | Thus it effectively partitions up a chunk of DIE's for multiple | |
2392 | compilation units into smaller DIE chunks and line number tables, | |
2393 | and associates them with a partial symbol table entry. | |
2394 | ||
2395 | NOTES | |
2396 | ||
2397 | If any compilation unit has no line number table associated with | |
2398 | it for some reason (a missing at_stmt_list attribute, rather than | |
2399 | just one with a value of zero, which is valid) then we ensure that | |
2400 | the recorded file offset is zero so that the routine which later | |
2401 | reads line number table fragments knows that there is no fragment | |
2402 | to read. | |
2403 | ||
2404 | RETURNS | |
2405 | ||
2406 | Returns no value. | |
2407 | ||
2408 | */ | |
2409 | ||
2410 | static void | |
1ab3bf1b JG |
2411 | scan_compilation_units (filename, thisdie, enddie, dbfoff, lnoffset, objfile) |
2412 | char *filename; | |
2413 | char *thisdie; | |
2414 | char *enddie; | |
2415 | unsigned int dbfoff; | |
2416 | unsigned int lnoffset; | |
2417 | struct objfile *objfile; | |
35f5886e FF |
2418 | { |
2419 | char *nextdie; | |
2420 | struct dieinfo di; | |
2421 | struct partial_symtab *pst; | |
2422 | int culength; | |
2423 | int curoff; | |
2424 | int curlnoffset; | |
2425 | ||
2426 | while (thisdie < enddie) | |
2427 | { | |
95967e73 | 2428 | basicdieinfo (&di, thisdie, objfile); |
13b5a7ff | 2429 | if (di.die_length < SIZEOF_DIE_LENGTH) |
35f5886e FF |
2430 | { |
2431 | break; | |
2432 | } | |
13b5a7ff | 2433 | else if (di.die_tag != TAG_compile_unit) |
35f5886e | 2434 | { |
13b5a7ff | 2435 | nextdie = thisdie + di.die_length; |
35f5886e FF |
2436 | } |
2437 | else | |
2438 | { | |
95967e73 | 2439 | completedieinfo (&di, objfile); |
35f5886e FF |
2440 | if (di.at_sibling != 0) |
2441 | { | |
2442 | nextdie = dbbase + di.at_sibling - dbroff; | |
2443 | } | |
2444 | else | |
2445 | { | |
13b5a7ff | 2446 | nextdie = thisdie + di.die_length; |
35f5886e FF |
2447 | } |
2448 | curoff = thisdie - dbbase; | |
2449 | culength = nextdie - thisdie; | |
2d6186f4 | 2450 | curlnoffset = di.has_at_stmt_list ? lnoffset + di.at_stmt_list : 0; |
1ab3bf1b JG |
2451 | |
2452 | /* First allocate a new partial symbol table structure */ | |
2453 | ||
2454 | pst = start_psymtab_common (objfile, baseaddr, di.at_name, | |
2455 | di.at_low_pc, | |
2456 | objfile -> global_psymbols.next, | |
2457 | objfile -> static_psymbols.next); | |
2458 | ||
2459 | pst -> texthigh = di.at_high_pc; | |
2460 | pst -> read_symtab_private = (char *) | |
2461 | obstack_alloc (&objfile -> psymbol_obstack, | |
2462 | sizeof (struct dwfinfo)); | |
2463 | DBFOFF (pst) = dbfoff; | |
2464 | DBROFF (pst) = curoff; | |
2465 | DBLENGTH (pst) = culength; | |
2466 | LNFOFF (pst) = curlnoffset; | |
2467 | pst -> read_symtab = dwarf_psymtab_to_symtab; | |
2468 | ||
2469 | /* Now look for partial symbols */ | |
2470 | ||
13b5a7ff | 2471 | scan_partial_symbols (thisdie + di.die_length, nextdie, objfile); |
1ab3bf1b JG |
2472 | |
2473 | pst -> n_global_syms = objfile -> global_psymbols.next - | |
2474 | (objfile -> global_psymbols.list + pst -> globals_offset); | |
2475 | pst -> n_static_syms = objfile -> static_psymbols.next - | |
2476 | (objfile -> static_psymbols.list + pst -> statics_offset); | |
2477 | sort_pst_symbols (pst); | |
35f5886e FF |
2478 | /* If there is already a psymtab or symtab for a file of this name, |
2479 | remove it. (If there is a symtab, more drastic things also | |
2480 | happen.) This happens in VxWorks. */ | |
2481 | free_named_symtabs (pst -> filename); | |
35f5886e FF |
2482 | } |
2483 | thisdie = nextdie; | |
2484 | } | |
2485 | } | |
2486 | ||
2487 | /* | |
2488 | ||
2489 | LOCAL FUNCTION | |
2490 | ||
2491 | new_symbol -- make a symbol table entry for a new symbol | |
2492 | ||
2493 | SYNOPSIS | |
2494 | ||
1ab3bf1b JG |
2495 | static struct symbol *new_symbol (struct dieinfo *dip, |
2496 | struct objfile *objfile) | |
35f5886e FF |
2497 | |
2498 | DESCRIPTION | |
2499 | ||
2500 | Given a pointer to a DWARF information entry, figure out if we need | |
2501 | to make a symbol table entry for it, and if so, create a new entry | |
2502 | and return a pointer to it. | |
2503 | */ | |
2504 | ||
2505 | static struct symbol * | |
1ab3bf1b JG |
2506 | new_symbol (dip, objfile) |
2507 | struct dieinfo *dip; | |
2508 | struct objfile *objfile; | |
35f5886e FF |
2509 | { |
2510 | struct symbol *sym = NULL; | |
2511 | ||
2512 | if (dip -> at_name != NULL) | |
2513 | { | |
1ab3bf1b | 2514 | sym = (struct symbol *) obstack_alloc (&objfile -> symbol_obstack, |
35f5886e FF |
2515 | sizeof (struct symbol)); |
2516 | (void) memset (sym, 0, sizeof (struct symbol)); | |
1ab3bf1b | 2517 | SYMBOL_NAME (sym) = create_name (dip -> at_name, &objfile->symbol_obstack); |
35f5886e FF |
2518 | /* default assumptions */ |
2519 | SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE; | |
2520 | SYMBOL_CLASS (sym) = LOC_STATIC; | |
2521 | SYMBOL_TYPE (sym) = decode_die_type (dip); | |
13b5a7ff | 2522 | switch (dip -> die_tag) |
35f5886e FF |
2523 | { |
2524 | case TAG_label: | |
4d315a07 | 2525 | SYMBOL_VALUE (sym) = dip -> at_low_pc; |
35f5886e FF |
2526 | SYMBOL_CLASS (sym) = LOC_LABEL; |
2527 | break; | |
2528 | case TAG_global_subroutine: | |
2529 | case TAG_subroutine: | |
4d315a07 | 2530 | SYMBOL_VALUE (sym) = dip -> at_low_pc; |
35f5886e FF |
2531 | SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym)); |
2532 | SYMBOL_CLASS (sym) = LOC_BLOCK; | |
13b5a7ff | 2533 | if (dip -> die_tag == TAG_global_subroutine) |
35f5886e FF |
2534 | { |
2535 | add_symbol_to_list (sym, &global_symbols); | |
2536 | } | |
2537 | else | |
2538 | { | |
4d315a07 | 2539 | add_symbol_to_list (sym, list_in_scope); |
35f5886e FF |
2540 | } |
2541 | break; | |
2542 | case TAG_global_variable: | |
35f5886e FF |
2543 | if (dip -> at_location != NULL) |
2544 | { | |
2545 | SYMBOL_VALUE (sym) = locval (dip -> at_location); | |
35f5886e FF |
2546 | add_symbol_to_list (sym, &global_symbols); |
2547 | SYMBOL_CLASS (sym) = LOC_STATIC; | |
2548 | SYMBOL_VALUE (sym) += baseaddr; | |
2549 | } | |
a5bd5ba6 FF |
2550 | break; |
2551 | case TAG_local_variable: | |
2552 | if (dip -> at_location != NULL) | |
35f5886e | 2553 | { |
a5bd5ba6 | 2554 | SYMBOL_VALUE (sym) = locval (dip -> at_location); |
4d315a07 | 2555 | add_symbol_to_list (sym, list_in_scope); |
a5bd5ba6 FF |
2556 | if (isreg) |
2557 | { | |
2558 | SYMBOL_CLASS (sym) = LOC_REGISTER; | |
2559 | } | |
2560 | else if (offreg) | |
35f5886e | 2561 | { |
a5bd5ba6 | 2562 | SYMBOL_CLASS (sym) = LOC_LOCAL; |
35f5886e FF |
2563 | } |
2564 | else | |
2565 | { | |
2566 | SYMBOL_CLASS (sym) = LOC_STATIC; | |
2567 | SYMBOL_VALUE (sym) += baseaddr; | |
2568 | } | |
2569 | } | |
2570 | break; | |
2571 | case TAG_formal_parameter: | |
2572 | if (dip -> at_location != NULL) | |
2573 | { | |
2574 | SYMBOL_VALUE (sym) = locval (dip -> at_location); | |
2575 | } | |
4d315a07 | 2576 | add_symbol_to_list (sym, list_in_scope); |
35f5886e FF |
2577 | if (isreg) |
2578 | { | |
2579 | SYMBOL_CLASS (sym) = LOC_REGPARM; | |
2580 | } | |
2581 | else | |
2582 | { | |
2583 | SYMBOL_CLASS (sym) = LOC_ARG; | |
2584 | } | |
2585 | break; | |
2586 | case TAG_unspecified_parameters: | |
2587 | /* From varargs functions; gdb doesn't seem to have any interest in | |
2588 | this information, so just ignore it for now. (FIXME?) */ | |
2589 | break; | |
2590 | case TAG_structure_type: | |
2591 | case TAG_union_type: | |
2592 | case TAG_enumeration_type: | |
2593 | SYMBOL_CLASS (sym) = LOC_TYPEDEF; | |
2594 | SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE; | |
4d315a07 | 2595 | add_symbol_to_list (sym, list_in_scope); |
35f5886e FF |
2596 | break; |
2597 | case TAG_typedef: | |
2598 | SYMBOL_CLASS (sym) = LOC_TYPEDEF; | |
2599 | SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE; | |
4d315a07 | 2600 | add_symbol_to_list (sym, list_in_scope); |
35f5886e FF |
2601 | break; |
2602 | default: | |
2603 | /* Not a tag we recognize. Hopefully we aren't processing trash | |
2604 | data, but since we must specifically ignore things we don't | |
2605 | recognize, there is nothing else we should do at this point. */ | |
2606 | break; | |
2607 | } | |
2608 | } | |
2609 | return (sym); | |
2610 | } | |
2611 | ||
2612 | /* | |
2613 | ||
2614 | LOCAL FUNCTION | |
2615 | ||
2616 | decode_mod_fund_type -- decode a modified fundamental type | |
2617 | ||
2618 | SYNOPSIS | |
2619 | ||
2620 | static struct type *decode_mod_fund_type (char *typedata) | |
2621 | ||
2622 | DESCRIPTION | |
2623 | ||
2624 | Decode a block of data containing a modified fundamental | |
2625 | type specification. TYPEDATA is a pointer to the block, | |
13b5a7ff FF |
2626 | which starts with a length containing the size of the rest |
2627 | of the block. At the end of the block is a fundmental type | |
2628 | code value that gives the fundamental type. Everything | |
35f5886e FF |
2629 | in between are type modifiers. |
2630 | ||
2631 | We simply compute the number of modifiers and call the general | |
2632 | function decode_modified_type to do the actual work. | |
2633 | */ | |
2634 | ||
2635 | static struct type * | |
1ab3bf1b JG |
2636 | decode_mod_fund_type (typedata) |
2637 | char *typedata; | |
35f5886e FF |
2638 | { |
2639 | struct type *typep = NULL; | |
2640 | unsigned short modcount; | |
13b5a7ff | 2641 | int nbytes; |
35f5886e FF |
2642 | |
2643 | /* Get the total size of the block, exclusive of the size itself */ | |
13b5a7ff FF |
2644 | |
2645 | nbytes = attribute_size (AT_mod_fund_type); | |
2646 | modcount = target_to_host (typedata, nbytes, GET_UNSIGNED, current_objfile); | |
2647 | typedata += nbytes; | |
2648 | ||
35f5886e | 2649 | /* Deduct the size of the fundamental type bytes at the end of the block. */ |
13b5a7ff FF |
2650 | |
2651 | modcount -= attribute_size (AT_fund_type); | |
2652 | ||
35f5886e | 2653 | /* Now do the actual decoding */ |
13b5a7ff FF |
2654 | |
2655 | typep = decode_modified_type (typedata, modcount, AT_mod_fund_type); | |
35f5886e FF |
2656 | return (typep); |
2657 | } | |
2658 | ||
2659 | /* | |
2660 | ||
2661 | LOCAL FUNCTION | |
2662 | ||
2663 | decode_mod_u_d_type -- decode a modified user defined type | |
2664 | ||
2665 | SYNOPSIS | |
2666 | ||
2667 | static struct type *decode_mod_u_d_type (char *typedata) | |
2668 | ||
2669 | DESCRIPTION | |
2670 | ||
2671 | Decode a block of data containing a modified user defined | |
2672 | type specification. TYPEDATA is a pointer to the block, | |
2673 | which consists of a two byte length, containing the size | |
2674 | of the rest of the block. At the end of the block is a | |
2675 | four byte value that gives a reference to a user defined type. | |
2676 | Everything in between are type modifiers. | |
2677 | ||
2678 | We simply compute the number of modifiers and call the general | |
2679 | function decode_modified_type to do the actual work. | |
2680 | */ | |
2681 | ||
2682 | static struct type * | |
1ab3bf1b JG |
2683 | decode_mod_u_d_type (typedata) |
2684 | char *typedata; | |
35f5886e FF |
2685 | { |
2686 | struct type *typep = NULL; | |
2687 | unsigned short modcount; | |
13b5a7ff | 2688 | int nbytes; |
35f5886e FF |
2689 | |
2690 | /* Get the total size of the block, exclusive of the size itself */ | |
13b5a7ff FF |
2691 | |
2692 | nbytes = attribute_size (AT_mod_u_d_type); | |
2693 | modcount = target_to_host (typedata, nbytes, GET_UNSIGNED, current_objfile); | |
2694 | typedata += nbytes; | |
2695 | ||
35f5886e | 2696 | /* Deduct the size of the reference type bytes at the end of the block. */ |
13b5a7ff FF |
2697 | |
2698 | modcount -= attribute_size (AT_user_def_type); | |
2699 | ||
35f5886e | 2700 | /* Now do the actual decoding */ |
13b5a7ff FF |
2701 | |
2702 | typep = decode_modified_type (typedata, modcount, AT_mod_u_d_type); | |
35f5886e FF |
2703 | return (typep); |
2704 | } | |
2705 | ||
2706 | /* | |
2707 | ||
2708 | LOCAL FUNCTION | |
2709 | ||
2710 | decode_modified_type -- decode modified user or fundamental type | |
2711 | ||
2712 | SYNOPSIS | |
2713 | ||
1c92ca6f | 2714 | static struct type *decode_modified_type (char *modifiers, |
35f5886e FF |
2715 | unsigned short modcount, int mtype) |
2716 | ||
2717 | DESCRIPTION | |
2718 | ||
2719 | Decode a modified type, either a modified fundamental type or | |
2720 | a modified user defined type. MODIFIERS is a pointer to the | |
2721 | block of bytes that define MODCOUNT modifiers. Immediately | |
2722 | following the last modifier is a short containing the fundamental | |
2723 | type or a long containing the reference to the user defined | |
2724 | type. Which one is determined by MTYPE, which is either | |
2725 | AT_mod_fund_type or AT_mod_u_d_type to indicate what modified | |
2726 | type we are generating. | |
2727 | ||
2728 | We call ourself recursively to generate each modified type,` | |
2729 | until MODCOUNT reaches zero, at which point we have consumed | |
2730 | all the modifiers and generate either the fundamental type or | |
2731 | user defined type. When the recursion unwinds, each modifier | |
2732 | is applied in turn to generate the full modified type. | |
2733 | ||
2734 | NOTES | |
2735 | ||
2736 | If we find a modifier that we don't recognize, and it is not one | |
2737 | of those reserved for application specific use, then we issue a | |
2738 | warning and simply ignore the modifier. | |
2739 | ||
2740 | BUGS | |
2741 | ||
2742 | We currently ignore MOD_const and MOD_volatile. (FIXME) | |
2743 | ||
2744 | */ | |
2745 | ||
2746 | static struct type * | |
1ab3bf1b | 2747 | decode_modified_type (modifiers, modcount, mtype) |
1c92ca6f | 2748 | char *modifiers; |
1ab3bf1b JG |
2749 | unsigned int modcount; |
2750 | int mtype; | |
35f5886e FF |
2751 | { |
2752 | struct type *typep = NULL; | |
2753 | unsigned short fundtype; | |
13b5a7ff | 2754 | DIE_REF die_ref; |
1c92ca6f | 2755 | char modifier; |
13b5a7ff | 2756 | int nbytes; |
35f5886e FF |
2757 | |
2758 | if (modcount == 0) | |
2759 | { | |
2760 | switch (mtype) | |
2761 | { | |
2762 | case AT_mod_fund_type: | |
13b5a7ff FF |
2763 | nbytes = attribute_size (AT_fund_type); |
2764 | fundtype = target_to_host (modifiers, nbytes, GET_UNSIGNED, | |
2765 | current_objfile); | |
35f5886e FF |
2766 | typep = decode_fund_type (fundtype); |
2767 | break; | |
2768 | case AT_mod_u_d_type: | |
13b5a7ff FF |
2769 | nbytes = attribute_size (AT_user_def_type); |
2770 | die_ref = target_to_host (modifiers, nbytes, GET_UNSIGNED, | |
2771 | current_objfile); | |
2772 | if ((typep = lookup_utype (die_ref)) == NULL) | |
35f5886e | 2773 | { |
13b5a7ff | 2774 | typep = alloc_utype (die_ref, NULL); |
35f5886e FF |
2775 | } |
2776 | break; | |
2777 | default: | |
2778 | SQUAWK (("botched modified type decoding (mtype 0x%x)", mtype)); | |
1ab3bf1b | 2779 | typep = lookup_fundamental_type (current_objfile, FT_INTEGER); |
35f5886e FF |
2780 | break; |
2781 | } | |
2782 | } | |
2783 | else | |
2784 | { | |
2785 | modifier = *modifiers++; | |
2786 | typep = decode_modified_type (modifiers, --modcount, mtype); | |
2787 | switch (modifier) | |
2788 | { | |
13b5a7ff FF |
2789 | case MOD_pointer_to: |
2790 | typep = lookup_pointer_type (typep); | |
2791 | break; | |
2792 | case MOD_reference_to: | |
2793 | typep = lookup_reference_type (typep); | |
2794 | break; | |
2795 | case MOD_const: | |
2796 | SQUAWK (("type modifier 'const' ignored")); /* FIXME */ | |
2797 | break; | |
2798 | case MOD_volatile: | |
2799 | SQUAWK (("type modifier 'volatile' ignored")); /* FIXME */ | |
2800 | break; | |
2801 | default: | |
1c92ca6f FF |
2802 | if (!(MOD_lo_user <= (unsigned char) modifier |
2803 | && (unsigned char) modifier <= MOD_hi_user)) | |
13b5a7ff | 2804 | { |
1c92ca6f FF |
2805 | SQUAWK (("unknown type modifier %u", |
2806 | (unsigned char) modifier)); | |
13b5a7ff FF |
2807 | } |
2808 | break; | |
35f5886e FF |
2809 | } |
2810 | } | |
2811 | return (typep); | |
2812 | } | |
2813 | ||
2814 | /* | |
2815 | ||
2816 | LOCAL FUNCTION | |
2817 | ||
2818 | decode_fund_type -- translate basic DWARF type to gdb base type | |
2819 | ||
2820 | DESCRIPTION | |
2821 | ||
2822 | Given an integer that is one of the fundamental DWARF types, | |
2823 | translate it to one of the basic internal gdb types and return | |
2824 | a pointer to the appropriate gdb type (a "struct type *"). | |
2825 | ||
2826 | NOTES | |
2827 | ||
2828 | If we encounter a fundamental type that we are unprepared to | |
2829 | deal with, and it is not in the range of those types defined | |
2830 | as application specific types, then we issue a warning and | |
1ab3bf1b | 2831 | treat the type as an "int". |
35f5886e FF |
2832 | */ |
2833 | ||
2834 | static struct type * | |
1ab3bf1b JG |
2835 | decode_fund_type (fundtype) |
2836 | unsigned int fundtype; | |
35f5886e FF |
2837 | { |
2838 | struct type *typep = NULL; | |
2839 | ||
2840 | switch (fundtype) | |
2841 | { | |
2842 | ||
2843 | case FT_void: | |
1ab3bf1b | 2844 | typep = lookup_fundamental_type (current_objfile, FT_VOID); |
35f5886e FF |
2845 | break; |
2846 | ||
1ab3bf1b JG |
2847 | case FT_boolean: /* Was FT_set in AT&T version */ |
2848 | typep = lookup_fundamental_type (current_objfile, FT_BOOLEAN); | |
2849 | break; | |
2850 | ||
35f5886e | 2851 | case FT_pointer: /* (void *) */ |
1ab3bf1b JG |
2852 | typep = lookup_fundamental_type (current_objfile, FT_VOID); |
2853 | typep = lookup_pointer_type (typep); | |
35f5886e FF |
2854 | break; |
2855 | ||
2856 | case FT_char: | |
1ab3bf1b JG |
2857 | typep = lookup_fundamental_type (current_objfile, FT_CHAR); |
2858 | break; | |
2859 | ||
35f5886e | 2860 | case FT_signed_char: |
1ab3bf1b JG |
2861 | typep = lookup_fundamental_type (current_objfile, FT_SIGNED_CHAR); |
2862 | break; | |
2863 | ||
2864 | case FT_unsigned_char: | |
2865 | typep = lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR); | |
35f5886e FF |
2866 | break; |
2867 | ||
2868 | case FT_short: | |
1ab3bf1b JG |
2869 | typep = lookup_fundamental_type (current_objfile, FT_SHORT); |
2870 | break; | |
2871 | ||
35f5886e | 2872 | case FT_signed_short: |
1ab3bf1b JG |
2873 | typep = lookup_fundamental_type (current_objfile, FT_SIGNED_SHORT); |
2874 | break; | |
2875 | ||
2876 | case FT_unsigned_short: | |
2877 | typep = lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT); | |
35f5886e FF |
2878 | break; |
2879 | ||
2880 | case FT_integer: | |
1ab3bf1b JG |
2881 | typep = lookup_fundamental_type (current_objfile, FT_INTEGER); |
2882 | break; | |
2883 | ||
35f5886e | 2884 | case FT_signed_integer: |
1ab3bf1b JG |
2885 | typep = lookup_fundamental_type (current_objfile, FT_SIGNED_INTEGER); |
2886 | break; | |
2887 | ||
2888 | case FT_unsigned_integer: | |
2889 | typep = lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER); | |
35f5886e FF |
2890 | break; |
2891 | ||
2892 | case FT_long: | |
1ab3bf1b JG |
2893 | typep = lookup_fundamental_type (current_objfile, FT_LONG); |
2894 | break; | |
2895 | ||
35f5886e | 2896 | case FT_signed_long: |
1ab3bf1b | 2897 | typep = lookup_fundamental_type (current_objfile, FT_SIGNED_LONG); |
35f5886e FF |
2898 | break; |
2899 | ||
1ab3bf1b JG |
2900 | case FT_unsigned_long: |
2901 | typep = lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG); | |
35f5886e FF |
2902 | break; |
2903 | ||
1ab3bf1b JG |
2904 | case FT_long_long: |
2905 | typep = lookup_fundamental_type (current_objfile, FT_LONG_LONG); | |
35f5886e | 2906 | break; |
1ab3bf1b JG |
2907 | |
2908 | case FT_signed_long_long: | |
2909 | typep = lookup_fundamental_type (current_objfile, FT_SIGNED_LONG_LONG); | |
35f5886e | 2910 | break; |
1ab3bf1b JG |
2911 | |
2912 | case FT_unsigned_long_long: | |
2913 | typep = lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG_LONG); | |
35f5886e | 2914 | break; |
1ab3bf1b JG |
2915 | |
2916 | case FT_float: | |
2917 | typep = lookup_fundamental_type (current_objfile, FT_FLOAT); | |
35f5886e FF |
2918 | break; |
2919 | ||
1ab3bf1b JG |
2920 | case FT_dbl_prec_float: |
2921 | typep = lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT); | |
35f5886e FF |
2922 | break; |
2923 | ||
2924 | case FT_ext_prec_float: | |
1ab3bf1b | 2925 | typep = lookup_fundamental_type (current_objfile, FT_EXT_PREC_FLOAT); |
35f5886e FF |
2926 | break; |
2927 | ||
2928 | case FT_complex: | |
1ab3bf1b | 2929 | typep = lookup_fundamental_type (current_objfile, FT_COMPLEX); |
35f5886e FF |
2930 | break; |
2931 | ||
2932 | case FT_dbl_prec_complex: | |
1ab3bf1b | 2933 | typep = lookup_fundamental_type (current_objfile, FT_DBL_PREC_COMPLEX); |
35f5886e FF |
2934 | break; |
2935 | ||
1ab3bf1b JG |
2936 | case FT_ext_prec_complex: |
2937 | typep = lookup_fundamental_type (current_objfile, FT_EXT_PREC_COMPLEX); | |
35f5886e | 2938 | break; |
1ab3bf1b | 2939 | |
35f5886e FF |
2940 | } |
2941 | ||
2942 | if ((typep == NULL) && !(FT_lo_user <= fundtype && fundtype <= FT_hi_user)) | |
2943 | { | |
2944 | SQUAWK (("unexpected fundamental type 0x%x", fundtype)); | |
1ab3bf1b | 2945 | typep = lookup_fundamental_type (current_objfile, FT_VOID); |
35f5886e FF |
2946 | } |
2947 | ||
2948 | return (typep); | |
2949 | } | |
2950 | ||
2951 | /* | |
2952 | ||
2953 | LOCAL FUNCTION | |
2954 | ||
2955 | create_name -- allocate a fresh copy of a string on an obstack | |
2956 | ||
2957 | DESCRIPTION | |
2958 | ||
2959 | Given a pointer to a string and a pointer to an obstack, allocates | |
2960 | a fresh copy of the string on the specified obstack. | |
2961 | ||
2962 | */ | |
2963 | ||
2964 | static char * | |
1ab3bf1b JG |
2965 | create_name (name, obstackp) |
2966 | char *name; | |
2967 | struct obstack *obstackp; | |
35f5886e FF |
2968 | { |
2969 | int length; | |
2970 | char *newname; | |
2971 | ||
2972 | length = strlen (name) + 1; | |
2973 | newname = (char *) obstack_alloc (obstackp, length); | |
2974 | (void) strcpy (newname, name); | |
2975 | return (newname); | |
2976 | } | |
2977 | ||
2978 | /* | |
2979 | ||
2980 | LOCAL FUNCTION | |
2981 | ||
2982 | basicdieinfo -- extract the minimal die info from raw die data | |
2983 | ||
2984 | SYNOPSIS | |
2985 | ||
95967e73 FF |
2986 | void basicdieinfo (char *diep, struct dieinfo *dip, |
2987 | struct objfile *objfile) | |
35f5886e FF |
2988 | |
2989 | DESCRIPTION | |
2990 | ||
2991 | Given a pointer to raw DIE data, and a pointer to an instance of a | |
2992 | die info structure, this function extracts the basic information | |
2993 | from the DIE data required to continue processing this DIE, along | |
2994 | with some bookkeeping information about the DIE. | |
2995 | ||
2996 | The information we absolutely must have includes the DIE tag, | |
2997 | and the DIE length. If we need the sibling reference, then we | |
2998 | will have to call completedieinfo() to process all the remaining | |
2999 | DIE information. | |
3000 | ||
3001 | Note that since there is no guarantee that the data is properly | |
3002 | aligned in memory for the type of access required (indirection | |
95967e73 FF |
3003 | through anything other than a char pointer), and there is no |
3004 | guarantee that it is in the same byte order as the gdb host, | |
3005 | we call a function which deals with both alignment and byte | |
3006 | swapping issues. Possibly inefficient, but quite portable. | |
35f5886e FF |
3007 | |
3008 | We also take care of some other basic things at this point, such | |
3009 | as ensuring that the instance of the die info structure starts | |
3010 | out completely zero'd and that curdie is initialized for use | |
3011 | in error reporting if we have a problem with the current die. | |
3012 | ||
3013 | NOTES | |
3014 | ||
3015 | All DIE's must have at least a valid length, thus the minimum | |
13b5a7ff FF |
3016 | DIE size is SIZEOF_DIE_LENGTH. In order to have a valid tag, the |
3017 | DIE size must be at least SIZEOF_DIE_TAG larger, otherwise they | |
35f5886e FF |
3018 | are forced to be TAG_padding DIES. |
3019 | ||
13b5a7ff FF |
3020 | Padding DIES must be at least SIZEOF_DIE_LENGTH in length, implying |
3021 | that if a padding DIE is used for alignment and the amount needed is | |
3022 | less than SIZEOF_DIE_LENGTH, then the padding DIE has to be big | |
3023 | enough to align to the next alignment boundry. | |
35f5886e FF |
3024 | */ |
3025 | ||
3026 | static void | |
95967e73 | 3027 | basicdieinfo (dip, diep, objfile) |
1ab3bf1b JG |
3028 | struct dieinfo *dip; |
3029 | char *diep; | |
95967e73 | 3030 | struct objfile *objfile; |
35f5886e FF |
3031 | { |
3032 | curdie = dip; | |
3033 | (void) memset (dip, 0, sizeof (struct dieinfo)); | |
3034 | dip -> die = diep; | |
13b5a7ff FF |
3035 | dip -> die_ref = dbroff + (diep - dbbase); |
3036 | dip -> die_length = target_to_host (diep, SIZEOF_DIE_LENGTH, GET_UNSIGNED, | |
3037 | objfile); | |
3038 | if (dip -> die_length < SIZEOF_DIE_LENGTH) | |
35f5886e | 3039 | { |
13b5a7ff | 3040 | dwarfwarn ("malformed DIE, bad length (%d bytes)", dip -> die_length); |
35f5886e | 3041 | } |
13b5a7ff | 3042 | else if (dip -> die_length < (SIZEOF_DIE_LENGTH + SIZEOF_DIE_TAG)) |
35f5886e | 3043 | { |
13b5a7ff | 3044 | dip -> die_tag = TAG_padding; |
35f5886e FF |
3045 | } |
3046 | else | |
3047 | { | |
13b5a7ff FF |
3048 | diep += SIZEOF_DIE_LENGTH; |
3049 | dip -> die_tag = target_to_host (diep, SIZEOF_DIE_TAG, GET_UNSIGNED, | |
3050 | objfile); | |
35f5886e FF |
3051 | } |
3052 | } | |
3053 | ||
3054 | /* | |
3055 | ||
3056 | LOCAL FUNCTION | |
3057 | ||
3058 | completedieinfo -- finish reading the information for a given DIE | |
3059 | ||
3060 | SYNOPSIS | |
3061 | ||
95967e73 | 3062 | void completedieinfo (struct dieinfo *dip, struct objfile *objfile) |
35f5886e FF |
3063 | |
3064 | DESCRIPTION | |
3065 | ||
3066 | Given a pointer to an already partially initialized die info structure, | |
3067 | scan the raw DIE data and finish filling in the die info structure | |
3068 | from the various attributes found. | |
3069 | ||
3070 | Note that since there is no guarantee that the data is properly | |
3071 | aligned in memory for the type of access required (indirection | |
95967e73 FF |
3072 | through anything other than a char pointer), and there is no |
3073 | guarantee that it is in the same byte order as the gdb host, | |
3074 | we call a function which deals with both alignment and byte | |
3075 | swapping issues. Possibly inefficient, but quite portable. | |
35f5886e FF |
3076 | |
3077 | NOTES | |
3078 | ||
3079 | Each time we are called, we increment the diecount variable, which | |
3080 | keeps an approximate count of the number of dies processed for | |
3081 | each compilation unit. This information is presented to the user | |
3082 | if the info_verbose flag is set. | |
3083 | ||
3084 | */ | |
3085 | ||
3086 | static void | |
95967e73 | 3087 | completedieinfo (dip, objfile) |
1ab3bf1b | 3088 | struct dieinfo *dip; |
95967e73 | 3089 | struct objfile *objfile; |
35f5886e FF |
3090 | { |
3091 | char *diep; /* Current pointer into raw DIE data */ | |
3092 | char *end; /* Terminate DIE scan here */ | |
3093 | unsigned short attr; /* Current attribute being scanned */ | |
3094 | unsigned short form; /* Form of the attribute */ | |
13b5a7ff | 3095 | int nbytes; /* Size of next field to read */ |
35f5886e FF |
3096 | |
3097 | diecount++; | |
3098 | diep = dip -> die; | |
13b5a7ff FF |
3099 | end = diep + dip -> die_length; |
3100 | diep += SIZEOF_DIE_LENGTH + SIZEOF_DIE_TAG; | |
35f5886e FF |
3101 | while (diep < end) |
3102 | { | |
13b5a7ff FF |
3103 | attr = target_to_host (diep, SIZEOF_ATTRIBUTE, GET_UNSIGNED, objfile); |
3104 | diep += SIZEOF_ATTRIBUTE; | |
3105 | if ((nbytes = attribute_size (attr)) == -1) | |
3106 | { | |
3107 | SQUAWK (("unknown attribute length, skipped remaining attributes"));; | |
3108 | diep = end; | |
3109 | continue; | |
3110 | } | |
35f5886e FF |
3111 | switch (attr) |
3112 | { | |
3113 | case AT_fund_type: | |
13b5a7ff FF |
3114 | dip -> at_fund_type = target_to_host (diep, nbytes, GET_UNSIGNED, |
3115 | objfile); | |
35f5886e FF |
3116 | break; |
3117 | case AT_ordering: | |
13b5a7ff FF |
3118 | dip -> at_ordering = target_to_host (diep, nbytes, GET_UNSIGNED, |
3119 | objfile); | |
35f5886e FF |
3120 | break; |
3121 | case AT_bit_offset: | |
13b5a7ff FF |
3122 | dip -> at_bit_offset = target_to_host (diep, nbytes, GET_UNSIGNED, |
3123 | objfile); | |
35f5886e FF |
3124 | break; |
3125 | case AT_visibility: | |
13b5a7ff FF |
3126 | dip -> at_visibility = target_to_host (diep, nbytes, GET_UNSIGNED, |
3127 | objfile); | |
35f5886e FF |
3128 | break; |
3129 | case AT_sibling: | |
13b5a7ff FF |
3130 | dip -> at_sibling = target_to_host (diep, nbytes, GET_UNSIGNED, |
3131 | objfile); | |
35f5886e FF |
3132 | break; |
3133 | case AT_stmt_list: | |
13b5a7ff FF |
3134 | dip -> at_stmt_list = target_to_host (diep, nbytes, GET_UNSIGNED, |
3135 | objfile); | |
2d6186f4 | 3136 | dip -> has_at_stmt_list = 1; |
35f5886e FF |
3137 | break; |
3138 | case AT_low_pc: | |
13b5a7ff FF |
3139 | dip -> at_low_pc = target_to_host (diep, nbytes, GET_UNSIGNED, |
3140 | objfile); | |
4d315a07 | 3141 | dip -> at_low_pc += baseaddr; |
2d6186f4 | 3142 | dip -> has_at_low_pc = 1; |
35f5886e FF |
3143 | break; |
3144 | case AT_high_pc: | |
13b5a7ff FF |
3145 | dip -> at_high_pc = target_to_host (diep, nbytes, GET_UNSIGNED, |
3146 | objfile); | |
4d315a07 | 3147 | dip -> at_high_pc += baseaddr; |
35f5886e FF |
3148 | break; |
3149 | case AT_language: | |
13b5a7ff FF |
3150 | dip -> at_language = target_to_host (diep, nbytes, GET_UNSIGNED, |
3151 | objfile); | |
35f5886e FF |
3152 | break; |
3153 | case AT_user_def_type: | |
13b5a7ff FF |
3154 | dip -> at_user_def_type = target_to_host (diep, nbytes, |
3155 | GET_UNSIGNED, objfile); | |
35f5886e FF |
3156 | break; |
3157 | case AT_byte_size: | |
13b5a7ff FF |
3158 | dip -> at_byte_size = target_to_host (diep, nbytes, GET_UNSIGNED, |
3159 | objfile); | |
35f5886e FF |
3160 | break; |
3161 | case AT_bit_size: | |
13b5a7ff FF |
3162 | dip -> at_bit_size = target_to_host (diep, nbytes, GET_UNSIGNED, |
3163 | objfile); | |
35f5886e FF |
3164 | break; |
3165 | case AT_member: | |
13b5a7ff FF |
3166 | dip -> at_member = target_to_host (diep, nbytes, GET_UNSIGNED, |
3167 | objfile); | |
35f5886e FF |
3168 | break; |
3169 | case AT_discr: | |
13b5a7ff FF |
3170 | dip -> at_discr = target_to_host (diep, nbytes, GET_UNSIGNED, |
3171 | objfile); | |
35f5886e FF |
3172 | break; |
3173 | case AT_import: | |
13b5a7ff FF |
3174 | dip -> at_import = target_to_host (diep, nbytes, GET_UNSIGNED, |
3175 | objfile); | |
35f5886e FF |
3176 | break; |
3177 | case AT_location: | |
3178 | dip -> at_location = diep; | |
3179 | break; | |
3180 | case AT_mod_fund_type: | |
3181 | dip -> at_mod_fund_type = diep; | |
3182 | break; | |
3183 | case AT_subscr_data: | |
3184 | dip -> at_subscr_data = diep; | |
3185 | break; | |
3186 | case AT_mod_u_d_type: | |
3187 | dip -> at_mod_u_d_type = diep; | |
3188 | break; | |
35f5886e FF |
3189 | case AT_element_list: |
3190 | dip -> at_element_list = diep; | |
768be6e1 FF |
3191 | dip -> short_element_list = 0; |
3192 | break; | |
3193 | case AT_short_element_list: | |
3194 | dip -> at_element_list = diep; | |
3195 | dip -> short_element_list = 1; | |
35f5886e FF |
3196 | break; |
3197 | case AT_discr_value: | |
3198 | dip -> at_discr_value = diep; | |
3199 | break; | |
3200 | case AT_string_length: | |
3201 | dip -> at_string_length = diep; | |
3202 | break; | |
3203 | case AT_name: | |
3204 | dip -> at_name = diep; | |
3205 | break; | |
3206 | case AT_comp_dir: | |
3207 | dip -> at_comp_dir = diep; | |
3208 | break; | |
3209 | case AT_producer: | |
3210 | dip -> at_producer = diep; | |
3211 | break; | |
35f5886e | 3212 | case AT_frame_base: |
13b5a7ff FF |
3213 | dip -> at_frame_base = target_to_host (diep, nbytes, GET_UNSIGNED, |
3214 | objfile); | |
35f5886e | 3215 | break; |
35f5886e | 3216 | case AT_start_scope: |
13b5a7ff FF |
3217 | dip -> at_start_scope = target_to_host (diep, nbytes, GET_UNSIGNED, |
3218 | objfile); | |
35f5886e FF |
3219 | break; |
3220 | case AT_stride_size: | |
13b5a7ff FF |
3221 | dip -> at_stride_size = target_to_host (diep, nbytes, GET_UNSIGNED, |
3222 | objfile); | |
35f5886e FF |
3223 | break; |
3224 | case AT_src_info: | |
13b5a7ff FF |
3225 | dip -> at_src_info = target_to_host (diep, nbytes, GET_UNSIGNED, |
3226 | objfile); | |
35f5886e FF |
3227 | break; |
3228 | case AT_prototyped: | |
13b5a7ff | 3229 | dip -> at_prototyped = diep; |
35f5886e | 3230 | break; |
35f5886e FF |
3231 | default: |
3232 | /* Found an attribute that we are unprepared to handle. However | |
3233 | it is specifically one of the design goals of DWARF that | |
3234 | consumers should ignore unknown attributes. As long as the | |
3235 | form is one that we recognize (so we know how to skip it), | |
3236 | we can just ignore the unknown attribute. */ | |
3237 | break; | |
3238 | } | |
13b5a7ff | 3239 | form = FORM_FROM_ATTR (attr); |
35f5886e FF |
3240 | switch (form) |
3241 | { | |
3242 | case FORM_DATA2: | |
13b5a7ff | 3243 | diep += 2; |
35f5886e FF |
3244 | break; |
3245 | case FORM_DATA4: | |
13b5a7ff FF |
3246 | case FORM_REF: |
3247 | diep += 4; | |
35f5886e FF |
3248 | break; |
3249 | case FORM_DATA8: | |
13b5a7ff | 3250 | diep += 8; |
35f5886e FF |
3251 | break; |
3252 | case FORM_ADDR: | |
13b5a7ff | 3253 | diep += TARGET_FT_POINTER_SIZE (objfile); |
35f5886e FF |
3254 | break; |
3255 | case FORM_BLOCK2: | |
13b5a7ff | 3256 | diep += 2 + target_to_host (diep, nbytes, GET_UNSIGNED, objfile); |
35f5886e FF |
3257 | break; |
3258 | case FORM_BLOCK4: | |
13b5a7ff | 3259 | diep += 4 + target_to_host (diep, nbytes, GET_UNSIGNED, objfile); |
35f5886e FF |
3260 | break; |
3261 | case FORM_STRING: | |
3262 | diep += strlen (diep) + 1; | |
3263 | break; | |
3264 | default: | |
13b5a7ff FF |
3265 | SQUAWK (("unknown attribute form (0x%x)", form)); |
3266 | SQUAWK (("unknown attribute length, skipped remaining attributes"));; | |
35f5886e FF |
3267 | diep = end; |
3268 | break; | |
3269 | } | |
3270 | } | |
3271 | } | |
95967e73 | 3272 | |
13b5a7ff | 3273 | /* |
95967e73 | 3274 | |
13b5a7ff FF |
3275 | LOCAL FUNCTION |
3276 | ||
3277 | target_to_host -- swap in target data to host | |
3278 | ||
3279 | SYNOPSIS | |
3280 | ||
3281 | target_to_host (char *from, int nbytes, int signextend, | |
3282 | struct objfile *objfile) | |
3283 | ||
3284 | DESCRIPTION | |
3285 | ||
3286 | Given pointer to data in target format in FROM, a byte count for | |
3287 | the size of the data in NBYTES, a flag indicating whether or not | |
3288 | the data is signed in SIGNEXTEND, and a pointer to the current | |
3289 | objfile in OBJFILE, convert the data to host format and return | |
3290 | the converted value. | |
3291 | ||
3292 | NOTES | |
3293 | ||
3294 | FIXME: If we read data that is known to be signed, and expect to | |
3295 | use it as signed data, then we need to explicitly sign extend the | |
3296 | result until the bfd library is able to do this for us. | |
3297 | ||
3298 | */ | |
3299 | ||
3300 | static unsigned long | |
3301 | target_to_host (from, nbytes, signextend, objfile) | |
95967e73 FF |
3302 | char *from; |
3303 | int nbytes; | |
13b5a7ff | 3304 | int signextend; /* FIXME: Unused */ |
95967e73 FF |
3305 | struct objfile *objfile; |
3306 | { | |
13b5a7ff | 3307 | unsigned long rtnval; |
95967e73 FF |
3308 | |
3309 | switch (nbytes) | |
3310 | { | |
95967e73 | 3311 | case 8: |
13b5a7ff | 3312 | rtnval = bfd_get_64 (objfile -> obfd, (bfd_byte *) from); |
95967e73 | 3313 | break; |
95967e73 | 3314 | case 4: |
13b5a7ff | 3315 | rtnval = bfd_get_32 (objfile -> obfd, (bfd_byte *) from); |
95967e73 FF |
3316 | break; |
3317 | case 2: | |
13b5a7ff | 3318 | rtnval = bfd_get_16 (objfile -> obfd, (bfd_byte *) from); |
95967e73 FF |
3319 | break; |
3320 | case 1: | |
13b5a7ff | 3321 | rtnval = bfd_get_8 (objfile -> obfd, (bfd_byte *) from); |
95967e73 FF |
3322 | break; |
3323 | default: | |
13b5a7ff FF |
3324 | dwarfwarn ("no bfd support for %d byte data object", nbytes); |
3325 | rtnval = 0; | |
95967e73 FF |
3326 | break; |
3327 | } | |
13b5a7ff | 3328 | return (rtnval); |
95967e73 FF |
3329 | } |
3330 | ||
13b5a7ff FF |
3331 | /* |
3332 | ||
3333 | LOCAL FUNCTION | |
3334 | ||
3335 | attribute_size -- compute size of data for a DWARF attribute | |
3336 | ||
3337 | SYNOPSIS | |
3338 | ||
3339 | static int attribute_size (unsigned int attr) | |
3340 | ||
3341 | DESCRIPTION | |
3342 | ||
3343 | Given a DWARF attribute in ATTR, compute the size of the first | |
3344 | piece of data associated with this attribute and return that | |
3345 | size. | |
3346 | ||
3347 | Returns -1 for unrecognized attributes. | |
3348 | ||
3349 | */ | |
3350 | ||
3351 | static int | |
3352 | attribute_size (attr) | |
3353 | unsigned int attr; | |
3354 | { | |
3355 | int nbytes; /* Size of next data for this attribute */ | |
3356 | unsigned short form; /* Form of the attribute */ | |
3357 | ||
3358 | form = FORM_FROM_ATTR (attr); | |
3359 | switch (form) | |
3360 | { | |
3361 | case FORM_STRING: /* A variable length field is next */ | |
3362 | nbytes = 0; | |
3363 | break; | |
3364 | case FORM_DATA2: /* Next 2 byte field is the data itself */ | |
3365 | case FORM_BLOCK2: /* Next 2 byte field is a block length */ | |
3366 | nbytes = 2; | |
3367 | break; | |
3368 | case FORM_DATA4: /* Next 4 byte field is the data itself */ | |
3369 | case FORM_BLOCK4: /* Next 4 byte field is a block length */ | |
3370 | case FORM_REF: /* Next 4 byte field is a DIE offset */ | |
3371 | nbytes = 4; | |
3372 | break; | |
3373 | case FORM_DATA8: /* Next 8 byte field is the data itself */ | |
3374 | nbytes = 8; | |
3375 | break; | |
3376 | case FORM_ADDR: /* Next field size is target sizeof(void *) */ | |
3377 | nbytes = TARGET_FT_POINTER_SIZE (objfile); | |
3378 | break; | |
3379 | default: | |
3380 | SQUAWK (("unknown attribute form (0x%x)", form)); | |
3381 | nbytes = -1; | |
3382 | break; | |
3383 | } | |
3384 | return (nbytes); | |
3385 | } |