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