Commit | Line | Data |
---|---|---|
c4bfde41 JK |
1 | /* *INDENT-OFF* */ /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */ |
2 | /* vi:set ro: */ | |
59233f88 | 3 | |
adf40b2e | 4 | /* Dynamic architecture support for GDB, the GNU debugger. |
79d45cd4 | 5 | |
61baf725 | 6 | Copyright (C) 1998-2017 Free Software Foundation, Inc. |
c906108c | 7 | |
96baa820 JM |
8 | This file is part of GDB. |
9 | ||
10 | This program is free software; you can redistribute it and/or modify | |
11 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 12 | the Free Software Foundation; either version 3 of the License, or |
96baa820 | 13 | (at your option) any later version. |
618f726f | 14 | |
96baa820 JM |
15 | This program is distributed in the hope that it will be useful, |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | GNU General Public License for more details. | |
618f726f | 19 | |
96baa820 | 20 | You should have received a copy of the GNU General Public License |
a9762ec7 | 21 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
adf40b2e | 22 | |
104c1213 JM |
23 | /* This file was created with the aid of ``gdbarch.sh''. |
24 | ||
52204a0b | 25 | The Bourne shell script ``gdbarch.sh'' creates the files |
104c1213 JM |
26 | ``new-gdbarch.c'' and ``new-gdbarch.h and then compares them |
27 | against the existing ``gdbarch.[hc]''. Any differences found | |
28 | being reported. | |
29 | ||
30 | If editing this file, please also run gdbarch.sh and merge any | |
52204a0b | 31 | changes into that script. Conversely, when making sweeping changes |
104c1213 | 32 | to this file, modifying gdbarch.sh and using its output may prove |
0963b4bd | 33 | easier. */ |
c906108c | 34 | |
c906108c SS |
35 | |
36 | #include "defs.h" | |
1ad03bde | 37 | #include "arch-utils.h" |
c906108c | 38 | |
0f71a2f6 | 39 | #include "gdbcmd.h" |
faaf634c | 40 | #include "inferior.h" |
7a292a7a | 41 | #include "symcat.h" |
c906108c | 42 | |
f0d4cc9e | 43 | #include "floatformat.h" |
b59ff9d5 | 44 | #include "reggroups.h" |
4be87837 | 45 | #include "osabi.h" |
aebd7893 | 46 | #include "gdb_obstack.h" |
383f836e | 47 | #include "observer.h" |
a3ecef73 | 48 | #include "regcache.h" |
19630284 | 49 | #include "objfiles.h" |
2faa3447 | 50 | #include "auxv.h" |
95160752 | 51 | |
104c1213 JM |
52 | /* Static function declarations */ |
53 | ||
b3cc3077 | 54 | static void alloc_gdbarch_data (struct gdbarch *); |
104c1213 | 55 | |
0f71a2f6 JM |
56 | /* Non-zero if we want to trace architecture code. */ |
57 | ||
58 | #ifndef GDBARCH_DEBUG | |
59 | #define GDBARCH_DEBUG 0 | |
60 | #endif | |
ccce17b0 | 61 | unsigned int gdbarch_debug = GDBARCH_DEBUG; |
920d2a44 AC |
62 | static void |
63 | show_gdbarch_debug (struct ui_file *file, int from_tty, | |
64 | struct cmd_list_element *c, const char *value) | |
65 | { | |
66 | fprintf_filtered (file, _("Architecture debugging is %s.\n"), value); | |
67 | } | |
0f71a2f6 | 68 | |
456fcf94 | 69 | static const char * |
8da61cc4 | 70 | pformat (const struct floatformat **format) |
456fcf94 AC |
71 | { |
72 | if (format == NULL) | |
73 | return "(null)"; | |
74 | else | |
8da61cc4 DJ |
75 | /* Just print out one of them - this is only for diagnostics. */ |
76 | return format[0]->name; | |
456fcf94 AC |
77 | } |
78 | ||
08105857 PA |
79 | static const char * |
80 | pstring (const char *string) | |
81 | { | |
82 | if (string == NULL) | |
83 | return "(null)"; | |
84 | return string; | |
85 | } | |
86 | ||
a121b7c1 | 87 | static const char * |
f7bb4e3a PB |
88 | pstring_ptr (char **string) |
89 | { | |
90 | if (string == NULL || *string == NULL) | |
91 | return "(null)"; | |
92 | return *string; | |
93 | } | |
94 | ||
05c0465e SDJ |
95 | /* Helper function to print a list of strings, represented as "const |
96 | char *const *". The list is printed comma-separated. */ | |
97 | ||
a121b7c1 | 98 | static const char * |
05c0465e SDJ |
99 | pstring_list (const char *const *list) |
100 | { | |
101 | static char ret[100]; | |
102 | const char *const *p; | |
103 | size_t offset = 0; | |
104 | ||
105 | if (list == NULL) | |
106 | return "(null)"; | |
107 | ||
108 | ret[0] = '\0'; | |
109 | for (p = list; *p != NULL && offset < sizeof (ret); ++p) | |
110 | { | |
111 | size_t s = xsnprintf (ret + offset, sizeof (ret) - offset, "%s, ", *p); | |
112 | offset += 2 + s; | |
113 | } | |
114 | ||
115 | if (offset > 0) | |
116 | { | |
117 | gdb_assert (offset - 2 < sizeof (ret)); | |
118 | ret[offset - 2] = '\0'; | |
119 | } | |
120 | ||
121 | return ret; | |
122 | } | |
123 | ||
0f71a2f6 | 124 | |
0963b4bd | 125 | /* Maintain the struct gdbarch object. */ |
0f71a2f6 JM |
126 | |
127 | struct gdbarch | |
adf40b2e | 128 | { |
76860b5f AC |
129 | /* Has this architecture been fully initialized? */ |
130 | int initialized_p; | |
aebd7893 AC |
131 | |
132 | /* An obstack bound to the lifetime of the architecture. */ | |
133 | struct obstack *obstack; | |
134 | ||
0963b4bd | 135 | /* basic architectural information. */ |
adf40b2e | 136 | const struct bfd_arch_info * bfd_arch_info; |
94123b4f YQ |
137 | enum bfd_endian byte_order; |
138 | enum bfd_endian byte_order_for_code; | |
4be87837 | 139 | enum gdb_osabi osabi; |
424163ea | 140 | const struct target_desc * target_desc; |
0f71a2f6 | 141 | |
0963b4bd | 142 | /* target specific vector. */ |
adf40b2e | 143 | struct gdbarch_tdep *tdep; |
4b9b3959 | 144 | gdbarch_dump_tdep_ftype *dump_tdep; |
0f71a2f6 | 145 | |
0963b4bd | 146 | /* per-architecture data-pointers. */ |
95160752 | 147 | unsigned nr_data; |
adf40b2e | 148 | void **data; |
0f71a2f6 | 149 | |
adf40b2e | 150 | /* Multi-arch values. |
0f71a2f6 | 151 | |
adf40b2e | 152 | When extending this structure you must: |
0f71a2f6 | 153 | |
adf40b2e | 154 | Add the field below. |
0f71a2f6 | 155 | |
adf40b2e JM |
156 | Declare set/get functions and define the corresponding |
157 | macro in gdbarch.h. | |
0f71a2f6 | 158 | |
adf40b2e JM |
159 | gdbarch_alloc(): If zero/NULL is not a suitable default, |
160 | initialize the new field. | |
0f71a2f6 | 161 | |
adf40b2e JM |
162 | verify_gdbarch(): Confirm that the target updated the field |
163 | correctly. | |
0f71a2f6 | 164 | |
7e73cedf | 165 | gdbarch_dump(): Add a fprintf_unfiltered call so that the new |
adf40b2e | 166 | field is dumped out |
0f71a2f6 | 167 | |
adf40b2e JM |
168 | get_gdbarch(): Implement the set/get functions (probably using |
169 | the macro's as shortcuts). | |
0f71a2f6 JM |
170 | |
171 | */ | |
172 | ||
32c9a795 | 173 | int bits_big_endian; |
adf40b2e JM |
174 | int short_bit; |
175 | int int_bit; | |
176 | int long_bit; | |
177 | int long_long_bit; | |
205c306f | 178 | int long_long_align_bit; |
f9e9243a UW |
179 | int half_bit; |
180 | const struct floatformat ** half_format; | |
adf40b2e | 181 | int float_bit; |
8da61cc4 | 182 | const struct floatformat ** float_format; |
adf40b2e | 183 | int double_bit; |
8da61cc4 | 184 | const struct floatformat ** double_format; |
adf40b2e | 185 | int long_double_bit; |
8da61cc4 | 186 | const struct floatformat ** long_double_format; |
53375380 PA |
187 | int wchar_bit; |
188 | int wchar_signed; | |
9b790ce7 | 189 | gdbarch_floatformat_for_type_ftype *floatformat_for_type; |
66b43ecb | 190 | int ptr_bit; |
52204a0b | 191 | int addr_bit; |
8da614df | 192 | int dwarf2_addr_size; |
4e409299 | 193 | int char_signed; |
adf40b2e JM |
194 | gdbarch_read_pc_ftype *read_pc; |
195 | gdbarch_write_pc_ftype *write_pc; | |
39d4ef09 | 196 | gdbarch_virtual_frame_pointer_ftype *virtual_frame_pointer; |
d8124050 | 197 | gdbarch_pseudo_register_read_ftype *pseudo_register_read; |
3543a589 | 198 | gdbarch_pseudo_register_read_value_ftype *pseudo_register_read_value; |
d8124050 | 199 | gdbarch_pseudo_register_write_ftype *pseudo_register_write; |
adf40b2e | 200 | int num_regs; |
0aba1244 | 201 | int num_pseudo_regs; |
175ff332 HZ |
202 | gdbarch_ax_pseudo_register_collect_ftype *ax_pseudo_register_collect; |
203 | gdbarch_ax_pseudo_register_push_stack_ftype *ax_pseudo_register_push_stack; | |
012b3a21 | 204 | gdbarch_handle_segmentation_fault_ftype *handle_segmentation_fault; |
adf40b2e | 205 | int sp_regnum; |
adf40b2e | 206 | int pc_regnum; |
c2169756 | 207 | int ps_regnum; |
60054393 | 208 | int fp0_regnum; |
88c72b7d AC |
209 | gdbarch_stab_reg_to_regnum_ftype *stab_reg_to_regnum; |
210 | gdbarch_ecoff_reg_to_regnum_ftype *ecoff_reg_to_regnum; | |
88c72b7d AC |
211 | gdbarch_sdb_reg_to_regnum_ftype *sdb_reg_to_regnum; |
212 | gdbarch_dwarf2_reg_to_regnum_ftype *dwarf2_reg_to_regnum; | |
adf40b2e | 213 | gdbarch_register_name_ftype *register_name; |
9c04cab7 | 214 | gdbarch_register_type_ftype *register_type; |
669fac23 | 215 | gdbarch_dummy_id_ftype *dummy_id; |
f3be58bc | 216 | int deprecated_fp_regnum; |
b8de8283 | 217 | gdbarch_push_dummy_call_ftype *push_dummy_call; |
adf40b2e | 218 | int call_dummy_location; |
7043d8dc | 219 | gdbarch_push_dummy_code_ftype *push_dummy_code; |
7eb89530 | 220 | gdbarch_code_of_frame_writable_ftype *code_of_frame_writable; |
b8de8283 AC |
221 | gdbarch_print_registers_info_ftype *print_registers_info; |
222 | gdbarch_print_float_info_ftype *print_float_info; | |
223 | gdbarch_print_vector_info_ftype *print_vector_info; | |
224 | gdbarch_register_sim_regno_ftype *register_sim_regno; | |
b8de8283 AC |
225 | gdbarch_cannot_fetch_register_ftype *cannot_fetch_register; |
226 | gdbarch_cannot_store_register_ftype *cannot_store_register; | |
227 | gdbarch_get_longjmp_target_ftype *get_longjmp_target; | |
adf40b2e | 228 | int believe_pcc_promotion; |
13d01224 AC |
229 | gdbarch_convert_register_p_ftype *convert_register_p; |
230 | gdbarch_register_to_value_ftype *register_to_value; | |
231 | gdbarch_value_to_register_ftype *value_to_register; | |
9acbedc0 | 232 | gdbarch_value_from_register_ftype *value_from_register; |
4478b372 JB |
233 | gdbarch_pointer_to_address_ftype *pointer_to_address; |
234 | gdbarch_address_to_pointer_ftype *address_to_pointer; | |
fc0c74b1 | 235 | gdbarch_integer_to_address_ftype *integer_to_address; |
92ad9cd9 | 236 | gdbarch_return_value_ftype *return_value; |
18648a37 | 237 | gdbarch_return_in_first_hidden_param_p_ftype *return_in_first_hidden_param_p; |
adf40b2e | 238 | gdbarch_skip_prologue_ftype *skip_prologue; |
4309257c | 239 | gdbarch_skip_main_prologue_ftype *skip_main_prologue; |
591a12a1 | 240 | gdbarch_skip_entrypoint_ftype *skip_entrypoint; |
adf40b2e JM |
241 | gdbarch_inner_than_ftype *inner_than; |
242 | gdbarch_breakpoint_from_pc_ftype *breakpoint_from_pc; | |
cd6c3b4f YQ |
243 | gdbarch_breakpoint_kind_from_pc_ftype *breakpoint_kind_from_pc; |
244 | gdbarch_sw_breakpoint_from_kind_ftype *sw_breakpoint_from_kind; | |
833b7ab5 | 245 | gdbarch_breakpoint_kind_from_current_state_ftype *breakpoint_kind_from_current_state; |
a1131521 | 246 | gdbarch_adjust_breakpoint_address_ftype *adjust_breakpoint_address; |
917317f4 JM |
247 | gdbarch_memory_insert_breakpoint_ftype *memory_insert_breakpoint; |
248 | gdbarch_memory_remove_breakpoint_ftype *memory_remove_breakpoint; | |
adf40b2e | 249 | CORE_ADDR decr_pc_after_break; |
782263ab | 250 | CORE_ADDR deprecated_function_start_offset; |
123dc839 | 251 | gdbarch_remote_register_number_ftype *remote_register_number; |
b2756930 | 252 | gdbarch_fetch_tls_load_module_address_ftype *fetch_tls_load_module_address; |
adf40b2e | 253 | CORE_ADDR frame_args_skip; |
12cc2063 | 254 | gdbarch_unwind_pc_ftype *unwind_pc; |
a9e5fdc2 | 255 | gdbarch_unwind_sp_ftype *unwind_sp; |
adf40b2e | 256 | gdbarch_frame_num_args_ftype *frame_num_args; |
dc604539 | 257 | gdbarch_frame_align_ftype *frame_align; |
192cb3d4 | 258 | gdbarch_stabs_argument_has_addr_ftype *stabs_argument_has_addr; |
8b148df9 | 259 | int frame_red_zone_size; |
f517ea4e | 260 | gdbarch_convert_from_func_ptr_addr_ftype *convert_from_func_ptr_addr; |
875e1767 | 261 | gdbarch_addr_bits_remove_ftype *addr_bits_remove; |
64c4637f | 262 | gdbarch_software_single_step_ftype *software_single_step; |
3352ef37 | 263 | gdbarch_single_step_through_delay_ftype *single_step_through_delay; |
2bf0cb65 | 264 | gdbarch_print_insn_ftype *print_insn; |
bdcd319a | 265 | gdbarch_skip_trampoline_code_ftype *skip_trampoline_code; |
dea0c52f | 266 | gdbarch_skip_solib_resolver_ftype *skip_solib_resolver; |
d50355b6 | 267 | gdbarch_in_solib_return_trampoline_ftype *in_solib_return_trampoline; |
c9cf6e20 | 268 | gdbarch_stack_frame_destroyed_p_ftype *stack_frame_destroyed_p; |
a2cf933a EZ |
269 | gdbarch_elf_make_msymbol_special_ftype *elf_make_msymbol_special; |
270 | gdbarch_coff_make_msymbol_special_ftype *coff_make_msymbol_special; | |
3e29f34a MR |
271 | gdbarch_make_symbol_special_ftype *make_symbol_special; |
272 | gdbarch_adjust_dwarf2_addr_ftype *adjust_dwarf2_addr; | |
273 | gdbarch_adjust_dwarf2_line_ftype *adjust_dwarf2_line; | |
c4ed33b9 | 274 | int cannot_step_breakpoint; |
f74fa174 | 275 | int have_nonsteppable_watchpoint; |
8b2dbe47 KB |
276 | gdbarch_address_class_type_flags_ftype *address_class_type_flags; |
277 | gdbarch_address_class_type_flags_to_name_ftype *address_class_type_flags_to_name; | |
b41c5a85 | 278 | gdbarch_execute_dwarf_cfa_vendor_op_ftype *execute_dwarf_cfa_vendor_op; |
8b2dbe47 | 279 | gdbarch_address_class_name_to_type_flags_ftype *address_class_name_to_type_flags; |
b59ff9d5 | 280 | gdbarch_register_reggroup_p_ftype *register_reggroup_p; |
143985b7 | 281 | gdbarch_fetch_pointer_argument_ftype *fetch_pointer_argument; |
5aa82d05 | 282 | gdbarch_iterate_over_regset_sections_ftype *iterate_over_regset_sections; |
6432734d | 283 | gdbarch_make_corefile_notes_ftype *make_corefile_notes; |
35c2fab7 | 284 | gdbarch_find_memory_regions_ftype *find_memory_regions; |
de584861 | 285 | gdbarch_core_xfer_shared_libraries_ftype *core_xfer_shared_libraries; |
356a5233 | 286 | gdbarch_core_xfer_shared_libraries_aix_ftype *core_xfer_shared_libraries_aix; |
28439f5e | 287 | gdbarch_core_pid_to_str_ftype *core_pid_to_str; |
4dfc5dbc | 288 | gdbarch_core_thread_name_ftype *core_thread_name; |
382b69bb | 289 | gdbarch_core_xfer_siginfo_ftype *core_xfer_siginfo; |
a78c2d62 | 290 | const char * gcore_bfd_target; |
0d5de010 DJ |
291 | int vtable_function_descriptors; |
292 | int vbit_in_delta; | |
6d350bb5 | 293 | gdbarch_skip_permanent_breakpoint_ftype *skip_permanent_breakpoint; |
237fc4c9 PA |
294 | ULONGEST max_insn_length; |
295 | gdbarch_displaced_step_copy_insn_ftype *displaced_step_copy_insn; | |
99e40580 | 296 | gdbarch_displaced_step_hw_singlestep_ftype *displaced_step_hw_singlestep; |
237fc4c9 | 297 | gdbarch_displaced_step_fixup_ftype *displaced_step_fixup; |
237fc4c9 | 298 | gdbarch_displaced_step_location_ftype *displaced_step_location; |
dde08ee1 | 299 | gdbarch_relocate_instruction_ftype *relocate_instruction; |
1c772458 | 300 | gdbarch_overlay_update_ftype *overlay_update; |
4eb0ad19 | 301 | gdbarch_core_read_description_ftype *core_read_description; |
149ad273 | 302 | gdbarch_static_transform_name_ftype *static_transform_name; |
203c3895 | 303 | int sofun_address_maybe_missing; |
0508c3ec | 304 | gdbarch_process_record_ftype *process_record; |
3846b520 | 305 | gdbarch_process_record_signal_ftype *process_record_signal; |
22203bbf | 306 | gdbarch_gdb_signal_from_target_ftype *gdb_signal_from_target; |
eb14d406 | 307 | gdbarch_gdb_signal_to_target_ftype *gdb_signal_to_target; |
4aa995e1 | 308 | gdbarch_get_siginfo_type_ftype *get_siginfo_type; |
60c5725c | 309 | gdbarch_record_special_symbol_ftype *record_special_symbol; |
a96d9b2e | 310 | gdbarch_get_syscall_number_ftype *get_syscall_number; |
458c8db8 SDJ |
311 | const char * xml_syscall_file; |
312 | struct syscalls_info * syscalls_info; | |
05c0465e SDJ |
313 | const char *const * stap_integer_prefixes; |
314 | const char *const * stap_integer_suffixes; | |
315 | const char *const * stap_register_prefixes; | |
316 | const char *const * stap_register_suffixes; | |
317 | const char *const * stap_register_indirection_prefixes; | |
318 | const char *const * stap_register_indirection_suffixes; | |
55aa24fb SDJ |
319 | const char * stap_gdb_register_prefix; |
320 | const char * stap_gdb_register_suffix; | |
321 | gdbarch_stap_is_single_operand_ftype *stap_is_single_operand; | |
322 | gdbarch_stap_parse_special_token_ftype *stap_parse_special_token; | |
8b367e17 JM |
323 | gdbarch_dtrace_parse_probe_argument_ftype *dtrace_parse_probe_argument; |
324 | gdbarch_dtrace_probe_is_enabled_ftype *dtrace_probe_is_enabled; | |
325 | gdbarch_dtrace_enable_probe_ftype *dtrace_enable_probe; | |
326 | gdbarch_dtrace_disable_probe_ftype *dtrace_disable_probe; | |
50c71eaf | 327 | int has_global_solist; |
2567c7d9 | 328 | int has_global_breakpoints; |
6c95b8df | 329 | gdbarch_has_shared_address_space_ftype *has_shared_address_space; |
7a697b8d | 330 | gdbarch_fast_tracepoint_valid_at_ftype *fast_tracepoint_valid_at; |
5f034a78 | 331 | gdbarch_guess_tracepoint_registers_ftype *guess_tracepoint_registers; |
f870a310 TT |
332 | gdbarch_auto_charset_ftype *auto_charset; |
333 | gdbarch_auto_wide_charset_ftype *auto_wide_charset; | |
08105857 | 334 | const char * solib_symbols_extension; |
ab38a727 | 335 | int has_dos_based_file_system; |
6710bf39 | 336 | gdbarch_gen_return_address_ftype *gen_return_address; |
3030c96e | 337 | gdbarch_info_proc_ftype *info_proc; |
451b7c33 | 338 | gdbarch_core_info_proc_ftype *core_info_proc; |
19630284 | 339 | gdbarch_iterate_over_objfiles_in_search_order_ftype *iterate_over_objfiles_in_search_order; |
7e35103a | 340 | struct ravenscar_arch_ops * ravenscar_ops; |
c2170eef MM |
341 | gdbarch_insn_is_call_ftype *insn_is_call; |
342 | gdbarch_insn_is_ret_ftype *insn_is_ret; | |
343 | gdbarch_insn_is_jump_ftype *insn_is_jump; | |
27a48a92 | 344 | gdbarch_auxv_parse_ftype *auxv_parse; |
2faa3447 | 345 | gdbarch_print_auxv_entry_ftype *print_auxv_entry; |
3437254d | 346 | gdbarch_vsyscall_range_ftype *vsyscall_range; |
f208eee0 | 347 | gdbarch_infcall_mmap_ftype *infcall_mmap; |
7f361056 | 348 | gdbarch_infcall_munmap_ftype *infcall_munmap; |
f208eee0 | 349 | gdbarch_gcc_target_options_ftype *gcc_target_options; |
ac04f72b | 350 | gdbarch_gnu_triplet_regexp_ftype *gnu_triplet_regexp; |
3374165f | 351 | gdbarch_addressable_memory_unit_size_ftype *addressable_memory_unit_size; |
65b48a81 PB |
352 | char ** disassembler_options; |
353 | const disasm_options_t * valid_disassembler_options; | |
adf40b2e | 354 | }; |
0f71a2f6 | 355 | |
66b43ecb | 356 | /* Create a new ``struct gdbarch'' based on information provided by |
0963b4bd | 357 | ``struct gdbarch_info''. */ |
0f71a2f6 JM |
358 | |
359 | struct gdbarch * | |
104c1213 JM |
360 | gdbarch_alloc (const struct gdbarch_info *info, |
361 | struct gdbarch_tdep *tdep) | |
0f71a2f6 | 362 | { |
be7811ad | 363 | struct gdbarch *gdbarch; |
aebd7893 AC |
364 | |
365 | /* Create an obstack for allocating all the per-architecture memory, | |
366 | then use that to allocate the architecture vector. */ | |
70ba0933 | 367 | struct obstack *obstack = XNEW (struct obstack); |
aebd7893 | 368 | obstack_init (obstack); |
8d749320 | 369 | gdbarch = XOBNEW (obstack, struct gdbarch); |
be7811ad MD |
370 | memset (gdbarch, 0, sizeof (*gdbarch)); |
371 | gdbarch->obstack = obstack; | |
0f71a2f6 | 372 | |
be7811ad | 373 | alloc_gdbarch_data (gdbarch); |
b3cc3077 | 374 | |
be7811ad | 375 | gdbarch->tdep = tdep; |
0f71a2f6 | 376 | |
be7811ad MD |
377 | gdbarch->bfd_arch_info = info->bfd_arch_info; |
378 | gdbarch->byte_order = info->byte_order; | |
9d4fde75 | 379 | gdbarch->byte_order_for_code = info->byte_order_for_code; |
be7811ad MD |
380 | gdbarch->osabi = info->osabi; |
381 | gdbarch->target_desc = info->target_desc; | |
0f71a2f6 | 382 | |
0963b4bd | 383 | /* Force the explicit initialization of these. */ |
32c9a795 | 384 | gdbarch->bits_big_endian = (gdbarch->byte_order == BFD_ENDIAN_BIG); |
be7811ad MD |
385 | gdbarch->short_bit = 2*TARGET_CHAR_BIT; |
386 | gdbarch->int_bit = 4*TARGET_CHAR_BIT; | |
387 | gdbarch->long_bit = 4*TARGET_CHAR_BIT; | |
388 | gdbarch->long_long_bit = 2*gdbarch->long_bit; | |
205c306f | 389 | gdbarch->long_long_align_bit = 2*gdbarch->long_bit; |
f9e9243a | 390 | gdbarch->half_bit = 2*TARGET_CHAR_BIT; |
be7811ad MD |
391 | gdbarch->float_bit = 4*TARGET_CHAR_BIT; |
392 | gdbarch->double_bit = 8*TARGET_CHAR_BIT; | |
393 | gdbarch->long_double_bit = 8*TARGET_CHAR_BIT; | |
53375380 PA |
394 | gdbarch->wchar_bit = 4*TARGET_CHAR_BIT; |
395 | gdbarch->wchar_signed = -1; | |
9b790ce7 | 396 | gdbarch->floatformat_for_type = default_floatformat_for_type; |
be7811ad MD |
397 | gdbarch->ptr_bit = gdbarch->int_bit; |
398 | gdbarch->char_signed = -1; | |
399 | gdbarch->virtual_frame_pointer = legacy_virtual_frame_pointer; | |
400 | gdbarch->num_regs = -1; | |
401 | gdbarch->sp_regnum = -1; | |
402 | gdbarch->pc_regnum = -1; | |
403 | gdbarch->ps_regnum = -1; | |
404 | gdbarch->fp0_regnum = -1; | |
405 | gdbarch->stab_reg_to_regnum = no_op_reg_to_regnum; | |
406 | gdbarch->ecoff_reg_to_regnum = no_op_reg_to_regnum; | |
be7811ad MD |
407 | gdbarch->sdb_reg_to_regnum = no_op_reg_to_regnum; |
408 | gdbarch->dwarf2_reg_to_regnum = no_op_reg_to_regnum; | |
409 | gdbarch->deprecated_fp_regnum = -1; | |
410 | gdbarch->call_dummy_location = AT_ENTRY_POINT; | |
7eb89530 | 411 | gdbarch->code_of_frame_writable = default_code_of_frame_writable; |
be7811ad | 412 | gdbarch->print_registers_info = default_print_registers_info; |
cc86d1cb | 413 | gdbarch->print_float_info = default_print_float_info; |
be7811ad MD |
414 | gdbarch->register_sim_regno = legacy_register_sim_regno; |
415 | gdbarch->cannot_fetch_register = cannot_register_not; | |
416 | gdbarch->cannot_store_register = cannot_register_not; | |
417 | gdbarch->convert_register_p = generic_convert_register_p; | |
418 | gdbarch->value_from_register = default_value_from_register; | |
419 | gdbarch->pointer_to_address = unsigned_pointer_to_address; | |
420 | gdbarch->address_to_pointer = unsigned_address_to_pointer; | |
18648a37 | 421 | gdbarch->return_in_first_hidden_param_p = default_return_in_first_hidden_param_p; |
22f13eb8 | 422 | gdbarch->breakpoint_from_pc = default_breakpoint_from_pc; |
cd6c3b4f | 423 | gdbarch->sw_breakpoint_from_kind = NULL; |
833b7ab5 | 424 | gdbarch->breakpoint_kind_from_current_state = default_breakpoint_kind_from_current_state; |
be7811ad MD |
425 | gdbarch->memory_insert_breakpoint = default_memory_insert_breakpoint; |
426 | gdbarch->memory_remove_breakpoint = default_memory_remove_breakpoint; | |
427 | gdbarch->remote_register_number = default_remote_register_number; | |
428 | gdbarch->stabs_argument_has_addr = default_stabs_argument_has_addr; | |
429 | gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr_identity; | |
430 | gdbarch->addr_bits_remove = core_addr_identity; | |
39503f82 | 431 | gdbarch->print_insn = default_print_insn; |
be7811ad MD |
432 | gdbarch->skip_trampoline_code = generic_skip_trampoline_code; |
433 | gdbarch->skip_solib_resolver = generic_skip_solib_resolver; | |
434 | gdbarch->in_solib_return_trampoline = generic_in_solib_return_trampoline; | |
c9cf6e20 | 435 | gdbarch->stack_frame_destroyed_p = generic_stack_frame_destroyed_p; |
be7811ad | 436 | gdbarch->coff_make_msymbol_special = default_coff_make_msymbol_special; |
3e29f34a MR |
437 | gdbarch->make_symbol_special = default_make_symbol_special; |
438 | gdbarch->adjust_dwarf2_addr = default_adjust_dwarf2_addr; | |
439 | gdbarch->adjust_dwarf2_line = default_adjust_dwarf2_line; | |
b41c5a85 | 440 | gdbarch->execute_dwarf_cfa_vendor_op = default_execute_dwarf_cfa_vendor_op; |
be7811ad | 441 | gdbarch->register_reggroup_p = default_register_reggroup_p; |
ae9bb220 | 442 | gdbarch->skip_permanent_breakpoint = default_skip_permanent_breakpoint; |
99e40580 | 443 | gdbarch->displaced_step_hw_singlestep = default_displaced_step_hw_singlestep; |
237fc4c9 | 444 | gdbarch->displaced_step_fixup = NULL; |
237fc4c9 | 445 | gdbarch->displaced_step_location = NULL; |
dde08ee1 | 446 | gdbarch->relocate_instruction = NULL; |
6c95b8df | 447 | gdbarch->has_shared_address_space = default_has_shared_address_space; |
7a697b8d | 448 | gdbarch->fast_tracepoint_valid_at = default_fast_tracepoint_valid_at; |
5f034a78 | 449 | gdbarch->guess_tracepoint_registers = default_guess_tracepoint_registers; |
f870a310 TT |
450 | gdbarch->auto_charset = default_auto_charset; |
451 | gdbarch->auto_wide_charset = default_auto_wide_charset; | |
6710bf39 | 452 | gdbarch->gen_return_address = default_gen_return_address; |
19630284 | 453 | gdbarch->iterate_over_objfiles_in_search_order = default_iterate_over_objfiles_in_search_order; |
7e35103a | 454 | gdbarch->ravenscar_ops = NULL; |
c2170eef MM |
455 | gdbarch->insn_is_call = default_insn_is_call; |
456 | gdbarch->insn_is_ret = default_insn_is_ret; | |
457 | gdbarch->insn_is_jump = default_insn_is_jump; | |
2faa3447 | 458 | gdbarch->print_auxv_entry = default_print_auxv_entry; |
3437254d | 459 | gdbarch->vsyscall_range = default_vsyscall_range; |
f208eee0 | 460 | gdbarch->infcall_mmap = default_infcall_mmap; |
7f361056 | 461 | gdbarch->infcall_munmap = default_infcall_munmap; |
f208eee0 | 462 | gdbarch->gcc_target_options = default_gcc_target_options; |
ac04f72b | 463 | gdbarch->gnu_triplet_regexp = default_gnu_triplet_regexp; |
3374165f | 464 | gdbarch->addressable_memory_unit_size = default_addressable_memory_unit_size; |
0f71a2f6 JM |
465 | /* gdbarch_alloc() */ |
466 | ||
be7811ad | 467 | return gdbarch; |
0f71a2f6 JM |
468 | } |
469 | ||
470 | ||
aebd7893 AC |
471 | /* Allocate extra space using the per-architecture obstack. */ |
472 | ||
473 | void * | |
474 | gdbarch_obstack_zalloc (struct gdbarch *arch, long size) | |
475 | { | |
476 | void *data = obstack_alloc (arch->obstack, size); | |
05c547f6 | 477 | |
aebd7893 AC |
478 | memset (data, 0, size); |
479 | return data; | |
480 | } | |
481 | ||
6c214e7c PP |
482 | /* See gdbarch.h. */ |
483 | ||
484 | char * | |
485 | gdbarch_obstack_strdup (struct gdbarch *arch, const char *string) | |
486 | { | |
487 | return obstack_strdup (arch->obstack, string); | |
488 | } | |
489 | ||
aebd7893 | 490 | |
058f20d5 JB |
491 | /* Free a gdbarch struct. This should never happen in normal |
492 | operation --- once you've created a gdbarch, you keep it around. | |
493 | However, if an architecture's init function encounters an error | |
494 | building the structure, it may need to clean up a partially | |
495 | constructed gdbarch. */ | |
4b9b3959 | 496 | |
058f20d5 JB |
497 | void |
498 | gdbarch_free (struct gdbarch *arch) | |
499 | { | |
aebd7893 | 500 | struct obstack *obstack; |
05c547f6 | 501 | |
95160752 | 502 | gdb_assert (arch != NULL); |
aebd7893 AC |
503 | gdb_assert (!arch->initialized_p); |
504 | obstack = arch->obstack; | |
505 | obstack_free (obstack, 0); /* Includes the ARCH. */ | |
506 | xfree (obstack); | |
058f20d5 JB |
507 | } |
508 | ||
509 | ||
db446970 AC |
510 | /* Ensure that all values in a GDBARCH are reasonable. */ |
511 | ||
0f71a2f6 | 512 | static void |
be7811ad | 513 | verify_gdbarch (struct gdbarch *gdbarch) |
0f71a2f6 | 514 | { |
d7e74731 | 515 | string_file log; |
05c547f6 | 516 | |
0f71a2f6 | 517 | /* fundamental */ |
be7811ad | 518 | if (gdbarch->byte_order == BFD_ENDIAN_UNKNOWN) |
d7e74731 | 519 | log.puts ("\n\tbyte-order"); |
be7811ad | 520 | if (gdbarch->bfd_arch_info == NULL) |
d7e74731 | 521 | log.puts ("\n\tbfd_arch_info"); |
0963b4bd | 522 | /* Check those that need to be defined for the given multi-arch level. */ |
32c9a795 | 523 | /* Skip verify of bits_big_endian, invalid_p == 0 */ |
66b43ecb AC |
524 | /* Skip verify of short_bit, invalid_p == 0 */ |
525 | /* Skip verify of int_bit, invalid_p == 0 */ | |
526 | /* Skip verify of long_bit, invalid_p == 0 */ | |
527 | /* Skip verify of long_long_bit, invalid_p == 0 */ | |
205c306f | 528 | /* Skip verify of long_long_align_bit, invalid_p == 0 */ |
f9e9243a UW |
529 | /* Skip verify of half_bit, invalid_p == 0 */ |
530 | if (gdbarch->half_format == 0) | |
531 | gdbarch->half_format = floatformats_ieee_half; | |
66b43ecb | 532 | /* Skip verify of float_bit, invalid_p == 0 */ |
be7811ad MD |
533 | if (gdbarch->float_format == 0) |
534 | gdbarch->float_format = floatformats_ieee_single; | |
66b43ecb | 535 | /* Skip verify of double_bit, invalid_p == 0 */ |
be7811ad MD |
536 | if (gdbarch->double_format == 0) |
537 | gdbarch->double_format = floatformats_ieee_double; | |
66b43ecb | 538 | /* Skip verify of long_double_bit, invalid_p == 0 */ |
be7811ad MD |
539 | if (gdbarch->long_double_format == 0) |
540 | gdbarch->long_double_format = floatformats_ieee_double; | |
53375380 PA |
541 | /* Skip verify of wchar_bit, invalid_p == 0 */ |
542 | if (gdbarch->wchar_signed == -1) | |
543 | gdbarch->wchar_signed = 1; | |
9b790ce7 | 544 | /* Skip verify of floatformat_for_type, invalid_p == 0 */ |
66b43ecb | 545 | /* Skip verify of ptr_bit, invalid_p == 0 */ |
be7811ad MD |
546 | if (gdbarch->addr_bit == 0) |
547 | gdbarch->addr_bit = gdbarch_ptr_bit (gdbarch); | |
8da614df CV |
548 | if (gdbarch->dwarf2_addr_size == 0) |
549 | gdbarch->dwarf2_addr_size = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT; | |
be7811ad MD |
550 | if (gdbarch->char_signed == -1) |
551 | gdbarch->char_signed = 1; | |
0963b4bd MS |
552 | /* Skip verify of read_pc, has predicate. */ |
553 | /* Skip verify of write_pc, has predicate. */ | |
39d4ef09 | 554 | /* Skip verify of virtual_frame_pointer, invalid_p == 0 */ |
0963b4bd | 555 | /* Skip verify of pseudo_register_read, has predicate. */ |
3543a589 | 556 | /* Skip verify of pseudo_register_read_value, has predicate. */ |
0963b4bd | 557 | /* Skip verify of pseudo_register_write, has predicate. */ |
be7811ad | 558 | if (gdbarch->num_regs == -1) |
d7e74731 | 559 | log.puts ("\n\tnum_regs"); |
0aba1244 | 560 | /* Skip verify of num_pseudo_regs, invalid_p == 0 */ |
0963b4bd MS |
561 | /* Skip verify of ax_pseudo_register_collect, has predicate. */ |
562 | /* Skip verify of ax_pseudo_register_push_stack, has predicate. */ | |
012b3a21 | 563 | /* Skip verify of handle_segmentation_fault, has predicate. */ |
1200cd6e | 564 | /* Skip verify of sp_regnum, invalid_p == 0 */ |
1200cd6e | 565 | /* Skip verify of pc_regnum, invalid_p == 0 */ |
c2169756 | 566 | /* Skip verify of ps_regnum, invalid_p == 0 */ |
60054393 | 567 | /* Skip verify of fp0_regnum, invalid_p == 0 */ |
88c72b7d AC |
568 | /* Skip verify of stab_reg_to_regnum, invalid_p == 0 */ |
569 | /* Skip verify of ecoff_reg_to_regnum, invalid_p == 0 */ | |
88c72b7d AC |
570 | /* Skip verify of sdb_reg_to_regnum, invalid_p == 0 */ |
571 | /* Skip verify of dwarf2_reg_to_regnum, invalid_p == 0 */ | |
be7811ad | 572 | if (gdbarch->register_name == 0) |
d7e74731 | 573 | log.puts ("\n\tregister_name"); |
0963b4bd MS |
574 | /* Skip verify of register_type, has predicate. */ |
575 | /* Skip verify of dummy_id, has predicate. */ | |
f3be58bc | 576 | /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */ |
0963b4bd | 577 | /* Skip verify of push_dummy_call, has predicate. */ |
b8de8283 | 578 | /* Skip verify of call_dummy_location, invalid_p == 0 */ |
0963b4bd | 579 | /* Skip verify of push_dummy_code, has predicate. */ |
7eb89530 | 580 | /* Skip verify of code_of_frame_writable, invalid_p == 0 */ |
0ab7a791 | 581 | /* Skip verify of print_registers_info, invalid_p == 0 */ |
cc86d1cb | 582 | /* Skip verify of print_float_info, invalid_p == 0 */ |
0963b4bd | 583 | /* Skip verify of print_vector_info, has predicate. */ |
7c7651b2 | 584 | /* Skip verify of register_sim_regno, invalid_p == 0 */ |
01fb7433 AC |
585 | /* Skip verify of cannot_fetch_register, invalid_p == 0 */ |
586 | /* Skip verify of cannot_store_register, invalid_p == 0 */ | |
0963b4bd | 587 | /* Skip verify of get_longjmp_target, has predicate. */ |
13d01224 | 588 | /* Skip verify of convert_register_p, invalid_p == 0 */ |
9acbedc0 | 589 | /* Skip verify of value_from_register, invalid_p == 0 */ |
4478b372 JB |
590 | /* Skip verify of pointer_to_address, invalid_p == 0 */ |
591 | /* Skip verify of address_to_pointer, invalid_p == 0 */ | |
0963b4bd MS |
592 | /* Skip verify of integer_to_address, has predicate. */ |
593 | /* Skip verify of return_value, has predicate. */ | |
18648a37 | 594 | /* Skip verify of return_in_first_hidden_param_p, invalid_p == 0 */ |
be7811ad | 595 | if (gdbarch->skip_prologue == 0) |
d7e74731 | 596 | log.puts ("\n\tskip_prologue"); |
0963b4bd | 597 | /* Skip verify of skip_main_prologue, has predicate. */ |
591a12a1 | 598 | /* Skip verify of skip_entrypoint, has predicate. */ |
be7811ad | 599 | if (gdbarch->inner_than == 0) |
d7e74731 | 600 | log.puts ("\n\tinner_than"); |
22f13eb8 | 601 | /* Skip verify of breakpoint_from_pc, invalid_p == 0 */ |
cd6c3b4f | 602 | if (gdbarch->breakpoint_kind_from_pc == 0) |
d7e74731 | 603 | log.puts ("\n\tbreakpoint_kind_from_pc"); |
cd6c3b4f | 604 | /* Skip verify of sw_breakpoint_from_kind, invalid_p == 0 */ |
833b7ab5 | 605 | /* Skip verify of breakpoint_kind_from_current_state, invalid_p == 0 */ |
0963b4bd | 606 | /* Skip verify of adjust_breakpoint_address, has predicate. */ |
c0e8c252 AC |
607 | /* Skip verify of memory_insert_breakpoint, invalid_p == 0 */ |
608 | /* Skip verify of memory_remove_breakpoint, invalid_p == 0 */ | |
71bd6bd4 | 609 | /* Skip verify of decr_pc_after_break, invalid_p == 0 */ |
782263ab | 610 | /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */ |
123dc839 | 611 | /* Skip verify of remote_register_number, invalid_p == 0 */ |
0963b4bd | 612 | /* Skip verify of fetch_tls_load_module_address, has predicate. */ |
5867a2fb | 613 | /* Skip verify of frame_args_skip, invalid_p == 0 */ |
0963b4bd MS |
614 | /* Skip verify of unwind_pc, has predicate. */ |
615 | /* Skip verify of unwind_sp, has predicate. */ | |
616 | /* Skip verify of frame_num_args, has predicate. */ | |
617 | /* Skip verify of frame_align, has predicate. */ | |
192cb3d4 | 618 | /* Skip verify of stabs_argument_has_addr, invalid_p == 0 */ |
f517ea4e | 619 | /* Skip verify of convert_from_func_ptr_addr, invalid_p == 0 */ |
875e1767 | 620 | /* Skip verify of addr_bits_remove, invalid_p == 0 */ |
0963b4bd MS |
621 | /* Skip verify of software_single_step, has predicate. */ |
622 | /* Skip verify of single_step_through_delay, has predicate. */ | |
39503f82 | 623 | /* Skip verify of print_insn, invalid_p == 0 */ |
bdcd319a | 624 | /* Skip verify of skip_trampoline_code, invalid_p == 0 */ |
dea0c52f | 625 | /* Skip verify of skip_solib_resolver, invalid_p == 0 */ |
d50355b6 | 626 | /* Skip verify of in_solib_return_trampoline, invalid_p == 0 */ |
c9cf6e20 | 627 | /* Skip verify of stack_frame_destroyed_p, invalid_p == 0 */ |
3e29f34a | 628 | /* Skip verify of elf_make_msymbol_special, has predicate. */ |
a2cf933a | 629 | /* Skip verify of coff_make_msymbol_special, invalid_p == 0 */ |
3e29f34a MR |
630 | /* Skip verify of make_symbol_special, invalid_p == 0 */ |
631 | /* Skip verify of adjust_dwarf2_addr, invalid_p == 0 */ | |
632 | /* Skip verify of adjust_dwarf2_line, invalid_p == 0 */ | |
c4ed33b9 | 633 | /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */ |
f74fa174 | 634 | /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */ |
0963b4bd MS |
635 | /* Skip verify of address_class_type_flags, has predicate. */ |
636 | /* Skip verify of address_class_type_flags_to_name, has predicate. */ | |
b41c5a85 | 637 | /* Skip verify of execute_dwarf_cfa_vendor_op, invalid_p == 0 */ |
0963b4bd | 638 | /* Skip verify of address_class_name_to_type_flags, has predicate. */ |
7e20f3fb | 639 | /* Skip verify of register_reggroup_p, invalid_p == 0 */ |
0963b4bd | 640 | /* Skip verify of fetch_pointer_argument, has predicate. */ |
5aa82d05 | 641 | /* Skip verify of iterate_over_regset_sections, has predicate. */ |
6432734d | 642 | /* Skip verify of make_corefile_notes, has predicate. */ |
35c2fab7 | 643 | /* Skip verify of find_memory_regions, has predicate. */ |
0963b4bd | 644 | /* Skip verify of core_xfer_shared_libraries, has predicate. */ |
356a5233 | 645 | /* Skip verify of core_xfer_shared_libraries_aix, has predicate. */ |
0963b4bd | 646 | /* Skip verify of core_pid_to_str, has predicate. */ |
4dfc5dbc | 647 | /* Skip verify of core_thread_name, has predicate. */ |
382b69bb | 648 | /* Skip verify of core_xfer_siginfo, has predicate. */ |
0963b4bd | 649 | /* Skip verify of gcore_bfd_target, has predicate. */ |
0d5de010 DJ |
650 | /* Skip verify of vtable_function_descriptors, invalid_p == 0 */ |
651 | /* Skip verify of vbit_in_delta, invalid_p == 0 */ | |
ae9bb220 | 652 | /* Skip verify of skip_permanent_breakpoint, invalid_p == 0 */ |
0963b4bd MS |
653 | /* Skip verify of max_insn_length, has predicate. */ |
654 | /* Skip verify of displaced_step_copy_insn, has predicate. */ | |
99e40580 | 655 | /* Skip verify of displaced_step_hw_singlestep, invalid_p == 0 */ |
0963b4bd | 656 | /* Skip verify of displaced_step_fixup, has predicate. */ |
237fc4c9 | 657 | if ((! gdbarch->displaced_step_location) != (! gdbarch->displaced_step_copy_insn)) |
d7e74731 | 658 | log.puts ("\n\tdisplaced_step_location"); |
0963b4bd MS |
659 | /* Skip verify of relocate_instruction, has predicate. */ |
660 | /* Skip verify of overlay_update, has predicate. */ | |
661 | /* Skip verify of core_read_description, has predicate. */ | |
662 | /* Skip verify of static_transform_name, has predicate. */ | |
203c3895 | 663 | /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */ |
0963b4bd MS |
664 | /* Skip verify of process_record, has predicate. */ |
665 | /* Skip verify of process_record_signal, has predicate. */ | |
1f8cf220 | 666 | /* Skip verify of gdb_signal_from_target, has predicate. */ |
eb14d406 | 667 | /* Skip verify of gdb_signal_to_target, has predicate. */ |
0963b4bd MS |
668 | /* Skip verify of get_siginfo_type, has predicate. */ |
669 | /* Skip verify of record_special_symbol, has predicate. */ | |
670 | /* Skip verify of get_syscall_number, has predicate. */ | |
458c8db8 SDJ |
671 | /* Skip verify of xml_syscall_file, invalid_p == 0 */ |
672 | /* Skip verify of syscalls_info, invalid_p == 0 */ | |
05c0465e SDJ |
673 | /* Skip verify of stap_integer_prefixes, invalid_p == 0 */ |
674 | /* Skip verify of stap_integer_suffixes, invalid_p == 0 */ | |
675 | /* Skip verify of stap_register_prefixes, invalid_p == 0 */ | |
676 | /* Skip verify of stap_register_suffixes, invalid_p == 0 */ | |
677 | /* Skip verify of stap_register_indirection_prefixes, invalid_p == 0 */ | |
678 | /* Skip verify of stap_register_indirection_suffixes, invalid_p == 0 */ | |
55aa24fb SDJ |
679 | /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */ |
680 | /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */ | |
681 | /* Skip verify of stap_is_single_operand, has predicate. */ | |
682 | /* Skip verify of stap_parse_special_token, has predicate. */ | |
8b367e17 JM |
683 | /* Skip verify of dtrace_parse_probe_argument, has predicate. */ |
684 | /* Skip verify of dtrace_probe_is_enabled, has predicate. */ | |
685 | /* Skip verify of dtrace_enable_probe, has predicate. */ | |
686 | /* Skip verify of dtrace_disable_probe, has predicate. */ | |
50c71eaf | 687 | /* Skip verify of has_global_solist, invalid_p == 0 */ |
2567c7d9 | 688 | /* Skip verify of has_global_breakpoints, invalid_p == 0 */ |
6c95b8df | 689 | /* Skip verify of has_shared_address_space, invalid_p == 0 */ |
7a697b8d | 690 | /* Skip verify of fast_tracepoint_valid_at, invalid_p == 0 */ |
5f034a78 | 691 | /* Skip verify of guess_tracepoint_registers, invalid_p == 0 */ |
f870a310 TT |
692 | /* Skip verify of auto_charset, invalid_p == 0 */ |
693 | /* Skip verify of auto_wide_charset, invalid_p == 0 */ | |
ab38a727 | 694 | /* Skip verify of has_dos_based_file_system, invalid_p == 0 */ |
6710bf39 | 695 | /* Skip verify of gen_return_address, invalid_p == 0 */ |
3030c96e | 696 | /* Skip verify of info_proc, has predicate. */ |
451b7c33 | 697 | /* Skip verify of core_info_proc, has predicate. */ |
19630284 | 698 | /* Skip verify of iterate_over_objfiles_in_search_order, invalid_p == 0 */ |
7e35103a | 699 | /* Skip verify of ravenscar_ops, invalid_p == 0 */ |
c2170eef MM |
700 | /* Skip verify of insn_is_call, invalid_p == 0 */ |
701 | /* Skip verify of insn_is_ret, invalid_p == 0 */ | |
702 | /* Skip verify of insn_is_jump, invalid_p == 0 */ | |
27a48a92 | 703 | /* Skip verify of auxv_parse, has predicate. */ |
2faa3447 | 704 | /* Skip verify of print_auxv_entry, invalid_p == 0 */ |
3437254d | 705 | /* Skip verify of vsyscall_range, invalid_p == 0 */ |
f208eee0 | 706 | /* Skip verify of infcall_mmap, invalid_p == 0 */ |
7f361056 | 707 | /* Skip verify of infcall_munmap, invalid_p == 0 */ |
f208eee0 | 708 | /* Skip verify of gcc_target_options, invalid_p == 0 */ |
ac04f72b | 709 | /* Skip verify of gnu_triplet_regexp, invalid_p == 0 */ |
3374165f | 710 | /* Skip verify of addressable_memory_unit_size, invalid_p == 0 */ |
65b48a81 PB |
711 | /* Skip verify of disassembler_options, invalid_p == 0 */ |
712 | /* Skip verify of valid_disassembler_options, invalid_p == 0 */ | |
d7e74731 | 713 | if (!log.empty ()) |
f16a1923 | 714 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 715 | _("verify_gdbarch: the following are invalid ...%s"), |
d7e74731 | 716 | log.c_str ()); |
0f71a2f6 JM |
717 | } |
718 | ||
719 | ||
0963b4bd | 720 | /* Print out the details of the current architecture. */ |
0f71a2f6 JM |
721 | |
722 | void | |
be7811ad | 723 | gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file) |
0f71a2f6 | 724 | { |
b78960be | 725 | const char *gdb_nm_file = "<not-defined>"; |
05c547f6 | 726 | |
b78960be AC |
727 | #if defined (GDB_NM_FILE) |
728 | gdb_nm_file = GDB_NM_FILE; | |
729 | #endif | |
730 | fprintf_unfiltered (file, | |
731 | "gdbarch_dump: GDB_NM_FILE = %s\n", | |
732 | gdb_nm_file); | |
48f7351b AC |
733 | fprintf_unfiltered (file, |
734 | "gdbarch_dump: addr_bit = %s\n", | |
623d3eb1 | 735 | plongest (gdbarch->addr_bit)); |
48f7351b | 736 | fprintf_unfiltered (file, |
30737ed9 JB |
737 | "gdbarch_dump: addr_bits_remove = <%s>\n", |
738 | host_address_to_string (gdbarch->addr_bits_remove)); | |
7996bcec AC |
739 | fprintf_unfiltered (file, |
740 | "gdbarch_dump: gdbarch_address_class_name_to_type_flags_p() = %d\n", | |
be7811ad | 741 | gdbarch_address_class_name_to_type_flags_p (gdbarch)); |
7996bcec | 742 | fprintf_unfiltered (file, |
30737ed9 JB |
743 | "gdbarch_dump: address_class_name_to_type_flags = <%s>\n", |
744 | host_address_to_string (gdbarch->address_class_name_to_type_flags)); | |
48f7351b AC |
745 | fprintf_unfiltered (file, |
746 | "gdbarch_dump: gdbarch_address_class_type_flags_p() = %d\n", | |
be7811ad | 747 | gdbarch_address_class_type_flags_p (gdbarch)); |
48f7351b | 748 | fprintf_unfiltered (file, |
30737ed9 JB |
749 | "gdbarch_dump: address_class_type_flags = <%s>\n", |
750 | host_address_to_string (gdbarch->address_class_type_flags)); | |
7996bcec AC |
751 | fprintf_unfiltered (file, |
752 | "gdbarch_dump: gdbarch_address_class_type_flags_to_name_p() = %d\n", | |
be7811ad | 753 | gdbarch_address_class_type_flags_to_name_p (gdbarch)); |
7996bcec | 754 | fprintf_unfiltered (file, |
30737ed9 JB |
755 | "gdbarch_dump: address_class_type_flags_to_name = <%s>\n", |
756 | host_address_to_string (gdbarch->address_class_type_flags_to_name)); | |
48f7351b | 757 | fprintf_unfiltered (file, |
30737ed9 JB |
758 | "gdbarch_dump: address_to_pointer = <%s>\n", |
759 | host_address_to_string (gdbarch->address_to_pointer)); | |
3374165f SM |
760 | fprintf_unfiltered (file, |
761 | "gdbarch_dump: addressable_memory_unit_size = <%s>\n", | |
762 | host_address_to_string (gdbarch->addressable_memory_unit_size)); | |
a1131521 KB |
763 | fprintf_unfiltered (file, |
764 | "gdbarch_dump: gdbarch_adjust_breakpoint_address_p() = %d\n", | |
be7811ad | 765 | gdbarch_adjust_breakpoint_address_p (gdbarch)); |
a1131521 | 766 | fprintf_unfiltered (file, |
30737ed9 JB |
767 | "gdbarch_dump: adjust_breakpoint_address = <%s>\n", |
768 | host_address_to_string (gdbarch->adjust_breakpoint_address)); | |
3e29f34a MR |
769 | fprintf_unfiltered (file, |
770 | "gdbarch_dump: adjust_dwarf2_addr = <%s>\n", | |
771 | host_address_to_string (gdbarch->adjust_dwarf2_addr)); | |
772 | fprintf_unfiltered (file, | |
773 | "gdbarch_dump: adjust_dwarf2_line = <%s>\n", | |
774 | host_address_to_string (gdbarch->adjust_dwarf2_line)); | |
f870a310 TT |
775 | fprintf_unfiltered (file, |
776 | "gdbarch_dump: auto_charset = <%s>\n", | |
777 | host_address_to_string (gdbarch->auto_charset)); | |
778 | fprintf_unfiltered (file, | |
779 | "gdbarch_dump: auto_wide_charset = <%s>\n", | |
780 | host_address_to_string (gdbarch->auto_wide_charset)); | |
27a48a92 MK |
781 | fprintf_unfiltered (file, |
782 | "gdbarch_dump: gdbarch_auxv_parse_p() = %d\n", | |
783 | gdbarch_auxv_parse_p (gdbarch)); | |
784 | fprintf_unfiltered (file, | |
785 | "gdbarch_dump: auxv_parse = <%s>\n", | |
786 | host_address_to_string (gdbarch->auxv_parse)); | |
175ff332 HZ |
787 | fprintf_unfiltered (file, |
788 | "gdbarch_dump: gdbarch_ax_pseudo_register_collect_p() = %d\n", | |
789 | gdbarch_ax_pseudo_register_collect_p (gdbarch)); | |
790 | fprintf_unfiltered (file, | |
791 | "gdbarch_dump: ax_pseudo_register_collect = <%s>\n", | |
792 | host_address_to_string (gdbarch->ax_pseudo_register_collect)); | |
793 | fprintf_unfiltered (file, | |
794 | "gdbarch_dump: gdbarch_ax_pseudo_register_push_stack_p() = %d\n", | |
795 | gdbarch_ax_pseudo_register_push_stack_p (gdbarch)); | |
796 | fprintf_unfiltered (file, | |
797 | "gdbarch_dump: ax_pseudo_register_push_stack = <%s>\n", | |
798 | host_address_to_string (gdbarch->ax_pseudo_register_push_stack)); | |
48f7351b AC |
799 | fprintf_unfiltered (file, |
800 | "gdbarch_dump: believe_pcc_promotion = %s\n", | |
623d3eb1 | 801 | plongest (gdbarch->believe_pcc_promotion)); |
283354d8 | 802 | fprintf_unfiltered (file, |
48f7351b | 803 | "gdbarch_dump: bfd_arch_info = %s\n", |
be7811ad | 804 | gdbarch_bfd_arch_info (gdbarch)->printable_name); |
32c9a795 MD |
805 | fprintf_unfiltered (file, |
806 | "gdbarch_dump: bits_big_endian = %s\n", | |
623d3eb1 | 807 | plongest (gdbarch->bits_big_endian)); |
48f7351b | 808 | fprintf_unfiltered (file, |
30737ed9 JB |
809 | "gdbarch_dump: breakpoint_from_pc = <%s>\n", |
810 | host_address_to_string (gdbarch->breakpoint_from_pc)); | |
833b7ab5 YQ |
811 | fprintf_unfiltered (file, |
812 | "gdbarch_dump: breakpoint_kind_from_current_state = <%s>\n", | |
813 | host_address_to_string (gdbarch->breakpoint_kind_from_current_state)); | |
cd6c3b4f YQ |
814 | fprintf_unfiltered (file, |
815 | "gdbarch_dump: breakpoint_kind_from_pc = <%s>\n", | |
816 | host_address_to_string (gdbarch->breakpoint_kind_from_pc)); | |
48f7351b AC |
817 | fprintf_unfiltered (file, |
818 | "gdbarch_dump: byte_order = %s\n", | |
623d3eb1 | 819 | plongest (gdbarch->byte_order)); |
9d4fde75 SS |
820 | fprintf_unfiltered (file, |
821 | "gdbarch_dump: byte_order_for_code = %s\n", | |
623d3eb1 | 822 | plongest (gdbarch->byte_order_for_code)); |
48f7351b AC |
823 | fprintf_unfiltered (file, |
824 | "gdbarch_dump: call_dummy_location = %s\n", | |
623d3eb1 | 825 | plongest (gdbarch->call_dummy_location)); |
48f7351b | 826 | fprintf_unfiltered (file, |
30737ed9 JB |
827 | "gdbarch_dump: cannot_fetch_register = <%s>\n", |
828 | host_address_to_string (gdbarch->cannot_fetch_register)); | |
48f7351b AC |
829 | fprintf_unfiltered (file, |
830 | "gdbarch_dump: cannot_step_breakpoint = %s\n", | |
623d3eb1 | 831 | plongest (gdbarch->cannot_step_breakpoint)); |
48f7351b | 832 | fprintf_unfiltered (file, |
30737ed9 JB |
833 | "gdbarch_dump: cannot_store_register = <%s>\n", |
834 | host_address_to_string (gdbarch->cannot_store_register)); | |
48f7351b AC |
835 | fprintf_unfiltered (file, |
836 | "gdbarch_dump: char_signed = %s\n", | |
623d3eb1 | 837 | plongest (gdbarch->char_signed)); |
7eb89530 YQ |
838 | fprintf_unfiltered (file, |
839 | "gdbarch_dump: code_of_frame_writable = <%s>\n", | |
840 | host_address_to_string (gdbarch->code_of_frame_writable)); | |
7996bcec | 841 | fprintf_unfiltered (file, |
30737ed9 JB |
842 | "gdbarch_dump: coff_make_msymbol_special = <%s>\n", |
843 | host_address_to_string (gdbarch->coff_make_msymbol_special)); | |
a2428dbe | 844 | fprintf_unfiltered (file, |
30737ed9 JB |
845 | "gdbarch_dump: convert_from_func_ptr_addr = <%s>\n", |
846 | host_address_to_string (gdbarch->convert_from_func_ptr_addr)); | |
48f7351b | 847 | fprintf_unfiltered (file, |
30737ed9 JB |
848 | "gdbarch_dump: convert_register_p = <%s>\n", |
849 | host_address_to_string (gdbarch->convert_register_p)); | |
451b7c33 TT |
850 | fprintf_unfiltered (file, |
851 | "gdbarch_dump: gdbarch_core_info_proc_p() = %d\n", | |
852 | gdbarch_core_info_proc_p (gdbarch)); | |
853 | fprintf_unfiltered (file, | |
854 | "gdbarch_dump: core_info_proc = <%s>\n", | |
855 | host_address_to_string (gdbarch->core_info_proc)); | |
28439f5e PA |
856 | fprintf_unfiltered (file, |
857 | "gdbarch_dump: gdbarch_core_pid_to_str_p() = %d\n", | |
858 | gdbarch_core_pid_to_str_p (gdbarch)); | |
859 | fprintf_unfiltered (file, | |
860 | "gdbarch_dump: core_pid_to_str = <%s>\n", | |
861 | host_address_to_string (gdbarch->core_pid_to_str)); | |
4eb0ad19 DJ |
862 | fprintf_unfiltered (file, |
863 | "gdbarch_dump: gdbarch_core_read_description_p() = %d\n", | |
be7811ad | 864 | gdbarch_core_read_description_p (gdbarch)); |
4eb0ad19 | 865 | fprintf_unfiltered (file, |
30737ed9 JB |
866 | "gdbarch_dump: core_read_description = <%s>\n", |
867 | host_address_to_string (gdbarch->core_read_description)); | |
4dfc5dbc JB |
868 | fprintf_unfiltered (file, |
869 | "gdbarch_dump: gdbarch_core_thread_name_p() = %d\n", | |
870 | gdbarch_core_thread_name_p (gdbarch)); | |
871 | fprintf_unfiltered (file, | |
872 | "gdbarch_dump: core_thread_name = <%s>\n", | |
873 | host_address_to_string (gdbarch->core_thread_name)); | |
de584861 PA |
874 | fprintf_unfiltered (file, |
875 | "gdbarch_dump: gdbarch_core_xfer_shared_libraries_p() = %d\n", | |
be7811ad | 876 | gdbarch_core_xfer_shared_libraries_p (gdbarch)); |
de584861 | 877 | fprintf_unfiltered (file, |
30737ed9 JB |
878 | "gdbarch_dump: core_xfer_shared_libraries = <%s>\n", |
879 | host_address_to_string (gdbarch->core_xfer_shared_libraries)); | |
356a5233 JB |
880 | fprintf_unfiltered (file, |
881 | "gdbarch_dump: gdbarch_core_xfer_shared_libraries_aix_p() = %d\n", | |
882 | gdbarch_core_xfer_shared_libraries_aix_p (gdbarch)); | |
883 | fprintf_unfiltered (file, | |
884 | "gdbarch_dump: core_xfer_shared_libraries_aix = <%s>\n", | |
885 | host_address_to_string (gdbarch->core_xfer_shared_libraries_aix)); | |
382b69bb JB |
886 | fprintf_unfiltered (file, |
887 | "gdbarch_dump: gdbarch_core_xfer_siginfo_p() = %d\n", | |
888 | gdbarch_core_xfer_siginfo_p (gdbarch)); | |
889 | fprintf_unfiltered (file, | |
890 | "gdbarch_dump: core_xfer_siginfo = <%s>\n", | |
891 | host_address_to_string (gdbarch->core_xfer_siginfo)); | |
48f7351b | 892 | fprintf_unfiltered (file, |
0b1553bc UW |
893 | "gdbarch_dump: decr_pc_after_break = %s\n", |
894 | core_addr_to_string_nz (gdbarch->decr_pc_after_break)); | |
48f7351b AC |
895 | fprintf_unfiltered (file, |
896 | "gdbarch_dump: deprecated_fp_regnum = %s\n", | |
623d3eb1 | 897 | plongest (gdbarch->deprecated_fp_regnum)); |
48f7351b | 898 | fprintf_unfiltered (file, |
0b1553bc UW |
899 | "gdbarch_dump: deprecated_function_start_offset = %s\n", |
900 | core_addr_to_string_nz (gdbarch->deprecated_function_start_offset)); | |
65b48a81 PB |
901 | fprintf_unfiltered (file, |
902 | "gdbarch_dump: disassembler_options = %s\n", | |
f7bb4e3a | 903 | pstring_ptr (gdbarch->disassembler_options)); |
237fc4c9 PA |
904 | fprintf_unfiltered (file, |
905 | "gdbarch_dump: gdbarch_displaced_step_copy_insn_p() = %d\n", | |
906 | gdbarch_displaced_step_copy_insn_p (gdbarch)); | |
907 | fprintf_unfiltered (file, | |
30737ed9 JB |
908 | "gdbarch_dump: displaced_step_copy_insn = <%s>\n", |
909 | host_address_to_string (gdbarch->displaced_step_copy_insn)); | |
237fc4c9 PA |
910 | fprintf_unfiltered (file, |
911 | "gdbarch_dump: gdbarch_displaced_step_fixup_p() = %d\n", | |
912 | gdbarch_displaced_step_fixup_p (gdbarch)); | |
913 | fprintf_unfiltered (file, | |
30737ed9 JB |
914 | "gdbarch_dump: displaced_step_fixup = <%s>\n", |
915 | host_address_to_string (gdbarch->displaced_step_fixup)); | |
99e40580 UW |
916 | fprintf_unfiltered (file, |
917 | "gdbarch_dump: displaced_step_hw_singlestep = <%s>\n", | |
918 | host_address_to_string (gdbarch->displaced_step_hw_singlestep)); | |
237fc4c9 | 919 | fprintf_unfiltered (file, |
30737ed9 JB |
920 | "gdbarch_dump: displaced_step_location = <%s>\n", |
921 | host_address_to_string (gdbarch->displaced_step_location)); | |
48f7351b AC |
922 | fprintf_unfiltered (file, |
923 | "gdbarch_dump: double_bit = %s\n", | |
623d3eb1 | 924 | plongest (gdbarch->double_bit)); |
a2428dbe | 925 | fprintf_unfiltered (file, |
48f7351b | 926 | "gdbarch_dump: double_format = %s\n", |
be7811ad | 927 | pformat (gdbarch->double_format)); |
8b367e17 JM |
928 | fprintf_unfiltered (file, |
929 | "gdbarch_dump: gdbarch_dtrace_disable_probe_p() = %d\n", | |
930 | gdbarch_dtrace_disable_probe_p (gdbarch)); | |
931 | fprintf_unfiltered (file, | |
932 | "gdbarch_dump: dtrace_disable_probe = <%s>\n", | |
933 | host_address_to_string (gdbarch->dtrace_disable_probe)); | |
934 | fprintf_unfiltered (file, | |
935 | "gdbarch_dump: gdbarch_dtrace_enable_probe_p() = %d\n", | |
936 | gdbarch_dtrace_enable_probe_p (gdbarch)); | |
937 | fprintf_unfiltered (file, | |
938 | "gdbarch_dump: dtrace_enable_probe = <%s>\n", | |
939 | host_address_to_string (gdbarch->dtrace_enable_probe)); | |
940 | fprintf_unfiltered (file, | |
941 | "gdbarch_dump: gdbarch_dtrace_parse_probe_argument_p() = %d\n", | |
942 | gdbarch_dtrace_parse_probe_argument_p (gdbarch)); | |
943 | fprintf_unfiltered (file, | |
944 | "gdbarch_dump: dtrace_parse_probe_argument = <%s>\n", | |
945 | host_address_to_string (gdbarch->dtrace_parse_probe_argument)); | |
946 | fprintf_unfiltered (file, | |
947 | "gdbarch_dump: gdbarch_dtrace_probe_is_enabled_p() = %d\n", | |
948 | gdbarch_dtrace_probe_is_enabled_p (gdbarch)); | |
949 | fprintf_unfiltered (file, | |
950 | "gdbarch_dump: dtrace_probe_is_enabled = <%s>\n", | |
951 | host_address_to_string (gdbarch->dtrace_probe_is_enabled)); | |
669fac23 DJ |
952 | fprintf_unfiltered (file, |
953 | "gdbarch_dump: gdbarch_dummy_id_p() = %d\n", | |
954 | gdbarch_dummy_id_p (gdbarch)); | |
955 | fprintf_unfiltered (file, | |
30737ed9 JB |
956 | "gdbarch_dump: dummy_id = <%s>\n", |
957 | host_address_to_string (gdbarch->dummy_id)); | |
8da614df CV |
958 | fprintf_unfiltered (file, |
959 | "gdbarch_dump: dwarf2_addr_size = %s\n", | |
960 | plongest (gdbarch->dwarf2_addr_size)); | |
48f7351b | 961 | fprintf_unfiltered (file, |
30737ed9 JB |
962 | "gdbarch_dump: dwarf2_reg_to_regnum = <%s>\n", |
963 | host_address_to_string (gdbarch->dwarf2_reg_to_regnum)); | |
48f7351b | 964 | fprintf_unfiltered (file, |
30737ed9 JB |
965 | "gdbarch_dump: ecoff_reg_to_regnum = <%s>\n", |
966 | host_address_to_string (gdbarch->ecoff_reg_to_regnum)); | |
3e29f34a MR |
967 | fprintf_unfiltered (file, |
968 | "gdbarch_dump: gdbarch_elf_make_msymbol_special_p() = %d\n", | |
969 | gdbarch_elf_make_msymbol_special_p (gdbarch)); | |
48f7351b | 970 | fprintf_unfiltered (file, |
30737ed9 JB |
971 | "gdbarch_dump: elf_make_msymbol_special = <%s>\n", |
972 | host_address_to_string (gdbarch->elf_make_msymbol_special)); | |
b41c5a85 JW |
973 | fprintf_unfiltered (file, |
974 | "gdbarch_dump: execute_dwarf_cfa_vendor_op = <%s>\n", | |
975 | host_address_to_string (gdbarch->execute_dwarf_cfa_vendor_op)); | |
7a697b8d SS |
976 | fprintf_unfiltered (file, |
977 | "gdbarch_dump: fast_tracepoint_valid_at = <%s>\n", | |
978 | host_address_to_string (gdbarch->fast_tracepoint_valid_at)); | |
48f7351b AC |
979 | fprintf_unfiltered (file, |
980 | "gdbarch_dump: gdbarch_fetch_pointer_argument_p() = %d\n", | |
be7811ad | 981 | gdbarch_fetch_pointer_argument_p (gdbarch)); |
48f7351b | 982 | fprintf_unfiltered (file, |
30737ed9 JB |
983 | "gdbarch_dump: fetch_pointer_argument = <%s>\n", |
984 | host_address_to_string (gdbarch->fetch_pointer_argument)); | |
b2756930 KB |
985 | fprintf_unfiltered (file, |
986 | "gdbarch_dump: gdbarch_fetch_tls_load_module_address_p() = %d\n", | |
be7811ad | 987 | gdbarch_fetch_tls_load_module_address_p (gdbarch)); |
b2756930 | 988 | fprintf_unfiltered (file, |
30737ed9 JB |
989 | "gdbarch_dump: fetch_tls_load_module_address = <%s>\n", |
990 | host_address_to_string (gdbarch->fetch_tls_load_module_address)); | |
35c2fab7 UW |
991 | fprintf_unfiltered (file, |
992 | "gdbarch_dump: gdbarch_find_memory_regions_p() = %d\n", | |
993 | gdbarch_find_memory_regions_p (gdbarch)); | |
994 | fprintf_unfiltered (file, | |
995 | "gdbarch_dump: find_memory_regions = <%s>\n", | |
996 | host_address_to_string (gdbarch->find_memory_regions)); | |
48f7351b AC |
997 | fprintf_unfiltered (file, |
998 | "gdbarch_dump: float_bit = %s\n", | |
623d3eb1 | 999 | plongest (gdbarch->float_bit)); |
a2428dbe | 1000 | fprintf_unfiltered (file, |
48f7351b | 1001 | "gdbarch_dump: float_format = %s\n", |
be7811ad | 1002 | pformat (gdbarch->float_format)); |
9b790ce7 UW |
1003 | fprintf_unfiltered (file, |
1004 | "gdbarch_dump: floatformat_for_type = <%s>\n", | |
1005 | host_address_to_string (gdbarch->floatformat_for_type)); | |
48f7351b AC |
1006 | fprintf_unfiltered (file, |
1007 | "gdbarch_dump: fp0_regnum = %s\n", | |
623d3eb1 | 1008 | plongest (gdbarch->fp0_regnum)); |
a2428dbe AC |
1009 | fprintf_unfiltered (file, |
1010 | "gdbarch_dump: gdbarch_frame_align_p() = %d\n", | |
be7811ad | 1011 | gdbarch_frame_align_p (gdbarch)); |
a2428dbe | 1012 | fprintf_unfiltered (file, |
30737ed9 JB |
1013 | "gdbarch_dump: frame_align = <%s>\n", |
1014 | host_address_to_string (gdbarch->frame_align)); | |
48f7351b | 1015 | fprintf_unfiltered (file, |
0b1553bc UW |
1016 | "gdbarch_dump: frame_args_skip = %s\n", |
1017 | core_addr_to_string_nz (gdbarch->frame_args_skip)); | |
48f7351b AC |
1018 | fprintf_unfiltered (file, |
1019 | "gdbarch_dump: gdbarch_frame_num_args_p() = %d\n", | |
be7811ad | 1020 | gdbarch_frame_num_args_p (gdbarch)); |
48f7351b | 1021 | fprintf_unfiltered (file, |
30737ed9 JB |
1022 | "gdbarch_dump: frame_num_args = <%s>\n", |
1023 | host_address_to_string (gdbarch->frame_num_args)); | |
48f7351b AC |
1024 | fprintf_unfiltered (file, |
1025 | "gdbarch_dump: frame_red_zone_size = %s\n", | |
623d3eb1 | 1026 | plongest (gdbarch->frame_red_zone_size)); |
f208eee0 JK |
1027 | fprintf_unfiltered (file, |
1028 | "gdbarch_dump: gcc_target_options = <%s>\n", | |
1029 | host_address_to_string (gdbarch->gcc_target_options)); | |
a78c2d62 UW |
1030 | fprintf_unfiltered (file, |
1031 | "gdbarch_dump: gdbarch_gcore_bfd_target_p() = %d\n", | |
1032 | gdbarch_gcore_bfd_target_p (gdbarch)); | |
1033 | fprintf_unfiltered (file, | |
1034 | "gdbarch_dump: gcore_bfd_target = %s\n", | |
86ba1042 | 1035 | pstring (gdbarch->gcore_bfd_target)); |
1f8cf220 PA |
1036 | fprintf_unfiltered (file, |
1037 | "gdbarch_dump: gdbarch_gdb_signal_from_target_p() = %d\n", | |
1038 | gdbarch_gdb_signal_from_target_p (gdbarch)); | |
2ea28649 | 1039 | fprintf_unfiltered (file, |
22203bbf PA |
1040 | "gdbarch_dump: gdb_signal_from_target = <%s>\n", |
1041 | host_address_to_string (gdbarch->gdb_signal_from_target)); | |
eb14d406 SDJ |
1042 | fprintf_unfiltered (file, |
1043 | "gdbarch_dump: gdbarch_gdb_signal_to_target_p() = %d\n", | |
1044 | gdbarch_gdb_signal_to_target_p (gdbarch)); | |
1045 | fprintf_unfiltered (file, | |
1046 | "gdbarch_dump: gdb_signal_to_target = <%s>\n", | |
1047 | host_address_to_string (gdbarch->gdb_signal_to_target)); | |
6710bf39 SS |
1048 | fprintf_unfiltered (file, |
1049 | "gdbarch_dump: gen_return_address = <%s>\n", | |
1050 | host_address_to_string (gdbarch->gen_return_address)); | |
48f7351b AC |
1051 | fprintf_unfiltered (file, |
1052 | "gdbarch_dump: gdbarch_get_longjmp_target_p() = %d\n", | |
be7811ad | 1053 | gdbarch_get_longjmp_target_p (gdbarch)); |
48f7351b | 1054 | fprintf_unfiltered (file, |
30737ed9 JB |
1055 | "gdbarch_dump: get_longjmp_target = <%s>\n", |
1056 | host_address_to_string (gdbarch->get_longjmp_target)); | |
4aa995e1 PA |
1057 | fprintf_unfiltered (file, |
1058 | "gdbarch_dump: gdbarch_get_siginfo_type_p() = %d\n", | |
1059 | gdbarch_get_siginfo_type_p (gdbarch)); | |
1060 | fprintf_unfiltered (file, | |
315aef0a PA |
1061 | "gdbarch_dump: get_siginfo_type = <%s>\n", |
1062 | host_address_to_string (gdbarch->get_siginfo_type)); | |
a96d9b2e SDJ |
1063 | fprintf_unfiltered (file, |
1064 | "gdbarch_dump: gdbarch_get_syscall_number_p() = %d\n", | |
1065 | gdbarch_get_syscall_number_p (gdbarch)); | |
1066 | fprintf_unfiltered (file, | |
1067 | "gdbarch_dump: get_syscall_number = <%s>\n", | |
1068 | host_address_to_string (gdbarch->get_syscall_number)); | |
ac04f72b TT |
1069 | fprintf_unfiltered (file, |
1070 | "gdbarch_dump: gnu_triplet_regexp = <%s>\n", | |
1071 | host_address_to_string (gdbarch->gnu_triplet_regexp)); | |
5f034a78 MK |
1072 | fprintf_unfiltered (file, |
1073 | "gdbarch_dump: guess_tracepoint_registers = <%s>\n", | |
1074 | host_address_to_string (gdbarch->guess_tracepoint_registers)); | |
f9e9243a UW |
1075 | fprintf_unfiltered (file, |
1076 | "gdbarch_dump: half_bit = %s\n", | |
1077 | plongest (gdbarch->half_bit)); | |
1078 | fprintf_unfiltered (file, | |
1079 | "gdbarch_dump: half_format = %s\n", | |
1080 | pformat (gdbarch->half_format)); | |
012b3a21 WT |
1081 | fprintf_unfiltered (file, |
1082 | "gdbarch_dump: gdbarch_handle_segmentation_fault_p() = %d\n", | |
1083 | gdbarch_handle_segmentation_fault_p (gdbarch)); | |
1084 | fprintf_unfiltered (file, | |
1085 | "gdbarch_dump: handle_segmentation_fault = <%s>\n", | |
1086 | host_address_to_string (gdbarch->handle_segmentation_fault)); | |
ab38a727 PA |
1087 | fprintf_unfiltered (file, |
1088 | "gdbarch_dump: has_dos_based_file_system = %s\n", | |
1089 | plongest (gdbarch->has_dos_based_file_system)); | |
2567c7d9 PA |
1090 | fprintf_unfiltered (file, |
1091 | "gdbarch_dump: has_global_breakpoints = %s\n", | |
1092 | plongest (gdbarch->has_global_breakpoints)); | |
50c71eaf PA |
1093 | fprintf_unfiltered (file, |
1094 | "gdbarch_dump: has_global_solist = %s\n", | |
1095 | plongest (gdbarch->has_global_solist)); | |
6c95b8df PA |
1096 | fprintf_unfiltered (file, |
1097 | "gdbarch_dump: has_shared_address_space = <%s>\n", | |
1098 | host_address_to_string (gdbarch->has_shared_address_space)); | |
a2428dbe | 1099 | fprintf_unfiltered (file, |
48f7351b | 1100 | "gdbarch_dump: have_nonsteppable_watchpoint = %s\n", |
623d3eb1 | 1101 | plongest (gdbarch->have_nonsteppable_watchpoint)); |
48f7351b | 1102 | fprintf_unfiltered (file, |
30737ed9 JB |
1103 | "gdbarch_dump: in_solib_return_trampoline = <%s>\n", |
1104 | host_address_to_string (gdbarch->in_solib_return_trampoline)); | |
f208eee0 JK |
1105 | fprintf_unfiltered (file, |
1106 | "gdbarch_dump: infcall_mmap = <%s>\n", | |
1107 | host_address_to_string (gdbarch->infcall_mmap)); | |
7f361056 JK |
1108 | fprintf_unfiltered (file, |
1109 | "gdbarch_dump: infcall_munmap = <%s>\n", | |
1110 | host_address_to_string (gdbarch->infcall_munmap)); | |
3030c96e UW |
1111 | fprintf_unfiltered (file, |
1112 | "gdbarch_dump: gdbarch_info_proc_p() = %d\n", | |
1113 | gdbarch_info_proc_p (gdbarch)); | |
1114 | fprintf_unfiltered (file, | |
1115 | "gdbarch_dump: info_proc = <%s>\n", | |
1116 | host_address_to_string (gdbarch->info_proc)); | |
48f7351b | 1117 | fprintf_unfiltered (file, |
30737ed9 JB |
1118 | "gdbarch_dump: inner_than = <%s>\n", |
1119 | host_address_to_string (gdbarch->inner_than)); | |
c2170eef MM |
1120 | fprintf_unfiltered (file, |
1121 | "gdbarch_dump: insn_is_call = <%s>\n", | |
1122 | host_address_to_string (gdbarch->insn_is_call)); | |
1123 | fprintf_unfiltered (file, | |
1124 | "gdbarch_dump: insn_is_jump = <%s>\n", | |
1125 | host_address_to_string (gdbarch->insn_is_jump)); | |
1126 | fprintf_unfiltered (file, | |
1127 | "gdbarch_dump: insn_is_ret = <%s>\n", | |
1128 | host_address_to_string (gdbarch->insn_is_ret)); | |
48f7351b AC |
1129 | fprintf_unfiltered (file, |
1130 | "gdbarch_dump: int_bit = %s\n", | |
623d3eb1 | 1131 | plongest (gdbarch->int_bit)); |
48f7351b AC |
1132 | fprintf_unfiltered (file, |
1133 | "gdbarch_dump: gdbarch_integer_to_address_p() = %d\n", | |
be7811ad | 1134 | gdbarch_integer_to_address_p (gdbarch)); |
48f7351b | 1135 | fprintf_unfiltered (file, |
30737ed9 JB |
1136 | "gdbarch_dump: integer_to_address = <%s>\n", |
1137 | host_address_to_string (gdbarch->integer_to_address)); | |
19630284 JB |
1138 | fprintf_unfiltered (file, |
1139 | "gdbarch_dump: iterate_over_objfiles_in_search_order = <%s>\n", | |
1140 | host_address_to_string (gdbarch->iterate_over_objfiles_in_search_order)); | |
5aa82d05 AA |
1141 | fprintf_unfiltered (file, |
1142 | "gdbarch_dump: gdbarch_iterate_over_regset_sections_p() = %d\n", | |
1143 | gdbarch_iterate_over_regset_sections_p (gdbarch)); | |
1144 | fprintf_unfiltered (file, | |
1145 | "gdbarch_dump: iterate_over_regset_sections = <%s>\n", | |
1146 | host_address_to_string (gdbarch->iterate_over_regset_sections)); | |
48f7351b AC |
1147 | fprintf_unfiltered (file, |
1148 | "gdbarch_dump: long_bit = %s\n", | |
623d3eb1 | 1149 | plongest (gdbarch->long_bit)); |
48f7351b AC |
1150 | fprintf_unfiltered (file, |
1151 | "gdbarch_dump: long_double_bit = %s\n", | |
623d3eb1 | 1152 | plongest (gdbarch->long_double_bit)); |
a2428dbe | 1153 | fprintf_unfiltered (file, |
48f7351b | 1154 | "gdbarch_dump: long_double_format = %s\n", |
be7811ad | 1155 | pformat (gdbarch->long_double_format)); |
205c306f DM |
1156 | fprintf_unfiltered (file, |
1157 | "gdbarch_dump: long_long_align_bit = %s\n", | |
1158 | plongest (gdbarch->long_long_align_bit)); | |
48f7351b AC |
1159 | fprintf_unfiltered (file, |
1160 | "gdbarch_dump: long_long_bit = %s\n", | |
623d3eb1 | 1161 | plongest (gdbarch->long_long_bit)); |
6432734d UW |
1162 | fprintf_unfiltered (file, |
1163 | "gdbarch_dump: gdbarch_make_corefile_notes_p() = %d\n", | |
1164 | gdbarch_make_corefile_notes_p (gdbarch)); | |
1165 | fprintf_unfiltered (file, | |
1166 | "gdbarch_dump: make_corefile_notes = <%s>\n", | |
1167 | host_address_to_string (gdbarch->make_corefile_notes)); | |
3e29f34a MR |
1168 | fprintf_unfiltered (file, |
1169 | "gdbarch_dump: make_symbol_special = <%s>\n", | |
1170 | host_address_to_string (gdbarch->make_symbol_special)); | |
237fc4c9 PA |
1171 | fprintf_unfiltered (file, |
1172 | "gdbarch_dump: gdbarch_max_insn_length_p() = %d\n", | |
1173 | gdbarch_max_insn_length_p (gdbarch)); | |
1174 | fprintf_unfiltered (file, | |
1175 | "gdbarch_dump: max_insn_length = %s\n", | |
623d3eb1 | 1176 | plongest (gdbarch->max_insn_length)); |
48f7351b | 1177 | fprintf_unfiltered (file, |
30737ed9 JB |
1178 | "gdbarch_dump: memory_insert_breakpoint = <%s>\n", |
1179 | host_address_to_string (gdbarch->memory_insert_breakpoint)); | |
48f7351b | 1180 | fprintf_unfiltered (file, |
30737ed9 JB |
1181 | "gdbarch_dump: memory_remove_breakpoint = <%s>\n", |
1182 | host_address_to_string (gdbarch->memory_remove_breakpoint)); | |
48f7351b AC |
1183 | fprintf_unfiltered (file, |
1184 | "gdbarch_dump: num_pseudo_regs = %s\n", | |
623d3eb1 | 1185 | plongest (gdbarch->num_pseudo_regs)); |
48f7351b AC |
1186 | fprintf_unfiltered (file, |
1187 | "gdbarch_dump: num_regs = %s\n", | |
623d3eb1 | 1188 | plongest (gdbarch->num_regs)); |
48f7351b AC |
1189 | fprintf_unfiltered (file, |
1190 | "gdbarch_dump: osabi = %s\n", | |
623d3eb1 | 1191 | plongest (gdbarch->osabi)); |
1c772458 UW |
1192 | fprintf_unfiltered (file, |
1193 | "gdbarch_dump: gdbarch_overlay_update_p() = %d\n", | |
be7811ad | 1194 | gdbarch_overlay_update_p (gdbarch)); |
1c772458 | 1195 | fprintf_unfiltered (file, |
30737ed9 JB |
1196 | "gdbarch_dump: overlay_update = <%s>\n", |
1197 | host_address_to_string (gdbarch->overlay_update)); | |
48f7351b AC |
1198 | fprintf_unfiltered (file, |
1199 | "gdbarch_dump: pc_regnum = %s\n", | |
623d3eb1 | 1200 | plongest (gdbarch->pc_regnum)); |
48f7351b | 1201 | fprintf_unfiltered (file, |
30737ed9 JB |
1202 | "gdbarch_dump: pointer_to_address = <%s>\n", |
1203 | host_address_to_string (gdbarch->pointer_to_address)); | |
2faa3447 JB |
1204 | fprintf_unfiltered (file, |
1205 | "gdbarch_dump: print_auxv_entry = <%s>\n", | |
1206 | host_address_to_string (gdbarch->print_auxv_entry)); | |
7996bcec | 1207 | fprintf_unfiltered (file, |
30737ed9 JB |
1208 | "gdbarch_dump: print_float_info = <%s>\n", |
1209 | host_address_to_string (gdbarch->print_float_info)); | |
7996bcec | 1210 | fprintf_unfiltered (file, |
30737ed9 JB |
1211 | "gdbarch_dump: print_insn = <%s>\n", |
1212 | host_address_to_string (gdbarch->print_insn)); | |
48f7351b | 1213 | fprintf_unfiltered (file, |
30737ed9 JB |
1214 | "gdbarch_dump: print_registers_info = <%s>\n", |
1215 | host_address_to_string (gdbarch->print_registers_info)); | |
7996bcec AC |
1216 | fprintf_unfiltered (file, |
1217 | "gdbarch_dump: gdbarch_print_vector_info_p() = %d\n", | |
be7811ad | 1218 | gdbarch_print_vector_info_p (gdbarch)); |
7996bcec | 1219 | fprintf_unfiltered (file, |
30737ed9 JB |
1220 | "gdbarch_dump: print_vector_info = <%s>\n", |
1221 | host_address_to_string (gdbarch->print_vector_info)); | |
0508c3ec HZ |
1222 | fprintf_unfiltered (file, |
1223 | "gdbarch_dump: gdbarch_process_record_p() = %d\n", | |
1224 | gdbarch_process_record_p (gdbarch)); | |
1225 | fprintf_unfiltered (file, | |
1226 | "gdbarch_dump: process_record = <%s>\n", | |
1227 | host_address_to_string (gdbarch->process_record)); | |
3846b520 HZ |
1228 | fprintf_unfiltered (file, |
1229 | "gdbarch_dump: gdbarch_process_record_signal_p() = %d\n", | |
1230 | gdbarch_process_record_signal_p (gdbarch)); | |
1231 | fprintf_unfiltered (file, | |
1232 | "gdbarch_dump: process_record_signal = <%s>\n", | |
1233 | host_address_to_string (gdbarch->process_record_signal)); | |
48f7351b AC |
1234 | fprintf_unfiltered (file, |
1235 | "gdbarch_dump: ps_regnum = %s\n", | |
623d3eb1 | 1236 | plongest (gdbarch->ps_regnum)); |
a2428dbe AC |
1237 | fprintf_unfiltered (file, |
1238 | "gdbarch_dump: gdbarch_pseudo_register_read_p() = %d\n", | |
be7811ad | 1239 | gdbarch_pseudo_register_read_p (gdbarch)); |
a2428dbe | 1240 | fprintf_unfiltered (file, |
30737ed9 JB |
1241 | "gdbarch_dump: pseudo_register_read = <%s>\n", |
1242 | host_address_to_string (gdbarch->pseudo_register_read)); | |
3543a589 TT |
1243 | fprintf_unfiltered (file, |
1244 | "gdbarch_dump: gdbarch_pseudo_register_read_value_p() = %d\n", | |
1245 | gdbarch_pseudo_register_read_value_p (gdbarch)); | |
1246 | fprintf_unfiltered (file, | |
1247 | "gdbarch_dump: pseudo_register_read_value = <%s>\n", | |
1248 | host_address_to_string (gdbarch->pseudo_register_read_value)); | |
a2428dbe AC |
1249 | fprintf_unfiltered (file, |
1250 | "gdbarch_dump: gdbarch_pseudo_register_write_p() = %d\n", | |
be7811ad | 1251 | gdbarch_pseudo_register_write_p (gdbarch)); |
a2428dbe | 1252 | fprintf_unfiltered (file, |
30737ed9 JB |
1253 | "gdbarch_dump: pseudo_register_write = <%s>\n", |
1254 | host_address_to_string (gdbarch->pseudo_register_write)); | |
48f7351b AC |
1255 | fprintf_unfiltered (file, |
1256 | "gdbarch_dump: ptr_bit = %s\n", | |
623d3eb1 | 1257 | plongest (gdbarch->ptr_bit)); |
7996bcec AC |
1258 | fprintf_unfiltered (file, |
1259 | "gdbarch_dump: gdbarch_push_dummy_call_p() = %d\n", | |
be7811ad | 1260 | gdbarch_push_dummy_call_p (gdbarch)); |
7996bcec | 1261 | fprintf_unfiltered (file, |
30737ed9 JB |
1262 | "gdbarch_dump: push_dummy_call = <%s>\n", |
1263 | host_address_to_string (gdbarch->push_dummy_call)); | |
7996bcec AC |
1264 | fprintf_unfiltered (file, |
1265 | "gdbarch_dump: gdbarch_push_dummy_code_p() = %d\n", | |
be7811ad | 1266 | gdbarch_push_dummy_code_p (gdbarch)); |
7996bcec | 1267 | fprintf_unfiltered (file, |
30737ed9 JB |
1268 | "gdbarch_dump: push_dummy_code = <%s>\n", |
1269 | host_address_to_string (gdbarch->push_dummy_code)); | |
7e35103a JB |
1270 | fprintf_unfiltered (file, |
1271 | "gdbarch_dump: ravenscar_ops = %s\n", | |
1272 | host_address_to_string (gdbarch->ravenscar_ops)); | |
48f7351b AC |
1273 | fprintf_unfiltered (file, |
1274 | "gdbarch_dump: gdbarch_read_pc_p() = %d\n", | |
be7811ad | 1275 | gdbarch_read_pc_p (gdbarch)); |
48f7351b | 1276 | fprintf_unfiltered (file, |
30737ed9 JB |
1277 | "gdbarch_dump: read_pc = <%s>\n", |
1278 | host_address_to_string (gdbarch->read_pc)); | |
60c5725c DJ |
1279 | fprintf_unfiltered (file, |
1280 | "gdbarch_dump: gdbarch_record_special_symbol_p() = %d\n", | |
1281 | gdbarch_record_special_symbol_p (gdbarch)); | |
1282 | fprintf_unfiltered (file, | |
30737ed9 JB |
1283 | "gdbarch_dump: record_special_symbol = <%s>\n", |
1284 | host_address_to_string (gdbarch->record_special_symbol)); | |
a2428dbe | 1285 | fprintf_unfiltered (file, |
30737ed9 JB |
1286 | "gdbarch_dump: register_name = <%s>\n", |
1287 | host_address_to_string (gdbarch->register_name)); | |
48f7351b | 1288 | fprintf_unfiltered (file, |
30737ed9 JB |
1289 | "gdbarch_dump: register_reggroup_p = <%s>\n", |
1290 | host_address_to_string (gdbarch->register_reggroup_p)); | |
48f7351b | 1291 | fprintf_unfiltered (file, |
30737ed9 JB |
1292 | "gdbarch_dump: register_sim_regno = <%s>\n", |
1293 | host_address_to_string (gdbarch->register_sim_regno)); | |
48f7351b | 1294 | fprintf_unfiltered (file, |
30737ed9 JB |
1295 | "gdbarch_dump: register_to_value = <%s>\n", |
1296 | host_address_to_string (gdbarch->register_to_value)); | |
7996bcec AC |
1297 | fprintf_unfiltered (file, |
1298 | "gdbarch_dump: gdbarch_register_type_p() = %d\n", | |
be7811ad | 1299 | gdbarch_register_type_p (gdbarch)); |
7996bcec | 1300 | fprintf_unfiltered (file, |
30737ed9 JB |
1301 | "gdbarch_dump: register_type = <%s>\n", |
1302 | host_address_to_string (gdbarch->register_type)); | |
dde08ee1 PA |
1303 | fprintf_unfiltered (file, |
1304 | "gdbarch_dump: gdbarch_relocate_instruction_p() = %d\n", | |
1305 | gdbarch_relocate_instruction_p (gdbarch)); | |
1306 | fprintf_unfiltered (file, | |
1307 | "gdbarch_dump: relocate_instruction = <%s>\n", | |
1308 | host_address_to_string (gdbarch->relocate_instruction)); | |
123dc839 | 1309 | fprintf_unfiltered (file, |
30737ed9 JB |
1310 | "gdbarch_dump: remote_register_number = <%s>\n", |
1311 | host_address_to_string (gdbarch->remote_register_number)); | |
18648a37 YQ |
1312 | fprintf_unfiltered (file, |
1313 | "gdbarch_dump: return_in_first_hidden_param_p = <%s>\n", | |
1314 | host_address_to_string (gdbarch->return_in_first_hidden_param_p)); | |
a2428dbe AC |
1315 | fprintf_unfiltered (file, |
1316 | "gdbarch_dump: gdbarch_return_value_p() = %d\n", | |
be7811ad | 1317 | gdbarch_return_value_p (gdbarch)); |
a2428dbe | 1318 | fprintf_unfiltered (file, |
30737ed9 JB |
1319 | "gdbarch_dump: return_value = <%s>\n", |
1320 | host_address_to_string (gdbarch->return_value)); | |
48f7351b | 1321 | fprintf_unfiltered (file, |
30737ed9 JB |
1322 | "gdbarch_dump: sdb_reg_to_regnum = <%s>\n", |
1323 | host_address_to_string (gdbarch->sdb_reg_to_regnum)); | |
48f7351b AC |
1324 | fprintf_unfiltered (file, |
1325 | "gdbarch_dump: short_bit = %s\n", | |
623d3eb1 | 1326 | plongest (gdbarch->short_bit)); |
3352ef37 AC |
1327 | fprintf_unfiltered (file, |
1328 | "gdbarch_dump: gdbarch_single_step_through_delay_p() = %d\n", | |
be7811ad | 1329 | gdbarch_single_step_through_delay_p (gdbarch)); |
3352ef37 | 1330 | fprintf_unfiltered (file, |
30737ed9 JB |
1331 | "gdbarch_dump: single_step_through_delay = <%s>\n", |
1332 | host_address_to_string (gdbarch->single_step_through_delay)); | |
591a12a1 UW |
1333 | fprintf_unfiltered (file, |
1334 | "gdbarch_dump: gdbarch_skip_entrypoint_p() = %d\n", | |
1335 | gdbarch_skip_entrypoint_p (gdbarch)); | |
1336 | fprintf_unfiltered (file, | |
1337 | "gdbarch_dump: skip_entrypoint = <%s>\n", | |
1338 | host_address_to_string (gdbarch->skip_entrypoint)); | |
4309257c PM |
1339 | fprintf_unfiltered (file, |
1340 | "gdbarch_dump: gdbarch_skip_main_prologue_p() = %d\n", | |
1341 | gdbarch_skip_main_prologue_p (gdbarch)); | |
1342 | fprintf_unfiltered (file, | |
30737ed9 JB |
1343 | "gdbarch_dump: skip_main_prologue = <%s>\n", |
1344 | host_address_to_string (gdbarch->skip_main_prologue)); | |
6d350bb5 | 1345 | fprintf_unfiltered (file, |
30737ed9 JB |
1346 | "gdbarch_dump: skip_permanent_breakpoint = <%s>\n", |
1347 | host_address_to_string (gdbarch->skip_permanent_breakpoint)); | |
dea0c52f | 1348 | fprintf_unfiltered (file, |
30737ed9 JB |
1349 | "gdbarch_dump: skip_prologue = <%s>\n", |
1350 | host_address_to_string (gdbarch->skip_prologue)); | |
48f7351b | 1351 | fprintf_unfiltered (file, |
30737ed9 JB |
1352 | "gdbarch_dump: skip_solib_resolver = <%s>\n", |
1353 | host_address_to_string (gdbarch->skip_solib_resolver)); | |
48f7351b | 1354 | fprintf_unfiltered (file, |
30737ed9 JB |
1355 | "gdbarch_dump: skip_trampoline_code = <%s>\n", |
1356 | host_address_to_string (gdbarch->skip_trampoline_code)); | |
48f7351b AC |
1357 | fprintf_unfiltered (file, |
1358 | "gdbarch_dump: gdbarch_software_single_step_p() = %d\n", | |
be7811ad | 1359 | gdbarch_software_single_step_p (gdbarch)); |
48f7351b | 1360 | fprintf_unfiltered (file, |
30737ed9 JB |
1361 | "gdbarch_dump: software_single_step = <%s>\n", |
1362 | host_address_to_string (gdbarch->software_single_step)); | |
203c3895 UW |
1363 | fprintf_unfiltered (file, |
1364 | "gdbarch_dump: sofun_address_maybe_missing = %s\n", | |
623d3eb1 | 1365 | plongest (gdbarch->sofun_address_maybe_missing)); |
08105857 PA |
1366 | fprintf_unfiltered (file, |
1367 | "gdbarch_dump: solib_symbols_extension = %s\n", | |
1368 | pstring (gdbarch->solib_symbols_extension)); | |
48f7351b AC |
1369 | fprintf_unfiltered (file, |
1370 | "gdbarch_dump: sp_regnum = %s\n", | |
623d3eb1 | 1371 | plongest (gdbarch->sp_regnum)); |
a2428dbe | 1372 | fprintf_unfiltered (file, |
30737ed9 JB |
1373 | "gdbarch_dump: stab_reg_to_regnum = <%s>\n", |
1374 | host_address_to_string (gdbarch->stab_reg_to_regnum)); | |
48f7351b | 1375 | fprintf_unfiltered (file, |
30737ed9 JB |
1376 | "gdbarch_dump: stabs_argument_has_addr = <%s>\n", |
1377 | host_address_to_string (gdbarch->stabs_argument_has_addr)); | |
5b74bf7d YQ |
1378 | fprintf_unfiltered (file, |
1379 | "gdbarch_dump: stack_frame_destroyed_p = <%s>\n", | |
1380 | host_address_to_string (gdbarch->stack_frame_destroyed_p)); | |
55aa24fb SDJ |
1381 | fprintf_unfiltered (file, |
1382 | "gdbarch_dump: stap_gdb_register_prefix = %s\n", | |
08af7a40 | 1383 | pstring (gdbarch->stap_gdb_register_prefix)); |
55aa24fb SDJ |
1384 | fprintf_unfiltered (file, |
1385 | "gdbarch_dump: stap_gdb_register_suffix = %s\n", | |
08af7a40 | 1386 | pstring (gdbarch->stap_gdb_register_suffix)); |
55aa24fb | 1387 | fprintf_unfiltered (file, |
05c0465e SDJ |
1388 | "gdbarch_dump: stap_integer_prefixes = %s\n", |
1389 | pstring_list (gdbarch->stap_integer_prefixes)); | |
55aa24fb | 1390 | fprintf_unfiltered (file, |
05c0465e SDJ |
1391 | "gdbarch_dump: stap_integer_suffixes = %s\n", |
1392 | pstring_list (gdbarch->stap_integer_suffixes)); | |
55aa24fb SDJ |
1393 | fprintf_unfiltered (file, |
1394 | "gdbarch_dump: gdbarch_stap_is_single_operand_p() = %d\n", | |
1395 | gdbarch_stap_is_single_operand_p (gdbarch)); | |
1396 | fprintf_unfiltered (file, | |
1397 | "gdbarch_dump: stap_is_single_operand = <%s>\n", | |
1398 | host_address_to_string (gdbarch->stap_is_single_operand)); | |
1399 | fprintf_unfiltered (file, | |
1400 | "gdbarch_dump: gdbarch_stap_parse_special_token_p() = %d\n", | |
1401 | gdbarch_stap_parse_special_token_p (gdbarch)); | |
1402 | fprintf_unfiltered (file, | |
1403 | "gdbarch_dump: stap_parse_special_token = <%s>\n", | |
1404 | host_address_to_string (gdbarch->stap_parse_special_token)); | |
1405 | fprintf_unfiltered (file, | |
05c0465e SDJ |
1406 | "gdbarch_dump: stap_register_indirection_prefixes = %s\n", |
1407 | pstring_list (gdbarch->stap_register_indirection_prefixes)); | |
55aa24fb | 1408 | fprintf_unfiltered (file, |
05c0465e SDJ |
1409 | "gdbarch_dump: stap_register_indirection_suffixes = %s\n", |
1410 | pstring_list (gdbarch->stap_register_indirection_suffixes)); | |
55aa24fb | 1411 | fprintf_unfiltered (file, |
05c0465e SDJ |
1412 | "gdbarch_dump: stap_register_prefixes = %s\n", |
1413 | pstring_list (gdbarch->stap_register_prefixes)); | |
55aa24fb | 1414 | fprintf_unfiltered (file, |
05c0465e SDJ |
1415 | "gdbarch_dump: stap_register_suffixes = %s\n", |
1416 | pstring_list (gdbarch->stap_register_suffixes)); | |
149ad273 UW |
1417 | fprintf_unfiltered (file, |
1418 | "gdbarch_dump: gdbarch_static_transform_name_p() = %d\n", | |
be7811ad | 1419 | gdbarch_static_transform_name_p (gdbarch)); |
149ad273 | 1420 | fprintf_unfiltered (file, |
30737ed9 JB |
1421 | "gdbarch_dump: static_transform_name = <%s>\n", |
1422 | host_address_to_string (gdbarch->static_transform_name)); | |
cd6c3b4f YQ |
1423 | fprintf_unfiltered (file, |
1424 | "gdbarch_dump: sw_breakpoint_from_kind = <%s>\n", | |
1425 | host_address_to_string (gdbarch->sw_breakpoint_from_kind)); | |
458c8db8 SDJ |
1426 | fprintf_unfiltered (file, |
1427 | "gdbarch_dump: syscalls_info = %s\n", | |
1428 | host_address_to_string (gdbarch->syscalls_info)); | |
424163ea DJ |
1429 | fprintf_unfiltered (file, |
1430 | "gdbarch_dump: target_desc = %s\n", | |
30737ed9 | 1431 | host_address_to_string (gdbarch->target_desc)); |
08e45a40 | 1432 | fprintf_unfiltered (file, |
a2428dbe | 1433 | "gdbarch_dump: gdbarch_unwind_pc_p() = %d\n", |
be7811ad | 1434 | gdbarch_unwind_pc_p (gdbarch)); |
7996bcec | 1435 | fprintf_unfiltered (file, |
30737ed9 JB |
1436 | "gdbarch_dump: unwind_pc = <%s>\n", |
1437 | host_address_to_string (gdbarch->unwind_pc)); | |
bd1ce8ba | 1438 | fprintf_unfiltered (file, |
a2428dbe | 1439 | "gdbarch_dump: gdbarch_unwind_sp_p() = %d\n", |
be7811ad | 1440 | gdbarch_unwind_sp_p (gdbarch)); |
bd1ce8ba | 1441 | fprintf_unfiltered (file, |
30737ed9 JB |
1442 | "gdbarch_dump: unwind_sp = <%s>\n", |
1443 | host_address_to_string (gdbarch->unwind_sp)); | |
65b48a81 PB |
1444 | fprintf_unfiltered (file, |
1445 | "gdbarch_dump: valid_disassembler_options = %s\n", | |
f7bb4e3a | 1446 | host_address_to_string (gdbarch->valid_disassembler_options)); |
9acbedc0 | 1447 | fprintf_unfiltered (file, |
30737ed9 JB |
1448 | "gdbarch_dump: value_from_register = <%s>\n", |
1449 | host_address_to_string (gdbarch->value_from_register)); | |
48f7351b | 1450 | fprintf_unfiltered (file, |
30737ed9 JB |
1451 | "gdbarch_dump: value_to_register = <%s>\n", |
1452 | host_address_to_string (gdbarch->value_to_register)); | |
0d5de010 DJ |
1453 | fprintf_unfiltered (file, |
1454 | "gdbarch_dump: vbit_in_delta = %s\n", | |
623d3eb1 | 1455 | plongest (gdbarch->vbit_in_delta)); |
48f7351b | 1456 | fprintf_unfiltered (file, |
30737ed9 JB |
1457 | "gdbarch_dump: virtual_frame_pointer = <%s>\n", |
1458 | host_address_to_string (gdbarch->virtual_frame_pointer)); | |
3437254d PA |
1459 | fprintf_unfiltered (file, |
1460 | "gdbarch_dump: vsyscall_range = <%s>\n", | |
1461 | host_address_to_string (gdbarch->vsyscall_range)); | |
0d5de010 DJ |
1462 | fprintf_unfiltered (file, |
1463 | "gdbarch_dump: vtable_function_descriptors = %s\n", | |
623d3eb1 | 1464 | plongest (gdbarch->vtable_function_descriptors)); |
53375380 PA |
1465 | fprintf_unfiltered (file, |
1466 | "gdbarch_dump: wchar_bit = %s\n", | |
1467 | plongest (gdbarch->wchar_bit)); | |
1468 | fprintf_unfiltered (file, | |
1469 | "gdbarch_dump: wchar_signed = %s\n", | |
1470 | plongest (gdbarch->wchar_signed)); | |
4b9b3959 | 1471 | fprintf_unfiltered (file, |
61a1198a | 1472 | "gdbarch_dump: gdbarch_write_pc_p() = %d\n", |
be7811ad | 1473 | gdbarch_write_pc_p (gdbarch)); |
48f7351b | 1474 | fprintf_unfiltered (file, |
30737ed9 JB |
1475 | "gdbarch_dump: write_pc = <%s>\n", |
1476 | host_address_to_string (gdbarch->write_pc)); | |
458c8db8 SDJ |
1477 | fprintf_unfiltered (file, |
1478 | "gdbarch_dump: xml_syscall_file = %s\n", | |
1479 | pstring (gdbarch->xml_syscall_file)); | |
be7811ad MD |
1480 | if (gdbarch->dump_tdep != NULL) |
1481 | gdbarch->dump_tdep (gdbarch, file); | |
0f71a2f6 JM |
1482 | } |
1483 | ||
1484 | struct gdbarch_tdep * | |
104c1213 | 1485 | gdbarch_tdep (struct gdbarch *gdbarch) |
0f71a2f6 JM |
1486 | { |
1487 | if (gdbarch_debug >= 2) | |
0f71a2f6 JM |
1488 | fprintf_unfiltered (gdb_stdlog, "gdbarch_tdep called\n"); |
1489 | return gdbarch->tdep; | |
1490 | } | |
1491 | ||
1492 | ||
1493 | const struct bfd_arch_info * | |
104c1213 | 1494 | gdbarch_bfd_arch_info (struct gdbarch *gdbarch) |
0f71a2f6 | 1495 | { |
8de9bdc4 | 1496 | gdb_assert (gdbarch != NULL); |
0f71a2f6 | 1497 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1498 | fprintf_unfiltered (gdb_stdlog, "gdbarch_bfd_arch_info called\n"); |
1499 | return gdbarch->bfd_arch_info; | |
1500 | } | |
1501 | ||
94123b4f | 1502 | enum bfd_endian |
104c1213 | 1503 | gdbarch_byte_order (struct gdbarch *gdbarch) |
0f71a2f6 | 1504 | { |
8de9bdc4 | 1505 | gdb_assert (gdbarch != NULL); |
0f71a2f6 | 1506 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1507 | fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order called\n"); |
1508 | return gdbarch->byte_order; | |
1509 | } | |
1510 | ||
94123b4f | 1511 | enum bfd_endian |
9d4fde75 SS |
1512 | gdbarch_byte_order_for_code (struct gdbarch *gdbarch) |
1513 | { | |
1514 | gdb_assert (gdbarch != NULL); | |
1515 | if (gdbarch_debug >= 2) | |
1516 | fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order_for_code called\n"); | |
1517 | return gdbarch->byte_order_for_code; | |
1518 | } | |
1519 | ||
4be87837 DJ |
1520 | enum gdb_osabi |
1521 | gdbarch_osabi (struct gdbarch *gdbarch) | |
1522 | { | |
1523 | gdb_assert (gdbarch != NULL); | |
1524 | if (gdbarch_debug >= 2) | |
1525 | fprintf_unfiltered (gdb_stdlog, "gdbarch_osabi called\n"); | |
1526 | return gdbarch->osabi; | |
1527 | } | |
1528 | ||
424163ea DJ |
1529 | const struct target_desc * |
1530 | gdbarch_target_desc (struct gdbarch *gdbarch) | |
1531 | { | |
1532 | gdb_assert (gdbarch != NULL); | |
1533 | if (gdbarch_debug >= 2) | |
1534 | fprintf_unfiltered (gdb_stdlog, "gdbarch_target_desc called\n"); | |
1535 | return gdbarch->target_desc; | |
1536 | } | |
1537 | ||
32c9a795 MD |
1538 | int |
1539 | gdbarch_bits_big_endian (struct gdbarch *gdbarch) | |
1540 | { | |
1541 | gdb_assert (gdbarch != NULL); | |
1542 | /* Skip verify of bits_big_endian, invalid_p == 0 */ | |
1543 | if (gdbarch_debug >= 2) | |
1544 | fprintf_unfiltered (gdb_stdlog, "gdbarch_bits_big_endian called\n"); | |
1545 | return gdbarch->bits_big_endian; | |
1546 | } | |
1547 | ||
1548 | void | |
1549 | set_gdbarch_bits_big_endian (struct gdbarch *gdbarch, | |
1550 | int bits_big_endian) | |
1551 | { | |
1552 | gdbarch->bits_big_endian = bits_big_endian; | |
1553 | } | |
1554 | ||
0f71a2f6 | 1555 | int |
104c1213 | 1556 | gdbarch_short_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1557 | { |
8de9bdc4 | 1558 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1559 | /* Skip verify of short_bit, invalid_p == 0 */ |
0f71a2f6 | 1560 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1561 | fprintf_unfiltered (gdb_stdlog, "gdbarch_short_bit called\n"); |
1562 | return gdbarch->short_bit; | |
1563 | } | |
1564 | ||
1565 | void | |
104c1213 JM |
1566 | set_gdbarch_short_bit (struct gdbarch *gdbarch, |
1567 | int short_bit) | |
0f71a2f6 JM |
1568 | { |
1569 | gdbarch->short_bit = short_bit; | |
1570 | } | |
1571 | ||
1572 | int | |
104c1213 | 1573 | gdbarch_int_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1574 | { |
8de9bdc4 | 1575 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1576 | /* Skip verify of int_bit, invalid_p == 0 */ |
0f71a2f6 | 1577 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1578 | fprintf_unfiltered (gdb_stdlog, "gdbarch_int_bit called\n"); |
1579 | return gdbarch->int_bit; | |
1580 | } | |
1581 | ||
1582 | void | |
104c1213 JM |
1583 | set_gdbarch_int_bit (struct gdbarch *gdbarch, |
1584 | int int_bit) | |
0f71a2f6 JM |
1585 | { |
1586 | gdbarch->int_bit = int_bit; | |
1587 | } | |
1588 | ||
1589 | int | |
104c1213 | 1590 | gdbarch_long_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1591 | { |
8de9bdc4 | 1592 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1593 | /* Skip verify of long_bit, invalid_p == 0 */ |
0f71a2f6 | 1594 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1595 | fprintf_unfiltered (gdb_stdlog, "gdbarch_long_bit called\n"); |
1596 | return gdbarch->long_bit; | |
1597 | } | |
1598 | ||
1599 | void | |
104c1213 JM |
1600 | set_gdbarch_long_bit (struct gdbarch *gdbarch, |
1601 | int long_bit) | |
0f71a2f6 JM |
1602 | { |
1603 | gdbarch->long_bit = long_bit; | |
1604 | } | |
1605 | ||
1606 | int | |
104c1213 | 1607 | gdbarch_long_long_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1608 | { |
8de9bdc4 | 1609 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1610 | /* Skip verify of long_long_bit, invalid_p == 0 */ |
0f71a2f6 | 1611 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1612 | fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_bit called\n"); |
1613 | return gdbarch->long_long_bit; | |
1614 | } | |
1615 | ||
1616 | void | |
104c1213 JM |
1617 | set_gdbarch_long_long_bit (struct gdbarch *gdbarch, |
1618 | int long_long_bit) | |
0f71a2f6 JM |
1619 | { |
1620 | gdbarch->long_long_bit = long_long_bit; | |
1621 | } | |
1622 | ||
205c306f DM |
1623 | int |
1624 | gdbarch_long_long_align_bit (struct gdbarch *gdbarch) | |
1625 | { | |
1626 | gdb_assert (gdbarch != NULL); | |
1627 | /* Skip verify of long_long_align_bit, invalid_p == 0 */ | |
1628 | if (gdbarch_debug >= 2) | |
1629 | fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_align_bit called\n"); | |
1630 | return gdbarch->long_long_align_bit; | |
1631 | } | |
1632 | ||
1633 | void | |
1634 | set_gdbarch_long_long_align_bit (struct gdbarch *gdbarch, | |
1635 | int long_long_align_bit) | |
1636 | { | |
1637 | gdbarch->long_long_align_bit = long_long_align_bit; | |
1638 | } | |
1639 | ||
f9e9243a UW |
1640 | int |
1641 | gdbarch_half_bit (struct gdbarch *gdbarch) | |
1642 | { | |
1643 | gdb_assert (gdbarch != NULL); | |
1644 | /* Skip verify of half_bit, invalid_p == 0 */ | |
1645 | if (gdbarch_debug >= 2) | |
1646 | fprintf_unfiltered (gdb_stdlog, "gdbarch_half_bit called\n"); | |
1647 | return gdbarch->half_bit; | |
1648 | } | |
1649 | ||
1650 | void | |
1651 | set_gdbarch_half_bit (struct gdbarch *gdbarch, | |
1652 | int half_bit) | |
1653 | { | |
1654 | gdbarch->half_bit = half_bit; | |
1655 | } | |
1656 | ||
1657 | const struct floatformat ** | |
1658 | gdbarch_half_format (struct gdbarch *gdbarch) | |
1659 | { | |
1660 | gdb_assert (gdbarch != NULL); | |
1661 | if (gdbarch_debug >= 2) | |
1662 | fprintf_unfiltered (gdb_stdlog, "gdbarch_half_format called\n"); | |
1663 | return gdbarch->half_format; | |
1664 | } | |
1665 | ||
1666 | void | |
1667 | set_gdbarch_half_format (struct gdbarch *gdbarch, | |
1668 | const struct floatformat ** half_format) | |
1669 | { | |
1670 | gdbarch->half_format = half_format; | |
1671 | } | |
1672 | ||
0f71a2f6 | 1673 | int |
104c1213 | 1674 | gdbarch_float_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1675 | { |
8de9bdc4 | 1676 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1677 | /* Skip verify of float_bit, invalid_p == 0 */ |
0f71a2f6 | 1678 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1679 | fprintf_unfiltered (gdb_stdlog, "gdbarch_float_bit called\n"); |
1680 | return gdbarch->float_bit; | |
1681 | } | |
1682 | ||
1683 | void | |
104c1213 JM |
1684 | set_gdbarch_float_bit (struct gdbarch *gdbarch, |
1685 | int float_bit) | |
0f71a2f6 JM |
1686 | { |
1687 | gdbarch->float_bit = float_bit; | |
1688 | } | |
1689 | ||
8da61cc4 | 1690 | const struct floatformat ** |
456fcf94 AC |
1691 | gdbarch_float_format (struct gdbarch *gdbarch) |
1692 | { | |
1693 | gdb_assert (gdbarch != NULL); | |
1694 | if (gdbarch_debug >= 2) | |
1695 | fprintf_unfiltered (gdb_stdlog, "gdbarch_float_format called\n"); | |
1696 | return gdbarch->float_format; | |
1697 | } | |
1698 | ||
1699 | void | |
1700 | set_gdbarch_float_format (struct gdbarch *gdbarch, | |
8da61cc4 | 1701 | const struct floatformat ** float_format) |
456fcf94 AC |
1702 | { |
1703 | gdbarch->float_format = float_format; | |
1704 | } | |
1705 | ||
0f71a2f6 | 1706 | int |
104c1213 | 1707 | gdbarch_double_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1708 | { |
8de9bdc4 | 1709 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1710 | /* Skip verify of double_bit, invalid_p == 0 */ |
0f71a2f6 | 1711 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1712 | fprintf_unfiltered (gdb_stdlog, "gdbarch_double_bit called\n"); |
1713 | return gdbarch->double_bit; | |
1714 | } | |
1715 | ||
1716 | void | |
104c1213 JM |
1717 | set_gdbarch_double_bit (struct gdbarch *gdbarch, |
1718 | int double_bit) | |
0f71a2f6 JM |
1719 | { |
1720 | gdbarch->double_bit = double_bit; | |
1721 | } | |
1722 | ||
8da61cc4 | 1723 | const struct floatformat ** |
456fcf94 AC |
1724 | gdbarch_double_format (struct gdbarch *gdbarch) |
1725 | { | |
1726 | gdb_assert (gdbarch != NULL); | |
1727 | if (gdbarch_debug >= 2) | |
1728 | fprintf_unfiltered (gdb_stdlog, "gdbarch_double_format called\n"); | |
1729 | return gdbarch->double_format; | |
1730 | } | |
1731 | ||
1732 | void | |
1733 | set_gdbarch_double_format (struct gdbarch *gdbarch, | |
8da61cc4 | 1734 | const struct floatformat ** double_format) |
456fcf94 AC |
1735 | { |
1736 | gdbarch->double_format = double_format; | |
1737 | } | |
1738 | ||
0f71a2f6 | 1739 | int |
104c1213 | 1740 | gdbarch_long_double_bit (struct gdbarch *gdbarch) |
0f71a2f6 | 1741 | { |
8de9bdc4 | 1742 | gdb_assert (gdbarch != NULL); |
66b43ecb | 1743 | /* Skip verify of long_double_bit, invalid_p == 0 */ |
0f71a2f6 | 1744 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
1745 | fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_bit called\n"); |
1746 | return gdbarch->long_double_bit; | |
1747 | } | |
1748 | ||
1749 | void | |
104c1213 JM |
1750 | set_gdbarch_long_double_bit (struct gdbarch *gdbarch, |
1751 | int long_double_bit) | |
0f71a2f6 JM |
1752 | { |
1753 | gdbarch->long_double_bit = long_double_bit; | |
1754 | } | |
1755 | ||
8da61cc4 | 1756 | const struct floatformat ** |
456fcf94 AC |
1757 | gdbarch_long_double_format (struct gdbarch *gdbarch) |
1758 | { | |
1759 | gdb_assert (gdbarch != NULL); | |
1760 | if (gdbarch_debug >= 2) | |
1761 | fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_format called\n"); | |
1762 | return gdbarch->long_double_format; | |
1763 | } | |
1764 | ||
1765 | void | |
1766 | set_gdbarch_long_double_format (struct gdbarch *gdbarch, | |
8da61cc4 | 1767 | const struct floatformat ** long_double_format) |
456fcf94 AC |
1768 | { |
1769 | gdbarch->long_double_format = long_double_format; | |
1770 | } | |
1771 | ||
53375380 PA |
1772 | int |
1773 | gdbarch_wchar_bit (struct gdbarch *gdbarch) | |
1774 | { | |
1775 | gdb_assert (gdbarch != NULL); | |
1776 | /* Skip verify of wchar_bit, invalid_p == 0 */ | |
1777 | if (gdbarch_debug >= 2) | |
1778 | fprintf_unfiltered (gdb_stdlog, "gdbarch_wchar_bit called\n"); | |
1779 | return gdbarch->wchar_bit; | |
1780 | } | |
1781 | ||
1782 | void | |
1783 | set_gdbarch_wchar_bit (struct gdbarch *gdbarch, | |
1784 | int wchar_bit) | |
1785 | { | |
1786 | gdbarch->wchar_bit = wchar_bit; | |
1787 | } | |
1788 | ||
1789 | int | |
1790 | gdbarch_wchar_signed (struct gdbarch *gdbarch) | |
1791 | { | |
1792 | gdb_assert (gdbarch != NULL); | |
1793 | /* Check variable changed from pre-default. */ | |
1794 | gdb_assert (gdbarch->wchar_signed != -1); | |
1795 | if (gdbarch_debug >= 2) | |
1796 | fprintf_unfiltered (gdb_stdlog, "gdbarch_wchar_signed called\n"); | |
1797 | return gdbarch->wchar_signed; | |
1798 | } | |
1799 | ||
1800 | void | |
1801 | set_gdbarch_wchar_signed (struct gdbarch *gdbarch, | |
1802 | int wchar_signed) | |
1803 | { | |
1804 | gdbarch->wchar_signed = wchar_signed; | |
1805 | } | |
1806 | ||
9b790ce7 UW |
1807 | const struct floatformat ** |
1808 | gdbarch_floatformat_for_type (struct gdbarch *gdbarch, const char *name, int length) | |
1809 | { | |
1810 | gdb_assert (gdbarch != NULL); | |
1811 | gdb_assert (gdbarch->floatformat_for_type != NULL); | |
1812 | if (gdbarch_debug >= 2) | |
1813 | fprintf_unfiltered (gdb_stdlog, "gdbarch_floatformat_for_type called\n"); | |
1814 | return gdbarch->floatformat_for_type (gdbarch, name, length); | |
1815 | } | |
1816 | ||
1817 | void | |
1818 | set_gdbarch_floatformat_for_type (struct gdbarch *gdbarch, | |
1819 | gdbarch_floatformat_for_type_ftype floatformat_for_type) | |
1820 | { | |
1821 | gdbarch->floatformat_for_type = floatformat_for_type; | |
1822 | } | |
1823 | ||
66b43ecb AC |
1824 | int |
1825 | gdbarch_ptr_bit (struct gdbarch *gdbarch) | |
1826 | { | |
8de9bdc4 | 1827 | gdb_assert (gdbarch != NULL); |
66b43ecb AC |
1828 | /* Skip verify of ptr_bit, invalid_p == 0 */ |
1829 | if (gdbarch_debug >= 2) | |
1830 | fprintf_unfiltered (gdb_stdlog, "gdbarch_ptr_bit called\n"); | |
1831 | return gdbarch->ptr_bit; | |
1832 | } | |
1833 | ||
1834 | void | |
1835 | set_gdbarch_ptr_bit (struct gdbarch *gdbarch, | |
1836 | int ptr_bit) | |
1837 | { | |
1838 | gdbarch->ptr_bit = ptr_bit; | |
1839 | } | |
1840 | ||
52204a0b DT |
1841 | int |
1842 | gdbarch_addr_bit (struct gdbarch *gdbarch) | |
1843 | { | |
8de9bdc4 | 1844 | gdb_assert (gdbarch != NULL); |
956ac328 AC |
1845 | /* Check variable changed from pre-default. */ |
1846 | gdb_assert (gdbarch->addr_bit != 0); | |
52204a0b DT |
1847 | if (gdbarch_debug >= 2) |
1848 | fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bit called\n"); | |
1849 | return gdbarch->addr_bit; | |
1850 | } | |
1851 | ||
1852 | void | |
1853 | set_gdbarch_addr_bit (struct gdbarch *gdbarch, | |
1854 | int addr_bit) | |
1855 | { | |
1856 | gdbarch->addr_bit = addr_bit; | |
1857 | } | |
1858 | ||
8da614df CV |
1859 | int |
1860 | gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch) | |
1861 | { | |
1862 | gdb_assert (gdbarch != NULL); | |
1863 | /* Check variable changed from pre-default. */ | |
1864 | gdb_assert (gdbarch->dwarf2_addr_size != 0); | |
1865 | if (gdbarch_debug >= 2) | |
1866 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_addr_size called\n"); | |
1867 | return gdbarch->dwarf2_addr_size; | |
1868 | } | |
1869 | ||
1870 | void | |
1871 | set_gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch, | |
1872 | int dwarf2_addr_size) | |
1873 | { | |
1874 | gdbarch->dwarf2_addr_size = dwarf2_addr_size; | |
1875 | } | |
1876 | ||
4e409299 JB |
1877 | int |
1878 | gdbarch_char_signed (struct gdbarch *gdbarch) | |
1879 | { | |
8de9bdc4 | 1880 | gdb_assert (gdbarch != NULL); |
956ac328 AC |
1881 | /* Check variable changed from pre-default. */ |
1882 | gdb_assert (gdbarch->char_signed != -1); | |
4e409299 JB |
1883 | if (gdbarch_debug >= 2) |
1884 | fprintf_unfiltered (gdb_stdlog, "gdbarch_char_signed called\n"); | |
1885 | return gdbarch->char_signed; | |
1886 | } | |
1887 | ||
1888 | void | |
1889 | set_gdbarch_char_signed (struct gdbarch *gdbarch, | |
1890 | int char_signed) | |
1891 | { | |
1892 | gdbarch->char_signed = char_signed; | |
1893 | } | |
1894 | ||
cde9ea48 AC |
1895 | int |
1896 | gdbarch_read_pc_p (struct gdbarch *gdbarch) | |
1897 | { | |
1898 | gdb_assert (gdbarch != NULL); | |
956ac328 | 1899 | return gdbarch->read_pc != NULL; |
cde9ea48 AC |
1900 | } |
1901 | ||
0f71a2f6 | 1902 | CORE_ADDR |
61a1198a | 1903 | gdbarch_read_pc (struct gdbarch *gdbarch, struct regcache *regcache) |
0f71a2f6 | 1904 | { |
8de9bdc4 | 1905 | gdb_assert (gdbarch != NULL); |
956ac328 | 1906 | gdb_assert (gdbarch->read_pc != NULL); |
0f71a2f6 | 1907 | if (gdbarch_debug >= 2) |
0f71a2f6 | 1908 | fprintf_unfiltered (gdb_stdlog, "gdbarch_read_pc called\n"); |
61a1198a | 1909 | return gdbarch->read_pc (regcache); |
0f71a2f6 JM |
1910 | } |
1911 | ||
1912 | void | |
104c1213 JM |
1913 | set_gdbarch_read_pc (struct gdbarch *gdbarch, |
1914 | gdbarch_read_pc_ftype read_pc) | |
0f71a2f6 JM |
1915 | { |
1916 | gdbarch->read_pc = read_pc; | |
1917 | } | |
1918 | ||
61a1198a UW |
1919 | int |
1920 | gdbarch_write_pc_p (struct gdbarch *gdbarch) | |
1921 | { | |
1922 | gdb_assert (gdbarch != NULL); | |
1923 | return gdbarch->write_pc != NULL; | |
1924 | } | |
1925 | ||
0f71a2f6 | 1926 | void |
61a1198a | 1927 | gdbarch_write_pc (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR val) |
0f71a2f6 | 1928 | { |
8de9bdc4 | 1929 | gdb_assert (gdbarch != NULL); |
956ac328 | 1930 | gdb_assert (gdbarch->write_pc != NULL); |
0f71a2f6 | 1931 | if (gdbarch_debug >= 2) |
0f71a2f6 | 1932 | fprintf_unfiltered (gdb_stdlog, "gdbarch_write_pc called\n"); |
61a1198a | 1933 | gdbarch->write_pc (regcache, val); |
0f71a2f6 JM |
1934 | } |
1935 | ||
1936 | void | |
104c1213 JM |
1937 | set_gdbarch_write_pc (struct gdbarch *gdbarch, |
1938 | gdbarch_write_pc_ftype write_pc) | |
0f71a2f6 JM |
1939 | { |
1940 | gdbarch->write_pc = write_pc; | |
1941 | } | |
1942 | ||
39d4ef09 AC |
1943 | void |
1944 | gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset) | |
1945 | { | |
8de9bdc4 | 1946 | gdb_assert (gdbarch != NULL); |
956ac328 | 1947 | gdb_assert (gdbarch->virtual_frame_pointer != NULL); |
39d4ef09 AC |
1948 | if (gdbarch_debug >= 2) |
1949 | fprintf_unfiltered (gdb_stdlog, "gdbarch_virtual_frame_pointer called\n"); | |
a54fba4c | 1950 | gdbarch->virtual_frame_pointer (gdbarch, pc, frame_regnum, frame_offset); |
39d4ef09 AC |
1951 | } |
1952 | ||
1953 | void | |
1954 | set_gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch, | |
1955 | gdbarch_virtual_frame_pointer_ftype virtual_frame_pointer) | |
1956 | { | |
1957 | gdbarch->virtual_frame_pointer = virtual_frame_pointer; | |
1958 | } | |
1959 | ||
61a0eb5b | 1960 | int |
d8124050 | 1961 | gdbarch_pseudo_register_read_p (struct gdbarch *gdbarch) |
61a0eb5b | 1962 | { |
8de9bdc4 | 1963 | gdb_assert (gdbarch != NULL); |
956ac328 | 1964 | return gdbarch->pseudo_register_read != NULL; |
61a0eb5b AC |
1965 | } |
1966 | ||
05d1431c | 1967 | enum register_status |
b60c417a | 1968 | gdbarch_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, gdb_byte *buf) |
61a0eb5b | 1969 | { |
8de9bdc4 | 1970 | gdb_assert (gdbarch != NULL); |
956ac328 | 1971 | gdb_assert (gdbarch->pseudo_register_read != NULL); |
61a0eb5b | 1972 | if (gdbarch_debug >= 2) |
d8124050 | 1973 | fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read called\n"); |
05d1431c | 1974 | return gdbarch->pseudo_register_read (gdbarch, regcache, cookednum, buf); |
61a0eb5b AC |
1975 | } |
1976 | ||
1977 | void | |
d8124050 AC |
1978 | set_gdbarch_pseudo_register_read (struct gdbarch *gdbarch, |
1979 | gdbarch_pseudo_register_read_ftype pseudo_register_read) | |
61a0eb5b | 1980 | { |
d8124050 | 1981 | gdbarch->pseudo_register_read = pseudo_register_read; |
61a0eb5b AC |
1982 | } |
1983 | ||
3543a589 TT |
1984 | int |
1985 | gdbarch_pseudo_register_read_value_p (struct gdbarch *gdbarch) | |
1986 | { | |
1987 | gdb_assert (gdbarch != NULL); | |
1988 | return gdbarch->pseudo_register_read_value != NULL; | |
1989 | } | |
1990 | ||
1991 | struct value * | |
1992 | gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum) | |
1993 | { | |
1994 | gdb_assert (gdbarch != NULL); | |
1995 | gdb_assert (gdbarch->pseudo_register_read_value != NULL); | |
1996 | if (gdbarch_debug >= 2) | |
1997 | fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read_value called\n"); | |
1998 | return gdbarch->pseudo_register_read_value (gdbarch, regcache, cookednum); | |
1999 | } | |
2000 | ||
2001 | void | |
2002 | set_gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch, | |
2003 | gdbarch_pseudo_register_read_value_ftype pseudo_register_read_value) | |
2004 | { | |
2005 | gdbarch->pseudo_register_read_value = pseudo_register_read_value; | |
2006 | } | |
2007 | ||
61a0eb5b | 2008 | int |
d8124050 | 2009 | gdbarch_pseudo_register_write_p (struct gdbarch *gdbarch) |
61a0eb5b | 2010 | { |
8de9bdc4 | 2011 | gdb_assert (gdbarch != NULL); |
956ac328 | 2012 | return gdbarch->pseudo_register_write != NULL; |
61a0eb5b AC |
2013 | } |
2014 | ||
2015 | void | |
b60c417a | 2016 | gdbarch_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, const gdb_byte *buf) |
61a0eb5b | 2017 | { |
8de9bdc4 | 2018 | gdb_assert (gdbarch != NULL); |
956ac328 | 2019 | gdb_assert (gdbarch->pseudo_register_write != NULL); |
61a0eb5b | 2020 | if (gdbarch_debug >= 2) |
d8124050 AC |
2021 | fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_write called\n"); |
2022 | gdbarch->pseudo_register_write (gdbarch, regcache, cookednum, buf); | |
61a0eb5b AC |
2023 | } |
2024 | ||
2025 | void | |
d8124050 AC |
2026 | set_gdbarch_pseudo_register_write (struct gdbarch *gdbarch, |
2027 | gdbarch_pseudo_register_write_ftype pseudo_register_write) | |
61a0eb5b | 2028 | { |
d8124050 | 2029 | gdbarch->pseudo_register_write = pseudo_register_write; |
61a0eb5b AC |
2030 | } |
2031 | ||
0f71a2f6 | 2032 | int |
104c1213 | 2033 | gdbarch_num_regs (struct gdbarch *gdbarch) |
0f71a2f6 | 2034 | { |
8de9bdc4 | 2035 | gdb_assert (gdbarch != NULL); |
956ac328 AC |
2036 | /* Check variable changed from pre-default. */ |
2037 | gdb_assert (gdbarch->num_regs != -1); | |
0f71a2f6 | 2038 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
2039 | fprintf_unfiltered (gdb_stdlog, "gdbarch_num_regs called\n"); |
2040 | return gdbarch->num_regs; | |
2041 | } | |
2042 | ||
2043 | void | |
104c1213 JM |
2044 | set_gdbarch_num_regs (struct gdbarch *gdbarch, |
2045 | int num_regs) | |
0f71a2f6 JM |
2046 | { |
2047 | gdbarch->num_regs = num_regs; | |
2048 | } | |
2049 | ||
0aba1244 EZ |
2050 | int |
2051 | gdbarch_num_pseudo_regs (struct gdbarch *gdbarch) | |
2052 | { | |
8de9bdc4 | 2053 | gdb_assert (gdbarch != NULL); |
0aba1244 EZ |
2054 | /* Skip verify of num_pseudo_regs, invalid_p == 0 */ |
2055 | if (gdbarch_debug >= 2) | |
2056 | fprintf_unfiltered (gdb_stdlog, "gdbarch_num_pseudo_regs called\n"); | |
2057 | return gdbarch->num_pseudo_regs; | |
2058 | } | |
2059 | ||
2060 | void | |
2061 | set_gdbarch_num_pseudo_regs (struct gdbarch *gdbarch, | |
2062 | int num_pseudo_regs) | |
2063 | { | |
2064 | gdbarch->num_pseudo_regs = num_pseudo_regs; | |
2065 | } | |
2066 | ||
175ff332 HZ |
2067 | int |
2068 | gdbarch_ax_pseudo_register_collect_p (struct gdbarch *gdbarch) | |
2069 | { | |
2070 | gdb_assert (gdbarch != NULL); | |
2071 | return gdbarch->ax_pseudo_register_collect != NULL; | |
2072 | } | |
2073 | ||
2074 | int | |
2075 | gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch, struct agent_expr *ax, int reg) | |
2076 | { | |
2077 | gdb_assert (gdbarch != NULL); | |
2078 | gdb_assert (gdbarch->ax_pseudo_register_collect != NULL); | |
2079 | if (gdbarch_debug >= 2) | |
2080 | fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_collect called\n"); | |
2081 | return gdbarch->ax_pseudo_register_collect (gdbarch, ax, reg); | |
2082 | } | |
2083 | ||
2084 | void | |
2085 | set_gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch, | |
2086 | gdbarch_ax_pseudo_register_collect_ftype ax_pseudo_register_collect) | |
2087 | { | |
2088 | gdbarch->ax_pseudo_register_collect = ax_pseudo_register_collect; | |
2089 | } | |
2090 | ||
2091 | int | |
2092 | gdbarch_ax_pseudo_register_push_stack_p (struct gdbarch *gdbarch) | |
2093 | { | |
2094 | gdb_assert (gdbarch != NULL); | |
2095 | return gdbarch->ax_pseudo_register_push_stack != NULL; | |
2096 | } | |
2097 | ||
2098 | int | |
2099 | gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch, struct agent_expr *ax, int reg) | |
2100 | { | |
2101 | gdb_assert (gdbarch != NULL); | |
2102 | gdb_assert (gdbarch->ax_pseudo_register_push_stack != NULL); | |
2103 | if (gdbarch_debug >= 2) | |
2104 | fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_push_stack called\n"); | |
2105 | return gdbarch->ax_pseudo_register_push_stack (gdbarch, ax, reg); | |
2106 | } | |
2107 | ||
2108 | void | |
2109 | set_gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch, | |
2110 | gdbarch_ax_pseudo_register_push_stack_ftype ax_pseudo_register_push_stack) | |
2111 | { | |
2112 | gdbarch->ax_pseudo_register_push_stack = ax_pseudo_register_push_stack; | |
2113 | } | |
2114 | ||
012b3a21 WT |
2115 | int |
2116 | gdbarch_handle_segmentation_fault_p (struct gdbarch *gdbarch) | |
2117 | { | |
2118 | gdb_assert (gdbarch != NULL); | |
2119 | return gdbarch->handle_segmentation_fault != NULL; | |
2120 | } | |
2121 | ||
2122 | void | |
2123 | gdbarch_handle_segmentation_fault (struct gdbarch *gdbarch, struct ui_out *uiout) | |
2124 | { | |
2125 | gdb_assert (gdbarch != NULL); | |
2126 | gdb_assert (gdbarch->handle_segmentation_fault != NULL); | |
2127 | if (gdbarch_debug >= 2) | |
2128 | fprintf_unfiltered (gdb_stdlog, "gdbarch_handle_segmentation_fault called\n"); | |
2129 | gdbarch->handle_segmentation_fault (gdbarch, uiout); | |
2130 | } | |
2131 | ||
2132 | void | |
2133 | set_gdbarch_handle_segmentation_fault (struct gdbarch *gdbarch, | |
2134 | gdbarch_handle_segmentation_fault_ftype handle_segmentation_fault) | |
2135 | { | |
2136 | gdbarch->handle_segmentation_fault = handle_segmentation_fault; | |
2137 | } | |
2138 | ||
0f71a2f6 | 2139 | int |
104c1213 | 2140 | gdbarch_sp_regnum (struct gdbarch *gdbarch) |
0f71a2f6 | 2141 | { |
8de9bdc4 | 2142 | gdb_assert (gdbarch != NULL); |
1200cd6e | 2143 | /* Skip verify of sp_regnum, invalid_p == 0 */ |
0f71a2f6 | 2144 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
2145 | fprintf_unfiltered (gdb_stdlog, "gdbarch_sp_regnum called\n"); |
2146 | return gdbarch->sp_regnum; | |
2147 | } | |
2148 | ||
2149 | void | |
104c1213 JM |
2150 | set_gdbarch_sp_regnum (struct gdbarch *gdbarch, |
2151 | int sp_regnum) | |
0f71a2f6 JM |
2152 | { |
2153 | gdbarch->sp_regnum = sp_regnum; | |
2154 | } | |
2155 | ||
0f71a2f6 | 2156 | int |
104c1213 | 2157 | gdbarch_pc_regnum (struct gdbarch *gdbarch) |
0f71a2f6 | 2158 | { |
8de9bdc4 | 2159 | gdb_assert (gdbarch != NULL); |
1200cd6e | 2160 | /* Skip verify of pc_regnum, invalid_p == 0 */ |
0f71a2f6 | 2161 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
2162 | fprintf_unfiltered (gdb_stdlog, "gdbarch_pc_regnum called\n"); |
2163 | return gdbarch->pc_regnum; | |
2164 | } | |
2165 | ||
2166 | void | |
104c1213 JM |
2167 | set_gdbarch_pc_regnum (struct gdbarch *gdbarch, |
2168 | int pc_regnum) | |
0f71a2f6 JM |
2169 | { |
2170 | gdbarch->pc_regnum = pc_regnum; | |
2171 | } | |
2172 | ||
c2169756 AC |
2173 | int |
2174 | gdbarch_ps_regnum (struct gdbarch *gdbarch) | |
2175 | { | |
8de9bdc4 | 2176 | gdb_assert (gdbarch != NULL); |
c2169756 AC |
2177 | /* Skip verify of ps_regnum, invalid_p == 0 */ |
2178 | if (gdbarch_debug >= 2) | |
2179 | fprintf_unfiltered (gdb_stdlog, "gdbarch_ps_regnum called\n"); | |
2180 | return gdbarch->ps_regnum; | |
2181 | } | |
2182 | ||
2183 | void | |
2184 | set_gdbarch_ps_regnum (struct gdbarch *gdbarch, | |
2185 | int ps_regnum) | |
2186 | { | |
2187 | gdbarch->ps_regnum = ps_regnum; | |
2188 | } | |
2189 | ||
60054393 MS |
2190 | int |
2191 | gdbarch_fp0_regnum (struct gdbarch *gdbarch) | |
2192 | { | |
8de9bdc4 | 2193 | gdb_assert (gdbarch != NULL); |
60054393 MS |
2194 | /* Skip verify of fp0_regnum, invalid_p == 0 */ |
2195 | if (gdbarch_debug >= 2) | |
2196 | fprintf_unfiltered (gdb_stdlog, "gdbarch_fp0_regnum called\n"); | |
2197 | return gdbarch->fp0_regnum; | |
2198 | } | |
2199 | ||
2200 | void | |
2201 | set_gdbarch_fp0_regnum (struct gdbarch *gdbarch, | |
2202 | int fp0_regnum) | |
2203 | { | |
2204 | gdbarch->fp0_regnum = fp0_regnum; | |
2205 | } | |
2206 | ||
88c72b7d AC |
2207 | int |
2208 | gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch, int stab_regnr) | |
2209 | { | |
8de9bdc4 | 2210 | gdb_assert (gdbarch != NULL); |
956ac328 | 2211 | gdb_assert (gdbarch->stab_reg_to_regnum != NULL); |
88c72b7d AC |
2212 | if (gdbarch_debug >= 2) |
2213 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stab_reg_to_regnum called\n"); | |
d3f73121 | 2214 | return gdbarch->stab_reg_to_regnum (gdbarch, stab_regnr); |
88c72b7d AC |
2215 | } |
2216 | ||
2217 | void | |
2218 | set_gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch, | |
2219 | gdbarch_stab_reg_to_regnum_ftype stab_reg_to_regnum) | |
2220 | { | |
2221 | gdbarch->stab_reg_to_regnum = stab_reg_to_regnum; | |
2222 | } | |
2223 | ||
2224 | int | |
2225 | gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch, int ecoff_regnr) | |
2226 | { | |
8de9bdc4 | 2227 | gdb_assert (gdbarch != NULL); |
956ac328 | 2228 | gdb_assert (gdbarch->ecoff_reg_to_regnum != NULL); |
88c72b7d AC |
2229 | if (gdbarch_debug >= 2) |
2230 | fprintf_unfiltered (gdb_stdlog, "gdbarch_ecoff_reg_to_regnum called\n"); | |
d3f73121 | 2231 | return gdbarch->ecoff_reg_to_regnum (gdbarch, ecoff_regnr); |
88c72b7d AC |
2232 | } |
2233 | ||
2234 | void | |
2235 | set_gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch, | |
2236 | gdbarch_ecoff_reg_to_regnum_ftype ecoff_reg_to_regnum) | |
2237 | { | |
2238 | gdbarch->ecoff_reg_to_regnum = ecoff_reg_to_regnum; | |
2239 | } | |
2240 | ||
88c72b7d AC |
2241 | int |
2242 | gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, int sdb_regnr) | |
2243 | { | |
8de9bdc4 | 2244 | gdb_assert (gdbarch != NULL); |
956ac328 | 2245 | gdb_assert (gdbarch->sdb_reg_to_regnum != NULL); |
88c72b7d AC |
2246 | if (gdbarch_debug >= 2) |
2247 | fprintf_unfiltered (gdb_stdlog, "gdbarch_sdb_reg_to_regnum called\n"); | |
d3f73121 | 2248 | return gdbarch->sdb_reg_to_regnum (gdbarch, sdb_regnr); |
88c72b7d AC |
2249 | } |
2250 | ||
2251 | void | |
2252 | set_gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, | |
2253 | gdbarch_sdb_reg_to_regnum_ftype sdb_reg_to_regnum) | |
2254 | { | |
2255 | gdbarch->sdb_reg_to_regnum = sdb_reg_to_regnum; | |
2256 | } | |
2257 | ||
2258 | int | |
2259 | gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int dwarf2_regnr) | |
2260 | { | |
8de9bdc4 | 2261 | gdb_assert (gdbarch != NULL); |
956ac328 | 2262 | gdb_assert (gdbarch->dwarf2_reg_to_regnum != NULL); |
88c72b7d AC |
2263 | if (gdbarch_debug >= 2) |
2264 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_reg_to_regnum called\n"); | |
d3f73121 | 2265 | return gdbarch->dwarf2_reg_to_regnum (gdbarch, dwarf2_regnr); |
88c72b7d AC |
2266 | } |
2267 | ||
2268 | void | |
2269 | set_gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, | |
2270 | gdbarch_dwarf2_reg_to_regnum_ftype dwarf2_reg_to_regnum) | |
2271 | { | |
2272 | gdbarch->dwarf2_reg_to_regnum = dwarf2_reg_to_regnum; | |
2273 | } | |
2274 | ||
fa88f677 | 2275 | const char * |
0f71a2f6 JM |
2276 | gdbarch_register_name (struct gdbarch *gdbarch, int regnr) |
2277 | { | |
8de9bdc4 | 2278 | gdb_assert (gdbarch != NULL); |
956ac328 | 2279 | gdb_assert (gdbarch->register_name != NULL); |
0f71a2f6 | 2280 | if (gdbarch_debug >= 2) |
0f71a2f6 | 2281 | fprintf_unfiltered (gdb_stdlog, "gdbarch_register_name called\n"); |
d93859e2 | 2282 | return gdbarch->register_name (gdbarch, regnr); |
0f71a2f6 JM |
2283 | } |
2284 | ||
2285 | void | |
104c1213 JM |
2286 | set_gdbarch_register_name (struct gdbarch *gdbarch, |
2287 | gdbarch_register_name_ftype register_name) | |
0f71a2f6 JM |
2288 | { |
2289 | gdbarch->register_name = register_name; | |
2290 | } | |
2291 | ||
0f71a2f6 | 2292 | int |
9c04cab7 | 2293 | gdbarch_register_type_p (struct gdbarch *gdbarch) |
0f71a2f6 | 2294 | { |
8de9bdc4 | 2295 | gdb_assert (gdbarch != NULL); |
956ac328 | 2296 | return gdbarch->register_type != NULL; |
9c04cab7 AC |
2297 | } |
2298 | ||
2299 | struct type * | |
2300 | gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr) | |
2301 | { | |
2302 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2303 | gdb_assert (gdbarch->register_type != NULL); |
0f71a2f6 | 2304 | if (gdbarch_debug >= 2) |
9c04cab7 AC |
2305 | fprintf_unfiltered (gdb_stdlog, "gdbarch_register_type called\n"); |
2306 | return gdbarch->register_type (gdbarch, reg_nr); | |
0f71a2f6 JM |
2307 | } |
2308 | ||
2309 | void | |
9c04cab7 AC |
2310 | set_gdbarch_register_type (struct gdbarch *gdbarch, |
2311 | gdbarch_register_type_ftype register_type) | |
0f71a2f6 | 2312 | { |
9c04cab7 | 2313 | gdbarch->register_type = register_type; |
0f71a2f6 JM |
2314 | } |
2315 | ||
f3be58bc | 2316 | int |
669fac23 | 2317 | gdbarch_dummy_id_p (struct gdbarch *gdbarch) |
f3be58bc AC |
2318 | { |
2319 | gdb_assert (gdbarch != NULL); | |
669fac23 | 2320 | return gdbarch->dummy_id != NULL; |
f3be58bc AC |
2321 | } |
2322 | ||
2323 | struct frame_id | |
669fac23 | 2324 | gdbarch_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame) |
f3be58bc AC |
2325 | { |
2326 | gdb_assert (gdbarch != NULL); | |
669fac23 | 2327 | gdb_assert (gdbarch->dummy_id != NULL); |
f3be58bc | 2328 | if (gdbarch_debug >= 2) |
669fac23 DJ |
2329 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dummy_id called\n"); |
2330 | return gdbarch->dummy_id (gdbarch, this_frame); | |
f3be58bc AC |
2331 | } |
2332 | ||
2333 | void | |
669fac23 DJ |
2334 | set_gdbarch_dummy_id (struct gdbarch *gdbarch, |
2335 | gdbarch_dummy_id_ftype dummy_id) | |
f3be58bc | 2336 | { |
669fac23 | 2337 | gdbarch->dummy_id = dummy_id; |
f3be58bc AC |
2338 | } |
2339 | ||
f3be58bc AC |
2340 | int |
2341 | gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch) | |
2342 | { | |
2343 | gdb_assert (gdbarch != NULL); | |
2344 | /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */ | |
2345 | if (gdbarch_debug >= 2) | |
2346 | fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_fp_regnum called\n"); | |
2347 | return gdbarch->deprecated_fp_regnum; | |
2348 | } | |
2349 | ||
2350 | void | |
2351 | set_gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch, | |
2352 | int deprecated_fp_regnum) | |
2353 | { | |
2354 | gdbarch->deprecated_fp_regnum = deprecated_fp_regnum; | |
2355 | } | |
2356 | ||
0ab7a791 | 2357 | int |
b8de8283 | 2358 | gdbarch_push_dummy_call_p (struct gdbarch *gdbarch) |
0ab7a791 AC |
2359 | { |
2360 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2361 | return gdbarch->push_dummy_call != NULL; |
0ab7a791 AC |
2362 | } |
2363 | ||
b8de8283 | 2364 | CORE_ADDR |
7d9b040b | 2365 | gdbarch_push_dummy_call (struct gdbarch *gdbarch, struct value *function, struct regcache *regcache, CORE_ADDR bp_addr, int nargs, struct value **args, CORE_ADDR sp, int struct_return, CORE_ADDR struct_addr) |
666e11c5 | 2366 | { |
8de9bdc4 | 2367 | gdb_assert (gdbarch != NULL); |
956ac328 | 2368 | gdb_assert (gdbarch->push_dummy_call != NULL); |
666e11c5 | 2369 | if (gdbarch_debug >= 2) |
b8de8283 | 2370 | fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_call called\n"); |
7d9b040b | 2371 | return gdbarch->push_dummy_call (gdbarch, function, regcache, bp_addr, nargs, args, sp, struct_return, struct_addr); |
666e11c5 EZ |
2372 | } |
2373 | ||
2374 | void | |
b8de8283 AC |
2375 | set_gdbarch_push_dummy_call (struct gdbarch *gdbarch, |
2376 | gdbarch_push_dummy_call_ftype push_dummy_call) | |
666e11c5 | 2377 | { |
b8de8283 | 2378 | gdbarch->push_dummy_call = push_dummy_call; |
666e11c5 EZ |
2379 | } |
2380 | ||
2649061d | 2381 | int |
b8de8283 | 2382 | gdbarch_call_dummy_location (struct gdbarch *gdbarch) |
2649061d | 2383 | { |
8de9bdc4 | 2384 | gdb_assert (gdbarch != NULL); |
b8de8283 AC |
2385 | /* Skip verify of call_dummy_location, invalid_p == 0 */ |
2386 | if (gdbarch_debug >= 2) | |
2387 | fprintf_unfiltered (gdb_stdlog, "gdbarch_call_dummy_location called\n"); | |
2388 | return gdbarch->call_dummy_location; | |
2649061d AC |
2389 | } |
2390 | ||
b8de8283 AC |
2391 | void |
2392 | set_gdbarch_call_dummy_location (struct gdbarch *gdbarch, | |
2393 | int call_dummy_location) | |
2394 | { | |
2395 | gdbarch->call_dummy_location = call_dummy_location; | |
2396 | } | |
2397 | ||
0f71a2f6 | 2398 | int |
b8de8283 | 2399 | gdbarch_push_dummy_code_p (struct gdbarch *gdbarch) |
0f71a2f6 | 2400 | { |
8de9bdc4 | 2401 | gdb_assert (gdbarch != NULL); |
956ac328 | 2402 | return gdbarch->push_dummy_code != NULL; |
b8de8283 AC |
2403 | } |
2404 | ||
2405 | CORE_ADDR | |
82585c72 | 2406 | gdbarch_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp, CORE_ADDR funaddr, struct value **args, int nargs, struct type *value_type, CORE_ADDR *real_pc, CORE_ADDR *bp_addr, struct regcache *regcache) |
b8de8283 AC |
2407 | { |
2408 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2409 | gdb_assert (gdbarch->push_dummy_code != NULL); |
0f71a2f6 | 2410 | if (gdbarch_debug >= 2) |
b8de8283 | 2411 | fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_code called\n"); |
82585c72 | 2412 | return gdbarch->push_dummy_code (gdbarch, sp, funaddr, args, nargs, value_type, real_pc, bp_addr, regcache); |
0f71a2f6 JM |
2413 | } |
2414 | ||
2415 | void | |
b8de8283 AC |
2416 | set_gdbarch_push_dummy_code (struct gdbarch *gdbarch, |
2417 | gdbarch_push_dummy_code_ftype push_dummy_code) | |
0f71a2f6 | 2418 | { |
b8de8283 | 2419 | gdbarch->push_dummy_code = push_dummy_code; |
0f71a2f6 JM |
2420 | } |
2421 | ||
7eb89530 YQ |
2422 | int |
2423 | gdbarch_code_of_frame_writable (struct gdbarch *gdbarch, struct frame_info *frame) | |
2424 | { | |
2425 | gdb_assert (gdbarch != NULL); | |
2426 | gdb_assert (gdbarch->code_of_frame_writable != NULL); | |
2427 | if (gdbarch_debug >= 2) | |
2428 | fprintf_unfiltered (gdb_stdlog, "gdbarch_code_of_frame_writable called\n"); | |
2429 | return gdbarch->code_of_frame_writable (gdbarch, frame); | |
2430 | } | |
2431 | ||
2432 | void | |
2433 | set_gdbarch_code_of_frame_writable (struct gdbarch *gdbarch, | |
2434 | gdbarch_code_of_frame_writable_ftype code_of_frame_writable) | |
2435 | { | |
2436 | gdbarch->code_of_frame_writable = code_of_frame_writable; | |
2437 | } | |
2438 | ||
b8de8283 AC |
2439 | void |
2440 | gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all) | |
2441 | { | |
2442 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2443 | gdb_assert (gdbarch->print_registers_info != NULL); |
b8de8283 AC |
2444 | if (gdbarch_debug >= 2) |
2445 | fprintf_unfiltered (gdb_stdlog, "gdbarch_print_registers_info called\n"); | |
2446 | gdbarch->print_registers_info (gdbarch, file, frame, regnum, all); | |
2447 | } | |
2448 | ||
2449 | void | |
2450 | set_gdbarch_print_registers_info (struct gdbarch *gdbarch, | |
2451 | gdbarch_print_registers_info_ftype print_registers_info) | |
2452 | { | |
2453 | gdbarch->print_registers_info = print_registers_info; | |
0f71a2f6 JM |
2454 | } |
2455 | ||
b8de8283 AC |
2456 | void |
2457 | gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args) | |
0f71a2f6 | 2458 | { |
8de9bdc4 | 2459 | gdb_assert (gdbarch != NULL); |
956ac328 | 2460 | gdb_assert (gdbarch->print_float_info != NULL); |
0f71a2f6 | 2461 | if (gdbarch_debug >= 2) |
b8de8283 AC |
2462 | fprintf_unfiltered (gdb_stdlog, "gdbarch_print_float_info called\n"); |
2463 | gdbarch->print_float_info (gdbarch, file, frame, args); | |
0f71a2f6 JM |
2464 | } |
2465 | ||
2466 | void | |
b8de8283 AC |
2467 | set_gdbarch_print_float_info (struct gdbarch *gdbarch, |
2468 | gdbarch_print_float_info_ftype print_float_info) | |
0f71a2f6 | 2469 | { |
b8de8283 AC |
2470 | gdbarch->print_float_info = print_float_info; |
2471 | } | |
2472 | ||
2473 | int | |
2474 | gdbarch_print_vector_info_p (struct gdbarch *gdbarch) | |
2475 | { | |
2476 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2477 | return gdbarch->print_vector_info != NULL; |
b8de8283 AC |
2478 | } |
2479 | ||
2480 | void | |
2481 | gdbarch_print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args) | |
2482 | { | |
2483 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2484 | gdb_assert (gdbarch->print_vector_info != NULL); |
b8de8283 AC |
2485 | if (gdbarch_debug >= 2) |
2486 | fprintf_unfiltered (gdb_stdlog, "gdbarch_print_vector_info called\n"); | |
2487 | gdbarch->print_vector_info (gdbarch, file, frame, args); | |
0f71a2f6 JM |
2488 | } |
2489 | ||
b8de8283 AC |
2490 | void |
2491 | set_gdbarch_print_vector_info (struct gdbarch *gdbarch, | |
2492 | gdbarch_print_vector_info_ftype print_vector_info) | |
ae45cd16 | 2493 | { |
b8de8283 | 2494 | gdbarch->print_vector_info = print_vector_info; |
ae45cd16 AC |
2495 | } |
2496 | ||
2497 | int | |
b8de8283 | 2498 | gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr) |
0f71a2f6 | 2499 | { |
8de9bdc4 | 2500 | gdb_assert (gdbarch != NULL); |
956ac328 | 2501 | gdb_assert (gdbarch->register_sim_regno != NULL); |
0f71a2f6 | 2502 | if (gdbarch_debug >= 2) |
b8de8283 | 2503 | fprintf_unfiltered (gdb_stdlog, "gdbarch_register_sim_regno called\n"); |
e7faf938 | 2504 | return gdbarch->register_sim_regno (gdbarch, reg_nr); |
0f71a2f6 JM |
2505 | } |
2506 | ||
2507 | void | |
b8de8283 AC |
2508 | set_gdbarch_register_sim_regno (struct gdbarch *gdbarch, |
2509 | gdbarch_register_sim_regno_ftype register_sim_regno) | |
0f71a2f6 | 2510 | { |
b8de8283 | 2511 | gdbarch->register_sim_regno = register_sim_regno; |
0f71a2f6 JM |
2512 | } |
2513 | ||
0f71a2f6 | 2514 | int |
b8de8283 | 2515 | gdbarch_cannot_fetch_register (struct gdbarch *gdbarch, int regnum) |
0f71a2f6 | 2516 | { |
8de9bdc4 | 2517 | gdb_assert (gdbarch != NULL); |
956ac328 | 2518 | gdb_assert (gdbarch->cannot_fetch_register != NULL); |
b8de8283 AC |
2519 | if (gdbarch_debug >= 2) |
2520 | fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_fetch_register called\n"); | |
64a3914f | 2521 | return gdbarch->cannot_fetch_register (gdbarch, regnum); |
b8de8283 AC |
2522 | } |
2523 | ||
2524 | void | |
2525 | set_gdbarch_cannot_fetch_register (struct gdbarch *gdbarch, | |
2526 | gdbarch_cannot_fetch_register_ftype cannot_fetch_register) | |
2527 | { | |
2528 | gdbarch->cannot_fetch_register = cannot_fetch_register; | |
0f71a2f6 JM |
2529 | } |
2530 | ||
2531 | int | |
b8de8283 | 2532 | gdbarch_cannot_store_register (struct gdbarch *gdbarch, int regnum) |
0f71a2f6 | 2533 | { |
8de9bdc4 | 2534 | gdb_assert (gdbarch != NULL); |
956ac328 | 2535 | gdb_assert (gdbarch->cannot_store_register != NULL); |
0f71a2f6 | 2536 | if (gdbarch_debug >= 2) |
b8de8283 | 2537 | fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_store_register called\n"); |
64a3914f | 2538 | return gdbarch->cannot_store_register (gdbarch, regnum); |
0f71a2f6 JM |
2539 | } |
2540 | ||
2541 | void | |
b8de8283 AC |
2542 | set_gdbarch_cannot_store_register (struct gdbarch *gdbarch, |
2543 | gdbarch_cannot_store_register_ftype cannot_store_register) | |
0f71a2f6 | 2544 | { |
b8de8283 | 2545 | gdbarch->cannot_store_register = cannot_store_register; |
0f71a2f6 JM |
2546 | } |
2547 | ||
e8ab51f7 | 2548 | int |
b8de8283 | 2549 | gdbarch_get_longjmp_target_p (struct gdbarch *gdbarch) |
e8ab51f7 AC |
2550 | { |
2551 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2552 | return gdbarch->get_longjmp_target != NULL; |
e8ab51f7 AC |
2553 | } |
2554 | ||
b8de8283 | 2555 | int |
60ade65d | 2556 | gdbarch_get_longjmp_target (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR *pc) |
0f71a2f6 | 2557 | { |
8de9bdc4 | 2558 | gdb_assert (gdbarch != NULL); |
956ac328 | 2559 | gdb_assert (gdbarch->get_longjmp_target != NULL); |
0f71a2f6 | 2560 | if (gdbarch_debug >= 2) |
b8de8283 | 2561 | fprintf_unfiltered (gdb_stdlog, "gdbarch_get_longjmp_target called\n"); |
60ade65d | 2562 | return gdbarch->get_longjmp_target (frame, pc); |
0f71a2f6 JM |
2563 | } |
2564 | ||
2565 | void | |
b8de8283 AC |
2566 | set_gdbarch_get_longjmp_target (struct gdbarch *gdbarch, |
2567 | gdbarch_get_longjmp_target_ftype get_longjmp_target) | |
0f71a2f6 | 2568 | { |
b8de8283 | 2569 | gdbarch->get_longjmp_target = get_longjmp_target; |
0f71a2f6 JM |
2570 | } |
2571 | ||
2572 | int | |
104c1213 | 2573 | gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch) |
0f71a2f6 | 2574 | { |
8de9bdc4 | 2575 | gdb_assert (gdbarch != NULL); |
0f71a2f6 | 2576 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
2577 | fprintf_unfiltered (gdb_stdlog, "gdbarch_believe_pcc_promotion called\n"); |
2578 | return gdbarch->believe_pcc_promotion; | |
2579 | } | |
2580 | ||
2581 | void | |
104c1213 JM |
2582 | set_gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch, |
2583 | int believe_pcc_promotion) | |
0f71a2f6 JM |
2584 | { |
2585 | gdbarch->believe_pcc_promotion = believe_pcc_promotion; | |
2586 | } | |
2587 | ||
13d01224 | 2588 | int |
ff2e87ac | 2589 | gdbarch_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type) |
13d01224 AC |
2590 | { |
2591 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2592 | gdb_assert (gdbarch->convert_register_p != NULL); |
13d01224 AC |
2593 | if (gdbarch_debug >= 2) |
2594 | fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_register_p called\n"); | |
0abe36f5 | 2595 | return gdbarch->convert_register_p (gdbarch, regnum, type); |
13d01224 AC |
2596 | } |
2597 | ||
2598 | void | |
2599 | set_gdbarch_convert_register_p (struct gdbarch *gdbarch, | |
2600 | gdbarch_convert_register_p_ftype convert_register_p) | |
2601 | { | |
2602 | gdbarch->convert_register_p = convert_register_p; | |
2603 | } | |
2604 | ||
8dccd430 PA |
2605 | int |
2606 | gdbarch_register_to_value (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, gdb_byte *buf, int *optimizedp, int *unavailablep) | |
13d01224 AC |
2607 | { |
2608 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2609 | gdb_assert (gdbarch->register_to_value != NULL); |
13d01224 AC |
2610 | if (gdbarch_debug >= 2) |
2611 | fprintf_unfiltered (gdb_stdlog, "gdbarch_register_to_value called\n"); | |
8dccd430 | 2612 | return gdbarch->register_to_value (frame, regnum, type, buf, optimizedp, unavailablep); |
13d01224 AC |
2613 | } |
2614 | ||
2615 | void | |
2616 | set_gdbarch_register_to_value (struct gdbarch *gdbarch, | |
2617 | gdbarch_register_to_value_ftype register_to_value) | |
2618 | { | |
2619 | gdbarch->register_to_value = register_to_value; | |
2620 | } | |
2621 | ||
2622 | void | |
b60c417a | 2623 | gdbarch_value_to_register (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, const gdb_byte *buf) |
13d01224 AC |
2624 | { |
2625 | gdb_assert (gdbarch != NULL); | |
956ac328 | 2626 | gdb_assert (gdbarch->value_to_register != NULL); |
13d01224 AC |
2627 | if (gdbarch_debug >= 2) |
2628 | fprintf_unfiltered (gdb_stdlog, "gdbarch_value_to_register called\n"); | |
ff2e87ac | 2629 | gdbarch->value_to_register (frame, regnum, type, buf); |
13d01224 AC |
2630 | } |
2631 | ||
2632 | void | |
2633 | set_gdbarch_value_to_register (struct gdbarch *gdbarch, | |
2634 | gdbarch_value_to_register_ftype value_to_register) | |
2635 | { | |
2636 | gdbarch->value_to_register = value_to_register; | |
2637 | } | |
2638 | ||
9acbedc0 | 2639 | struct value * |
2ed3c037 | 2640 | gdbarch_value_from_register (struct gdbarch *gdbarch, struct type *type, int regnum, struct frame_id frame_id) |
9acbedc0 UW |
2641 | { |
2642 | gdb_assert (gdbarch != NULL); | |
2643 | gdb_assert (gdbarch->value_from_register != NULL); | |
2644 | if (gdbarch_debug >= 2) | |
2645 | fprintf_unfiltered (gdb_stdlog, "gdbarch_value_from_register called\n"); | |
2ed3c037 | 2646 | return gdbarch->value_from_register (gdbarch, type, regnum, frame_id); |
9acbedc0 UW |
2647 | } |
2648 | ||
2649 | void | |
2650 | set_gdbarch_value_from_register (struct gdbarch *gdbarch, | |
2651 | gdbarch_value_from_register_ftype value_from_register) | |
2652 | { | |
2653 | gdbarch->value_from_register = value_from_register; | |
2654 | } | |
2655 | ||
4478b372 | 2656 | CORE_ADDR |
b60c417a | 2657 | gdbarch_pointer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf) |
4478b372 | 2658 | { |
8de9bdc4 | 2659 | gdb_assert (gdbarch != NULL); |
956ac328 | 2660 | gdb_assert (gdbarch->pointer_to_address != NULL); |
4478b372 JB |
2661 | if (gdbarch_debug >= 2) |
2662 | fprintf_unfiltered (gdb_stdlog, "gdbarch_pointer_to_address called\n"); | |
9898f801 | 2663 | return gdbarch->pointer_to_address (gdbarch, type, buf); |
4478b372 JB |
2664 | } |
2665 | ||
2666 | void | |
2667 | set_gdbarch_pointer_to_address (struct gdbarch *gdbarch, | |
2668 | gdbarch_pointer_to_address_ftype pointer_to_address) | |
2669 | { | |
2670 | gdbarch->pointer_to_address = pointer_to_address; | |
2671 | } | |
2672 | ||
2673 | void | |
b60c417a | 2674 | gdbarch_address_to_pointer (struct gdbarch *gdbarch, struct type *type, gdb_byte *buf, CORE_ADDR addr) |
4478b372 | 2675 | { |
8de9bdc4 | 2676 | gdb_assert (gdbarch != NULL); |
956ac328 | 2677 | gdb_assert (gdbarch->address_to_pointer != NULL); |
4478b372 JB |
2678 | if (gdbarch_debug >= 2) |
2679 | fprintf_unfiltered (gdb_stdlog, "gdbarch_address_to_pointer called\n"); | |
9898f801 | 2680 | gdbarch->address_to_pointer (gdbarch, type, buf, addr); |
4478b372 JB |
2681 | } |
2682 | ||
2683 | void | |
2684 | set_gdbarch_address_to_pointer (struct gdbarch *gdbarch, | |
2685 | gdbarch_address_to_pointer_ftype address_to_pointer) | |
2686 | { | |
2687 | gdbarch->address_to_pointer = address_to_pointer; | |
2688 | } | |
2689 | ||
fc0c74b1 AC |
2690 | int |
2691 | gdbarch_integer_to_address_p (struct gdbarch *gdbarch) | |
2692 | { | |
8de9bdc4 | 2693 | gdb_assert (gdbarch != NULL); |
956ac328 | 2694 | return gdbarch->integer_to_address != NULL; |
fc0c74b1 AC |
2695 | } |
2696 | ||
2697 | CORE_ADDR | |
fc1a4b47 | 2698 | gdbarch_integer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf) |
fc0c74b1 | 2699 | { |
8de9bdc4 | 2700 | gdb_assert (gdbarch != NULL); |
956ac328 | 2701 | gdb_assert (gdbarch->integer_to_address != NULL); |
fc0c74b1 AC |
2702 | if (gdbarch_debug >= 2) |
2703 | fprintf_unfiltered (gdb_stdlog, "gdbarch_integer_to_address called\n"); | |
79dd2d24 | 2704 | return gdbarch->integer_to_address (gdbarch, type, buf); |
fc0c74b1 AC |
2705 | } |
2706 | ||
2707 | void | |
2708 | set_gdbarch_integer_to_address (struct gdbarch *gdbarch, | |
2709 | gdbarch_integer_to_address_ftype integer_to_address) | |
2710 | { | |
2711 | gdbarch->integer_to_address = integer_to_address; | |
2712 | } | |
2713 | ||
92ad9cd9 AC |
2714 | int |
2715 | gdbarch_return_value_p (struct gdbarch *gdbarch) | |
2716 | { | |
2717 | gdb_assert (gdbarch != NULL); | |
c1874924 | 2718 | return gdbarch->return_value != NULL; |
92ad9cd9 AC |
2719 | } |
2720 | ||
2721 | enum return_value_convention | |
6a3a010b | 2722 | gdbarch_return_value (struct gdbarch *gdbarch, struct value *function, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf) |
92ad9cd9 AC |
2723 | { |
2724 | gdb_assert (gdbarch != NULL); | |
2725 | gdb_assert (gdbarch->return_value != NULL); | |
2726 | if (gdbarch_debug >= 2) | |
2727 | fprintf_unfiltered (gdb_stdlog, "gdbarch_return_value called\n"); | |
6a3a010b | 2728 | return gdbarch->return_value (gdbarch, function, valtype, regcache, readbuf, writebuf); |
92ad9cd9 AC |
2729 | } |
2730 | ||
2731 | void | |
2732 | set_gdbarch_return_value (struct gdbarch *gdbarch, | |
2733 | gdbarch_return_value_ftype return_value) | |
2734 | { | |
2735 | gdbarch->return_value = return_value; | |
2736 | } | |
2737 | ||
18648a37 YQ |
2738 | int |
2739 | gdbarch_return_in_first_hidden_param_p (struct gdbarch *gdbarch, struct type *type) | |
2740 | { | |
2741 | gdb_assert (gdbarch != NULL); | |
2742 | gdb_assert (gdbarch->return_in_first_hidden_param_p != NULL); | |
2743 | if (gdbarch_debug >= 2) | |
2744 | fprintf_unfiltered (gdb_stdlog, "gdbarch_return_in_first_hidden_param_p called\n"); | |
2745 | return gdbarch->return_in_first_hidden_param_p (gdbarch, type); | |
2746 | } | |
2747 | ||
2748 | void | |
2749 | set_gdbarch_return_in_first_hidden_param_p (struct gdbarch *gdbarch, | |
2750 | gdbarch_return_in_first_hidden_param_p_ftype return_in_first_hidden_param_p) | |
2751 | { | |
2752 | gdbarch->return_in_first_hidden_param_p = return_in_first_hidden_param_p; | |
2753 | } | |
2754 | ||
0f71a2f6 JM |
2755 | CORE_ADDR |
2756 | gdbarch_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR ip) | |
2757 | { | |
8de9bdc4 | 2758 | gdb_assert (gdbarch != NULL); |
956ac328 | 2759 | gdb_assert (gdbarch->skip_prologue != NULL); |
0f71a2f6 | 2760 | if (gdbarch_debug >= 2) |
0f71a2f6 | 2761 | fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_prologue called\n"); |
6093d2eb | 2762 | return gdbarch->skip_prologue (gdbarch, ip); |
0f71a2f6 JM |
2763 | } |
2764 | ||
2765 | void | |
104c1213 JM |
2766 | set_gdbarch_skip_prologue (struct gdbarch *gdbarch, |
2767 | gdbarch_skip_prologue_ftype skip_prologue) | |
0f71a2f6 JM |
2768 | { |
2769 | gdbarch->skip_prologue = skip_prologue; | |
2770 | } | |
2771 | ||
4309257c PM |
2772 | int |
2773 | gdbarch_skip_main_prologue_p (struct gdbarch *gdbarch) | |
2774 | { | |
2775 | gdb_assert (gdbarch != NULL); | |
2776 | return gdbarch->skip_main_prologue != NULL; | |
2777 | } | |
2778 | ||
2779 | CORE_ADDR | |
2780 | gdbarch_skip_main_prologue (struct gdbarch *gdbarch, CORE_ADDR ip) | |
2781 | { | |
2782 | gdb_assert (gdbarch != NULL); | |
2783 | gdb_assert (gdbarch->skip_main_prologue != NULL); | |
2784 | if (gdbarch_debug >= 2) | |
2785 | fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_main_prologue called\n"); | |
2786 | return gdbarch->skip_main_prologue (gdbarch, ip); | |
2787 | } | |
2788 | ||
2789 | void | |
2790 | set_gdbarch_skip_main_prologue (struct gdbarch *gdbarch, | |
cfd8ab24 | 2791 | gdbarch_skip_main_prologue_ftype skip_main_prologue) |
4309257c PM |
2792 | { |
2793 | gdbarch->skip_main_prologue = skip_main_prologue; | |
2794 | } | |
2795 | ||
591a12a1 UW |
2796 | int |
2797 | gdbarch_skip_entrypoint_p (struct gdbarch *gdbarch) | |
2798 | { | |
2799 | gdb_assert (gdbarch != NULL); | |
2800 | return gdbarch->skip_entrypoint != NULL; | |
2801 | } | |
2802 | ||
2803 | CORE_ADDR | |
2804 | gdbarch_skip_entrypoint (struct gdbarch *gdbarch, CORE_ADDR ip) | |
2805 | { | |
2806 | gdb_assert (gdbarch != NULL); | |
2807 | gdb_assert (gdbarch->skip_entrypoint != NULL); | |
2808 | if (gdbarch_debug >= 2) | |
2809 | fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_entrypoint called\n"); | |
2810 | return gdbarch->skip_entrypoint (gdbarch, ip); | |
2811 | } | |
2812 | ||
2813 | void | |
2814 | set_gdbarch_skip_entrypoint (struct gdbarch *gdbarch, | |
2815 | gdbarch_skip_entrypoint_ftype skip_entrypoint) | |
2816 | { | |
2817 | gdbarch->skip_entrypoint = skip_entrypoint; | |
2818 | } | |
2819 | ||
0f71a2f6 JM |
2820 | int |
2821 | gdbarch_inner_than (struct gdbarch *gdbarch, CORE_ADDR lhs, CORE_ADDR rhs) | |
2822 | { | |
8de9bdc4 | 2823 | gdb_assert (gdbarch != NULL); |
956ac328 | 2824 | gdb_assert (gdbarch->inner_than != NULL); |
0f71a2f6 | 2825 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
2826 | fprintf_unfiltered (gdb_stdlog, "gdbarch_inner_than called\n"); |
2827 | return gdbarch->inner_than (lhs, rhs); | |
2828 | } | |
2829 | ||
2830 | void | |
104c1213 JM |
2831 | set_gdbarch_inner_than (struct gdbarch *gdbarch, |
2832 | gdbarch_inner_than_ftype inner_than) | |
0f71a2f6 JM |
2833 | { |
2834 | gdbarch->inner_than = inner_than; | |
2835 | } | |
2836 | ||
fc1a4b47 | 2837 | const gdb_byte * |
adf40b2e | 2838 | gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr) |
0f71a2f6 | 2839 | { |
8de9bdc4 | 2840 | gdb_assert (gdbarch != NULL); |
956ac328 | 2841 | gdb_assert (gdbarch->breakpoint_from_pc != NULL); |
0f71a2f6 | 2842 | if (gdbarch_debug >= 2) |
0f71a2f6 | 2843 | fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_from_pc called\n"); |
67d57894 | 2844 | return gdbarch->breakpoint_from_pc (gdbarch, pcptr, lenptr); |
0f71a2f6 JM |
2845 | } |
2846 | ||
2847 | void | |
104c1213 JM |
2848 | set_gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch, |
2849 | gdbarch_breakpoint_from_pc_ftype breakpoint_from_pc) | |
0f71a2f6 JM |
2850 | { |
2851 | gdbarch->breakpoint_from_pc = breakpoint_from_pc; | |
2852 | } | |
2853 | ||
cd6c3b4f YQ |
2854 | int |
2855 | gdbarch_breakpoint_kind_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr) | |
2856 | { | |
2857 | gdb_assert (gdbarch != NULL); | |
2858 | gdb_assert (gdbarch->breakpoint_kind_from_pc != NULL); | |
2859 | if (gdbarch_debug >= 2) | |
2860 | fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_kind_from_pc called\n"); | |
2861 | return gdbarch->breakpoint_kind_from_pc (gdbarch, pcptr); | |
2862 | } | |
2863 | ||
2864 | void | |
2865 | set_gdbarch_breakpoint_kind_from_pc (struct gdbarch *gdbarch, | |
2866 | gdbarch_breakpoint_kind_from_pc_ftype breakpoint_kind_from_pc) | |
2867 | { | |
2868 | gdbarch->breakpoint_kind_from_pc = breakpoint_kind_from_pc; | |
2869 | } | |
2870 | ||
2871 | const gdb_byte * | |
2872 | gdbarch_sw_breakpoint_from_kind (struct gdbarch *gdbarch, int kind, int *size) | |
2873 | { | |
2874 | gdb_assert (gdbarch != NULL); | |
2875 | gdb_assert (gdbarch->sw_breakpoint_from_kind != NULL); | |
2876 | if (gdbarch_debug >= 2) | |
2877 | fprintf_unfiltered (gdb_stdlog, "gdbarch_sw_breakpoint_from_kind called\n"); | |
2878 | return gdbarch->sw_breakpoint_from_kind (gdbarch, kind, size); | |
2879 | } | |
2880 | ||
2881 | void | |
2882 | set_gdbarch_sw_breakpoint_from_kind (struct gdbarch *gdbarch, | |
2883 | gdbarch_sw_breakpoint_from_kind_ftype sw_breakpoint_from_kind) | |
2884 | { | |
2885 | gdbarch->sw_breakpoint_from_kind = sw_breakpoint_from_kind; | |
2886 | } | |
2887 | ||
833b7ab5 YQ |
2888 | int |
2889 | gdbarch_breakpoint_kind_from_current_state (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR *pcptr) | |
2890 | { | |
2891 | gdb_assert (gdbarch != NULL); | |
2892 | gdb_assert (gdbarch->breakpoint_kind_from_current_state != NULL); | |
2893 | if (gdbarch_debug >= 2) | |
2894 | fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_kind_from_current_state called\n"); | |
2895 | return gdbarch->breakpoint_kind_from_current_state (gdbarch, regcache, pcptr); | |
2896 | } | |
2897 | ||
2898 | void | |
2899 | set_gdbarch_breakpoint_kind_from_current_state (struct gdbarch *gdbarch, | |
2900 | gdbarch_breakpoint_kind_from_current_state_ftype breakpoint_kind_from_current_state) | |
2901 | { | |
2902 | gdbarch->breakpoint_kind_from_current_state = breakpoint_kind_from_current_state; | |
2903 | } | |
2904 | ||
a1131521 KB |
2905 | int |
2906 | gdbarch_adjust_breakpoint_address_p (struct gdbarch *gdbarch) | |
2907 | { | |
2908 | gdb_assert (gdbarch != NULL); | |
2909 | return gdbarch->adjust_breakpoint_address != NULL; | |
2910 | } | |
2911 | ||
2912 | CORE_ADDR | |
2913 | gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr) | |
2914 | { | |
2915 | gdb_assert (gdbarch != NULL); | |
2916 | gdb_assert (gdbarch->adjust_breakpoint_address != NULL); | |
2917 | if (gdbarch_debug >= 2) | |
2918 | fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_breakpoint_address called\n"); | |
2919 | return gdbarch->adjust_breakpoint_address (gdbarch, bpaddr); | |
2920 | } | |
2921 | ||
2922 | void | |
2923 | set_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, | |
2924 | gdbarch_adjust_breakpoint_address_ftype adjust_breakpoint_address) | |
2925 | { | |
2926 | gdbarch->adjust_breakpoint_address = adjust_breakpoint_address; | |
2927 | } | |
2928 | ||
917317f4 | 2929 | int |
8181d85f | 2930 | gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt) |
917317f4 | 2931 | { |
8de9bdc4 | 2932 | gdb_assert (gdbarch != NULL); |
956ac328 | 2933 | gdb_assert (gdbarch->memory_insert_breakpoint != NULL); |
917317f4 | 2934 | if (gdbarch_debug >= 2) |
917317f4 | 2935 | fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_insert_breakpoint called\n"); |
ae4b2284 | 2936 | return gdbarch->memory_insert_breakpoint (gdbarch, bp_tgt); |
917317f4 JM |
2937 | } |
2938 | ||
2939 | void | |
2940 | set_gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch, | |
2941 | gdbarch_memory_insert_breakpoint_ftype memory_insert_breakpoint) | |
2942 | { | |
2943 | gdbarch->memory_insert_breakpoint = memory_insert_breakpoint; | |
2944 | } | |
2945 | ||
2946 | int | |
8181d85f | 2947 | gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt) |
917317f4 | 2948 | { |
8de9bdc4 | 2949 | gdb_assert (gdbarch != NULL); |
956ac328 | 2950 | gdb_assert (gdbarch->memory_remove_breakpoint != NULL); |
917317f4 | 2951 | if (gdbarch_debug >= 2) |
917317f4 | 2952 | fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_remove_breakpoint called\n"); |
ae4b2284 | 2953 | return gdbarch->memory_remove_breakpoint (gdbarch, bp_tgt); |
917317f4 JM |
2954 | } |
2955 | ||
2956 | void | |
2957 | set_gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, | |
2958 | gdbarch_memory_remove_breakpoint_ftype memory_remove_breakpoint) | |
2959 | { | |
2960 | gdbarch->memory_remove_breakpoint = memory_remove_breakpoint; | |
2961 | } | |
2962 | ||
0f71a2f6 | 2963 | CORE_ADDR |
104c1213 | 2964 | gdbarch_decr_pc_after_break (struct gdbarch *gdbarch) |
0f71a2f6 | 2965 | { |
8de9bdc4 | 2966 | gdb_assert (gdbarch != NULL); |
71bd6bd4 | 2967 | /* Skip verify of decr_pc_after_break, invalid_p == 0 */ |
0f71a2f6 | 2968 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
2969 | fprintf_unfiltered (gdb_stdlog, "gdbarch_decr_pc_after_break called\n"); |
2970 | return gdbarch->decr_pc_after_break; | |
2971 | } | |
2972 | ||
2973 | void | |
104c1213 JM |
2974 | set_gdbarch_decr_pc_after_break (struct gdbarch *gdbarch, |
2975 | CORE_ADDR decr_pc_after_break) | |
0f71a2f6 JM |
2976 | { |
2977 | gdbarch->decr_pc_after_break = decr_pc_after_break; | |
2978 | } | |
2979 | ||
2980 | CORE_ADDR | |
782263ab | 2981 | gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch) |
0f71a2f6 | 2982 | { |
8de9bdc4 | 2983 | gdb_assert (gdbarch != NULL); |
782263ab | 2984 | /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */ |
0f71a2f6 | 2985 | if (gdbarch_debug >= 2) |
782263ab AC |
2986 | fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_function_start_offset called\n"); |
2987 | return gdbarch->deprecated_function_start_offset; | |
0f71a2f6 JM |
2988 | } |
2989 | ||
2990 | void | |
782263ab AC |
2991 | set_gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch, |
2992 | CORE_ADDR deprecated_function_start_offset) | |
0f71a2f6 | 2993 | { |
782263ab | 2994 | gdbarch->deprecated_function_start_offset = deprecated_function_start_offset; |
0f71a2f6 JM |
2995 | } |
2996 | ||
123dc839 DJ |
2997 | int |
2998 | gdbarch_remote_register_number (struct gdbarch *gdbarch, int regno) | |
2999 | { | |
3000 | gdb_assert (gdbarch != NULL); | |
3001 | gdb_assert (gdbarch->remote_register_number != NULL); | |
3002 | if (gdbarch_debug >= 2) | |
3003 | fprintf_unfiltered (gdb_stdlog, "gdbarch_remote_register_number called\n"); | |
3004 | return gdbarch->remote_register_number (gdbarch, regno); | |
3005 | } | |
3006 | ||
3007 | void | |
3008 | set_gdbarch_remote_register_number (struct gdbarch *gdbarch, | |
3009 | gdbarch_remote_register_number_ftype remote_register_number) | |
3010 | { | |
3011 | gdbarch->remote_register_number = remote_register_number; | |
3012 | } | |
3013 | ||
b2756930 KB |
3014 | int |
3015 | gdbarch_fetch_tls_load_module_address_p (struct gdbarch *gdbarch) | |
3016 | { | |
3017 | gdb_assert (gdbarch != NULL); | |
3018 | return gdbarch->fetch_tls_load_module_address != NULL; | |
3019 | } | |
3020 | ||
3021 | CORE_ADDR | |
3022 | gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch, struct objfile *objfile) | |
3023 | { | |
3024 | gdb_assert (gdbarch != NULL); | |
3025 | gdb_assert (gdbarch->fetch_tls_load_module_address != NULL); | |
3026 | if (gdbarch_debug >= 2) | |
3027 | fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_tls_load_module_address called\n"); | |
3028 | return gdbarch->fetch_tls_load_module_address (objfile); | |
3029 | } | |
3030 | ||
3031 | void | |
3032 | set_gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch, | |
3033 | gdbarch_fetch_tls_load_module_address_ftype fetch_tls_load_module_address) | |
3034 | { | |
3035 | gdbarch->fetch_tls_load_module_address = fetch_tls_load_module_address; | |
3036 | } | |
3037 | ||
0f71a2f6 | 3038 | CORE_ADDR |
104c1213 | 3039 | gdbarch_frame_args_skip (struct gdbarch *gdbarch) |
0f71a2f6 | 3040 | { |
8de9bdc4 | 3041 | gdb_assert (gdbarch != NULL); |
5867a2fb | 3042 | /* Skip verify of frame_args_skip, invalid_p == 0 */ |
0f71a2f6 | 3043 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
3044 | fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_args_skip called\n"); |
3045 | return gdbarch->frame_args_skip; | |
3046 | } | |
3047 | ||
3048 | void | |
104c1213 JM |
3049 | set_gdbarch_frame_args_skip (struct gdbarch *gdbarch, |
3050 | CORE_ADDR frame_args_skip) | |
0f71a2f6 JM |
3051 | { |
3052 | gdbarch->frame_args_skip = frame_args_skip; | |
3053 | } | |
3054 | ||
12cc2063 AC |
3055 | int |
3056 | gdbarch_unwind_pc_p (struct gdbarch *gdbarch) | |
3057 | { | |
3058 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3059 | return gdbarch->unwind_pc != NULL; |
12cc2063 AC |
3060 | } |
3061 | ||
3062 | CORE_ADDR | |
3063 | gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame) | |
3064 | { | |
3065 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3066 | gdb_assert (gdbarch->unwind_pc != NULL); |
12cc2063 AC |
3067 | if (gdbarch_debug >= 2) |
3068 | fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_pc called\n"); | |
3069 | return gdbarch->unwind_pc (gdbarch, next_frame); | |
3070 | } | |
3071 | ||
3072 | void | |
3073 | set_gdbarch_unwind_pc (struct gdbarch *gdbarch, | |
3074 | gdbarch_unwind_pc_ftype unwind_pc) | |
3075 | { | |
3076 | gdbarch->unwind_pc = unwind_pc; | |
3077 | } | |
3078 | ||
a9e5fdc2 AC |
3079 | int |
3080 | gdbarch_unwind_sp_p (struct gdbarch *gdbarch) | |
3081 | { | |
3082 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3083 | return gdbarch->unwind_sp != NULL; |
a9e5fdc2 AC |
3084 | } |
3085 | ||
3086 | CORE_ADDR | |
3087 | gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame) | |
3088 | { | |
3089 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3090 | gdb_assert (gdbarch->unwind_sp != NULL); |
a9e5fdc2 AC |
3091 | if (gdbarch_debug >= 2) |
3092 | fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_sp called\n"); | |
3093 | return gdbarch->unwind_sp (gdbarch, next_frame); | |
3094 | } | |
3095 | ||
3096 | void | |
3097 | set_gdbarch_unwind_sp (struct gdbarch *gdbarch, | |
3098 | gdbarch_unwind_sp_ftype unwind_sp) | |
3099 | { | |
3100 | gdbarch->unwind_sp = unwind_sp; | |
3101 | } | |
3102 | ||
983a287a AC |
3103 | int |
3104 | gdbarch_frame_num_args_p (struct gdbarch *gdbarch) | |
3105 | { | |
3106 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3107 | return gdbarch->frame_num_args != NULL; |
983a287a AC |
3108 | } |
3109 | ||
0f71a2f6 JM |
3110 | int |
3111 | gdbarch_frame_num_args (struct gdbarch *gdbarch, struct frame_info *frame) | |
3112 | { | |
8de9bdc4 | 3113 | gdb_assert (gdbarch != NULL); |
956ac328 | 3114 | gdb_assert (gdbarch->frame_num_args != NULL); |
0f71a2f6 | 3115 | if (gdbarch_debug >= 2) |
0f71a2f6 JM |
3116 | fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_num_args called\n"); |
3117 | return gdbarch->frame_num_args (frame); | |
3118 | } | |
3119 | ||
3120 | void | |
104c1213 JM |
3121 | set_gdbarch_frame_num_args (struct gdbarch *gdbarch, |
3122 | gdbarch_frame_num_args_ftype frame_num_args) | |
0f71a2f6 JM |
3123 | { |
3124 | gdbarch->frame_num_args = frame_num_args; | |
3125 | } | |
3126 | ||
dc604539 AC |
3127 | int |
3128 | gdbarch_frame_align_p (struct gdbarch *gdbarch) | |
3129 | { | |
3130 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3131 | return gdbarch->frame_align != NULL; |
dc604539 AC |
3132 | } |
3133 | ||
3134 | CORE_ADDR | |
3135 | gdbarch_frame_align (struct gdbarch *gdbarch, CORE_ADDR address) | |
3136 | { | |
3137 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3138 | gdb_assert (gdbarch->frame_align != NULL); |
dc604539 AC |
3139 | if (gdbarch_debug >= 2) |
3140 | fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_align called\n"); | |
3141 | return gdbarch->frame_align (gdbarch, address); | |
3142 | } | |
3143 | ||
3144 | void | |
3145 | set_gdbarch_frame_align (struct gdbarch *gdbarch, | |
3146 | gdbarch_frame_align_ftype frame_align) | |
3147 | { | |
3148 | gdbarch->frame_align = frame_align; | |
3149 | } | |
3150 | ||
192cb3d4 MK |
3151 | int |
3152 | gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type) | |
3153 | { | |
3154 | gdb_assert (gdbarch != NULL); | |
3155 | gdb_assert (gdbarch->stabs_argument_has_addr != NULL); | |
3156 | if (gdbarch_debug >= 2) | |
3157 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stabs_argument_has_addr called\n"); | |
3158 | return gdbarch->stabs_argument_has_addr (gdbarch, type); | |
3159 | } | |
3160 | ||
3161 | void | |
3162 | set_gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch, | |
3163 | gdbarch_stabs_argument_has_addr_ftype stabs_argument_has_addr) | |
3164 | { | |
3165 | gdbarch->stabs_argument_has_addr = stabs_argument_has_addr; | |
3166 | } | |
3167 | ||
8b148df9 AC |
3168 | int |
3169 | gdbarch_frame_red_zone_size (struct gdbarch *gdbarch) | |
3170 | { | |
3171 | gdb_assert (gdbarch != NULL); | |
3172 | if (gdbarch_debug >= 2) | |
3173 | fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_red_zone_size called\n"); | |
3174 | return gdbarch->frame_red_zone_size; | |
3175 | } | |
3176 | ||
3177 | void | |
3178 | set_gdbarch_frame_red_zone_size (struct gdbarch *gdbarch, | |
3179 | int frame_red_zone_size) | |
3180 | { | |
3181 | gdbarch->frame_red_zone_size = frame_red_zone_size; | |
3182 | } | |
3183 | ||
f517ea4e | 3184 | CORE_ADDR |
e2d0e7eb | 3185 | gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr, struct target_ops *targ) |
f517ea4e | 3186 | { |
8de9bdc4 | 3187 | gdb_assert (gdbarch != NULL); |
956ac328 | 3188 | gdb_assert (gdbarch->convert_from_func_ptr_addr != NULL); |
f517ea4e PS |
3189 | if (gdbarch_debug >= 2) |
3190 | fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_from_func_ptr_addr called\n"); | |
e2d0e7eb | 3191 | return gdbarch->convert_from_func_ptr_addr (gdbarch, addr, targ); |
f517ea4e PS |
3192 | } |
3193 | ||
3194 | void | |
3195 | set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, | |
3196 | gdbarch_convert_from_func_ptr_addr_ftype convert_from_func_ptr_addr) | |
3197 | { | |
3198 | gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr; | |
3199 | } | |
3200 | ||
875e1767 AC |
3201 | CORE_ADDR |
3202 | gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr) | |
3203 | { | |
8de9bdc4 | 3204 | gdb_assert (gdbarch != NULL); |
956ac328 | 3205 | gdb_assert (gdbarch->addr_bits_remove != NULL); |
875e1767 AC |
3206 | if (gdbarch_debug >= 2) |
3207 | fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bits_remove called\n"); | |
24568a2c | 3208 | return gdbarch->addr_bits_remove (gdbarch, addr); |
875e1767 AC |
3209 | } |
3210 | ||
3211 | void | |
3212 | set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch, | |
3213 | gdbarch_addr_bits_remove_ftype addr_bits_remove) | |
3214 | { | |
3215 | gdbarch->addr_bits_remove = addr_bits_remove; | |
3216 | } | |
3217 | ||
64c4637f AC |
3218 | int |
3219 | gdbarch_software_single_step_p (struct gdbarch *gdbarch) | |
3220 | { | |
8de9bdc4 | 3221 | gdb_assert (gdbarch != NULL); |
956ac328 | 3222 | return gdbarch->software_single_step != NULL; |
64c4637f AC |
3223 | } |
3224 | ||
a0ff9e1a | 3225 | std::vector<CORE_ADDR> |
f5ea389a | 3226 | gdbarch_software_single_step (struct gdbarch *gdbarch, struct regcache *regcache) |
64c4637f | 3227 | { |
8de9bdc4 | 3228 | gdb_assert (gdbarch != NULL); |
956ac328 | 3229 | gdb_assert (gdbarch->software_single_step != NULL); |
64c4637f AC |
3230 | if (gdbarch_debug >= 2) |
3231 | fprintf_unfiltered (gdb_stdlog, "gdbarch_software_single_step called\n"); | |
f5ea389a | 3232 | return gdbarch->software_single_step (regcache); |
64c4637f AC |
3233 | } |
3234 | ||
3235 | void | |
3236 | set_gdbarch_software_single_step (struct gdbarch *gdbarch, | |
3237 | gdbarch_software_single_step_ftype software_single_step) | |
3238 | { | |
3239 | gdbarch->software_single_step = software_single_step; | |
3240 | } | |
3241 | ||
3352ef37 AC |
3242 | int |
3243 | gdbarch_single_step_through_delay_p (struct gdbarch *gdbarch) | |
3244 | { | |
3245 | gdb_assert (gdbarch != NULL); | |
3246 | return gdbarch->single_step_through_delay != NULL; | |
3247 | } | |
3248 | ||
3249 | int | |
3250 | gdbarch_single_step_through_delay (struct gdbarch *gdbarch, struct frame_info *frame) | |
3251 | { | |
3252 | gdb_assert (gdbarch != NULL); | |
3253 | gdb_assert (gdbarch->single_step_through_delay != NULL); | |
3254 | if (gdbarch_debug >= 2) | |
3255 | fprintf_unfiltered (gdb_stdlog, "gdbarch_single_step_through_delay called\n"); | |
3256 | return gdbarch->single_step_through_delay (gdbarch, frame); | |
3257 | } | |
3258 | ||
3259 | void | |
3260 | set_gdbarch_single_step_through_delay (struct gdbarch *gdbarch, | |
3261 | gdbarch_single_step_through_delay_ftype single_step_through_delay) | |
3262 | { | |
3263 | gdbarch->single_step_through_delay = single_step_through_delay; | |
3264 | } | |
3265 | ||
2bf0cb65 | 3266 | int |
a89aa300 | 3267 | gdbarch_print_insn (struct gdbarch *gdbarch, bfd_vma vma, struct disassemble_info *info) |
2bf0cb65 | 3268 | { |
8de9bdc4 | 3269 | gdb_assert (gdbarch != NULL); |
956ac328 | 3270 | gdb_assert (gdbarch->print_insn != NULL); |
2bf0cb65 EZ |
3271 | if (gdbarch_debug >= 2) |
3272 | fprintf_unfiltered (gdb_stdlog, "gdbarch_print_insn called\n"); | |
3273 | return gdbarch->print_insn (vma, info); | |
3274 | } | |
3275 | ||
3276 | void | |
3277 | set_gdbarch_print_insn (struct gdbarch *gdbarch, | |
3278 | gdbarch_print_insn_ftype print_insn) | |
3279 | { | |
3280 | gdbarch->print_insn = print_insn; | |
3281 | } | |
3282 | ||
bdcd319a | 3283 | CORE_ADDR |
52f729a7 | 3284 | gdbarch_skip_trampoline_code (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR pc) |
bdcd319a | 3285 | { |
8de9bdc4 | 3286 | gdb_assert (gdbarch != NULL); |
956ac328 | 3287 | gdb_assert (gdbarch->skip_trampoline_code != NULL); |
bdcd319a CV |
3288 | if (gdbarch_debug >= 2) |
3289 | fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_trampoline_code called\n"); | |
52f729a7 | 3290 | return gdbarch->skip_trampoline_code (frame, pc); |
bdcd319a CV |
3291 | } |
3292 | ||
3293 | void | |
3294 | set_gdbarch_skip_trampoline_code (struct gdbarch *gdbarch, | |
3295 | gdbarch_skip_trampoline_code_ftype skip_trampoline_code) | |
3296 | { | |
3297 | gdbarch->skip_trampoline_code = skip_trampoline_code; | |
3298 | } | |
3299 | ||
dea0c52f MK |
3300 | CORE_ADDR |
3301 | gdbarch_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) | |
3302 | { | |
3303 | gdb_assert (gdbarch != NULL); | |
3304 | gdb_assert (gdbarch->skip_solib_resolver != NULL); | |
3305 | if (gdbarch_debug >= 2) | |
3306 | fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_solib_resolver called\n"); | |
4c8c40e6 | 3307 | return gdbarch->skip_solib_resolver (gdbarch, pc); |
dea0c52f MK |
3308 | } |
3309 | ||
3310 | void | |
3311 | set_gdbarch_skip_solib_resolver (struct gdbarch *gdbarch, | |
3312 | gdbarch_skip_solib_resolver_ftype skip_solib_resolver) | |
3313 | { | |
3314 | gdbarch->skip_solib_resolver = skip_solib_resolver; | |
3315 | } | |
3316 | ||
d50355b6 | 3317 | int |
2c02bd72 | 3318 | gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, CORE_ADDR pc, const char *name) |
d50355b6 MS |
3319 | { |
3320 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3321 | gdb_assert (gdbarch->in_solib_return_trampoline != NULL); |
d50355b6 MS |
3322 | if (gdbarch_debug >= 2) |
3323 | fprintf_unfiltered (gdb_stdlog, "gdbarch_in_solib_return_trampoline called\n"); | |
e17a4113 | 3324 | return gdbarch->in_solib_return_trampoline (gdbarch, pc, name); |
d50355b6 MS |
3325 | } |
3326 | ||
3327 | void | |
3328 | set_gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, | |
3329 | gdbarch_in_solib_return_trampoline_ftype in_solib_return_trampoline) | |
3330 | { | |
3331 | gdbarch->in_solib_return_trampoline = in_solib_return_trampoline; | |
3332 | } | |
3333 | ||
c12260ac | 3334 | int |
c9cf6e20 | 3335 | gdbarch_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR addr) |
c12260ac | 3336 | { |
8de9bdc4 | 3337 | gdb_assert (gdbarch != NULL); |
c9cf6e20 | 3338 | gdb_assert (gdbarch->stack_frame_destroyed_p != NULL); |
c12260ac | 3339 | if (gdbarch_debug >= 2) |
c9cf6e20 MG |
3340 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stack_frame_destroyed_p called\n"); |
3341 | return gdbarch->stack_frame_destroyed_p (gdbarch, addr); | |
c12260ac CV |
3342 | } |
3343 | ||
3344 | void | |
c9cf6e20 MG |
3345 | set_gdbarch_stack_frame_destroyed_p (struct gdbarch *gdbarch, |
3346 | gdbarch_stack_frame_destroyed_p_ftype stack_frame_destroyed_p) | |
c12260ac | 3347 | { |
c9cf6e20 | 3348 | gdbarch->stack_frame_destroyed_p = stack_frame_destroyed_p; |
c12260ac CV |
3349 | } |
3350 | ||
3e29f34a MR |
3351 | int |
3352 | gdbarch_elf_make_msymbol_special_p (struct gdbarch *gdbarch) | |
3353 | { | |
3354 | gdb_assert (gdbarch != NULL); | |
3355 | return gdbarch->elf_make_msymbol_special != NULL; | |
3356 | } | |
3357 | ||
a2cf933a EZ |
3358 | void |
3359 | gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch, asymbol *sym, struct minimal_symbol *msym) | |
3360 | { | |
8de9bdc4 | 3361 | gdb_assert (gdbarch != NULL); |
956ac328 | 3362 | gdb_assert (gdbarch->elf_make_msymbol_special != NULL); |
a2cf933a EZ |
3363 | if (gdbarch_debug >= 2) |
3364 | fprintf_unfiltered (gdb_stdlog, "gdbarch_elf_make_msymbol_special called\n"); | |
3365 | gdbarch->elf_make_msymbol_special (sym, msym); | |
3366 | } | |
3367 | ||
3368 | void | |
3369 | set_gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch, | |
3370 | gdbarch_elf_make_msymbol_special_ftype elf_make_msymbol_special) | |
3371 | { | |
3372 | gdbarch->elf_make_msymbol_special = elf_make_msymbol_special; | |
3373 | } | |
3374 | ||
3375 | void | |
3376 | gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch, int val, struct minimal_symbol *msym) | |
3377 | { | |
8de9bdc4 | 3378 | gdb_assert (gdbarch != NULL); |
956ac328 | 3379 | gdb_assert (gdbarch->coff_make_msymbol_special != NULL); |
a2cf933a EZ |
3380 | if (gdbarch_debug >= 2) |
3381 | fprintf_unfiltered (gdb_stdlog, "gdbarch_coff_make_msymbol_special called\n"); | |
3382 | gdbarch->coff_make_msymbol_special (val, msym); | |
3383 | } | |
3384 | ||
3385 | void | |
3386 | set_gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch, | |
3387 | gdbarch_coff_make_msymbol_special_ftype coff_make_msymbol_special) | |
3388 | { | |
3389 | gdbarch->coff_make_msymbol_special = coff_make_msymbol_special; | |
3390 | } | |
3391 | ||
3e29f34a MR |
3392 | void |
3393 | gdbarch_make_symbol_special (struct gdbarch *gdbarch, struct symbol *sym, struct objfile *objfile) | |
3394 | { | |
3395 | gdb_assert (gdbarch != NULL); | |
3396 | gdb_assert (gdbarch->make_symbol_special != NULL); | |
3397 | if (gdbarch_debug >= 2) | |
3398 | fprintf_unfiltered (gdb_stdlog, "gdbarch_make_symbol_special called\n"); | |
3399 | gdbarch->make_symbol_special (sym, objfile); | |
3400 | } | |
3401 | ||
3402 | void | |
3403 | set_gdbarch_make_symbol_special (struct gdbarch *gdbarch, | |
3404 | gdbarch_make_symbol_special_ftype make_symbol_special) | |
3405 | { | |
3406 | gdbarch->make_symbol_special = make_symbol_special; | |
3407 | } | |
3408 | ||
3409 | CORE_ADDR | |
3410 | gdbarch_adjust_dwarf2_addr (struct gdbarch *gdbarch, CORE_ADDR pc) | |
3411 | { | |
3412 | gdb_assert (gdbarch != NULL); | |
3413 | gdb_assert (gdbarch->adjust_dwarf2_addr != NULL); | |
3414 | if (gdbarch_debug >= 2) | |
3415 | fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_dwarf2_addr called\n"); | |
3416 | return gdbarch->adjust_dwarf2_addr (pc); | |
3417 | } | |
3418 | ||
3419 | void | |
3420 | set_gdbarch_adjust_dwarf2_addr (struct gdbarch *gdbarch, | |
3421 | gdbarch_adjust_dwarf2_addr_ftype adjust_dwarf2_addr) | |
3422 | { | |
3423 | gdbarch->adjust_dwarf2_addr = adjust_dwarf2_addr; | |
3424 | } | |
3425 | ||
3426 | CORE_ADDR | |
3427 | gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch, CORE_ADDR addr, int rel) | |
3428 | { | |
3429 | gdb_assert (gdbarch != NULL); | |
3430 | gdb_assert (gdbarch->adjust_dwarf2_line != NULL); | |
3431 | if (gdbarch_debug >= 2) | |
3432 | fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_dwarf2_line called\n"); | |
3433 | return gdbarch->adjust_dwarf2_line (addr, rel); | |
3434 | } | |
3435 | ||
3436 | void | |
3437 | set_gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch, | |
3438 | gdbarch_adjust_dwarf2_line_ftype adjust_dwarf2_line) | |
3439 | { | |
3440 | gdbarch->adjust_dwarf2_line = adjust_dwarf2_line; | |
3441 | } | |
3442 | ||
c4ed33b9 AC |
3443 | int |
3444 | gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch) | |
3445 | { | |
3446 | gdb_assert (gdbarch != NULL); | |
3447 | /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */ | |
3448 | if (gdbarch_debug >= 2) | |
3449 | fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_step_breakpoint called\n"); | |
3450 | return gdbarch->cannot_step_breakpoint; | |
3451 | } | |
3452 | ||
3453 | void | |
3454 | set_gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch, | |
3455 | int cannot_step_breakpoint) | |
3456 | { | |
3457 | gdbarch->cannot_step_breakpoint = cannot_step_breakpoint; | |
3458 | } | |
3459 | ||
f74fa174 MM |
3460 | int |
3461 | gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch) | |
3462 | { | |
3463 | gdb_assert (gdbarch != NULL); | |
3464 | /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */ | |
3465 | if (gdbarch_debug >= 2) | |
3466 | fprintf_unfiltered (gdb_stdlog, "gdbarch_have_nonsteppable_watchpoint called\n"); | |
3467 | return gdbarch->have_nonsteppable_watchpoint; | |
3468 | } | |
3469 | ||
3470 | void | |
3471 | set_gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch, | |
967c0d83 | 3472 | int have_nonsteppable_watchpoint) |
f74fa174 MM |
3473 | { |
3474 | gdbarch->have_nonsteppable_watchpoint = have_nonsteppable_watchpoint; | |
3475 | } | |
3476 | ||
8b2dbe47 KB |
3477 | int |
3478 | gdbarch_address_class_type_flags_p (struct gdbarch *gdbarch) | |
3479 | { | |
3480 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3481 | return gdbarch->address_class_type_flags != NULL; |
8b2dbe47 KB |
3482 | } |
3483 | ||
3484 | int | |
3485 | gdbarch_address_class_type_flags (struct gdbarch *gdbarch, int byte_size, int dwarf2_addr_class) | |
3486 | { | |
3487 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3488 | gdb_assert (gdbarch->address_class_type_flags != NULL); |
8b2dbe47 KB |
3489 | if (gdbarch_debug >= 2) |
3490 | fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags called\n"); | |
3491 | return gdbarch->address_class_type_flags (byte_size, dwarf2_addr_class); | |
3492 | } | |
3493 | ||
3494 | void | |
3495 | set_gdbarch_address_class_type_flags (struct gdbarch *gdbarch, | |
3496 | gdbarch_address_class_type_flags_ftype address_class_type_flags) | |
3497 | { | |
3498 | gdbarch->address_class_type_flags = address_class_type_flags; | |
3499 | } | |
3500 | ||
3501 | int | |
3502 | gdbarch_address_class_type_flags_to_name_p (struct gdbarch *gdbarch) | |
3503 | { | |
3504 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3505 | return gdbarch->address_class_type_flags_to_name != NULL; |
8b2dbe47 KB |
3506 | } |
3507 | ||
321432c0 | 3508 | const char * |
8b2dbe47 KB |
3509 | gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags) |
3510 | { | |
3511 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3512 | gdb_assert (gdbarch->address_class_type_flags_to_name != NULL); |
8b2dbe47 KB |
3513 | if (gdbarch_debug >= 2) |
3514 | fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags_to_name called\n"); | |
5f11f355 | 3515 | return gdbarch->address_class_type_flags_to_name (gdbarch, type_flags); |
8b2dbe47 KB |
3516 | } |
3517 | ||
3518 | void | |
3519 | set_gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch, | |
3520 | gdbarch_address_class_type_flags_to_name_ftype address_class_type_flags_to_name) | |
3521 | { | |
3522 | gdbarch->address_class_type_flags_to_name = address_class_type_flags_to_name; | |
3523 | } | |
3524 | ||
b41c5a85 JW |
3525 | bool |
3526 | gdbarch_execute_dwarf_cfa_vendor_op (struct gdbarch *gdbarch, gdb_byte op, struct dwarf2_frame_state *fs) | |
3527 | { | |
3528 | gdb_assert (gdbarch != NULL); | |
3529 | gdb_assert (gdbarch->execute_dwarf_cfa_vendor_op != NULL); | |
3530 | if (gdbarch_debug >= 2) | |
3531 | fprintf_unfiltered (gdb_stdlog, "gdbarch_execute_dwarf_cfa_vendor_op called\n"); | |
3532 | return gdbarch->execute_dwarf_cfa_vendor_op (gdbarch, op, fs); | |
3533 | } | |
3534 | ||
3535 | void | |
3536 | set_gdbarch_execute_dwarf_cfa_vendor_op (struct gdbarch *gdbarch, | |
3537 | gdbarch_execute_dwarf_cfa_vendor_op_ftype execute_dwarf_cfa_vendor_op) | |
3538 | { | |
3539 | gdbarch->execute_dwarf_cfa_vendor_op = execute_dwarf_cfa_vendor_op; | |
3540 | } | |
3541 | ||
8b2dbe47 KB |
3542 | int |
3543 | gdbarch_address_class_name_to_type_flags_p (struct gdbarch *gdbarch) | |
3544 | { | |
3545 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3546 | return gdbarch->address_class_name_to_type_flags != NULL; |
8b2dbe47 KB |
3547 | } |
3548 | ||
3549 | int | |
321432c0 | 3550 | gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch, const char *name, int *type_flags_ptr) |
8b2dbe47 KB |
3551 | { |
3552 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3553 | gdb_assert (gdbarch->address_class_name_to_type_flags != NULL); |
8b2dbe47 KB |
3554 | if (gdbarch_debug >= 2) |
3555 | fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_name_to_type_flags called\n"); | |
5f11f355 | 3556 | return gdbarch->address_class_name_to_type_flags (gdbarch, name, type_flags_ptr); |
8b2dbe47 KB |
3557 | } |
3558 | ||
3559 | void | |
3560 | set_gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch, | |
3561 | gdbarch_address_class_name_to_type_flags_ftype address_class_name_to_type_flags) | |
3562 | { | |
3563 | gdbarch->address_class_name_to_type_flags = address_class_name_to_type_flags; | |
3564 | } | |
3565 | ||
b59ff9d5 AC |
3566 | int |
3567 | gdbarch_register_reggroup_p (struct gdbarch *gdbarch, int regnum, struct reggroup *reggroup) | |
3568 | { | |
3569 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3570 | gdb_assert (gdbarch->register_reggroup_p != NULL); |
b59ff9d5 AC |
3571 | if (gdbarch_debug >= 2) |
3572 | fprintf_unfiltered (gdb_stdlog, "gdbarch_register_reggroup_p called\n"); | |
3573 | return gdbarch->register_reggroup_p (gdbarch, regnum, reggroup); | |
3574 | } | |
3575 | ||
3576 | void | |
3577 | set_gdbarch_register_reggroup_p (struct gdbarch *gdbarch, | |
3578 | gdbarch_register_reggroup_p_ftype register_reggroup_p) | |
3579 | { | |
3580 | gdbarch->register_reggroup_p = register_reggroup_p; | |
3581 | } | |
3582 | ||
143985b7 AF |
3583 | int |
3584 | gdbarch_fetch_pointer_argument_p (struct gdbarch *gdbarch) | |
3585 | { | |
3586 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3587 | return gdbarch->fetch_pointer_argument != NULL; |
143985b7 AF |
3588 | } |
3589 | ||
3590 | CORE_ADDR | |
3591 | gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch, struct frame_info *frame, int argi, struct type *type) | |
3592 | { | |
3593 | gdb_assert (gdbarch != NULL); | |
956ac328 | 3594 | gdb_assert (gdbarch->fetch_pointer_argument != NULL); |
143985b7 AF |
3595 | if (gdbarch_debug >= 2) |
3596 | fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_pointer_argument called\n"); | |
3597 | return gdbarch->fetch_pointer_argument (frame, argi, type); | |
3598 | } | |
3599 | ||
3600 | void | |
3601 | set_gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch, | |
3602 | gdbarch_fetch_pointer_argument_ftype fetch_pointer_argument) | |
3603 | { | |
3604 | gdbarch->fetch_pointer_argument = fetch_pointer_argument; | |
3605 | } | |
3606 | ||
5aa82d05 AA |
3607 | int |
3608 | gdbarch_iterate_over_regset_sections_p (struct gdbarch *gdbarch) | |
3609 | { | |
3610 | gdb_assert (gdbarch != NULL); | |
3611 | return gdbarch->iterate_over_regset_sections != NULL; | |
3612 | } | |
3613 | ||
3614 | void | |
3615 | gdbarch_iterate_over_regset_sections (struct gdbarch *gdbarch, iterate_over_regset_sections_cb *cb, void *cb_data, const struct regcache *regcache) | |
17ea7499 CES |
3616 | { |
3617 | gdb_assert (gdbarch != NULL); | |
5aa82d05 | 3618 | gdb_assert (gdbarch->iterate_over_regset_sections != NULL); |
17ea7499 | 3619 | if (gdbarch_debug >= 2) |
5aa82d05 AA |
3620 | fprintf_unfiltered (gdb_stdlog, "gdbarch_iterate_over_regset_sections called\n"); |
3621 | gdbarch->iterate_over_regset_sections (gdbarch, cb, cb_data, regcache); | |
17ea7499 CES |
3622 | } |
3623 | ||
3624 | void | |
5aa82d05 AA |
3625 | set_gdbarch_iterate_over_regset_sections (struct gdbarch *gdbarch, |
3626 | gdbarch_iterate_over_regset_sections_ftype iterate_over_regset_sections) | |
17ea7499 | 3627 | { |
5aa82d05 | 3628 | gdbarch->iterate_over_regset_sections = iterate_over_regset_sections; |
17ea7499 CES |
3629 | } |
3630 | ||
6432734d UW |
3631 | int |
3632 | gdbarch_make_corefile_notes_p (struct gdbarch *gdbarch) | |
3633 | { | |
3634 | gdb_assert (gdbarch != NULL); | |
3635 | return gdbarch->make_corefile_notes != NULL; | |
3636 | } | |
3637 | ||
3638 | char * | |
3639 | gdbarch_make_corefile_notes (struct gdbarch *gdbarch, bfd *obfd, int *note_size) | |
3640 | { | |
3641 | gdb_assert (gdbarch != NULL); | |
3642 | gdb_assert (gdbarch->make_corefile_notes != NULL); | |
3643 | if (gdbarch_debug >= 2) | |
3644 | fprintf_unfiltered (gdb_stdlog, "gdbarch_make_corefile_notes called\n"); | |
3645 | return gdbarch->make_corefile_notes (gdbarch, obfd, note_size); | |
3646 | } | |
3647 | ||
3648 | void | |
3649 | set_gdbarch_make_corefile_notes (struct gdbarch *gdbarch, | |
3650 | gdbarch_make_corefile_notes_ftype make_corefile_notes) | |
3651 | { | |
3652 | gdbarch->make_corefile_notes = make_corefile_notes; | |
3653 | } | |
3654 | ||
35c2fab7 UW |
3655 | int |
3656 | gdbarch_find_memory_regions_p (struct gdbarch *gdbarch) | |
3657 | { | |
3658 | gdb_assert (gdbarch != NULL); | |
3659 | return gdbarch->find_memory_regions != NULL; | |
3660 | } | |
3661 | ||
3662 | int | |
3663 | gdbarch_find_memory_regions (struct gdbarch *gdbarch, find_memory_region_ftype func, void *data) | |
3664 | { | |
3665 | gdb_assert (gdbarch != NULL); | |
3666 | gdb_assert (gdbarch->find_memory_regions != NULL); | |
3667 | if (gdbarch_debug >= 2) | |
3668 | fprintf_unfiltered (gdb_stdlog, "gdbarch_find_memory_regions called\n"); | |
3669 | return gdbarch->find_memory_regions (gdbarch, func, data); | |
3670 | } | |
3671 | ||
3672 | void | |
3673 | set_gdbarch_find_memory_regions (struct gdbarch *gdbarch, | |
3674 | gdbarch_find_memory_regions_ftype find_memory_regions) | |
3675 | { | |
3676 | gdbarch->find_memory_regions = find_memory_regions; | |
3677 | } | |
3678 | ||
de584861 PA |
3679 | int |
3680 | gdbarch_core_xfer_shared_libraries_p (struct gdbarch *gdbarch) | |
3681 | { | |
3682 | gdb_assert (gdbarch != NULL); | |
3683 | return gdbarch->core_xfer_shared_libraries != NULL; | |
3684 | } | |
3685 | ||
c09f20e4 | 3686 | ULONGEST |
7ec1862d | 3687 | gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len) |
de584861 PA |
3688 | { |
3689 | gdb_assert (gdbarch != NULL); | |
3690 | gdb_assert (gdbarch->core_xfer_shared_libraries != NULL); | |
3691 | if (gdbarch_debug >= 2) | |
3692 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries called\n"); | |
3693 | return gdbarch->core_xfer_shared_libraries (gdbarch, readbuf, offset, len); | |
3694 | } | |
3695 | ||
3696 | void | |
3697 | set_gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch, | |
3698 | gdbarch_core_xfer_shared_libraries_ftype core_xfer_shared_libraries) | |
3699 | { | |
3700 | gdbarch->core_xfer_shared_libraries = core_xfer_shared_libraries; | |
3701 | } | |
3702 | ||
356a5233 JB |
3703 | int |
3704 | gdbarch_core_xfer_shared_libraries_aix_p (struct gdbarch *gdbarch) | |
3705 | { | |
3706 | gdb_assert (gdbarch != NULL); | |
3707 | return gdbarch->core_xfer_shared_libraries_aix != NULL; | |
3708 | } | |
3709 | ||
c09f20e4 | 3710 | ULONGEST |
7ec1862d | 3711 | gdbarch_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len) |
356a5233 JB |
3712 | { |
3713 | gdb_assert (gdbarch != NULL); | |
3714 | gdb_assert (gdbarch->core_xfer_shared_libraries_aix != NULL); | |
3715 | if (gdbarch_debug >= 2) | |
3716 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries_aix called\n"); | |
3717 | return gdbarch->core_xfer_shared_libraries_aix (gdbarch, readbuf, offset, len); | |
3718 | } | |
3719 | ||
3720 | void | |
3721 | set_gdbarch_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch, | |
3722 | gdbarch_core_xfer_shared_libraries_aix_ftype core_xfer_shared_libraries_aix) | |
3723 | { | |
3724 | gdbarch->core_xfer_shared_libraries_aix = core_xfer_shared_libraries_aix; | |
3725 | } | |
3726 | ||
28439f5e PA |
3727 | int |
3728 | gdbarch_core_pid_to_str_p (struct gdbarch *gdbarch) | |
3729 | { | |
3730 | gdb_assert (gdbarch != NULL); | |
3731 | return gdbarch->core_pid_to_str != NULL; | |
3732 | } | |
3733 | ||
7a114964 | 3734 | const char * |
28439f5e PA |
3735 | gdbarch_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid) |
3736 | { | |
3737 | gdb_assert (gdbarch != NULL); | |
3738 | gdb_assert (gdbarch->core_pid_to_str != NULL); | |
3739 | if (gdbarch_debug >= 2) | |
3740 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_pid_to_str called\n"); | |
3741 | return gdbarch->core_pid_to_str (gdbarch, ptid); | |
3742 | } | |
3743 | ||
3744 | void | |
3745 | set_gdbarch_core_pid_to_str (struct gdbarch *gdbarch, | |
3746 | gdbarch_core_pid_to_str_ftype core_pid_to_str) | |
3747 | { | |
3748 | gdbarch->core_pid_to_str = core_pid_to_str; | |
3749 | } | |
3750 | ||
4dfc5dbc JB |
3751 | int |
3752 | gdbarch_core_thread_name_p (struct gdbarch *gdbarch) | |
3753 | { | |
3754 | gdb_assert (gdbarch != NULL); | |
3755 | return gdbarch->core_thread_name != NULL; | |
3756 | } | |
3757 | ||
3758 | const char * | |
3759 | gdbarch_core_thread_name (struct gdbarch *gdbarch, struct thread_info *thr) | |
3760 | { | |
3761 | gdb_assert (gdbarch != NULL); | |
3762 | gdb_assert (gdbarch->core_thread_name != NULL); | |
3763 | if (gdbarch_debug >= 2) | |
3764 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_thread_name called\n"); | |
3765 | return gdbarch->core_thread_name (gdbarch, thr); | |
3766 | } | |
3767 | ||
3768 | void | |
3769 | set_gdbarch_core_thread_name (struct gdbarch *gdbarch, | |
3770 | gdbarch_core_thread_name_ftype core_thread_name) | |
3771 | { | |
3772 | gdbarch->core_thread_name = core_thread_name; | |
3773 | } | |
3774 | ||
382b69bb JB |
3775 | int |
3776 | gdbarch_core_xfer_siginfo_p (struct gdbarch *gdbarch) | |
3777 | { | |
3778 | gdb_assert (gdbarch != NULL); | |
3779 | return gdbarch->core_xfer_siginfo != NULL; | |
3780 | } | |
3781 | ||
3782 | LONGEST | |
3783 | gdbarch_core_xfer_siginfo (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len) | |
3784 | { | |
3785 | gdb_assert (gdbarch != NULL); | |
3786 | gdb_assert (gdbarch->core_xfer_siginfo != NULL); | |
3787 | if (gdbarch_debug >= 2) | |
3788 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_siginfo called\n"); | |
3789 | return gdbarch->core_xfer_siginfo (gdbarch, readbuf, offset, len); | |
3790 | } | |
3791 | ||
3792 | void | |
3793 | set_gdbarch_core_xfer_siginfo (struct gdbarch *gdbarch, | |
3794 | gdbarch_core_xfer_siginfo_ftype core_xfer_siginfo) | |
3795 | { | |
3796 | gdbarch->core_xfer_siginfo = core_xfer_siginfo; | |
3797 | } | |
3798 | ||
a78c2d62 UW |
3799 | int |
3800 | gdbarch_gcore_bfd_target_p (struct gdbarch *gdbarch) | |
3801 | { | |
3802 | gdb_assert (gdbarch != NULL); | |
3803 | return gdbarch->gcore_bfd_target != 0; | |
3804 | } | |
3805 | ||
3806 | const char * | |
3807 | gdbarch_gcore_bfd_target (struct gdbarch *gdbarch) | |
3808 | { | |
3809 | gdb_assert (gdbarch != NULL); | |
3810 | /* Check variable changed from pre-default. */ | |
3811 | gdb_assert (gdbarch->gcore_bfd_target != 0); | |
3812 | if (gdbarch_debug >= 2) | |
3813 | fprintf_unfiltered (gdb_stdlog, "gdbarch_gcore_bfd_target called\n"); | |
3814 | return gdbarch->gcore_bfd_target; | |
3815 | } | |
3816 | ||
3817 | void | |
3818 | set_gdbarch_gcore_bfd_target (struct gdbarch *gdbarch, | |
3819 | const char * gcore_bfd_target) | |
3820 | { | |
3821 | gdbarch->gcore_bfd_target = gcore_bfd_target; | |
3822 | } | |
3823 | ||
0d5de010 DJ |
3824 | int |
3825 | gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch) | |
3826 | { | |
3827 | gdb_assert (gdbarch != NULL); | |
3828 | /* Skip verify of vtable_function_descriptors, invalid_p == 0 */ | |
3829 | if (gdbarch_debug >= 2) | |
3830 | fprintf_unfiltered (gdb_stdlog, "gdbarch_vtable_function_descriptors called\n"); | |
3831 | return gdbarch->vtable_function_descriptors; | |
3832 | } | |
3833 | ||
3834 | void | |
3835 | set_gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch, | |
3836 | int vtable_function_descriptors) | |
3837 | { | |
3838 | gdbarch->vtable_function_descriptors = vtable_function_descriptors; | |
3839 | } | |
3840 | ||
3841 | int | |
3842 | gdbarch_vbit_in_delta (struct gdbarch *gdbarch) | |
3843 | { | |
3844 | gdb_assert (gdbarch != NULL); | |
3845 | /* Skip verify of vbit_in_delta, invalid_p == 0 */ | |
3846 | if (gdbarch_debug >= 2) | |
3847 | fprintf_unfiltered (gdb_stdlog, "gdbarch_vbit_in_delta called\n"); | |
3848 | return gdbarch->vbit_in_delta; | |
3849 | } | |
3850 | ||
3851 | void | |
3852 | set_gdbarch_vbit_in_delta (struct gdbarch *gdbarch, | |
3853 | int vbit_in_delta) | |
3854 | { | |
3855 | gdbarch->vbit_in_delta = vbit_in_delta; | |
3856 | } | |
3857 | ||
6d350bb5 UW |
3858 | void |
3859 | gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch, struct regcache *regcache) | |
3860 | { | |
3861 | gdb_assert (gdbarch != NULL); | |
3862 | gdb_assert (gdbarch->skip_permanent_breakpoint != NULL); | |
3863 | if (gdbarch_debug >= 2) | |
3864 | fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_permanent_breakpoint called\n"); | |
3865 | gdbarch->skip_permanent_breakpoint (regcache); | |
3866 | } | |
3867 | ||
3868 | void | |
3869 | set_gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch, | |
3870 | gdbarch_skip_permanent_breakpoint_ftype skip_permanent_breakpoint) | |
3871 | { | |
3872 | gdbarch->skip_permanent_breakpoint = skip_permanent_breakpoint; | |
3873 | } | |
3874 | ||
237fc4c9 PA |
3875 | int |
3876 | gdbarch_max_insn_length_p (struct gdbarch *gdbarch) | |
3877 | { | |
3878 | gdb_assert (gdbarch != NULL); | |
3879 | return gdbarch->max_insn_length != 0; | |
3880 | } | |
3881 | ||
3882 | ULONGEST | |
3883 | gdbarch_max_insn_length (struct gdbarch *gdbarch) | |
3884 | { | |
3885 | gdb_assert (gdbarch != NULL); | |
3886 | /* Check variable changed from pre-default. */ | |
3887 | gdb_assert (gdbarch->max_insn_length != 0); | |
3888 | if (gdbarch_debug >= 2) | |
3889 | fprintf_unfiltered (gdb_stdlog, "gdbarch_max_insn_length called\n"); | |
3890 | return gdbarch->max_insn_length; | |
3891 | } | |
3892 | ||
3893 | void | |
3894 | set_gdbarch_max_insn_length (struct gdbarch *gdbarch, | |
3895 | ULONGEST max_insn_length) | |
3896 | { | |
3897 | gdbarch->max_insn_length = max_insn_length; | |
3898 | } | |
3899 | ||
3900 | int | |
3901 | gdbarch_displaced_step_copy_insn_p (struct gdbarch *gdbarch) | |
3902 | { | |
3903 | gdb_assert (gdbarch != NULL); | |
3904 | return gdbarch->displaced_step_copy_insn != NULL; | |
3905 | } | |
3906 | ||
3907 | struct displaced_step_closure * | |
3908 | gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, CORE_ADDR from, CORE_ADDR to, struct regcache *regs) | |
3909 | { | |
3910 | gdb_assert (gdbarch != NULL); | |
3911 | gdb_assert (gdbarch->displaced_step_copy_insn != NULL); | |
3912 | if (gdbarch_debug >= 2) | |
3913 | fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_copy_insn called\n"); | |
3914 | return gdbarch->displaced_step_copy_insn (gdbarch, from, to, regs); | |
3915 | } | |
3916 | ||
3917 | void | |
3918 | set_gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, | |
3919 | gdbarch_displaced_step_copy_insn_ftype displaced_step_copy_insn) | |
3920 | { | |
3921 | gdbarch->displaced_step_copy_insn = displaced_step_copy_insn; | |
3922 | } | |
3923 | ||
99e40580 UW |
3924 | int |
3925 | gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, struct displaced_step_closure *closure) | |
3926 | { | |
3927 | gdb_assert (gdbarch != NULL); | |
3928 | gdb_assert (gdbarch->displaced_step_hw_singlestep != NULL); | |
3929 | if (gdbarch_debug >= 2) | |
3930 | fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_hw_singlestep called\n"); | |
3931 | return gdbarch->displaced_step_hw_singlestep (gdbarch, closure); | |
3932 | } | |
3933 | ||
3934 | void | |
3935 | set_gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, | |
3936 | gdbarch_displaced_step_hw_singlestep_ftype displaced_step_hw_singlestep) | |
3937 | { | |
3938 | gdbarch->displaced_step_hw_singlestep = displaced_step_hw_singlestep; | |
3939 | } | |
3940 | ||
237fc4c9 PA |
3941 | int |
3942 | gdbarch_displaced_step_fixup_p (struct gdbarch *gdbarch) | |
3943 | { | |
3944 | gdb_assert (gdbarch != NULL); | |
3945 | return gdbarch->displaced_step_fixup != NULL; | |
3946 | } | |
3947 | ||
3948 | void | |
3949 | gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, struct displaced_step_closure *closure, CORE_ADDR from, CORE_ADDR to, struct regcache *regs) | |
3950 | { | |
3951 | gdb_assert (gdbarch != NULL); | |
3952 | gdb_assert (gdbarch->displaced_step_fixup != NULL); | |
3953 | /* Do not check predicate: gdbarch->displaced_step_fixup != NULL, allow call. */ | |
3954 | if (gdbarch_debug >= 2) | |
3955 | fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_fixup called\n"); | |
3956 | gdbarch->displaced_step_fixup (gdbarch, closure, from, to, regs); | |
3957 | } | |
3958 | ||
3959 | void | |
3960 | set_gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, | |
3961 | gdbarch_displaced_step_fixup_ftype displaced_step_fixup) | |
3962 | { | |
3963 | gdbarch->displaced_step_fixup = displaced_step_fixup; | |
3964 | } | |
3965 | ||
237fc4c9 PA |
3966 | CORE_ADDR |
3967 | gdbarch_displaced_step_location (struct gdbarch *gdbarch) | |
3968 | { | |
3969 | gdb_assert (gdbarch != NULL); | |
3970 | gdb_assert (gdbarch->displaced_step_location != NULL); | |
3971 | if (gdbarch_debug >= 2) | |
3972 | fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_location called\n"); | |
3973 | return gdbarch->displaced_step_location (gdbarch); | |
3974 | } | |
3975 | ||
3976 | void | |
3977 | set_gdbarch_displaced_step_location (struct gdbarch *gdbarch, | |
3978 | gdbarch_displaced_step_location_ftype displaced_step_location) | |
3979 | { | |
3980 | gdbarch->displaced_step_location = displaced_step_location; | |
3981 | } | |
3982 | ||
dde08ee1 PA |
3983 | int |
3984 | gdbarch_relocate_instruction_p (struct gdbarch *gdbarch) | |
3985 | { | |
3986 | gdb_assert (gdbarch != NULL); | |
3987 | return gdbarch->relocate_instruction != NULL; | |
3988 | } | |
3989 | ||
3990 | void | |
3991 | gdbarch_relocate_instruction (struct gdbarch *gdbarch, CORE_ADDR *to, CORE_ADDR from) | |
3992 | { | |
3993 | gdb_assert (gdbarch != NULL); | |
3994 | gdb_assert (gdbarch->relocate_instruction != NULL); | |
3995 | /* Do not check predicate: gdbarch->relocate_instruction != NULL, allow call. */ | |
3996 | if (gdbarch_debug >= 2) | |
3997 | fprintf_unfiltered (gdb_stdlog, "gdbarch_relocate_instruction called\n"); | |
3998 | gdbarch->relocate_instruction (gdbarch, to, from); | |
3999 | } | |
4000 | ||
4001 | void | |
4002 | set_gdbarch_relocate_instruction (struct gdbarch *gdbarch, | |
4003 | gdbarch_relocate_instruction_ftype relocate_instruction) | |
4004 | { | |
4005 | gdbarch->relocate_instruction = relocate_instruction; | |
4006 | } | |
4007 | ||
1c772458 UW |
4008 | int |
4009 | gdbarch_overlay_update_p (struct gdbarch *gdbarch) | |
4010 | { | |
4011 | gdb_assert (gdbarch != NULL); | |
4012 | return gdbarch->overlay_update != NULL; | |
4013 | } | |
4014 | ||
4015 | void | |
4016 | gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect) | |
4017 | { | |
4018 | gdb_assert (gdbarch != NULL); | |
4019 | gdb_assert (gdbarch->overlay_update != NULL); | |
4020 | if (gdbarch_debug >= 2) | |
4021 | fprintf_unfiltered (gdb_stdlog, "gdbarch_overlay_update called\n"); | |
4022 | gdbarch->overlay_update (osect); | |
4023 | } | |
4024 | ||
4025 | void | |
4026 | set_gdbarch_overlay_update (struct gdbarch *gdbarch, | |
4027 | gdbarch_overlay_update_ftype overlay_update) | |
4028 | { | |
4029 | gdbarch->overlay_update = overlay_update; | |
4030 | } | |
4031 | ||
4eb0ad19 DJ |
4032 | int |
4033 | gdbarch_core_read_description_p (struct gdbarch *gdbarch) | |
4034 | { | |
4035 | gdb_assert (gdbarch != NULL); | |
4036 | return gdbarch->core_read_description != NULL; | |
4037 | } | |
4038 | ||
4039 | const struct target_desc * | |
4040 | gdbarch_core_read_description (struct gdbarch *gdbarch, struct target_ops *target, bfd *abfd) | |
4041 | { | |
4042 | gdb_assert (gdbarch != NULL); | |
4043 | gdb_assert (gdbarch->core_read_description != NULL); | |
4044 | if (gdbarch_debug >= 2) | |
4045 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_read_description called\n"); | |
4046 | return gdbarch->core_read_description (gdbarch, target, abfd); | |
4047 | } | |
4048 | ||
4049 | void | |
4050 | set_gdbarch_core_read_description (struct gdbarch *gdbarch, | |
4051 | gdbarch_core_read_description_ftype core_read_description) | |
4052 | { | |
4053 | gdbarch->core_read_description = core_read_description; | |
4054 | } | |
4055 | ||
149ad273 UW |
4056 | int |
4057 | gdbarch_static_transform_name_p (struct gdbarch *gdbarch) | |
4058 | { | |
4059 | gdb_assert (gdbarch != NULL); | |
4060 | return gdbarch->static_transform_name != NULL; | |
4061 | } | |
4062 | ||
0d5cff50 DE |
4063 | const char * |
4064 | gdbarch_static_transform_name (struct gdbarch *gdbarch, const char *name) | |
149ad273 UW |
4065 | { |
4066 | gdb_assert (gdbarch != NULL); | |
4067 | gdb_assert (gdbarch->static_transform_name != NULL); | |
4068 | if (gdbarch_debug >= 2) | |
4069 | fprintf_unfiltered (gdb_stdlog, "gdbarch_static_transform_name called\n"); | |
4070 | return gdbarch->static_transform_name (name); | |
4071 | } | |
4072 | ||
4073 | void | |
4074 | set_gdbarch_static_transform_name (struct gdbarch *gdbarch, | |
4075 | gdbarch_static_transform_name_ftype static_transform_name) | |
4076 | { | |
4077 | gdbarch->static_transform_name = static_transform_name; | |
4078 | } | |
4079 | ||
203c3895 UW |
4080 | int |
4081 | gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch) | |
4082 | { | |
4083 | gdb_assert (gdbarch != NULL); | |
4084 | /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */ | |
4085 | if (gdbarch_debug >= 2) | |
4086 | fprintf_unfiltered (gdb_stdlog, "gdbarch_sofun_address_maybe_missing called\n"); | |
4087 | return gdbarch->sofun_address_maybe_missing; | |
4088 | } | |
4089 | ||
4090 | void | |
4091 | set_gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch, | |
4092 | int sofun_address_maybe_missing) | |
4093 | { | |
4094 | gdbarch->sofun_address_maybe_missing = sofun_address_maybe_missing; | |
4095 | } | |
4096 | ||
0508c3ec HZ |
4097 | int |
4098 | gdbarch_process_record_p (struct gdbarch *gdbarch) | |
4099 | { | |
4100 | gdb_assert (gdbarch != NULL); | |
4101 | return gdbarch->process_record != NULL; | |
4102 | } | |
4103 | ||
4104 | int | |
4105 | gdbarch_process_record (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr) | |
4106 | { | |
4107 | gdb_assert (gdbarch != NULL); | |
4108 | gdb_assert (gdbarch->process_record != NULL); | |
4109 | if (gdbarch_debug >= 2) | |
4110 | fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record called\n"); | |
4111 | return gdbarch->process_record (gdbarch, regcache, addr); | |
4112 | } | |
4113 | ||
4114 | void | |
4115 | set_gdbarch_process_record (struct gdbarch *gdbarch, | |
4116 | gdbarch_process_record_ftype process_record) | |
4117 | { | |
4118 | gdbarch->process_record = process_record; | |
4119 | } | |
4120 | ||
3846b520 HZ |
4121 | int |
4122 | gdbarch_process_record_signal_p (struct gdbarch *gdbarch) | |
4123 | { | |
4124 | gdb_assert (gdbarch != NULL); | |
4125 | return gdbarch->process_record_signal != NULL; | |
4126 | } | |
4127 | ||
4128 | int | |
2ea28649 | 4129 | gdbarch_process_record_signal (struct gdbarch *gdbarch, struct regcache *regcache, enum gdb_signal signal) |
3846b520 HZ |
4130 | { |
4131 | gdb_assert (gdbarch != NULL); | |
4132 | gdb_assert (gdbarch->process_record_signal != NULL); | |
4133 | if (gdbarch_debug >= 2) | |
4134 | fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record_signal called\n"); | |
4135 | return gdbarch->process_record_signal (gdbarch, regcache, signal); | |
4136 | } | |
4137 | ||
4138 | void | |
4139 | set_gdbarch_process_record_signal (struct gdbarch *gdbarch, | |
4140 | gdbarch_process_record_signal_ftype process_record_signal) | |
4141 | { | |
4142 | gdbarch->process_record_signal = process_record_signal; | |
4143 | } | |
4144 | ||
1f8cf220 PA |
4145 | int |
4146 | gdbarch_gdb_signal_from_target_p (struct gdbarch *gdbarch) | |
4147 | { | |
4148 | gdb_assert (gdbarch != NULL); | |
4149 | return gdbarch->gdb_signal_from_target != NULL; | |
4150 | } | |
4151 | ||
2ea28649 | 4152 | enum gdb_signal |
22203bbf | 4153 | gdbarch_gdb_signal_from_target (struct gdbarch *gdbarch, int signo) |
1cded358 AR |
4154 | { |
4155 | gdb_assert (gdbarch != NULL); | |
22203bbf | 4156 | gdb_assert (gdbarch->gdb_signal_from_target != NULL); |
1cded358 | 4157 | if (gdbarch_debug >= 2) |
22203bbf PA |
4158 | fprintf_unfiltered (gdb_stdlog, "gdbarch_gdb_signal_from_target called\n"); |
4159 | return gdbarch->gdb_signal_from_target (gdbarch, signo); | |
1cded358 AR |
4160 | } |
4161 | ||
4162 | void | |
22203bbf PA |
4163 | set_gdbarch_gdb_signal_from_target (struct gdbarch *gdbarch, |
4164 | gdbarch_gdb_signal_from_target_ftype gdb_signal_from_target) | |
1cded358 | 4165 | { |
22203bbf | 4166 | gdbarch->gdb_signal_from_target = gdb_signal_from_target; |
1cded358 AR |
4167 | } |
4168 | ||
eb14d406 SDJ |
4169 | int |
4170 | gdbarch_gdb_signal_to_target_p (struct gdbarch *gdbarch) | |
4171 | { | |
4172 | gdb_assert (gdbarch != NULL); | |
4173 | return gdbarch->gdb_signal_to_target != NULL; | |
4174 | } | |
4175 | ||
4176 | int | |
4177 | gdbarch_gdb_signal_to_target (struct gdbarch *gdbarch, enum gdb_signal signal) | |
4178 | { | |
4179 | gdb_assert (gdbarch != NULL); | |
4180 | gdb_assert (gdbarch->gdb_signal_to_target != NULL); | |
4181 | if (gdbarch_debug >= 2) | |
4182 | fprintf_unfiltered (gdb_stdlog, "gdbarch_gdb_signal_to_target called\n"); | |
4183 | return gdbarch->gdb_signal_to_target (gdbarch, signal); | |
4184 | } | |
4185 | ||
4186 | void | |
4187 | set_gdbarch_gdb_signal_to_target (struct gdbarch *gdbarch, | |
4188 | gdbarch_gdb_signal_to_target_ftype gdb_signal_to_target) | |
4189 | { | |
4190 | gdbarch->gdb_signal_to_target = gdb_signal_to_target; | |
4191 | } | |
4192 | ||
4aa995e1 PA |
4193 | int |
4194 | gdbarch_get_siginfo_type_p (struct gdbarch *gdbarch) | |
4195 | { | |
4196 | gdb_assert (gdbarch != NULL); | |
4197 | return gdbarch->get_siginfo_type != NULL; | |
4198 | } | |
4199 | ||
4200 | struct type * | |
4201 | gdbarch_get_siginfo_type (struct gdbarch *gdbarch) | |
4202 | { | |
4203 | gdb_assert (gdbarch != NULL); | |
4204 | gdb_assert (gdbarch->get_siginfo_type != NULL); | |
4205 | if (gdbarch_debug >= 2) | |
4206 | fprintf_unfiltered (gdb_stdlog, "gdbarch_get_siginfo_type called\n"); | |
4207 | return gdbarch->get_siginfo_type (gdbarch); | |
4208 | } | |
4209 | ||
4210 | void | |
4211 | set_gdbarch_get_siginfo_type (struct gdbarch *gdbarch, | |
4212 | gdbarch_get_siginfo_type_ftype get_siginfo_type) | |
4213 | { | |
4214 | gdbarch->get_siginfo_type = get_siginfo_type; | |
4215 | } | |
4216 | ||
60c5725c DJ |
4217 | int |
4218 | gdbarch_record_special_symbol_p (struct gdbarch *gdbarch) | |
4219 | { | |
4220 | gdb_assert (gdbarch != NULL); | |
4221 | return gdbarch->record_special_symbol != NULL; | |
4222 | } | |
4223 | ||
4224 | void | |
4225 | gdbarch_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile, asymbol *sym) | |
4226 | { | |
4227 | gdb_assert (gdbarch != NULL); | |
4228 | gdb_assert (gdbarch->record_special_symbol != NULL); | |
4229 | if (gdbarch_debug >= 2) | |
4230 | fprintf_unfiltered (gdb_stdlog, "gdbarch_record_special_symbol called\n"); | |
4231 | gdbarch->record_special_symbol (gdbarch, objfile, sym); | |
4232 | } | |
4233 | ||
4234 | void | |
4235 | set_gdbarch_record_special_symbol (struct gdbarch *gdbarch, | |
4236 | gdbarch_record_special_symbol_ftype record_special_symbol) | |
4237 | { | |
4238 | gdbarch->record_special_symbol = record_special_symbol; | |
4239 | } | |
4240 | ||
a96d9b2e SDJ |
4241 | int |
4242 | gdbarch_get_syscall_number_p (struct gdbarch *gdbarch) | |
4243 | { | |
4244 | gdb_assert (gdbarch != NULL); | |
4245 | return gdbarch->get_syscall_number != NULL; | |
4246 | } | |
4247 | ||
4248 | LONGEST | |
4249 | gdbarch_get_syscall_number (struct gdbarch *gdbarch, ptid_t ptid) | |
4250 | { | |
4251 | gdb_assert (gdbarch != NULL); | |
4252 | gdb_assert (gdbarch->get_syscall_number != NULL); | |
4253 | if (gdbarch_debug >= 2) | |
4254 | fprintf_unfiltered (gdb_stdlog, "gdbarch_get_syscall_number called\n"); | |
4255 | return gdbarch->get_syscall_number (gdbarch, ptid); | |
4256 | } | |
4257 | ||
4258 | void | |
4259 | set_gdbarch_get_syscall_number (struct gdbarch *gdbarch, | |
4260 | gdbarch_get_syscall_number_ftype get_syscall_number) | |
4261 | { | |
4262 | gdbarch->get_syscall_number = get_syscall_number; | |
4263 | } | |
4264 | ||
458c8db8 SDJ |
4265 | const char * |
4266 | gdbarch_xml_syscall_file (struct gdbarch *gdbarch) | |
4267 | { | |
4268 | gdb_assert (gdbarch != NULL); | |
4269 | /* Skip verify of xml_syscall_file, invalid_p == 0 */ | |
4270 | if (gdbarch_debug >= 2) | |
4271 | fprintf_unfiltered (gdb_stdlog, "gdbarch_xml_syscall_file called\n"); | |
4272 | return gdbarch->xml_syscall_file; | |
4273 | } | |
4274 | ||
4275 | void | |
4276 | set_gdbarch_xml_syscall_file (struct gdbarch *gdbarch, | |
4277 | const char * xml_syscall_file) | |
4278 | { | |
4279 | gdbarch->xml_syscall_file = xml_syscall_file; | |
4280 | } | |
4281 | ||
4282 | struct syscalls_info * | |
4283 | gdbarch_syscalls_info (struct gdbarch *gdbarch) | |
4284 | { | |
4285 | gdb_assert (gdbarch != NULL); | |
4286 | /* Skip verify of syscalls_info, invalid_p == 0 */ | |
4287 | if (gdbarch_debug >= 2) | |
4288 | fprintf_unfiltered (gdb_stdlog, "gdbarch_syscalls_info called\n"); | |
4289 | return gdbarch->syscalls_info; | |
4290 | } | |
4291 | ||
4292 | void | |
4293 | set_gdbarch_syscalls_info (struct gdbarch *gdbarch, | |
4294 | struct syscalls_info * syscalls_info) | |
4295 | { | |
4296 | gdbarch->syscalls_info = syscalls_info; | |
4297 | } | |
4298 | ||
05c0465e SDJ |
4299 | const char *const * |
4300 | gdbarch_stap_integer_prefixes (struct gdbarch *gdbarch) | |
55aa24fb SDJ |
4301 | { |
4302 | gdb_assert (gdbarch != NULL); | |
05c0465e | 4303 | /* Skip verify of stap_integer_prefixes, invalid_p == 0 */ |
55aa24fb | 4304 | if (gdbarch_debug >= 2) |
05c0465e SDJ |
4305 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_prefixes called\n"); |
4306 | return gdbarch->stap_integer_prefixes; | |
55aa24fb SDJ |
4307 | } |
4308 | ||
4309 | void | |
05c0465e SDJ |
4310 | set_gdbarch_stap_integer_prefixes (struct gdbarch *gdbarch, |
4311 | const char *const * stap_integer_prefixes) | |
55aa24fb | 4312 | { |
05c0465e | 4313 | gdbarch->stap_integer_prefixes = stap_integer_prefixes; |
55aa24fb SDJ |
4314 | } |
4315 | ||
05c0465e SDJ |
4316 | const char *const * |
4317 | gdbarch_stap_integer_suffixes (struct gdbarch *gdbarch) | |
55aa24fb SDJ |
4318 | { |
4319 | gdb_assert (gdbarch != NULL); | |
05c0465e | 4320 | /* Skip verify of stap_integer_suffixes, invalid_p == 0 */ |
55aa24fb | 4321 | if (gdbarch_debug >= 2) |
05c0465e SDJ |
4322 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_suffixes called\n"); |
4323 | return gdbarch->stap_integer_suffixes; | |
55aa24fb SDJ |
4324 | } |
4325 | ||
4326 | void | |
05c0465e SDJ |
4327 | set_gdbarch_stap_integer_suffixes (struct gdbarch *gdbarch, |
4328 | const char *const * stap_integer_suffixes) | |
55aa24fb | 4329 | { |
05c0465e | 4330 | gdbarch->stap_integer_suffixes = stap_integer_suffixes; |
55aa24fb SDJ |
4331 | } |
4332 | ||
05c0465e SDJ |
4333 | const char *const * |
4334 | gdbarch_stap_register_prefixes (struct gdbarch *gdbarch) | |
55aa24fb SDJ |
4335 | { |
4336 | gdb_assert (gdbarch != NULL); | |
05c0465e | 4337 | /* Skip verify of stap_register_prefixes, invalid_p == 0 */ |
55aa24fb | 4338 | if (gdbarch_debug >= 2) |
05c0465e SDJ |
4339 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_prefixes called\n"); |
4340 | return gdbarch->stap_register_prefixes; | |
55aa24fb SDJ |
4341 | } |
4342 | ||
4343 | void | |
05c0465e SDJ |
4344 | set_gdbarch_stap_register_prefixes (struct gdbarch *gdbarch, |
4345 | const char *const * stap_register_prefixes) | |
55aa24fb | 4346 | { |
05c0465e | 4347 | gdbarch->stap_register_prefixes = stap_register_prefixes; |
55aa24fb SDJ |
4348 | } |
4349 | ||
05c0465e SDJ |
4350 | const char *const * |
4351 | gdbarch_stap_register_suffixes (struct gdbarch *gdbarch) | |
55aa24fb SDJ |
4352 | { |
4353 | gdb_assert (gdbarch != NULL); | |
05c0465e | 4354 | /* Skip verify of stap_register_suffixes, invalid_p == 0 */ |
55aa24fb | 4355 | if (gdbarch_debug >= 2) |
05c0465e SDJ |
4356 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_suffixes called\n"); |
4357 | return gdbarch->stap_register_suffixes; | |
55aa24fb SDJ |
4358 | } |
4359 | ||
4360 | void | |
05c0465e SDJ |
4361 | set_gdbarch_stap_register_suffixes (struct gdbarch *gdbarch, |
4362 | const char *const * stap_register_suffixes) | |
55aa24fb | 4363 | { |
05c0465e | 4364 | gdbarch->stap_register_suffixes = stap_register_suffixes; |
55aa24fb SDJ |
4365 | } |
4366 | ||
05c0465e SDJ |
4367 | const char *const * |
4368 | gdbarch_stap_register_indirection_prefixes (struct gdbarch *gdbarch) | |
55aa24fb SDJ |
4369 | { |
4370 | gdb_assert (gdbarch != NULL); | |
05c0465e | 4371 | /* Skip verify of stap_register_indirection_prefixes, invalid_p == 0 */ |
55aa24fb | 4372 | if (gdbarch_debug >= 2) |
05c0465e SDJ |
4373 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_prefixes called\n"); |
4374 | return gdbarch->stap_register_indirection_prefixes; | |
55aa24fb SDJ |
4375 | } |
4376 | ||
4377 | void | |
05c0465e SDJ |
4378 | set_gdbarch_stap_register_indirection_prefixes (struct gdbarch *gdbarch, |
4379 | const char *const * stap_register_indirection_prefixes) | |
55aa24fb | 4380 | { |
05c0465e | 4381 | gdbarch->stap_register_indirection_prefixes = stap_register_indirection_prefixes; |
55aa24fb SDJ |
4382 | } |
4383 | ||
05c0465e SDJ |
4384 | const char *const * |
4385 | gdbarch_stap_register_indirection_suffixes (struct gdbarch *gdbarch) | |
55aa24fb SDJ |
4386 | { |
4387 | gdb_assert (gdbarch != NULL); | |
05c0465e | 4388 | /* Skip verify of stap_register_indirection_suffixes, invalid_p == 0 */ |
55aa24fb | 4389 | if (gdbarch_debug >= 2) |
05c0465e SDJ |
4390 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_suffixes called\n"); |
4391 | return gdbarch->stap_register_indirection_suffixes; | |
55aa24fb SDJ |
4392 | } |
4393 | ||
4394 | void | |
05c0465e SDJ |
4395 | set_gdbarch_stap_register_indirection_suffixes (struct gdbarch *gdbarch, |
4396 | const char *const * stap_register_indirection_suffixes) | |
55aa24fb | 4397 | { |
05c0465e | 4398 | gdbarch->stap_register_indirection_suffixes = stap_register_indirection_suffixes; |
55aa24fb SDJ |
4399 | } |
4400 | ||
4401 | const char * | |
4402 | gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch) | |
4403 | { | |
4404 | gdb_assert (gdbarch != NULL); | |
4405 | /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */ | |
4406 | if (gdbarch_debug >= 2) | |
4407 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_prefix called\n"); | |
4408 | return gdbarch->stap_gdb_register_prefix; | |
4409 | } | |
4410 | ||
4411 | void | |
4412 | set_gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch, | |
4413 | const char * stap_gdb_register_prefix) | |
4414 | { | |
4415 | gdbarch->stap_gdb_register_prefix = stap_gdb_register_prefix; | |
4416 | } | |
4417 | ||
4418 | const char * | |
4419 | gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch) | |
4420 | { | |
4421 | gdb_assert (gdbarch != NULL); | |
4422 | /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */ | |
4423 | if (gdbarch_debug >= 2) | |
4424 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_suffix called\n"); | |
4425 | return gdbarch->stap_gdb_register_suffix; | |
4426 | } | |
4427 | ||
4428 | void | |
4429 | set_gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch, | |
4430 | const char * stap_gdb_register_suffix) | |
4431 | { | |
4432 | gdbarch->stap_gdb_register_suffix = stap_gdb_register_suffix; | |
4433 | } | |
4434 | ||
4435 | int | |
4436 | gdbarch_stap_is_single_operand_p (struct gdbarch *gdbarch) | |
4437 | { | |
4438 | gdb_assert (gdbarch != NULL); | |
4439 | return gdbarch->stap_is_single_operand != NULL; | |
4440 | } | |
4441 | ||
4442 | int | |
4443 | gdbarch_stap_is_single_operand (struct gdbarch *gdbarch, const char *s) | |
4444 | { | |
4445 | gdb_assert (gdbarch != NULL); | |
4446 | gdb_assert (gdbarch->stap_is_single_operand != NULL); | |
4447 | if (gdbarch_debug >= 2) | |
4448 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_is_single_operand called\n"); | |
4449 | return gdbarch->stap_is_single_operand (gdbarch, s); | |
4450 | } | |
4451 | ||
4452 | void | |
4453 | set_gdbarch_stap_is_single_operand (struct gdbarch *gdbarch, | |
4454 | gdbarch_stap_is_single_operand_ftype stap_is_single_operand) | |
4455 | { | |
4456 | gdbarch->stap_is_single_operand = stap_is_single_operand; | |
4457 | } | |
4458 | ||
4459 | int | |
4460 | gdbarch_stap_parse_special_token_p (struct gdbarch *gdbarch) | |
4461 | { | |
4462 | gdb_assert (gdbarch != NULL); | |
4463 | return gdbarch->stap_parse_special_token != NULL; | |
4464 | } | |
4465 | ||
4466 | int | |
4467 | gdbarch_stap_parse_special_token (struct gdbarch *gdbarch, struct stap_parse_info *p) | |
4468 | { | |
4469 | gdb_assert (gdbarch != NULL); | |
4470 | gdb_assert (gdbarch->stap_parse_special_token != NULL); | |
4471 | if (gdbarch_debug >= 2) | |
4472 | fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_parse_special_token called\n"); | |
4473 | return gdbarch->stap_parse_special_token (gdbarch, p); | |
4474 | } | |
4475 | ||
4476 | void | |
4477 | set_gdbarch_stap_parse_special_token (struct gdbarch *gdbarch, | |
4478 | gdbarch_stap_parse_special_token_ftype stap_parse_special_token) | |
4479 | { | |
4480 | gdbarch->stap_parse_special_token = stap_parse_special_token; | |
4481 | } | |
4482 | ||
8b367e17 JM |
4483 | int |
4484 | gdbarch_dtrace_parse_probe_argument_p (struct gdbarch *gdbarch) | |
4485 | { | |
4486 | gdb_assert (gdbarch != NULL); | |
4487 | return gdbarch->dtrace_parse_probe_argument != NULL; | |
4488 | } | |
4489 | ||
4490 | void | |
4491 | gdbarch_dtrace_parse_probe_argument (struct gdbarch *gdbarch, struct parser_state *pstate, int narg) | |
4492 | { | |
4493 | gdb_assert (gdbarch != NULL); | |
4494 | gdb_assert (gdbarch->dtrace_parse_probe_argument != NULL); | |
4495 | if (gdbarch_debug >= 2) | |
4496 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_parse_probe_argument called\n"); | |
4497 | gdbarch->dtrace_parse_probe_argument (gdbarch, pstate, narg); | |
4498 | } | |
4499 | ||
4500 | void | |
4501 | set_gdbarch_dtrace_parse_probe_argument (struct gdbarch *gdbarch, | |
4502 | gdbarch_dtrace_parse_probe_argument_ftype dtrace_parse_probe_argument) | |
4503 | { | |
4504 | gdbarch->dtrace_parse_probe_argument = dtrace_parse_probe_argument; | |
4505 | } | |
4506 | ||
4507 | int | |
4508 | gdbarch_dtrace_probe_is_enabled_p (struct gdbarch *gdbarch) | |
4509 | { | |
4510 | gdb_assert (gdbarch != NULL); | |
4511 | return gdbarch->dtrace_probe_is_enabled != NULL; | |
4512 | } | |
4513 | ||
4514 | int | |
4515 | gdbarch_dtrace_probe_is_enabled (struct gdbarch *gdbarch, CORE_ADDR addr) | |
4516 | { | |
4517 | gdb_assert (gdbarch != NULL); | |
4518 | gdb_assert (gdbarch->dtrace_probe_is_enabled != NULL); | |
4519 | if (gdbarch_debug >= 2) | |
4520 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_probe_is_enabled called\n"); | |
4521 | return gdbarch->dtrace_probe_is_enabled (gdbarch, addr); | |
4522 | } | |
4523 | ||
4524 | void | |
4525 | set_gdbarch_dtrace_probe_is_enabled (struct gdbarch *gdbarch, | |
4526 | gdbarch_dtrace_probe_is_enabled_ftype dtrace_probe_is_enabled) | |
4527 | { | |
4528 | gdbarch->dtrace_probe_is_enabled = dtrace_probe_is_enabled; | |
4529 | } | |
4530 | ||
4531 | int | |
4532 | gdbarch_dtrace_enable_probe_p (struct gdbarch *gdbarch) | |
4533 | { | |
4534 | gdb_assert (gdbarch != NULL); | |
4535 | return gdbarch->dtrace_enable_probe != NULL; | |
4536 | } | |
4537 | ||
4538 | void | |
4539 | gdbarch_dtrace_enable_probe (struct gdbarch *gdbarch, CORE_ADDR addr) | |
4540 | { | |
4541 | gdb_assert (gdbarch != NULL); | |
4542 | gdb_assert (gdbarch->dtrace_enable_probe != NULL); | |
4543 | if (gdbarch_debug >= 2) | |
4544 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_enable_probe called\n"); | |
4545 | gdbarch->dtrace_enable_probe (gdbarch, addr); | |
4546 | } | |
4547 | ||
4548 | void | |
4549 | set_gdbarch_dtrace_enable_probe (struct gdbarch *gdbarch, | |
4550 | gdbarch_dtrace_enable_probe_ftype dtrace_enable_probe) | |
4551 | { | |
4552 | gdbarch->dtrace_enable_probe = dtrace_enable_probe; | |
4553 | } | |
4554 | ||
4555 | int | |
4556 | gdbarch_dtrace_disable_probe_p (struct gdbarch *gdbarch) | |
4557 | { | |
4558 | gdb_assert (gdbarch != NULL); | |
4559 | return gdbarch->dtrace_disable_probe != NULL; | |
4560 | } | |
4561 | ||
4562 | void | |
4563 | gdbarch_dtrace_disable_probe (struct gdbarch *gdbarch, CORE_ADDR addr) | |
4564 | { | |
4565 | gdb_assert (gdbarch != NULL); | |
4566 | gdb_assert (gdbarch->dtrace_disable_probe != NULL); | |
4567 | if (gdbarch_debug >= 2) | |
4568 | fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_disable_probe called\n"); | |
4569 | gdbarch->dtrace_disable_probe (gdbarch, addr); | |
4570 | } | |
4571 | ||
4572 | void | |
4573 | set_gdbarch_dtrace_disable_probe (struct gdbarch *gdbarch, | |
4574 | gdbarch_dtrace_disable_probe_ftype dtrace_disable_probe) | |
4575 | { | |
4576 | gdbarch->dtrace_disable_probe = dtrace_disable_probe; | |
4577 | } | |
4578 | ||
50c71eaf PA |
4579 | int |
4580 | gdbarch_has_global_solist (struct gdbarch *gdbarch) | |
4581 | { | |
4582 | gdb_assert (gdbarch != NULL); | |
4583 | /* Skip verify of has_global_solist, invalid_p == 0 */ | |
4584 | if (gdbarch_debug >= 2) | |
4585 | fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_solist called\n"); | |
4586 | return gdbarch->has_global_solist; | |
4587 | } | |
4588 | ||
4589 | void | |
4590 | set_gdbarch_has_global_solist (struct gdbarch *gdbarch, | |
4591 | int has_global_solist) | |
4592 | { | |
4593 | gdbarch->has_global_solist = has_global_solist; | |
4594 | } | |
4595 | ||
2567c7d9 PA |
4596 | int |
4597 | gdbarch_has_global_breakpoints (struct gdbarch *gdbarch) | |
4598 | { | |
4599 | gdb_assert (gdbarch != NULL); | |
4600 | /* Skip verify of has_global_breakpoints, invalid_p == 0 */ | |
4601 | if (gdbarch_debug >= 2) | |
4602 | fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_breakpoints called\n"); | |
4603 | return gdbarch->has_global_breakpoints; | |
4604 | } | |
4605 | ||
4606 | void | |
4607 | set_gdbarch_has_global_breakpoints (struct gdbarch *gdbarch, | |
4608 | int has_global_breakpoints) | |
4609 | { | |
4610 | gdbarch->has_global_breakpoints = has_global_breakpoints; | |
4611 | } | |
4612 | ||
6c95b8df PA |
4613 | int |
4614 | gdbarch_has_shared_address_space (struct gdbarch *gdbarch) | |
4615 | { | |
4616 | gdb_assert (gdbarch != NULL); | |
4617 | gdb_assert (gdbarch->has_shared_address_space != NULL); | |
4618 | if (gdbarch_debug >= 2) | |
4619 | fprintf_unfiltered (gdb_stdlog, "gdbarch_has_shared_address_space called\n"); | |
4620 | return gdbarch->has_shared_address_space (gdbarch); | |
4621 | } | |
4622 | ||
4623 | void | |
4624 | set_gdbarch_has_shared_address_space (struct gdbarch *gdbarch, | |
4625 | gdbarch_has_shared_address_space_ftype has_shared_address_space) | |
4626 | { | |
4627 | gdbarch->has_shared_address_space = has_shared_address_space; | |
4628 | } | |
4629 | ||
7a697b8d | 4630 | int |
6b940e6a | 4631 | gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr, char **msg) |
7a697b8d SS |
4632 | { |
4633 | gdb_assert (gdbarch != NULL); | |
4634 | gdb_assert (gdbarch->fast_tracepoint_valid_at != NULL); | |
4635 | if (gdbarch_debug >= 2) | |
4636 | fprintf_unfiltered (gdb_stdlog, "gdbarch_fast_tracepoint_valid_at called\n"); | |
6b940e6a | 4637 | return gdbarch->fast_tracepoint_valid_at (gdbarch, addr, msg); |
7a697b8d SS |
4638 | } |
4639 | ||
4640 | void | |
4641 | set_gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch, | |
4642 | gdbarch_fast_tracepoint_valid_at_ftype fast_tracepoint_valid_at) | |
4643 | { | |
4644 | gdbarch->fast_tracepoint_valid_at = fast_tracepoint_valid_at; | |
4645 | } | |
4646 | ||
5f034a78 MK |
4647 | void |
4648 | gdbarch_guess_tracepoint_registers (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr) | |
4649 | { | |
4650 | gdb_assert (gdbarch != NULL); | |
4651 | gdb_assert (gdbarch->guess_tracepoint_registers != NULL); | |
4652 | if (gdbarch_debug >= 2) | |
4653 | fprintf_unfiltered (gdb_stdlog, "gdbarch_guess_tracepoint_registers called\n"); | |
4654 | gdbarch->guess_tracepoint_registers (gdbarch, regcache, addr); | |
4655 | } | |
4656 | ||
4657 | void | |
4658 | set_gdbarch_guess_tracepoint_registers (struct gdbarch *gdbarch, | |
4659 | gdbarch_guess_tracepoint_registers_ftype guess_tracepoint_registers) | |
4660 | { | |
4661 | gdbarch->guess_tracepoint_registers = guess_tracepoint_registers; | |
4662 | } | |
4663 | ||
f870a310 TT |
4664 | const char * |
4665 | gdbarch_auto_charset (struct gdbarch *gdbarch) | |
4666 | { | |
4667 | gdb_assert (gdbarch != NULL); | |
4668 | gdb_assert (gdbarch->auto_charset != NULL); | |
4669 | if (gdbarch_debug >= 2) | |
4670 | fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_charset called\n"); | |
4671 | return gdbarch->auto_charset (); | |
4672 | } | |
4673 | ||
4674 | void | |
4675 | set_gdbarch_auto_charset (struct gdbarch *gdbarch, | |
4676 | gdbarch_auto_charset_ftype auto_charset) | |
4677 | { | |
4678 | gdbarch->auto_charset = auto_charset; | |
4679 | } | |
4680 | ||
4681 | const char * | |
4682 | gdbarch_auto_wide_charset (struct gdbarch *gdbarch) | |
4683 | { | |
4684 | gdb_assert (gdbarch != NULL); | |
4685 | gdb_assert (gdbarch->auto_wide_charset != NULL); | |
4686 | if (gdbarch_debug >= 2) | |
4687 | fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_wide_charset called\n"); | |
4688 | return gdbarch->auto_wide_charset (); | |
4689 | } | |
4690 | ||
4691 | void | |
4692 | set_gdbarch_auto_wide_charset (struct gdbarch *gdbarch, | |
4693 | gdbarch_auto_wide_charset_ftype auto_wide_charset) | |
4694 | { | |
4695 | gdbarch->auto_wide_charset = auto_wide_charset; | |
4696 | } | |
4697 | ||
08105857 PA |
4698 | const char * |
4699 | gdbarch_solib_symbols_extension (struct gdbarch *gdbarch) | |
4700 | { | |
4701 | gdb_assert (gdbarch != NULL); | |
4702 | if (gdbarch_debug >= 2) | |
4703 | fprintf_unfiltered (gdb_stdlog, "gdbarch_solib_symbols_extension called\n"); | |
4704 | return gdbarch->solib_symbols_extension; | |
4705 | } | |
4706 | ||
4707 | void | |
4708 | set_gdbarch_solib_symbols_extension (struct gdbarch *gdbarch, | |
4709 | const char * solib_symbols_extension) | |
4710 | { | |
4711 | gdbarch->solib_symbols_extension = solib_symbols_extension; | |
4712 | } | |
4713 | ||
ab38a727 PA |
4714 | int |
4715 | gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch) | |
4716 | { | |
4717 | gdb_assert (gdbarch != NULL); | |
4718 | /* Skip verify of has_dos_based_file_system, invalid_p == 0 */ | |
4719 | if (gdbarch_debug >= 2) | |
4720 | fprintf_unfiltered (gdb_stdlog, "gdbarch_has_dos_based_file_system called\n"); | |
4721 | return gdbarch->has_dos_based_file_system; | |
4722 | } | |
4723 | ||
4724 | void | |
4725 | set_gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch, | |
4726 | int has_dos_based_file_system) | |
4727 | { | |
4728 | gdbarch->has_dos_based_file_system = has_dos_based_file_system; | |
4729 | } | |
4730 | ||
6710bf39 SS |
4731 | void |
4732 | gdbarch_gen_return_address (struct gdbarch *gdbarch, struct agent_expr *ax, struct axs_value *value, CORE_ADDR scope) | |
4733 | { | |
4734 | gdb_assert (gdbarch != NULL); | |
4735 | gdb_assert (gdbarch->gen_return_address != NULL); | |
4736 | if (gdbarch_debug >= 2) | |
4737 | fprintf_unfiltered (gdb_stdlog, "gdbarch_gen_return_address called\n"); | |
4738 | gdbarch->gen_return_address (gdbarch, ax, value, scope); | |
4739 | } | |
4740 | ||
4741 | void | |
4742 | set_gdbarch_gen_return_address (struct gdbarch *gdbarch, | |
4743 | gdbarch_gen_return_address_ftype gen_return_address) | |
4744 | { | |
4745 | gdbarch->gen_return_address = gen_return_address; | |
4746 | } | |
4747 | ||
3030c96e UW |
4748 | int |
4749 | gdbarch_info_proc_p (struct gdbarch *gdbarch) | |
4750 | { | |
4751 | gdb_assert (gdbarch != NULL); | |
4752 | return gdbarch->info_proc != NULL; | |
4753 | } | |
4754 | ||
4755 | void | |
7bc112c1 | 4756 | gdbarch_info_proc (struct gdbarch *gdbarch, const char *args, enum info_proc_what what) |
3030c96e UW |
4757 | { |
4758 | gdb_assert (gdbarch != NULL); | |
4759 | gdb_assert (gdbarch->info_proc != NULL); | |
4760 | if (gdbarch_debug >= 2) | |
4761 | fprintf_unfiltered (gdb_stdlog, "gdbarch_info_proc called\n"); | |
4762 | gdbarch->info_proc (gdbarch, args, what); | |
4763 | } | |
4764 | ||
4765 | void | |
4766 | set_gdbarch_info_proc (struct gdbarch *gdbarch, | |
4767 | gdbarch_info_proc_ftype info_proc) | |
4768 | { | |
4769 | gdbarch->info_proc = info_proc; | |
4770 | } | |
4771 | ||
451b7c33 TT |
4772 | int |
4773 | gdbarch_core_info_proc_p (struct gdbarch *gdbarch) | |
4774 | { | |
4775 | gdb_assert (gdbarch != NULL); | |
4776 | return gdbarch->core_info_proc != NULL; | |
4777 | } | |
4778 | ||
4779 | void | |
7bc112c1 | 4780 | gdbarch_core_info_proc (struct gdbarch *gdbarch, const char *args, enum info_proc_what what) |
451b7c33 TT |
4781 | { |
4782 | gdb_assert (gdbarch != NULL); | |
4783 | gdb_assert (gdbarch->core_info_proc != NULL); | |
4784 | if (gdbarch_debug >= 2) | |
4785 | fprintf_unfiltered (gdb_stdlog, "gdbarch_core_info_proc called\n"); | |
4786 | gdbarch->core_info_proc (gdbarch, args, what); | |
4787 | } | |
4788 | ||
4789 | void | |
4790 | set_gdbarch_core_info_proc (struct gdbarch *gdbarch, | |
4791 | gdbarch_core_info_proc_ftype core_info_proc) | |
4792 | { | |
4793 | gdbarch->core_info_proc = core_info_proc; | |
4794 | } | |
4795 | ||
19630284 JB |
4796 | void |
4797 | gdbarch_iterate_over_objfiles_in_search_order (struct gdbarch *gdbarch, iterate_over_objfiles_in_search_order_cb_ftype *cb, void *cb_data, struct objfile *current_objfile) | |
4798 | { | |
4799 | gdb_assert (gdbarch != NULL); | |
4800 | gdb_assert (gdbarch->iterate_over_objfiles_in_search_order != NULL); | |
4801 | if (gdbarch_debug >= 2) | |
4802 | fprintf_unfiltered (gdb_stdlog, "gdbarch_iterate_over_objfiles_in_search_order called\n"); | |
4803 | gdbarch->iterate_over_objfiles_in_search_order (gdbarch, cb, cb_data, current_objfile); | |
4804 | } | |
4805 | ||
4806 | void | |
4807 | set_gdbarch_iterate_over_objfiles_in_search_order (struct gdbarch *gdbarch, | |
4808 | gdbarch_iterate_over_objfiles_in_search_order_ftype iterate_over_objfiles_in_search_order) | |
4809 | { | |
4810 | gdbarch->iterate_over_objfiles_in_search_order = iterate_over_objfiles_in_search_order; | |
4811 | } | |
4812 | ||
7e35103a JB |
4813 | struct ravenscar_arch_ops * |
4814 | gdbarch_ravenscar_ops (struct gdbarch *gdbarch) | |
4815 | { | |
4816 | gdb_assert (gdbarch != NULL); | |
4817 | /* Skip verify of ravenscar_ops, invalid_p == 0 */ | |
4818 | if (gdbarch_debug >= 2) | |
4819 | fprintf_unfiltered (gdb_stdlog, "gdbarch_ravenscar_ops called\n"); | |
4820 | return gdbarch->ravenscar_ops; | |
4821 | } | |
4822 | ||
4823 | void | |
4824 | set_gdbarch_ravenscar_ops (struct gdbarch *gdbarch, | |
4825 | struct ravenscar_arch_ops * ravenscar_ops) | |
4826 | { | |
4827 | gdbarch->ravenscar_ops = ravenscar_ops; | |
4828 | } | |
4829 | ||
c2170eef MM |
4830 | int |
4831 | gdbarch_insn_is_call (struct gdbarch *gdbarch, CORE_ADDR addr) | |
4832 | { | |
4833 | gdb_assert (gdbarch != NULL); | |
4834 | gdb_assert (gdbarch->insn_is_call != NULL); | |
4835 | if (gdbarch_debug >= 2) | |
4836 | fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_call called\n"); | |
4837 | return gdbarch->insn_is_call (gdbarch, addr); | |
4838 | } | |
4839 | ||
4840 | void | |
4841 | set_gdbarch_insn_is_call (struct gdbarch *gdbarch, | |
4842 | gdbarch_insn_is_call_ftype insn_is_call) | |
4843 | { | |
4844 | gdbarch->insn_is_call = insn_is_call; | |
4845 | } | |
4846 | ||
4847 | int | |
4848 | gdbarch_insn_is_ret (struct gdbarch *gdbarch, CORE_ADDR addr) | |
4849 | { | |
4850 | gdb_assert (gdbarch != NULL); | |
4851 | gdb_assert (gdbarch->insn_is_ret != NULL); | |
4852 | if (gdbarch_debug >= 2) | |
4853 | fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_ret called\n"); | |
4854 | return gdbarch->insn_is_ret (gdbarch, addr); | |
4855 | } | |
4856 | ||
4857 | void | |
4858 | set_gdbarch_insn_is_ret (struct gdbarch *gdbarch, | |
4859 | gdbarch_insn_is_ret_ftype insn_is_ret) | |
4860 | { | |
4861 | gdbarch->insn_is_ret = insn_is_ret; | |
4862 | } | |
4863 | ||
4864 | int | |
4865 | gdbarch_insn_is_jump (struct gdbarch *gdbarch, CORE_ADDR addr) | |
4866 | { | |
4867 | gdb_assert (gdbarch != NULL); | |
4868 | gdb_assert (gdbarch->insn_is_jump != NULL); | |
4869 | if (gdbarch_debug >= 2) | |
4870 | fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_jump called\n"); | |
4871 | return gdbarch->insn_is_jump (gdbarch, addr); | |
4872 | } | |
4873 | ||
4874 | void | |
4875 | set_gdbarch_insn_is_jump (struct gdbarch *gdbarch, | |
4876 | gdbarch_insn_is_jump_ftype insn_is_jump) | |
4877 | { | |
4878 | gdbarch->insn_is_jump = insn_is_jump; | |
4879 | } | |
4880 | ||
27a48a92 MK |
4881 | int |
4882 | gdbarch_auxv_parse_p (struct gdbarch *gdbarch) | |
4883 | { | |
4884 | gdb_assert (gdbarch != NULL); | |
4885 | return gdbarch->auxv_parse != NULL; | |
4886 | } | |
4887 | ||
4888 | int | |
4889 | gdbarch_auxv_parse (struct gdbarch *gdbarch, gdb_byte **readptr, gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp) | |
4890 | { | |
4891 | gdb_assert (gdbarch != NULL); | |
4892 | gdb_assert (gdbarch->auxv_parse != NULL); | |
4893 | if (gdbarch_debug >= 2) | |
4894 | fprintf_unfiltered (gdb_stdlog, "gdbarch_auxv_parse called\n"); | |
4895 | return gdbarch->auxv_parse (gdbarch, readptr, endptr, typep, valp); | |
4896 | } | |
4897 | ||
4898 | void | |
4899 | set_gdbarch_auxv_parse (struct gdbarch *gdbarch, | |
4900 | gdbarch_auxv_parse_ftype auxv_parse) | |
4901 | { | |
4902 | gdbarch->auxv_parse = auxv_parse; | |
4903 | } | |
4904 | ||
2faa3447 JB |
4905 | void |
4906 | gdbarch_print_auxv_entry (struct gdbarch *gdbarch, struct ui_file *file, CORE_ADDR type, CORE_ADDR val) | |
4907 | { | |
4908 | gdb_assert (gdbarch != NULL); | |
4909 | gdb_assert (gdbarch->print_auxv_entry != NULL); | |
4910 | if (gdbarch_debug >= 2) | |
4911 | fprintf_unfiltered (gdb_stdlog, "gdbarch_print_auxv_entry called\n"); | |
4912 | gdbarch->print_auxv_entry (gdbarch, file, type, val); | |
4913 | } | |
4914 | ||
4915 | void | |
4916 | set_gdbarch_print_auxv_entry (struct gdbarch *gdbarch, | |
4917 | gdbarch_print_auxv_entry_ftype print_auxv_entry) | |
4918 | { | |
4919 | gdbarch->print_auxv_entry = print_auxv_entry; | |
4920 | } | |
4921 | ||
3437254d PA |
4922 | int |
4923 | gdbarch_vsyscall_range (struct gdbarch *gdbarch, struct mem_range *range) | |
4924 | { | |
4925 | gdb_assert (gdbarch != NULL); | |
4926 | gdb_assert (gdbarch->vsyscall_range != NULL); | |
4927 | if (gdbarch_debug >= 2) | |
4928 | fprintf_unfiltered (gdb_stdlog, "gdbarch_vsyscall_range called\n"); | |
4929 | return gdbarch->vsyscall_range (gdbarch, range); | |
4930 | } | |
4931 | ||
4932 | void | |
4933 | set_gdbarch_vsyscall_range (struct gdbarch *gdbarch, | |
4934 | gdbarch_vsyscall_range_ftype vsyscall_range) | |
4935 | { | |
4936 | gdbarch->vsyscall_range = vsyscall_range; | |
4937 | } | |
4938 | ||
f208eee0 JK |
4939 | CORE_ADDR |
4940 | gdbarch_infcall_mmap (struct gdbarch *gdbarch, CORE_ADDR size, unsigned prot) | |
4941 | { | |
4942 | gdb_assert (gdbarch != NULL); | |
4943 | gdb_assert (gdbarch->infcall_mmap != NULL); | |
4944 | if (gdbarch_debug >= 2) | |
4945 | fprintf_unfiltered (gdb_stdlog, "gdbarch_infcall_mmap called\n"); | |
4946 | return gdbarch->infcall_mmap (size, prot); | |
4947 | } | |
4948 | ||
4949 | void | |
4950 | set_gdbarch_infcall_mmap (struct gdbarch *gdbarch, | |
4951 | gdbarch_infcall_mmap_ftype infcall_mmap) | |
4952 | { | |
4953 | gdbarch->infcall_mmap = infcall_mmap; | |
4954 | } | |
4955 | ||
7f361056 JK |
4956 | void |
4957 | gdbarch_infcall_munmap (struct gdbarch *gdbarch, CORE_ADDR addr, CORE_ADDR size) | |
4958 | { | |
4959 | gdb_assert (gdbarch != NULL); | |
4960 | gdb_assert (gdbarch->infcall_munmap != NULL); | |
4961 | if (gdbarch_debug >= 2) | |
4962 | fprintf_unfiltered (gdb_stdlog, "gdbarch_infcall_munmap called\n"); | |
4963 | gdbarch->infcall_munmap (addr, size); | |
4964 | } | |
4965 | ||
4966 | void | |
4967 | set_gdbarch_infcall_munmap (struct gdbarch *gdbarch, | |
4968 | gdbarch_infcall_munmap_ftype infcall_munmap) | |
4969 | { | |
4970 | gdbarch->infcall_munmap = infcall_munmap; | |
4971 | } | |
4972 | ||
f208eee0 JK |
4973 | char * |
4974 | gdbarch_gcc_target_options (struct gdbarch *gdbarch) | |
4975 | { | |
4976 | gdb_assert (gdbarch != NULL); | |
4977 | gdb_assert (gdbarch->gcc_target_options != NULL); | |
4978 | if (gdbarch_debug >= 2) | |
4979 | fprintf_unfiltered (gdb_stdlog, "gdbarch_gcc_target_options called\n"); | |
4980 | return gdbarch->gcc_target_options (gdbarch); | |
4981 | } | |
4982 | ||
4983 | void | |
4984 | set_gdbarch_gcc_target_options (struct gdbarch *gdbarch, | |
4985 | gdbarch_gcc_target_options_ftype gcc_target_options) | |
4986 | { | |
4987 | gdbarch->gcc_target_options = gcc_target_options; | |
4988 | } | |
4989 | ||
ac04f72b TT |
4990 | const char * |
4991 | gdbarch_gnu_triplet_regexp (struct gdbarch *gdbarch) | |
4992 | { | |
4993 | gdb_assert (gdbarch != NULL); | |
4994 | gdb_assert (gdbarch->gnu_triplet_regexp != NULL); | |
4995 | if (gdbarch_debug >= 2) | |
4996 | fprintf_unfiltered (gdb_stdlog, "gdbarch_gnu_triplet_regexp called\n"); | |
4997 | return gdbarch->gnu_triplet_regexp (gdbarch); | |
4998 | } | |
4999 | ||
5000 | void | |
5001 | set_gdbarch_gnu_triplet_regexp (struct gdbarch *gdbarch, | |
5002 | gdbarch_gnu_triplet_regexp_ftype gnu_triplet_regexp) | |
5003 | { | |
5004 | gdbarch->gnu_triplet_regexp = gnu_triplet_regexp; | |
5005 | } | |
5006 | ||
3374165f SM |
5007 | int |
5008 | gdbarch_addressable_memory_unit_size (struct gdbarch *gdbarch) | |
5009 | { | |
5010 | gdb_assert (gdbarch != NULL); | |
5011 | gdb_assert (gdbarch->addressable_memory_unit_size != NULL); | |
5012 | if (gdbarch_debug >= 2) | |
5013 | fprintf_unfiltered (gdb_stdlog, "gdbarch_addressable_memory_unit_size called\n"); | |
5014 | return gdbarch->addressable_memory_unit_size (gdbarch); | |
5015 | } | |
5016 | ||
5017 | void | |
5018 | set_gdbarch_addressable_memory_unit_size (struct gdbarch *gdbarch, | |
5019 | gdbarch_addressable_memory_unit_size_ftype addressable_memory_unit_size) | |
5020 | { | |
5021 | gdbarch->addressable_memory_unit_size = addressable_memory_unit_size; | |
5022 | } | |
5023 | ||
65b48a81 PB |
5024 | char ** |
5025 | gdbarch_disassembler_options (struct gdbarch *gdbarch) | |
5026 | { | |
5027 | gdb_assert (gdbarch != NULL); | |
5028 | /* Skip verify of disassembler_options, invalid_p == 0 */ | |
5029 | if (gdbarch_debug >= 2) | |
5030 | fprintf_unfiltered (gdb_stdlog, "gdbarch_disassembler_options called\n"); | |
5031 | return gdbarch->disassembler_options; | |
5032 | } | |
5033 | ||
5034 | void | |
5035 | set_gdbarch_disassembler_options (struct gdbarch *gdbarch, | |
5036 | char ** disassembler_options) | |
5037 | { | |
5038 | gdbarch->disassembler_options = disassembler_options; | |
5039 | } | |
5040 | ||
5041 | const disasm_options_t * | |
5042 | gdbarch_valid_disassembler_options (struct gdbarch *gdbarch) | |
5043 | { | |
5044 | gdb_assert (gdbarch != NULL); | |
5045 | /* Skip verify of valid_disassembler_options, invalid_p == 0 */ | |
5046 | if (gdbarch_debug >= 2) | |
5047 | fprintf_unfiltered (gdb_stdlog, "gdbarch_valid_disassembler_options called\n"); | |
5048 | return gdbarch->valid_disassembler_options; | |
5049 | } | |
5050 | ||
5051 | void | |
5052 | set_gdbarch_valid_disassembler_options (struct gdbarch *gdbarch, | |
5053 | const disasm_options_t * valid_disassembler_options) | |
5054 | { | |
5055 | gdbarch->valid_disassembler_options = valid_disassembler_options; | |
5056 | } | |
5057 | ||
0f71a2f6 | 5058 | |
be5a57e1 | 5059 | /* Keep a registry of per-architecture data-pointers required by GDB |
0963b4bd | 5060 | modules. */ |
0f71a2f6 JM |
5061 | |
5062 | struct gdbarch_data | |
5063 | { | |
95160752 | 5064 | unsigned index; |
76860b5f | 5065 | int init_p; |
030f20e1 AC |
5066 | gdbarch_data_pre_init_ftype *pre_init; |
5067 | gdbarch_data_post_init_ftype *post_init; | |
0f71a2f6 JM |
5068 | }; |
5069 | ||
5070 | struct gdbarch_data_registration | |
adf40b2e | 5071 | { |
adf40b2e JM |
5072 | struct gdbarch_data *data; |
5073 | struct gdbarch_data_registration *next; | |
5074 | }; | |
0f71a2f6 | 5075 | |
be5a57e1 | 5076 | struct gdbarch_data_registry |
adf40b2e | 5077 | { |
95160752 | 5078 | unsigned nr; |
adf40b2e JM |
5079 | struct gdbarch_data_registration *registrations; |
5080 | }; | |
0f71a2f6 | 5081 | |
be5a57e1 | 5082 | struct gdbarch_data_registry gdbarch_data_registry = |
0f71a2f6 JM |
5083 | { |
5084 | 0, NULL, | |
5085 | }; | |
5086 | ||
030f20e1 AC |
5087 | static struct gdbarch_data * |
5088 | gdbarch_data_register (gdbarch_data_pre_init_ftype *pre_init, | |
5089 | gdbarch_data_post_init_ftype *post_init) | |
0f71a2f6 JM |
5090 | { |
5091 | struct gdbarch_data_registration **curr; | |
05c547f6 MS |
5092 | |
5093 | /* Append the new registration. */ | |
be5a57e1 | 5094 | for (curr = &gdbarch_data_registry.registrations; |
0f71a2f6 JM |
5095 | (*curr) != NULL; |
5096 | curr = &(*curr)->next); | |
70ba0933 | 5097 | (*curr) = XNEW (struct gdbarch_data_registration); |
0f71a2f6 | 5098 | (*curr)->next = NULL; |
70ba0933 | 5099 | (*curr)->data = XNEW (struct gdbarch_data); |
be5a57e1 | 5100 | (*curr)->data->index = gdbarch_data_registry.nr++; |
030f20e1 AC |
5101 | (*curr)->data->pre_init = pre_init; |
5102 | (*curr)->data->post_init = post_init; | |
76860b5f | 5103 | (*curr)->data->init_p = 1; |
0f71a2f6 JM |
5104 | return (*curr)->data; |
5105 | } | |
5106 | ||
030f20e1 AC |
5107 | struct gdbarch_data * |
5108 | gdbarch_data_register_pre_init (gdbarch_data_pre_init_ftype *pre_init) | |
5109 | { | |
5110 | return gdbarch_data_register (pre_init, NULL); | |
5111 | } | |
5112 | ||
5113 | struct gdbarch_data * | |
5114 | gdbarch_data_register_post_init (gdbarch_data_post_init_ftype *post_init) | |
5115 | { | |
5116 | return gdbarch_data_register (NULL, post_init); | |
5117 | } | |
0f71a2f6 | 5118 | |
0963b4bd | 5119 | /* Create/delete the gdbarch data vector. */ |
95160752 AC |
5120 | |
5121 | static void | |
b3cc3077 | 5122 | alloc_gdbarch_data (struct gdbarch *gdbarch) |
95160752 | 5123 | { |
b3cc3077 JB |
5124 | gdb_assert (gdbarch->data == NULL); |
5125 | gdbarch->nr_data = gdbarch_data_registry.nr; | |
aebd7893 | 5126 | gdbarch->data = GDBARCH_OBSTACK_CALLOC (gdbarch, gdbarch->nr_data, void *); |
0f71a2f6 JM |
5127 | } |
5128 | ||
76860b5f | 5129 | /* Initialize the current value of the specified per-architecture |
0963b4bd | 5130 | data-pointer. */ |
b3cc3077 | 5131 | |
95160752 | 5132 | void |
030f20e1 AC |
5133 | deprecated_set_gdbarch_data (struct gdbarch *gdbarch, |
5134 | struct gdbarch_data *data, | |
5135 | void *pointer) | |
95160752 AC |
5136 | { |
5137 | gdb_assert (data->index < gdbarch->nr_data); | |
aebd7893 | 5138 | gdb_assert (gdbarch->data[data->index] == NULL); |
030f20e1 | 5139 | gdb_assert (data->pre_init == NULL); |
95160752 AC |
5140 | gdbarch->data[data->index] = pointer; |
5141 | } | |
5142 | ||
0f71a2f6 | 5143 | /* Return the current value of the specified per-architecture |
0963b4bd | 5144 | data-pointer. */ |
0f71a2f6 JM |
5145 | |
5146 | void * | |
451fbdda | 5147 | gdbarch_data (struct gdbarch *gdbarch, struct gdbarch_data *data) |
0f71a2f6 | 5148 | { |
451fbdda | 5149 | gdb_assert (data->index < gdbarch->nr_data); |
030f20e1 | 5150 | if (gdbarch->data[data->index] == NULL) |
76860b5f | 5151 | { |
030f20e1 AC |
5152 | /* The data-pointer isn't initialized, call init() to get a |
5153 | value. */ | |
5154 | if (data->pre_init != NULL) | |
5155 | /* Mid architecture creation: pass just the obstack, and not | |
5156 | the entire architecture, as that way it isn't possible for | |
5157 | pre-init code to refer to undefined architecture | |
5158 | fields. */ | |
5159 | gdbarch->data[data->index] = data->pre_init (gdbarch->obstack); | |
5160 | else if (gdbarch->initialized_p | |
5161 | && data->post_init != NULL) | |
5162 | /* Post architecture creation: pass the entire architecture | |
5163 | (as all fields are valid), but be careful to also detect | |
5164 | recursive references. */ | |
5165 | { | |
5166 | gdb_assert (data->init_p); | |
5167 | data->init_p = 0; | |
5168 | gdbarch->data[data->index] = data->post_init (gdbarch); | |
5169 | data->init_p = 1; | |
5170 | } | |
5171 | else | |
5172 | /* The architecture initialization hasn't completed - punt - | |
5173 | hope that the caller knows what they are doing. Once | |
5174 | deprecated_set_gdbarch_data has been initialized, this can be | |
5175 | changed to an internal error. */ | |
5176 | return NULL; | |
76860b5f AC |
5177 | gdb_assert (gdbarch->data[data->index] != NULL); |
5178 | } | |
451fbdda | 5179 | return gdbarch->data[data->index]; |
0f71a2f6 JM |
5180 | } |
5181 | ||
5182 | ||
0963b4bd | 5183 | /* Keep a registry of the architectures known by GDB. */ |
0f71a2f6 | 5184 | |
4b9b3959 | 5185 | struct gdbarch_registration |
0f71a2f6 JM |
5186 | { |
5187 | enum bfd_architecture bfd_architecture; | |
5188 | gdbarch_init_ftype *init; | |
4b9b3959 | 5189 | gdbarch_dump_tdep_ftype *dump_tdep; |
0f71a2f6 | 5190 | struct gdbarch_list *arches; |
4b9b3959 | 5191 | struct gdbarch_registration *next; |
0f71a2f6 JM |
5192 | }; |
5193 | ||
be5a57e1 | 5194 | static struct gdbarch_registration *gdbarch_registry = NULL; |
0f71a2f6 | 5195 | |
b4a20239 AC |
5196 | static void |
5197 | append_name (const char ***buf, int *nr, const char *name) | |
5198 | { | |
1dc7a623 | 5199 | *buf = XRESIZEVEC (const char *, *buf, *nr + 1); |
b4a20239 AC |
5200 | (*buf)[*nr] = name; |
5201 | *nr += 1; | |
5202 | } | |
5203 | ||
5204 | const char ** | |
5205 | gdbarch_printable_names (void) | |
5206 | { | |
7996bcec | 5207 | /* Accumulate a list of names based on the registed list of |
0963b4bd | 5208 | architectures. */ |
7996bcec AC |
5209 | int nr_arches = 0; |
5210 | const char **arches = NULL; | |
5211 | struct gdbarch_registration *rego; | |
05c547f6 | 5212 | |
7996bcec AC |
5213 | for (rego = gdbarch_registry; |
5214 | rego != NULL; | |
5215 | rego = rego->next) | |
b4a20239 | 5216 | { |
7996bcec AC |
5217 | const struct bfd_arch_info *ap; |
5218 | ap = bfd_lookup_arch (rego->bfd_architecture, 0); | |
5219 | if (ap == NULL) | |
5220 | internal_error (__FILE__, __LINE__, | |
e2e0b3e5 | 5221 | _("gdbarch_architecture_names: multi-arch unknown")); |
7996bcec AC |
5222 | do |
5223 | { | |
5224 | append_name (&arches, &nr_arches, ap->printable_name); | |
5225 | ap = ap->next; | |
5226 | } | |
5227 | while (ap != NULL); | |
b4a20239 | 5228 | } |
7996bcec AC |
5229 | append_name (&arches, &nr_arches, NULL); |
5230 | return arches; | |
b4a20239 AC |
5231 | } |
5232 | ||
5233 | ||
0f71a2f6 | 5234 | void |
4b9b3959 AC |
5235 | gdbarch_register (enum bfd_architecture bfd_architecture, |
5236 | gdbarch_init_ftype *init, | |
5237 | gdbarch_dump_tdep_ftype *dump_tdep) | |
0f71a2f6 | 5238 | { |
4b9b3959 | 5239 | struct gdbarch_registration **curr; |
0f71a2f6 | 5240 | const struct bfd_arch_info *bfd_arch_info; |
05c547f6 | 5241 | |
ec3d358c | 5242 | /* Check that BFD recognizes this architecture */ |
0f71a2f6 JM |
5243 | bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0); |
5244 | if (bfd_arch_info == NULL) | |
5245 | { | |
8e65ff28 | 5246 | internal_error (__FILE__, __LINE__, |
0963b4bd MS |
5247 | _("gdbarch: Attempt to register " |
5248 | "unknown architecture (%d)"), | |
8e65ff28 | 5249 | bfd_architecture); |
0f71a2f6 | 5250 | } |
0963b4bd | 5251 | /* Check that we haven't seen this architecture before. */ |
be5a57e1 | 5252 | for (curr = &gdbarch_registry; |
0f71a2f6 JM |
5253 | (*curr) != NULL; |
5254 | curr = &(*curr)->next) | |
5255 | { | |
5256 | if (bfd_architecture == (*curr)->bfd_architecture) | |
8e65ff28 | 5257 | internal_error (__FILE__, __LINE__, |
64b9b334 | 5258 | _("gdbarch: Duplicate registration " |
0963b4bd | 5259 | "of architecture (%s)"), |
8e65ff28 | 5260 | bfd_arch_info->printable_name); |
0f71a2f6 JM |
5261 | } |
5262 | /* log it */ | |
5263 | if (gdbarch_debug) | |
30737ed9 | 5264 | fprintf_unfiltered (gdb_stdlog, "register_gdbarch_init (%s, %s)\n", |
0f71a2f6 | 5265 | bfd_arch_info->printable_name, |
30737ed9 | 5266 | host_address_to_string (init)); |
0f71a2f6 | 5267 | /* Append it */ |
70ba0933 | 5268 | (*curr) = XNEW (struct gdbarch_registration); |
0f71a2f6 JM |
5269 | (*curr)->bfd_architecture = bfd_architecture; |
5270 | (*curr)->init = init; | |
4b9b3959 | 5271 | (*curr)->dump_tdep = dump_tdep; |
0f71a2f6 JM |
5272 | (*curr)->arches = NULL; |
5273 | (*curr)->next = NULL; | |
4b9b3959 AC |
5274 | } |
5275 | ||
5276 | void | |
5277 | register_gdbarch_init (enum bfd_architecture bfd_architecture, | |
5278 | gdbarch_init_ftype *init) | |
5279 | { | |
5280 | gdbarch_register (bfd_architecture, init, NULL); | |
0f71a2f6 | 5281 | } |
0f71a2f6 JM |
5282 | |
5283 | ||
424163ea | 5284 | /* Look for an architecture using gdbarch_info. */ |
0f71a2f6 JM |
5285 | |
5286 | struct gdbarch_list * | |
104c1213 JM |
5287 | gdbarch_list_lookup_by_info (struct gdbarch_list *arches, |
5288 | const struct gdbarch_info *info) | |
0f71a2f6 JM |
5289 | { |
5290 | for (; arches != NULL; arches = arches->next) | |
5291 | { | |
5292 | if (info->bfd_arch_info != arches->gdbarch->bfd_arch_info) | |
5293 | continue; | |
5294 | if (info->byte_order != arches->gdbarch->byte_order) | |
5295 | continue; | |
4be87837 DJ |
5296 | if (info->osabi != arches->gdbarch->osabi) |
5297 | continue; | |
424163ea DJ |
5298 | if (info->target_desc != arches->gdbarch->target_desc) |
5299 | continue; | |
0f71a2f6 JM |
5300 | return arches; |
5301 | } | |
5302 | return NULL; | |
5303 | } | |
5304 | ||
5305 | ||
ebdba546 | 5306 | /* Find an architecture that matches the specified INFO. Create a new |
59837fe0 | 5307 | architecture if needed. Return that new architecture. */ |
0f71a2f6 | 5308 | |
59837fe0 UW |
5309 | struct gdbarch * |
5310 | gdbarch_find_by_info (struct gdbarch_info info) | |
0f71a2f6 JM |
5311 | { |
5312 | struct gdbarch *new_gdbarch; | |
4b9b3959 | 5313 | struct gdbarch_registration *rego; |
0f71a2f6 | 5314 | |
b732d07d | 5315 | /* Fill in missing parts of the INFO struct using a number of |
7a107747 DJ |
5316 | sources: "set ..."; INFOabfd supplied; and the global |
5317 | defaults. */ | |
5318 | gdbarch_info_fill (&info); | |
4be87837 | 5319 | |
0963b4bd | 5320 | /* Must have found some sort of architecture. */ |
b732d07d | 5321 | gdb_assert (info.bfd_arch_info != NULL); |
0f71a2f6 JM |
5322 | |
5323 | if (gdbarch_debug) | |
5324 | { | |
0f71a2f6 | 5325 | fprintf_unfiltered (gdb_stdlog, |
59837fe0 | 5326 | "gdbarch_find_by_info: info.bfd_arch_info %s\n", |
0f71a2f6 JM |
5327 | (info.bfd_arch_info != NULL |
5328 | ? info.bfd_arch_info->printable_name | |
5329 | : "(null)")); | |
5330 | fprintf_unfiltered (gdb_stdlog, | |
59837fe0 | 5331 | "gdbarch_find_by_info: info.byte_order %d (%s)\n", |
0f71a2f6 | 5332 | info.byte_order, |
d7449b42 | 5333 | (info.byte_order == BFD_ENDIAN_BIG ? "big" |
778eb05e | 5334 | : info.byte_order == BFD_ENDIAN_LITTLE ? "little" |
0f71a2f6 | 5335 | : "default")); |
4be87837 | 5336 | fprintf_unfiltered (gdb_stdlog, |
59837fe0 | 5337 | "gdbarch_find_by_info: info.osabi %d (%s)\n", |
4be87837 | 5338 | info.osabi, gdbarch_osabi_name (info.osabi)); |
0f71a2f6 | 5339 | fprintf_unfiltered (gdb_stdlog, |
59837fe0 | 5340 | "gdbarch_find_by_info: info.abfd %s\n", |
30737ed9 | 5341 | host_address_to_string (info.abfd)); |
0f71a2f6 | 5342 | fprintf_unfiltered (gdb_stdlog, |
59837fe0 | 5343 | "gdbarch_find_by_info: info.tdep_info %s\n", |
30737ed9 | 5344 | host_address_to_string (info.tdep_info)); |
0f71a2f6 JM |
5345 | } |
5346 | ||
ebdba546 | 5347 | /* Find the tdep code that knows about this architecture. */ |
b732d07d AC |
5348 | for (rego = gdbarch_registry; |
5349 | rego != NULL; | |
5350 | rego = rego->next) | |
5351 | if (rego->bfd_architecture == info.bfd_arch_info->arch) | |
5352 | break; | |
5353 | if (rego == NULL) | |
5354 | { | |
5355 | if (gdbarch_debug) | |
59837fe0 | 5356 | fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: " |
ebdba546 | 5357 | "No matching architecture\n"); |
b732d07d AC |
5358 | return 0; |
5359 | } | |
5360 | ||
ebdba546 | 5361 | /* Ask the tdep code for an architecture that matches "info". */ |
0f71a2f6 JM |
5362 | new_gdbarch = rego->init (info, rego->arches); |
5363 | ||
ebdba546 AC |
5364 | /* Did the tdep code like it? No. Reject the change and revert to |
5365 | the old architecture. */ | |
0f71a2f6 JM |
5366 | if (new_gdbarch == NULL) |
5367 | { | |
5368 | if (gdbarch_debug) | |
59837fe0 | 5369 | fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: " |
ebdba546 AC |
5370 | "Target rejected architecture\n"); |
5371 | return NULL; | |
0f71a2f6 JM |
5372 | } |
5373 | ||
ebdba546 AC |
5374 | /* Is this a pre-existing architecture (as determined by already |
5375 | being initialized)? Move it to the front of the architecture | |
5376 | list (keeping the list sorted Most Recently Used). */ | |
5377 | if (new_gdbarch->initialized_p) | |
0f71a2f6 | 5378 | { |
ebdba546 | 5379 | struct gdbarch_list **list; |
fe978cb0 | 5380 | struct gdbarch_list *self; |
0f71a2f6 | 5381 | if (gdbarch_debug) |
59837fe0 | 5382 | fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: " |
30737ed9 JB |
5383 | "Previous architecture %s (%s) selected\n", |
5384 | host_address_to_string (new_gdbarch), | |
0f71a2f6 | 5385 | new_gdbarch->bfd_arch_info->printable_name); |
ebdba546 AC |
5386 | /* Find the existing arch in the list. */ |
5387 | for (list = ®o->arches; | |
5388 | (*list) != NULL && (*list)->gdbarch != new_gdbarch; | |
5389 | list = &(*list)->next); | |
5390 | /* It had better be in the list of architectures. */ | |
5391 | gdb_assert ((*list) != NULL && (*list)->gdbarch == new_gdbarch); | |
fe978cb0 PA |
5392 | /* Unlink SELF. */ |
5393 | self = (*list); | |
5394 | (*list) = self->next; | |
5395 | /* Insert SELF at the front. */ | |
5396 | self->next = rego->arches; | |
5397 | rego->arches = self; | |
ebdba546 AC |
5398 | /* Return it. */ |
5399 | return new_gdbarch; | |
0f71a2f6 JM |
5400 | } |
5401 | ||
ebdba546 AC |
5402 | /* It's a new architecture. */ |
5403 | if (gdbarch_debug) | |
59837fe0 | 5404 | fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: " |
30737ed9 JB |
5405 | "New architecture %s (%s) selected\n", |
5406 | host_address_to_string (new_gdbarch), | |
ebdba546 AC |
5407 | new_gdbarch->bfd_arch_info->printable_name); |
5408 | ||
5409 | /* Insert the new architecture into the front of the architecture | |
5410 | list (keep the list sorted Most Recently Used). */ | |
0f79675b | 5411 | { |
fe978cb0 PA |
5412 | struct gdbarch_list *self = XNEW (struct gdbarch_list); |
5413 | self->next = rego->arches; | |
5414 | self->gdbarch = new_gdbarch; | |
5415 | rego->arches = self; | |
0f79675b | 5416 | } |
0f71a2f6 | 5417 | |
4b9b3959 AC |
5418 | /* Check that the newly installed architecture is valid. Plug in |
5419 | any post init values. */ | |
5420 | new_gdbarch->dump_tdep = rego->dump_tdep; | |
0f71a2f6 | 5421 | verify_gdbarch (new_gdbarch); |
ebdba546 | 5422 | new_gdbarch->initialized_p = 1; |
0f71a2f6 | 5423 | |
4b9b3959 | 5424 | if (gdbarch_debug) |
ebdba546 | 5425 | gdbarch_dump (new_gdbarch, gdb_stdlog); |
4b9b3959 | 5426 | |
ebdba546 | 5427 | return new_gdbarch; |
0f71a2f6 | 5428 | } |
c906108c | 5429 | |
e487cc15 | 5430 | /* Make the specified architecture current. */ |
ebdba546 AC |
5431 | |
5432 | void | |
aff68abb | 5433 | set_target_gdbarch (struct gdbarch *new_gdbarch) |
ebdba546 AC |
5434 | { |
5435 | gdb_assert (new_gdbarch != NULL); | |
ebdba546 | 5436 | gdb_assert (new_gdbarch->initialized_p); |
6ecd4729 | 5437 | current_inferior ()->gdbarch = new_gdbarch; |
383f836e | 5438 | observer_notify_architecture_changed (new_gdbarch); |
a3ecef73 | 5439 | registers_changed (); |
ebdba546 | 5440 | } |
c906108c | 5441 | |
f5656ead | 5442 | /* Return the current inferior's arch. */ |
6ecd4729 PA |
5443 | |
5444 | struct gdbarch * | |
f5656ead | 5445 | target_gdbarch (void) |
6ecd4729 PA |
5446 | { |
5447 | return current_inferior ()->gdbarch; | |
5448 | } | |
5449 | ||
c906108c | 5450 | void |
7c7651b2 | 5451 | _initialize_gdbarch (void) |
c906108c | 5452 | { |
ccce17b0 | 5453 | add_setshow_zuinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\ |
85c07804 AC |
5454 | Set architecture debugging."), _("\ |
5455 | Show architecture debugging."), _("\ | |
5456 | When non-zero, architecture debugging is enabled."), | |
5457 | NULL, | |
920d2a44 | 5458 | show_gdbarch_debug, |
85c07804 | 5459 | &setdebuglist, &showdebuglist); |
c906108c | 5460 | } |