diff options
author | Tom Tromey <tromey@redhat.com> | 2008-10-01 16:41:27 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-10-01 16:41:27 +0000 |
commit | b887350fc5f89f8951fbb78fdcab520a37fa37ce (patch) | |
tree | bf1506c248c930749a45da700813ff7a04c25811 /gdb/symtab.h | |
parent | d35e579508b6eba9f7d9224761a42e988d1a247d (diff) | |
download | gdb-b887350fc5f89f8951fbb78fdcab520a37fa37ce.zip gdb-b887350fc5f89f8951fbb78fdcab520a37fa37ce.tar.gz gdb-b887350fc5f89f8951fbb78fdcab520a37fa37ce.tar.bz2 |
* xcoffread.c (RECORD_MINIMAL_SYMBOL): Update.
(scan_xcoff_symtab): Update.
* mdebugread.c (record_minimal_symbol): Update.
(parse_partial_symbols): Update.
* elfread.c (record_minimal_symbol): Update.
* dbxread.c (record_minimal_symbol): Update.
* coffread.c (record_minimal_symbol): Update.
* sh64-tdep.c (MSYMBOL_IS_SPECIAL): Redefine.
(sh64_elf_make_msymbol_special): Update.
* mips-tdep.c (mips_elf_make_msymbol_special): Use
MSYMBOL_TARGET_FLAG_1.
(mips_elf_make_msymbol_special): Likewise.
(msymbol_is_special): Likewise.
* minsyms.c (prim_record_minimal_symbol_and_info): Update.
(install_minimal_symbols): Likewise.
(prim_record_minimal_symbol): Update.
(prim_record_minimal_symbol_and_info): Remove 'info' argument.
* m68hc11-tdep.c (MSYMBOL_SET_RTC): Redefine.
(MSYMBOL_SET_RTI): Redefine.
(MSYMBOL_IS_RTC): Redefine.
(MSYMBOL_IS_RTI): Redefine.
* arm-tdep.c (MSYMBOL_SET_SPECIAL): Redefine.
(MSYMBOL_IS_SPECIAL): Redefine.
* symtab.h (struct minimal_symbol) <info>: Remove.
<target_flag_1, target_flag_2>: New fields.
(MSYMBOL_INFO): Remove.
(MSYMBOL_TARGET_FLAG_1): New macro.
(MSYMBOL_TARGET_FLAG_2): Likewise.
(prim_record_minimal_symbol_and_info): Update.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index c124242..c5ac732 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -319,21 +319,6 @@ struct minimal_symbol struct general_symbol_info ginfo; - /* The info field is available for caching machine-specific - information so it doesn't have to rederive the info constantly - (over a serial line). It is initialized to zero and stays that - way until target-dependent code sets it. Storage for any data - pointed to by this field should be allocated on the - objfile_obstack for the associated objfile. The type would be - "void *" except for reasons of compatibility with older - compilers. This field is optional. - - Currently, the AMD 29000 tdep.c uses it to remember things it has decoded - from the instructions in the function header, and the MIPS-16 code uses - it to identify 16-bit procedures. */ - - char *info; - /* Size of this symbol. end_psymtab in dbxread.c uses this information to calculate the end of the partial symtab based on the address of the last symbol plus the size of the last symbol. */ @@ -347,6 +332,10 @@ struct minimal_symbol ENUM_BITFIELD(minimal_symbol_type) type : 8; + /* Two flag bits provided for the use of the target. */ + unsigned int target_flag_1 : 1; + unsigned int target_flag_2 : 1; + /* Minimal symbols with the same hash key are kept on a linked list. This is the link. */ @@ -358,7 +347,8 @@ struct minimal_symbol struct minimal_symbol *demangled_hash_next; }; -#define MSYMBOL_INFO(msymbol) (msymbol)->info +#define MSYMBOL_TARGET_FLAG_1(msymbol) (msymbol)->target_flag_1 +#define MSYMBOL_TARGET_FLAG_2(msymbol) (msymbol)->target_flag_2 #define MSYMBOL_SIZE(msymbol) (msymbol)->size #define MSYMBOL_TYPE(msymbol) (msymbol)->type @@ -1100,7 +1090,7 @@ extern void prim_record_minimal_symbol (const char *, CORE_ADDR, extern struct minimal_symbol *prim_record_minimal_symbol_and_info (const char *, CORE_ADDR, enum minimal_symbol_type, - char *info, int section, asection * bfd_section, struct objfile *); + int section, asection * bfd_section, struct objfile *); extern unsigned int msymbol_hash_iw (const char *); |