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