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