aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-27 00:00:13 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-27 00:00:13 +0000
commite841d723225209c6b98c99e7650d614c96401874 (patch)
tree333d545e9a2173c97bd7c9a38138bd395613f0f5 /bfd
parentcf9d0fd9808c82a1d78d4120491aa9df588fd300 (diff)
downloadgdb-e841d723225209c6b98c99e7650d614c96401874.zip
gdb-e841d723225209c6b98c99e7650d614c96401874.tar.gz
gdb-e841d723225209c6b98c99e7650d614c96401874.tar.bz2
(struct elf_link_hash_entry): Add new field elf_hash_value.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/elf-bfd.h25
1 files changed, 21 insertions, 4 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h
index 67a9875..3eb8561 100644
--- a/bfd/elf-bfd.h
+++ b/bfd/elf-bfd.h
@@ -98,8 +98,8 @@ struct elf_link_hash_entry
/* If this symbol requires an entry in the global offset table, the
processor specific backend uses this field to track usage and
final offset. We use a union and two names primarily to document
- the intent of any particular piece of code. The field should be
- used as a count until size_dynamic_sections, at which point the
+ the intent of any particular piece of code. The field should be
+ used as a count until size_dynamic_sections, at which point the
contents of the .got is fixed. Afterward, if this field is -1,
then the symbol does not require a global offset table entry. */
union
@@ -147,6 +147,9 @@ struct elf_link_hash_entry
/* Symbol st_other value. */
unsigned char other;
+ /* Hash value of the name computed using the ELF hash function. */
+ unsigned long elf_hash_value;
+
/* Some flags; legal values follow. */
unsigned short elf_link_hash_flags;
/* Symbol is referenced by a non-shared object. */
@@ -315,7 +318,7 @@ struct elf_backend_data
/* A function to set the type of the info field. Processor-specific
types should be handled here. */
- int (*elf_backend_get_symbol_type) PARAMS (( Elf_Internal_Sym *));
+ int (*elf_backend_get_symbol_type) PARAMS (( Elf_Internal_Sym *, int));
/* A function to do additional processing on the ELF section header
just before writing it out. This is used to set the flags and
@@ -647,11 +650,22 @@ struct elf_obj_tdata
unsigned int strtab_section, dynsymtab_section;
unsigned int dynversym_section, dynverdef_section, dynverref_section;
file_ptr next_file_pos;
+#if 0
+ /* we don't need these inside bfd anymore, and I think
+ these weren't used outside bfd. */
void *prstatus; /* The raw /proc prstatus structure */
void *prpsinfo; /* The raw /proc prpsinfo structure */
+#endif
bfd_vma gp; /* The gp value (MIPS only, for now) */
unsigned int gp_size; /* The gp size (MIPS only, for now) */
+ /* Information grabbed from an elf core file. */
+ int core_signal;
+ int core_pid;
+ int core_lwpid;
+ char* core_program;
+ char* core_command;
+
/* This is set to true if the object was created by the backend
linker. */
boolean linker;
@@ -668,7 +682,7 @@ struct elf_obj_tdata
should be used as a count until size_dynamic_sections, at which
point the contents of the .got is fixed. Afterward, if an entry
is -1, then the symbol does not require a global offset table entry. */
- union
+ union
{
bfd_signed_vma *refcounts;
bfd_vma *offsets;
@@ -707,6 +721,9 @@ struct elf_obj_tdata
find_nearest_line. */
struct mips_elf_find_line *find_line_info;
+ /* A place to stash dwarf1 info for this bfd. */
+ struct dwarf1_debug *dwarf1_find_line_info;
+
/* A place to stash dwarf2 info for this bfd. */
struct dwarf2_debug *dwarf2_find_line_info;