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