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