2007-06-09 Markus Deuling <deuling@de.ibm.com>
[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
424163ea
DJ
5 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6 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
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
c906108c 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.
c906108c 19
96baa820
JM
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
197e01b6
EZ
22 Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA. */
adf40b2e 24
104c1213
JM
25/* This file was created with the aid of ``gdbarch.sh''.
26
52204a0b 27 The Bourne shell script ``gdbarch.sh'' creates the files
104c1213
JM
28 ``new-gdbarch.c'' and ``new-gdbarch.h and then compares them
29 against the existing ``gdbarch.[hc]''. Any differences found
30 being reported.
31
32 If editing this file, please also run gdbarch.sh and merge any
52204a0b 33 changes into that script. Conversely, when making sweeping changes
104c1213
JM
34 to this file, modifying gdbarch.sh and using its output may prove
35 easier. */
c906108c 36
c906108c
SS
37
38#include "defs.h"
1ad03bde 39#include "arch-utils.h"
c906108c 40
0f71a2f6 41#include "gdbcmd.h"
faaf634c 42#include "inferior.h"
7a292a7a 43#include "symcat.h"
c906108c 44
f0d4cc9e 45#include "floatformat.h"
c906108c 46
95160752 47#include "gdb_assert.h"
b66d6d2e 48#include "gdb_string.h"
67c2c32c 49#include "gdb-events.h"
b59ff9d5 50#include "reggroups.h"
4be87837 51#include "osabi.h"
aebd7893 52#include "gdb_obstack.h"
95160752 53
104c1213
JM
54/* Static function declarations */
55
b3cc3077 56static void alloc_gdbarch_data (struct gdbarch *);
104c1213 57
0f71a2f6
JM
58/* Non-zero if we want to trace architecture code. */
59
60#ifndef GDBARCH_DEBUG
61#define GDBARCH_DEBUG 0
62#endif
63int gdbarch_debug = GDBARCH_DEBUG;
920d2a44
AC
64static void
65show_gdbarch_debug (struct ui_file *file, int from_tty,
66 struct cmd_list_element *c, const char *value)
67{
68 fprintf_filtered (file, _("Architecture debugging is %s.\n"), value);
69}
0f71a2f6 70
456fcf94 71static const char *
8da61cc4 72pformat (const struct floatformat **format)
456fcf94
AC
73{
74 if (format == NULL)
75 return "(null)";
76 else
8da61cc4
DJ
77 /* Just print out one of them - this is only for diagnostics. */
78 return format[0]->name;
456fcf94
AC
79}
80
0f71a2f6
JM
81
82/* Maintain the struct gdbarch object */
83
84struct gdbarch
adf40b2e 85{
76860b5f
AC
86 /* Has this architecture been fully initialized? */
87 int initialized_p;
aebd7893
AC
88
89 /* An obstack bound to the lifetime of the architecture. */
90 struct obstack *obstack;
91
adf40b2e
JM
92 /* basic architectural information */
93 const struct bfd_arch_info * bfd_arch_info;
94 int byte_order;
4be87837 95 enum gdb_osabi osabi;
424163ea 96 const struct target_desc * target_desc;
0f71a2f6 97
adf40b2e
JM
98 /* target specific vector. */
99 struct gdbarch_tdep *tdep;
4b9b3959 100 gdbarch_dump_tdep_ftype *dump_tdep;
0f71a2f6 101
adf40b2e 102 /* per-architecture data-pointers */
95160752 103 unsigned nr_data;
adf40b2e 104 void **data;
0f71a2f6 105
adf40b2e
JM
106 /* per-architecture swap-regions */
107 struct gdbarch_swap *swap;
0f71a2f6 108
adf40b2e 109 /* Multi-arch values.
0f71a2f6 110
adf40b2e 111 When extending this structure you must:
0f71a2f6 112
adf40b2e 113 Add the field below.
0f71a2f6 114
adf40b2e
JM
115 Declare set/get functions and define the corresponding
116 macro in gdbarch.h.
0f71a2f6 117
adf40b2e
JM
118 gdbarch_alloc(): If zero/NULL is not a suitable default,
119 initialize the new field.
0f71a2f6 120
adf40b2e
JM
121 verify_gdbarch(): Confirm that the target updated the field
122 correctly.
0f71a2f6 123
7e73cedf 124 gdbarch_dump(): Add a fprintf_unfiltered call so that the new
adf40b2e 125 field is dumped out
0f71a2f6 126
c0e8c252 127 ``startup_gdbarch()'': Append an initial value to the static
adf40b2e 128 variable (base values on the host's c-type system).
0f71a2f6 129
adf40b2e
JM
130 get_gdbarch(): Implement the set/get functions (probably using
131 the macro's as shortcuts).
0f71a2f6
JM
132
133 */
134
adf40b2e
JM
135 int short_bit;
136 int int_bit;
137 int long_bit;
138 int long_long_bit;
139 int float_bit;
8da61cc4 140 const struct floatformat ** float_format;
adf40b2e 141 int double_bit;
8da61cc4 142 const struct floatformat ** double_format;
adf40b2e 143 int long_double_bit;
8da61cc4 144 const struct floatformat ** long_double_format;
66b43ecb 145 int ptr_bit;
52204a0b 146 int addr_bit;
66b43ecb 147 int bfd_vma_bit;
4e409299 148 int char_signed;
adf40b2e
JM
149 gdbarch_read_pc_ftype *read_pc;
150 gdbarch_write_pc_ftype *write_pc;
39d4ef09 151 gdbarch_virtual_frame_pointer_ftype *virtual_frame_pointer;
d8124050
AC
152 gdbarch_pseudo_register_read_ftype *pseudo_register_read;
153 gdbarch_pseudo_register_write_ftype *pseudo_register_write;
adf40b2e 154 int num_regs;
0aba1244 155 int num_pseudo_regs;
adf40b2e 156 int sp_regnum;
adf40b2e 157 int pc_regnum;
c2169756 158 int ps_regnum;
60054393 159 int fp0_regnum;
88c72b7d
AC
160 gdbarch_stab_reg_to_regnum_ftype *stab_reg_to_regnum;
161 gdbarch_ecoff_reg_to_regnum_ftype *ecoff_reg_to_regnum;
162 gdbarch_dwarf_reg_to_regnum_ftype *dwarf_reg_to_regnum;
163 gdbarch_sdb_reg_to_regnum_ftype *sdb_reg_to_regnum;
164 gdbarch_dwarf2_reg_to_regnum_ftype *dwarf2_reg_to_regnum;
adf40b2e 165 gdbarch_register_name_ftype *register_name;
9c04cab7 166 gdbarch_register_type_ftype *register_type;
f3be58bc 167 gdbarch_unwind_dummy_id_ftype *unwind_dummy_id;
f3be58bc 168 int deprecated_fp_regnum;
b8de8283 169 gdbarch_push_dummy_call_ftype *push_dummy_call;
b8de8283 170 int deprecated_register_size;
adf40b2e 171 int call_dummy_location;
7043d8dc 172 gdbarch_push_dummy_code_ftype *push_dummy_code;
b8de8283
AC
173 gdbarch_print_registers_info_ftype *print_registers_info;
174 gdbarch_print_float_info_ftype *print_float_info;
175 gdbarch_print_vector_info_ftype *print_vector_info;
176 gdbarch_register_sim_regno_ftype *register_sim_regno;
b8de8283
AC
177 gdbarch_cannot_fetch_register_ftype *cannot_fetch_register;
178 gdbarch_cannot_store_register_ftype *cannot_store_register;
179 gdbarch_get_longjmp_target_ftype *get_longjmp_target;
adf40b2e 180 int believe_pcc_promotion;
13d01224
AC
181 gdbarch_convert_register_p_ftype *convert_register_p;
182 gdbarch_register_to_value_ftype *register_to_value;
183 gdbarch_value_to_register_ftype *value_to_register;
9acbedc0 184 gdbarch_value_from_register_ftype *value_from_register;
4478b372
JB
185 gdbarch_pointer_to_address_ftype *pointer_to_address;
186 gdbarch_address_to_pointer_ftype *address_to_pointer;
fc0c74b1 187 gdbarch_integer_to_address_ftype *integer_to_address;
92ad9cd9 188 gdbarch_return_value_ftype *return_value;
ebba8386 189 gdbarch_extract_return_value_ftype *extract_return_value;
adf40b2e 190 gdbarch_store_return_value_ftype *store_return_value;
b5622e8d 191 gdbarch_deprecated_use_struct_convention_ftype *deprecated_use_struct_convention;
74055713 192 gdbarch_deprecated_extract_struct_value_address_ftype *deprecated_extract_struct_value_address;
adf40b2e
JM
193 gdbarch_skip_prologue_ftype *skip_prologue;
194 gdbarch_inner_than_ftype *inner_than;
195 gdbarch_breakpoint_from_pc_ftype *breakpoint_from_pc;
a1131521 196 gdbarch_adjust_breakpoint_address_ftype *adjust_breakpoint_address;
917317f4
JM
197 gdbarch_memory_insert_breakpoint_ftype *memory_insert_breakpoint;
198 gdbarch_memory_remove_breakpoint_ftype *memory_remove_breakpoint;
adf40b2e 199 CORE_ADDR decr_pc_after_break;
782263ab 200 CORE_ADDR deprecated_function_start_offset;
123dc839 201 gdbarch_remote_register_number_ftype *remote_register_number;
b2756930 202 gdbarch_fetch_tls_load_module_address_ftype *fetch_tls_load_module_address;
adf40b2e 203 CORE_ADDR frame_args_skip;
12cc2063 204 gdbarch_unwind_pc_ftype *unwind_pc;
a9e5fdc2 205 gdbarch_unwind_sp_ftype *unwind_sp;
adf40b2e 206 gdbarch_frame_num_args_ftype *frame_num_args;
f27dd7fd 207 gdbarch_deprecated_stack_align_ftype *deprecated_stack_align;
dc604539 208 gdbarch_frame_align_ftype *frame_align;
88d89dbb 209 gdbarch_deprecated_reg_struct_has_addr_ftype *deprecated_reg_struct_has_addr;
192cb3d4 210 gdbarch_stabs_argument_has_addr_ftype *stabs_argument_has_addr;
8b148df9 211 int frame_red_zone_size;
f517ea4e 212 gdbarch_convert_from_func_ptr_addr_ftype *convert_from_func_ptr_addr;
875e1767 213 gdbarch_addr_bits_remove_ftype *addr_bits_remove;
181c1381 214 gdbarch_smash_text_address_ftype *smash_text_address;
64c4637f 215 gdbarch_software_single_step_ftype *software_single_step;
3352ef37 216 gdbarch_single_step_through_delay_ftype *single_step_through_delay;
2bf0cb65 217 gdbarch_print_insn_ftype *print_insn;
bdcd319a 218 gdbarch_skip_trampoline_code_ftype *skip_trampoline_code;
dea0c52f 219 gdbarch_skip_solib_resolver_ftype *skip_solib_resolver;
d50355b6 220 gdbarch_in_solib_return_trampoline_ftype *in_solib_return_trampoline;
c12260ac 221 gdbarch_in_function_epilogue_p_ftype *in_function_epilogue_p;
552c04a7 222 gdbarch_construct_inferior_arguments_ftype *construct_inferior_arguments;
a2cf933a
EZ
223 gdbarch_elf_make_msymbol_special_ftype *elf_make_msymbol_special;
224 gdbarch_coff_make_msymbol_special_ftype *coff_make_msymbol_special;
5720643c 225 const char * name_of_malloc;
c4ed33b9 226 int cannot_step_breakpoint;
f74fa174 227 int have_nonsteppable_watchpoint;
8b2dbe47
KB
228 gdbarch_address_class_type_flags_ftype *address_class_type_flags;
229 gdbarch_address_class_type_flags_to_name_ftype *address_class_type_flags_to_name;
230 gdbarch_address_class_name_to_type_flags_ftype *address_class_name_to_type_flags;
b59ff9d5 231 gdbarch_register_reggroup_p_ftype *register_reggroup_p;
143985b7 232 gdbarch_fetch_pointer_argument_ftype *fetch_pointer_argument;
6ce6d90f 233 gdbarch_regset_from_core_section_ftype *regset_from_core_section;
0d5de010
DJ
234 int vtable_function_descriptors;
235 int vbit_in_delta;
6d350bb5 236 gdbarch_skip_permanent_breakpoint_ftype *skip_permanent_breakpoint;
1c772458 237 gdbarch_overlay_update_ftype *overlay_update;
adf40b2e 238};
0f71a2f6
JM
239
240
241/* The default architecture uses host values (for want of a better
242 choice). */
243
244extern const struct bfd_arch_info bfd_default_arch_struct;
245
4b9b3959
AC
246struct gdbarch startup_gdbarch =
247{
76860b5f 248 1, /* Always initialized. */
aebd7893 249 NULL, /* The obstack. */
0f71a2f6 250 /* basic architecture information */
ec5cbaec
AC
251 &bfd_default_arch_struct, /* bfd_arch_info */
252 BFD_ENDIAN_BIG, /* byte_order */
253 GDB_OSABI_UNKNOWN, /* osabi */
424163ea 254 0, /* target_desc */
4b9b3959
AC
255 /* target specific vector and its dump routine */
256 NULL, NULL,
0f71a2f6
JM
257 /*per-architecture data-pointers and swap regions */
258 0, NULL, NULL,
259 /* Multi-arch values */
ec5cbaec
AC
260 8 * sizeof (short), /* short_bit */
261 8 * sizeof (int), /* int_bit */
262 8 * sizeof (long), /* long_bit */
263 8 * sizeof (LONGEST), /* long_long_bit */
264 8 * sizeof (float), /* float_bit */
456fcf94 265 0, /* float_format */
ec5cbaec 266 8 * sizeof (double), /* double_bit */
456fcf94 267 0, /* double_format */
ec5cbaec 268 8 * sizeof (long double), /* long_double_bit */
456fcf94 269 0, /* long_double_format */
ec5cbaec
AC
270 8 * sizeof (void*), /* ptr_bit */
271 8 * sizeof (void*), /* addr_bit */
272 8 * sizeof (void*), /* bfd_vma_bit */
273 1, /* char_signed */
274 0, /* read_pc */
275 0, /* write_pc */
ec5cbaec
AC
276 0, /* virtual_frame_pointer */
277 0, /* pseudo_register_read */
278 0, /* pseudo_register_write */
279 0, /* num_regs */
280 0, /* num_pseudo_regs */
281 -1, /* sp_regnum */
ec5cbaec
AC
282 -1, /* pc_regnum */
283 -1, /* ps_regnum */
284 0, /* fp0_regnum */
ec5cbaec
AC
285 0, /* stab_reg_to_regnum */
286 0, /* ecoff_reg_to_regnum */
287 0, /* dwarf_reg_to_regnum */
288 0, /* sdb_reg_to_regnum */
289 0, /* dwarf2_reg_to_regnum */
290 0, /* register_name */
9c04cab7 291 0, /* register_type */
f3be58bc 292 0, /* unwind_dummy_id */
f3be58bc 293 -1, /* deprecated_fp_regnum */
b8de8283 294 0, /* push_dummy_call */
b8de8283 295 0, /* deprecated_register_size */
ec5cbaec 296 0, /* call_dummy_location */
ec5cbaec 297 0, /* push_dummy_code */
b8de8283
AC
298 default_print_registers_info, /* print_registers_info */
299 0, /* print_float_info */
300 0, /* print_vector_info */
301 0, /* register_sim_regno */
b8de8283
AC
302 0, /* cannot_fetch_register */
303 0, /* cannot_store_register */
304 0, /* get_longjmp_target */
ec5cbaec 305 0, /* believe_pcc_promotion */
ec5cbaec
AC
306 0, /* convert_register_p */
307 0, /* register_to_value */
308 0, /* value_to_register */
9acbedc0 309 0, /* value_from_register */
ec5cbaec
AC
310 0, /* pointer_to_address */
311 0, /* address_to_pointer */
312 0, /* integer_to_address */
92ad9cd9 313 0, /* return_value */
ec5cbaec
AC
314 0, /* extract_return_value */
315 0, /* store_return_value */
b5622e8d 316 0, /* deprecated_use_struct_convention */
74055713 317 0, /* deprecated_extract_struct_value_address */
ec5cbaec 318 0, /* skip_prologue */
ec5cbaec
AC
319 0, /* inner_than */
320 0, /* breakpoint_from_pc */
a1131521 321 0, /* adjust_breakpoint_address */
ec5cbaec
AC
322 0, /* memory_insert_breakpoint */
323 0, /* memory_remove_breakpoint */
324 0, /* decr_pc_after_break */
782263ab 325 0, /* deprecated_function_start_offset */
123dc839 326 default_remote_register_number, /* remote_register_number */
b2756930 327 0, /* fetch_tls_load_module_address */
ec5cbaec 328 0, /* frame_args_skip */
ec5cbaec 329 0, /* unwind_pc */
a9e5fdc2 330 0, /* unwind_sp */
ec5cbaec 331 0, /* frame_num_args */
f27dd7fd 332 0, /* deprecated_stack_align */
ec5cbaec 333 0, /* frame_align */
88d89dbb 334 0, /* deprecated_reg_struct_has_addr */
192cb3d4 335 default_stabs_argument_has_addr, /* stabs_argument_has_addr */
8b148df9 336 0, /* frame_red_zone_size */
e2d0e7eb 337 convert_from_func_ptr_addr_identity, /* convert_from_func_ptr_addr */
ec5cbaec
AC
338 0, /* addr_bits_remove */
339 0, /* smash_text_address */
340 0, /* software_single_step */
3352ef37 341 0, /* single_step_through_delay */
ec5cbaec
AC
342 0, /* print_insn */
343 0, /* skip_trampoline_code */
4c8c40e6 344 generic_skip_solib_resolver, /* skip_solib_resolver */
ec5cbaec 345 0, /* in_solib_return_trampoline */
ec5cbaec
AC
346 generic_in_function_epilogue_p, /* in_function_epilogue_p */
347 construct_inferior_arguments, /* construct_inferior_arguments */
ec5cbaec
AC
348 0, /* elf_make_msymbol_special */
349 0, /* coff_make_msymbol_special */
350 "malloc", /* name_of_malloc */
351 0, /* cannot_step_breakpoint */
352 0, /* have_nonsteppable_watchpoint */
353 0, /* address_class_type_flags */
354 0, /* address_class_type_flags_to_name */
355 0, /* address_class_name_to_type_flags */
356 default_register_reggroup_p, /* register_reggroup_p */
357 0, /* fetch_pointer_argument */
6ce6d90f 358 0, /* regset_from_core_section */
0d5de010
DJ
359 0, /* vtable_function_descriptors */
360 0, /* vbit_in_delta */
6d350bb5 361 0, /* skip_permanent_breakpoint */
1c772458 362 0, /* overlay_update */
c0e8c252 363 /* startup_gdbarch() */
0f71a2f6 364};
4b9b3959 365
c0e8c252 366struct gdbarch *current_gdbarch = &startup_gdbarch;
0f71a2f6 367
66b43ecb 368/* Create a new ``struct gdbarch'' based on information provided by
0f71a2f6
JM
369 ``struct gdbarch_info''. */
370
371struct gdbarch *
104c1213
JM
372gdbarch_alloc (const struct gdbarch_info *info,
373 struct gdbarch_tdep *tdep)
0f71a2f6 374{
85de9627
AC
375 /* NOTE: The new architecture variable is named ``current_gdbarch''
376 so that macros such as TARGET_DOUBLE_BIT, when expanded, refer to
377 the current local architecture and not the previous global
378 architecture. This ensures that the new architectures initial
379 values are not influenced by the previous architecture. Once
380 everything is parameterised with gdbarch, this will go away. */
aebd7893
AC
381 struct gdbarch *current_gdbarch;
382
383 /* Create an obstack for allocating all the per-architecture memory,
384 then use that to allocate the architecture vector. */
385 struct obstack *obstack = XMALLOC (struct obstack);
386 obstack_init (obstack);
387 current_gdbarch = obstack_alloc (obstack, sizeof (*current_gdbarch));
85de9627 388 memset (current_gdbarch, 0, sizeof (*current_gdbarch));
aebd7893 389 current_gdbarch->obstack = obstack;
0f71a2f6 390
85de9627 391 alloc_gdbarch_data (current_gdbarch);
b3cc3077 392
85de9627 393 current_gdbarch->tdep = tdep;
0f71a2f6 394
85de9627
AC
395 current_gdbarch->bfd_arch_info = info->bfd_arch_info;
396 current_gdbarch->byte_order = info->byte_order;
4be87837 397 current_gdbarch->osabi = info->osabi;
424163ea 398 current_gdbarch->target_desc = info->target_desc;
0f71a2f6
JM
399
400 /* Force the explicit initialization of these. */
85de9627
AC
401 current_gdbarch->short_bit = 2*TARGET_CHAR_BIT;
402 current_gdbarch->int_bit = 4*TARGET_CHAR_BIT;
403 current_gdbarch->long_bit = 4*TARGET_CHAR_BIT;
404 current_gdbarch->long_long_bit = 2*TARGET_LONG_BIT;
405 current_gdbarch->float_bit = 4*TARGET_CHAR_BIT;
406 current_gdbarch->double_bit = 8*TARGET_CHAR_BIT;
17ef5d92 407 current_gdbarch->long_double_bit = 8*TARGET_CHAR_BIT;
85de9627
AC
408 current_gdbarch->ptr_bit = TARGET_INT_BIT;
409 current_gdbarch->bfd_vma_bit = TARGET_ARCHITECTURE->bits_per_address;
4e409299 410 current_gdbarch->char_signed = -1;
85de9627 411 current_gdbarch->write_pc = generic_target_write_pc;
85de9627
AC
412 current_gdbarch->virtual_frame_pointer = legacy_virtual_frame_pointer;
413 current_gdbarch->num_regs = -1;
414 current_gdbarch->sp_regnum = -1;
85de9627 415 current_gdbarch->pc_regnum = -1;
c2169756 416 current_gdbarch->ps_regnum = -1;
85de9627 417 current_gdbarch->fp0_regnum = -1;
85de9627
AC
418 current_gdbarch->stab_reg_to_regnum = no_op_reg_to_regnum;
419 current_gdbarch->ecoff_reg_to_regnum = no_op_reg_to_regnum;
420 current_gdbarch->dwarf_reg_to_regnum = no_op_reg_to_regnum;
421 current_gdbarch->sdb_reg_to_regnum = no_op_reg_to_regnum;
422 current_gdbarch->dwarf2_reg_to_regnum = no_op_reg_to_regnum;
f3be58bc 423 current_gdbarch->deprecated_fp_regnum = -1;
b99fa2d2 424 current_gdbarch->call_dummy_location = AT_ENTRY_POINT;
b8de8283
AC
425 current_gdbarch->print_registers_info = default_print_registers_info;
426 current_gdbarch->register_sim_regno = legacy_register_sim_regno;
427 current_gdbarch->cannot_fetch_register = cannot_register_not;
428 current_gdbarch->cannot_store_register = cannot_register_not;
a1f4a1b6 429 current_gdbarch->convert_register_p = generic_convert_register_p;
9acbedc0 430 current_gdbarch->value_from_register = default_value_from_register;
85de9627
AC
431 current_gdbarch->pointer_to_address = unsigned_pointer_to_address;
432 current_gdbarch->address_to_pointer = unsigned_address_to_pointer;
750eb019 433 current_gdbarch->return_value = legacy_return_value;
b5622e8d 434 current_gdbarch->deprecated_use_struct_convention = generic_use_struct_convention;
85de9627
AC
435 current_gdbarch->memory_insert_breakpoint = default_memory_insert_breakpoint;
436 current_gdbarch->memory_remove_breakpoint = default_memory_remove_breakpoint;
123dc839 437 current_gdbarch->remote_register_number = default_remote_register_number;
192cb3d4 438 current_gdbarch->stabs_argument_has_addr = default_stabs_argument_has_addr;
e2d0e7eb 439 current_gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr_identity;
85de9627 440 current_gdbarch->addr_bits_remove = core_addr_identity;
181c1381 441 current_gdbarch->smash_text_address = core_addr_identity;
85de9627 442 current_gdbarch->skip_trampoline_code = generic_skip_trampoline_code;
dea0c52f 443 current_gdbarch->skip_solib_resolver = generic_skip_solib_resolver;
d50355b6 444 current_gdbarch->in_solib_return_trampoline = generic_in_solib_return_trampoline;
c12260ac 445 current_gdbarch->in_function_epilogue_p = generic_in_function_epilogue_p;
552c04a7 446 current_gdbarch->construct_inferior_arguments = construct_inferior_arguments;
a2cf933a
EZ
447 current_gdbarch->elf_make_msymbol_special = default_elf_make_msymbol_special;
448 current_gdbarch->coff_make_msymbol_special = default_coff_make_msymbol_special;
5720643c 449 current_gdbarch->name_of_malloc = "malloc";
b59ff9d5 450 current_gdbarch->register_reggroup_p = default_register_reggroup_p;
0f71a2f6
JM
451 /* gdbarch_alloc() */
452
85de9627 453 return current_gdbarch;
0f71a2f6
JM
454}
455
456
aebd7893
AC
457/* Allocate extra space using the per-architecture obstack. */
458
459void *
460gdbarch_obstack_zalloc (struct gdbarch *arch, long size)
461{
462 void *data = obstack_alloc (arch->obstack, size);
463 memset (data, 0, size);
464 return data;
465}
466
467
058f20d5
JB
468/* Free a gdbarch struct. This should never happen in normal
469 operation --- once you've created a gdbarch, you keep it around.
470 However, if an architecture's init function encounters an error
471 building the structure, it may need to clean up a partially
472 constructed gdbarch. */
4b9b3959 473
058f20d5
JB
474void
475gdbarch_free (struct gdbarch *arch)
476{
aebd7893 477 struct obstack *obstack;
95160752 478 gdb_assert (arch != NULL);
aebd7893
AC
479 gdb_assert (!arch->initialized_p);
480 obstack = arch->obstack;
481 obstack_free (obstack, 0); /* Includes the ARCH. */
482 xfree (obstack);
058f20d5
JB
483}
484
485
db446970
AC
486/* Ensure that all values in a GDBARCH are reasonable. */
487
488/* NOTE/WARNING: The parameter is called ``current_gdbarch'' so that it
489 just happens to match the global variable ``current_gdbarch''. That
490 way macros refering to that variable get the local and not the global
491 version - ulgh. Once everything is parameterised with gdbarch, this
492 will go away. */
0f71a2f6 493
0f71a2f6 494static void
db446970 495verify_gdbarch (struct gdbarch *current_gdbarch)
0f71a2f6 496{
f16a1923
AC
497 struct ui_file *log;
498 struct cleanup *cleanups;
499 long dummy;
500 char *buf;
f16a1923
AC
501 log = mem_fileopen ();
502 cleanups = make_cleanup_ui_file_delete (log);
0f71a2f6 503 /* fundamental */
db446970 504 if (current_gdbarch->byte_order == BFD_ENDIAN_UNKNOWN)
f16a1923 505 fprintf_unfiltered (log, "\n\tbyte-order");
db446970 506 if (current_gdbarch->bfd_arch_info == NULL)
f16a1923 507 fprintf_unfiltered (log, "\n\tbfd_arch_info");
0f71a2f6 508 /* Check those that need to be defined for the given multi-arch level. */
66b43ecb
AC
509 /* Skip verify of short_bit, invalid_p == 0 */
510 /* Skip verify of int_bit, invalid_p == 0 */
511 /* Skip verify of long_bit, invalid_p == 0 */
512 /* Skip verify of long_long_bit, invalid_p == 0 */
513 /* Skip verify of float_bit, invalid_p == 0 */
456fcf94 514 if (current_gdbarch->float_format == 0)
8da61cc4 515 current_gdbarch->float_format = floatformats_ieee_single;
66b43ecb 516 /* Skip verify of double_bit, invalid_p == 0 */
456fcf94 517 if (current_gdbarch->double_format == 0)
8da61cc4 518 current_gdbarch->double_format = floatformats_ieee_double;
66b43ecb 519 /* Skip verify of long_double_bit, invalid_p == 0 */
456fcf94 520 if (current_gdbarch->long_double_format == 0)
8da61cc4 521 current_gdbarch->long_double_format = floatformats_ieee_double;
66b43ecb 522 /* Skip verify of ptr_bit, invalid_p == 0 */
db446970
AC
523 if (current_gdbarch->addr_bit == 0)
524 current_gdbarch->addr_bit = TARGET_PTR_BIT;
c0e8c252 525 /* Skip verify of bfd_vma_bit, invalid_p == 0 */
db446970
AC
526 if (current_gdbarch->char_signed == -1)
527 current_gdbarch->char_signed = 1;
cde9ea48 528 /* Skip verify of read_pc, has predicate */
be8dfb87 529 /* Skip verify of write_pc, invalid_p == 0 */
39d4ef09 530 /* Skip verify of virtual_frame_pointer, invalid_p == 0 */
d8124050
AC
531 /* Skip verify of pseudo_register_read, has predicate */
532 /* Skip verify of pseudo_register_write, has predicate */
4d60522e 533 if (current_gdbarch->num_regs == -1)
f16a1923 534 fprintf_unfiltered (log, "\n\tnum_regs");
0aba1244 535 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
1200cd6e 536 /* Skip verify of sp_regnum, invalid_p == 0 */
1200cd6e 537 /* Skip verify of pc_regnum, invalid_p == 0 */
c2169756 538 /* Skip verify of ps_regnum, invalid_p == 0 */
60054393 539 /* Skip verify of fp0_regnum, invalid_p == 0 */
88c72b7d
AC
540 /* Skip verify of stab_reg_to_regnum, invalid_p == 0 */
541 /* Skip verify of ecoff_reg_to_regnum, invalid_p == 0 */
542 /* Skip verify of dwarf_reg_to_regnum, invalid_p == 0 */
543 /* Skip verify of sdb_reg_to_regnum, invalid_p == 0 */
544 /* Skip verify of dwarf2_reg_to_regnum, invalid_p == 0 */
9c04cab7 545 /* Skip verify of register_type, has predicate */
f3be58bc 546 /* Skip verify of unwind_dummy_id, has predicate */
f3be58bc 547 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
b8de8283 548 /* Skip verify of push_dummy_call, has predicate */
b8de8283 549 /* Skip verify of call_dummy_location, invalid_p == 0 */
b8de8283 550 /* Skip verify of push_dummy_code, has predicate */
0ab7a791 551 /* Skip verify of print_registers_info, invalid_p == 0 */
23e3a7ac 552 /* Skip verify of print_float_info, has predicate */
e76f1f2e 553 /* Skip verify of print_vector_info, has predicate */
7c7651b2 554 /* Skip verify of register_sim_regno, invalid_p == 0 */
01fb7433
AC
555 /* Skip verify of cannot_fetch_register, invalid_p == 0 */
556 /* Skip verify of cannot_store_register, invalid_p == 0 */
9df628e0 557 /* Skip verify of get_longjmp_target, has predicate */
13d01224 558 /* Skip verify of convert_register_p, invalid_p == 0 */
9acbedc0 559 /* Skip verify of value_from_register, invalid_p == 0 */
4478b372
JB
560 /* Skip verify of pointer_to_address, invalid_p == 0 */
561 /* Skip verify of address_to_pointer, invalid_p == 0 */
fc0c74b1 562 /* Skip verify of integer_to_address, has predicate */
92ad9cd9 563 /* Skip verify of return_value, has predicate */
b5622e8d 564 /* Skip verify of deprecated_use_struct_convention, invalid_p == 0 */
74055713 565 /* Skip verify of deprecated_extract_struct_value_address, has predicate */
4d60522e 566 if (current_gdbarch->skip_prologue == 0)
f16a1923 567 fprintf_unfiltered (log, "\n\tskip_prologue");
4d60522e 568 if (current_gdbarch->inner_than == 0)
f16a1923 569 fprintf_unfiltered (log, "\n\tinner_than");
4d60522e 570 if (current_gdbarch->breakpoint_from_pc == 0)
aaab4dba 571 fprintf_unfiltered (log, "\n\tbreakpoint_from_pc");
a1131521 572 /* Skip verify of adjust_breakpoint_address, has predicate */
c0e8c252
AC
573 /* Skip verify of memory_insert_breakpoint, invalid_p == 0 */
574 /* Skip verify of memory_remove_breakpoint, invalid_p == 0 */
71bd6bd4 575 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
782263ab 576 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
123dc839 577 /* Skip verify of remote_register_number, invalid_p == 0 */
b2756930 578 /* Skip verify of fetch_tls_load_module_address, has predicate */
5867a2fb 579 /* Skip verify of frame_args_skip, invalid_p == 0 */
12cc2063 580 /* Skip verify of unwind_pc, has predicate */
a9e5fdc2 581 /* Skip verify of unwind_sp, has predicate */
983a287a 582 /* Skip verify of frame_num_args, has predicate */
f27dd7fd 583 /* Skip verify of deprecated_stack_align, has predicate */
dc604539 584 /* Skip verify of frame_align, has predicate */
88d89dbb 585 /* Skip verify of deprecated_reg_struct_has_addr, has predicate */
192cb3d4 586 /* Skip verify of stabs_argument_has_addr, invalid_p == 0 */
f517ea4e 587 /* Skip verify of convert_from_func_ptr_addr, invalid_p == 0 */
875e1767 588 /* Skip verify of addr_bits_remove, invalid_p == 0 */
181c1381 589 /* Skip verify of smash_text_address, invalid_p == 0 */
64c4637f 590 /* Skip verify of software_single_step, has predicate */
3352ef37 591 /* Skip verify of single_step_through_delay, has predicate */
4d60522e 592 if (current_gdbarch->print_insn == 0)
f6c40618 593 fprintf_unfiltered (log, "\n\tprint_insn");
bdcd319a 594 /* Skip verify of skip_trampoline_code, invalid_p == 0 */
dea0c52f 595 /* Skip verify of skip_solib_resolver, invalid_p == 0 */
d50355b6 596 /* Skip verify of in_solib_return_trampoline, invalid_p == 0 */
c12260ac 597 /* Skip verify of in_function_epilogue_p, invalid_p == 0 */
552c04a7 598 /* Skip verify of construct_inferior_arguments, invalid_p == 0 */
a2cf933a
EZ
599 /* Skip verify of elf_make_msymbol_special, invalid_p == 0 */
600 /* Skip verify of coff_make_msymbol_special, invalid_p == 0 */
5720643c 601 /* Skip verify of name_of_malloc, invalid_p == 0 */
c4ed33b9 602 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
f74fa174 603 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
8b2dbe47
KB
604 /* Skip verify of address_class_type_flags, has predicate */
605 /* Skip verify of address_class_type_flags_to_name, has predicate */
606 /* Skip verify of address_class_name_to_type_flags, has predicate */
7e20f3fb 607 /* Skip verify of register_reggroup_p, invalid_p == 0 */
143985b7 608 /* Skip verify of fetch_pointer_argument, has predicate */
6ce6d90f 609 /* Skip verify of regset_from_core_section, has predicate */
0d5de010
DJ
610 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
611 /* Skip verify of vbit_in_delta, invalid_p == 0 */
6d350bb5 612 /* Skip verify of skip_permanent_breakpoint, has predicate */
1c772458 613 /* Skip verify of overlay_update, has predicate */
f16a1923
AC
614 buf = ui_file_xstrdup (log, &dummy);
615 make_cleanup (xfree, buf);
616 if (strlen (buf) > 0)
617 internal_error (__FILE__, __LINE__,
e2e0b3e5 618 _("verify_gdbarch: the following are invalid ...%s"),
f16a1923
AC
619 buf);
620 do_cleanups (cleanups);
0f71a2f6
JM
621}
622
623
624/* Print out the details of the current architecture. */
625
4b9b3959
AC
626/* NOTE/WARNING: The parameter is called ``current_gdbarch'' so that it
627 just happens to match the global variable ``current_gdbarch''. That
628 way macros refering to that variable get the local and not the global
629 version - ulgh. Once everything is parameterised with gdbarch, this
630 will go away. */
631
0f71a2f6 632void
db446970 633gdbarch_dump (struct gdbarch *current_gdbarch, struct ui_file *file)
0f71a2f6 634{
b78960be
AC
635 const char *gdb_xm_file = "<not-defined>";
636 const char *gdb_nm_file = "<not-defined>";
637 const char *gdb_tm_file = "<not-defined>";
638#if defined (GDB_XM_FILE)
639 gdb_xm_file = GDB_XM_FILE;
640#endif
641 fprintf_unfiltered (file,
642 "gdbarch_dump: GDB_XM_FILE = %s\n",
643 gdb_xm_file);
644#if defined (GDB_NM_FILE)
645 gdb_nm_file = GDB_NM_FILE;
646#endif
647 fprintf_unfiltered (file,
648 "gdbarch_dump: GDB_NM_FILE = %s\n",
649 gdb_nm_file);
650#if defined (GDB_TM_FILE)
651 gdb_tm_file = GDB_TM_FILE;
652#endif
4b9b3959 653 fprintf_unfiltered (file,
b78960be
AC
654 "gdbarch_dump: GDB_TM_FILE = %s\n",
655 gdb_tm_file);
a2428dbe 656#ifdef TARGET_ADDR_BIT
e2d0e7eb 657 fprintf_unfiltered (file,
a2428dbe
AC
658 "gdbarch_dump: TARGET_ADDR_BIT # %s\n",
659 XSTRING (TARGET_ADDR_BIT));
a2428dbe 660#endif
48f7351b
AC
661 fprintf_unfiltered (file,
662 "gdbarch_dump: addr_bit = %s\n",
663 paddr_d (current_gdbarch->addr_bit));
48f7351b
AC
664 fprintf_unfiltered (file,
665 "gdbarch_dump: addr_bits_remove = <0x%lx>\n",
666 (long) current_gdbarch->addr_bits_remove);
7996bcec
AC
667 fprintf_unfiltered (file,
668 "gdbarch_dump: gdbarch_address_class_name_to_type_flags_p() = %d\n",
669 gdbarch_address_class_name_to_type_flags_p (current_gdbarch));
670 fprintf_unfiltered (file,
48f7351b 671 "gdbarch_dump: address_class_name_to_type_flags = <0x%lx>\n",
7996bcec 672 (long) current_gdbarch->address_class_name_to_type_flags);
48f7351b
AC
673 fprintf_unfiltered (file,
674 "gdbarch_dump: gdbarch_address_class_type_flags_p() = %d\n",
675 gdbarch_address_class_type_flags_p (current_gdbarch));
48f7351b
AC
676 fprintf_unfiltered (file,
677 "gdbarch_dump: address_class_type_flags = <0x%lx>\n",
678 (long) current_gdbarch->address_class_type_flags);
7996bcec
AC
679 fprintf_unfiltered (file,
680 "gdbarch_dump: gdbarch_address_class_type_flags_to_name_p() = %d\n",
681 gdbarch_address_class_type_flags_to_name_p (current_gdbarch));
682 fprintf_unfiltered (file,
48f7351b 683 "gdbarch_dump: address_class_type_flags_to_name = <0x%lx>\n",
7996bcec 684 (long) current_gdbarch->address_class_type_flags_to_name);
48f7351b
AC
685 fprintf_unfiltered (file,
686 "gdbarch_dump: address_to_pointer = <0x%lx>\n",
687 (long) current_gdbarch->address_to_pointer);
a1131521
KB
688 fprintf_unfiltered (file,
689 "gdbarch_dump: gdbarch_adjust_breakpoint_address_p() = %d\n",
690 gdbarch_adjust_breakpoint_address_p (current_gdbarch));
691 fprintf_unfiltered (file,
48f7351b 692 "gdbarch_dump: adjust_breakpoint_address = <0x%lx>\n",
a1131521 693 (long) current_gdbarch->adjust_breakpoint_address);
08e45a40 694#ifdef BELIEVE_PCC_PROMOTION
4b9b3959 695 fprintf_unfiltered (file,
08e45a40
AC
696 "gdbarch_dump: BELIEVE_PCC_PROMOTION # %s\n",
697 XSTRING (BELIEVE_PCC_PROMOTION));
4b9b3959 698#endif
48f7351b
AC
699 fprintf_unfiltered (file,
700 "gdbarch_dump: believe_pcc_promotion = %s\n",
701 paddr_d (current_gdbarch->believe_pcc_promotion));
a2428dbe
AC
702#ifdef TARGET_ARCHITECTURE
703 fprintf_unfiltered (file,
704 "gdbarch_dump: TARGET_ARCHITECTURE # %s\n",
705 XSTRING (TARGET_ARCHITECTURE));
48f7351b 706#endif
283354d8 707 fprintf_unfiltered (file,
48f7351b 708 "gdbarch_dump: bfd_arch_info = %s\n",
283354d8 709 TARGET_ARCHITECTURE->printable_name);
a2428dbe
AC
710#ifdef TARGET_BFD_VMA_BIT
711 fprintf_unfiltered (file,
712 "gdbarch_dump: TARGET_BFD_VMA_BIT # %s\n",
713 XSTRING (TARGET_BFD_VMA_BIT));
a2428dbe 714#endif
48f7351b
AC
715 fprintf_unfiltered (file,
716 "gdbarch_dump: bfd_vma_bit = %s\n",
717 paddr_d (current_gdbarch->bfd_vma_bit));
08e45a40 718#ifdef BREAKPOINT_FROM_PC
4b9b3959 719 fprintf_unfiltered (file,
08e45a40
AC
720 "gdbarch_dump: %s # %s\n",
721 "BREAKPOINT_FROM_PC(pcptr, lenptr)",
722 XSTRING (BREAKPOINT_FROM_PC (pcptr, lenptr)));
4b9b3959 723#endif
48f7351b
AC
724 fprintf_unfiltered (file,
725 "gdbarch_dump: breakpoint_from_pc = <0x%lx>\n",
726 (long) current_gdbarch->breakpoint_from_pc);
48f7351b
AC
727 fprintf_unfiltered (file,
728 "gdbarch_dump: byte_order = %s\n",
729 paddr_d (current_gdbarch->byte_order));
48f7351b
AC
730 fprintf_unfiltered (file,
731 "gdbarch_dump: call_dummy_location = %s\n",
732 paddr_d (current_gdbarch->call_dummy_location));
48f7351b
AC
733 fprintf_unfiltered (file,
734 "gdbarch_dump: cannot_fetch_register = <0x%lx>\n",
735 (long) current_gdbarch->cannot_fetch_register);
48f7351b
AC
736 fprintf_unfiltered (file,
737 "gdbarch_dump: cannot_step_breakpoint = %s\n",
738 paddr_d (current_gdbarch->cannot_step_breakpoint));
48f7351b
AC
739 fprintf_unfiltered (file,
740 "gdbarch_dump: cannot_store_register = <0x%lx>\n",
741 (long) current_gdbarch->cannot_store_register);
48f7351b
AC
742 fprintf_unfiltered (file,
743 "gdbarch_dump: char_signed = %s\n",
744 paddr_d (current_gdbarch->char_signed));
7996bcec 745 fprintf_unfiltered (file,
48f7351b
AC
746 "gdbarch_dump: coff_make_msymbol_special = <0x%lx>\n",
747 (long) current_gdbarch->coff_make_msymbol_special);
748 fprintf_unfiltered (file,
749 "gdbarch_dump: construct_inferior_arguments = <0x%lx>\n",
7996bcec 750 (long) current_gdbarch->construct_inferior_arguments);
a2428dbe 751 fprintf_unfiltered (file,
48f7351b 752 "gdbarch_dump: convert_from_func_ptr_addr = <0x%lx>\n",
a2428dbe 753 (long) current_gdbarch->convert_from_func_ptr_addr);
13d01224
AC
754#ifdef CONVERT_REGISTER_P
755 fprintf_unfiltered (file,
756 "gdbarch_dump: %s # %s\n",
ff2e87ac
AC
757 "CONVERT_REGISTER_P(regnum, type)",
758 XSTRING (CONVERT_REGISTER_P (regnum, type)));
13d01224 759#endif
48f7351b
AC
760 fprintf_unfiltered (file,
761 "gdbarch_dump: convert_register_p = <0x%lx>\n",
762 (long) current_gdbarch->convert_register_p);
48f7351b
AC
763 fprintf_unfiltered (file,
764 "gdbarch_dump: decr_pc_after_break = 0x%s\n",
765 paddr_nz (current_gdbarch->decr_pc_after_break));
74055713
AC
766#ifdef DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS_P
767 fprintf_unfiltered (file,
768 "gdbarch_dump: %s # %s\n",
769 "DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS_P()",
770 XSTRING (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS_P ()));
74055713 771#endif
48f7351b
AC
772 fprintf_unfiltered (file,
773 "gdbarch_dump: gdbarch_deprecated_extract_struct_value_address_p() = %d\n",
774 gdbarch_deprecated_extract_struct_value_address_p (current_gdbarch));
74055713
AC
775#ifdef DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS
776 fprintf_unfiltered (file,
777 "gdbarch_dump: %s # %s\n",
778 "DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS(regcache)",
779 XSTRING (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS (regcache)));
74055713 780#endif
48f7351b
AC
781 fprintf_unfiltered (file,
782 "gdbarch_dump: deprecated_extract_struct_value_address = <0x%lx>\n",
783 (long) current_gdbarch->deprecated_extract_struct_value_address);
0ba6dca9
AC
784#ifdef DEPRECATED_FP_REGNUM
785 fprintf_unfiltered (file,
786 "gdbarch_dump: DEPRECATED_FP_REGNUM # %s\n",
787 XSTRING (DEPRECATED_FP_REGNUM));
0ba6dca9 788#endif
48f7351b
AC
789 fprintf_unfiltered (file,
790 "gdbarch_dump: deprecated_fp_regnum = %s\n",
791 paddr_d (current_gdbarch->deprecated_fp_regnum));
782263ab
AC
792#ifdef DEPRECATED_FUNCTION_START_OFFSET
793 fprintf_unfiltered (file,
794 "gdbarch_dump: DEPRECATED_FUNCTION_START_OFFSET # %s\n",
795 XSTRING (DEPRECATED_FUNCTION_START_OFFSET));
782263ab 796#endif
48f7351b
AC
797 fprintf_unfiltered (file,
798 "gdbarch_dump: deprecated_function_start_offset = 0x%s\n",
799 paddr_nz (current_gdbarch->deprecated_function_start_offset));
a2428dbe
AC
800#ifdef DEPRECATED_REG_STRUCT_HAS_ADDR_P
801 fprintf_unfiltered (file,
802 "gdbarch_dump: %s # %s\n",
803 "DEPRECATED_REG_STRUCT_HAS_ADDR_P()",
804 XSTRING (DEPRECATED_REG_STRUCT_HAS_ADDR_P ()));
a2428dbe 805#endif
48f7351b
AC
806 fprintf_unfiltered (file,
807 "gdbarch_dump: gdbarch_deprecated_reg_struct_has_addr_p() = %d\n",
808 gdbarch_deprecated_reg_struct_has_addr_p (current_gdbarch));
a2428dbe
AC
809#ifdef DEPRECATED_REG_STRUCT_HAS_ADDR
810 fprintf_unfiltered (file,
811 "gdbarch_dump: %s # %s\n",
812 "DEPRECATED_REG_STRUCT_HAS_ADDR(gcc_p, type)",
813 XSTRING (DEPRECATED_REG_STRUCT_HAS_ADDR (gcc_p, type)));
a2428dbe 814#endif
48f7351b
AC
815 fprintf_unfiltered (file,
816 "gdbarch_dump: deprecated_reg_struct_has_addr = <0x%lx>\n",
817 (long) current_gdbarch->deprecated_reg_struct_has_addr);
b1e29e33
AC
818#ifdef DEPRECATED_REGISTER_SIZE
819 fprintf_unfiltered (file,
820 "gdbarch_dump: DEPRECATED_REGISTER_SIZE # %s\n",
821 XSTRING (DEPRECATED_REGISTER_SIZE));
b1e29e33 822#endif
48f7351b
AC
823 fprintf_unfiltered (file,
824 "gdbarch_dump: deprecated_register_size = %s\n",
825 paddr_d (current_gdbarch->deprecated_register_size));
f27dd7fd
AC
826#ifdef DEPRECATED_STACK_ALIGN_P
827 fprintf_unfiltered (file,
828 "gdbarch_dump: %s # %s\n",
829 "DEPRECATED_STACK_ALIGN_P()",
830 XSTRING (DEPRECATED_STACK_ALIGN_P ()));
f27dd7fd 831#endif
48f7351b
AC
832 fprintf_unfiltered (file,
833 "gdbarch_dump: gdbarch_deprecated_stack_align_p() = %d\n",
834 gdbarch_deprecated_stack_align_p (current_gdbarch));
f27dd7fd
AC
835#ifdef DEPRECATED_STACK_ALIGN
836 fprintf_unfiltered (file,
837 "gdbarch_dump: %s # %s\n",
838 "DEPRECATED_STACK_ALIGN(sp)",
839 XSTRING (DEPRECATED_STACK_ALIGN (sp)));
f27dd7fd 840#endif
48f7351b
AC
841 fprintf_unfiltered (file,
842 "gdbarch_dump: deprecated_stack_align = <0x%lx>\n",
843 (long) current_gdbarch->deprecated_stack_align);
b5622e8d
AC
844#ifdef DEPRECATED_USE_STRUCT_CONVENTION
845 fprintf_unfiltered (file,
846 "gdbarch_dump: %s # %s\n",
847 "DEPRECATED_USE_STRUCT_CONVENTION(gcc_p, value_type)",
848 XSTRING (DEPRECATED_USE_STRUCT_CONVENTION (gcc_p, value_type)));
b5622e8d 849#endif
48f7351b
AC
850 fprintf_unfiltered (file,
851 "gdbarch_dump: deprecated_use_struct_convention = <0x%lx>\n",
852 (long) current_gdbarch->deprecated_use_struct_convention);
a2428dbe
AC
853#ifdef TARGET_DOUBLE_BIT
854 fprintf_unfiltered (file,
855 "gdbarch_dump: TARGET_DOUBLE_BIT # %s\n",
856 XSTRING (TARGET_DOUBLE_BIT));
a2428dbe 857#endif
48f7351b
AC
858 fprintf_unfiltered (file,
859 "gdbarch_dump: double_bit = %s\n",
860 paddr_d (current_gdbarch->double_bit));
a2428dbe
AC
861#ifdef TARGET_DOUBLE_FORMAT
862 fprintf_unfiltered (file,
863 "gdbarch_dump: TARGET_DOUBLE_FORMAT # %s\n",
864 XSTRING (TARGET_DOUBLE_FORMAT));
48f7351b 865#endif
a2428dbe 866 fprintf_unfiltered (file,
48f7351b 867 "gdbarch_dump: double_format = %s\n",
456fcf94 868 pformat (current_gdbarch->double_format));
08e45a40 869#ifdef DWARF2_REG_TO_REGNUM
4b9b3959 870 fprintf_unfiltered (file,
08e45a40
AC
871 "gdbarch_dump: %s # %s\n",
872 "DWARF2_REG_TO_REGNUM(dwarf2_regnr)",
873 XSTRING (DWARF2_REG_TO_REGNUM (dwarf2_regnr)));
4b9b3959 874#endif
48f7351b
AC
875 fprintf_unfiltered (file,
876 "gdbarch_dump: dwarf2_reg_to_regnum = <0x%lx>\n",
877 (long) current_gdbarch->dwarf2_reg_to_regnum);
08e45a40 878#ifdef DWARF_REG_TO_REGNUM
88c72b7d
AC
879 fprintf_unfiltered (file,
880 "gdbarch_dump: %s # %s\n",
08e45a40
AC
881 "DWARF_REG_TO_REGNUM(dwarf_regnr)",
882 XSTRING (DWARF_REG_TO_REGNUM (dwarf_regnr)));
88c72b7d 883#endif
48f7351b
AC
884 fprintf_unfiltered (file,
885 "gdbarch_dump: dwarf_reg_to_regnum = <0x%lx>\n",
886 (long) current_gdbarch->dwarf_reg_to_regnum);
88c72b7d
AC
887#ifdef ECOFF_REG_TO_REGNUM
888 fprintf_unfiltered (file,
889 "gdbarch_dump: %s # %s\n",
890 "ECOFF_REG_TO_REGNUM(ecoff_regnr)",
891 XSTRING (ECOFF_REG_TO_REGNUM (ecoff_regnr)));
892#endif
48f7351b
AC
893 fprintf_unfiltered (file,
894 "gdbarch_dump: ecoff_reg_to_regnum = <0x%lx>\n",
895 (long) current_gdbarch->ecoff_reg_to_regnum);
48f7351b
AC
896 fprintf_unfiltered (file,
897 "gdbarch_dump: elf_make_msymbol_special = <0x%lx>\n",
898 (long) current_gdbarch->elf_make_msymbol_special);
049ee0e4 899#ifdef EXTRACT_RETURN_VALUE
049ee0e4
AC
900 fprintf_unfiltered (file,
901 "gdbarch_dump: %s # %s\n",
902 "EXTRACT_RETURN_VALUE(type, regcache, valbuf)",
903 XSTRING (EXTRACT_RETURN_VALUE (type, regcache, valbuf)));
049ee0e4 904#endif
48f7351b
AC
905 fprintf_unfiltered (file,
906 "gdbarch_dump: extract_return_value = <0x%lx>\n",
907 (long) current_gdbarch->extract_return_value);
48f7351b
AC
908 fprintf_unfiltered (file,
909 "gdbarch_dump: gdbarch_fetch_pointer_argument_p() = %d\n",
910 gdbarch_fetch_pointer_argument_p (current_gdbarch));
48f7351b
AC
911 fprintf_unfiltered (file,
912 "gdbarch_dump: fetch_pointer_argument = <0x%lx>\n",
913 (long) current_gdbarch->fetch_pointer_argument);
b2756930
KB
914 fprintf_unfiltered (file,
915 "gdbarch_dump: gdbarch_fetch_tls_load_module_address_p() = %d\n",
916 gdbarch_fetch_tls_load_module_address_p (current_gdbarch));
b2756930
KB
917 fprintf_unfiltered (file,
918 "gdbarch_dump: fetch_tls_load_module_address = <0x%lx>\n",
919 (long) current_gdbarch->fetch_tls_load_module_address);
a2428dbe
AC
920#ifdef TARGET_FLOAT_BIT
921 fprintf_unfiltered (file,
922 "gdbarch_dump: TARGET_FLOAT_BIT # %s\n",
923 XSTRING (TARGET_FLOAT_BIT));
a2428dbe 924#endif
48f7351b
AC
925 fprintf_unfiltered (file,
926 "gdbarch_dump: float_bit = %s\n",
927 paddr_d (current_gdbarch->float_bit));
a2428dbe
AC
928#ifdef TARGET_FLOAT_FORMAT
929 fprintf_unfiltered (file,
930 "gdbarch_dump: TARGET_FLOAT_FORMAT # %s\n",
931 XSTRING (TARGET_FLOAT_FORMAT));
48f7351b 932#endif
a2428dbe 933 fprintf_unfiltered (file,
48f7351b 934 "gdbarch_dump: float_format = %s\n",
456fcf94 935 pformat (current_gdbarch->float_format));
08e45a40 936#ifdef FP0_REGNUM
4b9b3959 937 fprintf_unfiltered (file,
08e45a40
AC
938 "gdbarch_dump: FP0_REGNUM # %s\n",
939 XSTRING (FP0_REGNUM));
4b9b3959 940#endif
48f7351b
AC
941 fprintf_unfiltered (file,
942 "gdbarch_dump: fp0_regnum = %s\n",
943 paddr_d (current_gdbarch->fp0_regnum));
a2428dbe
AC
944 fprintf_unfiltered (file,
945 "gdbarch_dump: gdbarch_frame_align_p() = %d\n",
946 gdbarch_frame_align_p (current_gdbarch));
947 fprintf_unfiltered (file,
48f7351b 948 "gdbarch_dump: frame_align = <0x%lx>\n",
a2428dbe 949 (long) current_gdbarch->frame_align);
48f7351b
AC
950 fprintf_unfiltered (file,
951 "gdbarch_dump: frame_args_skip = 0x%s\n",
952 paddr_nz (current_gdbarch->frame_args_skip));
48f7351b
AC
953 fprintf_unfiltered (file,
954 "gdbarch_dump: gdbarch_frame_num_args_p() = %d\n",
955 gdbarch_frame_num_args_p (current_gdbarch));
48f7351b
AC
956 fprintf_unfiltered (file,
957 "gdbarch_dump: frame_num_args = <0x%lx>\n",
958 (long) current_gdbarch->frame_num_args);
48f7351b
AC
959 fprintf_unfiltered (file,
960 "gdbarch_dump: frame_red_zone_size = %s\n",
961 paddr_d (current_gdbarch->frame_red_zone_size));
48f7351b
AC
962 fprintf_unfiltered (file,
963 "gdbarch_dump: gdbarch_get_longjmp_target_p() = %d\n",
964 gdbarch_get_longjmp_target_p (current_gdbarch));
48f7351b
AC
965 fprintf_unfiltered (file,
966 "gdbarch_dump: get_longjmp_target = <0x%lx>\n",
967 (long) current_gdbarch->get_longjmp_target);
a2428dbe 968 fprintf_unfiltered (file,
48f7351b
AC
969 "gdbarch_dump: have_nonsteppable_watchpoint = %s\n",
970 paddr_d (current_gdbarch->have_nonsteppable_watchpoint));
971 fprintf_unfiltered (file,
972 "gdbarch_dump: in_function_epilogue_p = <0x%lx>\n",
a2428dbe 973 (long) current_gdbarch->in_function_epilogue_p);
a2428dbe 974#ifdef IN_SOLIB_RETURN_TRAMPOLINE
1e9f55d0
AC
975 fprintf_unfiltered (file,
976 "gdbarch_dump: %s # %s\n",
a2428dbe
AC
977 "IN_SOLIB_RETURN_TRAMPOLINE(pc, name)",
978 XSTRING (IN_SOLIB_RETURN_TRAMPOLINE (pc, name)));
a2428dbe 979#endif
48f7351b
AC
980 fprintf_unfiltered (file,
981 "gdbarch_dump: in_solib_return_trampoline = <0x%lx>\n",
982 (long) current_gdbarch->in_solib_return_trampoline);
48f7351b
AC
983 fprintf_unfiltered (file,
984 "gdbarch_dump: inner_than = <0x%lx>\n",
985 (long) current_gdbarch->inner_than);
a2428dbe
AC
986#ifdef TARGET_INT_BIT
987 fprintf_unfiltered (file,
988 "gdbarch_dump: TARGET_INT_BIT # %s\n",
989 XSTRING (TARGET_INT_BIT));
a2428dbe 990#endif
48f7351b
AC
991 fprintf_unfiltered (file,
992 "gdbarch_dump: int_bit = %s\n",
993 paddr_d (current_gdbarch->int_bit));
48f7351b
AC
994 fprintf_unfiltered (file,
995 "gdbarch_dump: gdbarch_integer_to_address_p() = %d\n",
996 gdbarch_integer_to_address_p (current_gdbarch));
48f7351b
AC
997 fprintf_unfiltered (file,
998 "gdbarch_dump: integer_to_address = <0x%lx>\n",
999 (long) current_gdbarch->integer_to_address);
a2428dbe 1000#ifdef TARGET_LONG_BIT
5e74b15c 1001 fprintf_unfiltered (file,
a2428dbe
AC
1002 "gdbarch_dump: TARGET_LONG_BIT # %s\n",
1003 XSTRING (TARGET_LONG_BIT));
5e74b15c 1004#endif
48f7351b
AC
1005 fprintf_unfiltered (file,
1006 "gdbarch_dump: long_bit = %s\n",
1007 paddr_d (current_gdbarch->long_bit));
a2428dbe 1008#ifdef TARGET_LONG_DOUBLE_BIT
d50355b6 1009 fprintf_unfiltered (file,
a2428dbe
AC
1010 "gdbarch_dump: TARGET_LONG_DOUBLE_BIT # %s\n",
1011 XSTRING (TARGET_LONG_DOUBLE_BIT));
a2428dbe 1012#endif
48f7351b
AC
1013 fprintf_unfiltered (file,
1014 "gdbarch_dump: long_double_bit = %s\n",
1015 paddr_d (current_gdbarch->long_double_bit));
a2428dbe
AC
1016#ifdef TARGET_LONG_DOUBLE_FORMAT
1017 fprintf_unfiltered (file,
1018 "gdbarch_dump: TARGET_LONG_DOUBLE_FORMAT # %s\n",
1019 XSTRING (TARGET_LONG_DOUBLE_FORMAT));
48f7351b 1020#endif
a2428dbe 1021 fprintf_unfiltered (file,
48f7351b 1022 "gdbarch_dump: long_double_format = %s\n",
456fcf94 1023 pformat (current_gdbarch->long_double_format));
a2428dbe
AC
1024#ifdef TARGET_LONG_LONG_BIT
1025 fprintf_unfiltered (file,
1026 "gdbarch_dump: TARGET_LONG_LONG_BIT # %s\n",
1027 XSTRING (TARGET_LONG_LONG_BIT));
d50355b6 1028#endif
48f7351b
AC
1029 fprintf_unfiltered (file,
1030 "gdbarch_dump: long_long_bit = %s\n",
1031 paddr_d (current_gdbarch->long_long_bit));
48f7351b
AC
1032 fprintf_unfiltered (file,
1033 "gdbarch_dump: memory_insert_breakpoint = <0x%lx>\n",
1034 (long) current_gdbarch->memory_insert_breakpoint);
48f7351b
AC
1035 fprintf_unfiltered (file,
1036 "gdbarch_dump: memory_remove_breakpoint = <0x%lx>\n",
1037 (long) current_gdbarch->memory_remove_breakpoint);
5720643c
JB
1038#ifdef NAME_OF_MALLOC
1039 fprintf_unfiltered (file,
1040 "gdbarch_dump: NAME_OF_MALLOC # %s\n",
1041 XSTRING (NAME_OF_MALLOC));
48f7351b 1042#endif
5720643c 1043 fprintf_unfiltered (file,
48f7351b 1044 "gdbarch_dump: name_of_malloc = %s\n",
31deffe5 1045 NAME_OF_MALLOC);
48f7351b
AC
1046 fprintf_unfiltered (file,
1047 "gdbarch_dump: num_pseudo_regs = %s\n",
1048 paddr_d (current_gdbarch->num_pseudo_regs));
48f7351b
AC
1049 fprintf_unfiltered (file,
1050 "gdbarch_dump: num_regs = %s\n",
1051 paddr_d (current_gdbarch->num_regs));
48f7351b
AC
1052 fprintf_unfiltered (file,
1053 "gdbarch_dump: osabi = %s\n",
1054 paddr_d (current_gdbarch->osabi));
1c772458
UW
1055 fprintf_unfiltered (file,
1056 "gdbarch_dump: gdbarch_overlay_update_p() = %d\n",
1057 gdbarch_overlay_update_p (current_gdbarch));
1058 fprintf_unfiltered (file,
1059 "gdbarch_dump: overlay_update = <0x%lx>\n",
1060 (long) current_gdbarch->overlay_update);
08e45a40
AC
1061#ifdef PC_REGNUM
1062 fprintf_unfiltered (file,
1063 "gdbarch_dump: PC_REGNUM # %s\n",
1064 XSTRING (PC_REGNUM));
7f1b2585 1065#endif
48f7351b
AC
1066 fprintf_unfiltered (file,
1067 "gdbarch_dump: pc_regnum = %s\n",
1068 paddr_d (current_gdbarch->pc_regnum));
48f7351b
AC
1069 fprintf_unfiltered (file,
1070 "gdbarch_dump: pointer_to_address = <0x%lx>\n",
1071 (long) current_gdbarch->pointer_to_address);
7996bcec
AC
1072 fprintf_unfiltered (file,
1073 "gdbarch_dump: gdbarch_print_float_info_p() = %d\n",
1074 gdbarch_print_float_info_p (current_gdbarch));
1075 fprintf_unfiltered (file,
48f7351b 1076 "gdbarch_dump: print_float_info = <0x%lx>\n",
7996bcec 1077 (long) current_gdbarch->print_float_info);
a2428dbe
AC
1078#ifdef TARGET_PRINT_INSN
1079 fprintf_unfiltered (file,
1080 "gdbarch_dump: %s # %s\n",
1081 "TARGET_PRINT_INSN(vma, info)",
1082 XSTRING (TARGET_PRINT_INSN (vma, info)));
a2428dbe 1083#endif
7996bcec 1084 fprintf_unfiltered (file,
48f7351b
AC
1085 "gdbarch_dump: print_insn = <0x%lx>\n",
1086 (long) current_gdbarch->print_insn);
1087 fprintf_unfiltered (file,
1088 "gdbarch_dump: print_registers_info = <0x%lx>\n",
7996bcec
AC
1089 (long) current_gdbarch->print_registers_info);
1090 fprintf_unfiltered (file,
1091 "gdbarch_dump: gdbarch_print_vector_info_p() = %d\n",
1092 gdbarch_print_vector_info_p (current_gdbarch));
1093 fprintf_unfiltered (file,
48f7351b 1094 "gdbarch_dump: print_vector_info = <0x%lx>\n",
7996bcec 1095 (long) current_gdbarch->print_vector_info);
c2169756
AC
1096#ifdef PS_REGNUM
1097 fprintf_unfiltered (file,
1098 "gdbarch_dump: PS_REGNUM # %s\n",
1099 XSTRING (PS_REGNUM));
a2428dbe 1100#endif
48f7351b
AC
1101 fprintf_unfiltered (file,
1102 "gdbarch_dump: ps_regnum = %s\n",
1103 paddr_d (current_gdbarch->ps_regnum));
a2428dbe
AC
1104 fprintf_unfiltered (file,
1105 "gdbarch_dump: gdbarch_pseudo_register_read_p() = %d\n",
1106 gdbarch_pseudo_register_read_p (current_gdbarch));
1107 fprintf_unfiltered (file,
48f7351b 1108 "gdbarch_dump: pseudo_register_read = <0x%lx>\n",
a2428dbe
AC
1109 (long) current_gdbarch->pseudo_register_read);
1110 fprintf_unfiltered (file,
1111 "gdbarch_dump: gdbarch_pseudo_register_write_p() = %d\n",
1112 gdbarch_pseudo_register_write_p (current_gdbarch));
1113 fprintf_unfiltered (file,
48f7351b 1114 "gdbarch_dump: pseudo_register_write = <0x%lx>\n",
a2428dbe
AC
1115 (long) current_gdbarch->pseudo_register_write);
1116#ifdef TARGET_PTR_BIT
1117 fprintf_unfiltered (file,
1118 "gdbarch_dump: TARGET_PTR_BIT # %s\n",
1119 XSTRING (TARGET_PTR_BIT));
c2169756 1120#endif
48f7351b
AC
1121 fprintf_unfiltered (file,
1122 "gdbarch_dump: ptr_bit = %s\n",
1123 paddr_d (current_gdbarch->ptr_bit));
7996bcec
AC
1124 fprintf_unfiltered (file,
1125 "gdbarch_dump: gdbarch_push_dummy_call_p() = %d\n",
1126 gdbarch_push_dummy_call_p (current_gdbarch));
1127 fprintf_unfiltered (file,
48f7351b 1128 "gdbarch_dump: push_dummy_call = <0x%lx>\n",
7996bcec
AC
1129 (long) current_gdbarch->push_dummy_call);
1130 fprintf_unfiltered (file,
1131 "gdbarch_dump: gdbarch_push_dummy_code_p() = %d\n",
1132 gdbarch_push_dummy_code_p (current_gdbarch));
1133 fprintf_unfiltered (file,
48f7351b 1134 "gdbarch_dump: push_dummy_code = <0x%lx>\n",
7996bcec 1135 (long) current_gdbarch->push_dummy_code);
a2428dbe
AC
1136#ifdef TARGET_READ_PC_P
1137 fprintf_unfiltered (file,
1138 "gdbarch_dump: %s # %s\n",
1139 "TARGET_READ_PC_P()",
1140 XSTRING (TARGET_READ_PC_P ()));
a2428dbe 1141#endif
48f7351b
AC
1142 fprintf_unfiltered (file,
1143 "gdbarch_dump: gdbarch_read_pc_p() = %d\n",
1144 gdbarch_read_pc_p (current_gdbarch));
a2428dbe
AC
1145#ifdef TARGET_READ_PC
1146 fprintf_unfiltered (file,
1147 "gdbarch_dump: %s # %s\n",
1148 "TARGET_READ_PC(ptid)",
1149 XSTRING (TARGET_READ_PC (ptid)));
a2428dbe 1150#endif
48f7351b
AC
1151 fprintf_unfiltered (file,
1152 "gdbarch_dump: read_pc = <0x%lx>\n",
1153 (long) current_gdbarch->read_pc);
a2428dbe 1154 fprintf_unfiltered (file,
48f7351b
AC
1155 "gdbarch_dump: register_name = <0x%lx>\n",
1156 (long) current_gdbarch->register_name);
1157 fprintf_unfiltered (file,
1158 "gdbarch_dump: register_reggroup_p = <0x%lx>\n",
a2428dbe 1159 (long) current_gdbarch->register_reggroup_p);
08e45a40 1160#ifdef REGISTER_SIM_REGNO
4b9b3959
AC
1161 fprintf_unfiltered (file,
1162 "gdbarch_dump: %s # %s\n",
08e45a40
AC
1163 "REGISTER_SIM_REGNO(reg_nr)",
1164 XSTRING (REGISTER_SIM_REGNO (reg_nr)));
4b9b3959 1165#endif
48f7351b
AC
1166 fprintf_unfiltered (file,
1167 "gdbarch_dump: register_sim_regno = <0x%lx>\n",
1168 (long) current_gdbarch->register_sim_regno);
13d01224 1169#ifdef REGISTER_TO_VALUE
13d01224
AC
1170 fprintf_unfiltered (file,
1171 "gdbarch_dump: %s # %s\n",
ff2e87ac
AC
1172 "REGISTER_TO_VALUE(frame, regnum, type, buf)",
1173 XSTRING (REGISTER_TO_VALUE (frame, regnum, type, buf)));
13d01224 1174#endif
48f7351b
AC
1175 fprintf_unfiltered (file,
1176 "gdbarch_dump: register_to_value = <0x%lx>\n",
1177 (long) current_gdbarch->register_to_value);
7996bcec
AC
1178 fprintf_unfiltered (file,
1179 "gdbarch_dump: gdbarch_register_type_p() = %d\n",
1180 gdbarch_register_type_p (current_gdbarch));
1181 fprintf_unfiltered (file,
48f7351b 1182 "gdbarch_dump: register_type = <0x%lx>\n",
7996bcec 1183 (long) current_gdbarch->register_type);
a2428dbe
AC
1184 fprintf_unfiltered (file,
1185 "gdbarch_dump: gdbarch_regset_from_core_section_p() = %d\n",
1186 gdbarch_regset_from_core_section_p (current_gdbarch));
1187 fprintf_unfiltered (file,
48f7351b 1188 "gdbarch_dump: regset_from_core_section = <0x%lx>\n",
a2428dbe 1189 (long) current_gdbarch->regset_from_core_section);
123dc839
DJ
1190 fprintf_unfiltered (file,
1191 "gdbarch_dump: remote_register_number = <0x%lx>\n",
1192 (long) current_gdbarch->remote_register_number);
a2428dbe
AC
1193 fprintf_unfiltered (file,
1194 "gdbarch_dump: gdbarch_return_value_p() = %d\n",
1195 gdbarch_return_value_p (current_gdbarch));
1196 fprintf_unfiltered (file,
48f7351b 1197 "gdbarch_dump: return_value = <0x%lx>\n",
a2428dbe 1198 (long) current_gdbarch->return_value);
08e45a40 1199#ifdef SDB_REG_TO_REGNUM
4b9b3959
AC
1200 fprintf_unfiltered (file,
1201 "gdbarch_dump: %s # %s\n",
08e45a40
AC
1202 "SDB_REG_TO_REGNUM(sdb_regnr)",
1203 XSTRING (SDB_REG_TO_REGNUM (sdb_regnr)));
4b9b3959 1204#endif
48f7351b
AC
1205 fprintf_unfiltered (file,
1206 "gdbarch_dump: sdb_reg_to_regnum = <0x%lx>\n",
1207 (long) current_gdbarch->sdb_reg_to_regnum);
a2428dbe
AC
1208#ifdef TARGET_SHORT_BIT
1209 fprintf_unfiltered (file,
1210 "gdbarch_dump: TARGET_SHORT_BIT # %s\n",
1211 XSTRING (TARGET_SHORT_BIT));
a2428dbe 1212#endif
48f7351b
AC
1213 fprintf_unfiltered (file,
1214 "gdbarch_dump: short_bit = %s\n",
1215 paddr_d (current_gdbarch->short_bit));
3352ef37
AC
1216 fprintf_unfiltered (file,
1217 "gdbarch_dump: gdbarch_single_step_through_delay_p() = %d\n",
1218 gdbarch_single_step_through_delay_p (current_gdbarch));
1219 fprintf_unfiltered (file,
1220 "gdbarch_dump: single_step_through_delay = <0x%lx>\n",
1221 (long) current_gdbarch->single_step_through_delay);
6d350bb5
UW
1222 fprintf_unfiltered (file,
1223 "gdbarch_dump: gdbarch_skip_permanent_breakpoint_p() = %d\n",
1224 gdbarch_skip_permanent_breakpoint_p (current_gdbarch));
1225 fprintf_unfiltered (file,
1226 "gdbarch_dump: skip_permanent_breakpoint = <0x%lx>\n",
1227 (long) current_gdbarch->skip_permanent_breakpoint);
08e45a40 1228#ifdef SKIP_PROLOGUE
4b9b3959
AC
1229 fprintf_unfiltered (file,
1230 "gdbarch_dump: %s # %s\n",
08e45a40
AC
1231 "SKIP_PROLOGUE(ip)",
1232 XSTRING (SKIP_PROLOGUE (ip)));
4b9b3959 1233#endif
dea0c52f 1234 fprintf_unfiltered (file,
48f7351b
AC
1235 "gdbarch_dump: skip_prologue = <0x%lx>\n",
1236 (long) current_gdbarch->skip_prologue);
1237 fprintf_unfiltered (file,
1238 "gdbarch_dump: skip_solib_resolver = <0x%lx>\n",
4c8c40e6 1239 (long) current_gdbarch->skip_solib_resolver);
08e45a40 1240#ifdef SKIP_TRAMPOLINE_CODE
4b9b3959
AC
1241 fprintf_unfiltered (file,
1242 "gdbarch_dump: %s # %s\n",
08e45a40
AC
1243 "SKIP_TRAMPOLINE_CODE(pc)",
1244 XSTRING (SKIP_TRAMPOLINE_CODE (pc)));
4b9b3959 1245#endif
48f7351b
AC
1246 fprintf_unfiltered (file,
1247 "gdbarch_dump: skip_trampoline_code = <0x%lx>\n",
1248 (long) current_gdbarch->skip_trampoline_code);
181c1381
RE
1249#ifdef SMASH_TEXT_ADDRESS
1250 fprintf_unfiltered (file,
1251 "gdbarch_dump: %s # %s\n",
1252 "SMASH_TEXT_ADDRESS(addr)",
1253 XSTRING (SMASH_TEXT_ADDRESS (addr)));
181c1381 1254#endif
48f7351b
AC
1255 fprintf_unfiltered (file,
1256 "gdbarch_dump: smash_text_address = <0x%lx>\n",
1257 (long) current_gdbarch->smash_text_address);
1e9f55d0
AC
1258#ifdef SOFTWARE_SINGLE_STEP_P
1259 fprintf_unfiltered (file,
1260 "gdbarch_dump: %s # %s\n",
1261 "SOFTWARE_SINGLE_STEP_P()",
1262 XSTRING (SOFTWARE_SINGLE_STEP_P ()));
1e9f55d0 1263#endif
48f7351b
AC
1264 fprintf_unfiltered (file,
1265 "gdbarch_dump: gdbarch_software_single_step_p() = %d\n",
1266 gdbarch_software_single_step_p (current_gdbarch));
08e45a40 1267#ifdef SOFTWARE_SINGLE_STEP
4b9b3959
AC
1268 fprintf_unfiltered (file,
1269 "gdbarch_dump: %s # %s\n",
e0cd558a
UW
1270 "SOFTWARE_SINGLE_STEP(regcache)",
1271 XSTRING (SOFTWARE_SINGLE_STEP (regcache)));
08e45a40 1272#endif
48f7351b
AC
1273 fprintf_unfiltered (file,
1274 "gdbarch_dump: software_single_step = <0x%lx>\n",
1275 (long) current_gdbarch->software_single_step);
08e45a40 1276#ifdef SP_REGNUM
1dd4193b 1277 fprintf_unfiltered (file,
08e45a40
AC
1278 "gdbarch_dump: SP_REGNUM # %s\n",
1279 XSTRING (SP_REGNUM));
1dd4193b 1280#endif
48f7351b
AC
1281 fprintf_unfiltered (file,
1282 "gdbarch_dump: sp_regnum = %s\n",
1283 paddr_d (current_gdbarch->sp_regnum));
08e45a40 1284#ifdef STAB_REG_TO_REGNUM
4b9b3959
AC
1285 fprintf_unfiltered (file,
1286 "gdbarch_dump: %s # %s\n",
08e45a40
AC
1287 "STAB_REG_TO_REGNUM(stab_regnr)",
1288 XSTRING (STAB_REG_TO_REGNUM (stab_regnr)));
4b9b3959 1289#endif
a2428dbe 1290 fprintf_unfiltered (file,
48f7351b
AC
1291 "gdbarch_dump: stab_reg_to_regnum = <0x%lx>\n",
1292 (long) current_gdbarch->stab_reg_to_regnum);
1293 fprintf_unfiltered (file,
1294 "gdbarch_dump: stabs_argument_has_addr = <0x%lx>\n",
a2428dbe 1295 (long) current_gdbarch->stabs_argument_has_addr);
08e45a40 1296#ifdef STORE_RETURN_VALUE
f517ea4e
PS
1297 fprintf_unfiltered (file,
1298 "gdbarch_dump: %s # %s\n",
ebba8386
AC
1299 "STORE_RETURN_VALUE(type, regcache, valbuf)",
1300 XSTRING (STORE_RETURN_VALUE (type, regcache, valbuf)));
875e1767 1301#endif
48f7351b
AC
1302 fprintf_unfiltered (file,
1303 "gdbarch_dump: store_return_value = <0x%lx>\n",
1304 (long) current_gdbarch->store_return_value);
424163ea
DJ
1305 fprintf_unfiltered (file,
1306 "gdbarch_dump: target_desc = %s\n",
1307 paddr_d ((long) current_gdbarch->target_desc));
7996bcec 1308 fprintf_unfiltered (file,
a2428dbe
AC
1309 "gdbarch_dump: gdbarch_unwind_dummy_id_p() = %d\n",
1310 gdbarch_unwind_dummy_id_p (current_gdbarch));
cde9ea48 1311 fprintf_unfiltered (file,
48f7351b 1312 "gdbarch_dump: unwind_dummy_id = <0x%lx>\n",
a2428dbe 1313 (long) current_gdbarch->unwind_dummy_id);
08e45a40 1314 fprintf_unfiltered (file,
a2428dbe
AC
1315 "gdbarch_dump: gdbarch_unwind_pc_p() = %d\n",
1316 gdbarch_unwind_pc_p (current_gdbarch));
7996bcec 1317 fprintf_unfiltered (file,
48f7351b 1318 "gdbarch_dump: unwind_pc = <0x%lx>\n",
a2428dbe 1319 (long) current_gdbarch->unwind_pc);
bd1ce8ba 1320 fprintf_unfiltered (file,
a2428dbe
AC
1321 "gdbarch_dump: gdbarch_unwind_sp_p() = %d\n",
1322 gdbarch_unwind_sp_p (current_gdbarch));
bd1ce8ba 1323 fprintf_unfiltered (file,
48f7351b 1324 "gdbarch_dump: unwind_sp = <0x%lx>\n",
a2428dbe 1325 (long) current_gdbarch->unwind_sp);
9acbedc0
UW
1326 fprintf_unfiltered (file,
1327 "gdbarch_dump: value_from_register = <0x%lx>\n",
1328 (long) current_gdbarch->value_from_register);
a2428dbe 1329#ifdef VALUE_TO_REGISTER
08e45a40
AC
1330 fprintf_unfiltered (file,
1331 "gdbarch_dump: %s # %s\n",
a2428dbe
AC
1332 "VALUE_TO_REGISTER(frame, regnum, type, buf)",
1333 XSTRING (VALUE_TO_REGISTER (frame, regnum, type, buf)));
39d4ef09 1334#endif
48f7351b
AC
1335 fprintf_unfiltered (file,
1336 "gdbarch_dump: value_to_register = <0x%lx>\n",
1337 (long) current_gdbarch->value_to_register);
0d5de010
DJ
1338 fprintf_unfiltered (file,
1339 "gdbarch_dump: vbit_in_delta = %s\n",
1340 paddr_d (current_gdbarch->vbit_in_delta));
39d4ef09 1341#ifdef TARGET_VIRTUAL_FRAME_POINTER
08e45a40
AC
1342 fprintf_unfiltered (file,
1343 "gdbarch_dump: %s # %s\n",
1344 "TARGET_VIRTUAL_FRAME_POINTER(pc, frame_regnum, frame_offset)",
1345 XSTRING (TARGET_VIRTUAL_FRAME_POINTER (pc, frame_regnum, frame_offset)));
381323f4 1346#endif
48f7351b
AC
1347 fprintf_unfiltered (file,
1348 "gdbarch_dump: virtual_frame_pointer = <0x%lx>\n",
1349 (long) current_gdbarch->virtual_frame_pointer);
0d5de010
DJ
1350 fprintf_unfiltered (file,
1351 "gdbarch_dump: vtable_function_descriptors = %s\n",
1352 paddr_d (current_gdbarch->vtable_function_descriptors));
08e45a40 1353#ifdef TARGET_WRITE_PC
4b9b3959 1354 fprintf_unfiltered (file,
08e45a40
AC
1355 "gdbarch_dump: %s # %s\n",
1356 "TARGET_WRITE_PC(val, ptid)",
1357 XSTRING (TARGET_WRITE_PC (val, ptid)));
381323f4 1358#endif
48f7351b
AC
1359 fprintf_unfiltered (file,
1360 "gdbarch_dump: write_pc = <0x%lx>\n",
1361 (long) current_gdbarch->write_pc);
4b9b3959
AC
1362 if (current_gdbarch->dump_tdep != NULL)
1363 current_gdbarch->dump_tdep (current_gdbarch, file);
0f71a2f6
JM
1364}
1365
1366struct gdbarch_tdep *
104c1213 1367gdbarch_tdep (struct gdbarch *gdbarch)
0f71a2f6
JM
1368{
1369 if (gdbarch_debug >= 2)
0f71a2f6
JM
1370 fprintf_unfiltered (gdb_stdlog, "gdbarch_tdep called\n");
1371 return gdbarch->tdep;
1372}
1373
1374
1375const struct bfd_arch_info *
104c1213 1376gdbarch_bfd_arch_info (struct gdbarch *gdbarch)
0f71a2f6 1377{
8de9bdc4 1378 gdb_assert (gdbarch != NULL);
0f71a2f6 1379 if (gdbarch_debug >= 2)
0f71a2f6
JM
1380 fprintf_unfiltered (gdb_stdlog, "gdbarch_bfd_arch_info called\n");
1381 return gdbarch->bfd_arch_info;
1382}
1383
1384int
104c1213 1385gdbarch_byte_order (struct gdbarch *gdbarch)
0f71a2f6 1386{
8de9bdc4 1387 gdb_assert (gdbarch != NULL);
0f71a2f6 1388 if (gdbarch_debug >= 2)
0f71a2f6
JM
1389 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order called\n");
1390 return gdbarch->byte_order;
1391}
1392
4be87837
DJ
1393enum gdb_osabi
1394gdbarch_osabi (struct gdbarch *gdbarch)
1395{
1396 gdb_assert (gdbarch != NULL);
1397 if (gdbarch_debug >= 2)
1398 fprintf_unfiltered (gdb_stdlog, "gdbarch_osabi called\n");
1399 return gdbarch->osabi;
1400}
1401
424163ea
DJ
1402const struct target_desc *
1403gdbarch_target_desc (struct gdbarch *gdbarch)
1404{
1405 gdb_assert (gdbarch != NULL);
1406 if (gdbarch_debug >= 2)
1407 fprintf_unfiltered (gdb_stdlog, "gdbarch_target_desc called\n");
1408 return gdbarch->target_desc;
1409}
1410
0f71a2f6 1411int
104c1213 1412gdbarch_short_bit (struct gdbarch *gdbarch)
0f71a2f6 1413{
8de9bdc4 1414 gdb_assert (gdbarch != NULL);
66b43ecb 1415 /* Skip verify of short_bit, invalid_p == 0 */
0f71a2f6 1416 if (gdbarch_debug >= 2)
0f71a2f6
JM
1417 fprintf_unfiltered (gdb_stdlog, "gdbarch_short_bit called\n");
1418 return gdbarch->short_bit;
1419}
1420
1421void
104c1213
JM
1422set_gdbarch_short_bit (struct gdbarch *gdbarch,
1423 int short_bit)
0f71a2f6
JM
1424{
1425 gdbarch->short_bit = short_bit;
1426}
1427
1428int
104c1213 1429gdbarch_int_bit (struct gdbarch *gdbarch)
0f71a2f6 1430{
8de9bdc4 1431 gdb_assert (gdbarch != NULL);
66b43ecb 1432 /* Skip verify of int_bit, invalid_p == 0 */
0f71a2f6 1433 if (gdbarch_debug >= 2)
0f71a2f6
JM
1434 fprintf_unfiltered (gdb_stdlog, "gdbarch_int_bit called\n");
1435 return gdbarch->int_bit;
1436}
1437
1438void
104c1213
JM
1439set_gdbarch_int_bit (struct gdbarch *gdbarch,
1440 int int_bit)
0f71a2f6
JM
1441{
1442 gdbarch->int_bit = int_bit;
1443}
1444
1445int
104c1213 1446gdbarch_long_bit (struct gdbarch *gdbarch)
0f71a2f6 1447{
8de9bdc4 1448 gdb_assert (gdbarch != NULL);
66b43ecb 1449 /* Skip verify of long_bit, invalid_p == 0 */
0f71a2f6 1450 if (gdbarch_debug >= 2)
0f71a2f6
JM
1451 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_bit called\n");
1452 return gdbarch->long_bit;
1453}
1454
1455void
104c1213
JM
1456set_gdbarch_long_bit (struct gdbarch *gdbarch,
1457 int long_bit)
0f71a2f6
JM
1458{
1459 gdbarch->long_bit = long_bit;
1460}
1461
1462int
104c1213 1463gdbarch_long_long_bit (struct gdbarch *gdbarch)
0f71a2f6 1464{
8de9bdc4 1465 gdb_assert (gdbarch != NULL);
66b43ecb 1466 /* Skip verify of long_long_bit, invalid_p == 0 */
0f71a2f6 1467 if (gdbarch_debug >= 2)
0f71a2f6
JM
1468 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_bit called\n");
1469 return gdbarch->long_long_bit;
1470}
1471
1472void
104c1213
JM
1473set_gdbarch_long_long_bit (struct gdbarch *gdbarch,
1474 int long_long_bit)
0f71a2f6
JM
1475{
1476 gdbarch->long_long_bit = long_long_bit;
1477}
1478
1479int
104c1213 1480gdbarch_float_bit (struct gdbarch *gdbarch)
0f71a2f6 1481{
8de9bdc4 1482 gdb_assert (gdbarch != NULL);
66b43ecb 1483 /* Skip verify of float_bit, invalid_p == 0 */
0f71a2f6 1484 if (gdbarch_debug >= 2)
0f71a2f6
JM
1485 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_bit called\n");
1486 return gdbarch->float_bit;
1487}
1488
1489void
104c1213
JM
1490set_gdbarch_float_bit (struct gdbarch *gdbarch,
1491 int float_bit)
0f71a2f6
JM
1492{
1493 gdbarch->float_bit = float_bit;
1494}
1495
8da61cc4 1496const struct floatformat **
456fcf94
AC
1497gdbarch_float_format (struct gdbarch *gdbarch)
1498{
1499 gdb_assert (gdbarch != NULL);
1500 if (gdbarch_debug >= 2)
1501 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_format called\n");
1502 return gdbarch->float_format;
1503}
1504
1505void
1506set_gdbarch_float_format (struct gdbarch *gdbarch,
8da61cc4 1507 const struct floatformat ** float_format)
456fcf94
AC
1508{
1509 gdbarch->float_format = float_format;
1510}
1511
0f71a2f6 1512int
104c1213 1513gdbarch_double_bit (struct gdbarch *gdbarch)
0f71a2f6 1514{
8de9bdc4 1515 gdb_assert (gdbarch != NULL);
66b43ecb 1516 /* Skip verify of double_bit, invalid_p == 0 */
0f71a2f6 1517 if (gdbarch_debug >= 2)
0f71a2f6
JM
1518 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_bit called\n");
1519 return gdbarch->double_bit;
1520}
1521
1522void
104c1213
JM
1523set_gdbarch_double_bit (struct gdbarch *gdbarch,
1524 int double_bit)
0f71a2f6
JM
1525{
1526 gdbarch->double_bit = double_bit;
1527}
1528
8da61cc4 1529const struct floatformat **
456fcf94
AC
1530gdbarch_double_format (struct gdbarch *gdbarch)
1531{
1532 gdb_assert (gdbarch != NULL);
1533 if (gdbarch_debug >= 2)
1534 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_format called\n");
1535 return gdbarch->double_format;
1536}
1537
1538void
1539set_gdbarch_double_format (struct gdbarch *gdbarch,
8da61cc4 1540 const struct floatformat ** double_format)
456fcf94
AC
1541{
1542 gdbarch->double_format = double_format;
1543}
1544
0f71a2f6 1545int
104c1213 1546gdbarch_long_double_bit (struct gdbarch *gdbarch)
0f71a2f6 1547{
8de9bdc4 1548 gdb_assert (gdbarch != NULL);
66b43ecb 1549 /* Skip verify of long_double_bit, invalid_p == 0 */
0f71a2f6 1550 if (gdbarch_debug >= 2)
0f71a2f6
JM
1551 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_bit called\n");
1552 return gdbarch->long_double_bit;
1553}
1554
1555void
104c1213
JM
1556set_gdbarch_long_double_bit (struct gdbarch *gdbarch,
1557 int long_double_bit)
0f71a2f6
JM
1558{
1559 gdbarch->long_double_bit = long_double_bit;
1560}
1561
8da61cc4 1562const struct floatformat **
456fcf94
AC
1563gdbarch_long_double_format (struct gdbarch *gdbarch)
1564{
1565 gdb_assert (gdbarch != NULL);
1566 if (gdbarch_debug >= 2)
1567 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_format called\n");
1568 return gdbarch->long_double_format;
1569}
1570
1571void
1572set_gdbarch_long_double_format (struct gdbarch *gdbarch,
8da61cc4 1573 const struct floatformat ** long_double_format)
456fcf94
AC
1574{
1575 gdbarch->long_double_format = long_double_format;
1576}
1577
66b43ecb
AC
1578int
1579gdbarch_ptr_bit (struct gdbarch *gdbarch)
1580{
8de9bdc4 1581 gdb_assert (gdbarch != NULL);
66b43ecb
AC
1582 /* Skip verify of ptr_bit, invalid_p == 0 */
1583 if (gdbarch_debug >= 2)
1584 fprintf_unfiltered (gdb_stdlog, "gdbarch_ptr_bit called\n");
1585 return gdbarch->ptr_bit;
1586}
1587
1588void
1589set_gdbarch_ptr_bit (struct gdbarch *gdbarch,
1590 int ptr_bit)
1591{
1592 gdbarch->ptr_bit = ptr_bit;
1593}
1594
52204a0b
DT
1595int
1596gdbarch_addr_bit (struct gdbarch *gdbarch)
1597{
8de9bdc4 1598 gdb_assert (gdbarch != NULL);
956ac328
AC
1599 /* Check variable changed from pre-default. */
1600 gdb_assert (gdbarch->addr_bit != 0);
52204a0b
DT
1601 if (gdbarch_debug >= 2)
1602 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bit called\n");
1603 return gdbarch->addr_bit;
1604}
1605
1606void
1607set_gdbarch_addr_bit (struct gdbarch *gdbarch,
1608 int addr_bit)
1609{
1610 gdbarch->addr_bit = addr_bit;
1611}
1612
66b43ecb
AC
1613int
1614gdbarch_bfd_vma_bit (struct gdbarch *gdbarch)
1615{
8de9bdc4 1616 gdb_assert (gdbarch != NULL);
66b43ecb
AC
1617 /* Skip verify of bfd_vma_bit, invalid_p == 0 */
1618 if (gdbarch_debug >= 2)
1619 fprintf_unfiltered (gdb_stdlog, "gdbarch_bfd_vma_bit called\n");
1620 return gdbarch->bfd_vma_bit;
1621}
1622
1623void
1624set_gdbarch_bfd_vma_bit (struct gdbarch *gdbarch,
1625 int bfd_vma_bit)
1626{
1627 gdbarch->bfd_vma_bit = bfd_vma_bit;
1628}
1629
4e409299
JB
1630int
1631gdbarch_char_signed (struct gdbarch *gdbarch)
1632{
8de9bdc4 1633 gdb_assert (gdbarch != NULL);
956ac328
AC
1634 /* Check variable changed from pre-default. */
1635 gdb_assert (gdbarch->char_signed != -1);
4e409299
JB
1636 if (gdbarch_debug >= 2)
1637 fprintf_unfiltered (gdb_stdlog, "gdbarch_char_signed called\n");
1638 return gdbarch->char_signed;
1639}
1640
1641void
1642set_gdbarch_char_signed (struct gdbarch *gdbarch,
1643 int char_signed)
1644{
1645 gdbarch->char_signed = char_signed;
1646}
1647
cde9ea48
AC
1648int
1649gdbarch_read_pc_p (struct gdbarch *gdbarch)
1650{
1651 gdb_assert (gdbarch != NULL);
956ac328 1652 return gdbarch->read_pc != NULL;
cde9ea48
AC
1653}
1654
0f71a2f6 1655CORE_ADDR
39f77062 1656gdbarch_read_pc (struct gdbarch *gdbarch, ptid_t ptid)
0f71a2f6 1657{
8de9bdc4 1658 gdb_assert (gdbarch != NULL);
956ac328 1659 gdb_assert (gdbarch->read_pc != NULL);
0f71a2f6 1660 if (gdbarch_debug >= 2)
0f71a2f6 1661 fprintf_unfiltered (gdb_stdlog, "gdbarch_read_pc called\n");
39f77062 1662 return gdbarch->read_pc (ptid);
0f71a2f6
JM
1663}
1664
1665void
104c1213
JM
1666set_gdbarch_read_pc (struct gdbarch *gdbarch,
1667 gdbarch_read_pc_ftype read_pc)
0f71a2f6
JM
1668{
1669 gdbarch->read_pc = read_pc;
1670}
1671
1672void
39f77062 1673gdbarch_write_pc (struct gdbarch *gdbarch, CORE_ADDR val, ptid_t ptid)
0f71a2f6 1674{
8de9bdc4 1675 gdb_assert (gdbarch != NULL);
956ac328 1676 gdb_assert (gdbarch->write_pc != NULL);
0f71a2f6 1677 if (gdbarch_debug >= 2)
0f71a2f6 1678 fprintf_unfiltered (gdb_stdlog, "gdbarch_write_pc called\n");
39f77062 1679 gdbarch->write_pc (val, ptid);
0f71a2f6
JM
1680}
1681
1682void
104c1213
JM
1683set_gdbarch_write_pc (struct gdbarch *gdbarch,
1684 gdbarch_write_pc_ftype write_pc)
0f71a2f6
JM
1685{
1686 gdbarch->write_pc = write_pc;
1687}
1688
39d4ef09
AC
1689void
1690gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset)
1691{
8de9bdc4 1692 gdb_assert (gdbarch != NULL);
956ac328 1693 gdb_assert (gdbarch->virtual_frame_pointer != NULL);
39d4ef09
AC
1694 if (gdbarch_debug >= 2)
1695 fprintf_unfiltered (gdb_stdlog, "gdbarch_virtual_frame_pointer called\n");
1696 gdbarch->virtual_frame_pointer (pc, frame_regnum, frame_offset);
1697}
1698
1699void
1700set_gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch,
1701 gdbarch_virtual_frame_pointer_ftype virtual_frame_pointer)
1702{
1703 gdbarch->virtual_frame_pointer = virtual_frame_pointer;
1704}
1705
61a0eb5b 1706int
d8124050 1707gdbarch_pseudo_register_read_p (struct gdbarch *gdbarch)
61a0eb5b 1708{
8de9bdc4 1709 gdb_assert (gdbarch != NULL);
956ac328 1710 return gdbarch->pseudo_register_read != NULL;
61a0eb5b
AC
1711}
1712
1713void
b60c417a 1714gdbarch_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, gdb_byte *buf)
61a0eb5b 1715{
8de9bdc4 1716 gdb_assert (gdbarch != NULL);
956ac328 1717 gdb_assert (gdbarch->pseudo_register_read != NULL);
61a0eb5b 1718 if (gdbarch_debug >= 2)
d8124050
AC
1719 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read called\n");
1720 gdbarch->pseudo_register_read (gdbarch, regcache, cookednum, buf);
61a0eb5b
AC
1721}
1722
1723void
d8124050
AC
1724set_gdbarch_pseudo_register_read (struct gdbarch *gdbarch,
1725 gdbarch_pseudo_register_read_ftype pseudo_register_read)
61a0eb5b 1726{
d8124050 1727 gdbarch->pseudo_register_read = pseudo_register_read;
61a0eb5b
AC
1728}
1729
1730int
d8124050 1731gdbarch_pseudo_register_write_p (struct gdbarch *gdbarch)
61a0eb5b 1732{
8de9bdc4 1733 gdb_assert (gdbarch != NULL);
956ac328 1734 return gdbarch->pseudo_register_write != NULL;
61a0eb5b
AC
1735}
1736
1737void
b60c417a 1738gdbarch_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, const gdb_byte *buf)
61a0eb5b 1739{
8de9bdc4 1740 gdb_assert (gdbarch != NULL);
956ac328 1741 gdb_assert (gdbarch->pseudo_register_write != NULL);
61a0eb5b 1742 if (gdbarch_debug >= 2)
d8124050
AC
1743 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_write called\n");
1744 gdbarch->pseudo_register_write (gdbarch, regcache, cookednum, buf);
61a0eb5b
AC
1745}
1746
1747void
d8124050
AC
1748set_gdbarch_pseudo_register_write (struct gdbarch *gdbarch,
1749 gdbarch_pseudo_register_write_ftype pseudo_register_write)
61a0eb5b 1750{
d8124050 1751 gdbarch->pseudo_register_write = pseudo_register_write;
61a0eb5b
AC
1752}
1753
0f71a2f6 1754int
104c1213 1755gdbarch_num_regs (struct gdbarch *gdbarch)
0f71a2f6 1756{
8de9bdc4 1757 gdb_assert (gdbarch != NULL);
956ac328
AC
1758 /* Check variable changed from pre-default. */
1759 gdb_assert (gdbarch->num_regs != -1);
0f71a2f6 1760 if (gdbarch_debug >= 2)
0f71a2f6
JM
1761 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_regs called\n");
1762 return gdbarch->num_regs;
1763}
1764
1765void
104c1213
JM
1766set_gdbarch_num_regs (struct gdbarch *gdbarch,
1767 int num_regs)
0f71a2f6
JM
1768{
1769 gdbarch->num_regs = num_regs;
1770}
1771
0aba1244
EZ
1772int
1773gdbarch_num_pseudo_regs (struct gdbarch *gdbarch)
1774{
8de9bdc4 1775 gdb_assert (gdbarch != NULL);
0aba1244
EZ
1776 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
1777 if (gdbarch_debug >= 2)
1778 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_pseudo_regs called\n");
1779 return gdbarch->num_pseudo_regs;
1780}
1781
1782void
1783set_gdbarch_num_pseudo_regs (struct gdbarch *gdbarch,
1784 int num_pseudo_regs)
1785{
1786 gdbarch->num_pseudo_regs = num_pseudo_regs;
1787}
1788
0f71a2f6 1789int
104c1213 1790gdbarch_sp_regnum (struct gdbarch *gdbarch)
0f71a2f6 1791{
8de9bdc4 1792 gdb_assert (gdbarch != NULL);
1200cd6e 1793 /* Skip verify of sp_regnum, invalid_p == 0 */
0f71a2f6 1794 if (gdbarch_debug >= 2)
0f71a2f6
JM
1795 fprintf_unfiltered (gdb_stdlog, "gdbarch_sp_regnum called\n");
1796 return gdbarch->sp_regnum;
1797}
1798
1799void
104c1213
JM
1800set_gdbarch_sp_regnum (struct gdbarch *gdbarch,
1801 int sp_regnum)
0f71a2f6
JM
1802{
1803 gdbarch->sp_regnum = sp_regnum;
1804}
1805
0f71a2f6 1806int
104c1213 1807gdbarch_pc_regnum (struct gdbarch *gdbarch)
0f71a2f6 1808{
8de9bdc4 1809 gdb_assert (gdbarch != NULL);
1200cd6e 1810 /* Skip verify of pc_regnum, invalid_p == 0 */
0f71a2f6 1811 if (gdbarch_debug >= 2)
0f71a2f6
JM
1812 fprintf_unfiltered (gdb_stdlog, "gdbarch_pc_regnum called\n");
1813 return gdbarch->pc_regnum;
1814}
1815
1816void
104c1213
JM
1817set_gdbarch_pc_regnum (struct gdbarch *gdbarch,
1818 int pc_regnum)
0f71a2f6
JM
1819{
1820 gdbarch->pc_regnum = pc_regnum;
1821}
1822
c2169756
AC
1823int
1824gdbarch_ps_regnum (struct gdbarch *gdbarch)
1825{
8de9bdc4 1826 gdb_assert (gdbarch != NULL);
c2169756
AC
1827 /* Skip verify of ps_regnum, invalid_p == 0 */
1828 if (gdbarch_debug >= 2)
1829 fprintf_unfiltered (gdb_stdlog, "gdbarch_ps_regnum called\n");
1830 return gdbarch->ps_regnum;
1831}
1832
1833void
1834set_gdbarch_ps_regnum (struct gdbarch *gdbarch,
1835 int ps_regnum)
1836{
1837 gdbarch->ps_regnum = ps_regnum;
1838}
1839
60054393
MS
1840int
1841gdbarch_fp0_regnum (struct gdbarch *gdbarch)
1842{
8de9bdc4 1843 gdb_assert (gdbarch != NULL);
60054393
MS
1844 /* Skip verify of fp0_regnum, invalid_p == 0 */
1845 if (gdbarch_debug >= 2)
1846 fprintf_unfiltered (gdb_stdlog, "gdbarch_fp0_regnum called\n");
1847 return gdbarch->fp0_regnum;
1848}
1849
1850void
1851set_gdbarch_fp0_regnum (struct gdbarch *gdbarch,
1852 int fp0_regnum)
1853{
1854 gdbarch->fp0_regnum = fp0_regnum;
1855}
1856
88c72b7d
AC
1857int
1858gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch, int stab_regnr)
1859{
8de9bdc4 1860 gdb_assert (gdbarch != NULL);
956ac328 1861 gdb_assert (gdbarch->stab_reg_to_regnum != NULL);
88c72b7d
AC
1862 if (gdbarch_debug >= 2)
1863 fprintf_unfiltered (gdb_stdlog, "gdbarch_stab_reg_to_regnum called\n");
1864 return gdbarch->stab_reg_to_regnum (stab_regnr);
1865}
1866
1867void
1868set_gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch,
1869 gdbarch_stab_reg_to_regnum_ftype stab_reg_to_regnum)
1870{
1871 gdbarch->stab_reg_to_regnum = stab_reg_to_regnum;
1872}
1873
1874int
1875gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch, int ecoff_regnr)
1876{
8de9bdc4 1877 gdb_assert (gdbarch != NULL);
956ac328 1878 gdb_assert (gdbarch->ecoff_reg_to_regnum != NULL);
88c72b7d
AC
1879 if (gdbarch_debug >= 2)
1880 fprintf_unfiltered (gdb_stdlog, "gdbarch_ecoff_reg_to_regnum called\n");
1881 return gdbarch->ecoff_reg_to_regnum (ecoff_regnr);
1882}
1883
1884void
1885set_gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch,
1886 gdbarch_ecoff_reg_to_regnum_ftype ecoff_reg_to_regnum)
1887{
1888 gdbarch->ecoff_reg_to_regnum = ecoff_reg_to_regnum;
1889}
1890
1891int
1892gdbarch_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int dwarf_regnr)
1893{
8de9bdc4 1894 gdb_assert (gdbarch != NULL);
956ac328 1895 gdb_assert (gdbarch->dwarf_reg_to_regnum != NULL);
88c72b7d
AC
1896 if (gdbarch_debug >= 2)
1897 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf_reg_to_regnum called\n");
1898 return gdbarch->dwarf_reg_to_regnum (dwarf_regnr);
1899}
1900
1901void
1902set_gdbarch_dwarf_reg_to_regnum (struct gdbarch *gdbarch,
1903 gdbarch_dwarf_reg_to_regnum_ftype dwarf_reg_to_regnum)
1904{
1905 gdbarch->dwarf_reg_to_regnum = dwarf_reg_to_regnum;
1906}
1907
1908int
1909gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, int sdb_regnr)
1910{
8de9bdc4 1911 gdb_assert (gdbarch != NULL);
956ac328 1912 gdb_assert (gdbarch->sdb_reg_to_regnum != NULL);
88c72b7d
AC
1913 if (gdbarch_debug >= 2)
1914 fprintf_unfiltered (gdb_stdlog, "gdbarch_sdb_reg_to_regnum called\n");
1915 return gdbarch->sdb_reg_to_regnum (sdb_regnr);
1916}
1917
1918void
1919set_gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch,
1920 gdbarch_sdb_reg_to_regnum_ftype sdb_reg_to_regnum)
1921{
1922 gdbarch->sdb_reg_to_regnum = sdb_reg_to_regnum;
1923}
1924
1925int
1926gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int dwarf2_regnr)
1927{
8de9bdc4 1928 gdb_assert (gdbarch != NULL);
956ac328 1929 gdb_assert (gdbarch->dwarf2_reg_to_regnum != NULL);
88c72b7d
AC
1930 if (gdbarch_debug >= 2)
1931 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_reg_to_regnum called\n");
1932 return gdbarch->dwarf2_reg_to_regnum (dwarf2_regnr);
1933}
1934
1935void
1936set_gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch,
1937 gdbarch_dwarf2_reg_to_regnum_ftype dwarf2_reg_to_regnum)
1938{
1939 gdbarch->dwarf2_reg_to_regnum = dwarf2_reg_to_regnum;
1940}
1941
fa88f677 1942const char *
0f71a2f6
JM
1943gdbarch_register_name (struct gdbarch *gdbarch, int regnr)
1944{
8de9bdc4 1945 gdb_assert (gdbarch != NULL);
956ac328 1946 gdb_assert (gdbarch->register_name != NULL);
0f71a2f6 1947 if (gdbarch_debug >= 2)
0f71a2f6
JM
1948 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_name called\n");
1949 return gdbarch->register_name (regnr);
1950}
1951
1952void
104c1213
JM
1953set_gdbarch_register_name (struct gdbarch *gdbarch,
1954 gdbarch_register_name_ftype register_name)
0f71a2f6
JM
1955{
1956 gdbarch->register_name = register_name;
1957}
1958
0f71a2f6 1959int
9c04cab7 1960gdbarch_register_type_p (struct gdbarch *gdbarch)
0f71a2f6 1961{
8de9bdc4 1962 gdb_assert (gdbarch != NULL);
956ac328 1963 return gdbarch->register_type != NULL;
9c04cab7
AC
1964}
1965
1966struct type *
1967gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr)
1968{
1969 gdb_assert (gdbarch != NULL);
956ac328 1970 gdb_assert (gdbarch->register_type != NULL);
0f71a2f6 1971 if (gdbarch_debug >= 2)
9c04cab7
AC
1972 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_type called\n");
1973 return gdbarch->register_type (gdbarch, reg_nr);
0f71a2f6
JM
1974}
1975
1976void
9c04cab7
AC
1977set_gdbarch_register_type (struct gdbarch *gdbarch,
1978 gdbarch_register_type_ftype register_type)
0f71a2f6 1979{
9c04cab7 1980 gdbarch->register_type = register_type;
0f71a2f6
JM
1981}
1982
f3be58bc
AC
1983int
1984gdbarch_unwind_dummy_id_p (struct gdbarch *gdbarch)
1985{
1986 gdb_assert (gdbarch != NULL);
956ac328 1987 return gdbarch->unwind_dummy_id != NULL;
f3be58bc
AC
1988}
1989
1990struct frame_id
1991gdbarch_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *info)
1992{
1993 gdb_assert (gdbarch != NULL);
956ac328 1994 gdb_assert (gdbarch->unwind_dummy_id != NULL);
f3be58bc
AC
1995 if (gdbarch_debug >= 2)
1996 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_dummy_id called\n");
1997 return gdbarch->unwind_dummy_id (gdbarch, info);
1998}
1999
2000void
2001set_gdbarch_unwind_dummy_id (struct gdbarch *gdbarch,
2002 gdbarch_unwind_dummy_id_ftype unwind_dummy_id)
2003{
2004 gdbarch->unwind_dummy_id = unwind_dummy_id;
2005}
2006
f3be58bc
AC
2007int
2008gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch)
2009{
2010 gdb_assert (gdbarch != NULL);
2011 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
2012 if (gdbarch_debug >= 2)
2013 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_fp_regnum called\n");
2014 return gdbarch->deprecated_fp_regnum;
2015}
2016
2017void
2018set_gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch,
2019 int deprecated_fp_regnum)
2020{
2021 gdbarch->deprecated_fp_regnum = deprecated_fp_regnum;
2022}
2023
0ab7a791 2024int
b8de8283 2025gdbarch_push_dummy_call_p (struct gdbarch *gdbarch)
0ab7a791
AC
2026{
2027 gdb_assert (gdbarch != NULL);
956ac328 2028 return gdbarch->push_dummy_call != NULL;
0ab7a791
AC
2029}
2030
b8de8283 2031CORE_ADDR
7d9b040b 2032gdbarch_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 2033{
8de9bdc4 2034 gdb_assert (gdbarch != NULL);
956ac328 2035 gdb_assert (gdbarch->push_dummy_call != NULL);
666e11c5 2036 if (gdbarch_debug >= 2)
b8de8283 2037 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_call called\n");
7d9b040b 2038 return gdbarch->push_dummy_call (gdbarch, function, regcache, bp_addr, nargs, args, sp, struct_return, struct_addr);
666e11c5
EZ
2039}
2040
2041void
b8de8283
AC
2042set_gdbarch_push_dummy_call (struct gdbarch *gdbarch,
2043 gdbarch_push_dummy_call_ftype push_dummy_call)
666e11c5 2044{
b8de8283 2045 gdbarch->push_dummy_call = push_dummy_call;
666e11c5
EZ
2046}
2047
7c7651b2 2048int
b8de8283 2049gdbarch_deprecated_register_size (struct gdbarch *gdbarch)
7c7651b2 2050{
8de9bdc4 2051 gdb_assert (gdbarch != NULL);
7c7651b2 2052 if (gdbarch_debug >= 2)
b8de8283
AC
2053 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_register_size called\n");
2054 return gdbarch->deprecated_register_size;
7c7651b2
AC
2055}
2056
2057void
b8de8283
AC
2058set_gdbarch_deprecated_register_size (struct gdbarch *gdbarch,
2059 int deprecated_register_size)
7c7651b2 2060{
b8de8283 2061 gdbarch->deprecated_register_size = deprecated_register_size;
7c7651b2
AC
2062}
2063
2649061d 2064int
b8de8283 2065gdbarch_call_dummy_location (struct gdbarch *gdbarch)
2649061d 2066{
8de9bdc4 2067 gdb_assert (gdbarch != NULL);
b8de8283
AC
2068 /* Skip verify of call_dummy_location, invalid_p == 0 */
2069 if (gdbarch_debug >= 2)
2070 fprintf_unfiltered (gdb_stdlog, "gdbarch_call_dummy_location called\n");
2071 return gdbarch->call_dummy_location;
2649061d
AC
2072}
2073
b8de8283
AC
2074void
2075set_gdbarch_call_dummy_location (struct gdbarch *gdbarch,
2076 int call_dummy_location)
2077{
2078 gdbarch->call_dummy_location = call_dummy_location;
2079}
2080
0f71a2f6 2081int
b8de8283 2082gdbarch_push_dummy_code_p (struct gdbarch *gdbarch)
0f71a2f6 2083{
8de9bdc4 2084 gdb_assert (gdbarch != NULL);
956ac328 2085 return gdbarch->push_dummy_code != NULL;
b8de8283
AC
2086}
2087
2088CORE_ADDR
2089gdbarch_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp, CORE_ADDR funaddr, int using_gcc, struct value **args, int nargs, struct type *value_type, CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
2090{
2091 gdb_assert (gdbarch != NULL);
956ac328 2092 gdb_assert (gdbarch->push_dummy_code != NULL);
0f71a2f6 2093 if (gdbarch_debug >= 2)
b8de8283
AC
2094 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_code called\n");
2095 return gdbarch->push_dummy_code (gdbarch, sp, funaddr, using_gcc, args, nargs, value_type, real_pc, bp_addr);
0f71a2f6
JM
2096}
2097
2098void
b8de8283
AC
2099set_gdbarch_push_dummy_code (struct gdbarch *gdbarch,
2100 gdbarch_push_dummy_code_ftype push_dummy_code)
0f71a2f6 2101{
b8de8283 2102 gdbarch->push_dummy_code = push_dummy_code;
0f71a2f6
JM
2103}
2104
b8de8283
AC
2105void
2106gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all)
2107{
2108 gdb_assert (gdbarch != NULL);
956ac328 2109 gdb_assert (gdbarch->print_registers_info != NULL);
b8de8283
AC
2110 if (gdbarch_debug >= 2)
2111 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_registers_info called\n");
2112 gdbarch->print_registers_info (gdbarch, file, frame, regnum, all);
2113}
2114
2115void
2116set_gdbarch_print_registers_info (struct gdbarch *gdbarch,
2117 gdbarch_print_registers_info_ftype print_registers_info)
2118{
2119 gdbarch->print_registers_info = print_registers_info;
0f71a2f6
JM
2120}
2121
0f71a2f6 2122int
b8de8283
AC
2123gdbarch_print_float_info_p (struct gdbarch *gdbarch)
2124{
2125 gdb_assert (gdbarch != NULL);
956ac328 2126 return gdbarch->print_float_info != NULL;
b8de8283
AC
2127}
2128
2129void
2130gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
0f71a2f6 2131{
8de9bdc4 2132 gdb_assert (gdbarch != NULL);
956ac328 2133 gdb_assert (gdbarch->print_float_info != NULL);
0f71a2f6 2134 if (gdbarch_debug >= 2)
b8de8283
AC
2135 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_float_info called\n");
2136 gdbarch->print_float_info (gdbarch, file, frame, args);
0f71a2f6
JM
2137}
2138
2139void
b8de8283
AC
2140set_gdbarch_print_float_info (struct gdbarch *gdbarch,
2141 gdbarch_print_float_info_ftype print_float_info)
0f71a2f6 2142{
b8de8283
AC
2143 gdbarch->print_float_info = print_float_info;
2144}
2145
2146int
2147gdbarch_print_vector_info_p (struct gdbarch *gdbarch)
2148{
2149 gdb_assert (gdbarch != NULL);
956ac328 2150 return gdbarch->print_vector_info != NULL;
b8de8283
AC
2151}
2152
2153void
2154gdbarch_print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
2155{
2156 gdb_assert (gdbarch != NULL);
956ac328 2157 gdb_assert (gdbarch->print_vector_info != NULL);
b8de8283
AC
2158 if (gdbarch_debug >= 2)
2159 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_vector_info called\n");
2160 gdbarch->print_vector_info (gdbarch, file, frame, args);
0f71a2f6
JM
2161}
2162
b8de8283
AC
2163void
2164set_gdbarch_print_vector_info (struct gdbarch *gdbarch,
2165 gdbarch_print_vector_info_ftype print_vector_info)
ae45cd16 2166{
b8de8283 2167 gdbarch->print_vector_info = print_vector_info;
ae45cd16
AC
2168}
2169
2170int
b8de8283 2171gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr)
0f71a2f6 2172{
8de9bdc4 2173 gdb_assert (gdbarch != NULL);
956ac328 2174 gdb_assert (gdbarch->register_sim_regno != NULL);
0f71a2f6 2175 if (gdbarch_debug >= 2)
b8de8283
AC
2176 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_sim_regno called\n");
2177 return gdbarch->register_sim_regno (reg_nr);
0f71a2f6
JM
2178}
2179
2180void
b8de8283
AC
2181set_gdbarch_register_sim_regno (struct gdbarch *gdbarch,
2182 gdbarch_register_sim_regno_ftype register_sim_regno)
0f71a2f6 2183{
b8de8283 2184 gdbarch->register_sim_regno = register_sim_regno;
0f71a2f6
JM
2185}
2186
0f71a2f6 2187int
b8de8283 2188gdbarch_cannot_fetch_register (struct gdbarch *gdbarch, int regnum)
0f71a2f6 2189{
8de9bdc4 2190 gdb_assert (gdbarch != NULL);
956ac328 2191 gdb_assert (gdbarch->cannot_fetch_register != NULL);
b8de8283
AC
2192 if (gdbarch_debug >= 2)
2193 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_fetch_register called\n");
2194 return gdbarch->cannot_fetch_register (regnum);
2195}
2196
2197void
2198set_gdbarch_cannot_fetch_register (struct gdbarch *gdbarch,
2199 gdbarch_cannot_fetch_register_ftype cannot_fetch_register)
2200{
2201 gdbarch->cannot_fetch_register = cannot_fetch_register;
0f71a2f6
JM
2202}
2203
2204int
b8de8283 2205gdbarch_cannot_store_register (struct gdbarch *gdbarch, int regnum)
0f71a2f6 2206{
8de9bdc4 2207 gdb_assert (gdbarch != NULL);
956ac328 2208 gdb_assert (gdbarch->cannot_store_register != NULL);
0f71a2f6 2209 if (gdbarch_debug >= 2)
b8de8283
AC
2210 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_store_register called\n");
2211 return gdbarch->cannot_store_register (regnum);
0f71a2f6
JM
2212}
2213
2214void
b8de8283
AC
2215set_gdbarch_cannot_store_register (struct gdbarch *gdbarch,
2216 gdbarch_cannot_store_register_ftype cannot_store_register)
0f71a2f6 2217{
b8de8283 2218 gdbarch->cannot_store_register = cannot_store_register;
0f71a2f6
JM
2219}
2220
e8ab51f7 2221int
b8de8283 2222gdbarch_get_longjmp_target_p (struct gdbarch *gdbarch)
e8ab51f7
AC
2223{
2224 gdb_assert (gdbarch != NULL);
956ac328 2225 return gdbarch->get_longjmp_target != NULL;
e8ab51f7
AC
2226}
2227
b8de8283
AC
2228int
2229gdbarch_get_longjmp_target (struct gdbarch *gdbarch, CORE_ADDR *pc)
0f71a2f6 2230{
8de9bdc4 2231 gdb_assert (gdbarch != NULL);
956ac328 2232 gdb_assert (gdbarch->get_longjmp_target != NULL);
0f71a2f6 2233 if (gdbarch_debug >= 2)
b8de8283
AC
2234 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_longjmp_target called\n");
2235 return gdbarch->get_longjmp_target (pc);
0f71a2f6
JM
2236}
2237
2238void
b8de8283
AC
2239set_gdbarch_get_longjmp_target (struct gdbarch *gdbarch,
2240 gdbarch_get_longjmp_target_ftype get_longjmp_target)
0f71a2f6 2241{
b8de8283 2242 gdbarch->get_longjmp_target = get_longjmp_target;
0f71a2f6
JM
2243}
2244
2245int
104c1213 2246gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch)
0f71a2f6 2247{
8de9bdc4 2248 gdb_assert (gdbarch != NULL);
0f71a2f6 2249 if (gdbarch_debug >= 2)
0f71a2f6
JM
2250 fprintf_unfiltered (gdb_stdlog, "gdbarch_believe_pcc_promotion called\n");
2251 return gdbarch->believe_pcc_promotion;
2252}
2253
2254void
104c1213
JM
2255set_gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch,
2256 int believe_pcc_promotion)
0f71a2f6
JM
2257{
2258 gdbarch->believe_pcc_promotion = believe_pcc_promotion;
2259}
2260
13d01224 2261int
ff2e87ac 2262gdbarch_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type)
13d01224
AC
2263{
2264 gdb_assert (gdbarch != NULL);
956ac328 2265 gdb_assert (gdbarch->convert_register_p != NULL);
13d01224
AC
2266 if (gdbarch_debug >= 2)
2267 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_register_p called\n");
ff2e87ac 2268 return gdbarch->convert_register_p (regnum, type);
13d01224
AC
2269}
2270
2271void
2272set_gdbarch_convert_register_p (struct gdbarch *gdbarch,
2273 gdbarch_convert_register_p_ftype convert_register_p)
2274{
2275 gdbarch->convert_register_p = convert_register_p;
2276}
2277
2278void
b60c417a 2279gdbarch_register_to_value (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, gdb_byte *buf)
13d01224
AC
2280{
2281 gdb_assert (gdbarch != NULL);
956ac328 2282 gdb_assert (gdbarch->register_to_value != NULL);
13d01224
AC
2283 if (gdbarch_debug >= 2)
2284 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_to_value called\n");
ff2e87ac 2285 gdbarch->register_to_value (frame, regnum, type, buf);
13d01224
AC
2286}
2287
2288void
2289set_gdbarch_register_to_value (struct gdbarch *gdbarch,
2290 gdbarch_register_to_value_ftype register_to_value)
2291{
2292 gdbarch->register_to_value = register_to_value;
2293}
2294
2295void
b60c417a 2296gdbarch_value_to_register (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, const gdb_byte *buf)
13d01224
AC
2297{
2298 gdb_assert (gdbarch != NULL);
956ac328 2299 gdb_assert (gdbarch->value_to_register != NULL);
13d01224
AC
2300 if (gdbarch_debug >= 2)
2301 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_to_register called\n");
ff2e87ac 2302 gdbarch->value_to_register (frame, regnum, type, buf);
13d01224
AC
2303}
2304
2305void
2306set_gdbarch_value_to_register (struct gdbarch *gdbarch,
2307 gdbarch_value_to_register_ftype value_to_register)
2308{
2309 gdbarch->value_to_register = value_to_register;
2310}
2311
9acbedc0
UW
2312struct value *
2313gdbarch_value_from_register (struct gdbarch *gdbarch, struct type *type, int regnum, struct frame_info *frame)
2314{
2315 gdb_assert (gdbarch != NULL);
2316 gdb_assert (gdbarch->value_from_register != NULL);
2317 if (gdbarch_debug >= 2)
2318 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_from_register called\n");
2319 return gdbarch->value_from_register (type, regnum, frame);
2320}
2321
2322void
2323set_gdbarch_value_from_register (struct gdbarch *gdbarch,
2324 gdbarch_value_from_register_ftype value_from_register)
2325{
2326 gdbarch->value_from_register = value_from_register;
2327}
2328
4478b372 2329CORE_ADDR
b60c417a 2330gdbarch_pointer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
4478b372 2331{
8de9bdc4 2332 gdb_assert (gdbarch != NULL);
956ac328 2333 gdb_assert (gdbarch->pointer_to_address != NULL);
4478b372
JB
2334 if (gdbarch_debug >= 2)
2335 fprintf_unfiltered (gdb_stdlog, "gdbarch_pointer_to_address called\n");
2336 return gdbarch->pointer_to_address (type, buf);
2337}
2338
2339void
2340set_gdbarch_pointer_to_address (struct gdbarch *gdbarch,
2341 gdbarch_pointer_to_address_ftype pointer_to_address)
2342{
2343 gdbarch->pointer_to_address = pointer_to_address;
2344}
2345
2346void
b60c417a 2347gdbarch_address_to_pointer (struct gdbarch *gdbarch, struct type *type, gdb_byte *buf, CORE_ADDR addr)
4478b372 2348{
8de9bdc4 2349 gdb_assert (gdbarch != NULL);
956ac328 2350 gdb_assert (gdbarch->address_to_pointer != NULL);
4478b372
JB
2351 if (gdbarch_debug >= 2)
2352 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_to_pointer called\n");
2353 gdbarch->address_to_pointer (type, buf, addr);
2354}
2355
2356void
2357set_gdbarch_address_to_pointer (struct gdbarch *gdbarch,
2358 gdbarch_address_to_pointer_ftype address_to_pointer)
2359{
2360 gdbarch->address_to_pointer = address_to_pointer;
2361}
2362
fc0c74b1
AC
2363int
2364gdbarch_integer_to_address_p (struct gdbarch *gdbarch)
2365{
8de9bdc4 2366 gdb_assert (gdbarch != NULL);
956ac328 2367 return gdbarch->integer_to_address != NULL;
fc0c74b1
AC
2368}
2369
2370CORE_ADDR
fc1a4b47 2371gdbarch_integer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
fc0c74b1 2372{
8de9bdc4 2373 gdb_assert (gdbarch != NULL);
956ac328 2374 gdb_assert (gdbarch->integer_to_address != NULL);
fc0c74b1
AC
2375 if (gdbarch_debug >= 2)
2376 fprintf_unfiltered (gdb_stdlog, "gdbarch_integer_to_address called\n");
79dd2d24 2377 return gdbarch->integer_to_address (gdbarch, type, buf);
fc0c74b1
AC
2378}
2379
2380void
2381set_gdbarch_integer_to_address (struct gdbarch *gdbarch,
2382 gdbarch_integer_to_address_ftype integer_to_address)
2383{
2384 gdbarch->integer_to_address = integer_to_address;
2385}
2386
92ad9cd9
AC
2387int
2388gdbarch_return_value_p (struct gdbarch *gdbarch)
2389{
2390 gdb_assert (gdbarch != NULL);
750eb019 2391 return gdbarch->return_value != legacy_return_value;
92ad9cd9
AC
2392}
2393
2394enum return_value_convention
b60c417a 2395gdbarch_return_value (struct gdbarch *gdbarch, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
92ad9cd9
AC
2396{
2397 gdb_assert (gdbarch != NULL);
2398 gdb_assert (gdbarch->return_value != NULL);
750eb019 2399 /* Do not check predicate: gdbarch->return_value != legacy_return_value, allow call. */
92ad9cd9
AC
2400 if (gdbarch_debug >= 2)
2401 fprintf_unfiltered (gdb_stdlog, "gdbarch_return_value called\n");
963e2bb7 2402 return gdbarch->return_value (gdbarch, valtype, regcache, readbuf, writebuf);
92ad9cd9
AC
2403}
2404
2405void
2406set_gdbarch_return_value (struct gdbarch *gdbarch,
2407 gdbarch_return_value_ftype return_value)
2408{
2409 gdbarch->return_value = return_value;
2410}
2411
0f71a2f6 2412void
b60c417a 2413gdbarch_extract_return_value (struct gdbarch *gdbarch, struct type *type, struct regcache *regcache, gdb_byte *valbuf)
ebba8386
AC
2414{
2415 gdb_assert (gdbarch != NULL);
956ac328 2416 gdb_assert (gdbarch->extract_return_value != NULL);
ebba8386
AC
2417 if (gdbarch_debug >= 2)
2418 fprintf_unfiltered (gdb_stdlog, "gdbarch_extract_return_value called\n");
2419 gdbarch->extract_return_value (type, regcache, valbuf);
2420}
2421
2422void
2423set_gdbarch_extract_return_value (struct gdbarch *gdbarch,
2424 gdbarch_extract_return_value_ftype extract_return_value)
2425{
2426 gdbarch->extract_return_value = extract_return_value;
2427}
2428
2429void
b60c417a 2430gdbarch_store_return_value (struct gdbarch *gdbarch, struct type *type, struct regcache *regcache, const gdb_byte *valbuf)
0f71a2f6 2431{
8de9bdc4 2432 gdb_assert (gdbarch != NULL);
956ac328 2433 gdb_assert (gdbarch->store_return_value != NULL);
0f71a2f6 2434 if (gdbarch_debug >= 2)
0f71a2f6 2435 fprintf_unfiltered (gdb_stdlog, "gdbarch_store_return_value called\n");
ebba8386 2436 gdbarch->store_return_value (type, regcache, valbuf);
0f71a2f6
JM
2437}
2438
2439void
104c1213
JM
2440set_gdbarch_store_return_value (struct gdbarch *gdbarch,
2441 gdbarch_store_return_value_ftype store_return_value)
0f71a2f6
JM
2442{
2443 gdbarch->store_return_value = store_return_value;
2444}
2445
92ad9cd9 2446int
b5622e8d 2447gdbarch_deprecated_use_struct_convention (struct gdbarch *gdbarch, int gcc_p, struct type *value_type)
92ad9cd9
AC
2448{
2449 gdb_assert (gdbarch != NULL);
b5622e8d 2450 gdb_assert (gdbarch->deprecated_use_struct_convention != NULL);
92ad9cd9 2451 if (gdbarch_debug >= 2)
b5622e8d
AC
2452 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_use_struct_convention called\n");
2453 return gdbarch->deprecated_use_struct_convention (gcc_p, value_type);
92ad9cd9
AC
2454}
2455
2456void
b5622e8d
AC
2457set_gdbarch_deprecated_use_struct_convention (struct gdbarch *gdbarch,
2458 gdbarch_deprecated_use_struct_convention_ftype deprecated_use_struct_convention)
92ad9cd9 2459{
b5622e8d 2460 gdbarch->deprecated_use_struct_convention = deprecated_use_struct_convention;
92ad9cd9
AC
2461}
2462
049ee0e4 2463int
74055713 2464gdbarch_deprecated_extract_struct_value_address_p (struct gdbarch *gdbarch)
049ee0e4
AC
2465{
2466 gdb_assert (gdbarch != NULL);
74055713 2467 return gdbarch->deprecated_extract_struct_value_address != NULL;
049ee0e4
AC
2468}
2469
2470CORE_ADDR
74055713 2471gdbarch_deprecated_extract_struct_value_address (struct gdbarch *gdbarch, struct regcache *regcache)
049ee0e4
AC
2472{
2473 gdb_assert (gdbarch != NULL);
74055713 2474 gdb_assert (gdbarch->deprecated_extract_struct_value_address != NULL);
049ee0e4 2475 if (gdbarch_debug >= 2)
74055713
AC
2476 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_extract_struct_value_address called\n");
2477 return gdbarch->deprecated_extract_struct_value_address (regcache);
049ee0e4
AC
2478}
2479
2480void
74055713
AC
2481set_gdbarch_deprecated_extract_struct_value_address (struct gdbarch *gdbarch,
2482 gdbarch_deprecated_extract_struct_value_address_ftype deprecated_extract_struct_value_address)
049ee0e4 2483{
74055713 2484 gdbarch->deprecated_extract_struct_value_address = deprecated_extract_struct_value_address;
049ee0e4
AC
2485}
2486
0f71a2f6
JM
2487CORE_ADDR
2488gdbarch_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2489{
8de9bdc4 2490 gdb_assert (gdbarch != NULL);
956ac328 2491 gdb_assert (gdbarch->skip_prologue != NULL);
0f71a2f6 2492 if (gdbarch_debug >= 2)
0f71a2f6
JM
2493 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_prologue called\n");
2494 return gdbarch->skip_prologue (ip);
2495}
2496
2497void
104c1213
JM
2498set_gdbarch_skip_prologue (struct gdbarch *gdbarch,
2499 gdbarch_skip_prologue_ftype skip_prologue)
0f71a2f6
JM
2500{
2501 gdbarch->skip_prologue = skip_prologue;
2502}
2503
2504int
2505gdbarch_inner_than (struct gdbarch *gdbarch, CORE_ADDR lhs, CORE_ADDR rhs)
2506{
8de9bdc4 2507 gdb_assert (gdbarch != NULL);
956ac328 2508 gdb_assert (gdbarch->inner_than != NULL);
0f71a2f6 2509 if (gdbarch_debug >= 2)
0f71a2f6
JM
2510 fprintf_unfiltered (gdb_stdlog, "gdbarch_inner_than called\n");
2511 return gdbarch->inner_than (lhs, rhs);
2512}
2513
2514void
104c1213
JM
2515set_gdbarch_inner_than (struct gdbarch *gdbarch,
2516 gdbarch_inner_than_ftype inner_than)
0f71a2f6
JM
2517{
2518 gdbarch->inner_than = inner_than;
2519}
2520
fc1a4b47 2521const gdb_byte *
adf40b2e 2522gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
0f71a2f6 2523{
8de9bdc4 2524 gdb_assert (gdbarch != NULL);
956ac328 2525 gdb_assert (gdbarch->breakpoint_from_pc != NULL);
0f71a2f6 2526 if (gdbarch_debug >= 2)
0f71a2f6
JM
2527 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_from_pc called\n");
2528 return gdbarch->breakpoint_from_pc (pcptr, lenptr);
2529}
2530
2531void
104c1213
JM
2532set_gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch,
2533 gdbarch_breakpoint_from_pc_ftype breakpoint_from_pc)
0f71a2f6
JM
2534{
2535 gdbarch->breakpoint_from_pc = breakpoint_from_pc;
2536}
2537
a1131521
KB
2538int
2539gdbarch_adjust_breakpoint_address_p (struct gdbarch *gdbarch)
2540{
2541 gdb_assert (gdbarch != NULL);
2542 return gdbarch->adjust_breakpoint_address != NULL;
2543}
2544
2545CORE_ADDR
2546gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
2547{
2548 gdb_assert (gdbarch != NULL);
2549 gdb_assert (gdbarch->adjust_breakpoint_address != NULL);
2550 if (gdbarch_debug >= 2)
2551 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_breakpoint_address called\n");
2552 return gdbarch->adjust_breakpoint_address (gdbarch, bpaddr);
2553}
2554
2555void
2556set_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch,
2557 gdbarch_adjust_breakpoint_address_ftype adjust_breakpoint_address)
2558{
2559 gdbarch->adjust_breakpoint_address = adjust_breakpoint_address;
2560}
2561
917317f4 2562int
8181d85f 2563gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
917317f4 2564{
8de9bdc4 2565 gdb_assert (gdbarch != NULL);
956ac328 2566 gdb_assert (gdbarch->memory_insert_breakpoint != NULL);
917317f4 2567 if (gdbarch_debug >= 2)
917317f4 2568 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_insert_breakpoint called\n");
8181d85f 2569 return gdbarch->memory_insert_breakpoint (bp_tgt);
917317f4
JM
2570}
2571
2572void
2573set_gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch,
2574 gdbarch_memory_insert_breakpoint_ftype memory_insert_breakpoint)
2575{
2576 gdbarch->memory_insert_breakpoint = memory_insert_breakpoint;
2577}
2578
2579int
8181d85f 2580gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
917317f4 2581{
8de9bdc4 2582 gdb_assert (gdbarch != NULL);
956ac328 2583 gdb_assert (gdbarch->memory_remove_breakpoint != NULL);
917317f4 2584 if (gdbarch_debug >= 2)
917317f4 2585 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_remove_breakpoint called\n");
8181d85f 2586 return gdbarch->memory_remove_breakpoint (bp_tgt);
917317f4
JM
2587}
2588
2589void
2590set_gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch,
2591 gdbarch_memory_remove_breakpoint_ftype memory_remove_breakpoint)
2592{
2593 gdbarch->memory_remove_breakpoint = memory_remove_breakpoint;
2594}
2595
0f71a2f6 2596CORE_ADDR
104c1213 2597gdbarch_decr_pc_after_break (struct gdbarch *gdbarch)
0f71a2f6 2598{
8de9bdc4 2599 gdb_assert (gdbarch != NULL);
71bd6bd4 2600 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
0f71a2f6 2601 if (gdbarch_debug >= 2)
0f71a2f6
JM
2602 fprintf_unfiltered (gdb_stdlog, "gdbarch_decr_pc_after_break called\n");
2603 return gdbarch->decr_pc_after_break;
2604}
2605
2606void
104c1213
JM
2607set_gdbarch_decr_pc_after_break (struct gdbarch *gdbarch,
2608 CORE_ADDR decr_pc_after_break)
0f71a2f6
JM
2609{
2610 gdbarch->decr_pc_after_break = decr_pc_after_break;
2611}
2612
2613CORE_ADDR
782263ab 2614gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch)
0f71a2f6 2615{
8de9bdc4 2616 gdb_assert (gdbarch != NULL);
782263ab 2617 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
0f71a2f6 2618 if (gdbarch_debug >= 2)
782263ab
AC
2619 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_function_start_offset called\n");
2620 return gdbarch->deprecated_function_start_offset;
0f71a2f6
JM
2621}
2622
2623void
782263ab
AC
2624set_gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch,
2625 CORE_ADDR deprecated_function_start_offset)
0f71a2f6 2626{
782263ab 2627 gdbarch->deprecated_function_start_offset = deprecated_function_start_offset;
0f71a2f6
JM
2628}
2629
123dc839
DJ
2630int
2631gdbarch_remote_register_number (struct gdbarch *gdbarch, int regno)
2632{
2633 gdb_assert (gdbarch != NULL);
2634 gdb_assert (gdbarch->remote_register_number != NULL);
2635 if (gdbarch_debug >= 2)
2636 fprintf_unfiltered (gdb_stdlog, "gdbarch_remote_register_number called\n");
2637 return gdbarch->remote_register_number (gdbarch, regno);
2638}
2639
2640void
2641set_gdbarch_remote_register_number (struct gdbarch *gdbarch,
2642 gdbarch_remote_register_number_ftype remote_register_number)
2643{
2644 gdbarch->remote_register_number = remote_register_number;
2645}
2646
b2756930
KB
2647int
2648gdbarch_fetch_tls_load_module_address_p (struct gdbarch *gdbarch)
2649{
2650 gdb_assert (gdbarch != NULL);
2651 return gdbarch->fetch_tls_load_module_address != NULL;
2652}
2653
2654CORE_ADDR
2655gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch, struct objfile *objfile)
2656{
2657 gdb_assert (gdbarch != NULL);
2658 gdb_assert (gdbarch->fetch_tls_load_module_address != NULL);
2659 if (gdbarch_debug >= 2)
2660 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_tls_load_module_address called\n");
2661 return gdbarch->fetch_tls_load_module_address (objfile);
2662}
2663
2664void
2665set_gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch,
2666 gdbarch_fetch_tls_load_module_address_ftype fetch_tls_load_module_address)
2667{
2668 gdbarch->fetch_tls_load_module_address = fetch_tls_load_module_address;
2669}
2670
0f71a2f6 2671CORE_ADDR
104c1213 2672gdbarch_frame_args_skip (struct gdbarch *gdbarch)
0f71a2f6 2673{
8de9bdc4 2674 gdb_assert (gdbarch != NULL);
5867a2fb 2675 /* Skip verify of frame_args_skip, invalid_p == 0 */
0f71a2f6 2676 if (gdbarch_debug >= 2)
0f71a2f6
JM
2677 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_args_skip called\n");
2678 return gdbarch->frame_args_skip;
2679}
2680
2681void
104c1213
JM
2682set_gdbarch_frame_args_skip (struct gdbarch *gdbarch,
2683 CORE_ADDR frame_args_skip)
0f71a2f6
JM
2684{
2685 gdbarch->frame_args_skip = frame_args_skip;
2686}
2687
12cc2063
AC
2688int
2689gdbarch_unwind_pc_p (struct gdbarch *gdbarch)
2690{
2691 gdb_assert (gdbarch != NULL);
956ac328 2692 return gdbarch->unwind_pc != NULL;
12cc2063
AC
2693}
2694
2695CORE_ADDR
2696gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
2697{
2698 gdb_assert (gdbarch != NULL);
956ac328 2699 gdb_assert (gdbarch->unwind_pc != NULL);
12cc2063
AC
2700 if (gdbarch_debug >= 2)
2701 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_pc called\n");
2702 return gdbarch->unwind_pc (gdbarch, next_frame);
2703}
2704
2705void
2706set_gdbarch_unwind_pc (struct gdbarch *gdbarch,
2707 gdbarch_unwind_pc_ftype unwind_pc)
2708{
2709 gdbarch->unwind_pc = unwind_pc;
2710}
2711
a9e5fdc2
AC
2712int
2713gdbarch_unwind_sp_p (struct gdbarch *gdbarch)
2714{
2715 gdb_assert (gdbarch != NULL);
956ac328 2716 return gdbarch->unwind_sp != NULL;
a9e5fdc2
AC
2717}
2718
2719CORE_ADDR
2720gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
2721{
2722 gdb_assert (gdbarch != NULL);
956ac328 2723 gdb_assert (gdbarch->unwind_sp != NULL);
a9e5fdc2
AC
2724 if (gdbarch_debug >= 2)
2725 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_sp called\n");
2726 return gdbarch->unwind_sp (gdbarch, next_frame);
2727}
2728
2729void
2730set_gdbarch_unwind_sp (struct gdbarch *gdbarch,
2731 gdbarch_unwind_sp_ftype unwind_sp)
2732{
2733 gdbarch->unwind_sp = unwind_sp;
2734}
2735
983a287a
AC
2736int
2737gdbarch_frame_num_args_p (struct gdbarch *gdbarch)
2738{
2739 gdb_assert (gdbarch != NULL);
956ac328 2740 return gdbarch->frame_num_args != NULL;
983a287a
AC
2741}
2742
0f71a2f6
JM
2743int
2744gdbarch_frame_num_args (struct gdbarch *gdbarch, struct frame_info *frame)
2745{
8de9bdc4 2746 gdb_assert (gdbarch != NULL);
956ac328 2747 gdb_assert (gdbarch->frame_num_args != NULL);
0f71a2f6 2748 if (gdbarch_debug >= 2)
0f71a2f6
JM
2749 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_num_args called\n");
2750 return gdbarch->frame_num_args (frame);
2751}
2752
2753void
104c1213
JM
2754set_gdbarch_frame_num_args (struct gdbarch *gdbarch,
2755 gdbarch_frame_num_args_ftype frame_num_args)
0f71a2f6
JM
2756{
2757 gdbarch->frame_num_args = frame_num_args;
2758}
2759
2ada493a 2760int
f27dd7fd 2761gdbarch_deprecated_stack_align_p (struct gdbarch *gdbarch)
2ada493a 2762{
8de9bdc4 2763 gdb_assert (gdbarch != NULL);
f27dd7fd 2764 return gdbarch->deprecated_stack_align != NULL;
2ada493a
AC
2765}
2766
2767CORE_ADDR
f27dd7fd 2768gdbarch_deprecated_stack_align (struct gdbarch *gdbarch, CORE_ADDR sp)
2ada493a 2769{
8de9bdc4 2770 gdb_assert (gdbarch != NULL);
f27dd7fd 2771 gdb_assert (gdbarch->deprecated_stack_align != NULL);
2ada493a 2772 if (gdbarch_debug >= 2)
f27dd7fd
AC
2773 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_stack_align called\n");
2774 return gdbarch->deprecated_stack_align (sp);
2ada493a
AC
2775}
2776
2777void
f27dd7fd
AC
2778set_gdbarch_deprecated_stack_align (struct gdbarch *gdbarch,
2779 gdbarch_deprecated_stack_align_ftype deprecated_stack_align)
2ada493a 2780{
f27dd7fd 2781 gdbarch->deprecated_stack_align = deprecated_stack_align;
2ada493a
AC
2782}
2783
dc604539
AC
2784int
2785gdbarch_frame_align_p (struct gdbarch *gdbarch)
2786{
2787 gdb_assert (gdbarch != NULL);
956ac328 2788 return gdbarch->frame_align != NULL;
dc604539
AC
2789}
2790
2791CORE_ADDR
2792gdbarch_frame_align (struct gdbarch *gdbarch, CORE_ADDR address)
2793{
2794 gdb_assert (gdbarch != NULL);
956ac328 2795 gdb_assert (gdbarch->frame_align != NULL);
dc604539
AC
2796 if (gdbarch_debug >= 2)
2797 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_align called\n");
2798 return gdbarch->frame_align (gdbarch, address);
2799}
2800
2801void
2802set_gdbarch_frame_align (struct gdbarch *gdbarch,
2803 gdbarch_frame_align_ftype frame_align)
2804{
2805 gdbarch->frame_align = frame_align;
2806}
2807
d03e67c9 2808int
88d89dbb 2809gdbarch_deprecated_reg_struct_has_addr_p (struct gdbarch *gdbarch)
d03e67c9 2810{
8de9bdc4 2811 gdb_assert (gdbarch != NULL);
88d89dbb 2812 return gdbarch->deprecated_reg_struct_has_addr != NULL;
d03e67c9
AC
2813}
2814
2815int
88d89dbb 2816gdbarch_deprecated_reg_struct_has_addr (struct gdbarch *gdbarch, int gcc_p, struct type *type)
d03e67c9 2817{
8de9bdc4 2818 gdb_assert (gdbarch != NULL);
88d89dbb 2819 gdb_assert (gdbarch->deprecated_reg_struct_has_addr != NULL);
d03e67c9 2820 if (gdbarch_debug >= 2)
88d89dbb
MK
2821 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_reg_struct_has_addr called\n");
2822 return gdbarch->deprecated_reg_struct_has_addr (gcc_p, type);
d03e67c9
AC
2823}
2824
2825void
88d89dbb
MK
2826set_gdbarch_deprecated_reg_struct_has_addr (struct gdbarch *gdbarch,
2827 gdbarch_deprecated_reg_struct_has_addr_ftype deprecated_reg_struct_has_addr)
d03e67c9 2828{
88d89dbb 2829 gdbarch->deprecated_reg_struct_has_addr = deprecated_reg_struct_has_addr;
d03e67c9
AC
2830}
2831
192cb3d4
MK
2832int
2833gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
2834{
2835 gdb_assert (gdbarch != NULL);
2836 gdb_assert (gdbarch->stabs_argument_has_addr != NULL);
2837 if (gdbarch_debug >= 2)
2838 fprintf_unfiltered (gdb_stdlog, "gdbarch_stabs_argument_has_addr called\n");
2839 return gdbarch->stabs_argument_has_addr (gdbarch, type);
2840}
2841
2842void
2843set_gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch,
2844 gdbarch_stabs_argument_has_addr_ftype stabs_argument_has_addr)
2845{
2846 gdbarch->stabs_argument_has_addr = stabs_argument_has_addr;
2847}
2848
8b148df9
AC
2849int
2850gdbarch_frame_red_zone_size (struct gdbarch *gdbarch)
2851{
2852 gdb_assert (gdbarch != NULL);
2853 if (gdbarch_debug >= 2)
2854 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_red_zone_size called\n");
2855 return gdbarch->frame_red_zone_size;
2856}
2857
2858void
2859set_gdbarch_frame_red_zone_size (struct gdbarch *gdbarch,
2860 int frame_red_zone_size)
2861{
2862 gdbarch->frame_red_zone_size = frame_red_zone_size;
2863}
2864
f517ea4e 2865CORE_ADDR
e2d0e7eb 2866gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr, struct target_ops *targ)
f517ea4e 2867{
8de9bdc4 2868 gdb_assert (gdbarch != NULL);
956ac328 2869 gdb_assert (gdbarch->convert_from_func_ptr_addr != NULL);
f517ea4e
PS
2870 if (gdbarch_debug >= 2)
2871 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_from_func_ptr_addr called\n");
e2d0e7eb 2872 return gdbarch->convert_from_func_ptr_addr (gdbarch, addr, targ);
f517ea4e
PS
2873}
2874
2875void
2876set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch,
2877 gdbarch_convert_from_func_ptr_addr_ftype convert_from_func_ptr_addr)
2878{
2879 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr;
2880}
2881
875e1767
AC
2882CORE_ADDR
2883gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
2884{
8de9bdc4 2885 gdb_assert (gdbarch != NULL);
956ac328 2886 gdb_assert (gdbarch->addr_bits_remove != NULL);
875e1767
AC
2887 if (gdbarch_debug >= 2)
2888 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bits_remove called\n");
2889 return gdbarch->addr_bits_remove (addr);
2890}
2891
2892void
2893set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch,
2894 gdbarch_addr_bits_remove_ftype addr_bits_remove)
2895{
2896 gdbarch->addr_bits_remove = addr_bits_remove;
2897}
2898
181c1381
RE
2899CORE_ADDR
2900gdbarch_smash_text_address (struct gdbarch *gdbarch, CORE_ADDR addr)
2901{
8de9bdc4 2902 gdb_assert (gdbarch != NULL);
956ac328 2903 gdb_assert (gdbarch->smash_text_address != NULL);
181c1381
RE
2904 if (gdbarch_debug >= 2)
2905 fprintf_unfiltered (gdb_stdlog, "gdbarch_smash_text_address called\n");
2906 return gdbarch->smash_text_address (addr);
2907}
2908
2909void
2910set_gdbarch_smash_text_address (struct gdbarch *gdbarch,
2911 gdbarch_smash_text_address_ftype smash_text_address)
2912{
2913 gdbarch->smash_text_address = smash_text_address;
2914}
2915
64c4637f
AC
2916int
2917gdbarch_software_single_step_p (struct gdbarch *gdbarch)
2918{
8de9bdc4 2919 gdb_assert (gdbarch != NULL);
956ac328 2920 return gdbarch->software_single_step != NULL;
64c4637f
AC
2921}
2922
e6590a1b 2923int
e0cd558a 2924gdbarch_software_single_step (struct gdbarch *gdbarch, struct regcache *regcache)
64c4637f 2925{
8de9bdc4 2926 gdb_assert (gdbarch != NULL);
956ac328 2927 gdb_assert (gdbarch->software_single_step != NULL);
64c4637f
AC
2928 if (gdbarch_debug >= 2)
2929 fprintf_unfiltered (gdb_stdlog, "gdbarch_software_single_step called\n");
e0cd558a 2930 return gdbarch->software_single_step (regcache);
64c4637f
AC
2931}
2932
2933void
2934set_gdbarch_software_single_step (struct gdbarch *gdbarch,
2935 gdbarch_software_single_step_ftype software_single_step)
2936{
2937 gdbarch->software_single_step = software_single_step;
2938}
2939
3352ef37
AC
2940int
2941gdbarch_single_step_through_delay_p (struct gdbarch *gdbarch)
2942{
2943 gdb_assert (gdbarch != NULL);
2944 return gdbarch->single_step_through_delay != NULL;
2945}
2946
2947int
2948gdbarch_single_step_through_delay (struct gdbarch *gdbarch, struct frame_info *frame)
2949{
2950 gdb_assert (gdbarch != NULL);
2951 gdb_assert (gdbarch->single_step_through_delay != NULL);
2952 if (gdbarch_debug >= 2)
2953 fprintf_unfiltered (gdb_stdlog, "gdbarch_single_step_through_delay called\n");
2954 return gdbarch->single_step_through_delay (gdbarch, frame);
2955}
2956
2957void
2958set_gdbarch_single_step_through_delay (struct gdbarch *gdbarch,
2959 gdbarch_single_step_through_delay_ftype single_step_through_delay)
2960{
2961 gdbarch->single_step_through_delay = single_step_through_delay;
2962}
2963
2bf0cb65 2964int
a89aa300 2965gdbarch_print_insn (struct gdbarch *gdbarch, bfd_vma vma, struct disassemble_info *info)
2bf0cb65 2966{
8de9bdc4 2967 gdb_assert (gdbarch != NULL);
956ac328 2968 gdb_assert (gdbarch->print_insn != NULL);
2bf0cb65
EZ
2969 if (gdbarch_debug >= 2)
2970 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_insn called\n");
2971 return gdbarch->print_insn (vma, info);
2972}
2973
2974void
2975set_gdbarch_print_insn (struct gdbarch *gdbarch,
2976 gdbarch_print_insn_ftype print_insn)
2977{
2978 gdbarch->print_insn = print_insn;
2979}
2980
bdcd319a
CV
2981CORE_ADDR
2982gdbarch_skip_trampoline_code (struct gdbarch *gdbarch, CORE_ADDR pc)
2983{
8de9bdc4 2984 gdb_assert (gdbarch != NULL);
956ac328 2985 gdb_assert (gdbarch->skip_trampoline_code != NULL);
bdcd319a
CV
2986 if (gdbarch_debug >= 2)
2987 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_trampoline_code called\n");
2988 return gdbarch->skip_trampoline_code (pc);
2989}
2990
2991void
2992set_gdbarch_skip_trampoline_code (struct gdbarch *gdbarch,
2993 gdbarch_skip_trampoline_code_ftype skip_trampoline_code)
2994{
2995 gdbarch->skip_trampoline_code = skip_trampoline_code;
2996}
2997
dea0c52f
MK
2998CORE_ADDR
2999gdbarch_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
3000{
3001 gdb_assert (gdbarch != NULL);
3002 gdb_assert (gdbarch->skip_solib_resolver != NULL);
3003 if (gdbarch_debug >= 2)
3004 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_solib_resolver called\n");
4c8c40e6 3005 return gdbarch->skip_solib_resolver (gdbarch, pc);
dea0c52f
MK
3006}
3007
3008void
3009set_gdbarch_skip_solib_resolver (struct gdbarch *gdbarch,
3010 gdbarch_skip_solib_resolver_ftype skip_solib_resolver)
3011{
3012 gdbarch->skip_solib_resolver = skip_solib_resolver;
3013}
3014
d50355b6
MS
3015int
3016gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, CORE_ADDR pc, char *name)
3017{
3018 gdb_assert (gdbarch != NULL);
956ac328 3019 gdb_assert (gdbarch->in_solib_return_trampoline != NULL);
d50355b6
MS
3020 if (gdbarch_debug >= 2)
3021 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_solib_return_trampoline called\n");
3022 return gdbarch->in_solib_return_trampoline (pc, name);
3023}
3024
3025void
3026set_gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch,
3027 gdbarch_in_solib_return_trampoline_ftype in_solib_return_trampoline)
3028{
3029 gdbarch->in_solib_return_trampoline = in_solib_return_trampoline;
3030}
3031
c12260ac
CV
3032int
3033gdbarch_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR addr)
3034{
8de9bdc4 3035 gdb_assert (gdbarch != NULL);
956ac328 3036 gdb_assert (gdbarch->in_function_epilogue_p != NULL);
c12260ac
CV
3037 if (gdbarch_debug >= 2)
3038 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_function_epilogue_p called\n");
3039 return gdbarch->in_function_epilogue_p (gdbarch, addr);
3040}
3041
3042void
3043set_gdbarch_in_function_epilogue_p (struct gdbarch *gdbarch,
3044 gdbarch_in_function_epilogue_p_ftype in_function_epilogue_p)
3045{
3046 gdbarch->in_function_epilogue_p = in_function_epilogue_p;
3047}
3048
552c04a7
TT
3049char *
3050gdbarch_construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
3051{
8de9bdc4 3052 gdb_assert (gdbarch != NULL);
956ac328 3053 gdb_assert (gdbarch->construct_inferior_arguments != NULL);
552c04a7
TT
3054 if (gdbarch_debug >= 2)
3055 fprintf_unfiltered (gdb_stdlog, "gdbarch_construct_inferior_arguments called\n");
3056 return gdbarch->construct_inferior_arguments (gdbarch, argc, argv);
3057}
3058
3059void
3060set_gdbarch_construct_inferior_arguments (struct gdbarch *gdbarch,
3061 gdbarch_construct_inferior_arguments_ftype construct_inferior_arguments)
3062{
3063 gdbarch->construct_inferior_arguments = construct_inferior_arguments;
3064}
3065
a2cf933a
EZ
3066void
3067gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch, asymbol *sym, struct minimal_symbol *msym)
3068{
8de9bdc4 3069 gdb_assert (gdbarch != NULL);
956ac328 3070 gdb_assert (gdbarch->elf_make_msymbol_special != NULL);
a2cf933a
EZ
3071 if (gdbarch_debug >= 2)
3072 fprintf_unfiltered (gdb_stdlog, "gdbarch_elf_make_msymbol_special called\n");
3073 gdbarch->elf_make_msymbol_special (sym, msym);
3074}
3075
3076void
3077set_gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch,
3078 gdbarch_elf_make_msymbol_special_ftype elf_make_msymbol_special)
3079{
3080 gdbarch->elf_make_msymbol_special = elf_make_msymbol_special;
3081}
3082
3083void
3084gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch, int val, struct minimal_symbol *msym)
3085{
8de9bdc4 3086 gdb_assert (gdbarch != NULL);
956ac328 3087 gdb_assert (gdbarch->coff_make_msymbol_special != NULL);
a2cf933a
EZ
3088 if (gdbarch_debug >= 2)
3089 fprintf_unfiltered (gdb_stdlog, "gdbarch_coff_make_msymbol_special called\n");
3090 gdbarch->coff_make_msymbol_special (val, msym);
3091}
3092
3093void
3094set_gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch,
3095 gdbarch_coff_make_msymbol_special_ftype coff_make_msymbol_special)
3096{
3097 gdbarch->coff_make_msymbol_special = coff_make_msymbol_special;
3098}
3099
5720643c
JB
3100const char *
3101gdbarch_name_of_malloc (struct gdbarch *gdbarch)
3102{
3103 gdb_assert (gdbarch != NULL);
3104 /* Skip verify of name_of_malloc, invalid_p == 0 */
3105 if (gdbarch_debug >= 2)
3106 fprintf_unfiltered (gdb_stdlog, "gdbarch_name_of_malloc called\n");
3107 return gdbarch->name_of_malloc;
3108}
3109
3110void
3111set_gdbarch_name_of_malloc (struct gdbarch *gdbarch,
3112 const char * name_of_malloc)
3113{
3114 gdbarch->name_of_malloc = name_of_malloc;
3115}
3116
c4ed33b9
AC
3117int
3118gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch)
3119{
3120 gdb_assert (gdbarch != NULL);
3121 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
3122 if (gdbarch_debug >= 2)
3123 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_step_breakpoint called\n");
3124 return gdbarch->cannot_step_breakpoint;
3125}
3126
3127void
3128set_gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch,
3129 int cannot_step_breakpoint)
3130{
3131 gdbarch->cannot_step_breakpoint = cannot_step_breakpoint;
3132}
3133
f74fa174
MM
3134int
3135gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch)
3136{
3137 gdb_assert (gdbarch != NULL);
3138 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
3139 if (gdbarch_debug >= 2)
3140 fprintf_unfiltered (gdb_stdlog, "gdbarch_have_nonsteppable_watchpoint called\n");
3141 return gdbarch->have_nonsteppable_watchpoint;
3142}
3143
3144void
3145set_gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch,
967c0d83 3146 int have_nonsteppable_watchpoint)
f74fa174
MM
3147{
3148 gdbarch->have_nonsteppable_watchpoint = have_nonsteppable_watchpoint;
3149}
3150
8b2dbe47
KB
3151int
3152gdbarch_address_class_type_flags_p (struct gdbarch *gdbarch)
3153{
3154 gdb_assert (gdbarch != NULL);
956ac328 3155 return gdbarch->address_class_type_flags != NULL;
8b2dbe47
KB
3156}
3157
3158int
3159gdbarch_address_class_type_flags (struct gdbarch *gdbarch, int byte_size, int dwarf2_addr_class)
3160{
3161 gdb_assert (gdbarch != NULL);
956ac328 3162 gdb_assert (gdbarch->address_class_type_flags != NULL);
8b2dbe47
KB
3163 if (gdbarch_debug >= 2)
3164 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags called\n");
3165 return gdbarch->address_class_type_flags (byte_size, dwarf2_addr_class);
3166}
3167
3168void
3169set_gdbarch_address_class_type_flags (struct gdbarch *gdbarch,
3170 gdbarch_address_class_type_flags_ftype address_class_type_flags)
3171{
3172 gdbarch->address_class_type_flags = address_class_type_flags;
3173}
3174
3175int
3176gdbarch_address_class_type_flags_to_name_p (struct gdbarch *gdbarch)
3177{
3178 gdb_assert (gdbarch != NULL);
956ac328 3179 return gdbarch->address_class_type_flags_to_name != NULL;
8b2dbe47
KB
3180}
3181
321432c0 3182const char *
8b2dbe47
KB
3183gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
3184{
3185 gdb_assert (gdbarch != NULL);
956ac328 3186 gdb_assert (gdbarch->address_class_type_flags_to_name != NULL);
8b2dbe47
KB
3187 if (gdbarch_debug >= 2)
3188 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags_to_name called\n");
5f11f355 3189 return gdbarch->address_class_type_flags_to_name (gdbarch, type_flags);
8b2dbe47
KB
3190}
3191
3192void
3193set_gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch,
3194 gdbarch_address_class_type_flags_to_name_ftype address_class_type_flags_to_name)
3195{
3196 gdbarch->address_class_type_flags_to_name = address_class_type_flags_to_name;
3197}
3198
3199int
3200gdbarch_address_class_name_to_type_flags_p (struct gdbarch *gdbarch)
3201{
3202 gdb_assert (gdbarch != NULL);
956ac328 3203 return gdbarch->address_class_name_to_type_flags != NULL;
8b2dbe47
KB
3204}
3205
3206int
321432c0 3207gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch, const char *name, int *type_flags_ptr)
8b2dbe47
KB
3208{
3209 gdb_assert (gdbarch != NULL);
956ac328 3210 gdb_assert (gdbarch->address_class_name_to_type_flags != NULL);
8b2dbe47
KB
3211 if (gdbarch_debug >= 2)
3212 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_name_to_type_flags called\n");
5f11f355 3213 return gdbarch->address_class_name_to_type_flags (gdbarch, name, type_flags_ptr);
8b2dbe47
KB
3214}
3215
3216void
3217set_gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch,
3218 gdbarch_address_class_name_to_type_flags_ftype address_class_name_to_type_flags)
3219{
3220 gdbarch->address_class_name_to_type_flags = address_class_name_to_type_flags;
3221}
3222
b59ff9d5
AC
3223int
3224gdbarch_register_reggroup_p (struct gdbarch *gdbarch, int regnum, struct reggroup *reggroup)
3225{
3226 gdb_assert (gdbarch != NULL);
956ac328 3227 gdb_assert (gdbarch->register_reggroup_p != NULL);
b59ff9d5
AC
3228 if (gdbarch_debug >= 2)
3229 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_reggroup_p called\n");
3230 return gdbarch->register_reggroup_p (gdbarch, regnum, reggroup);
3231}
3232
3233void
3234set_gdbarch_register_reggroup_p (struct gdbarch *gdbarch,
3235 gdbarch_register_reggroup_p_ftype register_reggroup_p)
3236{
3237 gdbarch->register_reggroup_p = register_reggroup_p;
3238}
3239
143985b7
AF
3240int
3241gdbarch_fetch_pointer_argument_p (struct gdbarch *gdbarch)
3242{
3243 gdb_assert (gdbarch != NULL);
956ac328 3244 return gdbarch->fetch_pointer_argument != NULL;
143985b7
AF
3245}
3246
3247CORE_ADDR
3248gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch, struct frame_info *frame, int argi, struct type *type)
3249{
3250 gdb_assert (gdbarch != NULL);
956ac328 3251 gdb_assert (gdbarch->fetch_pointer_argument != NULL);
143985b7
AF
3252 if (gdbarch_debug >= 2)
3253 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_pointer_argument called\n");
3254 return gdbarch->fetch_pointer_argument (frame, argi, type);
3255}
3256
3257void
3258set_gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch,
3259 gdbarch_fetch_pointer_argument_ftype fetch_pointer_argument)
3260{
3261 gdbarch->fetch_pointer_argument = fetch_pointer_argument;
3262}
3263
6ce6d90f
MK
3264int
3265gdbarch_regset_from_core_section_p (struct gdbarch *gdbarch)
3266{
3267 gdb_assert (gdbarch != NULL);
3268 return gdbarch->regset_from_core_section != NULL;
3269}
3270
3271const struct regset *
3272gdbarch_regset_from_core_section (struct gdbarch *gdbarch, const char *sect_name, size_t sect_size)
3273{
3274 gdb_assert (gdbarch != NULL);
3275 gdb_assert (gdbarch->regset_from_core_section != NULL);
3276 if (gdbarch_debug >= 2)
3277 fprintf_unfiltered (gdb_stdlog, "gdbarch_regset_from_core_section called\n");
3278 return gdbarch->regset_from_core_section (gdbarch, sect_name, sect_size);
3279}
3280
3281void
3282set_gdbarch_regset_from_core_section (struct gdbarch *gdbarch,
3283 gdbarch_regset_from_core_section_ftype regset_from_core_section)
3284{
3285 gdbarch->regset_from_core_section = regset_from_core_section;
3286}
3287
0d5de010
DJ
3288int
3289gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch)
3290{
3291 gdb_assert (gdbarch != NULL);
3292 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
3293 if (gdbarch_debug >= 2)
3294 fprintf_unfiltered (gdb_stdlog, "gdbarch_vtable_function_descriptors called\n");
3295 return gdbarch->vtable_function_descriptors;
3296}
3297
3298void
3299set_gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch,
3300 int vtable_function_descriptors)
3301{
3302 gdbarch->vtable_function_descriptors = vtable_function_descriptors;
3303}
3304
3305int
3306gdbarch_vbit_in_delta (struct gdbarch *gdbarch)
3307{
3308 gdb_assert (gdbarch != NULL);
3309 /* Skip verify of vbit_in_delta, invalid_p == 0 */
3310 if (gdbarch_debug >= 2)
3311 fprintf_unfiltered (gdb_stdlog, "gdbarch_vbit_in_delta called\n");
3312 return gdbarch->vbit_in_delta;
3313}
3314
3315void
3316set_gdbarch_vbit_in_delta (struct gdbarch *gdbarch,
3317 int vbit_in_delta)
3318{
3319 gdbarch->vbit_in_delta = vbit_in_delta;
3320}
3321
6d350bb5
UW
3322int
3323gdbarch_skip_permanent_breakpoint_p (struct gdbarch *gdbarch)
3324{
3325 gdb_assert (gdbarch != NULL);
3326 return gdbarch->skip_permanent_breakpoint != NULL;
3327}
3328
3329void
3330gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch, struct regcache *regcache)
3331{
3332 gdb_assert (gdbarch != NULL);
3333 gdb_assert (gdbarch->skip_permanent_breakpoint != NULL);
3334 if (gdbarch_debug >= 2)
3335 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_permanent_breakpoint called\n");
3336 gdbarch->skip_permanent_breakpoint (regcache);
3337}
3338
3339void
3340set_gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch,
3341 gdbarch_skip_permanent_breakpoint_ftype skip_permanent_breakpoint)
3342{
3343 gdbarch->skip_permanent_breakpoint = skip_permanent_breakpoint;
3344}
3345
1c772458
UW
3346int
3347gdbarch_overlay_update_p (struct gdbarch *gdbarch)
3348{
3349 gdb_assert (gdbarch != NULL);
3350 return gdbarch->overlay_update != NULL;
3351}
3352
3353void
3354gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect)
3355{
3356 gdb_assert (gdbarch != NULL);
3357 gdb_assert (gdbarch->overlay_update != NULL);
3358 if (gdbarch_debug >= 2)
3359 fprintf_unfiltered (gdb_stdlog, "gdbarch_overlay_update called\n");
3360 gdbarch->overlay_update (osect);
3361}
3362
3363void
3364set_gdbarch_overlay_update (struct gdbarch *gdbarch,
3365 gdbarch_overlay_update_ftype overlay_update)
3366{
3367 gdbarch->overlay_update = overlay_update;
3368}
3369
0f71a2f6 3370
be5a57e1 3371/* Keep a registry of per-architecture data-pointers required by GDB
0f71a2f6
JM
3372 modules. */
3373
3374struct gdbarch_data
3375{
95160752 3376 unsigned index;
76860b5f 3377 int init_p;
030f20e1
AC
3378 gdbarch_data_pre_init_ftype *pre_init;
3379 gdbarch_data_post_init_ftype *post_init;
0f71a2f6
JM
3380};
3381
3382struct gdbarch_data_registration
adf40b2e 3383{
adf40b2e
JM
3384 struct gdbarch_data *data;
3385 struct gdbarch_data_registration *next;
3386};
0f71a2f6 3387
be5a57e1 3388struct gdbarch_data_registry
adf40b2e 3389{
95160752 3390 unsigned nr;
adf40b2e
JM
3391 struct gdbarch_data_registration *registrations;
3392};
0f71a2f6 3393
be5a57e1 3394struct gdbarch_data_registry gdbarch_data_registry =
0f71a2f6
JM
3395{
3396 0, NULL,
3397};
3398
030f20e1
AC
3399static struct gdbarch_data *
3400gdbarch_data_register (gdbarch_data_pre_init_ftype *pre_init,
3401 gdbarch_data_post_init_ftype *post_init)
0f71a2f6
JM
3402{
3403 struct gdbarch_data_registration **curr;
76860b5f 3404 /* Append the new registraration. */
be5a57e1 3405 for (curr = &gdbarch_data_registry.registrations;
0f71a2f6
JM
3406 (*curr) != NULL;
3407 curr = &(*curr)->next);
3408 (*curr) = XMALLOC (struct gdbarch_data_registration);
3409 (*curr)->next = NULL;
0f71a2f6 3410 (*curr)->data = XMALLOC (struct gdbarch_data);
be5a57e1 3411 (*curr)->data->index = gdbarch_data_registry.nr++;
030f20e1
AC
3412 (*curr)->data->pre_init = pre_init;
3413 (*curr)->data->post_init = post_init;
76860b5f 3414 (*curr)->data->init_p = 1;
0f71a2f6
JM
3415 return (*curr)->data;
3416}
3417
030f20e1
AC
3418struct gdbarch_data *
3419gdbarch_data_register_pre_init (gdbarch_data_pre_init_ftype *pre_init)
3420{
3421 return gdbarch_data_register (pre_init, NULL);
3422}
3423
3424struct gdbarch_data *
3425gdbarch_data_register_post_init (gdbarch_data_post_init_ftype *post_init)
3426{
3427 return gdbarch_data_register (NULL, post_init);
3428}
0f71a2f6 3429
b3cc3077 3430/* Create/delete the gdbarch data vector. */
95160752
AC
3431
3432static void
b3cc3077 3433alloc_gdbarch_data (struct gdbarch *gdbarch)
95160752 3434{
b3cc3077
JB
3435 gdb_assert (gdbarch->data == NULL);
3436 gdbarch->nr_data = gdbarch_data_registry.nr;
aebd7893 3437 gdbarch->data = GDBARCH_OBSTACK_CALLOC (gdbarch, gdbarch->nr_data, void *);
0f71a2f6
JM
3438}
3439
76860b5f 3440/* Initialize the current value of the specified per-architecture
b3cc3077
JB
3441 data-pointer. */
3442
95160752 3443void
030f20e1
AC
3444deprecated_set_gdbarch_data (struct gdbarch *gdbarch,
3445 struct gdbarch_data *data,
3446 void *pointer)
95160752
AC
3447{
3448 gdb_assert (data->index < gdbarch->nr_data);
aebd7893 3449 gdb_assert (gdbarch->data[data->index] == NULL);
030f20e1 3450 gdb_assert (data->pre_init == NULL);
95160752
AC
3451 gdbarch->data[data->index] = pointer;
3452}
3453
0f71a2f6
JM
3454/* Return the current value of the specified per-architecture
3455 data-pointer. */
3456
3457void *
451fbdda 3458gdbarch_data (struct gdbarch *gdbarch, struct gdbarch_data *data)
0f71a2f6 3459{
451fbdda 3460 gdb_assert (data->index < gdbarch->nr_data);
030f20e1 3461 if (gdbarch->data[data->index] == NULL)
76860b5f 3462 {
030f20e1
AC
3463 /* The data-pointer isn't initialized, call init() to get a
3464 value. */
3465 if (data->pre_init != NULL)
3466 /* Mid architecture creation: pass just the obstack, and not
3467 the entire architecture, as that way it isn't possible for
3468 pre-init code to refer to undefined architecture
3469 fields. */
3470 gdbarch->data[data->index] = data->pre_init (gdbarch->obstack);
3471 else if (gdbarch->initialized_p
3472 && data->post_init != NULL)
3473 /* Post architecture creation: pass the entire architecture
3474 (as all fields are valid), but be careful to also detect
3475 recursive references. */
3476 {
3477 gdb_assert (data->init_p);
3478 data->init_p = 0;
3479 gdbarch->data[data->index] = data->post_init (gdbarch);
3480 data->init_p = 1;
3481 }
3482 else
3483 /* The architecture initialization hasn't completed - punt -
3484 hope that the caller knows what they are doing. Once
3485 deprecated_set_gdbarch_data has been initialized, this can be
3486 changed to an internal error. */
3487 return NULL;
76860b5f
AC
3488 gdb_assert (gdbarch->data[data->index] != NULL);
3489 }
451fbdda 3490 return gdbarch->data[data->index];
0f71a2f6
JM
3491}
3492
3493
3494
be5a57e1 3495/* Keep a registry of swapped data required by GDB modules. */
0f71a2f6
JM
3496
3497struct gdbarch_swap
3498{
3499 void *swap;
3500 struct gdbarch_swap_registration *source;
3501 struct gdbarch_swap *next;
3502};
3503
3504struct gdbarch_swap_registration
adf40b2e
JM
3505{
3506 void *data;
3507 unsigned long sizeof_data;
3508 gdbarch_swap_ftype *init;
3509 struct gdbarch_swap_registration *next;
3510};
0f71a2f6 3511
be5a57e1 3512struct gdbarch_swap_registry
adf40b2e
JM
3513{
3514 int nr;
3515 struct gdbarch_swap_registration *registrations;
3516};
0f71a2f6 3517
be5a57e1 3518struct gdbarch_swap_registry gdbarch_swap_registry =
0f71a2f6
JM
3519{
3520 0, NULL,
3521};
3522
3523void
046a4708
AC
3524deprecated_register_gdbarch_swap (void *data,
3525 unsigned long sizeof_data,
3526 gdbarch_swap_ftype *init)
0f71a2f6
JM
3527{
3528 struct gdbarch_swap_registration **rego;
be5a57e1 3529 for (rego = &gdbarch_swap_registry.registrations;
0f71a2f6
JM
3530 (*rego) != NULL;
3531 rego = &(*rego)->next);
3532 (*rego) = XMALLOC (struct gdbarch_swap_registration);
3533 (*rego)->next = NULL;
3534 (*rego)->init = init;
3535 (*rego)->data = data;
3536 (*rego)->sizeof_data = sizeof_data;
3537}
3538
40af4b0c 3539static void
7de2341d 3540current_gdbarch_swap_init_hack (void)
0f71a2f6
JM
3541{
3542 struct gdbarch_swap_registration *rego;
7de2341d 3543 struct gdbarch_swap **curr = &current_gdbarch->swap;
be5a57e1 3544 for (rego = gdbarch_swap_registry.registrations;
0f71a2f6
JM
3545 rego != NULL;
3546 rego = rego->next)
3547 {
3548 if (rego->data != NULL)
3549 {
7de2341d
AC
3550 (*curr) = GDBARCH_OBSTACK_ZALLOC (current_gdbarch,
3551 struct gdbarch_swap);
0f71a2f6 3552 (*curr)->source = rego;
7de2341d
AC
3553 (*curr)->swap = gdbarch_obstack_zalloc (current_gdbarch,
3554 rego->sizeof_data);
0f71a2f6 3555 (*curr)->next = NULL;
0f71a2f6
JM
3556 curr = &(*curr)->next;
3557 }
3558 if (rego->init != NULL)
3559 rego->init ();
3560 }
3561}
3562
7de2341d
AC
3563static struct gdbarch *
3564current_gdbarch_swap_out_hack (void)
0f71a2f6 3565{
7de2341d 3566 struct gdbarch *old_gdbarch = current_gdbarch;
0f71a2f6 3567 struct gdbarch_swap *curr;
7de2341d
AC
3568
3569 gdb_assert (old_gdbarch != NULL);
3570 for (curr = old_gdbarch->swap;
0f71a2f6
JM
3571 curr != NULL;
3572 curr = curr->next)
7de2341d
AC
3573 {
3574 memcpy (curr->swap, curr->source->data, curr->source->sizeof_data);
3575 memset (curr->source->data, 0, curr->source->sizeof_data);
3576 }
3577 current_gdbarch = NULL;
3578 return old_gdbarch;
0f71a2f6
JM
3579}
3580
0f71a2f6 3581static void
7de2341d 3582current_gdbarch_swap_in_hack (struct gdbarch *new_gdbarch)
0f71a2f6
JM
3583{
3584 struct gdbarch_swap *curr;
7de2341d
AC
3585
3586 gdb_assert (current_gdbarch == NULL);
3587 for (curr = new_gdbarch->swap;
0f71a2f6
JM
3588 curr != NULL;
3589 curr = curr->next)
3590 memcpy (curr->source->data, curr->swap, curr->source->sizeof_data);
7de2341d 3591 current_gdbarch = new_gdbarch;
0f71a2f6
JM
3592}
3593
3594
be5a57e1 3595/* Keep a registry of the architectures known by GDB. */
0f71a2f6 3596
4b9b3959 3597struct gdbarch_registration
0f71a2f6
JM
3598{
3599 enum bfd_architecture bfd_architecture;
3600 gdbarch_init_ftype *init;
4b9b3959 3601 gdbarch_dump_tdep_ftype *dump_tdep;
0f71a2f6 3602 struct gdbarch_list *arches;
4b9b3959 3603 struct gdbarch_registration *next;
0f71a2f6
JM
3604};
3605
be5a57e1 3606static struct gdbarch_registration *gdbarch_registry = NULL;
0f71a2f6 3607
b4a20239
AC
3608static void
3609append_name (const char ***buf, int *nr, const char *name)
3610{
3611 *buf = xrealloc (*buf, sizeof (char**) * (*nr + 1));
3612 (*buf)[*nr] = name;
3613 *nr += 1;
3614}
3615
3616const char **
3617gdbarch_printable_names (void)
3618{
7996bcec
AC
3619 /* Accumulate a list of names based on the registed list of
3620 architectures. */
3621 enum bfd_architecture a;
3622 int nr_arches = 0;
3623 const char **arches = NULL;
3624 struct gdbarch_registration *rego;
3625 for (rego = gdbarch_registry;
3626 rego != NULL;
3627 rego = rego->next)
b4a20239 3628 {
7996bcec
AC
3629 const struct bfd_arch_info *ap;
3630 ap = bfd_lookup_arch (rego->bfd_architecture, 0);
3631 if (ap == NULL)
3632 internal_error (__FILE__, __LINE__,
e2e0b3e5 3633 _("gdbarch_architecture_names: multi-arch unknown"));
7996bcec
AC
3634 do
3635 {
3636 append_name (&arches, &nr_arches, ap->printable_name);
3637 ap = ap->next;
3638 }
3639 while (ap != NULL);
b4a20239 3640 }
7996bcec
AC
3641 append_name (&arches, &nr_arches, NULL);
3642 return arches;
b4a20239
AC
3643}
3644
3645
0f71a2f6 3646void
4b9b3959
AC
3647gdbarch_register (enum bfd_architecture bfd_architecture,
3648 gdbarch_init_ftype *init,
3649 gdbarch_dump_tdep_ftype *dump_tdep)
0f71a2f6 3650{
4b9b3959 3651 struct gdbarch_registration **curr;
0f71a2f6 3652 const struct bfd_arch_info *bfd_arch_info;
ec3d358c 3653 /* Check that BFD recognizes this architecture */
0f71a2f6
JM
3654 bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
3655 if (bfd_arch_info == NULL)
3656 {
8e65ff28 3657 internal_error (__FILE__, __LINE__,
85c07804 3658 _("gdbarch: Attempt to register unknown architecture (%d)"),
8e65ff28 3659 bfd_architecture);
0f71a2f6
JM
3660 }
3661 /* Check that we haven't seen this architecture before */
be5a57e1 3662 for (curr = &gdbarch_registry;
0f71a2f6
JM
3663 (*curr) != NULL;
3664 curr = &(*curr)->next)
3665 {
3666 if (bfd_architecture == (*curr)->bfd_architecture)
8e65ff28 3667 internal_error (__FILE__, __LINE__,
85c07804 3668 _("gdbarch: Duplicate registraration of architecture (%s)"),
8e65ff28 3669 bfd_arch_info->printable_name);
0f71a2f6
JM
3670 }
3671 /* log it */
3672 if (gdbarch_debug)
3673 fprintf_unfiltered (gdb_stdlog, "register_gdbarch_init (%s, 0x%08lx)\n",
3674 bfd_arch_info->printable_name,
3675 (long) init);
3676 /* Append it */
4b9b3959 3677 (*curr) = XMALLOC (struct gdbarch_registration);
0f71a2f6
JM
3678 (*curr)->bfd_architecture = bfd_architecture;
3679 (*curr)->init = init;
4b9b3959 3680 (*curr)->dump_tdep = dump_tdep;
0f71a2f6
JM
3681 (*curr)->arches = NULL;
3682 (*curr)->next = NULL;
4b9b3959
AC
3683}
3684
3685void
3686register_gdbarch_init (enum bfd_architecture bfd_architecture,
3687 gdbarch_init_ftype *init)
3688{
3689 gdbarch_register (bfd_architecture, init, NULL);
0f71a2f6 3690}
0f71a2f6
JM
3691
3692
424163ea 3693/* Look for an architecture using gdbarch_info. */
0f71a2f6
JM
3694
3695struct gdbarch_list *
104c1213
JM
3696gdbarch_list_lookup_by_info (struct gdbarch_list *arches,
3697 const struct gdbarch_info *info)
0f71a2f6
JM
3698{
3699 for (; arches != NULL; arches = arches->next)
3700 {
3701 if (info->bfd_arch_info != arches->gdbarch->bfd_arch_info)
3702 continue;
3703 if (info->byte_order != arches->gdbarch->byte_order)
3704 continue;
4be87837
DJ
3705 if (info->osabi != arches->gdbarch->osabi)
3706 continue;
424163ea
DJ
3707 if (info->target_desc != arches->gdbarch->target_desc)
3708 continue;
0f71a2f6
JM
3709 return arches;
3710 }
3711 return NULL;
3712}
3713
3714
ebdba546
AC
3715/* Find an architecture that matches the specified INFO. Create a new
3716 architecture if needed. Return that new architecture. Assumes
3717 that there is no current architecture. */
0f71a2f6 3718
ebdba546 3719static struct gdbarch *
7a107747 3720find_arch_by_info (struct gdbarch_info info)
0f71a2f6
JM
3721{
3722 struct gdbarch *new_gdbarch;
4b9b3959 3723 struct gdbarch_registration *rego;
0f71a2f6 3724
ebdba546
AC
3725 /* The existing architecture has been swapped out - all this code
3726 works from a clean slate. */
3727 gdb_assert (current_gdbarch == NULL);
3728
b732d07d 3729 /* Fill in missing parts of the INFO struct using a number of
7a107747
DJ
3730 sources: "set ..."; INFOabfd supplied; and the global
3731 defaults. */
3732 gdbarch_info_fill (&info);
4be87837 3733
b732d07d
AC
3734 /* Must have found some sort of architecture. */
3735 gdb_assert (info.bfd_arch_info != NULL);
0f71a2f6
JM
3736
3737 if (gdbarch_debug)
3738 {
0f71a2f6 3739 fprintf_unfiltered (gdb_stdlog,
ebdba546 3740 "find_arch_by_info: info.bfd_arch_info %s\n",
0f71a2f6
JM
3741 (info.bfd_arch_info != NULL
3742 ? info.bfd_arch_info->printable_name
3743 : "(null)"));
3744 fprintf_unfiltered (gdb_stdlog,
ebdba546 3745 "find_arch_by_info: info.byte_order %d (%s)\n",
0f71a2f6 3746 info.byte_order,
d7449b42 3747 (info.byte_order == BFD_ENDIAN_BIG ? "big"
778eb05e 3748 : info.byte_order == BFD_ENDIAN_LITTLE ? "little"
0f71a2f6 3749 : "default"));
4be87837 3750 fprintf_unfiltered (gdb_stdlog,
ebdba546 3751 "find_arch_by_info: info.osabi %d (%s)\n",
4be87837 3752 info.osabi, gdbarch_osabi_name (info.osabi));
0f71a2f6 3753 fprintf_unfiltered (gdb_stdlog,
ebdba546 3754 "find_arch_by_info: info.abfd 0x%lx\n",
0f71a2f6
JM
3755 (long) info.abfd);
3756 fprintf_unfiltered (gdb_stdlog,
ebdba546 3757 "find_arch_by_info: info.tdep_info 0x%lx\n",
0f71a2f6
JM
3758 (long) info.tdep_info);
3759 }
3760
ebdba546 3761 /* Find the tdep code that knows about this architecture. */
b732d07d
AC
3762 for (rego = gdbarch_registry;
3763 rego != NULL;
3764 rego = rego->next)
3765 if (rego->bfd_architecture == info.bfd_arch_info->arch)
3766 break;
3767 if (rego == NULL)
3768 {
3769 if (gdbarch_debug)
ebdba546
AC
3770 fprintf_unfiltered (gdb_stdlog, "find_arch_by_info: "
3771 "No matching architecture\n");
b732d07d
AC
3772 return 0;
3773 }
3774
ebdba546 3775 /* Ask the tdep code for an architecture that matches "info". */
0f71a2f6
JM
3776 new_gdbarch = rego->init (info, rego->arches);
3777
ebdba546
AC
3778 /* Did the tdep code like it? No. Reject the change and revert to
3779 the old architecture. */
0f71a2f6
JM
3780 if (new_gdbarch == NULL)
3781 {
3782 if (gdbarch_debug)
ebdba546
AC
3783 fprintf_unfiltered (gdb_stdlog, "find_arch_by_info: "
3784 "Target rejected architecture\n");
3785 return NULL;
0f71a2f6
JM
3786 }
3787
ebdba546
AC
3788 /* Is this a pre-existing architecture (as determined by already
3789 being initialized)? Move it to the front of the architecture
3790 list (keeping the list sorted Most Recently Used). */
3791 if (new_gdbarch->initialized_p)
0f71a2f6 3792 {
ebdba546
AC
3793 struct gdbarch_list **list;
3794 struct gdbarch_list *this;
0f71a2f6 3795 if (gdbarch_debug)
ebdba546
AC
3796 fprintf_unfiltered (gdb_stdlog, "find_arch_by_info: "
3797 "Previous architecture 0x%08lx (%s) selected\n",
0f71a2f6
JM
3798 (long) new_gdbarch,
3799 new_gdbarch->bfd_arch_info->printable_name);
ebdba546
AC
3800 /* Find the existing arch in the list. */
3801 for (list = &rego->arches;
3802 (*list) != NULL && (*list)->gdbarch != new_gdbarch;
3803 list = &(*list)->next);
3804 /* It had better be in the list of architectures. */
3805 gdb_assert ((*list) != NULL && (*list)->gdbarch == new_gdbarch);
3806 /* Unlink THIS. */
3807 this = (*list);
3808 (*list) = this->next;
3809 /* Insert THIS at the front. */
3810 this->next = rego->arches;
3811 rego->arches = this;
3812 /* Return it. */
3813 return new_gdbarch;
0f71a2f6
JM
3814 }
3815
ebdba546
AC
3816 /* It's a new architecture. */
3817 if (gdbarch_debug)
3818 fprintf_unfiltered (gdb_stdlog, "find_arch_by_info: "
3819 "New architecture 0x%08lx (%s) selected\n",
3820 (long) new_gdbarch,
3821 new_gdbarch->bfd_arch_info->printable_name);
3822
3823 /* Insert the new architecture into the front of the architecture
3824 list (keep the list sorted Most Recently Used). */
0f79675b
AC
3825 {
3826 struct gdbarch_list *this = XMALLOC (struct gdbarch_list);
3827 this->next = rego->arches;
3828 this->gdbarch = new_gdbarch;
3829 rego->arches = this;
3830 }
0f71a2f6 3831
4b9b3959
AC
3832 /* Check that the newly installed architecture is valid. Plug in
3833 any post init values. */
3834 new_gdbarch->dump_tdep = rego->dump_tdep;
0f71a2f6 3835 verify_gdbarch (new_gdbarch);
ebdba546 3836 new_gdbarch->initialized_p = 1;
0f71a2f6 3837
ebdba546
AC
3838 /* Initialize any per-architecture swap areas. This phase requires
3839 a valid global CURRENT_GDBARCH. Set it momentarially, and then
3840 swap the entire architecture out. */
3841 current_gdbarch = new_gdbarch;
7de2341d 3842 current_gdbarch_swap_init_hack ();
ebdba546 3843 current_gdbarch_swap_out_hack ();
67c2c32c 3844
4b9b3959 3845 if (gdbarch_debug)
ebdba546 3846 gdbarch_dump (new_gdbarch, gdb_stdlog);
4b9b3959 3847
ebdba546 3848 return new_gdbarch;
0f71a2f6 3849}
c906108c 3850
ebdba546
AC
3851struct gdbarch *
3852gdbarch_find_by_info (struct gdbarch_info info)
3853{
3854 /* Save the previously selected architecture, setting the global to
3855 NULL. This stops things like gdbarch->init() trying to use the
3856 previous architecture's configuration. The previous architecture
3857 may not even be of the same architecture family. The most recent
3858 architecture of the same family is found at the head of the
3859 rego->arches list. */
3860 struct gdbarch *old_gdbarch = current_gdbarch_swap_out_hack ();
3861
3862 /* Find the specified architecture. */
7a107747 3863 struct gdbarch *new_gdbarch = find_arch_by_info (info);
ebdba546
AC
3864
3865 /* Restore the existing architecture. */
3866 gdb_assert (current_gdbarch == NULL);
3867 current_gdbarch_swap_in_hack (old_gdbarch);
3868
3869 return new_gdbarch;
3870}
3871
3872/* Make the specified architecture current, swapping the existing one
3873 out. */
3874
3875void
3876deprecated_current_gdbarch_select_hack (struct gdbarch *new_gdbarch)
3877{
3878 gdb_assert (new_gdbarch != NULL);
3879 gdb_assert (current_gdbarch != NULL);
3880 gdb_assert (new_gdbarch->initialized_p);
3881 current_gdbarch_swap_out_hack ();
3882 current_gdbarch_swap_in_hack (new_gdbarch);
3883 architecture_changed_event ();
35f196d9 3884 reinit_frame_cache ();
ebdba546 3885}
c906108c 3886
104c1213 3887extern void _initialize_gdbarch (void);
b4a20239 3888
c906108c 3889void
7c7651b2 3890_initialize_gdbarch (void)
c906108c 3891{
5d161b24
DB
3892 struct cmd_list_element *c;
3893
85c07804
AC
3894 add_setshow_zinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\
3895Set architecture debugging."), _("\
3896Show architecture debugging."), _("\
3897When non-zero, architecture debugging is enabled."),
3898 NULL,
920d2a44 3899 show_gdbarch_debug,
85c07804 3900 &setdebuglist, &showdebuglist);
c906108c 3901}
This page took 0.870222 seconds and 4 git commands to generate.