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