diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-02-05 22:01:48 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-02-10 14:38:08 +0000 |
commit | ebbc3a7d56f82f68bbeece3d7daf1823c9d98170 (patch) | |
tree | 07d4658bb23d7c55f074c9a2cf7fb0141f389948 /gdb/symtab.h | |
parent | 52ff20fe7ba8e8de2660339fff5308ed932e2b32 (diff) | |
download | gdb-ebbc3a7d56f82f68bbeece3d7daf1823c9d98170.zip gdb-ebbc3a7d56f82f68bbeece3d7daf1823c9d98170.tar.gz gdb-ebbc3a7d56f82f68bbeece3d7daf1823c9d98170.tar.bz2 |
gdb: Delete SYMBOL_OBJ_SECTION and MSYMBOL_OBJ_SECTION
Replace the two macros SYMBOL_OBJ_SECTION and MSYMBOL_OBJ_SECTION with
a member function on general_symbol_info.
There should be no user visible change after this commit.
gdb/ChangeLog:
* breakpoint.c (resolve_sal_pc): Replace SYMBOL_OBJ_SECTION and
MSYMBOL_OBJ_SECTION.
* findvar.c (language_defn::read_var_value): Likewise.
* infcmd.c (jump_command): Likewise.
* linespec.c (minsym_found): Likewise.
* maint.c (maintenance_translate_address): Likewise.
* minsyms.c (lookup_minimal_symbol_by_pc_section): Likewise.
(minimal_symbol_upper_bound): Likewise.
* parse.c (find_minsym_type_and_address): Likewise.
(operator_check_standard): Likewise.
* printcmd.c (info_address_command): Likewise.
* symmisc.c (dump_msymbols): Likewise.
(print_symbol): Likewise.
* symtab.c (general_symbol_info::obj_section): Define new
function.
(fixup_symbol_section): Replace SYMBOL_OBJ_SECTION.
(find_pc_sect_compunit_symtab): Likewise.
(find_function_start_sal): Likewise.
(skip_prologue_sal): Replace SYMBOL_OBJ_SECTION and
MSYMBOL_OBJ_SECTION.
* symtab.h (struct general_symbol_info) <obj_section>: Declare new
function.
(SYMBOL_OBJ_SECTION): Delete.
(MSYMBOL_OBJ_SECTION): Delete.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index f060e0e..e85ae68 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -540,6 +540,12 @@ struct general_symbol_info does not get relocated relative to a section. */ short section; + + /* Return the obj_section from OBJFILE for this symbol. The symbol + returned is based on the SECTION member variable, and can be nullptr + if SECTION is negative. */ + + struct obj_section *obj_section (const struct objfile *objfile) const; }; extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, struct obj_section *); @@ -565,10 +571,6 @@ extern CORE_ADDR get_symbol_address (const struct symbol *sym); #define SYMBOL_BLOCK_VALUE(symbol) (symbol)->value.block #define SYMBOL_VALUE_CHAIN(symbol) (symbol)->value.chain #define SYMBOL_SECTION(symbol) (symbol)->section -#define SYMBOL_OBJ_SECTION(objfile, symbol) \ - (((symbol)->section >= 0) \ - ? (&(((objfile)->sections)[(symbol)->section])) \ - : NULL) /* Try to determine the demangled name for a symbol, based on the language of that symbol. If the language is set to language_auto, @@ -763,10 +765,6 @@ extern CORE_ADDR get_msymbol_address (struct objfile *objf, #define MSYMBOL_BLOCK_VALUE(symbol) (symbol)->value.block #define MSYMBOL_VALUE_CHAIN(symbol) (symbol)->value.chain #define MSYMBOL_SECTION(symbol) (symbol)->section -#define MSYMBOL_OBJ_SECTION(objfile, symbol) \ - (((symbol)->section >= 0) \ - ? (&(((objfile)->sections)[(symbol)->section])) \ - : NULL) #include "minsyms.h" |