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