PR binutils/13558
[deliverable/binutils-gdb.git] / gdb / gdbarch.c
CommitLineData
59233f88
AC
1/* *INDENT-OFF* */ /* THIS FILE IS GENERATED */
2
adf40b2e 3/* Dynamic architecture support for GDB, the GNU debugger.
79d45cd4 4
f801e1e0
MS
5 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
6 2007, 2008, 2009 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.
de584861 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.
de584861 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"
c906108c 44
95160752 45#include "gdb_assert.h"
b66d6d2e 46#include "gdb_string.h"
b59ff9d5 47#include "reggroups.h"
4be87837 48#include "osabi.h"
aebd7893 49#include "gdb_obstack.h"
383f836e 50#include "observer.h"
a3ecef73 51#include "regcache.h"
95160752 52
104c1213
JM
53/* Static function declarations */
54
b3cc3077 55static void alloc_gdbarch_data (struct gdbarch *);
104c1213 56
0f71a2f6
JM
57/* Non-zero if we want to trace architecture code. */
58
59#ifndef GDBARCH_DEBUG
60#define GDBARCH_DEBUG 0
61#endif
62int gdbarch_debug = GDBARCH_DEBUG;
920d2a44
AC
63static void
64show_gdbarch_debug (struct ui_file *file, int from_tty,
65 struct cmd_list_element *c, const char *value)
66{
67 fprintf_filtered (file, _("Architecture debugging is %s.\n"), value);
68}
0f71a2f6 69
456fcf94 70static const char *
8da61cc4 71pformat (const struct floatformat **format)
456fcf94
AC
72{
73 if (format == NULL)
74 return "(null)";
75 else
8da61cc4
DJ
76 /* Just print out one of them - this is only for diagnostics. */
77 return format[0]->name;
456fcf94
AC
78}
79
08105857
PA
80static const char *
81pstring (const char *string)
82{
83 if (string == NULL)
84 return "(null)";
85 return string;
86}
87
0f71a2f6 88
0963b4bd 89/* Maintain the struct gdbarch object. */
0f71a2f6
JM
90
91struct gdbarch
adf40b2e 92{
76860b5f
AC
93 /* Has this architecture been fully initialized? */
94 int initialized_p;
aebd7893
AC
95
96 /* An obstack bound to the lifetime of the architecture. */
97 struct obstack *obstack;
98
0963b4bd 99 /* basic architectural information. */
adf40b2e
JM
100 const struct bfd_arch_info * bfd_arch_info;
101 int byte_order;
9d4fde75 102 int byte_order_for_code;
4be87837 103 enum gdb_osabi osabi;
424163ea 104 const struct target_desc * target_desc;
0f71a2f6 105
0963b4bd 106 /* target specific vector. */
adf40b2e 107 struct gdbarch_tdep *tdep;
4b9b3959 108 gdbarch_dump_tdep_ftype *dump_tdep;
0f71a2f6 109
0963b4bd 110 /* per-architecture data-pointers. */
95160752 111 unsigned nr_data;
adf40b2e 112 void **data;
0f71a2f6 113
0963b4bd 114 /* per-architecture swap-regions. */
adf40b2e 115 struct gdbarch_swap *swap;
0f71a2f6 116
adf40b2e 117 /* Multi-arch values.
0f71a2f6 118
adf40b2e 119 When extending this structure you must:
0f71a2f6 120
adf40b2e 121 Add the field below.
0f71a2f6 122
adf40b2e
JM
123 Declare set/get functions and define the corresponding
124 macro in gdbarch.h.
0f71a2f6 125
adf40b2e
JM
126 gdbarch_alloc(): If zero/NULL is not a suitable default,
127 initialize the new field.
0f71a2f6 128
adf40b2e
JM
129 verify_gdbarch(): Confirm that the target updated the field
130 correctly.
0f71a2f6 131
7e73cedf 132 gdbarch_dump(): Add a fprintf_unfiltered call so that the new
adf40b2e 133 field is dumped out
0f71a2f6 134
c0e8c252 135 ``startup_gdbarch()'': Append an initial value to the static
adf40b2e 136 variable (base values on the host's c-type system).
0f71a2f6 137
adf40b2e
JM
138 get_gdbarch(): Implement the set/get functions (probably using
139 the macro's as shortcuts).
0f71a2f6
JM
140
141 */
142
32c9a795 143 int bits_big_endian;
adf40b2e
JM
144 int short_bit;
145 int int_bit;
146 int long_bit;
147 int long_long_bit;
205c306f 148 int long_long_align_bit;
f9e9243a
UW
149 int half_bit;
150 const struct floatformat ** half_format;
adf40b2e 151 int float_bit;
8da61cc4 152 const struct floatformat ** float_format;
adf40b2e 153 int double_bit;
8da61cc4 154 const struct floatformat ** double_format;
adf40b2e 155 int long_double_bit;
8da61cc4 156 const struct floatformat ** long_double_format;
66b43ecb 157 int ptr_bit;
52204a0b 158 int addr_bit;
8da614df 159 int dwarf2_addr_size;
4e409299 160 int char_signed;
adf40b2e
JM
161 gdbarch_read_pc_ftype *read_pc;
162 gdbarch_write_pc_ftype *write_pc;
39d4ef09 163 gdbarch_virtual_frame_pointer_ftype *virtual_frame_pointer;
d8124050 164 gdbarch_pseudo_register_read_ftype *pseudo_register_read;
3543a589 165 gdbarch_pseudo_register_read_value_ftype *pseudo_register_read_value;
d8124050 166 gdbarch_pseudo_register_write_ftype *pseudo_register_write;
adf40b2e 167 int num_regs;
0aba1244 168 int num_pseudo_regs;
175ff332
HZ
169 gdbarch_ax_pseudo_register_collect_ftype *ax_pseudo_register_collect;
170 gdbarch_ax_pseudo_register_push_stack_ftype *ax_pseudo_register_push_stack;
adf40b2e 171 int sp_regnum;
adf40b2e 172 int pc_regnum;
c2169756 173 int ps_regnum;
60054393 174 int fp0_regnum;
88c72b7d
AC
175 gdbarch_stab_reg_to_regnum_ftype *stab_reg_to_regnum;
176 gdbarch_ecoff_reg_to_regnum_ftype *ecoff_reg_to_regnum;
88c72b7d
AC
177 gdbarch_sdb_reg_to_regnum_ftype *sdb_reg_to_regnum;
178 gdbarch_dwarf2_reg_to_regnum_ftype *dwarf2_reg_to_regnum;
adf40b2e 179 gdbarch_register_name_ftype *register_name;
9c04cab7 180 gdbarch_register_type_ftype *register_type;
669fac23 181 gdbarch_dummy_id_ftype *dummy_id;
f3be58bc 182 int deprecated_fp_regnum;
b8de8283 183 gdbarch_push_dummy_call_ftype *push_dummy_call;
adf40b2e 184 int call_dummy_location;
7043d8dc 185 gdbarch_push_dummy_code_ftype *push_dummy_code;
b8de8283
AC
186 gdbarch_print_registers_info_ftype *print_registers_info;
187 gdbarch_print_float_info_ftype *print_float_info;
188 gdbarch_print_vector_info_ftype *print_vector_info;
189 gdbarch_register_sim_regno_ftype *register_sim_regno;
b8de8283
AC
190 gdbarch_cannot_fetch_register_ftype *cannot_fetch_register;
191 gdbarch_cannot_store_register_ftype *cannot_store_register;
192 gdbarch_get_longjmp_target_ftype *get_longjmp_target;
adf40b2e 193 int believe_pcc_promotion;
13d01224
AC
194 gdbarch_convert_register_p_ftype *convert_register_p;
195 gdbarch_register_to_value_ftype *register_to_value;
196 gdbarch_value_to_register_ftype *value_to_register;
9acbedc0 197 gdbarch_value_from_register_ftype *value_from_register;
4478b372
JB
198 gdbarch_pointer_to_address_ftype *pointer_to_address;
199 gdbarch_address_to_pointer_ftype *address_to_pointer;
fc0c74b1 200 gdbarch_integer_to_address_ftype *integer_to_address;
92ad9cd9 201 gdbarch_return_value_ftype *return_value;
adf40b2e 202 gdbarch_skip_prologue_ftype *skip_prologue;
4309257c 203 gdbarch_skip_main_prologue_ftype *skip_main_prologue;
adf40b2e
JM
204 gdbarch_inner_than_ftype *inner_than;
205 gdbarch_breakpoint_from_pc_ftype *breakpoint_from_pc;
a1dcb23a 206 gdbarch_remote_breakpoint_from_pc_ftype *remote_breakpoint_from_pc;
a1131521 207 gdbarch_adjust_breakpoint_address_ftype *adjust_breakpoint_address;
917317f4
JM
208 gdbarch_memory_insert_breakpoint_ftype *memory_insert_breakpoint;
209 gdbarch_memory_remove_breakpoint_ftype *memory_remove_breakpoint;
adf40b2e 210 CORE_ADDR decr_pc_after_break;
782263ab 211 CORE_ADDR deprecated_function_start_offset;
123dc839 212 gdbarch_remote_register_number_ftype *remote_register_number;
b2756930 213 gdbarch_fetch_tls_load_module_address_ftype *fetch_tls_load_module_address;
adf40b2e 214 CORE_ADDR frame_args_skip;
12cc2063 215 gdbarch_unwind_pc_ftype *unwind_pc;
a9e5fdc2 216 gdbarch_unwind_sp_ftype *unwind_sp;
adf40b2e 217 gdbarch_frame_num_args_ftype *frame_num_args;
dc604539 218 gdbarch_frame_align_ftype *frame_align;
192cb3d4 219 gdbarch_stabs_argument_has_addr_ftype *stabs_argument_has_addr;
8b148df9 220 int frame_red_zone_size;
f517ea4e 221 gdbarch_convert_from_func_ptr_addr_ftype *convert_from_func_ptr_addr;
875e1767 222 gdbarch_addr_bits_remove_ftype *addr_bits_remove;
181c1381 223 gdbarch_smash_text_address_ftype *smash_text_address;
64c4637f 224 gdbarch_software_single_step_ftype *software_single_step;
3352ef37 225 gdbarch_single_step_through_delay_ftype *single_step_through_delay;
2bf0cb65 226 gdbarch_print_insn_ftype *print_insn;
bdcd319a 227 gdbarch_skip_trampoline_code_ftype *skip_trampoline_code;
dea0c52f 228 gdbarch_skip_solib_resolver_ftype *skip_solib_resolver;
d50355b6 229 gdbarch_in_solib_return_trampoline_ftype *in_solib_return_trampoline;
c12260ac 230 gdbarch_in_function_epilogue_p_ftype *in_function_epilogue_p;
a2cf933a
EZ
231 gdbarch_elf_make_msymbol_special_ftype *elf_make_msymbol_special;
232 gdbarch_coff_make_msymbol_special_ftype *coff_make_msymbol_special;
c4ed33b9 233 int cannot_step_breakpoint;
f74fa174 234 int have_nonsteppable_watchpoint;
8b2dbe47
KB
235 gdbarch_address_class_type_flags_ftype *address_class_type_flags;
236 gdbarch_address_class_type_flags_to_name_ftype *address_class_type_flags_to_name;
237 gdbarch_address_class_name_to_type_flags_ftype *address_class_name_to_type_flags;
b59ff9d5 238 gdbarch_register_reggroup_p_ftype *register_reggroup_p;
143985b7 239 gdbarch_fetch_pointer_argument_ftype *fetch_pointer_argument;
6ce6d90f 240 gdbarch_regset_from_core_section_ftype *regset_from_core_section;
17ea7499 241 struct core_regset_section * core_regset_sections;
6432734d 242 gdbarch_make_corefile_notes_ftype *make_corefile_notes;
35c2fab7 243 gdbarch_find_memory_regions_ftype *find_memory_regions;
de584861 244 gdbarch_core_xfer_shared_libraries_ftype *core_xfer_shared_libraries;
28439f5e 245 gdbarch_core_pid_to_str_ftype *core_pid_to_str;
a78c2d62 246 const char * gcore_bfd_target;
0d5de010
DJ
247 int vtable_function_descriptors;
248 int vbit_in_delta;
6d350bb5 249 gdbarch_skip_permanent_breakpoint_ftype *skip_permanent_breakpoint;
237fc4c9
PA
250 ULONGEST max_insn_length;
251 gdbarch_displaced_step_copy_insn_ftype *displaced_step_copy_insn;
99e40580 252 gdbarch_displaced_step_hw_singlestep_ftype *displaced_step_hw_singlestep;
237fc4c9
PA
253 gdbarch_displaced_step_fixup_ftype *displaced_step_fixup;
254 gdbarch_displaced_step_free_closure_ftype *displaced_step_free_closure;
255 gdbarch_displaced_step_location_ftype *displaced_step_location;
dde08ee1 256 gdbarch_relocate_instruction_ftype *relocate_instruction;
1c772458 257 gdbarch_overlay_update_ftype *overlay_update;
4eb0ad19 258 gdbarch_core_read_description_ftype *core_read_description;
149ad273 259 gdbarch_static_transform_name_ftype *static_transform_name;
203c3895 260 int sofun_address_maybe_missing;
0508c3ec 261 gdbarch_process_record_ftype *process_record;
3846b520 262 gdbarch_process_record_signal_ftype *process_record_signal;
1cded358
AR
263 gdbarch_target_signal_from_host_ftype *target_signal_from_host;
264 gdbarch_target_signal_to_host_ftype *target_signal_to_host;
4aa995e1 265 gdbarch_get_siginfo_type_ftype *get_siginfo_type;
60c5725c 266 gdbarch_record_special_symbol_ftype *record_special_symbol;
a96d9b2e 267 gdbarch_get_syscall_number_ftype *get_syscall_number;
55aa24fb
SDJ
268 const char * stap_integer_prefix;
269 const char * stap_integer_suffix;
270 const char * stap_register_prefix;
271 const char * stap_register_suffix;
272 const char * stap_register_indirection_prefix;
273 const char * stap_register_indirection_suffix;
274 const char * stap_gdb_register_prefix;
275 const char * stap_gdb_register_suffix;
276 gdbarch_stap_is_single_operand_ftype *stap_is_single_operand;
277 gdbarch_stap_parse_special_token_ftype *stap_parse_special_token;
50c71eaf 278 int has_global_solist;
2567c7d9 279 int has_global_breakpoints;
6c95b8df 280 gdbarch_has_shared_address_space_ftype *has_shared_address_space;
7a697b8d 281 gdbarch_fast_tracepoint_valid_at_ftype *fast_tracepoint_valid_at;
f870a310
TT
282 gdbarch_auto_charset_ftype *auto_charset;
283 gdbarch_auto_wide_charset_ftype *auto_wide_charset;
08105857 284 const char * solib_symbols_extension;
ab38a727 285 int has_dos_based_file_system;
6710bf39 286 gdbarch_gen_return_address_ftype *gen_return_address;
3030c96e 287 gdbarch_info_proc_ftype *info_proc;
adf40b2e 288};
0f71a2f6
JM
289
290
291/* The default architecture uses host values (for want of a better
0963b4bd 292 choice). */
0f71a2f6
JM
293
294extern const struct bfd_arch_info bfd_default_arch_struct;
295
4b9b3959
AC
296struct gdbarch startup_gdbarch =
297{
76860b5f 298 1, /* Always initialized. */
aebd7893 299 NULL, /* The obstack. */
0963b4bd 300 /* basic architecture information. */
ec5cbaec
AC
301 &bfd_default_arch_struct, /* bfd_arch_info */
302 BFD_ENDIAN_BIG, /* byte_order */
9d4fde75 303 BFD_ENDIAN_BIG, /* byte_order_for_code */
ec5cbaec 304 GDB_OSABI_UNKNOWN, /* osabi */
424163ea 305 0, /* target_desc */
0963b4bd 306 /* target specific vector and its dump routine. */
4b9b3959 307 NULL, NULL,
0963b4bd 308 /*per-architecture data-pointers and swap regions. */
0f71a2f6
JM
309 0, NULL, NULL,
310 /* Multi-arch values */
32c9a795 311 1, /* bits_big_endian */
ec5cbaec
AC
312 8 * sizeof (short), /* short_bit */
313 8 * sizeof (int), /* int_bit */
314 8 * sizeof (long), /* long_bit */
315 8 * sizeof (LONGEST), /* long_long_bit */
205c306f 316 8 * sizeof (LONGEST), /* long_long_align_bit */
f9e9243a
UW
317 16, /* half_bit */
318 0, /* half_format */
ec5cbaec 319 8 * sizeof (float), /* float_bit */
456fcf94 320 0, /* float_format */
ec5cbaec 321 8 * sizeof (double), /* double_bit */
456fcf94 322 0, /* double_format */
ec5cbaec 323 8 * sizeof (long double), /* long_double_bit */
456fcf94 324 0, /* long_double_format */
ec5cbaec
AC
325 8 * sizeof (void*), /* ptr_bit */
326 8 * sizeof (void*), /* addr_bit */
8da614df 327 sizeof (void*), /* dwarf2_addr_size */
ec5cbaec
AC
328 1, /* char_signed */
329 0, /* read_pc */
330 0, /* write_pc */
a54fba4c 331 legacy_virtual_frame_pointer, /* virtual_frame_pointer */
ec5cbaec 332 0, /* pseudo_register_read */
3543a589 333 0, /* pseudo_register_read_value */
ec5cbaec
AC
334 0, /* pseudo_register_write */
335 0, /* num_regs */
336 0, /* num_pseudo_regs */
175ff332
HZ
337 0, /* ax_pseudo_register_collect */
338 0, /* ax_pseudo_register_push_stack */
ec5cbaec 339 -1, /* sp_regnum */
ec5cbaec
AC
340 -1, /* pc_regnum */
341 -1, /* ps_regnum */
342 0, /* fp0_regnum */
d3f73121
MD
343 no_op_reg_to_regnum, /* stab_reg_to_regnum */
344 no_op_reg_to_regnum, /* ecoff_reg_to_regnum */
d3f73121
MD
345 no_op_reg_to_regnum, /* sdb_reg_to_regnum */
346 no_op_reg_to_regnum, /* dwarf2_reg_to_regnum */
ec5cbaec 347 0, /* register_name */
9c04cab7 348 0, /* register_type */
669fac23 349 0, /* dummy_id */
f3be58bc 350 -1, /* deprecated_fp_regnum */
b8de8283 351 0, /* push_dummy_call */
ec5cbaec 352 0, /* call_dummy_location */
ec5cbaec 353 0, /* push_dummy_code */
b8de8283
AC
354 default_print_registers_info, /* print_registers_info */
355 0, /* print_float_info */
356 0, /* print_vector_info */
e7faf938 357 legacy_register_sim_regno, /* register_sim_regno */
64a3914f
MD
358 cannot_register_not, /* cannot_fetch_register */
359 cannot_register_not, /* cannot_store_register */
b8de8283 360 0, /* get_longjmp_target */
ec5cbaec 361 0, /* believe_pcc_promotion */
0abe36f5 362 generic_convert_register_p, /* convert_register_p */
ec5cbaec
AC
363 0, /* register_to_value */
364 0, /* value_to_register */
9acbedc0 365 0, /* value_from_register */
9898f801
UW
366 unsigned_pointer_to_address, /* pointer_to_address */
367 unsigned_address_to_pointer, /* address_to_pointer */
ec5cbaec 368 0, /* integer_to_address */
92ad9cd9 369 0, /* return_value */
ec5cbaec 370 0, /* skip_prologue */
4309257c 371 0, /* skip_main_prologue */
ec5cbaec
AC
372 0, /* inner_than */
373 0, /* breakpoint_from_pc */
a1dcb23a 374 default_remote_breakpoint_from_pc, /* remote_breakpoint_from_pc */
a1131521 375 0, /* adjust_breakpoint_address */
ae4b2284
MD
376 default_memory_insert_breakpoint, /* memory_insert_breakpoint */
377 default_memory_remove_breakpoint, /* memory_remove_breakpoint */
ec5cbaec 378 0, /* decr_pc_after_break */
782263ab 379 0, /* deprecated_function_start_offset */
123dc839 380 default_remote_register_number, /* remote_register_number */
b2756930 381 0, /* fetch_tls_load_module_address */
ec5cbaec 382 0, /* frame_args_skip */
ec5cbaec 383 0, /* unwind_pc */
a9e5fdc2 384 0, /* unwind_sp */
ec5cbaec 385 0, /* frame_num_args */
ec5cbaec 386 0, /* frame_align */
192cb3d4 387 default_stabs_argument_has_addr, /* stabs_argument_has_addr */
8b148df9 388 0, /* frame_red_zone_size */
e2d0e7eb 389 convert_from_func_ptr_addr_identity, /* convert_from_func_ptr_addr */
24568a2c
UW
390 core_addr_identity, /* addr_bits_remove */
391 core_addr_identity, /* smash_text_address */
ec5cbaec 392 0, /* software_single_step */
3352ef37 393 0, /* single_step_through_delay */
ec5cbaec
AC
394 0, /* print_insn */
395 0, /* skip_trampoline_code */
4c8c40e6 396 generic_skip_solib_resolver, /* skip_solib_resolver */
e17a4113 397 generic_in_solib_return_trampoline, /* in_solib_return_trampoline */
ec5cbaec 398 generic_in_function_epilogue_p, /* in_function_epilogue_p */
ec5cbaec
AC
399 0, /* elf_make_msymbol_special */
400 0, /* coff_make_msymbol_special */
ec5cbaec
AC
401 0, /* cannot_step_breakpoint */
402 0, /* have_nonsteppable_watchpoint */
403 0, /* address_class_type_flags */
404 0, /* address_class_type_flags_to_name */
405 0, /* address_class_name_to_type_flags */
406 default_register_reggroup_p, /* register_reggroup_p */
407 0, /* fetch_pointer_argument */
6ce6d90f 408 0, /* regset_from_core_section */
17ea7499 409 0, /* core_regset_sections */
6432734d 410 0, /* make_corefile_notes */
35c2fab7 411 0, /* find_memory_regions */
de584861 412 0, /* core_xfer_shared_libraries */
28439f5e 413 0, /* core_pid_to_str */
a78c2d62 414 0, /* gcore_bfd_target */
0d5de010
DJ
415 0, /* vtable_function_descriptors */
416 0, /* vbit_in_delta */
6d350bb5 417 0, /* skip_permanent_breakpoint */
237fc4c9
PA
418 0, /* max_insn_length */
419 0, /* displaced_step_copy_insn */
99e40580 420 default_displaced_step_hw_singlestep, /* displaced_step_hw_singlestep */
237fc4c9
PA
421 0, /* displaced_step_fixup */
422 NULL, /* displaced_step_free_closure */
423 NULL, /* displaced_step_location */
dde08ee1 424 0, /* relocate_instruction */
1c772458 425 0, /* overlay_update */
4eb0ad19 426 0, /* core_read_description */
149ad273 427 0, /* static_transform_name */
203c3895 428 0, /* sofun_address_maybe_missing */
0508c3ec 429 0, /* process_record */
3846b520 430 0, /* process_record_signal */
1cded358
AR
431 default_target_signal_from_host, /* target_signal_from_host */
432 default_target_signal_to_host, /* target_signal_to_host */
4aa995e1 433 0, /* get_siginfo_type */
60c5725c 434 0, /* record_special_symbol */
a96d9b2e 435 0, /* get_syscall_number */
55aa24fb
SDJ
436 0, /* stap_integer_prefix */
437 0, /* stap_integer_suffix */
438 0, /* stap_register_prefix */
439 0, /* stap_register_suffix */
440 0, /* stap_register_indirection_prefix */
441 0, /* stap_register_indirection_suffix */
442 0, /* stap_gdb_register_prefix */
443 0, /* stap_gdb_register_suffix */
444 0, /* stap_is_single_operand */
445 0, /* stap_parse_special_token */
50c71eaf 446 0, /* has_global_solist */
2567c7d9 447 0, /* has_global_breakpoints */
6c95b8df 448 default_has_shared_address_space, /* has_shared_address_space */
7a697b8d 449 default_fast_tracepoint_valid_at, /* fast_tracepoint_valid_at */
f870a310
TT
450 default_auto_charset, /* auto_charset */
451 default_auto_wide_charset, /* auto_wide_charset */
08105857 452 0, /* solib_symbols_extension */
ab38a727 453 0, /* has_dos_based_file_system */
6710bf39 454 default_gen_return_address, /* gen_return_address */
3030c96e 455 0, /* info_proc */
c0e8c252 456 /* startup_gdbarch() */
0f71a2f6 457};
4b9b3959 458
1cf3db46 459struct gdbarch *target_gdbarch = &startup_gdbarch;
0f71a2f6 460
66b43ecb 461/* Create a new ``struct gdbarch'' based on information provided by
0963b4bd 462 ``struct gdbarch_info''. */
0f71a2f6
JM
463
464struct gdbarch *
104c1213
JM
465gdbarch_alloc (const struct gdbarch_info *info,
466 struct gdbarch_tdep *tdep)
0f71a2f6 467{
be7811ad 468 struct gdbarch *gdbarch;
aebd7893
AC
469
470 /* Create an obstack for allocating all the per-architecture memory,
471 then use that to allocate the architecture vector. */
472 struct obstack *obstack = XMALLOC (struct obstack);
473 obstack_init (obstack);
be7811ad
MD
474 gdbarch = obstack_alloc (obstack, sizeof (*gdbarch));
475 memset (gdbarch, 0, sizeof (*gdbarch));
476 gdbarch->obstack = obstack;
0f71a2f6 477
be7811ad 478 alloc_gdbarch_data (gdbarch);
b3cc3077 479
be7811ad 480 gdbarch->tdep = tdep;
0f71a2f6 481
be7811ad
MD
482 gdbarch->bfd_arch_info = info->bfd_arch_info;
483 gdbarch->byte_order = info->byte_order;
9d4fde75 484 gdbarch->byte_order_for_code = info->byte_order_for_code;
be7811ad
MD
485 gdbarch->osabi = info->osabi;
486 gdbarch->target_desc = info->target_desc;
0f71a2f6 487
0963b4bd 488 /* Force the explicit initialization of these. */
32c9a795 489 gdbarch->bits_big_endian = (gdbarch->byte_order == BFD_ENDIAN_BIG);
be7811ad
MD
490 gdbarch->short_bit = 2*TARGET_CHAR_BIT;
491 gdbarch->int_bit = 4*TARGET_CHAR_BIT;
492 gdbarch->long_bit = 4*TARGET_CHAR_BIT;
493 gdbarch->long_long_bit = 2*gdbarch->long_bit;
205c306f 494 gdbarch->long_long_align_bit = 2*gdbarch->long_bit;
f9e9243a 495 gdbarch->half_bit = 2*TARGET_CHAR_BIT;
be7811ad
MD
496 gdbarch->float_bit = 4*TARGET_CHAR_BIT;
497 gdbarch->double_bit = 8*TARGET_CHAR_BIT;
498 gdbarch->long_double_bit = 8*TARGET_CHAR_BIT;
499 gdbarch->ptr_bit = gdbarch->int_bit;
500 gdbarch->char_signed = -1;
501 gdbarch->virtual_frame_pointer = legacy_virtual_frame_pointer;
502 gdbarch->num_regs = -1;
503 gdbarch->sp_regnum = -1;
504 gdbarch->pc_regnum = -1;
505 gdbarch->ps_regnum = -1;
506 gdbarch->fp0_regnum = -1;
507 gdbarch->stab_reg_to_regnum = no_op_reg_to_regnum;
508 gdbarch->ecoff_reg_to_regnum = no_op_reg_to_regnum;
be7811ad
MD
509 gdbarch->sdb_reg_to_regnum = no_op_reg_to_regnum;
510 gdbarch->dwarf2_reg_to_regnum = no_op_reg_to_regnum;
511 gdbarch->deprecated_fp_regnum = -1;
512 gdbarch->call_dummy_location = AT_ENTRY_POINT;
513 gdbarch->print_registers_info = default_print_registers_info;
514 gdbarch->register_sim_regno = legacy_register_sim_regno;
515 gdbarch->cannot_fetch_register = cannot_register_not;
516 gdbarch->cannot_store_register = cannot_register_not;
517 gdbarch->convert_register_p = generic_convert_register_p;
518 gdbarch->value_from_register = default_value_from_register;
519 gdbarch->pointer_to_address = unsigned_pointer_to_address;
520 gdbarch->address_to_pointer = unsigned_address_to_pointer;
a1dcb23a 521 gdbarch->remote_breakpoint_from_pc = default_remote_breakpoint_from_pc;
be7811ad
MD
522 gdbarch->memory_insert_breakpoint = default_memory_insert_breakpoint;
523 gdbarch->memory_remove_breakpoint = default_memory_remove_breakpoint;
524 gdbarch->remote_register_number = default_remote_register_number;
525 gdbarch->stabs_argument_has_addr = default_stabs_argument_has_addr;
526 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr_identity;
527 gdbarch->addr_bits_remove = core_addr_identity;
528 gdbarch->smash_text_address = core_addr_identity;
529 gdbarch->skip_trampoline_code = generic_skip_trampoline_code;
530 gdbarch->skip_solib_resolver = generic_skip_solib_resolver;
531 gdbarch->in_solib_return_trampoline = generic_in_solib_return_trampoline;
532 gdbarch->in_function_epilogue_p = generic_in_function_epilogue_p;
be7811ad
MD
533 gdbarch->elf_make_msymbol_special = default_elf_make_msymbol_special;
534 gdbarch->coff_make_msymbol_special = default_coff_make_msymbol_special;
be7811ad 535 gdbarch->register_reggroup_p = default_register_reggroup_p;
99e40580 536 gdbarch->displaced_step_hw_singlestep = default_displaced_step_hw_singlestep;
237fc4c9
PA
537 gdbarch->displaced_step_fixup = NULL;
538 gdbarch->displaced_step_free_closure = NULL;
539 gdbarch->displaced_step_location = NULL;
dde08ee1 540 gdbarch->relocate_instruction = NULL;
1cded358
AR
541 gdbarch->target_signal_from_host = default_target_signal_from_host;
542 gdbarch->target_signal_to_host = default_target_signal_to_host;
6c95b8df 543 gdbarch->has_shared_address_space = default_has_shared_address_space;
7a697b8d 544 gdbarch->fast_tracepoint_valid_at = default_fast_tracepoint_valid_at;
f870a310
TT
545 gdbarch->auto_charset = default_auto_charset;
546 gdbarch->auto_wide_charset = default_auto_wide_charset;
6710bf39 547 gdbarch->gen_return_address = default_gen_return_address;
0f71a2f6
JM
548 /* gdbarch_alloc() */
549
be7811ad 550 return gdbarch;
0f71a2f6
JM
551}
552
553
aebd7893
AC
554/* Allocate extra space using the per-architecture obstack. */
555
556void *
557gdbarch_obstack_zalloc (struct gdbarch *arch, long size)
558{
559 void *data = obstack_alloc (arch->obstack, size);
05c547f6 560
aebd7893
AC
561 memset (data, 0, size);
562 return data;
563}
564
565
058f20d5
JB
566/* Free a gdbarch struct. This should never happen in normal
567 operation --- once you've created a gdbarch, you keep it around.
568 However, if an architecture's init function encounters an error
569 building the structure, it may need to clean up a partially
570 constructed gdbarch. */
4b9b3959 571
058f20d5
JB
572void
573gdbarch_free (struct gdbarch *arch)
574{
aebd7893 575 struct obstack *obstack;
05c547f6 576
95160752 577 gdb_assert (arch != NULL);
aebd7893
AC
578 gdb_assert (!arch->initialized_p);
579 obstack = arch->obstack;
580 obstack_free (obstack, 0); /* Includes the ARCH. */
581 xfree (obstack);
058f20d5
JB
582}
583
584
db446970
AC
585/* Ensure that all values in a GDBARCH are reasonable. */
586
0f71a2f6 587static void
be7811ad 588verify_gdbarch (struct gdbarch *gdbarch)
0f71a2f6 589{
f16a1923
AC
590 struct ui_file *log;
591 struct cleanup *cleanups;
759ef836 592 long length;
f16a1923 593 char *buf;
05c547f6 594
f16a1923
AC
595 log = mem_fileopen ();
596 cleanups = make_cleanup_ui_file_delete (log);
0f71a2f6 597 /* fundamental */
be7811ad 598 if (gdbarch->byte_order == BFD_ENDIAN_UNKNOWN)
f16a1923 599 fprintf_unfiltered (log, "\n\tbyte-order");
be7811ad 600 if (gdbarch->bfd_arch_info == NULL)
f16a1923 601 fprintf_unfiltered (log, "\n\tbfd_arch_info");
0963b4bd 602 /* Check those that need to be defined for the given multi-arch level. */
32c9a795 603 /* Skip verify of bits_big_endian, invalid_p == 0 */
66b43ecb
AC
604 /* Skip verify of short_bit, invalid_p == 0 */
605 /* Skip verify of int_bit, invalid_p == 0 */
606 /* Skip verify of long_bit, invalid_p == 0 */
607 /* Skip verify of long_long_bit, invalid_p == 0 */
205c306f 608 /* Skip verify of long_long_align_bit, invalid_p == 0 */
f9e9243a
UW
609 /* Skip verify of half_bit, invalid_p == 0 */
610 if (gdbarch->half_format == 0)
611 gdbarch->half_format = floatformats_ieee_half;
66b43ecb 612 /* Skip verify of float_bit, invalid_p == 0 */
be7811ad
MD
613 if (gdbarch->float_format == 0)
614 gdbarch->float_format = floatformats_ieee_single;
66b43ecb 615 /* Skip verify of double_bit, invalid_p == 0 */
be7811ad
MD
616 if (gdbarch->double_format == 0)
617 gdbarch->double_format = floatformats_ieee_double;
66b43ecb 618 /* Skip verify of long_double_bit, invalid_p == 0 */
be7811ad
MD
619 if (gdbarch->long_double_format == 0)
620 gdbarch->long_double_format = floatformats_ieee_double;
66b43ecb 621 /* Skip verify of ptr_bit, invalid_p == 0 */
be7811ad
MD
622 if (gdbarch->addr_bit == 0)
623 gdbarch->addr_bit = gdbarch_ptr_bit (gdbarch);
8da614df
CV
624 if (gdbarch->dwarf2_addr_size == 0)
625 gdbarch->dwarf2_addr_size = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
be7811ad
MD
626 if (gdbarch->char_signed == -1)
627 gdbarch->char_signed = 1;
0963b4bd
MS
628 /* Skip verify of read_pc, has predicate. */
629 /* Skip verify of write_pc, has predicate. */
39d4ef09 630 /* Skip verify of virtual_frame_pointer, invalid_p == 0 */
0963b4bd 631 /* Skip verify of pseudo_register_read, has predicate. */
3543a589 632 /* Skip verify of pseudo_register_read_value, has predicate. */
0963b4bd 633 /* Skip verify of pseudo_register_write, has predicate. */
be7811ad 634 if (gdbarch->num_regs == -1)
f16a1923 635 fprintf_unfiltered (log, "\n\tnum_regs");
0aba1244 636 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
0963b4bd
MS
637 /* Skip verify of ax_pseudo_register_collect, has predicate. */
638 /* Skip verify of ax_pseudo_register_push_stack, has predicate. */
1200cd6e 639 /* Skip verify of sp_regnum, invalid_p == 0 */
1200cd6e 640 /* Skip verify of pc_regnum, invalid_p == 0 */
c2169756 641 /* Skip verify of ps_regnum, invalid_p == 0 */
60054393 642 /* Skip verify of fp0_regnum, invalid_p == 0 */
88c72b7d
AC
643 /* Skip verify of stab_reg_to_regnum, invalid_p == 0 */
644 /* Skip verify of ecoff_reg_to_regnum, invalid_p == 0 */
88c72b7d
AC
645 /* Skip verify of sdb_reg_to_regnum, invalid_p == 0 */
646 /* Skip verify of dwarf2_reg_to_regnum, invalid_p == 0 */
be7811ad 647 if (gdbarch->register_name == 0)
d93859e2 648 fprintf_unfiltered (log, "\n\tregister_name");
0963b4bd
MS
649 /* Skip verify of register_type, has predicate. */
650 /* Skip verify of dummy_id, has predicate. */
f3be58bc 651 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
0963b4bd 652 /* Skip verify of push_dummy_call, has predicate. */
b8de8283 653 /* Skip verify of call_dummy_location, invalid_p == 0 */
0963b4bd 654 /* Skip verify of push_dummy_code, has predicate. */
0ab7a791 655 /* Skip verify of print_registers_info, invalid_p == 0 */
0963b4bd
MS
656 /* Skip verify of print_float_info, has predicate. */
657 /* Skip verify of print_vector_info, has predicate. */
7c7651b2 658 /* Skip verify of register_sim_regno, invalid_p == 0 */
01fb7433
AC
659 /* Skip verify of cannot_fetch_register, invalid_p == 0 */
660 /* Skip verify of cannot_store_register, invalid_p == 0 */
0963b4bd 661 /* Skip verify of get_longjmp_target, has predicate. */
13d01224 662 /* Skip verify of convert_register_p, invalid_p == 0 */
9acbedc0 663 /* Skip verify of value_from_register, invalid_p == 0 */
4478b372
JB
664 /* Skip verify of pointer_to_address, invalid_p == 0 */
665 /* Skip verify of address_to_pointer, invalid_p == 0 */
0963b4bd
MS
666 /* Skip verify of integer_to_address, has predicate. */
667 /* Skip verify of return_value, has predicate. */
be7811ad 668 if (gdbarch->skip_prologue == 0)
f16a1923 669 fprintf_unfiltered (log, "\n\tskip_prologue");
0963b4bd 670 /* Skip verify of skip_main_prologue, has predicate. */
be7811ad 671 if (gdbarch->inner_than == 0)
f16a1923 672 fprintf_unfiltered (log, "\n\tinner_than");
be7811ad 673 if (gdbarch->breakpoint_from_pc == 0)
aaab4dba 674 fprintf_unfiltered (log, "\n\tbreakpoint_from_pc");
0e05dfcb 675 /* Skip verify of remote_breakpoint_from_pc, invalid_p == 0 */
0963b4bd 676 /* Skip verify of adjust_breakpoint_address, has predicate. */
c0e8c252
AC
677 /* Skip verify of memory_insert_breakpoint, invalid_p == 0 */
678 /* Skip verify of memory_remove_breakpoint, invalid_p == 0 */
71bd6bd4 679 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
782263ab 680 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
123dc839 681 /* Skip verify of remote_register_number, invalid_p == 0 */
0963b4bd 682 /* Skip verify of fetch_tls_load_module_address, has predicate. */
5867a2fb 683 /* Skip verify of frame_args_skip, invalid_p == 0 */
0963b4bd
MS
684 /* Skip verify of unwind_pc, has predicate. */
685 /* Skip verify of unwind_sp, has predicate. */
686 /* Skip verify of frame_num_args, has predicate. */
687 /* Skip verify of frame_align, has predicate. */
192cb3d4 688 /* Skip verify of stabs_argument_has_addr, invalid_p == 0 */
f517ea4e 689 /* Skip verify of convert_from_func_ptr_addr, invalid_p == 0 */
875e1767 690 /* Skip verify of addr_bits_remove, invalid_p == 0 */
181c1381 691 /* Skip verify of smash_text_address, invalid_p == 0 */
0963b4bd
MS
692 /* Skip verify of software_single_step, has predicate. */
693 /* Skip verify of single_step_through_delay, has predicate. */
be7811ad 694 if (gdbarch->print_insn == 0)
f6c40618 695 fprintf_unfiltered (log, "\n\tprint_insn");
bdcd319a 696 /* Skip verify of skip_trampoline_code, invalid_p == 0 */
dea0c52f 697 /* Skip verify of skip_solib_resolver, invalid_p == 0 */
d50355b6 698 /* Skip verify of in_solib_return_trampoline, invalid_p == 0 */
c12260ac 699 /* Skip verify of in_function_epilogue_p, invalid_p == 0 */
a2cf933a
EZ
700 /* Skip verify of elf_make_msymbol_special, invalid_p == 0 */
701 /* Skip verify of coff_make_msymbol_special, invalid_p == 0 */
c4ed33b9 702 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
f74fa174 703 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
0963b4bd
MS
704 /* Skip verify of address_class_type_flags, has predicate. */
705 /* Skip verify of address_class_type_flags_to_name, has predicate. */
706 /* Skip verify of address_class_name_to_type_flags, has predicate. */
7e20f3fb 707 /* Skip verify of register_reggroup_p, invalid_p == 0 */
0963b4bd
MS
708 /* Skip verify of fetch_pointer_argument, has predicate. */
709 /* Skip verify of regset_from_core_section, has predicate. */
6432734d 710 /* Skip verify of make_corefile_notes, has predicate. */
35c2fab7 711 /* Skip verify of find_memory_regions, has predicate. */
0963b4bd
MS
712 /* Skip verify of core_xfer_shared_libraries, has predicate. */
713 /* Skip verify of core_pid_to_str, has predicate. */
714 /* Skip verify of gcore_bfd_target, has predicate. */
0d5de010
DJ
715 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
716 /* Skip verify of vbit_in_delta, invalid_p == 0 */
0963b4bd
MS
717 /* Skip verify of skip_permanent_breakpoint, has predicate. */
718 /* Skip verify of max_insn_length, has predicate. */
719 /* Skip verify of displaced_step_copy_insn, has predicate. */
99e40580 720 /* Skip verify of displaced_step_hw_singlestep, invalid_p == 0 */
0963b4bd 721 /* Skip verify of displaced_step_fixup, has predicate. */
237fc4c9
PA
722 if ((! gdbarch->displaced_step_free_closure) != (! gdbarch->displaced_step_copy_insn))
723 fprintf_unfiltered (log, "\n\tdisplaced_step_free_closure");
724 if ((! gdbarch->displaced_step_location) != (! gdbarch->displaced_step_copy_insn))
725 fprintf_unfiltered (log, "\n\tdisplaced_step_location");
0963b4bd
MS
726 /* Skip verify of relocate_instruction, has predicate. */
727 /* Skip verify of overlay_update, has predicate. */
728 /* Skip verify of core_read_description, has predicate. */
729 /* Skip verify of static_transform_name, has predicate. */
203c3895 730 /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */
0963b4bd
MS
731 /* Skip verify of process_record, has predicate. */
732 /* Skip verify of process_record_signal, has predicate. */
1cded358
AR
733 /* Skip verify of target_signal_from_host, invalid_p == 0 */
734 /* Skip verify of target_signal_to_host, invalid_p == 0 */
0963b4bd
MS
735 /* Skip verify of get_siginfo_type, has predicate. */
736 /* Skip verify of record_special_symbol, has predicate. */
737 /* Skip verify of get_syscall_number, has predicate. */
55aa24fb
SDJ
738 /* Skip verify of stap_integer_prefix, invalid_p == 0 */
739 /* Skip verify of stap_integer_suffix, invalid_p == 0 */
740 /* Skip verify of stap_register_prefix, invalid_p == 0 */
741 /* Skip verify of stap_register_suffix, invalid_p == 0 */
742 /* Skip verify of stap_register_indirection_prefix, invalid_p == 0 */
743 /* Skip verify of stap_register_indirection_suffix, invalid_p == 0 */
744 /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */
745 /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */
746 /* Skip verify of stap_is_single_operand, has predicate. */
747 /* Skip verify of stap_parse_special_token, has predicate. */
50c71eaf 748 /* Skip verify of has_global_solist, invalid_p == 0 */
2567c7d9 749 /* Skip verify of has_global_breakpoints, invalid_p == 0 */
6c95b8df 750 /* Skip verify of has_shared_address_space, invalid_p == 0 */
7a697b8d 751 /* Skip verify of fast_tracepoint_valid_at, invalid_p == 0 */
f870a310
TT
752 /* Skip verify of auto_charset, invalid_p == 0 */
753 /* Skip verify of auto_wide_charset, invalid_p == 0 */
ab38a727 754 /* Skip verify of has_dos_based_file_system, invalid_p == 0 */
6710bf39 755 /* Skip verify of gen_return_address, invalid_p == 0 */
3030c96e 756 /* Skip verify of info_proc, has predicate. */
759ef836 757 buf = ui_file_xstrdup (log, &length);
f16a1923 758 make_cleanup (xfree, buf);
759ef836 759 if (length > 0)
f16a1923 760 internal_error (__FILE__, __LINE__,
e2e0b3e5 761 _("verify_gdbarch: the following are invalid ...%s"),
f16a1923
AC
762 buf);
763 do_cleanups (cleanups);
0f71a2f6
JM
764}
765
766
0963b4bd 767/* Print out the details of the current architecture. */
0f71a2f6
JM
768
769void
be7811ad 770gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file)
0f71a2f6 771{
b78960be 772 const char *gdb_nm_file = "<not-defined>";
05c547f6 773
b78960be
AC
774#if defined (GDB_NM_FILE)
775 gdb_nm_file = GDB_NM_FILE;
776#endif
777 fprintf_unfiltered (file,
778 "gdbarch_dump: GDB_NM_FILE = %s\n",
779 gdb_nm_file);
48f7351b
AC
780 fprintf_unfiltered (file,
781 "gdbarch_dump: addr_bit = %s\n",
623d3eb1 782 plongest (gdbarch->addr_bit));
48f7351b 783 fprintf_unfiltered (file,
30737ed9
JB
784 "gdbarch_dump: addr_bits_remove = <%s>\n",
785 host_address_to_string (gdbarch->addr_bits_remove));
7996bcec
AC
786 fprintf_unfiltered (file,
787 "gdbarch_dump: gdbarch_address_class_name_to_type_flags_p() = %d\n",
be7811ad 788 gdbarch_address_class_name_to_type_flags_p (gdbarch));
7996bcec 789 fprintf_unfiltered (file,
30737ed9
JB
790 "gdbarch_dump: address_class_name_to_type_flags = <%s>\n",
791 host_address_to_string (gdbarch->address_class_name_to_type_flags));
48f7351b
AC
792 fprintf_unfiltered (file,
793 "gdbarch_dump: gdbarch_address_class_type_flags_p() = %d\n",
be7811ad 794 gdbarch_address_class_type_flags_p (gdbarch));
48f7351b 795 fprintf_unfiltered (file,
30737ed9
JB
796 "gdbarch_dump: address_class_type_flags = <%s>\n",
797 host_address_to_string (gdbarch->address_class_type_flags));
7996bcec
AC
798 fprintf_unfiltered (file,
799 "gdbarch_dump: gdbarch_address_class_type_flags_to_name_p() = %d\n",
be7811ad 800 gdbarch_address_class_type_flags_to_name_p (gdbarch));
7996bcec 801 fprintf_unfiltered (file,
30737ed9
JB
802 "gdbarch_dump: address_class_type_flags_to_name = <%s>\n",
803 host_address_to_string (gdbarch->address_class_type_flags_to_name));
48f7351b 804 fprintf_unfiltered (file,
30737ed9
JB
805 "gdbarch_dump: address_to_pointer = <%s>\n",
806 host_address_to_string (gdbarch->address_to_pointer));
a1131521
KB
807 fprintf_unfiltered (file,
808 "gdbarch_dump: gdbarch_adjust_breakpoint_address_p() = %d\n",
be7811ad 809 gdbarch_adjust_breakpoint_address_p (gdbarch));
a1131521 810 fprintf_unfiltered (file,
30737ed9
JB
811 "gdbarch_dump: adjust_breakpoint_address = <%s>\n",
812 host_address_to_string (gdbarch->adjust_breakpoint_address));
f870a310
TT
813 fprintf_unfiltered (file,
814 "gdbarch_dump: auto_charset = <%s>\n",
815 host_address_to_string (gdbarch->auto_charset));
816 fprintf_unfiltered (file,
817 "gdbarch_dump: auto_wide_charset = <%s>\n",
818 host_address_to_string (gdbarch->auto_wide_charset));
175ff332
HZ
819 fprintf_unfiltered (file,
820 "gdbarch_dump: gdbarch_ax_pseudo_register_collect_p() = %d\n",
821 gdbarch_ax_pseudo_register_collect_p (gdbarch));
822 fprintf_unfiltered (file,
823 "gdbarch_dump: ax_pseudo_register_collect = <%s>\n",
824 host_address_to_string (gdbarch->ax_pseudo_register_collect));
825 fprintf_unfiltered (file,
826 "gdbarch_dump: gdbarch_ax_pseudo_register_push_stack_p() = %d\n",
827 gdbarch_ax_pseudo_register_push_stack_p (gdbarch));
828 fprintf_unfiltered (file,
829 "gdbarch_dump: ax_pseudo_register_push_stack = <%s>\n",
830 host_address_to_string (gdbarch->ax_pseudo_register_push_stack));
48f7351b
AC
831 fprintf_unfiltered (file,
832 "gdbarch_dump: believe_pcc_promotion = %s\n",
623d3eb1 833 plongest (gdbarch->believe_pcc_promotion));
283354d8 834 fprintf_unfiltered (file,
48f7351b 835 "gdbarch_dump: bfd_arch_info = %s\n",
be7811ad 836 gdbarch_bfd_arch_info (gdbarch)->printable_name);
32c9a795
MD
837 fprintf_unfiltered (file,
838 "gdbarch_dump: bits_big_endian = %s\n",
623d3eb1 839 plongest (gdbarch->bits_big_endian));
48f7351b 840 fprintf_unfiltered (file,
30737ed9
JB
841 "gdbarch_dump: breakpoint_from_pc = <%s>\n",
842 host_address_to_string (gdbarch->breakpoint_from_pc));
48f7351b
AC
843 fprintf_unfiltered (file,
844 "gdbarch_dump: byte_order = %s\n",
623d3eb1 845 plongest (gdbarch->byte_order));
9d4fde75
SS
846 fprintf_unfiltered (file,
847 "gdbarch_dump: byte_order_for_code = %s\n",
623d3eb1 848 plongest (gdbarch->byte_order_for_code));
48f7351b
AC
849 fprintf_unfiltered (file,
850 "gdbarch_dump: call_dummy_location = %s\n",
623d3eb1 851 plongest (gdbarch->call_dummy_location));
48f7351b 852 fprintf_unfiltered (file,
30737ed9
JB
853 "gdbarch_dump: cannot_fetch_register = <%s>\n",
854 host_address_to_string (gdbarch->cannot_fetch_register));
48f7351b
AC
855 fprintf_unfiltered (file,
856 "gdbarch_dump: cannot_step_breakpoint = %s\n",
623d3eb1 857 plongest (gdbarch->cannot_step_breakpoint));
48f7351b 858 fprintf_unfiltered (file,
30737ed9
JB
859 "gdbarch_dump: cannot_store_register = <%s>\n",
860 host_address_to_string (gdbarch->cannot_store_register));
48f7351b
AC
861 fprintf_unfiltered (file,
862 "gdbarch_dump: char_signed = %s\n",
623d3eb1 863 plongest (gdbarch->char_signed));
7996bcec 864 fprintf_unfiltered (file,
30737ed9
JB
865 "gdbarch_dump: coff_make_msymbol_special = <%s>\n",
866 host_address_to_string (gdbarch->coff_make_msymbol_special));
a2428dbe 867 fprintf_unfiltered (file,
30737ed9
JB
868 "gdbarch_dump: convert_from_func_ptr_addr = <%s>\n",
869 host_address_to_string (gdbarch->convert_from_func_ptr_addr));
48f7351b 870 fprintf_unfiltered (file,
30737ed9
JB
871 "gdbarch_dump: convert_register_p = <%s>\n",
872 host_address_to_string (gdbarch->convert_register_p));
28439f5e
PA
873 fprintf_unfiltered (file,
874 "gdbarch_dump: gdbarch_core_pid_to_str_p() = %d\n",
875 gdbarch_core_pid_to_str_p (gdbarch));
876 fprintf_unfiltered (file,
877 "gdbarch_dump: core_pid_to_str = <%s>\n",
878 host_address_to_string (gdbarch->core_pid_to_str));
4eb0ad19
DJ
879 fprintf_unfiltered (file,
880 "gdbarch_dump: gdbarch_core_read_description_p() = %d\n",
be7811ad 881 gdbarch_core_read_description_p (gdbarch));
4eb0ad19 882 fprintf_unfiltered (file,
30737ed9
JB
883 "gdbarch_dump: core_read_description = <%s>\n",
884 host_address_to_string (gdbarch->core_read_description));
17ea7499
CES
885 fprintf_unfiltered (file,
886 "gdbarch_dump: core_regset_sections = %s\n",
887 host_address_to_string (gdbarch->core_regset_sections));
de584861
PA
888 fprintf_unfiltered (file,
889 "gdbarch_dump: gdbarch_core_xfer_shared_libraries_p() = %d\n",
be7811ad 890 gdbarch_core_xfer_shared_libraries_p (gdbarch));
de584861 891 fprintf_unfiltered (file,
30737ed9
JB
892 "gdbarch_dump: core_xfer_shared_libraries = <%s>\n",
893 host_address_to_string (gdbarch->core_xfer_shared_libraries));
48f7351b 894 fprintf_unfiltered (file,
0b1553bc
UW
895 "gdbarch_dump: decr_pc_after_break = %s\n",
896 core_addr_to_string_nz (gdbarch->decr_pc_after_break));
48f7351b
AC
897 fprintf_unfiltered (file,
898 "gdbarch_dump: deprecated_fp_regnum = %s\n",
623d3eb1 899 plongest (gdbarch->deprecated_fp_regnum));
48f7351b 900 fprintf_unfiltered (file,
0b1553bc
UW
901 "gdbarch_dump: deprecated_function_start_offset = %s\n",
902 core_addr_to_string_nz (gdbarch->deprecated_function_start_offset));
237fc4c9
PA
903 fprintf_unfiltered (file,
904 "gdbarch_dump: gdbarch_displaced_step_copy_insn_p() = %d\n",
905 gdbarch_displaced_step_copy_insn_p (gdbarch));
906 fprintf_unfiltered (file,
30737ed9
JB
907 "gdbarch_dump: displaced_step_copy_insn = <%s>\n",
908 host_address_to_string (gdbarch->displaced_step_copy_insn));
237fc4c9
PA
909 fprintf_unfiltered (file,
910 "gdbarch_dump: gdbarch_displaced_step_fixup_p() = %d\n",
911 gdbarch_displaced_step_fixup_p (gdbarch));
912 fprintf_unfiltered (file,
30737ed9
JB
913 "gdbarch_dump: displaced_step_fixup = <%s>\n",
914 host_address_to_string (gdbarch->displaced_step_fixup));
237fc4c9 915 fprintf_unfiltered (file,
30737ed9
JB
916 "gdbarch_dump: displaced_step_free_closure = <%s>\n",
917 host_address_to_string (gdbarch->displaced_step_free_closure));
99e40580
UW
918 fprintf_unfiltered (file,
919 "gdbarch_dump: displaced_step_hw_singlestep = <%s>\n",
920 host_address_to_string (gdbarch->displaced_step_hw_singlestep));
237fc4c9 921 fprintf_unfiltered (file,
30737ed9
JB
922 "gdbarch_dump: displaced_step_location = <%s>\n",
923 host_address_to_string (gdbarch->displaced_step_location));
48f7351b
AC
924 fprintf_unfiltered (file,
925 "gdbarch_dump: double_bit = %s\n",
623d3eb1 926 plongest (gdbarch->double_bit));
a2428dbe 927 fprintf_unfiltered (file,
48f7351b 928 "gdbarch_dump: double_format = %s\n",
be7811ad 929 pformat (gdbarch->double_format));
669fac23
DJ
930 fprintf_unfiltered (file,
931 "gdbarch_dump: gdbarch_dummy_id_p() = %d\n",
932 gdbarch_dummy_id_p (gdbarch));
933 fprintf_unfiltered (file,
30737ed9
JB
934 "gdbarch_dump: dummy_id = <%s>\n",
935 host_address_to_string (gdbarch->dummy_id));
8da614df
CV
936 fprintf_unfiltered (file,
937 "gdbarch_dump: dwarf2_addr_size = %s\n",
938 plongest (gdbarch->dwarf2_addr_size));
48f7351b 939 fprintf_unfiltered (file,
30737ed9
JB
940 "gdbarch_dump: dwarf2_reg_to_regnum = <%s>\n",
941 host_address_to_string (gdbarch->dwarf2_reg_to_regnum));
48f7351b 942 fprintf_unfiltered (file,
30737ed9
JB
943 "gdbarch_dump: ecoff_reg_to_regnum = <%s>\n",
944 host_address_to_string (gdbarch->ecoff_reg_to_regnum));
48f7351b 945 fprintf_unfiltered (file,
30737ed9
JB
946 "gdbarch_dump: elf_make_msymbol_special = <%s>\n",
947 host_address_to_string (gdbarch->elf_make_msymbol_special));
7a697b8d
SS
948 fprintf_unfiltered (file,
949 "gdbarch_dump: fast_tracepoint_valid_at = <%s>\n",
950 host_address_to_string (gdbarch->fast_tracepoint_valid_at));
48f7351b
AC
951 fprintf_unfiltered (file,
952 "gdbarch_dump: gdbarch_fetch_pointer_argument_p() = %d\n",
be7811ad 953 gdbarch_fetch_pointer_argument_p (gdbarch));
48f7351b 954 fprintf_unfiltered (file,
30737ed9
JB
955 "gdbarch_dump: fetch_pointer_argument = <%s>\n",
956 host_address_to_string (gdbarch->fetch_pointer_argument));
b2756930
KB
957 fprintf_unfiltered (file,
958 "gdbarch_dump: gdbarch_fetch_tls_load_module_address_p() = %d\n",
be7811ad 959 gdbarch_fetch_tls_load_module_address_p (gdbarch));
b2756930 960 fprintf_unfiltered (file,
30737ed9
JB
961 "gdbarch_dump: fetch_tls_load_module_address = <%s>\n",
962 host_address_to_string (gdbarch->fetch_tls_load_module_address));
35c2fab7
UW
963 fprintf_unfiltered (file,
964 "gdbarch_dump: gdbarch_find_memory_regions_p() = %d\n",
965 gdbarch_find_memory_regions_p (gdbarch));
966 fprintf_unfiltered (file,
967 "gdbarch_dump: find_memory_regions = <%s>\n",
968 host_address_to_string (gdbarch->find_memory_regions));
48f7351b
AC
969 fprintf_unfiltered (file,
970 "gdbarch_dump: float_bit = %s\n",
623d3eb1 971 plongest (gdbarch->float_bit));
a2428dbe 972 fprintf_unfiltered (file,
48f7351b 973 "gdbarch_dump: float_format = %s\n",
be7811ad 974 pformat (gdbarch->float_format));
48f7351b
AC
975 fprintf_unfiltered (file,
976 "gdbarch_dump: fp0_regnum = %s\n",
623d3eb1 977 plongest (gdbarch->fp0_regnum));
a2428dbe
AC
978 fprintf_unfiltered (file,
979 "gdbarch_dump: gdbarch_frame_align_p() = %d\n",
be7811ad 980 gdbarch_frame_align_p (gdbarch));
a2428dbe 981 fprintf_unfiltered (file,
30737ed9
JB
982 "gdbarch_dump: frame_align = <%s>\n",
983 host_address_to_string (gdbarch->frame_align));
48f7351b 984 fprintf_unfiltered (file,
0b1553bc
UW
985 "gdbarch_dump: frame_args_skip = %s\n",
986 core_addr_to_string_nz (gdbarch->frame_args_skip));
48f7351b
AC
987 fprintf_unfiltered (file,
988 "gdbarch_dump: gdbarch_frame_num_args_p() = %d\n",
be7811ad 989 gdbarch_frame_num_args_p (gdbarch));
48f7351b 990 fprintf_unfiltered (file,
30737ed9
JB
991 "gdbarch_dump: frame_num_args = <%s>\n",
992 host_address_to_string (gdbarch->frame_num_args));
48f7351b
AC
993 fprintf_unfiltered (file,
994 "gdbarch_dump: frame_red_zone_size = %s\n",
623d3eb1 995 plongest (gdbarch->frame_red_zone_size));
a78c2d62
UW
996 fprintf_unfiltered (file,
997 "gdbarch_dump: gdbarch_gcore_bfd_target_p() = %d\n",
998 gdbarch_gcore_bfd_target_p (gdbarch));
999 fprintf_unfiltered (file,
1000 "gdbarch_dump: gcore_bfd_target = %s\n",
86ba1042 1001 pstring (gdbarch->gcore_bfd_target));
6710bf39
SS
1002 fprintf_unfiltered (file,
1003 "gdbarch_dump: gen_return_address = <%s>\n",
1004 host_address_to_string (gdbarch->gen_return_address));
48f7351b
AC
1005 fprintf_unfiltered (file,
1006 "gdbarch_dump: gdbarch_get_longjmp_target_p() = %d\n",
be7811ad 1007 gdbarch_get_longjmp_target_p (gdbarch));
48f7351b 1008 fprintf_unfiltered (file,
30737ed9
JB
1009 "gdbarch_dump: get_longjmp_target = <%s>\n",
1010 host_address_to_string (gdbarch->get_longjmp_target));
4aa995e1
PA
1011 fprintf_unfiltered (file,
1012 "gdbarch_dump: gdbarch_get_siginfo_type_p() = %d\n",
1013 gdbarch_get_siginfo_type_p (gdbarch));
1014 fprintf_unfiltered (file,
315aef0a
PA
1015 "gdbarch_dump: get_siginfo_type = <%s>\n",
1016 host_address_to_string (gdbarch->get_siginfo_type));
a96d9b2e
SDJ
1017 fprintf_unfiltered (file,
1018 "gdbarch_dump: gdbarch_get_syscall_number_p() = %d\n",
1019 gdbarch_get_syscall_number_p (gdbarch));
1020 fprintf_unfiltered (file,
1021 "gdbarch_dump: get_syscall_number = <%s>\n",
1022 host_address_to_string (gdbarch->get_syscall_number));
f9e9243a
UW
1023 fprintf_unfiltered (file,
1024 "gdbarch_dump: half_bit = %s\n",
1025 plongest (gdbarch->half_bit));
1026 fprintf_unfiltered (file,
1027 "gdbarch_dump: half_format = %s\n",
1028 pformat (gdbarch->half_format));
ab38a727
PA
1029 fprintf_unfiltered (file,
1030 "gdbarch_dump: has_dos_based_file_system = %s\n",
1031 plongest (gdbarch->has_dos_based_file_system));
2567c7d9
PA
1032 fprintf_unfiltered (file,
1033 "gdbarch_dump: has_global_breakpoints = %s\n",
1034 plongest (gdbarch->has_global_breakpoints));
50c71eaf
PA
1035 fprintf_unfiltered (file,
1036 "gdbarch_dump: has_global_solist = %s\n",
1037 plongest (gdbarch->has_global_solist));
6c95b8df
PA
1038 fprintf_unfiltered (file,
1039 "gdbarch_dump: has_shared_address_space = <%s>\n",
1040 host_address_to_string (gdbarch->has_shared_address_space));
a2428dbe 1041 fprintf_unfiltered (file,
48f7351b 1042 "gdbarch_dump: have_nonsteppable_watchpoint = %s\n",
623d3eb1 1043 plongest (gdbarch->have_nonsteppable_watchpoint));
48f7351b 1044 fprintf_unfiltered (file,
30737ed9
JB
1045 "gdbarch_dump: in_function_epilogue_p = <%s>\n",
1046 host_address_to_string (gdbarch->in_function_epilogue_p));
48f7351b 1047 fprintf_unfiltered (file,
30737ed9
JB
1048 "gdbarch_dump: in_solib_return_trampoline = <%s>\n",
1049 host_address_to_string (gdbarch->in_solib_return_trampoline));
3030c96e
UW
1050 fprintf_unfiltered (file,
1051 "gdbarch_dump: gdbarch_info_proc_p() = %d\n",
1052 gdbarch_info_proc_p (gdbarch));
1053 fprintf_unfiltered (file,
1054 "gdbarch_dump: info_proc = <%s>\n",
1055 host_address_to_string (gdbarch->info_proc));
48f7351b 1056 fprintf_unfiltered (file,
30737ed9
JB
1057 "gdbarch_dump: inner_than = <%s>\n",
1058 host_address_to_string (gdbarch->inner_than));
48f7351b
AC
1059 fprintf_unfiltered (file,
1060 "gdbarch_dump: int_bit = %s\n",
623d3eb1 1061 plongest (gdbarch->int_bit));
48f7351b
AC
1062 fprintf_unfiltered (file,
1063 "gdbarch_dump: gdbarch_integer_to_address_p() = %d\n",
be7811ad 1064 gdbarch_integer_to_address_p (gdbarch));
48f7351b 1065 fprintf_unfiltered (file,
30737ed9
JB
1066 "gdbarch_dump: integer_to_address = <%s>\n",
1067 host_address_to_string (gdbarch->integer_to_address));
48f7351b
AC
1068 fprintf_unfiltered (file,
1069 "gdbarch_dump: long_bit = %s\n",
623d3eb1 1070 plongest (gdbarch->long_bit));
48f7351b
AC
1071 fprintf_unfiltered (file,
1072 "gdbarch_dump: long_double_bit = %s\n",
623d3eb1 1073 plongest (gdbarch->long_double_bit));
a2428dbe 1074 fprintf_unfiltered (file,
48f7351b 1075 "gdbarch_dump: long_double_format = %s\n",
be7811ad 1076 pformat (gdbarch->long_double_format));
205c306f
DM
1077 fprintf_unfiltered (file,
1078 "gdbarch_dump: long_long_align_bit = %s\n",
1079 plongest (gdbarch->long_long_align_bit));
48f7351b
AC
1080 fprintf_unfiltered (file,
1081 "gdbarch_dump: long_long_bit = %s\n",
623d3eb1 1082 plongest (gdbarch->long_long_bit));
6432734d
UW
1083 fprintf_unfiltered (file,
1084 "gdbarch_dump: gdbarch_make_corefile_notes_p() = %d\n",
1085 gdbarch_make_corefile_notes_p (gdbarch));
1086 fprintf_unfiltered (file,
1087 "gdbarch_dump: make_corefile_notes = <%s>\n",
1088 host_address_to_string (gdbarch->make_corefile_notes));
237fc4c9
PA
1089 fprintf_unfiltered (file,
1090 "gdbarch_dump: gdbarch_max_insn_length_p() = %d\n",
1091 gdbarch_max_insn_length_p (gdbarch));
1092 fprintf_unfiltered (file,
1093 "gdbarch_dump: max_insn_length = %s\n",
623d3eb1 1094 plongest (gdbarch->max_insn_length));
48f7351b 1095 fprintf_unfiltered (file,
30737ed9
JB
1096 "gdbarch_dump: memory_insert_breakpoint = <%s>\n",
1097 host_address_to_string (gdbarch->memory_insert_breakpoint));
48f7351b 1098 fprintf_unfiltered (file,
30737ed9
JB
1099 "gdbarch_dump: memory_remove_breakpoint = <%s>\n",
1100 host_address_to_string (gdbarch->memory_remove_breakpoint));
48f7351b
AC
1101 fprintf_unfiltered (file,
1102 "gdbarch_dump: num_pseudo_regs = %s\n",
623d3eb1 1103 plongest (gdbarch->num_pseudo_regs));
48f7351b
AC
1104 fprintf_unfiltered (file,
1105 "gdbarch_dump: num_regs = %s\n",
623d3eb1 1106 plongest (gdbarch->num_regs));
48f7351b
AC
1107 fprintf_unfiltered (file,
1108 "gdbarch_dump: osabi = %s\n",
623d3eb1 1109 plongest (gdbarch->osabi));
1c772458
UW
1110 fprintf_unfiltered (file,
1111 "gdbarch_dump: gdbarch_overlay_update_p() = %d\n",
be7811ad 1112 gdbarch_overlay_update_p (gdbarch));
1c772458 1113 fprintf_unfiltered (file,
30737ed9
JB
1114 "gdbarch_dump: overlay_update = <%s>\n",
1115 host_address_to_string (gdbarch->overlay_update));
48f7351b
AC
1116 fprintf_unfiltered (file,
1117 "gdbarch_dump: pc_regnum = %s\n",
623d3eb1 1118 plongest (gdbarch->pc_regnum));
48f7351b 1119 fprintf_unfiltered (file,
30737ed9
JB
1120 "gdbarch_dump: pointer_to_address = <%s>\n",
1121 host_address_to_string (gdbarch->pointer_to_address));
7996bcec
AC
1122 fprintf_unfiltered (file,
1123 "gdbarch_dump: gdbarch_print_float_info_p() = %d\n",
be7811ad 1124 gdbarch_print_float_info_p (gdbarch));
7996bcec 1125 fprintf_unfiltered (file,
30737ed9
JB
1126 "gdbarch_dump: print_float_info = <%s>\n",
1127 host_address_to_string (gdbarch->print_float_info));
7996bcec 1128 fprintf_unfiltered (file,
30737ed9
JB
1129 "gdbarch_dump: print_insn = <%s>\n",
1130 host_address_to_string (gdbarch->print_insn));
48f7351b 1131 fprintf_unfiltered (file,
30737ed9
JB
1132 "gdbarch_dump: print_registers_info = <%s>\n",
1133 host_address_to_string (gdbarch->print_registers_info));
7996bcec
AC
1134 fprintf_unfiltered (file,
1135 "gdbarch_dump: gdbarch_print_vector_info_p() = %d\n",
be7811ad 1136 gdbarch_print_vector_info_p (gdbarch));
7996bcec 1137 fprintf_unfiltered (file,
30737ed9
JB
1138 "gdbarch_dump: print_vector_info = <%s>\n",
1139 host_address_to_string (gdbarch->print_vector_info));
0508c3ec
HZ
1140 fprintf_unfiltered (file,
1141 "gdbarch_dump: gdbarch_process_record_p() = %d\n",
1142 gdbarch_process_record_p (gdbarch));
1143 fprintf_unfiltered (file,
1144 "gdbarch_dump: process_record = <%s>\n",
1145 host_address_to_string (gdbarch->process_record));
3846b520
HZ
1146 fprintf_unfiltered (file,
1147 "gdbarch_dump: gdbarch_process_record_signal_p() = %d\n",
1148 gdbarch_process_record_signal_p (gdbarch));
1149 fprintf_unfiltered (file,
1150 "gdbarch_dump: process_record_signal = <%s>\n",
1151 host_address_to_string (gdbarch->process_record_signal));
48f7351b
AC
1152 fprintf_unfiltered (file,
1153 "gdbarch_dump: ps_regnum = %s\n",
623d3eb1 1154 plongest (gdbarch->ps_regnum));
a2428dbe
AC
1155 fprintf_unfiltered (file,
1156 "gdbarch_dump: gdbarch_pseudo_register_read_p() = %d\n",
be7811ad 1157 gdbarch_pseudo_register_read_p (gdbarch));
a2428dbe 1158 fprintf_unfiltered (file,
30737ed9
JB
1159 "gdbarch_dump: pseudo_register_read = <%s>\n",
1160 host_address_to_string (gdbarch->pseudo_register_read));
3543a589
TT
1161 fprintf_unfiltered (file,
1162 "gdbarch_dump: gdbarch_pseudo_register_read_value_p() = %d\n",
1163 gdbarch_pseudo_register_read_value_p (gdbarch));
1164 fprintf_unfiltered (file,
1165 "gdbarch_dump: pseudo_register_read_value = <%s>\n",
1166 host_address_to_string (gdbarch->pseudo_register_read_value));
a2428dbe
AC
1167 fprintf_unfiltered (file,
1168 "gdbarch_dump: gdbarch_pseudo_register_write_p() = %d\n",
be7811ad 1169 gdbarch_pseudo_register_write_p (gdbarch));
a2428dbe 1170 fprintf_unfiltered (file,
30737ed9
JB
1171 "gdbarch_dump: pseudo_register_write = <%s>\n",
1172 host_address_to_string (gdbarch->pseudo_register_write));
48f7351b
AC
1173 fprintf_unfiltered (file,
1174 "gdbarch_dump: ptr_bit = %s\n",
623d3eb1 1175 plongest (gdbarch->ptr_bit));
7996bcec
AC
1176 fprintf_unfiltered (file,
1177 "gdbarch_dump: gdbarch_push_dummy_call_p() = %d\n",
be7811ad 1178 gdbarch_push_dummy_call_p (gdbarch));
7996bcec 1179 fprintf_unfiltered (file,
30737ed9
JB
1180 "gdbarch_dump: push_dummy_call = <%s>\n",
1181 host_address_to_string (gdbarch->push_dummy_call));
7996bcec
AC
1182 fprintf_unfiltered (file,
1183 "gdbarch_dump: gdbarch_push_dummy_code_p() = %d\n",
be7811ad 1184 gdbarch_push_dummy_code_p (gdbarch));
7996bcec 1185 fprintf_unfiltered (file,
30737ed9
JB
1186 "gdbarch_dump: push_dummy_code = <%s>\n",
1187 host_address_to_string (gdbarch->push_dummy_code));
48f7351b
AC
1188 fprintf_unfiltered (file,
1189 "gdbarch_dump: gdbarch_read_pc_p() = %d\n",
be7811ad 1190 gdbarch_read_pc_p (gdbarch));
48f7351b 1191 fprintf_unfiltered (file,
30737ed9
JB
1192 "gdbarch_dump: read_pc = <%s>\n",
1193 host_address_to_string (gdbarch->read_pc));
60c5725c
DJ
1194 fprintf_unfiltered (file,
1195 "gdbarch_dump: gdbarch_record_special_symbol_p() = %d\n",
1196 gdbarch_record_special_symbol_p (gdbarch));
1197 fprintf_unfiltered (file,
30737ed9
JB
1198 "gdbarch_dump: record_special_symbol = <%s>\n",
1199 host_address_to_string (gdbarch->record_special_symbol));
a2428dbe 1200 fprintf_unfiltered (file,
30737ed9
JB
1201 "gdbarch_dump: register_name = <%s>\n",
1202 host_address_to_string (gdbarch->register_name));
48f7351b 1203 fprintf_unfiltered (file,
30737ed9
JB
1204 "gdbarch_dump: register_reggroup_p = <%s>\n",
1205 host_address_to_string (gdbarch->register_reggroup_p));
48f7351b 1206 fprintf_unfiltered (file,
30737ed9
JB
1207 "gdbarch_dump: register_sim_regno = <%s>\n",
1208 host_address_to_string (gdbarch->register_sim_regno));
48f7351b 1209 fprintf_unfiltered (file,
30737ed9
JB
1210 "gdbarch_dump: register_to_value = <%s>\n",
1211 host_address_to_string (gdbarch->register_to_value));
7996bcec
AC
1212 fprintf_unfiltered (file,
1213 "gdbarch_dump: gdbarch_register_type_p() = %d\n",
be7811ad 1214 gdbarch_register_type_p (gdbarch));
7996bcec 1215 fprintf_unfiltered (file,
30737ed9
JB
1216 "gdbarch_dump: register_type = <%s>\n",
1217 host_address_to_string (gdbarch->register_type));
a2428dbe
AC
1218 fprintf_unfiltered (file,
1219 "gdbarch_dump: gdbarch_regset_from_core_section_p() = %d\n",
be7811ad 1220 gdbarch_regset_from_core_section_p (gdbarch));
a2428dbe 1221 fprintf_unfiltered (file,
30737ed9
JB
1222 "gdbarch_dump: regset_from_core_section = <%s>\n",
1223 host_address_to_string (gdbarch->regset_from_core_section));
dde08ee1
PA
1224 fprintf_unfiltered (file,
1225 "gdbarch_dump: gdbarch_relocate_instruction_p() = %d\n",
1226 gdbarch_relocate_instruction_p (gdbarch));
1227 fprintf_unfiltered (file,
1228 "gdbarch_dump: relocate_instruction = <%s>\n",
1229 host_address_to_string (gdbarch->relocate_instruction));
a1dcb23a
DJ
1230 fprintf_unfiltered (file,
1231 "gdbarch_dump: remote_breakpoint_from_pc = <%s>\n",
1232 host_address_to_string (gdbarch->remote_breakpoint_from_pc));
123dc839 1233 fprintf_unfiltered (file,
30737ed9
JB
1234 "gdbarch_dump: remote_register_number = <%s>\n",
1235 host_address_to_string (gdbarch->remote_register_number));
a2428dbe
AC
1236 fprintf_unfiltered (file,
1237 "gdbarch_dump: gdbarch_return_value_p() = %d\n",
be7811ad 1238 gdbarch_return_value_p (gdbarch));
a2428dbe 1239 fprintf_unfiltered (file,
30737ed9
JB
1240 "gdbarch_dump: return_value = <%s>\n",
1241 host_address_to_string (gdbarch->return_value));
48f7351b 1242 fprintf_unfiltered (file,
30737ed9
JB
1243 "gdbarch_dump: sdb_reg_to_regnum = <%s>\n",
1244 host_address_to_string (gdbarch->sdb_reg_to_regnum));
48f7351b
AC
1245 fprintf_unfiltered (file,
1246 "gdbarch_dump: short_bit = %s\n",
623d3eb1 1247 plongest (gdbarch->short_bit));
3352ef37
AC
1248 fprintf_unfiltered (file,
1249 "gdbarch_dump: gdbarch_single_step_through_delay_p() = %d\n",
be7811ad 1250 gdbarch_single_step_through_delay_p (gdbarch));
3352ef37 1251 fprintf_unfiltered (file,
30737ed9
JB
1252 "gdbarch_dump: single_step_through_delay = <%s>\n",
1253 host_address_to_string (gdbarch->single_step_through_delay));
4309257c
PM
1254 fprintf_unfiltered (file,
1255 "gdbarch_dump: gdbarch_skip_main_prologue_p() = %d\n",
1256 gdbarch_skip_main_prologue_p (gdbarch));
1257 fprintf_unfiltered (file,
30737ed9
JB
1258 "gdbarch_dump: skip_main_prologue = <%s>\n",
1259 host_address_to_string (gdbarch->skip_main_prologue));
6d350bb5
UW
1260 fprintf_unfiltered (file,
1261 "gdbarch_dump: gdbarch_skip_permanent_breakpoint_p() = %d\n",
be7811ad 1262 gdbarch_skip_permanent_breakpoint_p (gdbarch));
6d350bb5 1263 fprintf_unfiltered (file,
30737ed9
JB
1264 "gdbarch_dump: skip_permanent_breakpoint = <%s>\n",
1265 host_address_to_string (gdbarch->skip_permanent_breakpoint));
dea0c52f 1266 fprintf_unfiltered (file,
30737ed9
JB
1267 "gdbarch_dump: skip_prologue = <%s>\n",
1268 host_address_to_string (gdbarch->skip_prologue));
48f7351b 1269 fprintf_unfiltered (file,
30737ed9
JB
1270 "gdbarch_dump: skip_solib_resolver = <%s>\n",
1271 host_address_to_string (gdbarch->skip_solib_resolver));
48f7351b 1272 fprintf_unfiltered (file,
30737ed9
JB
1273 "gdbarch_dump: skip_trampoline_code = <%s>\n",
1274 host_address_to_string (gdbarch->skip_trampoline_code));
48f7351b 1275 fprintf_unfiltered (file,
30737ed9
JB
1276 "gdbarch_dump: smash_text_address = <%s>\n",
1277 host_address_to_string (gdbarch->smash_text_address));
48f7351b
AC
1278 fprintf_unfiltered (file,
1279 "gdbarch_dump: gdbarch_software_single_step_p() = %d\n",
be7811ad 1280 gdbarch_software_single_step_p (gdbarch));
48f7351b 1281 fprintf_unfiltered (file,
30737ed9
JB
1282 "gdbarch_dump: software_single_step = <%s>\n",
1283 host_address_to_string (gdbarch->software_single_step));
203c3895
UW
1284 fprintf_unfiltered (file,
1285 "gdbarch_dump: sofun_address_maybe_missing = %s\n",
623d3eb1 1286 plongest (gdbarch->sofun_address_maybe_missing));
08105857
PA
1287 fprintf_unfiltered (file,
1288 "gdbarch_dump: solib_symbols_extension = %s\n",
1289 pstring (gdbarch->solib_symbols_extension));
48f7351b
AC
1290 fprintf_unfiltered (file,
1291 "gdbarch_dump: sp_regnum = %s\n",
623d3eb1 1292 plongest (gdbarch->sp_regnum));
a2428dbe 1293 fprintf_unfiltered (file,
30737ed9
JB
1294 "gdbarch_dump: stab_reg_to_regnum = <%s>\n",
1295 host_address_to_string (gdbarch->stab_reg_to_regnum));
48f7351b 1296 fprintf_unfiltered (file,
30737ed9
JB
1297 "gdbarch_dump: stabs_argument_has_addr = <%s>\n",
1298 host_address_to_string (gdbarch->stabs_argument_has_addr));
55aa24fb
SDJ
1299 fprintf_unfiltered (file,
1300 "gdbarch_dump: stap_gdb_register_prefix = %s\n",
1301 gdbarch->stap_gdb_register_prefix);
1302 fprintf_unfiltered (file,
1303 "gdbarch_dump: stap_gdb_register_suffix = %s\n",
1304 gdbarch->stap_gdb_register_suffix);
1305 fprintf_unfiltered (file,
1306 "gdbarch_dump: stap_integer_prefix = %s\n",
1307 gdbarch->stap_integer_prefix);
1308 fprintf_unfiltered (file,
1309 "gdbarch_dump: stap_integer_suffix = %s\n",
1310 gdbarch->stap_integer_suffix);
1311 fprintf_unfiltered (file,
1312 "gdbarch_dump: gdbarch_stap_is_single_operand_p() = %d\n",
1313 gdbarch_stap_is_single_operand_p (gdbarch));
1314 fprintf_unfiltered (file,
1315 "gdbarch_dump: stap_is_single_operand = <%s>\n",
1316 host_address_to_string (gdbarch->stap_is_single_operand));
1317 fprintf_unfiltered (file,
1318 "gdbarch_dump: gdbarch_stap_parse_special_token_p() = %d\n",
1319 gdbarch_stap_parse_special_token_p (gdbarch));
1320 fprintf_unfiltered (file,
1321 "gdbarch_dump: stap_parse_special_token = <%s>\n",
1322 host_address_to_string (gdbarch->stap_parse_special_token));
1323 fprintf_unfiltered (file,
1324 "gdbarch_dump: stap_register_indirection_prefix = %s\n",
1325 gdbarch->stap_register_indirection_prefix);
1326 fprintf_unfiltered (file,
1327 "gdbarch_dump: stap_register_indirection_suffix = %s\n",
1328 gdbarch->stap_register_indirection_suffix);
1329 fprintf_unfiltered (file,
1330 "gdbarch_dump: stap_register_prefix = %s\n",
1331 gdbarch->stap_register_prefix);
1332 fprintf_unfiltered (file,
1333 "gdbarch_dump: stap_register_suffix = %s\n",
1334 gdbarch->stap_register_suffix);
149ad273
UW
1335 fprintf_unfiltered (file,
1336 "gdbarch_dump: gdbarch_static_transform_name_p() = %d\n",
be7811ad 1337 gdbarch_static_transform_name_p (gdbarch));
149ad273 1338 fprintf_unfiltered (file,
30737ed9
JB
1339 "gdbarch_dump: static_transform_name = <%s>\n",
1340 host_address_to_string (gdbarch->static_transform_name));
424163ea
DJ
1341 fprintf_unfiltered (file,
1342 "gdbarch_dump: target_desc = %s\n",
30737ed9 1343 host_address_to_string (gdbarch->target_desc));
1cded358 1344 fprintf_unfiltered (file,
30737ed9
JB
1345 "gdbarch_dump: target_signal_from_host = <%s>\n",
1346 host_address_to_string (gdbarch->target_signal_from_host));
1cded358 1347 fprintf_unfiltered (file,
30737ed9
JB
1348 "gdbarch_dump: target_signal_to_host = <%s>\n",
1349 host_address_to_string (gdbarch->target_signal_to_host));
08e45a40 1350 fprintf_unfiltered (file,
a2428dbe 1351 "gdbarch_dump: gdbarch_unwind_pc_p() = %d\n",
be7811ad 1352 gdbarch_unwind_pc_p (gdbarch));
7996bcec 1353 fprintf_unfiltered (file,
30737ed9
JB
1354 "gdbarch_dump: unwind_pc = <%s>\n",
1355 host_address_to_string (gdbarch->unwind_pc));
bd1ce8ba 1356 fprintf_unfiltered (file,
a2428dbe 1357 "gdbarch_dump: gdbarch_unwind_sp_p() = %d\n",
be7811ad 1358 gdbarch_unwind_sp_p (gdbarch));
bd1ce8ba 1359 fprintf_unfiltered (file,
30737ed9
JB
1360 "gdbarch_dump: unwind_sp = <%s>\n",
1361 host_address_to_string (gdbarch->unwind_sp));
9acbedc0 1362 fprintf_unfiltered (file,
30737ed9
JB
1363 "gdbarch_dump: value_from_register = <%s>\n",
1364 host_address_to_string (gdbarch->value_from_register));
48f7351b 1365 fprintf_unfiltered (file,
30737ed9
JB
1366 "gdbarch_dump: value_to_register = <%s>\n",
1367 host_address_to_string (gdbarch->value_to_register));
0d5de010
DJ
1368 fprintf_unfiltered (file,
1369 "gdbarch_dump: vbit_in_delta = %s\n",
623d3eb1 1370 plongest (gdbarch->vbit_in_delta));
48f7351b 1371 fprintf_unfiltered (file,
30737ed9
JB
1372 "gdbarch_dump: virtual_frame_pointer = <%s>\n",
1373 host_address_to_string (gdbarch->virtual_frame_pointer));
0d5de010
DJ
1374 fprintf_unfiltered (file,
1375 "gdbarch_dump: vtable_function_descriptors = %s\n",
623d3eb1 1376 plongest (gdbarch->vtable_function_descriptors));
4b9b3959 1377 fprintf_unfiltered (file,
61a1198a 1378 "gdbarch_dump: gdbarch_write_pc_p() = %d\n",
be7811ad 1379 gdbarch_write_pc_p (gdbarch));
48f7351b 1380 fprintf_unfiltered (file,
30737ed9
JB
1381 "gdbarch_dump: write_pc = <%s>\n",
1382 host_address_to_string (gdbarch->write_pc));
be7811ad
MD
1383 if (gdbarch->dump_tdep != NULL)
1384 gdbarch->dump_tdep (gdbarch, file);
0f71a2f6
JM
1385}
1386
1387struct gdbarch_tdep *
104c1213 1388gdbarch_tdep (struct gdbarch *gdbarch)
0f71a2f6
JM
1389{
1390 if (gdbarch_debug >= 2)
0f71a2f6
JM
1391 fprintf_unfiltered (gdb_stdlog, "gdbarch_tdep called\n");
1392 return gdbarch->tdep;
1393}
1394
1395
1396const struct bfd_arch_info *
104c1213 1397gdbarch_bfd_arch_info (struct gdbarch *gdbarch)
0f71a2f6 1398{
8de9bdc4 1399 gdb_assert (gdbarch != NULL);
0f71a2f6 1400 if (gdbarch_debug >= 2)
0f71a2f6
JM
1401 fprintf_unfiltered (gdb_stdlog, "gdbarch_bfd_arch_info called\n");
1402 return gdbarch->bfd_arch_info;
1403}
1404
1405int
104c1213 1406gdbarch_byte_order (struct gdbarch *gdbarch)
0f71a2f6 1407{
8de9bdc4 1408 gdb_assert (gdbarch != NULL);
0f71a2f6 1409 if (gdbarch_debug >= 2)
0f71a2f6
JM
1410 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order called\n");
1411 return gdbarch->byte_order;
1412}
1413
9d4fde75
SS
1414int
1415gdbarch_byte_order_for_code (struct gdbarch *gdbarch)
1416{
1417 gdb_assert (gdbarch != NULL);
1418 if (gdbarch_debug >= 2)
1419 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order_for_code called\n");
1420 return gdbarch->byte_order_for_code;
1421}
1422
4be87837
DJ
1423enum gdb_osabi
1424gdbarch_osabi (struct gdbarch *gdbarch)
1425{
1426 gdb_assert (gdbarch != NULL);
1427 if (gdbarch_debug >= 2)
1428 fprintf_unfiltered (gdb_stdlog, "gdbarch_osabi called\n");
1429 return gdbarch->osabi;
1430}
1431
424163ea
DJ
1432const struct target_desc *
1433gdbarch_target_desc (struct gdbarch *gdbarch)
1434{
1435 gdb_assert (gdbarch != NULL);
1436 if (gdbarch_debug >= 2)
1437 fprintf_unfiltered (gdb_stdlog, "gdbarch_target_desc called\n");
1438 return gdbarch->target_desc;
1439}
1440
32c9a795
MD
1441int
1442gdbarch_bits_big_endian (struct gdbarch *gdbarch)
1443{
1444 gdb_assert (gdbarch != NULL);
1445 /* Skip verify of bits_big_endian, invalid_p == 0 */
1446 if (gdbarch_debug >= 2)
1447 fprintf_unfiltered (gdb_stdlog, "gdbarch_bits_big_endian called\n");
1448 return gdbarch->bits_big_endian;
1449}
1450
1451void
1452set_gdbarch_bits_big_endian (struct gdbarch *gdbarch,
1453 int bits_big_endian)
1454{
1455 gdbarch->bits_big_endian = bits_big_endian;
1456}
1457
0f71a2f6 1458int
104c1213 1459gdbarch_short_bit (struct gdbarch *gdbarch)
0f71a2f6 1460{
8de9bdc4 1461 gdb_assert (gdbarch != NULL);
66b43ecb 1462 /* Skip verify of short_bit, invalid_p == 0 */
0f71a2f6 1463 if (gdbarch_debug >= 2)
0f71a2f6
JM
1464 fprintf_unfiltered (gdb_stdlog, "gdbarch_short_bit called\n");
1465 return gdbarch->short_bit;
1466}
1467
1468void
104c1213
JM
1469set_gdbarch_short_bit (struct gdbarch *gdbarch,
1470 int short_bit)
0f71a2f6
JM
1471{
1472 gdbarch->short_bit = short_bit;
1473}
1474
1475int
104c1213 1476gdbarch_int_bit (struct gdbarch *gdbarch)
0f71a2f6 1477{
8de9bdc4 1478 gdb_assert (gdbarch != NULL);
66b43ecb 1479 /* Skip verify of int_bit, invalid_p == 0 */
0f71a2f6 1480 if (gdbarch_debug >= 2)
0f71a2f6
JM
1481 fprintf_unfiltered (gdb_stdlog, "gdbarch_int_bit called\n");
1482 return gdbarch->int_bit;
1483}
1484
1485void
104c1213
JM
1486set_gdbarch_int_bit (struct gdbarch *gdbarch,
1487 int int_bit)
0f71a2f6
JM
1488{
1489 gdbarch->int_bit = int_bit;
1490}
1491
1492int
104c1213 1493gdbarch_long_bit (struct gdbarch *gdbarch)
0f71a2f6 1494{
8de9bdc4 1495 gdb_assert (gdbarch != NULL);
66b43ecb 1496 /* Skip verify of long_bit, invalid_p == 0 */
0f71a2f6 1497 if (gdbarch_debug >= 2)
0f71a2f6
JM
1498 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_bit called\n");
1499 return gdbarch->long_bit;
1500}
1501
1502void
104c1213
JM
1503set_gdbarch_long_bit (struct gdbarch *gdbarch,
1504 int long_bit)
0f71a2f6
JM
1505{
1506 gdbarch->long_bit = long_bit;
1507}
1508
1509int
104c1213 1510gdbarch_long_long_bit (struct gdbarch *gdbarch)
0f71a2f6 1511{
8de9bdc4 1512 gdb_assert (gdbarch != NULL);
66b43ecb 1513 /* Skip verify of long_long_bit, invalid_p == 0 */
0f71a2f6 1514 if (gdbarch_debug >= 2)
0f71a2f6
JM
1515 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_bit called\n");
1516 return gdbarch->long_long_bit;
1517}
1518
1519void
104c1213
JM
1520set_gdbarch_long_long_bit (struct gdbarch *gdbarch,
1521 int long_long_bit)
0f71a2f6
JM
1522{
1523 gdbarch->long_long_bit = long_long_bit;
1524}
1525
205c306f
DM
1526int
1527gdbarch_long_long_align_bit (struct gdbarch *gdbarch)
1528{
1529 gdb_assert (gdbarch != NULL);
1530 /* Skip verify of long_long_align_bit, invalid_p == 0 */
1531 if (gdbarch_debug >= 2)
1532 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_align_bit called\n");
1533 return gdbarch->long_long_align_bit;
1534}
1535
1536void
1537set_gdbarch_long_long_align_bit (struct gdbarch *gdbarch,
1538 int long_long_align_bit)
1539{
1540 gdbarch->long_long_align_bit = long_long_align_bit;
1541}
1542
f9e9243a
UW
1543int
1544gdbarch_half_bit (struct gdbarch *gdbarch)
1545{
1546 gdb_assert (gdbarch != NULL);
1547 /* Skip verify of half_bit, invalid_p == 0 */
1548 if (gdbarch_debug >= 2)
1549 fprintf_unfiltered (gdb_stdlog, "gdbarch_half_bit called\n");
1550 return gdbarch->half_bit;
1551}
1552
1553void
1554set_gdbarch_half_bit (struct gdbarch *gdbarch,
1555 int half_bit)
1556{
1557 gdbarch->half_bit = half_bit;
1558}
1559
1560const struct floatformat **
1561gdbarch_half_format (struct gdbarch *gdbarch)
1562{
1563 gdb_assert (gdbarch != NULL);
1564 if (gdbarch_debug >= 2)
1565 fprintf_unfiltered (gdb_stdlog, "gdbarch_half_format called\n");
1566 return gdbarch->half_format;
1567}
1568
1569void
1570set_gdbarch_half_format (struct gdbarch *gdbarch,
1571 const struct floatformat ** half_format)
1572{
1573 gdbarch->half_format = half_format;
1574}
1575
0f71a2f6 1576int
104c1213 1577gdbarch_float_bit (struct gdbarch *gdbarch)
0f71a2f6 1578{
8de9bdc4 1579 gdb_assert (gdbarch != NULL);
66b43ecb 1580 /* Skip verify of float_bit, invalid_p == 0 */
0f71a2f6 1581 if (gdbarch_debug >= 2)
0f71a2f6
JM
1582 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_bit called\n");
1583 return gdbarch->float_bit;
1584}
1585
1586void
104c1213
JM
1587set_gdbarch_float_bit (struct gdbarch *gdbarch,
1588 int float_bit)
0f71a2f6
JM
1589{
1590 gdbarch->float_bit = float_bit;
1591}
1592
8da61cc4 1593const struct floatformat **
456fcf94
AC
1594gdbarch_float_format (struct gdbarch *gdbarch)
1595{
1596 gdb_assert (gdbarch != NULL);
1597 if (gdbarch_debug >= 2)
1598 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_format called\n");
1599 return gdbarch->float_format;
1600}
1601
1602void
1603set_gdbarch_float_format (struct gdbarch *gdbarch,
8da61cc4 1604 const struct floatformat ** float_format)
456fcf94
AC
1605{
1606 gdbarch->float_format = float_format;
1607}
1608
0f71a2f6 1609int
104c1213 1610gdbarch_double_bit (struct gdbarch *gdbarch)
0f71a2f6 1611{
8de9bdc4 1612 gdb_assert (gdbarch != NULL);
66b43ecb 1613 /* Skip verify of double_bit, invalid_p == 0 */
0f71a2f6 1614 if (gdbarch_debug >= 2)
0f71a2f6
JM
1615 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_bit called\n");
1616 return gdbarch->double_bit;
1617}
1618
1619void
104c1213
JM
1620set_gdbarch_double_bit (struct gdbarch *gdbarch,
1621 int double_bit)
0f71a2f6
JM
1622{
1623 gdbarch->double_bit = double_bit;
1624}
1625
8da61cc4 1626const struct floatformat **
456fcf94
AC
1627gdbarch_double_format (struct gdbarch *gdbarch)
1628{
1629 gdb_assert (gdbarch != NULL);
1630 if (gdbarch_debug >= 2)
1631 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_format called\n");
1632 return gdbarch->double_format;
1633}
1634
1635void
1636set_gdbarch_double_format (struct gdbarch *gdbarch,
8da61cc4 1637 const struct floatformat ** double_format)
456fcf94
AC
1638{
1639 gdbarch->double_format = double_format;
1640}
1641
0f71a2f6 1642int
104c1213 1643gdbarch_long_double_bit (struct gdbarch *gdbarch)
0f71a2f6 1644{
8de9bdc4 1645 gdb_assert (gdbarch != NULL);
66b43ecb 1646 /* Skip verify of long_double_bit, invalid_p == 0 */
0f71a2f6 1647 if (gdbarch_debug >= 2)
0f71a2f6
JM
1648 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_bit called\n");
1649 return gdbarch->long_double_bit;
1650}
1651
1652void
104c1213
JM
1653set_gdbarch_long_double_bit (struct gdbarch *gdbarch,
1654 int long_double_bit)
0f71a2f6
JM
1655{
1656 gdbarch->long_double_bit = long_double_bit;
1657}
1658
8da61cc4 1659const struct floatformat **
456fcf94
AC
1660gdbarch_long_double_format (struct gdbarch *gdbarch)
1661{
1662 gdb_assert (gdbarch != NULL);
1663 if (gdbarch_debug >= 2)
1664 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_format called\n");
1665 return gdbarch->long_double_format;
1666}
1667
1668void
1669set_gdbarch_long_double_format (struct gdbarch *gdbarch,
8da61cc4 1670 const struct floatformat ** long_double_format)
456fcf94
AC
1671{
1672 gdbarch->long_double_format = long_double_format;
1673}
1674
66b43ecb
AC
1675int
1676gdbarch_ptr_bit (struct gdbarch *gdbarch)
1677{
8de9bdc4 1678 gdb_assert (gdbarch != NULL);
66b43ecb
AC
1679 /* Skip verify of ptr_bit, invalid_p == 0 */
1680 if (gdbarch_debug >= 2)
1681 fprintf_unfiltered (gdb_stdlog, "gdbarch_ptr_bit called\n");
1682 return gdbarch->ptr_bit;
1683}
1684
1685void
1686set_gdbarch_ptr_bit (struct gdbarch *gdbarch,
1687 int ptr_bit)
1688{
1689 gdbarch->ptr_bit = ptr_bit;
1690}
1691
52204a0b
DT
1692int
1693gdbarch_addr_bit (struct gdbarch *gdbarch)
1694{
8de9bdc4 1695 gdb_assert (gdbarch != NULL);
956ac328
AC
1696 /* Check variable changed from pre-default. */
1697 gdb_assert (gdbarch->addr_bit != 0);
52204a0b
DT
1698 if (gdbarch_debug >= 2)
1699 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bit called\n");
1700 return gdbarch->addr_bit;
1701}
1702
1703void
1704set_gdbarch_addr_bit (struct gdbarch *gdbarch,
1705 int addr_bit)
1706{
1707 gdbarch->addr_bit = addr_bit;
1708}
1709
8da614df
CV
1710int
1711gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch)
1712{
1713 gdb_assert (gdbarch != NULL);
1714 /* Check variable changed from pre-default. */
1715 gdb_assert (gdbarch->dwarf2_addr_size != 0);
1716 if (gdbarch_debug >= 2)
1717 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_addr_size called\n");
1718 return gdbarch->dwarf2_addr_size;
1719}
1720
1721void
1722set_gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch,
1723 int dwarf2_addr_size)
1724{
1725 gdbarch->dwarf2_addr_size = dwarf2_addr_size;
1726}
1727
4e409299
JB
1728int
1729gdbarch_char_signed (struct gdbarch *gdbarch)
1730{
8de9bdc4 1731 gdb_assert (gdbarch != NULL);
956ac328
AC
1732 /* Check variable changed from pre-default. */
1733 gdb_assert (gdbarch->char_signed != -1);
4e409299
JB
1734 if (gdbarch_debug >= 2)
1735 fprintf_unfiltered (gdb_stdlog, "gdbarch_char_signed called\n");
1736 return gdbarch->char_signed;
1737}
1738
1739void
1740set_gdbarch_char_signed (struct gdbarch *gdbarch,
1741 int char_signed)
1742{
1743 gdbarch->char_signed = char_signed;
1744}
1745
cde9ea48
AC
1746int
1747gdbarch_read_pc_p (struct gdbarch *gdbarch)
1748{
1749 gdb_assert (gdbarch != NULL);
956ac328 1750 return gdbarch->read_pc != NULL;
cde9ea48
AC
1751}
1752
0f71a2f6 1753CORE_ADDR
61a1198a 1754gdbarch_read_pc (struct gdbarch *gdbarch, struct regcache *regcache)
0f71a2f6 1755{
8de9bdc4 1756 gdb_assert (gdbarch != NULL);
956ac328 1757 gdb_assert (gdbarch->read_pc != NULL);
0f71a2f6 1758 if (gdbarch_debug >= 2)
0f71a2f6 1759 fprintf_unfiltered (gdb_stdlog, "gdbarch_read_pc called\n");
61a1198a 1760 return gdbarch->read_pc (regcache);
0f71a2f6
JM
1761}
1762
1763void
104c1213
JM
1764set_gdbarch_read_pc (struct gdbarch *gdbarch,
1765 gdbarch_read_pc_ftype read_pc)
0f71a2f6
JM
1766{
1767 gdbarch->read_pc = read_pc;
1768}
1769
61a1198a
UW
1770int
1771gdbarch_write_pc_p (struct gdbarch *gdbarch)
1772{
1773 gdb_assert (gdbarch != NULL);
1774 return gdbarch->write_pc != NULL;
1775}
1776
0f71a2f6 1777void
61a1198a 1778gdbarch_write_pc (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR val)
0f71a2f6 1779{
8de9bdc4 1780 gdb_assert (gdbarch != NULL);
956ac328 1781 gdb_assert (gdbarch->write_pc != NULL);
0f71a2f6 1782 if (gdbarch_debug >= 2)
0f71a2f6 1783 fprintf_unfiltered (gdb_stdlog, "gdbarch_write_pc called\n");
61a1198a 1784 gdbarch->write_pc (regcache, val);
0f71a2f6
JM
1785}
1786
1787void
104c1213
JM
1788set_gdbarch_write_pc (struct gdbarch *gdbarch,
1789 gdbarch_write_pc_ftype write_pc)
0f71a2f6
JM
1790{
1791 gdbarch->write_pc = write_pc;
1792}
1793
39d4ef09
AC
1794void
1795gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset)
1796{
8de9bdc4 1797 gdb_assert (gdbarch != NULL);
956ac328 1798 gdb_assert (gdbarch->virtual_frame_pointer != NULL);
39d4ef09
AC
1799 if (gdbarch_debug >= 2)
1800 fprintf_unfiltered (gdb_stdlog, "gdbarch_virtual_frame_pointer called\n");
a54fba4c 1801 gdbarch->virtual_frame_pointer (gdbarch, pc, frame_regnum, frame_offset);
39d4ef09
AC
1802}
1803
1804void
1805set_gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch,
1806 gdbarch_virtual_frame_pointer_ftype virtual_frame_pointer)
1807{
1808 gdbarch->virtual_frame_pointer = virtual_frame_pointer;
1809}
1810
61a0eb5b 1811int
d8124050 1812gdbarch_pseudo_register_read_p (struct gdbarch *gdbarch)
61a0eb5b 1813{
8de9bdc4 1814 gdb_assert (gdbarch != NULL);
956ac328 1815 return gdbarch->pseudo_register_read != NULL;
61a0eb5b
AC
1816}
1817
05d1431c 1818enum register_status
b60c417a 1819gdbarch_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, gdb_byte *buf)
61a0eb5b 1820{
8de9bdc4 1821 gdb_assert (gdbarch != NULL);
956ac328 1822 gdb_assert (gdbarch->pseudo_register_read != NULL);
61a0eb5b 1823 if (gdbarch_debug >= 2)
d8124050 1824 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read called\n");
05d1431c 1825 return gdbarch->pseudo_register_read (gdbarch, regcache, cookednum, buf);
61a0eb5b
AC
1826}
1827
1828void
d8124050
AC
1829set_gdbarch_pseudo_register_read (struct gdbarch *gdbarch,
1830 gdbarch_pseudo_register_read_ftype pseudo_register_read)
61a0eb5b 1831{
d8124050 1832 gdbarch->pseudo_register_read = pseudo_register_read;
61a0eb5b
AC
1833}
1834
3543a589
TT
1835int
1836gdbarch_pseudo_register_read_value_p (struct gdbarch *gdbarch)
1837{
1838 gdb_assert (gdbarch != NULL);
1839 return gdbarch->pseudo_register_read_value != NULL;
1840}
1841
1842struct value *
1843gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum)
1844{
1845 gdb_assert (gdbarch != NULL);
1846 gdb_assert (gdbarch->pseudo_register_read_value != NULL);
1847 if (gdbarch_debug >= 2)
1848 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read_value called\n");
1849 return gdbarch->pseudo_register_read_value (gdbarch, regcache, cookednum);
1850}
1851
1852void
1853set_gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch,
1854 gdbarch_pseudo_register_read_value_ftype pseudo_register_read_value)
1855{
1856 gdbarch->pseudo_register_read_value = pseudo_register_read_value;
1857}
1858
61a0eb5b 1859int
d8124050 1860gdbarch_pseudo_register_write_p (struct gdbarch *gdbarch)
61a0eb5b 1861{
8de9bdc4 1862 gdb_assert (gdbarch != NULL);
956ac328 1863 return gdbarch->pseudo_register_write != NULL;
61a0eb5b
AC
1864}
1865
1866void
b60c417a 1867gdbarch_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, const gdb_byte *buf)
61a0eb5b 1868{
8de9bdc4 1869 gdb_assert (gdbarch != NULL);
956ac328 1870 gdb_assert (gdbarch->pseudo_register_write != NULL);
61a0eb5b 1871 if (gdbarch_debug >= 2)
d8124050
AC
1872 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_write called\n");
1873 gdbarch->pseudo_register_write (gdbarch, regcache, cookednum, buf);
61a0eb5b
AC
1874}
1875
1876void
d8124050
AC
1877set_gdbarch_pseudo_register_write (struct gdbarch *gdbarch,
1878 gdbarch_pseudo_register_write_ftype pseudo_register_write)
61a0eb5b 1879{
d8124050 1880 gdbarch->pseudo_register_write = pseudo_register_write;
61a0eb5b
AC
1881}
1882
0f71a2f6 1883int
104c1213 1884gdbarch_num_regs (struct gdbarch *gdbarch)
0f71a2f6 1885{
8de9bdc4 1886 gdb_assert (gdbarch != NULL);
956ac328
AC
1887 /* Check variable changed from pre-default. */
1888 gdb_assert (gdbarch->num_regs != -1);
0f71a2f6 1889 if (gdbarch_debug >= 2)
0f71a2f6
JM
1890 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_regs called\n");
1891 return gdbarch->num_regs;
1892}
1893
1894void
104c1213
JM
1895set_gdbarch_num_regs (struct gdbarch *gdbarch,
1896 int num_regs)
0f71a2f6
JM
1897{
1898 gdbarch->num_regs = num_regs;
1899}
1900
0aba1244
EZ
1901int
1902gdbarch_num_pseudo_regs (struct gdbarch *gdbarch)
1903{
8de9bdc4 1904 gdb_assert (gdbarch != NULL);
0aba1244
EZ
1905 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
1906 if (gdbarch_debug >= 2)
1907 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_pseudo_regs called\n");
1908 return gdbarch->num_pseudo_regs;
1909}
1910
1911void
1912set_gdbarch_num_pseudo_regs (struct gdbarch *gdbarch,
1913 int num_pseudo_regs)
1914{
1915 gdbarch->num_pseudo_regs = num_pseudo_regs;
1916}
1917
175ff332
HZ
1918int
1919gdbarch_ax_pseudo_register_collect_p (struct gdbarch *gdbarch)
1920{
1921 gdb_assert (gdbarch != NULL);
1922 return gdbarch->ax_pseudo_register_collect != NULL;
1923}
1924
1925int
1926gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch, struct agent_expr *ax, int reg)
1927{
1928 gdb_assert (gdbarch != NULL);
1929 gdb_assert (gdbarch->ax_pseudo_register_collect != NULL);
1930 if (gdbarch_debug >= 2)
1931 fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_collect called\n");
1932 return gdbarch->ax_pseudo_register_collect (gdbarch, ax, reg);
1933}
1934
1935void
1936set_gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch,
1937 gdbarch_ax_pseudo_register_collect_ftype ax_pseudo_register_collect)
1938{
1939 gdbarch->ax_pseudo_register_collect = ax_pseudo_register_collect;
1940}
1941
1942int
1943gdbarch_ax_pseudo_register_push_stack_p (struct gdbarch *gdbarch)
1944{
1945 gdb_assert (gdbarch != NULL);
1946 return gdbarch->ax_pseudo_register_push_stack != NULL;
1947}
1948
1949int
1950gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch, struct agent_expr *ax, int reg)
1951{
1952 gdb_assert (gdbarch != NULL);
1953 gdb_assert (gdbarch->ax_pseudo_register_push_stack != NULL);
1954 if (gdbarch_debug >= 2)
1955 fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_push_stack called\n");
1956 return gdbarch->ax_pseudo_register_push_stack (gdbarch, ax, reg);
1957}
1958
1959void
1960set_gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch,
1961 gdbarch_ax_pseudo_register_push_stack_ftype ax_pseudo_register_push_stack)
1962{
1963 gdbarch->ax_pseudo_register_push_stack = ax_pseudo_register_push_stack;
1964}
1965
0f71a2f6 1966int
104c1213 1967gdbarch_sp_regnum (struct gdbarch *gdbarch)
0f71a2f6 1968{
8de9bdc4 1969 gdb_assert (gdbarch != NULL);
1200cd6e 1970 /* Skip verify of sp_regnum, invalid_p == 0 */
0f71a2f6 1971 if (gdbarch_debug >= 2)
0f71a2f6
JM
1972 fprintf_unfiltered (gdb_stdlog, "gdbarch_sp_regnum called\n");
1973 return gdbarch->sp_regnum;
1974}
1975
1976void
104c1213
JM
1977set_gdbarch_sp_regnum (struct gdbarch *gdbarch,
1978 int sp_regnum)
0f71a2f6
JM
1979{
1980 gdbarch->sp_regnum = sp_regnum;
1981}
1982
0f71a2f6 1983int
104c1213 1984gdbarch_pc_regnum (struct gdbarch *gdbarch)
0f71a2f6 1985{
8de9bdc4 1986 gdb_assert (gdbarch != NULL);
1200cd6e 1987 /* Skip verify of pc_regnum, invalid_p == 0 */
0f71a2f6 1988 if (gdbarch_debug >= 2)
0f71a2f6
JM
1989 fprintf_unfiltered (gdb_stdlog, "gdbarch_pc_regnum called\n");
1990 return gdbarch->pc_regnum;
1991}
1992
1993void
104c1213
JM
1994set_gdbarch_pc_regnum (struct gdbarch *gdbarch,
1995 int pc_regnum)
0f71a2f6
JM
1996{
1997 gdbarch->pc_regnum = pc_regnum;
1998}
1999
c2169756
AC
2000int
2001gdbarch_ps_regnum (struct gdbarch *gdbarch)
2002{
8de9bdc4 2003 gdb_assert (gdbarch != NULL);
c2169756
AC
2004 /* Skip verify of ps_regnum, invalid_p == 0 */
2005 if (gdbarch_debug >= 2)
2006 fprintf_unfiltered (gdb_stdlog, "gdbarch_ps_regnum called\n");
2007 return gdbarch->ps_regnum;
2008}
2009
2010void
2011set_gdbarch_ps_regnum (struct gdbarch *gdbarch,
2012 int ps_regnum)
2013{
2014 gdbarch->ps_regnum = ps_regnum;
2015}
2016
60054393
MS
2017int
2018gdbarch_fp0_regnum (struct gdbarch *gdbarch)
2019{
8de9bdc4 2020 gdb_assert (gdbarch != NULL);
60054393
MS
2021 /* Skip verify of fp0_regnum, invalid_p == 0 */
2022 if (gdbarch_debug >= 2)
2023 fprintf_unfiltered (gdb_stdlog, "gdbarch_fp0_regnum called\n");
2024 return gdbarch->fp0_regnum;
2025}
2026
2027void
2028set_gdbarch_fp0_regnum (struct gdbarch *gdbarch,
2029 int fp0_regnum)
2030{
2031 gdbarch->fp0_regnum = fp0_regnum;
2032}
2033
88c72b7d
AC
2034int
2035gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch, int stab_regnr)
2036{
8de9bdc4 2037 gdb_assert (gdbarch != NULL);
956ac328 2038 gdb_assert (gdbarch->stab_reg_to_regnum != NULL);
88c72b7d
AC
2039 if (gdbarch_debug >= 2)
2040 fprintf_unfiltered (gdb_stdlog, "gdbarch_stab_reg_to_regnum called\n");
d3f73121 2041 return gdbarch->stab_reg_to_regnum (gdbarch, stab_regnr);
88c72b7d
AC
2042}
2043
2044void
2045set_gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch,
2046 gdbarch_stab_reg_to_regnum_ftype stab_reg_to_regnum)
2047{
2048 gdbarch->stab_reg_to_regnum = stab_reg_to_regnum;
2049}
2050
2051int
2052gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch, int ecoff_regnr)
2053{
8de9bdc4 2054 gdb_assert (gdbarch != NULL);
956ac328 2055 gdb_assert (gdbarch->ecoff_reg_to_regnum != NULL);
88c72b7d
AC
2056 if (gdbarch_debug >= 2)
2057 fprintf_unfiltered (gdb_stdlog, "gdbarch_ecoff_reg_to_regnum called\n");
d3f73121 2058 return gdbarch->ecoff_reg_to_regnum (gdbarch, ecoff_regnr);
88c72b7d
AC
2059}
2060
2061void
2062set_gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch,
2063 gdbarch_ecoff_reg_to_regnum_ftype ecoff_reg_to_regnum)
2064{
2065 gdbarch->ecoff_reg_to_regnum = ecoff_reg_to_regnum;
2066}
2067
88c72b7d
AC
2068int
2069gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, int sdb_regnr)
2070{
8de9bdc4 2071 gdb_assert (gdbarch != NULL);
956ac328 2072 gdb_assert (gdbarch->sdb_reg_to_regnum != NULL);
88c72b7d
AC
2073 if (gdbarch_debug >= 2)
2074 fprintf_unfiltered (gdb_stdlog, "gdbarch_sdb_reg_to_regnum called\n");
d3f73121 2075 return gdbarch->sdb_reg_to_regnum (gdbarch, sdb_regnr);
88c72b7d
AC
2076}
2077
2078void
2079set_gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch,
2080 gdbarch_sdb_reg_to_regnum_ftype sdb_reg_to_regnum)
2081{
2082 gdbarch->sdb_reg_to_regnum = sdb_reg_to_regnum;
2083}
2084
2085int
2086gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int dwarf2_regnr)
2087{
8de9bdc4 2088 gdb_assert (gdbarch != NULL);
956ac328 2089 gdb_assert (gdbarch->dwarf2_reg_to_regnum != NULL);
88c72b7d
AC
2090 if (gdbarch_debug >= 2)
2091 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_reg_to_regnum called\n");
d3f73121 2092 return gdbarch->dwarf2_reg_to_regnum (gdbarch, dwarf2_regnr);
88c72b7d
AC
2093}
2094
2095void
2096set_gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch,
2097 gdbarch_dwarf2_reg_to_regnum_ftype dwarf2_reg_to_regnum)
2098{
2099 gdbarch->dwarf2_reg_to_regnum = dwarf2_reg_to_regnum;
2100}
2101
fa88f677 2102const char *
0f71a2f6
JM
2103gdbarch_register_name (struct gdbarch *gdbarch, int regnr)
2104{
8de9bdc4 2105 gdb_assert (gdbarch != NULL);
956ac328 2106 gdb_assert (gdbarch->register_name != NULL);
0f71a2f6 2107 if (gdbarch_debug >= 2)
0f71a2f6 2108 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_name called\n");
d93859e2 2109 return gdbarch->register_name (gdbarch, regnr);
0f71a2f6
JM
2110}
2111
2112void
104c1213
JM
2113set_gdbarch_register_name (struct gdbarch *gdbarch,
2114 gdbarch_register_name_ftype register_name)
0f71a2f6
JM
2115{
2116 gdbarch->register_name = register_name;
2117}
2118
0f71a2f6 2119int
9c04cab7 2120gdbarch_register_type_p (struct gdbarch *gdbarch)
0f71a2f6 2121{
8de9bdc4 2122 gdb_assert (gdbarch != NULL);
956ac328 2123 return gdbarch->register_type != NULL;
9c04cab7
AC
2124}
2125
2126struct type *
2127gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr)
2128{
2129 gdb_assert (gdbarch != NULL);
956ac328 2130 gdb_assert (gdbarch->register_type != NULL);
0f71a2f6 2131 if (gdbarch_debug >= 2)
9c04cab7
AC
2132 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_type called\n");
2133 return gdbarch->register_type (gdbarch, reg_nr);
0f71a2f6
JM
2134}
2135
2136void
9c04cab7
AC
2137set_gdbarch_register_type (struct gdbarch *gdbarch,
2138 gdbarch_register_type_ftype register_type)
0f71a2f6 2139{
9c04cab7 2140 gdbarch->register_type = register_type;
0f71a2f6
JM
2141}
2142
f3be58bc 2143int
669fac23 2144gdbarch_dummy_id_p (struct gdbarch *gdbarch)
f3be58bc
AC
2145{
2146 gdb_assert (gdbarch != NULL);
669fac23 2147 return gdbarch->dummy_id != NULL;
f3be58bc
AC
2148}
2149
2150struct frame_id
669fac23 2151gdbarch_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
f3be58bc
AC
2152{
2153 gdb_assert (gdbarch != NULL);
669fac23 2154 gdb_assert (gdbarch->dummy_id != NULL);
f3be58bc 2155 if (gdbarch_debug >= 2)
669fac23
DJ
2156 fprintf_unfiltered (gdb_stdlog, "gdbarch_dummy_id called\n");
2157 return gdbarch->dummy_id (gdbarch, this_frame);
f3be58bc
AC
2158}
2159
2160void
669fac23
DJ
2161set_gdbarch_dummy_id (struct gdbarch *gdbarch,
2162 gdbarch_dummy_id_ftype dummy_id)
f3be58bc 2163{
669fac23 2164 gdbarch->dummy_id = dummy_id;
f3be58bc
AC
2165}
2166
f3be58bc
AC
2167int
2168gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch)
2169{
2170 gdb_assert (gdbarch != NULL);
2171 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
2172 if (gdbarch_debug >= 2)
2173 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_fp_regnum called\n");
2174 return gdbarch->deprecated_fp_regnum;
2175}
2176
2177void
2178set_gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch,
2179 int deprecated_fp_regnum)
2180{
2181 gdbarch->deprecated_fp_regnum = deprecated_fp_regnum;
2182}
2183
0ab7a791 2184int
b8de8283 2185gdbarch_push_dummy_call_p (struct gdbarch *gdbarch)
0ab7a791
AC
2186{
2187 gdb_assert (gdbarch != NULL);
956ac328 2188 return gdbarch->push_dummy_call != NULL;
0ab7a791
AC
2189}
2190
b8de8283 2191CORE_ADDR
7d9b040b 2192gdbarch_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 2193{
8de9bdc4 2194 gdb_assert (gdbarch != NULL);
956ac328 2195 gdb_assert (gdbarch->push_dummy_call != NULL);
666e11c5 2196 if (gdbarch_debug >= 2)
b8de8283 2197 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_call called\n");
7d9b040b 2198 return gdbarch->push_dummy_call (gdbarch, function, regcache, bp_addr, nargs, args, sp, struct_return, struct_addr);
666e11c5
EZ
2199}
2200
2201void
b8de8283
AC
2202set_gdbarch_push_dummy_call (struct gdbarch *gdbarch,
2203 gdbarch_push_dummy_call_ftype push_dummy_call)
666e11c5 2204{
b8de8283 2205 gdbarch->push_dummy_call = push_dummy_call;
666e11c5
EZ
2206}
2207
2649061d 2208int
b8de8283 2209gdbarch_call_dummy_location (struct gdbarch *gdbarch)
2649061d 2210{
8de9bdc4 2211 gdb_assert (gdbarch != NULL);
b8de8283
AC
2212 /* Skip verify of call_dummy_location, invalid_p == 0 */
2213 if (gdbarch_debug >= 2)
2214 fprintf_unfiltered (gdb_stdlog, "gdbarch_call_dummy_location called\n");
2215 return gdbarch->call_dummy_location;
2649061d
AC
2216}
2217
b8de8283
AC
2218void
2219set_gdbarch_call_dummy_location (struct gdbarch *gdbarch,
2220 int call_dummy_location)
2221{
2222 gdbarch->call_dummy_location = call_dummy_location;
2223}
2224
0f71a2f6 2225int
b8de8283 2226gdbarch_push_dummy_code_p (struct gdbarch *gdbarch)
0f71a2f6 2227{
8de9bdc4 2228 gdb_assert (gdbarch != NULL);
956ac328 2229 return gdbarch->push_dummy_code != NULL;
b8de8283
AC
2230}
2231
2232CORE_ADDR
82585c72 2233gdbarch_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
2234{
2235 gdb_assert (gdbarch != NULL);
956ac328 2236 gdb_assert (gdbarch->push_dummy_code != NULL);
0f71a2f6 2237 if (gdbarch_debug >= 2)
b8de8283 2238 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_code called\n");
82585c72 2239 return gdbarch->push_dummy_code (gdbarch, sp, funaddr, args, nargs, value_type, real_pc, bp_addr, regcache);
0f71a2f6
JM
2240}
2241
2242void
b8de8283
AC
2243set_gdbarch_push_dummy_code (struct gdbarch *gdbarch,
2244 gdbarch_push_dummy_code_ftype push_dummy_code)
0f71a2f6 2245{
b8de8283 2246 gdbarch->push_dummy_code = push_dummy_code;
0f71a2f6
JM
2247}
2248
b8de8283
AC
2249void
2250gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all)
2251{
2252 gdb_assert (gdbarch != NULL);
956ac328 2253 gdb_assert (gdbarch->print_registers_info != NULL);
b8de8283
AC
2254 if (gdbarch_debug >= 2)
2255 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_registers_info called\n");
2256 gdbarch->print_registers_info (gdbarch, file, frame, regnum, all);
2257}
2258
2259void
2260set_gdbarch_print_registers_info (struct gdbarch *gdbarch,
2261 gdbarch_print_registers_info_ftype print_registers_info)
2262{
2263 gdbarch->print_registers_info = print_registers_info;
0f71a2f6
JM
2264}
2265
0f71a2f6 2266int
b8de8283
AC
2267gdbarch_print_float_info_p (struct gdbarch *gdbarch)
2268{
2269 gdb_assert (gdbarch != NULL);
956ac328 2270 return gdbarch->print_float_info != NULL;
b8de8283
AC
2271}
2272
2273void
2274gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
0f71a2f6 2275{
8de9bdc4 2276 gdb_assert (gdbarch != NULL);
956ac328 2277 gdb_assert (gdbarch->print_float_info != NULL);
0f71a2f6 2278 if (gdbarch_debug >= 2)
b8de8283
AC
2279 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_float_info called\n");
2280 gdbarch->print_float_info (gdbarch, file, frame, args);
0f71a2f6
JM
2281}
2282
2283void
b8de8283
AC
2284set_gdbarch_print_float_info (struct gdbarch *gdbarch,
2285 gdbarch_print_float_info_ftype print_float_info)
0f71a2f6 2286{
b8de8283
AC
2287 gdbarch->print_float_info = print_float_info;
2288}
2289
2290int
2291gdbarch_print_vector_info_p (struct gdbarch *gdbarch)
2292{
2293 gdb_assert (gdbarch != NULL);
956ac328 2294 return gdbarch->print_vector_info != NULL;
b8de8283
AC
2295}
2296
2297void
2298gdbarch_print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
2299{
2300 gdb_assert (gdbarch != NULL);
956ac328 2301 gdb_assert (gdbarch->print_vector_info != NULL);
b8de8283
AC
2302 if (gdbarch_debug >= 2)
2303 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_vector_info called\n");
2304 gdbarch->print_vector_info (gdbarch, file, frame, args);
0f71a2f6
JM
2305}
2306
b8de8283
AC
2307void
2308set_gdbarch_print_vector_info (struct gdbarch *gdbarch,
2309 gdbarch_print_vector_info_ftype print_vector_info)
ae45cd16 2310{
b8de8283 2311 gdbarch->print_vector_info = print_vector_info;
ae45cd16
AC
2312}
2313
2314int
b8de8283 2315gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr)
0f71a2f6 2316{
8de9bdc4 2317 gdb_assert (gdbarch != NULL);
956ac328 2318 gdb_assert (gdbarch->register_sim_regno != NULL);
0f71a2f6 2319 if (gdbarch_debug >= 2)
b8de8283 2320 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_sim_regno called\n");
e7faf938 2321 return gdbarch->register_sim_regno (gdbarch, reg_nr);
0f71a2f6
JM
2322}
2323
2324void
b8de8283
AC
2325set_gdbarch_register_sim_regno (struct gdbarch *gdbarch,
2326 gdbarch_register_sim_regno_ftype register_sim_regno)
0f71a2f6 2327{
b8de8283 2328 gdbarch->register_sim_regno = register_sim_regno;
0f71a2f6
JM
2329}
2330
0f71a2f6 2331int
b8de8283 2332gdbarch_cannot_fetch_register (struct gdbarch *gdbarch, int regnum)
0f71a2f6 2333{
8de9bdc4 2334 gdb_assert (gdbarch != NULL);
956ac328 2335 gdb_assert (gdbarch->cannot_fetch_register != NULL);
b8de8283
AC
2336 if (gdbarch_debug >= 2)
2337 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_fetch_register called\n");
64a3914f 2338 return gdbarch->cannot_fetch_register (gdbarch, regnum);
b8de8283
AC
2339}
2340
2341void
2342set_gdbarch_cannot_fetch_register (struct gdbarch *gdbarch,
2343 gdbarch_cannot_fetch_register_ftype cannot_fetch_register)
2344{
2345 gdbarch->cannot_fetch_register = cannot_fetch_register;
0f71a2f6
JM
2346}
2347
2348int
b8de8283 2349gdbarch_cannot_store_register (struct gdbarch *gdbarch, int regnum)
0f71a2f6 2350{
8de9bdc4 2351 gdb_assert (gdbarch != NULL);
956ac328 2352 gdb_assert (gdbarch->cannot_store_register != NULL);
0f71a2f6 2353 if (gdbarch_debug >= 2)
b8de8283 2354 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_store_register called\n");
64a3914f 2355 return gdbarch->cannot_store_register (gdbarch, regnum);
0f71a2f6
JM
2356}
2357
2358void
b8de8283
AC
2359set_gdbarch_cannot_store_register (struct gdbarch *gdbarch,
2360 gdbarch_cannot_store_register_ftype cannot_store_register)
0f71a2f6 2361{
b8de8283 2362 gdbarch->cannot_store_register = cannot_store_register;
0f71a2f6
JM
2363}
2364
e8ab51f7 2365int
b8de8283 2366gdbarch_get_longjmp_target_p (struct gdbarch *gdbarch)
e8ab51f7
AC
2367{
2368 gdb_assert (gdbarch != NULL);
956ac328 2369 return gdbarch->get_longjmp_target != NULL;
e8ab51f7
AC
2370}
2371
b8de8283 2372int
60ade65d 2373gdbarch_get_longjmp_target (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR *pc)
0f71a2f6 2374{
8de9bdc4 2375 gdb_assert (gdbarch != NULL);
956ac328 2376 gdb_assert (gdbarch->get_longjmp_target != NULL);
0f71a2f6 2377 if (gdbarch_debug >= 2)
b8de8283 2378 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_longjmp_target called\n");
60ade65d 2379 return gdbarch->get_longjmp_target (frame, pc);
0f71a2f6
JM
2380}
2381
2382void
b8de8283
AC
2383set_gdbarch_get_longjmp_target (struct gdbarch *gdbarch,
2384 gdbarch_get_longjmp_target_ftype get_longjmp_target)
0f71a2f6 2385{
b8de8283 2386 gdbarch->get_longjmp_target = get_longjmp_target;
0f71a2f6
JM
2387}
2388
2389int
104c1213 2390gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch)
0f71a2f6 2391{
8de9bdc4 2392 gdb_assert (gdbarch != NULL);
0f71a2f6 2393 if (gdbarch_debug >= 2)
0f71a2f6
JM
2394 fprintf_unfiltered (gdb_stdlog, "gdbarch_believe_pcc_promotion called\n");
2395 return gdbarch->believe_pcc_promotion;
2396}
2397
2398void
104c1213
JM
2399set_gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch,
2400 int believe_pcc_promotion)
0f71a2f6
JM
2401{
2402 gdbarch->believe_pcc_promotion = believe_pcc_promotion;
2403}
2404
13d01224 2405int
ff2e87ac 2406gdbarch_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type)
13d01224
AC
2407{
2408 gdb_assert (gdbarch != NULL);
956ac328 2409 gdb_assert (gdbarch->convert_register_p != NULL);
13d01224
AC
2410 if (gdbarch_debug >= 2)
2411 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_register_p called\n");
0abe36f5 2412 return gdbarch->convert_register_p (gdbarch, regnum, type);
13d01224
AC
2413}
2414
2415void
2416set_gdbarch_convert_register_p (struct gdbarch *gdbarch,
2417 gdbarch_convert_register_p_ftype convert_register_p)
2418{
2419 gdbarch->convert_register_p = convert_register_p;
2420}
2421
8dccd430
PA
2422int
2423gdbarch_register_to_value (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, gdb_byte *buf, int *optimizedp, int *unavailablep)
13d01224
AC
2424{
2425 gdb_assert (gdbarch != NULL);
956ac328 2426 gdb_assert (gdbarch->register_to_value != NULL);
13d01224
AC
2427 if (gdbarch_debug >= 2)
2428 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_to_value called\n");
8dccd430 2429 return gdbarch->register_to_value (frame, regnum, type, buf, optimizedp, unavailablep);
13d01224
AC
2430}
2431
2432void
2433set_gdbarch_register_to_value (struct gdbarch *gdbarch,
2434 gdbarch_register_to_value_ftype register_to_value)
2435{
2436 gdbarch->register_to_value = register_to_value;
2437}
2438
2439void
b60c417a 2440gdbarch_value_to_register (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, const gdb_byte *buf)
13d01224
AC
2441{
2442 gdb_assert (gdbarch != NULL);
956ac328 2443 gdb_assert (gdbarch->value_to_register != NULL);
13d01224
AC
2444 if (gdbarch_debug >= 2)
2445 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_to_register called\n");
ff2e87ac 2446 gdbarch->value_to_register (frame, regnum, type, buf);
13d01224
AC
2447}
2448
2449void
2450set_gdbarch_value_to_register (struct gdbarch *gdbarch,
2451 gdbarch_value_to_register_ftype value_to_register)
2452{
2453 gdbarch->value_to_register = value_to_register;
2454}
2455
9acbedc0
UW
2456struct value *
2457gdbarch_value_from_register (struct gdbarch *gdbarch, struct type *type, int regnum, struct frame_info *frame)
2458{
2459 gdb_assert (gdbarch != NULL);
2460 gdb_assert (gdbarch->value_from_register != NULL);
2461 if (gdbarch_debug >= 2)
2462 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_from_register called\n");
2463 return gdbarch->value_from_register (type, regnum, frame);
2464}
2465
2466void
2467set_gdbarch_value_from_register (struct gdbarch *gdbarch,
2468 gdbarch_value_from_register_ftype value_from_register)
2469{
2470 gdbarch->value_from_register = value_from_register;
2471}
2472
4478b372 2473CORE_ADDR
b60c417a 2474gdbarch_pointer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
4478b372 2475{
8de9bdc4 2476 gdb_assert (gdbarch != NULL);
956ac328 2477 gdb_assert (gdbarch->pointer_to_address != NULL);
4478b372
JB
2478 if (gdbarch_debug >= 2)
2479 fprintf_unfiltered (gdb_stdlog, "gdbarch_pointer_to_address called\n");
9898f801 2480 return gdbarch->pointer_to_address (gdbarch, type, buf);
4478b372
JB
2481}
2482
2483void
2484set_gdbarch_pointer_to_address (struct gdbarch *gdbarch,
2485 gdbarch_pointer_to_address_ftype pointer_to_address)
2486{
2487 gdbarch->pointer_to_address = pointer_to_address;
2488}
2489
2490void
b60c417a 2491gdbarch_address_to_pointer (struct gdbarch *gdbarch, struct type *type, gdb_byte *buf, CORE_ADDR addr)
4478b372 2492{
8de9bdc4 2493 gdb_assert (gdbarch != NULL);
956ac328 2494 gdb_assert (gdbarch->address_to_pointer != NULL);
4478b372
JB
2495 if (gdbarch_debug >= 2)
2496 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_to_pointer called\n");
9898f801 2497 gdbarch->address_to_pointer (gdbarch, type, buf, addr);
4478b372
JB
2498}
2499
2500void
2501set_gdbarch_address_to_pointer (struct gdbarch *gdbarch,
2502 gdbarch_address_to_pointer_ftype address_to_pointer)
2503{
2504 gdbarch->address_to_pointer = address_to_pointer;
2505}
2506
fc0c74b1
AC
2507int
2508gdbarch_integer_to_address_p (struct gdbarch *gdbarch)
2509{
8de9bdc4 2510 gdb_assert (gdbarch != NULL);
956ac328 2511 return gdbarch->integer_to_address != NULL;
fc0c74b1
AC
2512}
2513
2514CORE_ADDR
fc1a4b47 2515gdbarch_integer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
fc0c74b1 2516{
8de9bdc4 2517 gdb_assert (gdbarch != NULL);
956ac328 2518 gdb_assert (gdbarch->integer_to_address != NULL);
fc0c74b1
AC
2519 if (gdbarch_debug >= 2)
2520 fprintf_unfiltered (gdb_stdlog, "gdbarch_integer_to_address called\n");
79dd2d24 2521 return gdbarch->integer_to_address (gdbarch, type, buf);
fc0c74b1
AC
2522}
2523
2524void
2525set_gdbarch_integer_to_address (struct gdbarch *gdbarch,
2526 gdbarch_integer_to_address_ftype integer_to_address)
2527{
2528 gdbarch->integer_to_address = integer_to_address;
2529}
2530
92ad9cd9
AC
2531int
2532gdbarch_return_value_p (struct gdbarch *gdbarch)
2533{
2534 gdb_assert (gdbarch != NULL);
c1874924 2535 return gdbarch->return_value != NULL;
92ad9cd9
AC
2536}
2537
2538enum return_value_convention
c055b101 2539gdbarch_return_value (struct gdbarch *gdbarch, struct type *functype, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
92ad9cd9
AC
2540{
2541 gdb_assert (gdbarch != NULL);
2542 gdb_assert (gdbarch->return_value != NULL);
2543 if (gdbarch_debug >= 2)
2544 fprintf_unfiltered (gdb_stdlog, "gdbarch_return_value called\n");
c055b101 2545 return gdbarch->return_value (gdbarch, functype, valtype, regcache, readbuf, writebuf);
92ad9cd9
AC
2546}
2547
2548void
2549set_gdbarch_return_value (struct gdbarch *gdbarch,
2550 gdbarch_return_value_ftype return_value)
2551{
2552 gdbarch->return_value = return_value;
2553}
2554
0f71a2f6
JM
2555CORE_ADDR
2556gdbarch_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2557{
8de9bdc4 2558 gdb_assert (gdbarch != NULL);
956ac328 2559 gdb_assert (gdbarch->skip_prologue != NULL);
0f71a2f6 2560 if (gdbarch_debug >= 2)
0f71a2f6 2561 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_prologue called\n");
6093d2eb 2562 return gdbarch->skip_prologue (gdbarch, ip);
0f71a2f6
JM
2563}
2564
2565void
104c1213
JM
2566set_gdbarch_skip_prologue (struct gdbarch *gdbarch,
2567 gdbarch_skip_prologue_ftype skip_prologue)
0f71a2f6
JM
2568{
2569 gdbarch->skip_prologue = skip_prologue;
2570}
2571
4309257c
PM
2572int
2573gdbarch_skip_main_prologue_p (struct gdbarch *gdbarch)
2574{
2575 gdb_assert (gdbarch != NULL);
2576 return gdbarch->skip_main_prologue != NULL;
2577}
2578
2579CORE_ADDR
2580gdbarch_skip_main_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2581{
2582 gdb_assert (gdbarch != NULL);
2583 gdb_assert (gdbarch->skip_main_prologue != NULL);
2584 if (gdbarch_debug >= 2)
2585 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_main_prologue called\n");
2586 return gdbarch->skip_main_prologue (gdbarch, ip);
2587}
2588
2589void
2590set_gdbarch_skip_main_prologue (struct gdbarch *gdbarch,
cfd8ab24 2591 gdbarch_skip_main_prologue_ftype skip_main_prologue)
4309257c
PM
2592{
2593 gdbarch->skip_main_prologue = skip_main_prologue;
2594}
2595
0f71a2f6
JM
2596int
2597gdbarch_inner_than (struct gdbarch *gdbarch, CORE_ADDR lhs, CORE_ADDR rhs)
2598{
8de9bdc4 2599 gdb_assert (gdbarch != NULL);
956ac328 2600 gdb_assert (gdbarch->inner_than != NULL);
0f71a2f6 2601 if (gdbarch_debug >= 2)
0f71a2f6
JM
2602 fprintf_unfiltered (gdb_stdlog, "gdbarch_inner_than called\n");
2603 return gdbarch->inner_than (lhs, rhs);
2604}
2605
2606void
104c1213
JM
2607set_gdbarch_inner_than (struct gdbarch *gdbarch,
2608 gdbarch_inner_than_ftype inner_than)
0f71a2f6
JM
2609{
2610 gdbarch->inner_than = inner_than;
2611}
2612
fc1a4b47 2613const gdb_byte *
adf40b2e 2614gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
0f71a2f6 2615{
8de9bdc4 2616 gdb_assert (gdbarch != NULL);
956ac328 2617 gdb_assert (gdbarch->breakpoint_from_pc != NULL);
0f71a2f6 2618 if (gdbarch_debug >= 2)
0f71a2f6 2619 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_from_pc called\n");
67d57894 2620 return gdbarch->breakpoint_from_pc (gdbarch, pcptr, lenptr);
0f71a2f6
JM
2621}
2622
2623void
104c1213
JM
2624set_gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch,
2625 gdbarch_breakpoint_from_pc_ftype breakpoint_from_pc)
0f71a2f6
JM
2626{
2627 gdbarch->breakpoint_from_pc = breakpoint_from_pc;
2628}
2629
a1dcb23a
DJ
2630void
2631gdbarch_remote_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *kindptr)
2632{
2633 gdb_assert (gdbarch != NULL);
2634 gdb_assert (gdbarch->remote_breakpoint_from_pc != NULL);
2635 if (gdbarch_debug >= 2)
2636 fprintf_unfiltered (gdb_stdlog, "gdbarch_remote_breakpoint_from_pc called\n");
2637 gdbarch->remote_breakpoint_from_pc (gdbarch, pcptr, kindptr);
2638}
2639
2640void
2641set_gdbarch_remote_breakpoint_from_pc (struct gdbarch *gdbarch,
2642 gdbarch_remote_breakpoint_from_pc_ftype remote_breakpoint_from_pc)
2643{
2644 gdbarch->remote_breakpoint_from_pc = remote_breakpoint_from_pc;
2645}
2646
a1131521
KB
2647int
2648gdbarch_adjust_breakpoint_address_p (struct gdbarch *gdbarch)
2649{
2650 gdb_assert (gdbarch != NULL);
2651 return gdbarch->adjust_breakpoint_address != NULL;
2652}
2653
2654CORE_ADDR
2655gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
2656{
2657 gdb_assert (gdbarch != NULL);
2658 gdb_assert (gdbarch->adjust_breakpoint_address != NULL);
2659 if (gdbarch_debug >= 2)
2660 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_breakpoint_address called\n");
2661 return gdbarch->adjust_breakpoint_address (gdbarch, bpaddr);
2662}
2663
2664void
2665set_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch,
2666 gdbarch_adjust_breakpoint_address_ftype adjust_breakpoint_address)
2667{
2668 gdbarch->adjust_breakpoint_address = adjust_breakpoint_address;
2669}
2670
917317f4 2671int
8181d85f 2672gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
917317f4 2673{
8de9bdc4 2674 gdb_assert (gdbarch != NULL);
956ac328 2675 gdb_assert (gdbarch->memory_insert_breakpoint != NULL);
917317f4 2676 if (gdbarch_debug >= 2)
917317f4 2677 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_insert_breakpoint called\n");
ae4b2284 2678 return gdbarch->memory_insert_breakpoint (gdbarch, bp_tgt);
917317f4
JM
2679}
2680
2681void
2682set_gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch,
2683 gdbarch_memory_insert_breakpoint_ftype memory_insert_breakpoint)
2684{
2685 gdbarch->memory_insert_breakpoint = memory_insert_breakpoint;
2686}
2687
2688int
8181d85f 2689gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
917317f4 2690{
8de9bdc4 2691 gdb_assert (gdbarch != NULL);
956ac328 2692 gdb_assert (gdbarch->memory_remove_breakpoint != NULL);
917317f4 2693 if (gdbarch_debug >= 2)
917317f4 2694 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_remove_breakpoint called\n");
ae4b2284 2695 return gdbarch->memory_remove_breakpoint (gdbarch, bp_tgt);
917317f4
JM
2696}
2697
2698void
2699set_gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch,
2700 gdbarch_memory_remove_breakpoint_ftype memory_remove_breakpoint)
2701{
2702 gdbarch->memory_remove_breakpoint = memory_remove_breakpoint;
2703}
2704
0f71a2f6 2705CORE_ADDR
104c1213 2706gdbarch_decr_pc_after_break (struct gdbarch *gdbarch)
0f71a2f6 2707{
8de9bdc4 2708 gdb_assert (gdbarch != NULL);
71bd6bd4 2709 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
0f71a2f6 2710 if (gdbarch_debug >= 2)
0f71a2f6
JM
2711 fprintf_unfiltered (gdb_stdlog, "gdbarch_decr_pc_after_break called\n");
2712 return gdbarch->decr_pc_after_break;
2713}
2714
2715void
104c1213
JM
2716set_gdbarch_decr_pc_after_break (struct gdbarch *gdbarch,
2717 CORE_ADDR decr_pc_after_break)
0f71a2f6
JM
2718{
2719 gdbarch->decr_pc_after_break = decr_pc_after_break;
2720}
2721
2722CORE_ADDR
782263ab 2723gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch)
0f71a2f6 2724{
8de9bdc4 2725 gdb_assert (gdbarch != NULL);
782263ab 2726 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
0f71a2f6 2727 if (gdbarch_debug >= 2)
782263ab
AC
2728 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_function_start_offset called\n");
2729 return gdbarch->deprecated_function_start_offset;
0f71a2f6
JM
2730}
2731
2732void
782263ab
AC
2733set_gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch,
2734 CORE_ADDR deprecated_function_start_offset)
0f71a2f6 2735{
782263ab 2736 gdbarch->deprecated_function_start_offset = deprecated_function_start_offset;
0f71a2f6
JM
2737}
2738
123dc839
DJ
2739int
2740gdbarch_remote_register_number (struct gdbarch *gdbarch, int regno)
2741{
2742 gdb_assert (gdbarch != NULL);
2743 gdb_assert (gdbarch->remote_register_number != NULL);
2744 if (gdbarch_debug >= 2)
2745 fprintf_unfiltered (gdb_stdlog, "gdbarch_remote_register_number called\n");
2746 return gdbarch->remote_register_number (gdbarch, regno);
2747}
2748
2749void
2750set_gdbarch_remote_register_number (struct gdbarch *gdbarch,
2751 gdbarch_remote_register_number_ftype remote_register_number)
2752{
2753 gdbarch->remote_register_number = remote_register_number;
2754}
2755
b2756930
KB
2756int
2757gdbarch_fetch_tls_load_module_address_p (struct gdbarch *gdbarch)
2758{
2759 gdb_assert (gdbarch != NULL);
2760 return gdbarch->fetch_tls_load_module_address != NULL;
2761}
2762
2763CORE_ADDR
2764gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch, struct objfile *objfile)
2765{
2766 gdb_assert (gdbarch != NULL);
2767 gdb_assert (gdbarch->fetch_tls_load_module_address != NULL);
2768 if (gdbarch_debug >= 2)
2769 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_tls_load_module_address called\n");
2770 return gdbarch->fetch_tls_load_module_address (objfile);
2771}
2772
2773void
2774set_gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch,
2775 gdbarch_fetch_tls_load_module_address_ftype fetch_tls_load_module_address)
2776{
2777 gdbarch->fetch_tls_load_module_address = fetch_tls_load_module_address;
2778}
2779
0f71a2f6 2780CORE_ADDR
104c1213 2781gdbarch_frame_args_skip (struct gdbarch *gdbarch)
0f71a2f6 2782{
8de9bdc4 2783 gdb_assert (gdbarch != NULL);
5867a2fb 2784 /* Skip verify of frame_args_skip, invalid_p == 0 */
0f71a2f6 2785 if (gdbarch_debug >= 2)
0f71a2f6
JM
2786 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_args_skip called\n");
2787 return gdbarch->frame_args_skip;
2788}
2789
2790void
104c1213
JM
2791set_gdbarch_frame_args_skip (struct gdbarch *gdbarch,
2792 CORE_ADDR frame_args_skip)
0f71a2f6
JM
2793{
2794 gdbarch->frame_args_skip = frame_args_skip;
2795}
2796
12cc2063
AC
2797int
2798gdbarch_unwind_pc_p (struct gdbarch *gdbarch)
2799{
2800 gdb_assert (gdbarch != NULL);
956ac328 2801 return gdbarch->unwind_pc != NULL;
12cc2063
AC
2802}
2803
2804CORE_ADDR
2805gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
2806{
2807 gdb_assert (gdbarch != NULL);
956ac328 2808 gdb_assert (gdbarch->unwind_pc != NULL);
12cc2063
AC
2809 if (gdbarch_debug >= 2)
2810 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_pc called\n");
2811 return gdbarch->unwind_pc (gdbarch, next_frame);
2812}
2813
2814void
2815set_gdbarch_unwind_pc (struct gdbarch *gdbarch,
2816 gdbarch_unwind_pc_ftype unwind_pc)
2817{
2818 gdbarch->unwind_pc = unwind_pc;
2819}
2820
a9e5fdc2
AC
2821int
2822gdbarch_unwind_sp_p (struct gdbarch *gdbarch)
2823{
2824 gdb_assert (gdbarch != NULL);
956ac328 2825 return gdbarch->unwind_sp != NULL;
a9e5fdc2
AC
2826}
2827
2828CORE_ADDR
2829gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
2830{
2831 gdb_assert (gdbarch != NULL);
956ac328 2832 gdb_assert (gdbarch->unwind_sp != NULL);
a9e5fdc2
AC
2833 if (gdbarch_debug >= 2)
2834 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_sp called\n");
2835 return gdbarch->unwind_sp (gdbarch, next_frame);
2836}
2837
2838void
2839set_gdbarch_unwind_sp (struct gdbarch *gdbarch,
2840 gdbarch_unwind_sp_ftype unwind_sp)
2841{
2842 gdbarch->unwind_sp = unwind_sp;
2843}
2844
983a287a
AC
2845int
2846gdbarch_frame_num_args_p (struct gdbarch *gdbarch)
2847{
2848 gdb_assert (gdbarch != NULL);
956ac328 2849 return gdbarch->frame_num_args != NULL;
983a287a
AC
2850}
2851
0f71a2f6
JM
2852int
2853gdbarch_frame_num_args (struct gdbarch *gdbarch, struct frame_info *frame)
2854{
8de9bdc4 2855 gdb_assert (gdbarch != NULL);
956ac328 2856 gdb_assert (gdbarch->frame_num_args != NULL);
0f71a2f6 2857 if (gdbarch_debug >= 2)
0f71a2f6
JM
2858 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_num_args called\n");
2859 return gdbarch->frame_num_args (frame);
2860}
2861
2862void
104c1213
JM
2863set_gdbarch_frame_num_args (struct gdbarch *gdbarch,
2864 gdbarch_frame_num_args_ftype frame_num_args)
0f71a2f6
JM
2865{
2866 gdbarch->frame_num_args = frame_num_args;
2867}
2868
dc604539
AC
2869int
2870gdbarch_frame_align_p (struct gdbarch *gdbarch)
2871{
2872 gdb_assert (gdbarch != NULL);
956ac328 2873 return gdbarch->frame_align != NULL;
dc604539
AC
2874}
2875
2876CORE_ADDR
2877gdbarch_frame_align (struct gdbarch *gdbarch, CORE_ADDR address)
2878{
2879 gdb_assert (gdbarch != NULL);
956ac328 2880 gdb_assert (gdbarch->frame_align != NULL);
dc604539
AC
2881 if (gdbarch_debug >= 2)
2882 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_align called\n");
2883 return gdbarch->frame_align (gdbarch, address);
2884}
2885
2886void
2887set_gdbarch_frame_align (struct gdbarch *gdbarch,
2888 gdbarch_frame_align_ftype frame_align)
2889{
2890 gdbarch->frame_align = frame_align;
2891}
2892
192cb3d4
MK
2893int
2894gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
2895{
2896 gdb_assert (gdbarch != NULL);
2897 gdb_assert (gdbarch->stabs_argument_has_addr != NULL);
2898 if (gdbarch_debug >= 2)
2899 fprintf_unfiltered (gdb_stdlog, "gdbarch_stabs_argument_has_addr called\n");
2900 return gdbarch->stabs_argument_has_addr (gdbarch, type);
2901}
2902
2903void
2904set_gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch,
2905 gdbarch_stabs_argument_has_addr_ftype stabs_argument_has_addr)
2906{
2907 gdbarch->stabs_argument_has_addr = stabs_argument_has_addr;
2908}
2909
8b148df9
AC
2910int
2911gdbarch_frame_red_zone_size (struct gdbarch *gdbarch)
2912{
2913 gdb_assert (gdbarch != NULL);
2914 if (gdbarch_debug >= 2)
2915 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_red_zone_size called\n");
2916 return gdbarch->frame_red_zone_size;
2917}
2918
2919void
2920set_gdbarch_frame_red_zone_size (struct gdbarch *gdbarch,
2921 int frame_red_zone_size)
2922{
2923 gdbarch->frame_red_zone_size = frame_red_zone_size;
2924}
2925
f517ea4e 2926CORE_ADDR
e2d0e7eb 2927gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr, struct target_ops *targ)
f517ea4e 2928{
8de9bdc4 2929 gdb_assert (gdbarch != NULL);
956ac328 2930 gdb_assert (gdbarch->convert_from_func_ptr_addr != NULL);
f517ea4e
PS
2931 if (gdbarch_debug >= 2)
2932 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_from_func_ptr_addr called\n");
e2d0e7eb 2933 return gdbarch->convert_from_func_ptr_addr (gdbarch, addr, targ);
f517ea4e
PS
2934}
2935
2936void
2937set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch,
2938 gdbarch_convert_from_func_ptr_addr_ftype convert_from_func_ptr_addr)
2939{
2940 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr;
2941}
2942
875e1767
AC
2943CORE_ADDR
2944gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
2945{
8de9bdc4 2946 gdb_assert (gdbarch != NULL);
956ac328 2947 gdb_assert (gdbarch->addr_bits_remove != NULL);
875e1767
AC
2948 if (gdbarch_debug >= 2)
2949 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bits_remove called\n");
24568a2c 2950 return gdbarch->addr_bits_remove (gdbarch, addr);
875e1767
AC
2951}
2952
2953void
2954set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch,
2955 gdbarch_addr_bits_remove_ftype addr_bits_remove)
2956{
2957 gdbarch->addr_bits_remove = addr_bits_remove;
2958}
2959
181c1381
RE
2960CORE_ADDR
2961gdbarch_smash_text_address (struct gdbarch *gdbarch, CORE_ADDR addr)
2962{
8de9bdc4 2963 gdb_assert (gdbarch != NULL);
956ac328 2964 gdb_assert (gdbarch->smash_text_address != NULL);
181c1381
RE
2965 if (gdbarch_debug >= 2)
2966 fprintf_unfiltered (gdb_stdlog, "gdbarch_smash_text_address called\n");
24568a2c 2967 return gdbarch->smash_text_address (gdbarch, addr);
181c1381
RE
2968}
2969
2970void
2971set_gdbarch_smash_text_address (struct gdbarch *gdbarch,
2972 gdbarch_smash_text_address_ftype smash_text_address)
2973{
2974 gdbarch->smash_text_address = smash_text_address;
2975}
2976
64c4637f
AC
2977int
2978gdbarch_software_single_step_p (struct gdbarch *gdbarch)
2979{
8de9bdc4 2980 gdb_assert (gdbarch != NULL);
956ac328 2981 return gdbarch->software_single_step != NULL;
64c4637f
AC
2982}
2983
e6590a1b 2984int
0b1b3e42 2985gdbarch_software_single_step (struct gdbarch *gdbarch, struct frame_info *frame)
64c4637f 2986{
8de9bdc4 2987 gdb_assert (gdbarch != NULL);
956ac328 2988 gdb_assert (gdbarch->software_single_step != NULL);
64c4637f
AC
2989 if (gdbarch_debug >= 2)
2990 fprintf_unfiltered (gdb_stdlog, "gdbarch_software_single_step called\n");
0b1b3e42 2991 return gdbarch->software_single_step (frame);
64c4637f
AC
2992}
2993
2994void
2995set_gdbarch_software_single_step (struct gdbarch *gdbarch,
2996 gdbarch_software_single_step_ftype software_single_step)
2997{
2998 gdbarch->software_single_step = software_single_step;
2999}
3000
3352ef37
AC
3001int
3002gdbarch_single_step_through_delay_p (struct gdbarch *gdbarch)
3003{
3004 gdb_assert (gdbarch != NULL);
3005 return gdbarch->single_step_through_delay != NULL;
3006}
3007
3008int
3009gdbarch_single_step_through_delay (struct gdbarch *gdbarch, struct frame_info *frame)
3010{
3011 gdb_assert (gdbarch != NULL);
3012 gdb_assert (gdbarch->single_step_through_delay != NULL);
3013 if (gdbarch_debug >= 2)
3014 fprintf_unfiltered (gdb_stdlog, "gdbarch_single_step_through_delay called\n");
3015 return gdbarch->single_step_through_delay (gdbarch, frame);
3016}
3017
3018void
3019set_gdbarch_single_step_through_delay (struct gdbarch *gdbarch,
3020 gdbarch_single_step_through_delay_ftype single_step_through_delay)
3021{
3022 gdbarch->single_step_through_delay = single_step_through_delay;
3023}
3024
2bf0cb65 3025int
a89aa300 3026gdbarch_print_insn (struct gdbarch *gdbarch, bfd_vma vma, struct disassemble_info *info)
2bf0cb65 3027{
8de9bdc4 3028 gdb_assert (gdbarch != NULL);
956ac328 3029 gdb_assert (gdbarch->print_insn != NULL);
2bf0cb65
EZ
3030 if (gdbarch_debug >= 2)
3031 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_insn called\n");
3032 return gdbarch->print_insn (vma, info);
3033}
3034
3035void
3036set_gdbarch_print_insn (struct gdbarch *gdbarch,
3037 gdbarch_print_insn_ftype print_insn)
3038{
3039 gdbarch->print_insn = print_insn;
3040}
3041
bdcd319a 3042CORE_ADDR
52f729a7 3043gdbarch_skip_trampoline_code (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR pc)
bdcd319a 3044{
8de9bdc4 3045 gdb_assert (gdbarch != NULL);
956ac328 3046 gdb_assert (gdbarch->skip_trampoline_code != NULL);
bdcd319a
CV
3047 if (gdbarch_debug >= 2)
3048 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_trampoline_code called\n");
52f729a7 3049 return gdbarch->skip_trampoline_code (frame, pc);
bdcd319a
CV
3050}
3051
3052void
3053set_gdbarch_skip_trampoline_code (struct gdbarch *gdbarch,
3054 gdbarch_skip_trampoline_code_ftype skip_trampoline_code)
3055{
3056 gdbarch->skip_trampoline_code = skip_trampoline_code;
3057}
3058
dea0c52f
MK
3059CORE_ADDR
3060gdbarch_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
3061{
3062 gdb_assert (gdbarch != NULL);
3063 gdb_assert (gdbarch->skip_solib_resolver != NULL);
3064 if (gdbarch_debug >= 2)
3065 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_solib_resolver called\n");
4c8c40e6 3066 return gdbarch->skip_solib_resolver (gdbarch, pc);
dea0c52f
MK
3067}
3068
3069void
3070set_gdbarch_skip_solib_resolver (struct gdbarch *gdbarch,
3071 gdbarch_skip_solib_resolver_ftype skip_solib_resolver)
3072{
3073 gdbarch->skip_solib_resolver = skip_solib_resolver;
3074}
3075
d50355b6 3076int
2c02bd72 3077gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, CORE_ADDR pc, const char *name)
d50355b6
MS
3078{
3079 gdb_assert (gdbarch != NULL);
956ac328 3080 gdb_assert (gdbarch->in_solib_return_trampoline != NULL);
d50355b6
MS
3081 if (gdbarch_debug >= 2)
3082 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_solib_return_trampoline called\n");
e17a4113 3083 return gdbarch->in_solib_return_trampoline (gdbarch, pc, name);
d50355b6
MS
3084}
3085
3086void
3087set_gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch,
3088 gdbarch_in_solib_return_trampoline_ftype in_solib_return_trampoline)
3089{
3090 gdbarch->in_solib_return_trampoline = in_solib_return_trampoline;
3091}
3092
c12260ac
CV
3093int
3094gdbarch_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR addr)
3095{
8de9bdc4 3096 gdb_assert (gdbarch != NULL);
956ac328 3097 gdb_assert (gdbarch->in_function_epilogue_p != NULL);
c12260ac
CV
3098 if (gdbarch_debug >= 2)
3099 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_function_epilogue_p called\n");
3100 return gdbarch->in_function_epilogue_p (gdbarch, addr);
3101}
3102
3103void
3104set_gdbarch_in_function_epilogue_p (struct gdbarch *gdbarch,
3105 gdbarch_in_function_epilogue_p_ftype in_function_epilogue_p)
3106{
3107 gdbarch->in_function_epilogue_p = in_function_epilogue_p;
3108}
3109
a2cf933a
EZ
3110void
3111gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch, asymbol *sym, struct minimal_symbol *msym)
3112{
8de9bdc4 3113 gdb_assert (gdbarch != NULL);
956ac328 3114 gdb_assert (gdbarch->elf_make_msymbol_special != NULL);
a2cf933a
EZ
3115 if (gdbarch_debug >= 2)
3116 fprintf_unfiltered (gdb_stdlog, "gdbarch_elf_make_msymbol_special called\n");
3117 gdbarch->elf_make_msymbol_special (sym, msym);
3118}
3119
3120void
3121set_gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch,
3122 gdbarch_elf_make_msymbol_special_ftype elf_make_msymbol_special)
3123{
3124 gdbarch->elf_make_msymbol_special = elf_make_msymbol_special;
3125}
3126
3127void
3128gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch, int val, struct minimal_symbol *msym)
3129{
8de9bdc4 3130 gdb_assert (gdbarch != NULL);
956ac328 3131 gdb_assert (gdbarch->coff_make_msymbol_special != NULL);
a2cf933a
EZ
3132 if (gdbarch_debug >= 2)
3133 fprintf_unfiltered (gdb_stdlog, "gdbarch_coff_make_msymbol_special called\n");
3134 gdbarch->coff_make_msymbol_special (val, msym);
3135}
3136
3137void
3138set_gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch,
3139 gdbarch_coff_make_msymbol_special_ftype coff_make_msymbol_special)
3140{
3141 gdbarch->coff_make_msymbol_special = coff_make_msymbol_special;
3142}
3143
c4ed33b9
AC
3144int
3145gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch)
3146{
3147 gdb_assert (gdbarch != NULL);
3148 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
3149 if (gdbarch_debug >= 2)
3150 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_step_breakpoint called\n");
3151 return gdbarch->cannot_step_breakpoint;
3152}
3153
3154void
3155set_gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch,
3156 int cannot_step_breakpoint)
3157{
3158 gdbarch->cannot_step_breakpoint = cannot_step_breakpoint;
3159}
3160
f74fa174
MM
3161int
3162gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch)
3163{
3164 gdb_assert (gdbarch != NULL);
3165 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
3166 if (gdbarch_debug >= 2)
3167 fprintf_unfiltered (gdb_stdlog, "gdbarch_have_nonsteppable_watchpoint called\n");
3168 return gdbarch->have_nonsteppable_watchpoint;
3169}
3170
3171void
3172set_gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch,
967c0d83 3173 int have_nonsteppable_watchpoint)
f74fa174
MM
3174{
3175 gdbarch->have_nonsteppable_watchpoint = have_nonsteppable_watchpoint;
3176}
3177
8b2dbe47
KB
3178int
3179gdbarch_address_class_type_flags_p (struct gdbarch *gdbarch)
3180{
3181 gdb_assert (gdbarch != NULL);
956ac328 3182 return gdbarch->address_class_type_flags != NULL;
8b2dbe47
KB
3183}
3184
3185int
3186gdbarch_address_class_type_flags (struct gdbarch *gdbarch, int byte_size, int dwarf2_addr_class)
3187{
3188 gdb_assert (gdbarch != NULL);
956ac328 3189 gdb_assert (gdbarch->address_class_type_flags != NULL);
8b2dbe47
KB
3190 if (gdbarch_debug >= 2)
3191 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags called\n");
3192 return gdbarch->address_class_type_flags (byte_size, dwarf2_addr_class);
3193}
3194
3195void
3196set_gdbarch_address_class_type_flags (struct gdbarch *gdbarch,
3197 gdbarch_address_class_type_flags_ftype address_class_type_flags)
3198{
3199 gdbarch->address_class_type_flags = address_class_type_flags;
3200}
3201
3202int
3203gdbarch_address_class_type_flags_to_name_p (struct gdbarch *gdbarch)
3204{
3205 gdb_assert (gdbarch != NULL);
956ac328 3206 return gdbarch->address_class_type_flags_to_name != NULL;
8b2dbe47
KB
3207}
3208
321432c0 3209const char *
8b2dbe47
KB
3210gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
3211{
3212 gdb_assert (gdbarch != NULL);
956ac328 3213 gdb_assert (gdbarch->address_class_type_flags_to_name != NULL);
8b2dbe47
KB
3214 if (gdbarch_debug >= 2)
3215 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags_to_name called\n");
5f11f355 3216 return gdbarch->address_class_type_flags_to_name (gdbarch, type_flags);
8b2dbe47
KB
3217}
3218
3219void
3220set_gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch,
3221 gdbarch_address_class_type_flags_to_name_ftype address_class_type_flags_to_name)
3222{
3223 gdbarch->address_class_type_flags_to_name = address_class_type_flags_to_name;
3224}
3225
3226int
3227gdbarch_address_class_name_to_type_flags_p (struct gdbarch *gdbarch)
3228{
3229 gdb_assert (gdbarch != NULL);
956ac328 3230 return gdbarch->address_class_name_to_type_flags != NULL;
8b2dbe47
KB
3231}
3232
3233int
321432c0 3234gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch, const char *name, int *type_flags_ptr)
8b2dbe47
KB
3235{
3236 gdb_assert (gdbarch != NULL);
956ac328 3237 gdb_assert (gdbarch->address_class_name_to_type_flags != NULL);
8b2dbe47
KB
3238 if (gdbarch_debug >= 2)
3239 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_name_to_type_flags called\n");
5f11f355 3240 return gdbarch->address_class_name_to_type_flags (gdbarch, name, type_flags_ptr);
8b2dbe47
KB
3241}
3242
3243void
3244set_gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch,
3245 gdbarch_address_class_name_to_type_flags_ftype address_class_name_to_type_flags)
3246{
3247 gdbarch->address_class_name_to_type_flags = address_class_name_to_type_flags;
3248}
3249
b59ff9d5
AC
3250int
3251gdbarch_register_reggroup_p (struct gdbarch *gdbarch, int regnum, struct reggroup *reggroup)
3252{
3253 gdb_assert (gdbarch != NULL);
956ac328 3254 gdb_assert (gdbarch->register_reggroup_p != NULL);
b59ff9d5
AC
3255 if (gdbarch_debug >= 2)
3256 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_reggroup_p called\n");
3257 return gdbarch->register_reggroup_p (gdbarch, regnum, reggroup);
3258}
3259
3260void
3261set_gdbarch_register_reggroup_p (struct gdbarch *gdbarch,
3262 gdbarch_register_reggroup_p_ftype register_reggroup_p)
3263{
3264 gdbarch->register_reggroup_p = register_reggroup_p;
3265}
3266
143985b7
AF
3267int
3268gdbarch_fetch_pointer_argument_p (struct gdbarch *gdbarch)
3269{
3270 gdb_assert (gdbarch != NULL);
956ac328 3271 return gdbarch->fetch_pointer_argument != NULL;
143985b7
AF
3272}
3273
3274CORE_ADDR
3275gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch, struct frame_info *frame, int argi, struct type *type)
3276{
3277 gdb_assert (gdbarch != NULL);
956ac328 3278 gdb_assert (gdbarch->fetch_pointer_argument != NULL);
143985b7
AF
3279 if (gdbarch_debug >= 2)
3280 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_pointer_argument called\n");
3281 return gdbarch->fetch_pointer_argument (frame, argi, type);
3282}
3283
3284void
3285set_gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch,
3286 gdbarch_fetch_pointer_argument_ftype fetch_pointer_argument)
3287{
3288 gdbarch->fetch_pointer_argument = fetch_pointer_argument;
3289}
3290
6ce6d90f
MK
3291int
3292gdbarch_regset_from_core_section_p (struct gdbarch *gdbarch)
3293{
3294 gdb_assert (gdbarch != NULL);
3295 return gdbarch->regset_from_core_section != NULL;
3296}
3297
3298const struct regset *
3299gdbarch_regset_from_core_section (struct gdbarch *gdbarch, const char *sect_name, size_t sect_size)
3300{
3301 gdb_assert (gdbarch != NULL);
3302 gdb_assert (gdbarch->regset_from_core_section != NULL);
3303 if (gdbarch_debug >= 2)
3304 fprintf_unfiltered (gdb_stdlog, "gdbarch_regset_from_core_section called\n");
3305 return gdbarch->regset_from_core_section (gdbarch, sect_name, sect_size);
3306}
3307
3308void
3309set_gdbarch_regset_from_core_section (struct gdbarch *gdbarch,
3310 gdbarch_regset_from_core_section_ftype regset_from_core_section)
3311{
3312 gdbarch->regset_from_core_section = regset_from_core_section;
3313}
3314
17ea7499
CES
3315struct core_regset_section *
3316gdbarch_core_regset_sections (struct gdbarch *gdbarch)
3317{
3318 gdb_assert (gdbarch != NULL);
3319 if (gdbarch_debug >= 2)
3320 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_regset_sections called\n");
3321 return gdbarch->core_regset_sections;
3322}
3323
3324void
3325set_gdbarch_core_regset_sections (struct gdbarch *gdbarch,
3326 struct core_regset_section * core_regset_sections)
3327{
3328 gdbarch->core_regset_sections = core_regset_sections;
3329}
3330
6432734d
UW
3331int
3332gdbarch_make_corefile_notes_p (struct gdbarch *gdbarch)
3333{
3334 gdb_assert (gdbarch != NULL);
3335 return gdbarch->make_corefile_notes != NULL;
3336}
3337
3338char *
3339gdbarch_make_corefile_notes (struct gdbarch *gdbarch, bfd *obfd, int *note_size)
3340{
3341 gdb_assert (gdbarch != NULL);
3342 gdb_assert (gdbarch->make_corefile_notes != NULL);
3343 if (gdbarch_debug >= 2)
3344 fprintf_unfiltered (gdb_stdlog, "gdbarch_make_corefile_notes called\n");
3345 return gdbarch->make_corefile_notes (gdbarch, obfd, note_size);
3346}
3347
3348void
3349set_gdbarch_make_corefile_notes (struct gdbarch *gdbarch,
3350 gdbarch_make_corefile_notes_ftype make_corefile_notes)
3351{
3352 gdbarch->make_corefile_notes = make_corefile_notes;
3353}
3354
35c2fab7
UW
3355int
3356gdbarch_find_memory_regions_p (struct gdbarch *gdbarch)
3357{
3358 gdb_assert (gdbarch != NULL);
3359 return gdbarch->find_memory_regions != NULL;
3360}
3361
3362int
3363gdbarch_find_memory_regions (struct gdbarch *gdbarch, find_memory_region_ftype func, void *data)
3364{
3365 gdb_assert (gdbarch != NULL);
3366 gdb_assert (gdbarch->find_memory_regions != NULL);
3367 if (gdbarch_debug >= 2)
3368 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_memory_regions called\n");
3369 return gdbarch->find_memory_regions (gdbarch, func, data);
3370}
3371
3372void
3373set_gdbarch_find_memory_regions (struct gdbarch *gdbarch,
3374 gdbarch_find_memory_regions_ftype find_memory_regions)
3375{
3376 gdbarch->find_memory_regions = find_memory_regions;
3377}
3378
de584861
PA
3379int
3380gdbarch_core_xfer_shared_libraries_p (struct gdbarch *gdbarch)
3381{
3382 gdb_assert (gdbarch != NULL);
3383 return gdbarch->core_xfer_shared_libraries != NULL;
3384}
3385
3386LONGEST
3387gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, LONGEST len)
3388{
3389 gdb_assert (gdbarch != NULL);
3390 gdb_assert (gdbarch->core_xfer_shared_libraries != NULL);
3391 if (gdbarch_debug >= 2)
3392 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries called\n");
3393 return gdbarch->core_xfer_shared_libraries (gdbarch, readbuf, offset, len);
3394}
3395
3396void
3397set_gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch,
3398 gdbarch_core_xfer_shared_libraries_ftype core_xfer_shared_libraries)
3399{
3400 gdbarch->core_xfer_shared_libraries = core_xfer_shared_libraries;
3401}
3402
28439f5e
PA
3403int
3404gdbarch_core_pid_to_str_p (struct gdbarch *gdbarch)
3405{
3406 gdb_assert (gdbarch != NULL);
3407 return gdbarch->core_pid_to_str != NULL;
3408}
3409
3410char *
3411gdbarch_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid)
3412{
3413 gdb_assert (gdbarch != NULL);
3414 gdb_assert (gdbarch->core_pid_to_str != NULL);
3415 if (gdbarch_debug >= 2)
3416 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_pid_to_str called\n");
3417 return gdbarch->core_pid_to_str (gdbarch, ptid);
3418}
3419
3420void
3421set_gdbarch_core_pid_to_str (struct gdbarch *gdbarch,
3422 gdbarch_core_pid_to_str_ftype core_pid_to_str)
3423{
3424 gdbarch->core_pid_to_str = core_pid_to_str;
3425}
3426
a78c2d62
UW
3427int
3428gdbarch_gcore_bfd_target_p (struct gdbarch *gdbarch)
3429{
3430 gdb_assert (gdbarch != NULL);
3431 return gdbarch->gcore_bfd_target != 0;
3432}
3433
3434const char *
3435gdbarch_gcore_bfd_target (struct gdbarch *gdbarch)
3436{
3437 gdb_assert (gdbarch != NULL);
3438 /* Check variable changed from pre-default. */
3439 gdb_assert (gdbarch->gcore_bfd_target != 0);
3440 if (gdbarch_debug >= 2)
3441 fprintf_unfiltered (gdb_stdlog, "gdbarch_gcore_bfd_target called\n");
3442 return gdbarch->gcore_bfd_target;
3443}
3444
3445void
3446set_gdbarch_gcore_bfd_target (struct gdbarch *gdbarch,
3447 const char * gcore_bfd_target)
3448{
3449 gdbarch->gcore_bfd_target = gcore_bfd_target;
3450}
3451
0d5de010
DJ
3452int
3453gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch)
3454{
3455 gdb_assert (gdbarch != NULL);
3456 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
3457 if (gdbarch_debug >= 2)
3458 fprintf_unfiltered (gdb_stdlog, "gdbarch_vtable_function_descriptors called\n");
3459 return gdbarch->vtable_function_descriptors;
3460}
3461
3462void
3463set_gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch,
3464 int vtable_function_descriptors)
3465{
3466 gdbarch->vtable_function_descriptors = vtable_function_descriptors;
3467}
3468
3469int
3470gdbarch_vbit_in_delta (struct gdbarch *gdbarch)
3471{
3472 gdb_assert (gdbarch != NULL);
3473 /* Skip verify of vbit_in_delta, invalid_p == 0 */
3474 if (gdbarch_debug >= 2)
3475 fprintf_unfiltered (gdb_stdlog, "gdbarch_vbit_in_delta called\n");
3476 return gdbarch->vbit_in_delta;
3477}
3478
3479void
3480set_gdbarch_vbit_in_delta (struct gdbarch *gdbarch,
3481 int vbit_in_delta)
3482{
3483 gdbarch->vbit_in_delta = vbit_in_delta;
3484}
3485
6d350bb5
UW
3486int
3487gdbarch_skip_permanent_breakpoint_p (struct gdbarch *gdbarch)
3488{
3489 gdb_assert (gdbarch != NULL);
3490 return gdbarch->skip_permanent_breakpoint != NULL;
3491}
3492
3493void
3494gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch, struct regcache *regcache)
3495{
3496 gdb_assert (gdbarch != NULL);
3497 gdb_assert (gdbarch->skip_permanent_breakpoint != NULL);
3498 if (gdbarch_debug >= 2)
3499 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_permanent_breakpoint called\n");
3500 gdbarch->skip_permanent_breakpoint (regcache);
3501}
3502
3503void
3504set_gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch,
3505 gdbarch_skip_permanent_breakpoint_ftype skip_permanent_breakpoint)
3506{
3507 gdbarch->skip_permanent_breakpoint = skip_permanent_breakpoint;
3508}
3509
237fc4c9
PA
3510int
3511gdbarch_max_insn_length_p (struct gdbarch *gdbarch)
3512{
3513 gdb_assert (gdbarch != NULL);
3514 return gdbarch->max_insn_length != 0;
3515}
3516
3517ULONGEST
3518gdbarch_max_insn_length (struct gdbarch *gdbarch)
3519{
3520 gdb_assert (gdbarch != NULL);
3521 /* Check variable changed from pre-default. */
3522 gdb_assert (gdbarch->max_insn_length != 0);
3523 if (gdbarch_debug >= 2)
3524 fprintf_unfiltered (gdb_stdlog, "gdbarch_max_insn_length called\n");
3525 return gdbarch->max_insn_length;
3526}
3527
3528void
3529set_gdbarch_max_insn_length (struct gdbarch *gdbarch,
3530 ULONGEST max_insn_length)
3531{
3532 gdbarch->max_insn_length = max_insn_length;
3533}
3534
3535int
3536gdbarch_displaced_step_copy_insn_p (struct gdbarch *gdbarch)
3537{
3538 gdb_assert (gdbarch != NULL);
3539 return gdbarch->displaced_step_copy_insn != NULL;
3540}
3541
3542struct displaced_step_closure *
3543gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, CORE_ADDR from, CORE_ADDR to, struct regcache *regs)
3544{
3545 gdb_assert (gdbarch != NULL);
3546 gdb_assert (gdbarch->displaced_step_copy_insn != NULL);
3547 if (gdbarch_debug >= 2)
3548 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_copy_insn called\n");
3549 return gdbarch->displaced_step_copy_insn (gdbarch, from, to, regs);
3550}
3551
3552void
3553set_gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch,
3554 gdbarch_displaced_step_copy_insn_ftype displaced_step_copy_insn)
3555{
3556 gdbarch->displaced_step_copy_insn = displaced_step_copy_insn;
3557}
3558
99e40580
UW
3559int
3560gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, struct displaced_step_closure *closure)
3561{
3562 gdb_assert (gdbarch != NULL);
3563 gdb_assert (gdbarch->displaced_step_hw_singlestep != NULL);
3564 if (gdbarch_debug >= 2)
3565 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_hw_singlestep called\n");
3566 return gdbarch->displaced_step_hw_singlestep (gdbarch, closure);
3567}
3568
3569void
3570set_gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
3571 gdbarch_displaced_step_hw_singlestep_ftype displaced_step_hw_singlestep)
3572{
3573 gdbarch->displaced_step_hw_singlestep = displaced_step_hw_singlestep;
3574}
3575
237fc4c9
PA
3576int
3577gdbarch_displaced_step_fixup_p (struct gdbarch *gdbarch)
3578{
3579 gdb_assert (gdbarch != NULL);
3580 return gdbarch->displaced_step_fixup != NULL;
3581}
3582
3583void
3584gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, struct displaced_step_closure *closure, CORE_ADDR from, CORE_ADDR to, struct regcache *regs)
3585{
3586 gdb_assert (gdbarch != NULL);
3587 gdb_assert (gdbarch->displaced_step_fixup != NULL);
3588 /* Do not check predicate: gdbarch->displaced_step_fixup != NULL, allow call. */
3589 if (gdbarch_debug >= 2)
3590 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_fixup called\n");
3591 gdbarch->displaced_step_fixup (gdbarch, closure, from, to, regs);
3592}
3593
3594void
3595set_gdbarch_displaced_step_fixup (struct gdbarch *gdbarch,
3596 gdbarch_displaced_step_fixup_ftype displaced_step_fixup)
3597{
3598 gdbarch->displaced_step_fixup = displaced_step_fixup;
3599}
3600
3601void
3602gdbarch_displaced_step_free_closure (struct gdbarch *gdbarch, struct displaced_step_closure *closure)
3603{
3604 gdb_assert (gdbarch != NULL);
3605 gdb_assert (gdbarch->displaced_step_free_closure != NULL);
3606 if (gdbarch_debug >= 2)
3607 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_free_closure called\n");
3608 gdbarch->displaced_step_free_closure (gdbarch, closure);
3609}
3610
3611void
3612set_gdbarch_displaced_step_free_closure (struct gdbarch *gdbarch,
3613 gdbarch_displaced_step_free_closure_ftype displaced_step_free_closure)
3614{
3615 gdbarch->displaced_step_free_closure = displaced_step_free_closure;
3616}
3617
3618CORE_ADDR
3619gdbarch_displaced_step_location (struct gdbarch *gdbarch)
3620{
3621 gdb_assert (gdbarch != NULL);
3622 gdb_assert (gdbarch->displaced_step_location != NULL);
3623 if (gdbarch_debug >= 2)
3624 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_location called\n");
3625 return gdbarch->displaced_step_location (gdbarch);
3626}
3627
3628void
3629set_gdbarch_displaced_step_location (struct gdbarch *gdbarch,
3630 gdbarch_displaced_step_location_ftype displaced_step_location)
3631{
3632 gdbarch->displaced_step_location = displaced_step_location;
3633}
3634
dde08ee1
PA
3635int
3636gdbarch_relocate_instruction_p (struct gdbarch *gdbarch)
3637{
3638 gdb_assert (gdbarch != NULL);
3639 return gdbarch->relocate_instruction != NULL;
3640}
3641
3642void
3643gdbarch_relocate_instruction (struct gdbarch *gdbarch, CORE_ADDR *to, CORE_ADDR from)
3644{
3645 gdb_assert (gdbarch != NULL);
3646 gdb_assert (gdbarch->relocate_instruction != NULL);
3647 /* Do not check predicate: gdbarch->relocate_instruction != NULL, allow call. */
3648 if (gdbarch_debug >= 2)
3649 fprintf_unfiltered (gdb_stdlog, "gdbarch_relocate_instruction called\n");
3650 gdbarch->relocate_instruction (gdbarch, to, from);
3651}
3652
3653void
3654set_gdbarch_relocate_instruction (struct gdbarch *gdbarch,
3655 gdbarch_relocate_instruction_ftype relocate_instruction)
3656{
3657 gdbarch->relocate_instruction = relocate_instruction;
3658}
3659
1c772458
UW
3660int
3661gdbarch_overlay_update_p (struct gdbarch *gdbarch)
3662{
3663 gdb_assert (gdbarch != NULL);
3664 return gdbarch->overlay_update != NULL;
3665}
3666
3667void
3668gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect)
3669{
3670 gdb_assert (gdbarch != NULL);
3671 gdb_assert (gdbarch->overlay_update != NULL);
3672 if (gdbarch_debug >= 2)
3673 fprintf_unfiltered (gdb_stdlog, "gdbarch_overlay_update called\n");
3674 gdbarch->overlay_update (osect);
3675}
3676
3677void
3678set_gdbarch_overlay_update (struct gdbarch *gdbarch,
3679 gdbarch_overlay_update_ftype overlay_update)
3680{
3681 gdbarch->overlay_update = overlay_update;
3682}
3683
4eb0ad19
DJ
3684int
3685gdbarch_core_read_description_p (struct gdbarch *gdbarch)
3686{
3687 gdb_assert (gdbarch != NULL);
3688 return gdbarch->core_read_description != NULL;
3689}
3690
3691const struct target_desc *
3692gdbarch_core_read_description (struct gdbarch *gdbarch, struct target_ops *target, bfd *abfd)
3693{
3694 gdb_assert (gdbarch != NULL);
3695 gdb_assert (gdbarch->core_read_description != NULL);
3696 if (gdbarch_debug >= 2)
3697 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_read_description called\n");
3698 return gdbarch->core_read_description (gdbarch, target, abfd);
3699}
3700
3701void
3702set_gdbarch_core_read_description (struct gdbarch *gdbarch,
3703 gdbarch_core_read_description_ftype core_read_description)
3704{
3705 gdbarch->core_read_description = core_read_description;
3706}
3707
149ad273
UW
3708int
3709gdbarch_static_transform_name_p (struct gdbarch *gdbarch)
3710{
3711 gdb_assert (gdbarch != NULL);
3712 return gdbarch->static_transform_name != NULL;
3713}
3714
0d5cff50
DE
3715const char *
3716gdbarch_static_transform_name (struct gdbarch *gdbarch, const char *name)
149ad273
UW
3717{
3718 gdb_assert (gdbarch != NULL);
3719 gdb_assert (gdbarch->static_transform_name != NULL);
3720 if (gdbarch_debug >= 2)
3721 fprintf_unfiltered (gdb_stdlog, "gdbarch_static_transform_name called\n");
3722 return gdbarch->static_transform_name (name);
3723}
3724
3725void
3726set_gdbarch_static_transform_name (struct gdbarch *gdbarch,
3727 gdbarch_static_transform_name_ftype static_transform_name)
3728{
3729 gdbarch->static_transform_name = static_transform_name;
3730}
3731
203c3895
UW
3732int
3733gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch)
3734{
3735 gdb_assert (gdbarch != NULL);
3736 /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */
3737 if (gdbarch_debug >= 2)
3738 fprintf_unfiltered (gdb_stdlog, "gdbarch_sofun_address_maybe_missing called\n");
3739 return gdbarch->sofun_address_maybe_missing;
3740}
3741
3742void
3743set_gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch,
3744 int sofun_address_maybe_missing)
3745{
3746 gdbarch->sofun_address_maybe_missing = sofun_address_maybe_missing;
3747}
3748
0508c3ec
HZ
3749int
3750gdbarch_process_record_p (struct gdbarch *gdbarch)
3751{
3752 gdb_assert (gdbarch != NULL);
3753 return gdbarch->process_record != NULL;
3754}
3755
3756int
3757gdbarch_process_record (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr)
3758{
3759 gdb_assert (gdbarch != NULL);
3760 gdb_assert (gdbarch->process_record != NULL);
3761 if (gdbarch_debug >= 2)
3762 fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record called\n");
3763 return gdbarch->process_record (gdbarch, regcache, addr);
3764}
3765
3766void
3767set_gdbarch_process_record (struct gdbarch *gdbarch,
3768 gdbarch_process_record_ftype process_record)
3769{
3770 gdbarch->process_record = process_record;
3771}
3772
3846b520
HZ
3773int
3774gdbarch_process_record_signal_p (struct gdbarch *gdbarch)
3775{
3776 gdb_assert (gdbarch != NULL);
3777 return gdbarch->process_record_signal != NULL;
3778}
3779
3780int
3781gdbarch_process_record_signal (struct gdbarch *gdbarch, struct regcache *regcache, enum target_signal signal)
3782{
3783 gdb_assert (gdbarch != NULL);
3784 gdb_assert (gdbarch->process_record_signal != NULL);
3785 if (gdbarch_debug >= 2)
3786 fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record_signal called\n");
3787 return gdbarch->process_record_signal (gdbarch, regcache, signal);
3788}
3789
3790void
3791set_gdbarch_process_record_signal (struct gdbarch *gdbarch,
3792 gdbarch_process_record_signal_ftype process_record_signal)
3793{
3794 gdbarch->process_record_signal = process_record_signal;
3795}
3796
1cded358
AR
3797enum target_signal
3798gdbarch_target_signal_from_host (struct gdbarch *gdbarch, int signo)
3799{
3800 gdb_assert (gdbarch != NULL);
3801 gdb_assert (gdbarch->target_signal_from_host != NULL);
3802 if (gdbarch_debug >= 2)
3803 fprintf_unfiltered (gdb_stdlog, "gdbarch_target_signal_from_host called\n");
3804 return gdbarch->target_signal_from_host (gdbarch, signo);
3805}
3806
3807void
3808set_gdbarch_target_signal_from_host (struct gdbarch *gdbarch,
3809 gdbarch_target_signal_from_host_ftype target_signal_from_host)
3810{
3811 gdbarch->target_signal_from_host = target_signal_from_host;
3812}
3813
3814int
3815gdbarch_target_signal_to_host (struct gdbarch *gdbarch, enum target_signal ts)
3816{
3817 gdb_assert (gdbarch != NULL);
3818 gdb_assert (gdbarch->target_signal_to_host != NULL);
3819 if (gdbarch_debug >= 2)
3820 fprintf_unfiltered (gdb_stdlog, "gdbarch_target_signal_to_host called\n");
3821 return gdbarch->target_signal_to_host (gdbarch, ts);
3822}
3823
3824void
3825set_gdbarch_target_signal_to_host (struct gdbarch *gdbarch,
3826 gdbarch_target_signal_to_host_ftype target_signal_to_host)
3827{
3828 gdbarch->target_signal_to_host = target_signal_to_host;
3829}
3830
4aa995e1
PA
3831int
3832gdbarch_get_siginfo_type_p (struct gdbarch *gdbarch)
3833{
3834 gdb_assert (gdbarch != NULL);
3835 return gdbarch->get_siginfo_type != NULL;
3836}
3837
3838struct type *
3839gdbarch_get_siginfo_type (struct gdbarch *gdbarch)
3840{
3841 gdb_assert (gdbarch != NULL);
3842 gdb_assert (gdbarch->get_siginfo_type != NULL);
3843 if (gdbarch_debug >= 2)
3844 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_siginfo_type called\n");
3845 return gdbarch->get_siginfo_type (gdbarch);
3846}
3847
3848void
3849set_gdbarch_get_siginfo_type (struct gdbarch *gdbarch,
3850 gdbarch_get_siginfo_type_ftype get_siginfo_type)
3851{
3852 gdbarch->get_siginfo_type = get_siginfo_type;
3853}
3854
60c5725c
DJ
3855int
3856gdbarch_record_special_symbol_p (struct gdbarch *gdbarch)
3857{
3858 gdb_assert (gdbarch != NULL);
3859 return gdbarch->record_special_symbol != NULL;
3860}
3861
3862void
3863gdbarch_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile, asymbol *sym)
3864{
3865 gdb_assert (gdbarch != NULL);
3866 gdb_assert (gdbarch->record_special_symbol != NULL);
3867 if (gdbarch_debug >= 2)
3868 fprintf_unfiltered (gdb_stdlog, "gdbarch_record_special_symbol called\n");
3869 gdbarch->record_special_symbol (gdbarch, objfile, sym);
3870}
3871
3872void
3873set_gdbarch_record_special_symbol (struct gdbarch *gdbarch,
3874 gdbarch_record_special_symbol_ftype record_special_symbol)
3875{
3876 gdbarch->record_special_symbol = record_special_symbol;
3877}
3878
a96d9b2e
SDJ
3879int
3880gdbarch_get_syscall_number_p (struct gdbarch *gdbarch)
3881{
3882 gdb_assert (gdbarch != NULL);
3883 return gdbarch->get_syscall_number != NULL;
3884}
3885
3886LONGEST
3887gdbarch_get_syscall_number (struct gdbarch *gdbarch, ptid_t ptid)
3888{
3889 gdb_assert (gdbarch != NULL);
3890 gdb_assert (gdbarch->get_syscall_number != NULL);
3891 if (gdbarch_debug >= 2)
3892 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_syscall_number called\n");
3893 return gdbarch->get_syscall_number (gdbarch, ptid);
3894}
3895
3896void
3897set_gdbarch_get_syscall_number (struct gdbarch *gdbarch,
3898 gdbarch_get_syscall_number_ftype get_syscall_number)
3899{
3900 gdbarch->get_syscall_number = get_syscall_number;
3901}
3902
55aa24fb
SDJ
3903const char *
3904gdbarch_stap_integer_prefix (struct gdbarch *gdbarch)
3905{
3906 gdb_assert (gdbarch != NULL);
3907 /* Skip verify of stap_integer_prefix, invalid_p == 0 */
3908 if (gdbarch_debug >= 2)
3909 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_prefix called\n");
3910 return gdbarch->stap_integer_prefix;
3911}
3912
3913void
3914set_gdbarch_stap_integer_prefix (struct gdbarch *gdbarch,
3915 const char * stap_integer_prefix)
3916{
3917 gdbarch->stap_integer_prefix = stap_integer_prefix;
3918}
3919
3920const char *
3921gdbarch_stap_integer_suffix (struct gdbarch *gdbarch)
3922{
3923 gdb_assert (gdbarch != NULL);
3924 /* Skip verify of stap_integer_suffix, invalid_p == 0 */
3925 if (gdbarch_debug >= 2)
3926 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_suffix called\n");
3927 return gdbarch->stap_integer_suffix;
3928}
3929
3930void
3931set_gdbarch_stap_integer_suffix (struct gdbarch *gdbarch,
3932 const char * stap_integer_suffix)
3933{
3934 gdbarch->stap_integer_suffix = stap_integer_suffix;
3935}
3936
3937const char *
3938gdbarch_stap_register_prefix (struct gdbarch *gdbarch)
3939{
3940 gdb_assert (gdbarch != NULL);
3941 /* Skip verify of stap_register_prefix, invalid_p == 0 */
3942 if (gdbarch_debug >= 2)
3943 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_prefix called\n");
3944 return gdbarch->stap_register_prefix;
3945}
3946
3947void
3948set_gdbarch_stap_register_prefix (struct gdbarch *gdbarch,
3949 const char * stap_register_prefix)
3950{
3951 gdbarch->stap_register_prefix = stap_register_prefix;
3952}
3953
3954const char *
3955gdbarch_stap_register_suffix (struct gdbarch *gdbarch)
3956{
3957 gdb_assert (gdbarch != NULL);
3958 /* Skip verify of stap_register_suffix, invalid_p == 0 */
3959 if (gdbarch_debug >= 2)
3960 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_suffix called\n");
3961 return gdbarch->stap_register_suffix;
3962}
3963
3964void
3965set_gdbarch_stap_register_suffix (struct gdbarch *gdbarch,
3966 const char * stap_register_suffix)
3967{
3968 gdbarch->stap_register_suffix = stap_register_suffix;
3969}
3970
3971const char *
3972gdbarch_stap_register_indirection_prefix (struct gdbarch *gdbarch)
3973{
3974 gdb_assert (gdbarch != NULL);
3975 /* Skip verify of stap_register_indirection_prefix, invalid_p == 0 */
3976 if (gdbarch_debug >= 2)
3977 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_prefix called\n");
3978 return gdbarch->stap_register_indirection_prefix;
3979}
3980
3981void
3982set_gdbarch_stap_register_indirection_prefix (struct gdbarch *gdbarch,
3983 const char * stap_register_indirection_prefix)
3984{
3985 gdbarch->stap_register_indirection_prefix = stap_register_indirection_prefix;
3986}
3987
3988const char *
3989gdbarch_stap_register_indirection_suffix (struct gdbarch *gdbarch)
3990{
3991 gdb_assert (gdbarch != NULL);
3992 /* Skip verify of stap_register_indirection_suffix, invalid_p == 0 */
3993 if (gdbarch_debug >= 2)
3994 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_suffix called\n");
3995 return gdbarch->stap_register_indirection_suffix;
3996}
3997
3998void
3999set_gdbarch_stap_register_indirection_suffix (struct gdbarch *gdbarch,
4000 const char * stap_register_indirection_suffix)
4001{
4002 gdbarch->stap_register_indirection_suffix = stap_register_indirection_suffix;
4003}
4004
4005const char *
4006gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch)
4007{
4008 gdb_assert (gdbarch != NULL);
4009 /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */
4010 if (gdbarch_debug >= 2)
4011 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_prefix called\n");
4012 return gdbarch->stap_gdb_register_prefix;
4013}
4014
4015void
4016set_gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch,
4017 const char * stap_gdb_register_prefix)
4018{
4019 gdbarch->stap_gdb_register_prefix = stap_gdb_register_prefix;
4020}
4021
4022const char *
4023gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch)
4024{
4025 gdb_assert (gdbarch != NULL);
4026 /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */
4027 if (gdbarch_debug >= 2)
4028 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_suffix called\n");
4029 return gdbarch->stap_gdb_register_suffix;
4030}
4031
4032void
4033set_gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch,
4034 const char * stap_gdb_register_suffix)
4035{
4036 gdbarch->stap_gdb_register_suffix = stap_gdb_register_suffix;
4037}
4038
4039int
4040gdbarch_stap_is_single_operand_p (struct gdbarch *gdbarch)
4041{
4042 gdb_assert (gdbarch != NULL);
4043 return gdbarch->stap_is_single_operand != NULL;
4044}
4045
4046int
4047gdbarch_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
4048{
4049 gdb_assert (gdbarch != NULL);
4050 gdb_assert (gdbarch->stap_is_single_operand != NULL);
4051 if (gdbarch_debug >= 2)
4052 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_is_single_operand called\n");
4053 return gdbarch->stap_is_single_operand (gdbarch, s);
4054}
4055
4056void
4057set_gdbarch_stap_is_single_operand (struct gdbarch *gdbarch,
4058 gdbarch_stap_is_single_operand_ftype stap_is_single_operand)
4059{
4060 gdbarch->stap_is_single_operand = stap_is_single_operand;
4061}
4062
4063int
4064gdbarch_stap_parse_special_token_p (struct gdbarch *gdbarch)
4065{
4066 gdb_assert (gdbarch != NULL);
4067 return gdbarch->stap_parse_special_token != NULL;
4068}
4069
4070int
4071gdbarch_stap_parse_special_token (struct gdbarch *gdbarch, struct stap_parse_info *p)
4072{
4073 gdb_assert (gdbarch != NULL);
4074 gdb_assert (gdbarch->stap_parse_special_token != NULL);
4075 if (gdbarch_debug >= 2)
4076 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_parse_special_token called\n");
4077 return gdbarch->stap_parse_special_token (gdbarch, p);
4078}
4079
4080void
4081set_gdbarch_stap_parse_special_token (struct gdbarch *gdbarch,
4082 gdbarch_stap_parse_special_token_ftype stap_parse_special_token)
4083{
4084 gdbarch->stap_parse_special_token = stap_parse_special_token;
4085}
4086
50c71eaf
PA
4087int
4088gdbarch_has_global_solist (struct gdbarch *gdbarch)
4089{
4090 gdb_assert (gdbarch != NULL);
4091 /* Skip verify of has_global_solist, invalid_p == 0 */
4092 if (gdbarch_debug >= 2)
4093 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_solist called\n");
4094 return gdbarch->has_global_solist;
4095}
4096
4097void
4098set_gdbarch_has_global_solist (struct gdbarch *gdbarch,
4099 int has_global_solist)
4100{
4101 gdbarch->has_global_solist = has_global_solist;
4102}
4103
2567c7d9
PA
4104int
4105gdbarch_has_global_breakpoints (struct gdbarch *gdbarch)
4106{
4107 gdb_assert (gdbarch != NULL);
4108 /* Skip verify of has_global_breakpoints, invalid_p == 0 */
4109 if (gdbarch_debug >= 2)
4110 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_breakpoints called\n");
4111 return gdbarch->has_global_breakpoints;
4112}
4113
4114void
4115set_gdbarch_has_global_breakpoints (struct gdbarch *gdbarch,
4116 int has_global_breakpoints)
4117{
4118 gdbarch->has_global_breakpoints = has_global_breakpoints;
4119}
4120
6c95b8df
PA
4121int
4122gdbarch_has_shared_address_space (struct gdbarch *gdbarch)
4123{
4124 gdb_assert (gdbarch != NULL);
4125 gdb_assert (gdbarch->has_shared_address_space != NULL);
4126 if (gdbarch_debug >= 2)
4127 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_shared_address_space called\n");
4128 return gdbarch->has_shared_address_space (gdbarch);
4129}
4130
4131void
4132set_gdbarch_has_shared_address_space (struct gdbarch *gdbarch,
4133 gdbarch_has_shared_address_space_ftype has_shared_address_space)
4134{
4135 gdbarch->has_shared_address_space = has_shared_address_space;
4136}
4137
7a697b8d
SS
4138int
4139gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr, int *isize, char **msg)
4140{
4141 gdb_assert (gdbarch != NULL);
4142 gdb_assert (gdbarch->fast_tracepoint_valid_at != NULL);
4143 if (gdbarch_debug >= 2)
4144 fprintf_unfiltered (gdb_stdlog, "gdbarch_fast_tracepoint_valid_at called\n");
4145 return gdbarch->fast_tracepoint_valid_at (gdbarch, addr, isize, msg);
4146}
4147
4148void
4149set_gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
4150 gdbarch_fast_tracepoint_valid_at_ftype fast_tracepoint_valid_at)
4151{
4152 gdbarch->fast_tracepoint_valid_at = fast_tracepoint_valid_at;
4153}
4154
f870a310
TT
4155const char *
4156gdbarch_auto_charset (struct gdbarch *gdbarch)
4157{
4158 gdb_assert (gdbarch != NULL);
4159 gdb_assert (gdbarch->auto_charset != NULL);
4160 if (gdbarch_debug >= 2)
4161 fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_charset called\n");
4162 return gdbarch->auto_charset ();
4163}
4164
4165void
4166set_gdbarch_auto_charset (struct gdbarch *gdbarch,
4167 gdbarch_auto_charset_ftype auto_charset)
4168{
4169 gdbarch->auto_charset = auto_charset;
4170}
4171
4172const char *
4173gdbarch_auto_wide_charset (struct gdbarch *gdbarch)
4174{
4175 gdb_assert (gdbarch != NULL);
4176 gdb_assert (gdbarch->auto_wide_charset != NULL);
4177 if (gdbarch_debug >= 2)
4178 fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_wide_charset called\n");
4179 return gdbarch->auto_wide_charset ();
4180}
4181
4182void
4183set_gdbarch_auto_wide_charset (struct gdbarch *gdbarch,
4184 gdbarch_auto_wide_charset_ftype auto_wide_charset)
4185{
4186 gdbarch->auto_wide_charset = auto_wide_charset;
4187}
4188
08105857
PA
4189const char *
4190gdbarch_solib_symbols_extension (struct gdbarch *gdbarch)
4191{
4192 gdb_assert (gdbarch != NULL);
4193 if (gdbarch_debug >= 2)
4194 fprintf_unfiltered (gdb_stdlog, "gdbarch_solib_symbols_extension called\n");
4195 return gdbarch->solib_symbols_extension;
4196}
4197
4198void
4199set_gdbarch_solib_symbols_extension (struct gdbarch *gdbarch,
4200 const char * solib_symbols_extension)
4201{
4202 gdbarch->solib_symbols_extension = solib_symbols_extension;
4203}
4204
ab38a727
PA
4205int
4206gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch)
4207{
4208 gdb_assert (gdbarch != NULL);
4209 /* Skip verify of has_dos_based_file_system, invalid_p == 0 */
4210 if (gdbarch_debug >= 2)
4211 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_dos_based_file_system called\n");
4212 return gdbarch->has_dos_based_file_system;
4213}
4214
4215void
4216set_gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch,
4217 int has_dos_based_file_system)
4218{
4219 gdbarch->has_dos_based_file_system = has_dos_based_file_system;
4220}
4221
6710bf39
SS
4222void
4223gdbarch_gen_return_address (struct gdbarch *gdbarch, struct agent_expr *ax, struct axs_value *value, CORE_ADDR scope)
4224{
4225 gdb_assert (gdbarch != NULL);
4226 gdb_assert (gdbarch->gen_return_address != NULL);
4227 if (gdbarch_debug >= 2)
4228 fprintf_unfiltered (gdb_stdlog, "gdbarch_gen_return_address called\n");
4229 gdbarch->gen_return_address (gdbarch, ax, value, scope);
4230}
4231
4232void
4233set_gdbarch_gen_return_address (struct gdbarch *gdbarch,
4234 gdbarch_gen_return_address_ftype gen_return_address)
4235{
4236 gdbarch->gen_return_address = gen_return_address;
4237}
4238
3030c96e
UW
4239int
4240gdbarch_info_proc_p (struct gdbarch *gdbarch)
4241{
4242 gdb_assert (gdbarch != NULL);
4243 return gdbarch->info_proc != NULL;
4244}
4245
4246void
4247gdbarch_info_proc (struct gdbarch *gdbarch, char *args, enum info_proc_what what)
4248{
4249 gdb_assert (gdbarch != NULL);
4250 gdb_assert (gdbarch->info_proc != NULL);
4251 if (gdbarch_debug >= 2)
4252 fprintf_unfiltered (gdb_stdlog, "gdbarch_info_proc called\n");
4253 gdbarch->info_proc (gdbarch, args, what);
4254}
4255
4256void
4257set_gdbarch_info_proc (struct gdbarch *gdbarch,
4258 gdbarch_info_proc_ftype info_proc)
4259{
4260 gdbarch->info_proc = info_proc;
4261}
4262
0f71a2f6 4263
be5a57e1 4264/* Keep a registry of per-architecture data-pointers required by GDB
0963b4bd 4265 modules. */
0f71a2f6
JM
4266
4267struct gdbarch_data
4268{
95160752 4269 unsigned index;
76860b5f 4270 int init_p;
030f20e1
AC
4271 gdbarch_data_pre_init_ftype *pre_init;
4272 gdbarch_data_post_init_ftype *post_init;
0f71a2f6
JM
4273};
4274
4275struct gdbarch_data_registration
adf40b2e 4276{
adf40b2e
JM
4277 struct gdbarch_data *data;
4278 struct gdbarch_data_registration *next;
4279};
0f71a2f6 4280
be5a57e1 4281struct gdbarch_data_registry
adf40b2e 4282{
95160752 4283 unsigned nr;
adf40b2e
JM
4284 struct gdbarch_data_registration *registrations;
4285};
0f71a2f6 4286
be5a57e1 4287struct gdbarch_data_registry gdbarch_data_registry =
0f71a2f6
JM
4288{
4289 0, NULL,
4290};
4291
030f20e1
AC
4292static struct gdbarch_data *
4293gdbarch_data_register (gdbarch_data_pre_init_ftype *pre_init,
4294 gdbarch_data_post_init_ftype *post_init)
0f71a2f6
JM
4295{
4296 struct gdbarch_data_registration **curr;
05c547f6
MS
4297
4298 /* Append the new registration. */
be5a57e1 4299 for (curr = &gdbarch_data_registry.registrations;
0f71a2f6
JM
4300 (*curr) != NULL;
4301 curr = &(*curr)->next);
4302 (*curr) = XMALLOC (struct gdbarch_data_registration);
4303 (*curr)->next = NULL;
0f71a2f6 4304 (*curr)->data = XMALLOC (struct gdbarch_data);
be5a57e1 4305 (*curr)->data->index = gdbarch_data_registry.nr++;
030f20e1
AC
4306 (*curr)->data->pre_init = pre_init;
4307 (*curr)->data->post_init = post_init;
76860b5f 4308 (*curr)->data->init_p = 1;
0f71a2f6
JM
4309 return (*curr)->data;
4310}
4311
030f20e1
AC
4312struct gdbarch_data *
4313gdbarch_data_register_pre_init (gdbarch_data_pre_init_ftype *pre_init)
4314{
4315 return gdbarch_data_register (pre_init, NULL);
4316}
4317
4318struct gdbarch_data *
4319gdbarch_data_register_post_init (gdbarch_data_post_init_ftype *post_init)
4320{
4321 return gdbarch_data_register (NULL, post_init);
4322}
0f71a2f6 4323
0963b4bd 4324/* Create/delete the gdbarch data vector. */
95160752
AC
4325
4326static void
b3cc3077 4327alloc_gdbarch_data (struct gdbarch *gdbarch)
95160752 4328{
b3cc3077
JB
4329 gdb_assert (gdbarch->data == NULL);
4330 gdbarch->nr_data = gdbarch_data_registry.nr;
aebd7893 4331 gdbarch->data = GDBARCH_OBSTACK_CALLOC (gdbarch, gdbarch->nr_data, void *);
0f71a2f6
JM
4332}
4333
76860b5f 4334/* Initialize the current value of the specified per-architecture
0963b4bd 4335 data-pointer. */
b3cc3077 4336
95160752 4337void
030f20e1
AC
4338deprecated_set_gdbarch_data (struct gdbarch *gdbarch,
4339 struct gdbarch_data *data,
4340 void *pointer)
95160752
AC
4341{
4342 gdb_assert (data->index < gdbarch->nr_data);
aebd7893 4343 gdb_assert (gdbarch->data[data->index] == NULL);
030f20e1 4344 gdb_assert (data->pre_init == NULL);
95160752
AC
4345 gdbarch->data[data->index] = pointer;
4346}
4347
0f71a2f6 4348/* Return the current value of the specified per-architecture
0963b4bd 4349 data-pointer. */
0f71a2f6
JM
4350
4351void *
451fbdda 4352gdbarch_data (struct gdbarch *gdbarch, struct gdbarch_data *data)
0f71a2f6 4353{
451fbdda 4354 gdb_assert (data->index < gdbarch->nr_data);
030f20e1 4355 if (gdbarch->data[data->index] == NULL)
76860b5f 4356 {
030f20e1
AC
4357 /* The data-pointer isn't initialized, call init() to get a
4358 value. */
4359 if (data->pre_init != NULL)
4360 /* Mid architecture creation: pass just the obstack, and not
4361 the entire architecture, as that way it isn't possible for
4362 pre-init code to refer to undefined architecture
4363 fields. */
4364 gdbarch->data[data->index] = data->pre_init (gdbarch->obstack);
4365 else if (gdbarch->initialized_p
4366 && data->post_init != NULL)
4367 /* Post architecture creation: pass the entire architecture
4368 (as all fields are valid), but be careful to also detect
4369 recursive references. */
4370 {
4371 gdb_assert (data->init_p);
4372 data->init_p = 0;
4373 gdbarch->data[data->index] = data->post_init (gdbarch);
4374 data->init_p = 1;
4375 }
4376 else
4377 /* The architecture initialization hasn't completed - punt -
4378 hope that the caller knows what they are doing. Once
4379 deprecated_set_gdbarch_data has been initialized, this can be
4380 changed to an internal error. */
4381 return NULL;
76860b5f
AC
4382 gdb_assert (gdbarch->data[data->index] != NULL);
4383 }
451fbdda 4384 return gdbarch->data[data->index];
0f71a2f6
JM
4385}
4386
4387
0963b4bd 4388/* Keep a registry of the architectures known by GDB. */
0f71a2f6 4389
4b9b3959 4390struct gdbarch_registration
0f71a2f6
JM
4391{
4392 enum bfd_architecture bfd_architecture;
4393 gdbarch_init_ftype *init;
4b9b3959 4394 gdbarch_dump_tdep_ftype *dump_tdep;
0f71a2f6 4395 struct gdbarch_list *arches;
4b9b3959 4396 struct gdbarch_registration *next;
0f71a2f6
JM
4397};
4398
be5a57e1 4399static struct gdbarch_registration *gdbarch_registry = NULL;
0f71a2f6 4400
b4a20239
AC
4401static void
4402append_name (const char ***buf, int *nr, const char *name)
4403{
4404 *buf = xrealloc (*buf, sizeof (char**) * (*nr + 1));
4405 (*buf)[*nr] = name;
4406 *nr += 1;
4407}
4408
4409const char **
4410gdbarch_printable_names (void)
4411{
7996bcec 4412 /* Accumulate a list of names based on the registed list of
0963b4bd 4413 architectures. */
7996bcec
AC
4414 int nr_arches = 0;
4415 const char **arches = NULL;
4416 struct gdbarch_registration *rego;
05c547f6 4417
7996bcec
AC
4418 for (rego = gdbarch_registry;
4419 rego != NULL;
4420 rego = rego->next)
b4a20239 4421 {
7996bcec
AC
4422 const struct bfd_arch_info *ap;
4423 ap = bfd_lookup_arch (rego->bfd_architecture, 0);
4424 if (ap == NULL)
4425 internal_error (__FILE__, __LINE__,
e2e0b3e5 4426 _("gdbarch_architecture_names: multi-arch unknown"));
7996bcec
AC
4427 do
4428 {
4429 append_name (&arches, &nr_arches, ap->printable_name);
4430 ap = ap->next;
4431 }
4432 while (ap != NULL);
b4a20239 4433 }
7996bcec
AC
4434 append_name (&arches, &nr_arches, NULL);
4435 return arches;
b4a20239
AC
4436}
4437
4438
0f71a2f6 4439void
4b9b3959
AC
4440gdbarch_register (enum bfd_architecture bfd_architecture,
4441 gdbarch_init_ftype *init,
4442 gdbarch_dump_tdep_ftype *dump_tdep)
0f71a2f6 4443{
4b9b3959 4444 struct gdbarch_registration **curr;
0f71a2f6 4445 const struct bfd_arch_info *bfd_arch_info;
05c547f6 4446
ec3d358c 4447 /* Check that BFD recognizes this architecture */
0f71a2f6
JM
4448 bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
4449 if (bfd_arch_info == NULL)
4450 {
8e65ff28 4451 internal_error (__FILE__, __LINE__,
0963b4bd
MS
4452 _("gdbarch: Attempt to register "
4453 "unknown architecture (%d)"),
8e65ff28 4454 bfd_architecture);
0f71a2f6 4455 }
0963b4bd 4456 /* Check that we haven't seen this architecture before. */
be5a57e1 4457 for (curr = &gdbarch_registry;
0f71a2f6
JM
4458 (*curr) != NULL;
4459 curr = &(*curr)->next)
4460 {
4461 if (bfd_architecture == (*curr)->bfd_architecture)
8e65ff28 4462 internal_error (__FILE__, __LINE__,
64b9b334 4463 _("gdbarch: Duplicate registration "
0963b4bd 4464 "of architecture (%s)"),
8e65ff28 4465 bfd_arch_info->printable_name);
0f71a2f6
JM
4466 }
4467 /* log it */
4468 if (gdbarch_debug)
30737ed9 4469 fprintf_unfiltered (gdb_stdlog, "register_gdbarch_init (%s, %s)\n",
0f71a2f6 4470 bfd_arch_info->printable_name,
30737ed9 4471 host_address_to_string (init));
0f71a2f6 4472 /* Append it */
4b9b3959 4473 (*curr) = XMALLOC (struct gdbarch_registration);
0f71a2f6
JM
4474 (*curr)->bfd_architecture = bfd_architecture;
4475 (*curr)->init = init;
4b9b3959 4476 (*curr)->dump_tdep = dump_tdep;
0f71a2f6
JM
4477 (*curr)->arches = NULL;
4478 (*curr)->next = NULL;
4b9b3959
AC
4479}
4480
4481void
4482register_gdbarch_init (enum bfd_architecture bfd_architecture,
4483 gdbarch_init_ftype *init)
4484{
4485 gdbarch_register (bfd_architecture, init, NULL);
0f71a2f6 4486}
0f71a2f6
JM
4487
4488
424163ea 4489/* Look for an architecture using gdbarch_info. */
0f71a2f6
JM
4490
4491struct gdbarch_list *
104c1213
JM
4492gdbarch_list_lookup_by_info (struct gdbarch_list *arches,
4493 const struct gdbarch_info *info)
0f71a2f6
JM
4494{
4495 for (; arches != NULL; arches = arches->next)
4496 {
4497 if (info->bfd_arch_info != arches->gdbarch->bfd_arch_info)
4498 continue;
4499 if (info->byte_order != arches->gdbarch->byte_order)
4500 continue;
4be87837
DJ
4501 if (info->osabi != arches->gdbarch->osabi)
4502 continue;
424163ea
DJ
4503 if (info->target_desc != arches->gdbarch->target_desc)
4504 continue;
0f71a2f6
JM
4505 return arches;
4506 }
4507 return NULL;
4508}
4509
4510
ebdba546 4511/* Find an architecture that matches the specified INFO. Create a new
59837fe0 4512 architecture if needed. Return that new architecture. */
0f71a2f6 4513
59837fe0
UW
4514struct gdbarch *
4515gdbarch_find_by_info (struct gdbarch_info info)
0f71a2f6
JM
4516{
4517 struct gdbarch *new_gdbarch;
4b9b3959 4518 struct gdbarch_registration *rego;
0f71a2f6 4519
b732d07d 4520 /* Fill in missing parts of the INFO struct using a number of
7a107747
DJ
4521 sources: "set ..."; INFOabfd supplied; and the global
4522 defaults. */
4523 gdbarch_info_fill (&info);
4be87837 4524
0963b4bd 4525 /* Must have found some sort of architecture. */
b732d07d 4526 gdb_assert (info.bfd_arch_info != NULL);
0f71a2f6
JM
4527
4528 if (gdbarch_debug)
4529 {
0f71a2f6 4530 fprintf_unfiltered (gdb_stdlog,
59837fe0 4531 "gdbarch_find_by_info: info.bfd_arch_info %s\n",
0f71a2f6
JM
4532 (info.bfd_arch_info != NULL
4533 ? info.bfd_arch_info->printable_name
4534 : "(null)"));
4535 fprintf_unfiltered (gdb_stdlog,
59837fe0 4536 "gdbarch_find_by_info: info.byte_order %d (%s)\n",
0f71a2f6 4537 info.byte_order,
d7449b42 4538 (info.byte_order == BFD_ENDIAN_BIG ? "big"
778eb05e 4539 : info.byte_order == BFD_ENDIAN_LITTLE ? "little"
0f71a2f6 4540 : "default"));
4be87837 4541 fprintf_unfiltered (gdb_stdlog,
59837fe0 4542 "gdbarch_find_by_info: info.osabi %d (%s)\n",
4be87837 4543 info.osabi, gdbarch_osabi_name (info.osabi));
0f71a2f6 4544 fprintf_unfiltered (gdb_stdlog,
59837fe0 4545 "gdbarch_find_by_info: info.abfd %s\n",
30737ed9 4546 host_address_to_string (info.abfd));
0f71a2f6 4547 fprintf_unfiltered (gdb_stdlog,
59837fe0 4548 "gdbarch_find_by_info: info.tdep_info %s\n",
30737ed9 4549 host_address_to_string (info.tdep_info));
0f71a2f6
JM
4550 }
4551
ebdba546 4552 /* Find the tdep code that knows about this architecture. */
b732d07d
AC
4553 for (rego = gdbarch_registry;
4554 rego != NULL;
4555 rego = rego->next)
4556 if (rego->bfd_architecture == info.bfd_arch_info->arch)
4557 break;
4558 if (rego == NULL)
4559 {
4560 if (gdbarch_debug)
59837fe0 4561 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
ebdba546 4562 "No matching architecture\n");
b732d07d
AC
4563 return 0;
4564 }
4565
ebdba546 4566 /* Ask the tdep code for an architecture that matches "info". */
0f71a2f6
JM
4567 new_gdbarch = rego->init (info, rego->arches);
4568
ebdba546
AC
4569 /* Did the tdep code like it? No. Reject the change and revert to
4570 the old architecture. */
0f71a2f6
JM
4571 if (new_gdbarch == NULL)
4572 {
4573 if (gdbarch_debug)
59837fe0 4574 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
ebdba546
AC
4575 "Target rejected architecture\n");
4576 return NULL;
0f71a2f6
JM
4577 }
4578
ebdba546
AC
4579 /* Is this a pre-existing architecture (as determined by already
4580 being initialized)? Move it to the front of the architecture
4581 list (keeping the list sorted Most Recently Used). */
4582 if (new_gdbarch->initialized_p)
0f71a2f6 4583 {
ebdba546
AC
4584 struct gdbarch_list **list;
4585 struct gdbarch_list *this;
0f71a2f6 4586 if (gdbarch_debug)
59837fe0 4587 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
30737ed9
JB
4588 "Previous architecture %s (%s) selected\n",
4589 host_address_to_string (new_gdbarch),
0f71a2f6 4590 new_gdbarch->bfd_arch_info->printable_name);
ebdba546
AC
4591 /* Find the existing arch in the list. */
4592 for (list = &rego->arches;
4593 (*list) != NULL && (*list)->gdbarch != new_gdbarch;
4594 list = &(*list)->next);
4595 /* It had better be in the list of architectures. */
4596 gdb_assert ((*list) != NULL && (*list)->gdbarch == new_gdbarch);
4597 /* Unlink THIS. */
4598 this = (*list);
4599 (*list) = this->next;
4600 /* Insert THIS at the front. */
4601 this->next = rego->arches;
4602 rego->arches = this;
4603 /* Return it. */
4604 return new_gdbarch;
0f71a2f6
JM
4605 }
4606
ebdba546
AC
4607 /* It's a new architecture. */
4608 if (gdbarch_debug)
59837fe0 4609 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
30737ed9
JB
4610 "New architecture %s (%s) selected\n",
4611 host_address_to_string (new_gdbarch),
ebdba546
AC
4612 new_gdbarch->bfd_arch_info->printable_name);
4613
4614 /* Insert the new architecture into the front of the architecture
4615 list (keep the list sorted Most Recently Used). */
0f79675b
AC
4616 {
4617 struct gdbarch_list *this = XMALLOC (struct gdbarch_list);
4618 this->next = rego->arches;
4619 this->gdbarch = new_gdbarch;
4620 rego->arches = this;
4621 }
0f71a2f6 4622
4b9b3959
AC
4623 /* Check that the newly installed architecture is valid. Plug in
4624 any post init values. */
4625 new_gdbarch->dump_tdep = rego->dump_tdep;
0f71a2f6 4626 verify_gdbarch (new_gdbarch);
ebdba546 4627 new_gdbarch->initialized_p = 1;
0f71a2f6 4628
4b9b3959 4629 if (gdbarch_debug)
ebdba546 4630 gdbarch_dump (new_gdbarch, gdb_stdlog);
4b9b3959 4631
ebdba546 4632 return new_gdbarch;
0f71a2f6 4633}
c906108c 4634
e487cc15 4635/* Make the specified architecture current. */
ebdba546
AC
4636
4637void
59837fe0 4638deprecated_target_gdbarch_select_hack (struct gdbarch *new_gdbarch)
ebdba546
AC
4639{
4640 gdb_assert (new_gdbarch != NULL);
ebdba546 4641 gdb_assert (new_gdbarch->initialized_p);
1cf3db46 4642 target_gdbarch = new_gdbarch;
383f836e 4643 observer_notify_architecture_changed (new_gdbarch);
a3ecef73 4644 registers_changed ();
ebdba546 4645}
c906108c 4646
104c1213 4647extern void _initialize_gdbarch (void);
b4a20239 4648
c906108c 4649void
7c7651b2 4650_initialize_gdbarch (void)
c906108c 4651{
85c07804
AC
4652 add_setshow_zinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\
4653Set architecture debugging."), _("\
4654Show architecture debugging."), _("\
4655When non-zero, architecture debugging is enabled."),
4656 NULL,
920d2a44 4657 show_gdbarch_debug,
85c07804 4658 &setdebuglist, &showdebuglist);
c906108c 4659}
This page took 1.549348 seconds and 4 git commands to generate.