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