diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-08 17:26:31 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-08 17:26:31 +0000 |
commit | 3c7d306488436a011afb3a11e5ff2ef0d771717a (patch) | |
tree | e47f883359e0bf89a5dfce44bbec39d204bd827d /gdb/minsyms.c | |
parent | 9f1e14f4c90eca1708ef02ad5dddcb9c526fb0e3 (diff) | |
download | gdb-3c7d306488436a011afb3a11e5ff2ef0d771717a.zip gdb-3c7d306488436a011afb3a11e5ff2ef0d771717a.tar.gz gdb-3c7d306488436a011afb3a11e5ff2ef0d771717a.tar.bz2 |
Revert previous change. It doesn't work because it neglects to
consider there may be a file compiled without -g screwing things up
(e.g. we are looking for the minimal symbol for "main" and we get the
one for "start" instead).
This is the change I mean:
* minsyms.c, symtab.h (lookup_next_minimal_symbol): New function.
* dbxread.c (process_one_symbol): Use it.
Diffstat (limited to 'gdb/minsyms.c')
-rw-r--r-- | gdb/minsyms.c | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/gdb/minsyms.c b/gdb/minsyms.c index 2efb96e..b8d7372 100644 --- a/gdb/minsyms.c +++ b/gdb/minsyms.c @@ -265,89 +265,6 @@ lookup_minimal_symbol_by_pc (pc) return (best_symbol); } -/* Just like lookup_minimal_symbol_by_pc, but look up the closest minimal - symbol > PC, not the one <= PC. */ - -struct minimal_symbol * -lookup_next_minimal_symbol (pc) - CORE_ADDR pc; -{ - register int lo; - register int hi; - register int new; - register struct objfile *objfile; - register struct minimal_symbol *msymbol; - register struct minimal_symbol *best_symbol = NULL; - - for (objfile = object_files; - objfile != NULL; - objfile = objfile -> next) - { - /* If this objfile has a minimal symbol table, go search it using - a binary search. Note that a minimal symbol table always consists - of at least two symbols, a "real" symbol and the terminating - "null symbol". If there are no real symbols, then there is no - minimal symbol table at all. */ - - if ((msymbol = objfile -> msymbols) != NULL) - { - lo = 0; - hi = objfile -> minimal_symbol_count - 1; - - /* This code assumes that the minimal symbols are sorted by - ascending address values. If the pc value is greater than or - equal to the first symbol's address, then some symbol in this - minimal symbol table is a suitable candidate for being the - "best" symbol. This includes the last real symbol, for cases - where the pc value is larger than any address in this vector. - - By iterating until the address associated with the current - hi index (the endpoint of the test interval) is less than - or equal to the desired pc value, we accomplish two things: - (1) the case where the pc value is larger than any minimal - symbol address is trivially solved, (2) the address associated - with the hi index is always the one we want when the interation - terminates. In essence, we are iterating the test interval - down until the pc value is pushed out of it from the high end. - - Warning: this code is trickier than it would appear at first. */ - - /* Intentionally does not check that pc <= start of objfile. - dbxread.c:process_one_symbol wants to call this with zero and - get the first minimal symbol. */ - if (pc < SYMBOL_VALUE_ADDRESS (&msymbol[hi])) - { - while (SYMBOL_VALUE_ADDRESS (&msymbol[lo]) <= pc) - { - /* pc is still strictly less than highest address */ - /* Note "new" will always be >= lo */ - new = (lo + hi) / 2; - if ((SYMBOL_VALUE_ADDRESS (&msymbol[new]) < pc) || - (lo == new)) - { - hi = new; - } - else - { - lo = new; - } - } - /* The minimal symbol indexed by hi now is the best one in this - objfile's minimal symbol table. See if it is the best one - overall. */ - - if ((best_symbol == NULL) || - (SYMBOL_VALUE_ADDRESS (best_symbol) > - SYMBOL_VALUE_ADDRESS (&msymbol[lo]))) - { - best_symbol = &msymbol[lo]; - } - } - } - } - return (best_symbol); -} - /* Prepare to start collecting minimal symbols. Note that presetting msym_bunch_index to BUNCH_SIZE causes the first call to save a minimal symbol to allocate the memory for the first bunch. */ |