diff options
author | Randolph Chung <tausq@debian.org> | 2004-12-17 19:09:53 +0000 |
---|---|---|
committer | Randolph Chung <tausq@debian.org> | 2004-12-17 19:09:53 +0000 |
commit | 77d18ded6e5a42fa018b5dace86d212b6f7fb8f9 (patch) | |
tree | eb4f5e3c4ef0c6c45393fbc2f227fec0f7d0c093 /gdb/hppa-tdep.h | |
parent | e3070fef41863855bd4fcade884cfda11abedb06 (diff) | |
download | gdb-77d18ded6e5a42fa018b5dace86d212b6f7fb8f9.zip gdb-77d18ded6e5a42fa018b5dace86d212b6f7fb8f9.tar.gz gdb-77d18ded6e5a42fa018b5dace86d212b6f7fb8f9.tar.bz2 |
2004-12-17 Randolph Chung <tausq@debian.org>
* hppa-hpux-tdep.c (IS_32BIT_TARGET): New.
(in_opd_section): New.
(hppa32_hpux_find_global_pointer): Rename from
hppa_hpux_som_find_global_pointer.
(hppa64_hpux_find_global_pointer): New.
(ldsid_pattern): New.
(hppa_hpux_search_pattern): New.
(hppa32_hpux_search_dummy_call_sequence): New.
(hppa64_hpux_search_dummy_call_sequence): New.
(hppa_hpux_find_import_stub_for_addr): New.
(hppa_hpux_sr_for_addr): New.
(hppa_hpux_find_dummy_bpaddr): New.
(hppa_hpux_init_abi): Use IS_32BIT_TARGET predicate.
(hppa_hpux_som_init_abi): Set find_global_pointer method to
hppa32_hpux_find_global_pointer instead of
hppa_hpux_som_find_global_pointer.
(hppa_hpux_elf_init_abi): Set find_global_pointer method.
* hppa-tdep.c (hppa_init_objfile_priv_data): New.
(read_unwind_info): Use function to initialize objfile-private data.
(hppa32_push_dummy_call): Don't automatically set the RP if there is
a push_dummy_code method.
(hppa64_push_dummy_call): Retrieve and set the global pointer.
Don't automatically set the RP if there is a push_dummy_code method.
* hppa-tdep.h (hppa_objfile_private): Add dummy_call_sequence_reg and
dummy_call_sequence_addr members.
(hppa_init_objfile_priv_data): New prototype.
Diffstat (limited to 'gdb/hppa-tdep.h')
-rw-r--r-- | gdb/hppa-tdep.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/hppa-tdep.h b/gdb/hppa-tdep.h index 3153757..8c2a2b6 100644 --- a/gdb/hppa-tdep.h +++ b/gdb/hppa-tdep.h @@ -204,6 +204,9 @@ struct hppa_objfile_private struct hppa_unwind_info *unwind_info; /* a pointer */ struct so_list *so_info; /* a pointer */ CORE_ADDR dp; + + int dummy_call_sequence_reg; + CORE_ADDR dummy_call_sequence_addr; }; extern const struct objfile_data *hppa_objfile_priv_data; @@ -235,4 +238,7 @@ extern struct minimal_symbol * hppa_lookup_stub_minimal_symbol (const char *name, enum unwind_stub_types stub_type); +extern struct hppa_objfile_private * +hppa_init_objfile_priv_data (struct objfile *objfile); + #endif /* HPPA_TDEP_H */ |