From: Jeff Law Date: Wed, 22 Oct 1997 19:04:30 +0000 (+0000) Subject: * dbxread.c: Fix various violations of the GNU coding and X-Git-Tag: gdb-4_18~4416 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab41527bce44356bde40cd303ad4c204f3ffc572;p=external%2Fbinutils.git * dbxread.c: Fix various violations of the GNU coding and formatting standards. Update/add comments to make code clearer. (process_later): Use xrealloc instead of realloc. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3b28443..36ebe41 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,4 +1,9 @@ -Wed Oct 22 12:15:37 1997 Jeffrey A Law (law@cygnus.com) +Wed Oct 22 13:04:52 1997 Jeffrey A Law (law@cygnus.com) + + * dbxread.c: Fix various violations of the GNU coding and + formatting standards. Update/add comments to make code + clearer. + (process_later): Use xrealloc instead of realloc. * symtab.c: Include inferior.h. diff --git a/gdb/dbxread.c b/gdb/dbxread.c index ad2fe08..d7af14f 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -165,6 +165,11 @@ static int block_address_function_relative = 0; reflect the address it will be loaded at). */ static CORE_ADDR lowest_text_address; +/* Non-zero if there is any line number info in the objfile. Prevents + end_psymtab from discarding an otherwise empty psymtab. */ + +static int has_line_numbers; + /* Complaints about the symbols we have encountered. */ struct complaint lbrac_complaint = @@ -794,21 +799,29 @@ static struct cont_elem *cont_list = 0; static int cont_limit = 0; static int cont_count = 0; +/* Arrange for function F to be called with arguments SYM and P later + in the stabs reading process. */ void process_later (sym, p, f) - struct symbol * sym; - char * p; + struct symbol *sym; + char *p; int (*f) PARAMS ((struct objfile *, struct symbol *, char *)); { + + /* Allocate more space for the deferred list. */ if (cont_count >= cont_limit - 1) { cont_limit += 32; /* chunk size */ - cont_list = (struct cont_elem *) realloc (cont_list, - cont_limit * sizeof (struct cont_elem)); + + cont_list + = (struct cont_elem *) xrealloc (cont_list, + (cont_limit + * sizeof (struct cont_elem))); if (!cont_list) error ("Virtual memory exhausted\n"); } - /* save state so we can process these stabs later */ + + /* Save state variables so we can process these stabs later. */ cont_list[cont_count].sym_idx = symbuf_idx; cont_list[cont_count].sym_end = symbuf_end; cont_list[cont_count].symnum = symnum; @@ -818,40 +831,49 @@ process_later (sym, p, f) cont_count++; } +/* Call deferred funtions in CONT_LIST. */ + static void process_now (objfile) - struct objfile * objfile; + struct objfile *objfile; { int i; - /* save original state */ - int save_symbuf_idx = symbuf_idx; - int save_symbuf_end = symbuf_end; - int save_symnum = symnum; + int save_symbuf_idx; + int save_symbuf_end; + int save_symnum; struct symbol *sym; char *stabs; int err; int (*func) PARAMS ((struct objfile *, struct symbol *, char *)); - for (i=0; ie_type) == N_SLINE) - continue; + { + has_line_numbers = 1; + continue; + } INTERNALIZE_SYMBOL (nlist, bufp, abfd); OBJSTAT (objfile, n_stabs++); @@ -1517,7 +1543,8 @@ end_psymtab (pst, include_list, num_includes, capping_symbol_offset, if (num_includes == 0 && number_dependencies == 0 && pst->n_global_syms == 0 - && pst->n_static_syms == 0) + && pst->n_static_syms == 0 + && has_line_numbers == 0) { /* Throw away this psymtab, it's empty. We can't deallocate it, since it is on the obstack, but we can forget to chain it on the list. */ @@ -1815,7 +1842,7 @@ read_ofile_symtab (pst) pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT); /* Process items which we had to "process_later" due to dependancies - on other stabs. */ + on other stabs. */ process_now (objfile); end_stabs (); @@ -2370,23 +2397,33 @@ process_one_symbol (type, desc, valu, name, section_offsets, objfile) break; } - /* Special GNU C extension for referencing names. */ + /* '#' is a GNU C extension to allow one symbol to refer to another + related symbol. + + Generally this is used so that an alias can refer to its main + symbol. */ if (name[0] == '#') { /* Initialize symbol reference names and determine if this is a definition. If symbol reference is being defined, go ahead and add it. Otherwise, just return sym. */ + char *s; int refnum; + /* If defined, store away a pointer to the symbol; we'll use it later when we resolve references in "resolve_symbol_reference". */ - s = name; + /* If this stab defines a new reference ID that is not on the + reference list, then put it on the reference list. + + We go ahead and advance NAME past the reference, even though + it is not strictly necessary at this time. */ if (refnum = symbol_reference_defined (&s), refnum) if (!ref_search (refnum)) ref_add (refnum, 0, name, valu); - name = s; /* Advance past refid. */ + name = s; }