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