some improvements to fp code
[deliverable/binutils-gdb.git] / gdb / partial-stab.h
CommitLineData
7e258d18 1/* Shared code to pre-read a stab (dbx-style), when building a psymtab.
2fe3b329 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
65ce5df4 3 Free Software Foundation, Inc.
7e258d18
PB
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21/* The following need to be defined:
22 SET_NAMESTRING() --Set namestring to name of symbol.
23 CUR_SYMBOL_TYPE --Type code of current symbol.
24 CUR_SYMBOL_VALUE --Value field of current symbol. May be adjusted here.
25 */
26
7e258d18
PB
27/* End of macro definitions, now let's handle them symbols! */
28
29 switch (CUR_SYMBOL_TYPE)
30 {
31 char *p;
32 /*
33 * Standard, external, non-debugger, symbols
34 */
35
7e258d18
PB
36 case N_TEXT | N_EXT:
37 case N_NBTEXT | N_EXT:
2670f34d
JG
38 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_TEXT);
39 goto record_it;
40
41 case N_DATA | N_EXT:
7e258d18 42 case N_NBDATA | N_EXT:
2670f34d
JG
43 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_DATA);
44 goto record_it;
45
164207ca 46 case N_BSS:
2670f34d 47 case N_BSS | N_EXT:
7e258d18 48 case N_NBBSS | N_EXT:
2670f34d
JG
49 case N_SETV | N_EXT: /* FIXME, is this in BSS? */
50 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_BSS);
51 goto record_it;
52
7e258d18 53 case N_ABS | N_EXT:
2670f34d 54 record_it:
aab77d5f 55#ifdef DBXREAD_ONLY
7e258d18
PB
56 SET_NAMESTRING();
57
58 bss_ext_symbol:
1ab3bf1b
JG
59 record_minimal_symbol (namestring, CUR_SYMBOL_VALUE,
60 CUR_SYMBOL_TYPE, objfile); /* Always */
aab77d5f 61#endif /* DBXREAD_ONLY */
7e258d18
PB
62 continue;
63
64 /* Standard, local, non-debugger, symbols */
65
66 case N_NBTEXT:
67
68 /* We need to be able to deal with both N_FN or N_TEXT,
69 because we have no way of knowing whether the sys-supplied ld
70 or GNU ld was used to make the executable. Sequents throw
71 in another wrinkle -- they renumbered N_FN. */
72
73 case N_FN:
74 case N_FN_SEQ:
75 case N_TEXT:
aab77d5f 76#ifdef DBXREAD_ONLY
2670f34d 77 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_TEXT);
7e258d18
PB
78 SET_NAMESTRING();
79 if ((namestring[0] == '-' && namestring[1] == 'l')
80 || (namestring [(nsl = strlen (namestring)) - 1] == 'o'
7da1e27d 81 && namestring [nsl - 2] == '.')
866ed2b5
JL
82#ifdef GDB_TARGET_IS_HPPA
83 /* This braindamage is necessary for versions of GCC 2.6 and
84 earlier; it will not be necessary for GCC 2.7.
85
86 In a nutshell, we need a way to determine when we've hit
87 the end of a file with debug symbols. Most ports do this
88 with a N_SO record with a NULL symbol name (as will GCC 2.7
89 on the PA). GCC 2.6 (and earlier) on the PA instead creates
90 an N_TEXT symbol with the name "end_file." */
91 || (namestring[0] == 'e' && STREQ (namestring, "end_file."))
92#endif
7da1e27d 93 )
7e258d18 94 {
866ed2b5 95#ifndef GDB_TARGET_IS_HPPA
5e2e79f8 96 if (objfile -> ei.entry_point < CUR_SYMBOL_VALUE &&
2670f34d 97 objfile -> ei.entry_point >= last_o_file_start)
7e258d18 98 {
5e2e79f8
FF
99 objfile -> ei.entry_file_lowpc = last_o_file_start;
100 objfile -> ei.entry_file_highpc = CUR_SYMBOL_VALUE;
7e258d18 101 }
866ed2b5 102#endif
7e258d18
PB
103 if (past_first_source_file && pst
104 /* The gould NP1 uses low values for .o and -l symbols
105 which are not the address. */
369172bb 106 && CUR_SYMBOL_VALUE >= pst->textlow)
7e258d18
PB
107 {
108 END_PSYMTAB (pst, psymtab_include_list, includes_used,
109 symnum * symbol_size, CUR_SYMBOL_VALUE,
110 dependency_list, dependencies_used);
111 pst = (struct partial_symtab *) 0;
112 includes_used = 0;
113 dependencies_used = 0;
114 }
115 else
116 past_first_source_file = 1;
117 last_o_file_start = CUR_SYMBOL_VALUE;
118 }
164207ca
JK
119 else
120 goto record_it;
aab77d5f 121#endif /* DBXREAD_ONLY */
7e258d18
PB
122 continue;
123
124 case N_DATA:
2670f34d 125 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_DATA);
164207ca 126 goto record_it;
7e258d18
PB
127
128 case N_UNDF | N_EXT:
aab77d5f 129#ifdef DBXREAD_ONLY
7e258d18
PB
130 if (CUR_SYMBOL_VALUE != 0) {
131 /* This is a "Fortran COMMON" symbol. See if the target
132 environment knows where it has been relocated to. */
133
134 CORE_ADDR reladdr;
135
136 SET_NAMESTRING();
137 if (target_lookup_symbol (namestring, &reladdr)) {
138 continue; /* Error in lookup; ignore symbol for now. */
139 }
140 CUR_SYMBOL_TYPE ^= (N_BSS^N_UNDF); /* Define it as a bss-symbol */
141 CUR_SYMBOL_VALUE = reladdr;
142 goto bss_ext_symbol;
143 }
aab77d5f 144#endif /* DBXREAD_ONLY */
7e258d18 145 continue; /* Just undefined, not COMMON */
7e258d18 146
9342ecb9
JG
147 case N_UNDF:
148#ifdef DBXREAD_ONLY
149 if (processing_acc_compilation && bufp->n_strx == 1) {
bcbf9559
JG
150 /* Deal with relative offsets in the string table
151 used in ELF+STAB under Solaris. If we want to use the
152 n_strx field, which contains the name of the file,
153 we must adjust file_string_table_offset *before* calling
154 SET_NAMESTRING(). */
9342ecb9
JG
155 past_first_source_file = 1;
156 file_string_table_offset = next_file_string_table_offset;
157 next_file_string_table_offset =
158 file_string_table_offset + bufp->n_value;
159 if (next_file_string_table_offset < file_string_table_offset)
160 error ("string table offset backs up at %d", symnum);
161 /* FIXME -- replace error() with complaint. */
162 continue;
163 }
164#endif /* DBXREAD_ONLY */
165 continue;
166
7e258d18
PB
167 /* Lots of symbol types we can just ignore. */
168
7e258d18 169 case N_ABS:
7e258d18
PB
170 case N_NBDATA:
171 case N_NBBSS:
172 continue;
173
174 /* Keep going . . .*/
175
176 /*
177 * Special symbol types for GNU
178 */
179 case N_INDR:
180 case N_INDR | N_EXT:
181 case N_SETA:
182 case N_SETA | N_EXT:
183 case N_SETT:
184 case N_SETT | N_EXT:
185 case N_SETD:
186 case N_SETD | N_EXT:
187 case N_SETB:
188 case N_SETB | N_EXT:
189 case N_SETV:
190 continue;
191
192 /*
193 * Debugger symbols
194 */
195
196 case N_SO: {
fc39be58 197 unsigned long valu;
cdaa27e9
SG
198 static int prev_so_symnum = -10;
199 static int first_so_symnum;
c72af089 200 char *p;
fc39be58
JK
201
202 valu = CUR_SYMBOL_VALUE + ANOFFSET (section_offsets, SECT_OFF_TEXT);
203
cdaa27e9
SG
204 past_first_source_file = 1;
205
206 if (prev_so_symnum != symnum - 1)
207 { /* Here if prev stab wasn't N_SO */
208 first_so_symnum = symnum;
209
210 if (pst)
211 {
212 END_PSYMTAB (pst, psymtab_include_list, includes_used,
213 symnum * symbol_size, valu,
214 dependency_list, dependencies_used);
215 pst = (struct partial_symtab *) 0;
216 includes_used = 0;
217 dependencies_used = 0;
218 }
219 }
220
221 prev_so_symnum = symnum;
222
7e258d18
PB
223 /* End the current partial symtab and start a new one */
224
225 SET_NAMESTRING();
226
cad1498f
SG
227 /* Null name means end of .o file. Don't start a new one. */
228 if (*namestring == '\000')
229 continue;
230
c72af089
SG
231 /* Some compilers (including gcc) emit a pair of initial N_SOs.
232 The first one is a directory name; the second the file name.
233 If pst exists, is empty, and has a filename ending in '/',
234 we assume the previous N_SO was a directory name. */
235
323227fe 236 p = strrchr (namestring, '/');
c72af089 237 if (p && *(p+1) == '\000')
cdaa27e9 238 continue; /* Simply ignore directory name SOs */
c72af089
SG
239
240 /* Some other compilers (C++ ones in particular) emit useless
cdaa27e9
SG
241 SOs for non-existant .c files. We ignore all subsequent SOs that
242 immediately follow the first. */
243
244 if (!pst)
245 pst = START_PSYMTAB (objfile, section_offsets,
246 namestring, valu,
247 first_so_symnum * symbol_size,
248 objfile -> global_psymbols.next,
249 objfile -> static_psymbols.next);
7e258d18
PB
250 continue;
251 }
252
7e258d18 253 case N_BINCL:
91f87016 254 {
aab77d5f 255#ifdef DBXREAD_ONLY
91f87016
JL
256 enum language tmp_language;
257 /* Add this bincl to the bincl_list for future EXCLs. No
258 need to save the string; it'll be around until
259 read_dbx_symtab function returns */
7e258d18 260
91f87016
JL
261 SET_NAMESTRING();
262
263 tmp_language = deduce_language_from_filename (namestring);
264
265 /* Only change the psymtab's language if we've learned
266 something useful (eg. tmp_language is not language_unknown).
267 In addition, to match what start_subfile does, never change
268 from C++ to C. */
269 if (tmp_language != language_unknown
270 && (tmp_language != language_c
271 || psymtab_language != language_cplus))
272 psymtab_language = tmp_language;
7e258d18 273
91f87016 274 add_bincl_to_list (pst, namestring, CUR_SYMBOL_VALUE);
7e258d18 275
91f87016 276 /* Mark down an include file in the current psymtab */
7e258d18 277
91f87016 278 goto record_include_file;
7e258d18 279
8a1c3e99 280#else /* DBXREAD_ONLY */
91f87016 281 continue;
8a1c3e99 282#endif
91f87016 283 }
7e258d18
PB
284
285 case N_SOL:
7e258d18 286 {
91f87016
JL
287 enum language tmp_language;
288 /* Mark down an include file in the current psymtab */
289
290 SET_NAMESTRING();
291
292 tmp_language = deduce_language_from_filename (namestring);
293
294 /* Only change the psymtab's language if we've learned
295 something useful (eg. tmp_language is not language_unknown).
296 In addition, to match what start_subfile does, never change
297 from C++ to C. */
298 if (tmp_language != language_unknown
299 && (tmp_language != language_c
300 || psymtab_language != language_cplus))
301 psymtab_language = tmp_language;
302
303 /* In C++, one may expect the same filename to come round many
304 times, when code is coming alternately from the main file
305 and from inline functions in other files. So I check to see
306 if this is a file we've seen before -- either the main
307 source file, or a previously included file.
308
309 This seems to be a lot of time to be spending on N_SOL, but
310 things like "break c-exp.y:435" need to work (I
311 suppose the psymtab_include_list could be hashed or put
312 in a binary tree, if profiling shows this is a major hog). */
313 if (pst && STREQ (namestring, pst->filename))
7e258d18 314 continue;
7e258d18 315 {
91f87016
JL
316 register int i;
317 for (i = 0; i < includes_used; i++)
318 if (STREQ (namestring, psymtab_include_list[i]))
319 {
320 i = -1;
321 break;
322 }
323 if (i == -1)
324 continue;
7e258d18 325 }
91f87016
JL
326
327#ifdef DBXREAD_ONLY
328 record_include_file:
329#endif
330
331 psymtab_include_list[includes_used++] = namestring;
332 if (includes_used >= includes_allocated)
333 {
334 char **orig = psymtab_include_list;
335
336 psymtab_include_list = (char **)
337 alloca ((includes_allocated *= 2) *
338 sizeof (char *));
339 memcpy ((PTR)psymtab_include_list, (PTR)orig,
340 includes_used * sizeof (char *));
341 }
342 continue;
343 }
7e258d18
PB
344 case N_LSYM: /* Typedef or automatic variable. */
345 case N_STSYM: /* Data seg var -- static */
346 case N_LCSYM: /* BSS " */
2670f34d 347 case N_ROSYM: /* Read-only data seg var -- static. */
7e258d18
PB
348 case N_NBSTS: /* Gould nobase. */
349 case N_NBLCS: /* symbols. */
4ae030b9
JK
350 case N_FUN:
351 case N_GSYM: /* Global (extern) variable; can be
352 data or bss (sigh FIXME). */
353
354 /* Following may probably be ignored; I'll leave them here
355 for now (until I do Pascal and Modula 2 extensions). */
356
357 case N_PC: /* I may or may not need this; I
358 suspect not. */
359 case N_M2C: /* I suspect that I can ignore this here. */
360 case N_SCOPE: /* Same. */
7e258d18
PB
361
362 SET_NAMESTRING();
363
364 p = (char *) strchr (namestring, ':');
4ae030b9
JK
365 if (!p)
366 continue; /* Not a debugging symbol. */
7e258d18 367
4ae030b9
JK
368
369
370 /* Main processing section for debugging symbols which
371 the initial read through the symbol tables needs to worry
372 about. If we reach this point, the symbol which we are
373 considering is definitely one we are interested in.
374 p must also contain the (valid) index into the namestring
375 which indicates the debugging type symbol. */
7e258d18
PB
376
377 switch (p[1])
378 {
4ae030b9
JK
379 case 'S':
380 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_DATA);
381 ADD_PSYMBOL_ADDR_TO_LIST (namestring, p - namestring,
382 VAR_NAMESPACE, LOC_STATIC,
383 objfile->static_psymbols,
384 CUR_SYMBOL_VALUE,
385 psymtab_language, objfile);
386 continue;
387 case 'G':
388 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_DATA);
389 /* The addresses in these entries are reported to be
390 wrong. See the code that reads 'G's for symtabs. */
391 ADD_PSYMBOL_ADDR_TO_LIST (namestring, p - namestring,
392 VAR_NAMESPACE, LOC_STATIC,
393 objfile->global_psymbols,
394 CUR_SYMBOL_VALUE,
395 psymtab_language, objfile);
396 continue;
397
7e258d18 398 case 'T':
bcbf9559 399 if (p != namestring) /* a name is there, not just :T... */
7e258d18 400 {
7e258d18 401 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
bcbf9559 402 STRUCT_NAMESPACE, LOC_TYPEDEF,
2e4964ad
FF
403 objfile->static_psymbols,
404 CUR_SYMBOL_VALUE,
405 psymtab_language, objfile);
bcbf9559
JG
406 if (p[2] == 't')
407 {
408 /* Also a typedef with the same name. */
409 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
410 VAR_NAMESPACE, LOC_TYPEDEF,
2e4964ad
FF
411 objfile->static_psymbols,
412 CUR_SYMBOL_VALUE, psymtab_language,
413 objfile);
bcbf9559
JG
414 p += 1;
415 }
91f87016
JL
416 /* The semantics of C++ state that "struct foo { ... }"
417 also defines a typedef for "foo". Unfortuantely, cfront
418 never makes the typedef when translating from C++ to C.
419 We make the typedef here so that "ptype foo" works as
420 expected for cfront translated code. */
421 else if (psymtab_language == language_cplus)
422 {
423 /* Also a typedef with the same name. */
424 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
425 VAR_NAMESPACE, LOC_TYPEDEF,
426 objfile->static_psymbols,
427 CUR_SYMBOL_VALUE, psymtab_language,
428 objfile);
429 }
7e258d18
PB
430 }
431 goto check_enum;
432 case 't':
bcbf9559
JG
433 if (p != namestring) /* a name is there, not just :T... */
434 {
435 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
436 VAR_NAMESPACE, LOC_TYPEDEF,
2e4964ad
FF
437 objfile->static_psymbols,
438 CUR_SYMBOL_VALUE,
439 psymtab_language, objfile);
bcbf9559 440 }
7e258d18 441 check_enum:
7e258d18
PB
442 /* If this is an enumerated type, we need to
443 add all the enum constants to the partial symbol
444 table. This does not cover enums without names, e.g.
445 "enum {a, b} c;" in C, but fortunately those are
446 rare. There is no way for GDB to find those from the
447 enum type without spending too much time on it. Thus
4ae030b9
JK
448 to solve this problem, the compiler needs to put out the
449 enum in a nameless type. GCC2 does this. */
7e258d18
PB
450
451 /* We are looking for something of the form
452 <name> ":" ("t" | "T") [<number> "="] "e"
453 {<constant> ":" <value> ","} ";". */
454
455 /* Skip over the colon and the 't' or 'T'. */
456 p += 2;
457 /* This type may be given a number. Also, numbers can come
458 in pairs like (0,26). Skip over it. */
459 while ((*p >= '0' && *p <= '9')
460 || *p == '(' || *p == ',' || *p == ')'
461 || *p == '=')
462 p++;
463
464 if (*p++ == 'e')
465 {
466 /* We have found an enumerated type. */
467 /* According to comments in read_enum_type
468 a comma could end it instead of a semicolon.
469 I don't know where that happens.
470 Accept either. */
471 while (*p && *p != ';' && *p != ',')
472 {
473 char *q;
474
475 /* Check for and handle cretinous dbx symbol name
476 continuation! */
91a0575c 477 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
7e258d18
PB
478 p = next_symbol_text ();
479
480 /* Point to the character after the name
481 of the enum constant. */
482 for (q = p; *q && *q != ':'; q++)
483 ;
484 /* Note that the value doesn't matter for
485 enum constants in psymtabs, just in symtabs. */
486 ADD_PSYMBOL_TO_LIST (p, q - p,
487 VAR_NAMESPACE, LOC_CONST,
2e4964ad
FF
488 objfile->static_psymbols, 0,
489 psymtab_language, objfile);
7e258d18
PB
490 /* Point past the name. */
491 p = q;
492 /* Skip over the value. */
493 while (*p && *p != ',')
494 p++;
495 /* Advance past the comma. */
496 if (*p)
497 p++;
498 }
499 }
7e258d18
PB
500 continue;
501 case 'c':
502 /* Constant, e.g. from "const" in Pascal. */
503 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
504 VAR_NAMESPACE, LOC_CONST,
2e4964ad
FF
505 objfile->static_psymbols, CUR_SYMBOL_VALUE,
506 psymtab_language, objfile);
7e258d18 507 continue;
7e258d18
PB
508
509 case 'f':
2fe3b329 510 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_TEXT);
9342ecb9
JG
511#ifdef DBXREAD_ONLY
512 /* Kludges for ELF/STABS with Sun ACC */
513 last_function_name = namestring;
a66e8382
SG
514 /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
515 value for the bottom of the text seg in those cases. */
516 if (pst && pst->textlow == 0 && !symfile_relocatable)
9342ecb9
JG
517 pst->textlow = CUR_SYMBOL_VALUE;
518#if 0
519 if (startup_file_end == 0)
520 startup_file_end = CUR_SYMBOL_VALUE;
521#endif
522 /* End kludge. */
523#endif /* DBXREAD_ONLY */
7e258d18
PB
524 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
525 VAR_NAMESPACE, LOC_BLOCK,
2e4964ad
FF
526 objfile->static_psymbols, CUR_SYMBOL_VALUE,
527 psymtab_language, objfile);
7e258d18
PB
528 continue;
529
530 /* Global functions were ignored here, but now they
531 are put into the global psymtab like one would expect.
65ce5df4 532 They're also in the minimal symbol table. */
7e258d18 533 case 'F':
2fe3b329 534 CUR_SYMBOL_VALUE += ANOFFSET (section_offsets, SECT_OFF_TEXT);
9342ecb9
JG
535#ifdef DBXREAD_ONLY
536 /* Kludges for ELF/STABS with Sun ACC */
537 last_function_name = namestring;
a66e8382
SG
538 /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
539 value for the bottom of the text seg in those cases. */
540 if (pst && pst->textlow == 0 && !symfile_relocatable)
9342ecb9
JG
541 pst->textlow = CUR_SYMBOL_VALUE;
542#if 0
543 if (startup_file_end == 0)
544 startup_file_end = CUR_SYMBOL_VALUE;
545#endif
546 /* End kludge. */
547#endif /* DBXREAD_ONLY */
7e258d18
PB
548 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
549 VAR_NAMESPACE, LOC_BLOCK,
2e4964ad
FF
550 objfile->global_psymbols, CUR_SYMBOL_VALUE,
551 psymtab_language, objfile);
7e258d18
PB
552 continue;
553
554 /* Two things show up here (hopefully); static symbols of
555 local scope (static used inside braces) or extensions
556 of structure symbols. We can ignore both. */
557 case 'V':
558 case '(':
559 case '0':
560 case '1':
561 case '2':
562 case '3':
563 case '4':
564 case '5':
565 case '6':
566 case '7':
567 case '8':
568 case '9':
569 continue;
570
9d271503
JK
571 case ':':
572 /* It is a C++ nested symbol. We don't need to record it
573 (I don't think); if we try to look up foo::bar::baz,
574 then symbols for the symtab containing foo should get
575 read in, I think. */
576 /* Someone says sun cc puts out symbols like
7e258d18
PB
577 /foo/baz/maclib::/usr/local/bin/maclib,
578 which would get here with a symbol type of ':'. */
9d271503
JK
579 continue;
580
581 default:
582 /* Unexpected symbol descriptor. The second and subsequent stabs
583 of a continued stab can show up here. The question is
584 whether they ever can mimic a normal stab--it would be
585 nice if not, since we certainly don't want to spend the
586 time searching to the end of every string looking for
587 a backslash. */
588
65ce5df4 589 complain (&unknown_symchar_complaint, p[1]);
9d271503
JK
590
591 /* Ignore it; perhaps it is an extension that we don't
592 know about. */
7e258d18
PB
593 continue;
594 }
595
7e258d18 596 case N_EXCL:
aab77d5f 597#ifdef DBXREAD_ONLY
7e258d18
PB
598
599 SET_NAMESTRING();
600
601 /* Find the corresponding bincl and mark that psymtab on the
602 psymtab dependency list */
603 {
604 struct partial_symtab *needed_pst =
605 find_corresponding_bincl_psymtab (namestring, CUR_SYMBOL_VALUE);
606
607 /* If this include file was defined earlier in this file,
608 leave it alone. */
609 if (needed_pst == pst) continue;
610
611 if (needed_pst)
612 {
613 int i;
614 int found = 0;
615
616 for (i = 0; i < dependencies_used; i++)
617 if (dependency_list[i] == needed_pst)
618 {
619 found = 1;
620 break;
621 }
622
623 /* If it's already in the list, skip the rest. */
624 if (found) continue;
625
626 dependency_list[dependencies_used++] = needed_pst;
627 if (dependencies_used >= dependencies_allocated)
628 {
629 struct partial_symtab **orig = dependency_list;
630 dependency_list =
631 (struct partial_symtab **)
632 alloca ((dependencies_allocated *= 2)
633 * sizeof (struct partial_symtab *));
be772100 634 memcpy ((PTR)dependency_list, (PTR)orig,
7e258d18
PB
635 (dependencies_used
636 * sizeof (struct partial_symtab *)));
637#ifdef DEBUG_INFO
199b2450
TL
638 fprintf_unfiltered (gdb_stderr, "Had to reallocate dependency list.\n");
639 fprintf_unfiltered (gdb_stderr, "New dependencies allocated: %d\n",
7e258d18
PB
640 dependencies_allocated);
641#endif
642 }
643 }
7e258d18 644 }
aab77d5f 645#endif /* DBXREAD_ONLY */
7e258d18 646 continue;
7e258d18
PB
647
648 case N_RBRAC:
649#ifdef HANDLE_RBRAC
650 HANDLE_RBRAC(CUR_SYMBOL_VALUE);
aab77d5f 651 continue;
7e258d18
PB
652#endif
653 case N_EINCL:
654 case N_DSLINE:
655 case N_BSLINE:
656 case N_SSYM: /* Claim: Structure or union element.
657 Hopefully, I can ignore this. */
658 case N_ENTRY: /* Alternate entry point; can ignore. */
659 case N_MAIN: /* Can definitely ignore this. */
660 case N_CATCH: /* These are GNU C++ extensions */
661 case N_EHDECL: /* that can safely be ignored here. */
662 case N_LENG:
663 case N_BCOMM:
664 case N_ECOMM:
665 case N_ECOML:
666 case N_FNAME:
667 case N_SLINE:
668 case N_RSYM:
669 case N_PSYM:
670 case N_LBRAC:
671 case N_NSYMS: /* Ultrix 4.0: symbol count */
672 case N_DEFD: /* GNU Modula-2 */
9342ecb9 673
4c7c6bab 674 case N_OBJ: /* useless types from Solaris */
9342ecb9 675 case N_OPT:
4c7c6bab 676 case N_ENDM:
7e258d18
PB
677 /* These symbols aren't interesting; don't worry about them */
678
679 continue;
680
681 default:
7e258d18
PB
682 /* If we haven't found it yet, ignore it. It's probably some
683 new type we don't know about yet. */
51b80b00 684 complain (&unknown_symtype_complaint,
833e0d94 685 local_hex_string (CUR_SYMBOL_TYPE));
7e258d18
PB
686 continue;
687 }
This page took 0.209503 seconds and 4 git commands to generate.