1 /* *INDENT-OFF* */ /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */
4 /* Dynamic architecture support for GDB, the GNU debugger.
6 Copyright (C) 1998-2018 Free Software Foundation, Inc.
8 This file is part of GDB.
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 3 of the License, or
13 (at your option) any later version.
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.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* This file was created with the aid of ``gdbarch.sh''.
25 The Bourne shell script ``gdbarch.sh'' creates the files
26 ``new-gdbarch.c'' and ``new-gdbarch.h and then compares them
27 against the existing ``gdbarch.[hc]''. Any differences found
30 If editing this file, please also run gdbarch.sh and merge any
31 changes into that script. Conversely, when making sweeping changes
32 to this file, modifying gdbarch.sh and using its output may prove
37 #include "arch-utils.h"
43 #include "floatformat.h"
44 #include "reggroups.h"
46 #include "gdb_obstack.h"
47 #include "observable.h"
52 /* Static function declarations */
54 static void alloc_gdbarch_data (struct gdbarch *);
56 /* Non-zero if we want to trace architecture code. */
59 #define GDBARCH_DEBUG 0
61 unsigned int gdbarch_debug = GDBARCH_DEBUG;
63 show_gdbarch_debug (struct ui_file *file, int from_tty,
64 struct cmd_list_element *c, const char *value)
66 fprintf_filtered (file, _("Architecture debugging is %s.\n"), value);
70 pformat (const struct floatformat **format)
75 /* Just print out one of them - this is only for diagnostics. */
76 return format[0]->name;
80 pstring (const char *string)
88 pstring_ptr (char **string)
90 if (string == NULL || *string == NULL)
95 /* Helper function to print a list of strings, represented as "const
96 char *const *". The list is printed comma-separated. */
99 pstring_list (const char *const *list)
101 static char ret[100];
102 const char *const *p;
109 for (p = list; *p != NULL && offset < sizeof (ret); ++p)
111 size_t s = xsnprintf (ret + offset, sizeof (ret) - offset, "%s, ", *p);
117 gdb_assert (offset - 2 < sizeof (ret));
118 ret[offset - 2] = '\0';
125 /* Maintain the struct gdbarch object. */
129 /* Has this architecture been fully initialized? */
132 /* An obstack bound to the lifetime of the architecture. */
133 struct obstack *obstack;
135 /* basic architectural information. */
136 const struct bfd_arch_info * bfd_arch_info;
137 enum bfd_endian byte_order;
138 enum bfd_endian byte_order_for_code;
139 enum gdb_osabi osabi;
140 const struct target_desc * target_desc;
142 /* target specific vector. */
143 struct gdbarch_tdep *tdep;
144 gdbarch_dump_tdep_ftype *dump_tdep;
146 /* per-architecture data-pointers. */
150 /* Multi-arch values.
152 When extending this structure you must:
156 Declare set/get functions and define the corresponding
159 gdbarch_alloc(): If zero/NULL is not a suitable default,
160 initialize the new field.
162 verify_gdbarch(): Confirm that the target updated the field
165 gdbarch_dump(): Add a fprintf_unfiltered call so that the new
168 get_gdbarch(): Implement the set/get functions (probably using
169 the macro's as shortcuts).
179 const struct floatformat ** half_format;
181 const struct floatformat ** float_format;
183 const struct floatformat ** double_format;
185 const struct floatformat ** long_double_format;
188 gdbarch_floatformat_for_type_ftype *floatformat_for_type;
191 int dwarf2_addr_size;
193 gdbarch_read_pc_ftype *read_pc;
194 gdbarch_write_pc_ftype *write_pc;
195 gdbarch_virtual_frame_pointer_ftype *virtual_frame_pointer;
196 gdbarch_pseudo_register_read_ftype *pseudo_register_read;
197 gdbarch_pseudo_register_read_value_ftype *pseudo_register_read_value;
198 gdbarch_pseudo_register_write_ftype *pseudo_register_write;
201 gdbarch_ax_pseudo_register_collect_ftype *ax_pseudo_register_collect;
202 gdbarch_ax_pseudo_register_push_stack_ftype *ax_pseudo_register_push_stack;
203 gdbarch_handle_segmentation_fault_ftype *handle_segmentation_fault;
208 gdbarch_stab_reg_to_regnum_ftype *stab_reg_to_regnum;
209 gdbarch_ecoff_reg_to_regnum_ftype *ecoff_reg_to_regnum;
210 gdbarch_sdb_reg_to_regnum_ftype *sdb_reg_to_regnum;
211 gdbarch_dwarf2_reg_to_regnum_ftype *dwarf2_reg_to_regnum;
212 gdbarch_register_name_ftype *register_name;
213 gdbarch_register_type_ftype *register_type;
214 gdbarch_dummy_id_ftype *dummy_id;
215 int deprecated_fp_regnum;
216 gdbarch_push_dummy_call_ftype *push_dummy_call;
217 int call_dummy_location;
218 gdbarch_push_dummy_code_ftype *push_dummy_code;
219 gdbarch_code_of_frame_writable_ftype *code_of_frame_writable;
220 gdbarch_print_registers_info_ftype *print_registers_info;
221 gdbarch_print_float_info_ftype *print_float_info;
222 gdbarch_print_vector_info_ftype *print_vector_info;
223 gdbarch_register_sim_regno_ftype *register_sim_regno;
224 gdbarch_cannot_fetch_register_ftype *cannot_fetch_register;
225 gdbarch_cannot_store_register_ftype *cannot_store_register;
226 gdbarch_get_longjmp_target_ftype *get_longjmp_target;
227 int believe_pcc_promotion;
228 gdbarch_convert_register_p_ftype *convert_register_p;
229 gdbarch_register_to_value_ftype *register_to_value;
230 gdbarch_value_to_register_ftype *value_to_register;
231 gdbarch_value_from_register_ftype *value_from_register;
232 gdbarch_pointer_to_address_ftype *pointer_to_address;
233 gdbarch_address_to_pointer_ftype *address_to_pointer;
234 gdbarch_integer_to_address_ftype *integer_to_address;
235 gdbarch_return_value_ftype *return_value;
236 gdbarch_return_in_first_hidden_param_p_ftype *return_in_first_hidden_param_p;
237 gdbarch_skip_prologue_ftype *skip_prologue;
238 gdbarch_skip_main_prologue_ftype *skip_main_prologue;
239 gdbarch_skip_entrypoint_ftype *skip_entrypoint;
240 gdbarch_inner_than_ftype *inner_than;
241 gdbarch_breakpoint_from_pc_ftype *breakpoint_from_pc;
242 gdbarch_breakpoint_kind_from_pc_ftype *breakpoint_kind_from_pc;
243 gdbarch_sw_breakpoint_from_kind_ftype *sw_breakpoint_from_kind;
244 gdbarch_breakpoint_kind_from_current_state_ftype *breakpoint_kind_from_current_state;
245 gdbarch_adjust_breakpoint_address_ftype *adjust_breakpoint_address;
246 gdbarch_memory_insert_breakpoint_ftype *memory_insert_breakpoint;
247 gdbarch_memory_remove_breakpoint_ftype *memory_remove_breakpoint;
248 CORE_ADDR decr_pc_after_break;
249 CORE_ADDR deprecated_function_start_offset;
250 gdbarch_remote_register_number_ftype *remote_register_number;
251 gdbarch_fetch_tls_load_module_address_ftype *fetch_tls_load_module_address;
252 CORE_ADDR frame_args_skip;
253 gdbarch_unwind_pc_ftype *unwind_pc;
254 gdbarch_unwind_sp_ftype *unwind_sp;
255 gdbarch_frame_num_args_ftype *frame_num_args;
256 gdbarch_frame_align_ftype *frame_align;
257 gdbarch_stabs_argument_has_addr_ftype *stabs_argument_has_addr;
258 int frame_red_zone_size;
259 gdbarch_convert_from_func_ptr_addr_ftype *convert_from_func_ptr_addr;
260 gdbarch_addr_bits_remove_ftype *addr_bits_remove;
261 int significant_addr_bit;
262 gdbarch_software_single_step_ftype *software_single_step;
263 gdbarch_single_step_through_delay_ftype *single_step_through_delay;
264 gdbarch_print_insn_ftype *print_insn;
265 gdbarch_skip_trampoline_code_ftype *skip_trampoline_code;
266 gdbarch_skip_solib_resolver_ftype *skip_solib_resolver;
267 gdbarch_in_solib_return_trampoline_ftype *in_solib_return_trampoline;
268 gdbarch_in_indirect_branch_thunk_ftype *in_indirect_branch_thunk;
269 gdbarch_stack_frame_destroyed_p_ftype *stack_frame_destroyed_p;
270 gdbarch_elf_make_msymbol_special_ftype *elf_make_msymbol_special;
271 gdbarch_coff_make_msymbol_special_ftype *coff_make_msymbol_special;
272 gdbarch_make_symbol_special_ftype *make_symbol_special;
273 gdbarch_adjust_dwarf2_addr_ftype *adjust_dwarf2_addr;
274 gdbarch_adjust_dwarf2_line_ftype *adjust_dwarf2_line;
275 int cannot_step_breakpoint;
276 int have_nonsteppable_watchpoint;
277 gdbarch_address_class_type_flags_ftype *address_class_type_flags;
278 gdbarch_address_class_type_flags_to_name_ftype *address_class_type_flags_to_name;
279 gdbarch_execute_dwarf_cfa_vendor_op_ftype *execute_dwarf_cfa_vendor_op;
280 gdbarch_address_class_name_to_type_flags_ftype *address_class_name_to_type_flags;
281 gdbarch_register_reggroup_p_ftype *register_reggroup_p;
282 gdbarch_fetch_pointer_argument_ftype *fetch_pointer_argument;
283 gdbarch_iterate_over_regset_sections_ftype *iterate_over_regset_sections;
284 gdbarch_make_corefile_notes_ftype *make_corefile_notes;
285 gdbarch_find_memory_regions_ftype *find_memory_regions;
286 gdbarch_core_xfer_shared_libraries_ftype *core_xfer_shared_libraries;
287 gdbarch_core_xfer_shared_libraries_aix_ftype *core_xfer_shared_libraries_aix;
288 gdbarch_core_pid_to_str_ftype *core_pid_to_str;
289 gdbarch_core_thread_name_ftype *core_thread_name;
290 gdbarch_core_xfer_siginfo_ftype *core_xfer_siginfo;
291 const char * gcore_bfd_target;
292 int vtable_function_descriptors;
294 gdbarch_skip_permanent_breakpoint_ftype *skip_permanent_breakpoint;
295 ULONGEST max_insn_length;
296 gdbarch_displaced_step_copy_insn_ftype *displaced_step_copy_insn;
297 gdbarch_displaced_step_hw_singlestep_ftype *displaced_step_hw_singlestep;
298 gdbarch_displaced_step_fixup_ftype *displaced_step_fixup;
299 gdbarch_displaced_step_location_ftype *displaced_step_location;
300 gdbarch_relocate_instruction_ftype *relocate_instruction;
301 gdbarch_overlay_update_ftype *overlay_update;
302 gdbarch_core_read_description_ftype *core_read_description;
303 gdbarch_static_transform_name_ftype *static_transform_name;
304 int sofun_address_maybe_missing;
305 gdbarch_process_record_ftype *process_record;
306 gdbarch_process_record_signal_ftype *process_record_signal;
307 gdbarch_gdb_signal_from_target_ftype *gdb_signal_from_target;
308 gdbarch_gdb_signal_to_target_ftype *gdb_signal_to_target;
309 gdbarch_get_siginfo_type_ftype *get_siginfo_type;
310 gdbarch_record_special_symbol_ftype *record_special_symbol;
311 gdbarch_get_syscall_number_ftype *get_syscall_number;
312 const char * xml_syscall_file;
313 struct syscalls_info * syscalls_info;
314 const char *const * stap_integer_prefixes;
315 const char *const * stap_integer_suffixes;
316 const char *const * stap_register_prefixes;
317 const char *const * stap_register_suffixes;
318 const char *const * stap_register_indirection_prefixes;
319 const char *const * stap_register_indirection_suffixes;
320 const char * stap_gdb_register_prefix;
321 const char * stap_gdb_register_suffix;
322 gdbarch_stap_is_single_operand_ftype *stap_is_single_operand;
323 gdbarch_stap_parse_special_token_ftype *stap_parse_special_token;
324 gdbarch_dtrace_parse_probe_argument_ftype *dtrace_parse_probe_argument;
325 gdbarch_dtrace_probe_is_enabled_ftype *dtrace_probe_is_enabled;
326 gdbarch_dtrace_enable_probe_ftype *dtrace_enable_probe;
327 gdbarch_dtrace_disable_probe_ftype *dtrace_disable_probe;
328 int has_global_solist;
329 int has_global_breakpoints;
330 gdbarch_has_shared_address_space_ftype *has_shared_address_space;
331 gdbarch_fast_tracepoint_valid_at_ftype *fast_tracepoint_valid_at;
332 gdbarch_guess_tracepoint_registers_ftype *guess_tracepoint_registers;
333 gdbarch_auto_charset_ftype *auto_charset;
334 gdbarch_auto_wide_charset_ftype *auto_wide_charset;
335 const char * solib_symbols_extension;
336 int has_dos_based_file_system;
337 gdbarch_gen_return_address_ftype *gen_return_address;
338 gdbarch_info_proc_ftype *info_proc;
339 gdbarch_core_info_proc_ftype *core_info_proc;
340 gdbarch_iterate_over_objfiles_in_search_order_ftype *iterate_over_objfiles_in_search_order;
341 struct ravenscar_arch_ops * ravenscar_ops;
342 gdbarch_insn_is_call_ftype *insn_is_call;
343 gdbarch_insn_is_ret_ftype *insn_is_ret;
344 gdbarch_insn_is_jump_ftype *insn_is_jump;
345 gdbarch_auxv_parse_ftype *auxv_parse;
346 gdbarch_print_auxv_entry_ftype *print_auxv_entry;
347 gdbarch_vsyscall_range_ftype *vsyscall_range;
348 gdbarch_infcall_mmap_ftype *infcall_mmap;
349 gdbarch_infcall_munmap_ftype *infcall_munmap;
350 gdbarch_gcc_target_options_ftype *gcc_target_options;
351 gdbarch_gnu_triplet_regexp_ftype *gnu_triplet_regexp;
352 gdbarch_addressable_memory_unit_size_ftype *addressable_memory_unit_size;
353 const char * disassembler_options_implicit;
354 char ** disassembler_options;
355 const disasm_options_and_args_t * valid_disassembler_options;
356 gdbarch_type_align_ftype *type_align;
359 /* Create a new ``struct gdbarch'' based on information provided by
360 ``struct gdbarch_info''. */
363 gdbarch_alloc (const struct gdbarch_info *info,
364 struct gdbarch_tdep *tdep)
366 struct gdbarch *gdbarch;
368 /* Create an obstack for allocating all the per-architecture memory,
369 then use that to allocate the architecture vector. */
370 struct obstack *obstack = XNEW (struct obstack);
371 obstack_init (obstack);
372 gdbarch = XOBNEW (obstack, struct gdbarch);
373 memset (gdbarch, 0, sizeof (*gdbarch));
374 gdbarch->obstack = obstack;
376 alloc_gdbarch_data (gdbarch);
378 gdbarch->tdep = tdep;
380 gdbarch->bfd_arch_info = info->bfd_arch_info;
381 gdbarch->byte_order = info->byte_order;
382 gdbarch->byte_order_for_code = info->byte_order_for_code;
383 gdbarch->osabi = info->osabi;
384 gdbarch->target_desc = info->target_desc;
386 /* Force the explicit initialization of these. */
387 gdbarch->bits_big_endian = (gdbarch->byte_order == BFD_ENDIAN_BIG);
388 gdbarch->short_bit = 2*TARGET_CHAR_BIT;
389 gdbarch->int_bit = 4*TARGET_CHAR_BIT;
390 gdbarch->long_bit = 4*TARGET_CHAR_BIT;
391 gdbarch->long_long_bit = 2*gdbarch->long_bit;
392 gdbarch->half_bit = 2*TARGET_CHAR_BIT;
393 gdbarch->float_bit = 4*TARGET_CHAR_BIT;
394 gdbarch->double_bit = 8*TARGET_CHAR_BIT;
395 gdbarch->long_double_bit = 8*TARGET_CHAR_BIT;
396 gdbarch->wchar_bit = 4*TARGET_CHAR_BIT;
397 gdbarch->wchar_signed = -1;
398 gdbarch->floatformat_for_type = default_floatformat_for_type;
399 gdbarch->ptr_bit = gdbarch->int_bit;
400 gdbarch->char_signed = -1;
401 gdbarch->virtual_frame_pointer = legacy_virtual_frame_pointer;
402 gdbarch->num_regs = -1;
403 gdbarch->sp_regnum = -1;
404 gdbarch->pc_regnum = -1;
405 gdbarch->ps_regnum = -1;
406 gdbarch->fp0_regnum = -1;
407 gdbarch->stab_reg_to_regnum = no_op_reg_to_regnum;
408 gdbarch->ecoff_reg_to_regnum = no_op_reg_to_regnum;
409 gdbarch->sdb_reg_to_regnum = no_op_reg_to_regnum;
410 gdbarch->dwarf2_reg_to_regnum = no_op_reg_to_regnum;
411 gdbarch->deprecated_fp_regnum = -1;
412 gdbarch->call_dummy_location = AT_ENTRY_POINT;
413 gdbarch->code_of_frame_writable = default_code_of_frame_writable;
414 gdbarch->print_registers_info = default_print_registers_info;
415 gdbarch->print_float_info = default_print_float_info;
416 gdbarch->register_sim_regno = legacy_register_sim_regno;
417 gdbarch->cannot_fetch_register = cannot_register_not;
418 gdbarch->cannot_store_register = cannot_register_not;
419 gdbarch->convert_register_p = generic_convert_register_p;
420 gdbarch->value_from_register = default_value_from_register;
421 gdbarch->pointer_to_address = unsigned_pointer_to_address;
422 gdbarch->address_to_pointer = unsigned_address_to_pointer;
423 gdbarch->return_in_first_hidden_param_p = default_return_in_first_hidden_param_p;
424 gdbarch->breakpoint_from_pc = default_breakpoint_from_pc;
425 gdbarch->sw_breakpoint_from_kind = NULL;
426 gdbarch->breakpoint_kind_from_current_state = default_breakpoint_kind_from_current_state;
427 gdbarch->memory_insert_breakpoint = default_memory_insert_breakpoint;
428 gdbarch->memory_remove_breakpoint = default_memory_remove_breakpoint;
429 gdbarch->remote_register_number = default_remote_register_number;
430 gdbarch->stabs_argument_has_addr = default_stabs_argument_has_addr;
431 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr_identity;
432 gdbarch->addr_bits_remove = core_addr_identity;
433 gdbarch->print_insn = default_print_insn;
434 gdbarch->skip_trampoline_code = generic_skip_trampoline_code;
435 gdbarch->skip_solib_resolver = generic_skip_solib_resolver;
436 gdbarch->in_solib_return_trampoline = generic_in_solib_return_trampoline;
437 gdbarch->in_indirect_branch_thunk = default_in_indirect_branch_thunk;
438 gdbarch->stack_frame_destroyed_p = generic_stack_frame_destroyed_p;
439 gdbarch->coff_make_msymbol_special = default_coff_make_msymbol_special;
440 gdbarch->make_symbol_special = default_make_symbol_special;
441 gdbarch->adjust_dwarf2_addr = default_adjust_dwarf2_addr;
442 gdbarch->adjust_dwarf2_line = default_adjust_dwarf2_line;
443 gdbarch->execute_dwarf_cfa_vendor_op = default_execute_dwarf_cfa_vendor_op;
444 gdbarch->register_reggroup_p = default_register_reggroup_p;
445 gdbarch->skip_permanent_breakpoint = default_skip_permanent_breakpoint;
446 gdbarch->displaced_step_hw_singlestep = default_displaced_step_hw_singlestep;
447 gdbarch->displaced_step_fixup = NULL;
448 gdbarch->displaced_step_location = NULL;
449 gdbarch->relocate_instruction = NULL;
450 gdbarch->has_shared_address_space = default_has_shared_address_space;
451 gdbarch->fast_tracepoint_valid_at = default_fast_tracepoint_valid_at;
452 gdbarch->guess_tracepoint_registers = default_guess_tracepoint_registers;
453 gdbarch->auto_charset = default_auto_charset;
454 gdbarch->auto_wide_charset = default_auto_wide_charset;
455 gdbarch->gen_return_address = default_gen_return_address;
456 gdbarch->iterate_over_objfiles_in_search_order = default_iterate_over_objfiles_in_search_order;
457 gdbarch->ravenscar_ops = NULL;
458 gdbarch->insn_is_call = default_insn_is_call;
459 gdbarch->insn_is_ret = default_insn_is_ret;
460 gdbarch->insn_is_jump = default_insn_is_jump;
461 gdbarch->print_auxv_entry = default_print_auxv_entry;
462 gdbarch->vsyscall_range = default_vsyscall_range;
463 gdbarch->infcall_mmap = default_infcall_mmap;
464 gdbarch->infcall_munmap = default_infcall_munmap;
465 gdbarch->gcc_target_options = default_gcc_target_options;
466 gdbarch->gnu_triplet_regexp = default_gnu_triplet_regexp;
467 gdbarch->addressable_memory_unit_size = default_addressable_memory_unit_size;
468 gdbarch->type_align = default_type_align;
469 /* gdbarch_alloc() */
476 obstack *gdbarch_obstack (gdbarch *arch)
478 return arch->obstack;
484 gdbarch_obstack_strdup (struct gdbarch *arch, const char *string)
486 return obstack_strdup (arch->obstack, string);
490 /* Free a gdbarch struct. This should never happen in normal
491 operation --- once you've created a gdbarch, you keep it around.
492 However, if an architecture's init function encounters an error
493 building the structure, it may need to clean up a partially
494 constructed gdbarch. */
497 gdbarch_free (struct gdbarch *arch)
499 struct obstack *obstack;
501 gdb_assert (arch != NULL);
502 gdb_assert (!arch->initialized_p);
503 obstack = arch->obstack;
504 obstack_free (obstack, 0); /* Includes the ARCH. */
509 /* Ensure that all values in a GDBARCH are reasonable. */
512 verify_gdbarch (struct gdbarch *gdbarch)
517 if (gdbarch->byte_order == BFD_ENDIAN_UNKNOWN)
518 log.puts ("\n\tbyte-order");
519 if (gdbarch->bfd_arch_info == NULL)
520 log.puts ("\n\tbfd_arch_info");
521 /* Check those that need to be defined for the given multi-arch level. */
522 /* Skip verify of bits_big_endian, invalid_p == 0 */
523 /* Skip verify of short_bit, invalid_p == 0 */
524 /* Skip verify of int_bit, invalid_p == 0 */
525 /* Skip verify of long_bit, invalid_p == 0 */
526 /* Skip verify of long_long_bit, invalid_p == 0 */
527 /* Skip verify of half_bit, invalid_p == 0 */
528 if (gdbarch->half_format == 0)
529 gdbarch->half_format = floatformats_ieee_half;
530 /* Skip verify of float_bit, invalid_p == 0 */
531 if (gdbarch->float_format == 0)
532 gdbarch->float_format = floatformats_ieee_single;
533 /* Skip verify of double_bit, invalid_p == 0 */
534 if (gdbarch->double_format == 0)
535 gdbarch->double_format = floatformats_ieee_double;
536 /* Skip verify of long_double_bit, invalid_p == 0 */
537 if (gdbarch->long_double_format == 0)
538 gdbarch->long_double_format = floatformats_ieee_double;
539 /* Skip verify of wchar_bit, invalid_p == 0 */
540 if (gdbarch->wchar_signed == -1)
541 gdbarch->wchar_signed = 1;
542 /* Skip verify of floatformat_for_type, invalid_p == 0 */
543 /* Skip verify of ptr_bit, invalid_p == 0 */
544 if (gdbarch->addr_bit == 0)
545 gdbarch->addr_bit = gdbarch_ptr_bit (gdbarch);
546 if (gdbarch->dwarf2_addr_size == 0)
547 gdbarch->dwarf2_addr_size = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
548 if (gdbarch->char_signed == -1)
549 gdbarch->char_signed = 1;
550 /* Skip verify of read_pc, has predicate. */
551 /* Skip verify of write_pc, has predicate. */
552 /* Skip verify of virtual_frame_pointer, invalid_p == 0 */
553 /* Skip verify of pseudo_register_read, has predicate. */
554 /* Skip verify of pseudo_register_read_value, has predicate. */
555 /* Skip verify of pseudo_register_write, has predicate. */
556 if (gdbarch->num_regs == -1)
557 log.puts ("\n\tnum_regs");
558 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
559 /* Skip verify of ax_pseudo_register_collect, has predicate. */
560 /* Skip verify of ax_pseudo_register_push_stack, has predicate. */
561 /* Skip verify of handle_segmentation_fault, has predicate. */
562 /* Skip verify of sp_regnum, invalid_p == 0 */
563 /* Skip verify of pc_regnum, invalid_p == 0 */
564 /* Skip verify of ps_regnum, invalid_p == 0 */
565 /* Skip verify of fp0_regnum, invalid_p == 0 */
566 /* Skip verify of stab_reg_to_regnum, invalid_p == 0 */
567 /* Skip verify of ecoff_reg_to_regnum, invalid_p == 0 */
568 /* Skip verify of sdb_reg_to_regnum, invalid_p == 0 */
569 /* Skip verify of dwarf2_reg_to_regnum, invalid_p == 0 */
570 if (gdbarch->register_name == 0)
571 log.puts ("\n\tregister_name");
572 /* Skip verify of register_type, has predicate. */
573 /* Skip verify of dummy_id, has predicate. */
574 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
575 /* Skip verify of push_dummy_call, has predicate. */
576 /* Skip verify of call_dummy_location, invalid_p == 0 */
577 /* Skip verify of push_dummy_code, has predicate. */
578 /* Skip verify of code_of_frame_writable, invalid_p == 0 */
579 /* Skip verify of print_registers_info, invalid_p == 0 */
580 /* Skip verify of print_float_info, invalid_p == 0 */
581 /* Skip verify of print_vector_info, has predicate. */
582 /* Skip verify of register_sim_regno, invalid_p == 0 */
583 /* Skip verify of cannot_fetch_register, invalid_p == 0 */
584 /* Skip verify of cannot_store_register, invalid_p == 0 */
585 /* Skip verify of get_longjmp_target, has predicate. */
586 /* Skip verify of convert_register_p, invalid_p == 0 */
587 /* Skip verify of value_from_register, invalid_p == 0 */
588 /* Skip verify of pointer_to_address, invalid_p == 0 */
589 /* Skip verify of address_to_pointer, invalid_p == 0 */
590 /* Skip verify of integer_to_address, has predicate. */
591 /* Skip verify of return_value, has predicate. */
592 /* Skip verify of return_in_first_hidden_param_p, invalid_p == 0 */
593 if (gdbarch->skip_prologue == 0)
594 log.puts ("\n\tskip_prologue");
595 /* Skip verify of skip_main_prologue, has predicate. */
596 /* Skip verify of skip_entrypoint, has predicate. */
597 if (gdbarch->inner_than == 0)
598 log.puts ("\n\tinner_than");
599 /* Skip verify of breakpoint_from_pc, invalid_p == 0 */
600 if (gdbarch->breakpoint_kind_from_pc == 0)
601 log.puts ("\n\tbreakpoint_kind_from_pc");
602 /* Skip verify of sw_breakpoint_from_kind, invalid_p == 0 */
603 /* Skip verify of breakpoint_kind_from_current_state, invalid_p == 0 */
604 /* Skip verify of adjust_breakpoint_address, has predicate. */
605 /* Skip verify of memory_insert_breakpoint, invalid_p == 0 */
606 /* Skip verify of memory_remove_breakpoint, invalid_p == 0 */
607 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
608 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
609 /* Skip verify of remote_register_number, invalid_p == 0 */
610 /* Skip verify of fetch_tls_load_module_address, has predicate. */
611 /* Skip verify of frame_args_skip, invalid_p == 0 */
612 /* Skip verify of unwind_pc, has predicate. */
613 /* Skip verify of unwind_sp, has predicate. */
614 /* Skip verify of frame_num_args, has predicate. */
615 /* Skip verify of frame_align, has predicate. */
616 /* Skip verify of stabs_argument_has_addr, invalid_p == 0 */
617 /* Skip verify of convert_from_func_ptr_addr, invalid_p == 0 */
618 /* Skip verify of addr_bits_remove, invalid_p == 0 */
619 /* Skip verify of significant_addr_bit, invalid_p == 0 */
620 /* Skip verify of software_single_step, has predicate. */
621 /* Skip verify of single_step_through_delay, has predicate. */
622 /* Skip verify of print_insn, invalid_p == 0 */
623 /* Skip verify of skip_trampoline_code, invalid_p == 0 */
624 /* Skip verify of skip_solib_resolver, invalid_p == 0 */
625 /* Skip verify of in_solib_return_trampoline, invalid_p == 0 */
626 /* Skip verify of in_indirect_branch_thunk, invalid_p == 0 */
627 /* Skip verify of stack_frame_destroyed_p, invalid_p == 0 */
628 /* Skip verify of elf_make_msymbol_special, has predicate. */
629 /* Skip verify of coff_make_msymbol_special, invalid_p == 0 */
630 /* Skip verify of make_symbol_special, invalid_p == 0 */
631 /* Skip verify of adjust_dwarf2_addr, invalid_p == 0 */
632 /* Skip verify of adjust_dwarf2_line, invalid_p == 0 */
633 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
634 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
635 /* Skip verify of address_class_type_flags, has predicate. */
636 /* Skip verify of address_class_type_flags_to_name, has predicate. */
637 /* Skip verify of execute_dwarf_cfa_vendor_op, invalid_p == 0 */
638 /* Skip verify of address_class_name_to_type_flags, has predicate. */
639 /* Skip verify of register_reggroup_p, invalid_p == 0 */
640 /* Skip verify of fetch_pointer_argument, has predicate. */
641 /* Skip verify of iterate_over_regset_sections, has predicate. */
642 /* Skip verify of make_corefile_notes, has predicate. */
643 /* Skip verify of find_memory_regions, has predicate. */
644 /* Skip verify of core_xfer_shared_libraries, has predicate. */
645 /* Skip verify of core_xfer_shared_libraries_aix, has predicate. */
646 /* Skip verify of core_pid_to_str, has predicate. */
647 /* Skip verify of core_thread_name, has predicate. */
648 /* Skip verify of core_xfer_siginfo, has predicate. */
649 /* Skip verify of gcore_bfd_target, has predicate. */
650 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
651 /* Skip verify of vbit_in_delta, invalid_p == 0 */
652 /* Skip verify of skip_permanent_breakpoint, invalid_p == 0 */
653 /* Skip verify of max_insn_length, has predicate. */
654 /* Skip verify of displaced_step_copy_insn, has predicate. */
655 /* Skip verify of displaced_step_hw_singlestep, invalid_p == 0 */
656 /* Skip verify of displaced_step_fixup, has predicate. */
657 if ((! gdbarch->displaced_step_location) != (! gdbarch->displaced_step_copy_insn))
658 log.puts ("\n\tdisplaced_step_location");
659 /* Skip verify of relocate_instruction, has predicate. */
660 /* Skip verify of overlay_update, has predicate. */
661 /* Skip verify of core_read_description, has predicate. */
662 /* Skip verify of static_transform_name, has predicate. */
663 /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */
664 /* Skip verify of process_record, has predicate. */
665 /* Skip verify of process_record_signal, has predicate. */
666 /* Skip verify of gdb_signal_from_target, has predicate. */
667 /* Skip verify of gdb_signal_to_target, has predicate. */
668 /* Skip verify of get_siginfo_type, has predicate. */
669 /* Skip verify of record_special_symbol, has predicate. */
670 /* Skip verify of get_syscall_number, has predicate. */
671 /* Skip verify of xml_syscall_file, invalid_p == 0 */
672 /* Skip verify of syscalls_info, invalid_p == 0 */
673 /* Skip verify of stap_integer_prefixes, invalid_p == 0 */
674 /* Skip verify of stap_integer_suffixes, invalid_p == 0 */
675 /* Skip verify of stap_register_prefixes, invalid_p == 0 */
676 /* Skip verify of stap_register_suffixes, invalid_p == 0 */
677 /* Skip verify of stap_register_indirection_prefixes, invalid_p == 0 */
678 /* Skip verify of stap_register_indirection_suffixes, invalid_p == 0 */
679 /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */
680 /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */
681 /* Skip verify of stap_is_single_operand, has predicate. */
682 /* Skip verify of stap_parse_special_token, has predicate. */
683 /* Skip verify of dtrace_parse_probe_argument, has predicate. */
684 /* Skip verify of dtrace_probe_is_enabled, has predicate. */
685 /* Skip verify of dtrace_enable_probe, has predicate. */
686 /* Skip verify of dtrace_disable_probe, has predicate. */
687 /* Skip verify of has_global_solist, invalid_p == 0 */
688 /* Skip verify of has_global_breakpoints, invalid_p == 0 */
689 /* Skip verify of has_shared_address_space, invalid_p == 0 */
690 /* Skip verify of fast_tracepoint_valid_at, invalid_p == 0 */
691 /* Skip verify of guess_tracepoint_registers, invalid_p == 0 */
692 /* Skip verify of auto_charset, invalid_p == 0 */
693 /* Skip verify of auto_wide_charset, invalid_p == 0 */
694 /* Skip verify of has_dos_based_file_system, invalid_p == 0 */
695 /* Skip verify of gen_return_address, invalid_p == 0 */
696 /* Skip verify of info_proc, has predicate. */
697 /* Skip verify of core_info_proc, has predicate. */
698 /* Skip verify of iterate_over_objfiles_in_search_order, invalid_p == 0 */
699 /* Skip verify of ravenscar_ops, invalid_p == 0 */
700 /* Skip verify of insn_is_call, invalid_p == 0 */
701 /* Skip verify of insn_is_ret, invalid_p == 0 */
702 /* Skip verify of insn_is_jump, invalid_p == 0 */
703 /* Skip verify of auxv_parse, has predicate. */
704 /* Skip verify of print_auxv_entry, invalid_p == 0 */
705 /* Skip verify of vsyscall_range, invalid_p == 0 */
706 /* Skip verify of infcall_mmap, invalid_p == 0 */
707 /* Skip verify of infcall_munmap, invalid_p == 0 */
708 /* Skip verify of gcc_target_options, invalid_p == 0 */
709 /* Skip verify of gnu_triplet_regexp, invalid_p == 0 */
710 /* Skip verify of addressable_memory_unit_size, invalid_p == 0 */
711 /* Skip verify of disassembler_options_implicit, invalid_p == 0 */
712 /* Skip verify of disassembler_options, invalid_p == 0 */
713 /* Skip verify of valid_disassembler_options, invalid_p == 0 */
714 /* Skip verify of type_align, invalid_p == 0 */
716 internal_error (__FILE__, __LINE__,
717 _("verify_gdbarch: the following are invalid ...%s"),
722 /* Print out the details of the current architecture. */
725 gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file)
727 const char *gdb_nm_file = "<not-defined>";
729 #if defined (GDB_NM_FILE)
730 gdb_nm_file = GDB_NM_FILE;
732 fprintf_unfiltered (file,
733 "gdbarch_dump: GDB_NM_FILE = %s\n",
735 fprintf_unfiltered (file,
736 "gdbarch_dump: addr_bit = %s\n",
737 plongest (gdbarch->addr_bit));
738 fprintf_unfiltered (file,
739 "gdbarch_dump: addr_bits_remove = <%s>\n",
740 host_address_to_string (gdbarch->addr_bits_remove));
741 fprintf_unfiltered (file,
742 "gdbarch_dump: gdbarch_address_class_name_to_type_flags_p() = %d\n",
743 gdbarch_address_class_name_to_type_flags_p (gdbarch));
744 fprintf_unfiltered (file,
745 "gdbarch_dump: address_class_name_to_type_flags = <%s>\n",
746 host_address_to_string (gdbarch->address_class_name_to_type_flags));
747 fprintf_unfiltered (file,
748 "gdbarch_dump: gdbarch_address_class_type_flags_p() = %d\n",
749 gdbarch_address_class_type_flags_p (gdbarch));
750 fprintf_unfiltered (file,
751 "gdbarch_dump: address_class_type_flags = <%s>\n",
752 host_address_to_string (gdbarch->address_class_type_flags));
753 fprintf_unfiltered (file,
754 "gdbarch_dump: gdbarch_address_class_type_flags_to_name_p() = %d\n",
755 gdbarch_address_class_type_flags_to_name_p (gdbarch));
756 fprintf_unfiltered (file,
757 "gdbarch_dump: address_class_type_flags_to_name = <%s>\n",
758 host_address_to_string (gdbarch->address_class_type_flags_to_name));
759 fprintf_unfiltered (file,
760 "gdbarch_dump: address_to_pointer = <%s>\n",
761 host_address_to_string (gdbarch->address_to_pointer));
762 fprintf_unfiltered (file,
763 "gdbarch_dump: addressable_memory_unit_size = <%s>\n",
764 host_address_to_string (gdbarch->addressable_memory_unit_size));
765 fprintf_unfiltered (file,
766 "gdbarch_dump: gdbarch_adjust_breakpoint_address_p() = %d\n",
767 gdbarch_adjust_breakpoint_address_p (gdbarch));
768 fprintf_unfiltered (file,
769 "gdbarch_dump: adjust_breakpoint_address = <%s>\n",
770 host_address_to_string (gdbarch->adjust_breakpoint_address));
771 fprintf_unfiltered (file,
772 "gdbarch_dump: adjust_dwarf2_addr = <%s>\n",
773 host_address_to_string (gdbarch->adjust_dwarf2_addr));
774 fprintf_unfiltered (file,
775 "gdbarch_dump: adjust_dwarf2_line = <%s>\n",
776 host_address_to_string (gdbarch->adjust_dwarf2_line));
777 fprintf_unfiltered (file,
778 "gdbarch_dump: auto_charset = <%s>\n",
779 host_address_to_string (gdbarch->auto_charset));
780 fprintf_unfiltered (file,
781 "gdbarch_dump: auto_wide_charset = <%s>\n",
782 host_address_to_string (gdbarch->auto_wide_charset));
783 fprintf_unfiltered (file,
784 "gdbarch_dump: gdbarch_auxv_parse_p() = %d\n",
785 gdbarch_auxv_parse_p (gdbarch));
786 fprintf_unfiltered (file,
787 "gdbarch_dump: auxv_parse = <%s>\n",
788 host_address_to_string (gdbarch->auxv_parse));
789 fprintf_unfiltered (file,
790 "gdbarch_dump: gdbarch_ax_pseudo_register_collect_p() = %d\n",
791 gdbarch_ax_pseudo_register_collect_p (gdbarch));
792 fprintf_unfiltered (file,
793 "gdbarch_dump: ax_pseudo_register_collect = <%s>\n",
794 host_address_to_string (gdbarch->ax_pseudo_register_collect));
795 fprintf_unfiltered (file,
796 "gdbarch_dump: gdbarch_ax_pseudo_register_push_stack_p() = %d\n",
797 gdbarch_ax_pseudo_register_push_stack_p (gdbarch));
798 fprintf_unfiltered (file,
799 "gdbarch_dump: ax_pseudo_register_push_stack = <%s>\n",
800 host_address_to_string (gdbarch->ax_pseudo_register_push_stack));
801 fprintf_unfiltered (file,
802 "gdbarch_dump: believe_pcc_promotion = %s\n",
803 plongest (gdbarch->believe_pcc_promotion));
804 fprintf_unfiltered (file,
805 "gdbarch_dump: bfd_arch_info = %s\n",
806 gdbarch_bfd_arch_info (gdbarch)->printable_name);
807 fprintf_unfiltered (file,
808 "gdbarch_dump: bits_big_endian = %s\n",
809 plongest (gdbarch->bits_big_endian));
810 fprintf_unfiltered (file,
811 "gdbarch_dump: breakpoint_from_pc = <%s>\n",
812 host_address_to_string (gdbarch->breakpoint_from_pc));
813 fprintf_unfiltered (file,
814 "gdbarch_dump: breakpoint_kind_from_current_state = <%s>\n",
815 host_address_to_string (gdbarch->breakpoint_kind_from_current_state));
816 fprintf_unfiltered (file,
817 "gdbarch_dump: breakpoint_kind_from_pc = <%s>\n",
818 host_address_to_string (gdbarch->breakpoint_kind_from_pc));
819 fprintf_unfiltered (file,
820 "gdbarch_dump: byte_order = %s\n",
821 plongest (gdbarch->byte_order));
822 fprintf_unfiltered (file,
823 "gdbarch_dump: byte_order_for_code = %s\n",
824 plongest (gdbarch->byte_order_for_code));
825 fprintf_unfiltered (file,
826 "gdbarch_dump: call_dummy_location = %s\n",
827 plongest (gdbarch->call_dummy_location));
828 fprintf_unfiltered (file,
829 "gdbarch_dump: cannot_fetch_register = <%s>\n",
830 host_address_to_string (gdbarch->cannot_fetch_register));
831 fprintf_unfiltered (file,
832 "gdbarch_dump: cannot_step_breakpoint = %s\n",
833 plongest (gdbarch->cannot_step_breakpoint));
834 fprintf_unfiltered (file,
835 "gdbarch_dump: cannot_store_register = <%s>\n",
836 host_address_to_string (gdbarch->cannot_store_register));
837 fprintf_unfiltered (file,
838 "gdbarch_dump: char_signed = %s\n",
839 plongest (gdbarch->char_signed));
840 fprintf_unfiltered (file,
841 "gdbarch_dump: code_of_frame_writable = <%s>\n",
842 host_address_to_string (gdbarch->code_of_frame_writable));
843 fprintf_unfiltered (file,
844 "gdbarch_dump: coff_make_msymbol_special = <%s>\n",
845 host_address_to_string (gdbarch->coff_make_msymbol_special));
846 fprintf_unfiltered (file,
847 "gdbarch_dump: convert_from_func_ptr_addr = <%s>\n",
848 host_address_to_string (gdbarch->convert_from_func_ptr_addr));
849 fprintf_unfiltered (file,
850 "gdbarch_dump: convert_register_p = <%s>\n",
851 host_address_to_string (gdbarch->convert_register_p));
852 fprintf_unfiltered (file,
853 "gdbarch_dump: gdbarch_core_info_proc_p() = %d\n",
854 gdbarch_core_info_proc_p (gdbarch));
855 fprintf_unfiltered (file,
856 "gdbarch_dump: core_info_proc = <%s>\n",
857 host_address_to_string (gdbarch->core_info_proc));
858 fprintf_unfiltered (file,
859 "gdbarch_dump: gdbarch_core_pid_to_str_p() = %d\n",
860 gdbarch_core_pid_to_str_p (gdbarch));
861 fprintf_unfiltered (file,
862 "gdbarch_dump: core_pid_to_str = <%s>\n",
863 host_address_to_string (gdbarch->core_pid_to_str));
864 fprintf_unfiltered (file,
865 "gdbarch_dump: gdbarch_core_read_description_p() = %d\n",
866 gdbarch_core_read_description_p (gdbarch));
867 fprintf_unfiltered (file,
868 "gdbarch_dump: core_read_description = <%s>\n",
869 host_address_to_string (gdbarch->core_read_description));
870 fprintf_unfiltered (file,
871 "gdbarch_dump: gdbarch_core_thread_name_p() = %d\n",
872 gdbarch_core_thread_name_p (gdbarch));
873 fprintf_unfiltered (file,
874 "gdbarch_dump: core_thread_name = <%s>\n",
875 host_address_to_string (gdbarch->core_thread_name));
876 fprintf_unfiltered (file,
877 "gdbarch_dump: gdbarch_core_xfer_shared_libraries_p() = %d\n",
878 gdbarch_core_xfer_shared_libraries_p (gdbarch));
879 fprintf_unfiltered (file,
880 "gdbarch_dump: core_xfer_shared_libraries = <%s>\n",
881 host_address_to_string (gdbarch->core_xfer_shared_libraries));
882 fprintf_unfiltered (file,
883 "gdbarch_dump: gdbarch_core_xfer_shared_libraries_aix_p() = %d\n",
884 gdbarch_core_xfer_shared_libraries_aix_p (gdbarch));
885 fprintf_unfiltered (file,
886 "gdbarch_dump: core_xfer_shared_libraries_aix = <%s>\n",
887 host_address_to_string (gdbarch->core_xfer_shared_libraries_aix));
888 fprintf_unfiltered (file,
889 "gdbarch_dump: gdbarch_core_xfer_siginfo_p() = %d\n",
890 gdbarch_core_xfer_siginfo_p (gdbarch));
891 fprintf_unfiltered (file,
892 "gdbarch_dump: core_xfer_siginfo = <%s>\n",
893 host_address_to_string (gdbarch->core_xfer_siginfo));
894 fprintf_unfiltered (file,
895 "gdbarch_dump: decr_pc_after_break = %s\n",
896 core_addr_to_string_nz (gdbarch->decr_pc_after_break));
897 fprintf_unfiltered (file,
898 "gdbarch_dump: deprecated_fp_regnum = %s\n",
899 plongest (gdbarch->deprecated_fp_regnum));
900 fprintf_unfiltered (file,
901 "gdbarch_dump: deprecated_function_start_offset = %s\n",
902 core_addr_to_string_nz (gdbarch->deprecated_function_start_offset));
903 fprintf_unfiltered (file,
904 "gdbarch_dump: disassembler_options = %s\n",
905 pstring_ptr (gdbarch->disassembler_options));
906 fprintf_unfiltered (file,
907 "gdbarch_dump: disassembler_options_implicit = %s\n",
908 pstring (gdbarch->disassembler_options_implicit));
909 fprintf_unfiltered (file,
910 "gdbarch_dump: gdbarch_displaced_step_copy_insn_p() = %d\n",
911 gdbarch_displaced_step_copy_insn_p (gdbarch));
912 fprintf_unfiltered (file,
913 "gdbarch_dump: displaced_step_copy_insn = <%s>\n",
914 host_address_to_string (gdbarch->displaced_step_copy_insn));
915 fprintf_unfiltered (file,
916 "gdbarch_dump: gdbarch_displaced_step_fixup_p() = %d\n",
917 gdbarch_displaced_step_fixup_p (gdbarch));
918 fprintf_unfiltered (file,
919 "gdbarch_dump: displaced_step_fixup = <%s>\n",
920 host_address_to_string (gdbarch->displaced_step_fixup));
921 fprintf_unfiltered (file,
922 "gdbarch_dump: displaced_step_hw_singlestep = <%s>\n",
923 host_address_to_string (gdbarch->displaced_step_hw_singlestep));
924 fprintf_unfiltered (file,
925 "gdbarch_dump: displaced_step_location = <%s>\n",
926 host_address_to_string (gdbarch->displaced_step_location));
927 fprintf_unfiltered (file,
928 "gdbarch_dump: double_bit = %s\n",
929 plongest (gdbarch->double_bit));
930 fprintf_unfiltered (file,
931 "gdbarch_dump: double_format = %s\n",
932 pformat (gdbarch->double_format));
933 fprintf_unfiltered (file,
934 "gdbarch_dump: gdbarch_dtrace_disable_probe_p() = %d\n",
935 gdbarch_dtrace_disable_probe_p (gdbarch));
936 fprintf_unfiltered (file,
937 "gdbarch_dump: dtrace_disable_probe = <%s>\n",
938 host_address_to_string (gdbarch->dtrace_disable_probe));
939 fprintf_unfiltered (file,
940 "gdbarch_dump: gdbarch_dtrace_enable_probe_p() = %d\n",
941 gdbarch_dtrace_enable_probe_p (gdbarch));
942 fprintf_unfiltered (file,
943 "gdbarch_dump: dtrace_enable_probe = <%s>\n",
944 host_address_to_string (gdbarch->dtrace_enable_probe));
945 fprintf_unfiltered (file,
946 "gdbarch_dump: gdbarch_dtrace_parse_probe_argument_p() = %d\n",
947 gdbarch_dtrace_parse_probe_argument_p (gdbarch));
948 fprintf_unfiltered (file,
949 "gdbarch_dump: dtrace_parse_probe_argument = <%s>\n",
950 host_address_to_string (gdbarch->dtrace_parse_probe_argument));
951 fprintf_unfiltered (file,
952 "gdbarch_dump: gdbarch_dtrace_probe_is_enabled_p() = %d\n",
953 gdbarch_dtrace_probe_is_enabled_p (gdbarch));
954 fprintf_unfiltered (file,
955 "gdbarch_dump: dtrace_probe_is_enabled = <%s>\n",
956 host_address_to_string (gdbarch->dtrace_probe_is_enabled));
957 fprintf_unfiltered (file,
958 "gdbarch_dump: gdbarch_dummy_id_p() = %d\n",
959 gdbarch_dummy_id_p (gdbarch));
960 fprintf_unfiltered (file,
961 "gdbarch_dump: dummy_id = <%s>\n",
962 host_address_to_string (gdbarch->dummy_id));
963 fprintf_unfiltered (file,
964 "gdbarch_dump: dwarf2_addr_size = %s\n",
965 plongest (gdbarch->dwarf2_addr_size));
966 fprintf_unfiltered (file,
967 "gdbarch_dump: dwarf2_reg_to_regnum = <%s>\n",
968 host_address_to_string (gdbarch->dwarf2_reg_to_regnum));
969 fprintf_unfiltered (file,
970 "gdbarch_dump: ecoff_reg_to_regnum = <%s>\n",
971 host_address_to_string (gdbarch->ecoff_reg_to_regnum));
972 fprintf_unfiltered (file,
973 "gdbarch_dump: gdbarch_elf_make_msymbol_special_p() = %d\n",
974 gdbarch_elf_make_msymbol_special_p (gdbarch));
975 fprintf_unfiltered (file,
976 "gdbarch_dump: elf_make_msymbol_special = <%s>\n",
977 host_address_to_string (gdbarch->elf_make_msymbol_special));
978 fprintf_unfiltered (file,
979 "gdbarch_dump: execute_dwarf_cfa_vendor_op = <%s>\n",
980 host_address_to_string (gdbarch->execute_dwarf_cfa_vendor_op));
981 fprintf_unfiltered (file,
982 "gdbarch_dump: fast_tracepoint_valid_at = <%s>\n",
983 host_address_to_string (gdbarch->fast_tracepoint_valid_at));
984 fprintf_unfiltered (file,
985 "gdbarch_dump: gdbarch_fetch_pointer_argument_p() = %d\n",
986 gdbarch_fetch_pointer_argument_p (gdbarch));
987 fprintf_unfiltered (file,
988 "gdbarch_dump: fetch_pointer_argument = <%s>\n",
989 host_address_to_string (gdbarch->fetch_pointer_argument));
990 fprintf_unfiltered (file,
991 "gdbarch_dump: gdbarch_fetch_tls_load_module_address_p() = %d\n",
992 gdbarch_fetch_tls_load_module_address_p (gdbarch));
993 fprintf_unfiltered (file,
994 "gdbarch_dump: fetch_tls_load_module_address = <%s>\n",
995 host_address_to_string (gdbarch->fetch_tls_load_module_address));
996 fprintf_unfiltered (file,
997 "gdbarch_dump: gdbarch_find_memory_regions_p() = %d\n",
998 gdbarch_find_memory_regions_p (gdbarch));
999 fprintf_unfiltered (file,
1000 "gdbarch_dump: find_memory_regions = <%s>\n",
1001 host_address_to_string (gdbarch->find_memory_regions));
1002 fprintf_unfiltered (file,
1003 "gdbarch_dump: float_bit = %s\n",
1004 plongest (gdbarch->float_bit));
1005 fprintf_unfiltered (file,
1006 "gdbarch_dump: float_format = %s\n",
1007 pformat (gdbarch->float_format));
1008 fprintf_unfiltered (file,
1009 "gdbarch_dump: floatformat_for_type = <%s>\n",
1010 host_address_to_string (gdbarch->floatformat_for_type));
1011 fprintf_unfiltered (file,
1012 "gdbarch_dump: fp0_regnum = %s\n",
1013 plongest (gdbarch->fp0_regnum));
1014 fprintf_unfiltered (file,
1015 "gdbarch_dump: gdbarch_frame_align_p() = %d\n",
1016 gdbarch_frame_align_p (gdbarch));
1017 fprintf_unfiltered (file,
1018 "gdbarch_dump: frame_align = <%s>\n",
1019 host_address_to_string (gdbarch->frame_align));
1020 fprintf_unfiltered (file,
1021 "gdbarch_dump: frame_args_skip = %s\n",
1022 core_addr_to_string_nz (gdbarch->frame_args_skip));
1023 fprintf_unfiltered (file,
1024 "gdbarch_dump: gdbarch_frame_num_args_p() = %d\n",
1025 gdbarch_frame_num_args_p (gdbarch));
1026 fprintf_unfiltered (file,
1027 "gdbarch_dump: frame_num_args = <%s>\n",
1028 host_address_to_string (gdbarch->frame_num_args));
1029 fprintf_unfiltered (file,
1030 "gdbarch_dump: frame_red_zone_size = %s\n",
1031 plongest (gdbarch->frame_red_zone_size));
1032 fprintf_unfiltered (file,
1033 "gdbarch_dump: gcc_target_options = <%s>\n",
1034 host_address_to_string (gdbarch->gcc_target_options));
1035 fprintf_unfiltered (file,
1036 "gdbarch_dump: gdbarch_gcore_bfd_target_p() = %d\n",
1037 gdbarch_gcore_bfd_target_p (gdbarch));
1038 fprintf_unfiltered (file,
1039 "gdbarch_dump: gcore_bfd_target = %s\n",
1040 pstring (gdbarch->gcore_bfd_target));
1041 fprintf_unfiltered (file,
1042 "gdbarch_dump: gdbarch_gdb_signal_from_target_p() = %d\n",
1043 gdbarch_gdb_signal_from_target_p (gdbarch));
1044 fprintf_unfiltered (file,
1045 "gdbarch_dump: gdb_signal_from_target = <%s>\n",
1046 host_address_to_string (gdbarch->gdb_signal_from_target));
1047 fprintf_unfiltered (file,
1048 "gdbarch_dump: gdbarch_gdb_signal_to_target_p() = %d\n",
1049 gdbarch_gdb_signal_to_target_p (gdbarch));
1050 fprintf_unfiltered (file,
1051 "gdbarch_dump: gdb_signal_to_target = <%s>\n",
1052 host_address_to_string (gdbarch->gdb_signal_to_target));
1053 fprintf_unfiltered (file,
1054 "gdbarch_dump: gen_return_address = <%s>\n",
1055 host_address_to_string (gdbarch->gen_return_address));
1056 fprintf_unfiltered (file,
1057 "gdbarch_dump: gdbarch_get_longjmp_target_p() = %d\n",
1058 gdbarch_get_longjmp_target_p (gdbarch));
1059 fprintf_unfiltered (file,
1060 "gdbarch_dump: get_longjmp_target = <%s>\n",
1061 host_address_to_string (gdbarch->get_longjmp_target));
1062 fprintf_unfiltered (file,
1063 "gdbarch_dump: gdbarch_get_siginfo_type_p() = %d\n",
1064 gdbarch_get_siginfo_type_p (gdbarch));
1065 fprintf_unfiltered (file,
1066 "gdbarch_dump: get_siginfo_type = <%s>\n",
1067 host_address_to_string (gdbarch->get_siginfo_type));
1068 fprintf_unfiltered (file,
1069 "gdbarch_dump: gdbarch_get_syscall_number_p() = %d\n",
1070 gdbarch_get_syscall_number_p (gdbarch));
1071 fprintf_unfiltered (file,
1072 "gdbarch_dump: get_syscall_number = <%s>\n",
1073 host_address_to_string (gdbarch->get_syscall_number));
1074 fprintf_unfiltered (file,
1075 "gdbarch_dump: gnu_triplet_regexp = <%s>\n",
1076 host_address_to_string (gdbarch->gnu_triplet_regexp));
1077 fprintf_unfiltered (file,
1078 "gdbarch_dump: guess_tracepoint_registers = <%s>\n",
1079 host_address_to_string (gdbarch->guess_tracepoint_registers));
1080 fprintf_unfiltered (file,
1081 "gdbarch_dump: half_bit = %s\n",
1082 plongest (gdbarch->half_bit));
1083 fprintf_unfiltered (file,
1084 "gdbarch_dump: half_format = %s\n",
1085 pformat (gdbarch->half_format));
1086 fprintf_unfiltered (file,
1087 "gdbarch_dump: gdbarch_handle_segmentation_fault_p() = %d\n",
1088 gdbarch_handle_segmentation_fault_p (gdbarch));
1089 fprintf_unfiltered (file,
1090 "gdbarch_dump: handle_segmentation_fault = <%s>\n",
1091 host_address_to_string (gdbarch->handle_segmentation_fault));
1092 fprintf_unfiltered (file,
1093 "gdbarch_dump: has_dos_based_file_system = %s\n",
1094 plongest (gdbarch->has_dos_based_file_system));
1095 fprintf_unfiltered (file,
1096 "gdbarch_dump: has_global_breakpoints = %s\n",
1097 plongest (gdbarch->has_global_breakpoints));
1098 fprintf_unfiltered (file,
1099 "gdbarch_dump: has_global_solist = %s\n",
1100 plongest (gdbarch->has_global_solist));
1101 fprintf_unfiltered (file,
1102 "gdbarch_dump: has_shared_address_space = <%s>\n",
1103 host_address_to_string (gdbarch->has_shared_address_space));
1104 fprintf_unfiltered (file,
1105 "gdbarch_dump: have_nonsteppable_watchpoint = %s\n",
1106 plongest (gdbarch->have_nonsteppable_watchpoint));
1107 fprintf_unfiltered (file,
1108 "gdbarch_dump: in_indirect_branch_thunk = <%s>\n",
1109 host_address_to_string (gdbarch->in_indirect_branch_thunk));
1110 fprintf_unfiltered (file,
1111 "gdbarch_dump: in_solib_return_trampoline = <%s>\n",
1112 host_address_to_string (gdbarch->in_solib_return_trampoline));
1113 fprintf_unfiltered (file,
1114 "gdbarch_dump: infcall_mmap = <%s>\n",
1115 host_address_to_string (gdbarch->infcall_mmap));
1116 fprintf_unfiltered (file,
1117 "gdbarch_dump: infcall_munmap = <%s>\n",
1118 host_address_to_string (gdbarch->infcall_munmap));
1119 fprintf_unfiltered (file,
1120 "gdbarch_dump: gdbarch_info_proc_p() = %d\n",
1121 gdbarch_info_proc_p (gdbarch));
1122 fprintf_unfiltered (file,
1123 "gdbarch_dump: info_proc = <%s>\n",
1124 host_address_to_string (gdbarch->info_proc));
1125 fprintf_unfiltered (file,
1126 "gdbarch_dump: inner_than = <%s>\n",
1127 host_address_to_string (gdbarch->inner_than));
1128 fprintf_unfiltered (file,
1129 "gdbarch_dump: insn_is_call = <%s>\n",
1130 host_address_to_string (gdbarch->insn_is_call));
1131 fprintf_unfiltered (file,
1132 "gdbarch_dump: insn_is_jump = <%s>\n",
1133 host_address_to_string (gdbarch->insn_is_jump));
1134 fprintf_unfiltered (file,
1135 "gdbarch_dump: insn_is_ret = <%s>\n",
1136 host_address_to_string (gdbarch->insn_is_ret));
1137 fprintf_unfiltered (file,
1138 "gdbarch_dump: int_bit = %s\n",
1139 plongest (gdbarch->int_bit));
1140 fprintf_unfiltered (file,
1141 "gdbarch_dump: gdbarch_integer_to_address_p() = %d\n",
1142 gdbarch_integer_to_address_p (gdbarch));
1143 fprintf_unfiltered (file,
1144 "gdbarch_dump: integer_to_address = <%s>\n",
1145 host_address_to_string (gdbarch->integer_to_address));
1146 fprintf_unfiltered (file,
1147 "gdbarch_dump: iterate_over_objfiles_in_search_order = <%s>\n",
1148 host_address_to_string (gdbarch->iterate_over_objfiles_in_search_order));
1149 fprintf_unfiltered (file,
1150 "gdbarch_dump: gdbarch_iterate_over_regset_sections_p() = %d\n",
1151 gdbarch_iterate_over_regset_sections_p (gdbarch));
1152 fprintf_unfiltered (file,
1153 "gdbarch_dump: iterate_over_regset_sections = <%s>\n",
1154 host_address_to_string (gdbarch->iterate_over_regset_sections));
1155 fprintf_unfiltered (file,
1156 "gdbarch_dump: long_bit = %s\n",
1157 plongest (gdbarch->long_bit));
1158 fprintf_unfiltered (file,
1159 "gdbarch_dump: long_double_bit = %s\n",
1160 plongest (gdbarch->long_double_bit));
1161 fprintf_unfiltered (file,
1162 "gdbarch_dump: long_double_format = %s\n",
1163 pformat (gdbarch->long_double_format));
1164 fprintf_unfiltered (file,
1165 "gdbarch_dump: long_long_bit = %s\n",
1166 plongest (gdbarch->long_long_bit));
1167 fprintf_unfiltered (file,
1168 "gdbarch_dump: gdbarch_make_corefile_notes_p() = %d\n",
1169 gdbarch_make_corefile_notes_p (gdbarch));
1170 fprintf_unfiltered (file,
1171 "gdbarch_dump: make_corefile_notes = <%s>\n",
1172 host_address_to_string (gdbarch->make_corefile_notes));
1173 fprintf_unfiltered (file,
1174 "gdbarch_dump: make_symbol_special = <%s>\n",
1175 host_address_to_string (gdbarch->make_symbol_special));
1176 fprintf_unfiltered (file,
1177 "gdbarch_dump: gdbarch_max_insn_length_p() = %d\n",
1178 gdbarch_max_insn_length_p (gdbarch));
1179 fprintf_unfiltered (file,
1180 "gdbarch_dump: max_insn_length = %s\n",
1181 plongest (gdbarch->max_insn_length));
1182 fprintf_unfiltered (file,
1183 "gdbarch_dump: memory_insert_breakpoint = <%s>\n",
1184 host_address_to_string (gdbarch->memory_insert_breakpoint));
1185 fprintf_unfiltered (file,
1186 "gdbarch_dump: memory_remove_breakpoint = <%s>\n",
1187 host_address_to_string (gdbarch->memory_remove_breakpoint));
1188 fprintf_unfiltered (file,
1189 "gdbarch_dump: num_pseudo_regs = %s\n",
1190 plongest (gdbarch->num_pseudo_regs));
1191 fprintf_unfiltered (file,
1192 "gdbarch_dump: num_regs = %s\n",
1193 plongest (gdbarch->num_regs));
1194 fprintf_unfiltered (file,
1195 "gdbarch_dump: osabi = %s\n",
1196 plongest (gdbarch->osabi));
1197 fprintf_unfiltered (file,
1198 "gdbarch_dump: gdbarch_overlay_update_p() = %d\n",
1199 gdbarch_overlay_update_p (gdbarch));
1200 fprintf_unfiltered (file,
1201 "gdbarch_dump: overlay_update = <%s>\n",
1202 host_address_to_string (gdbarch->overlay_update));
1203 fprintf_unfiltered (file,
1204 "gdbarch_dump: pc_regnum = %s\n",
1205 plongest (gdbarch->pc_regnum));
1206 fprintf_unfiltered (file,
1207 "gdbarch_dump: pointer_to_address = <%s>\n",
1208 host_address_to_string (gdbarch->pointer_to_address));
1209 fprintf_unfiltered (file,
1210 "gdbarch_dump: print_auxv_entry = <%s>\n",
1211 host_address_to_string (gdbarch->print_auxv_entry));
1212 fprintf_unfiltered (file,
1213 "gdbarch_dump: print_float_info = <%s>\n",
1214 host_address_to_string (gdbarch->print_float_info));
1215 fprintf_unfiltered (file,
1216 "gdbarch_dump: print_insn = <%s>\n",
1217 host_address_to_string (gdbarch->print_insn));
1218 fprintf_unfiltered (file,
1219 "gdbarch_dump: print_registers_info = <%s>\n",
1220 host_address_to_string (gdbarch->print_registers_info));
1221 fprintf_unfiltered (file,
1222 "gdbarch_dump: gdbarch_print_vector_info_p() = %d\n",
1223 gdbarch_print_vector_info_p (gdbarch));
1224 fprintf_unfiltered (file,
1225 "gdbarch_dump: print_vector_info = <%s>\n",
1226 host_address_to_string (gdbarch->print_vector_info));
1227 fprintf_unfiltered (file,
1228 "gdbarch_dump: gdbarch_process_record_p() = %d\n",
1229 gdbarch_process_record_p (gdbarch));
1230 fprintf_unfiltered (file,
1231 "gdbarch_dump: process_record = <%s>\n",
1232 host_address_to_string (gdbarch->process_record));
1233 fprintf_unfiltered (file,
1234 "gdbarch_dump: gdbarch_process_record_signal_p() = %d\n",
1235 gdbarch_process_record_signal_p (gdbarch));
1236 fprintf_unfiltered (file,
1237 "gdbarch_dump: process_record_signal = <%s>\n",
1238 host_address_to_string (gdbarch->process_record_signal));
1239 fprintf_unfiltered (file,
1240 "gdbarch_dump: ps_regnum = %s\n",
1241 plongest (gdbarch->ps_regnum));
1242 fprintf_unfiltered (file,
1243 "gdbarch_dump: gdbarch_pseudo_register_read_p() = %d\n",
1244 gdbarch_pseudo_register_read_p (gdbarch));
1245 fprintf_unfiltered (file,
1246 "gdbarch_dump: pseudo_register_read = <%s>\n",
1247 host_address_to_string (gdbarch->pseudo_register_read));
1248 fprintf_unfiltered (file,
1249 "gdbarch_dump: gdbarch_pseudo_register_read_value_p() = %d\n",
1250 gdbarch_pseudo_register_read_value_p (gdbarch));
1251 fprintf_unfiltered (file,
1252 "gdbarch_dump: pseudo_register_read_value = <%s>\n",
1253 host_address_to_string (gdbarch->pseudo_register_read_value));
1254 fprintf_unfiltered (file,
1255 "gdbarch_dump: gdbarch_pseudo_register_write_p() = %d\n",
1256 gdbarch_pseudo_register_write_p (gdbarch));
1257 fprintf_unfiltered (file,
1258 "gdbarch_dump: pseudo_register_write = <%s>\n",
1259 host_address_to_string (gdbarch->pseudo_register_write));
1260 fprintf_unfiltered (file,
1261 "gdbarch_dump: ptr_bit = %s\n",
1262 plongest (gdbarch->ptr_bit));
1263 fprintf_unfiltered (file,
1264 "gdbarch_dump: gdbarch_push_dummy_call_p() = %d\n",
1265 gdbarch_push_dummy_call_p (gdbarch));
1266 fprintf_unfiltered (file,
1267 "gdbarch_dump: push_dummy_call = <%s>\n",
1268 host_address_to_string (gdbarch->push_dummy_call));
1269 fprintf_unfiltered (file,
1270 "gdbarch_dump: gdbarch_push_dummy_code_p() = %d\n",
1271 gdbarch_push_dummy_code_p (gdbarch));
1272 fprintf_unfiltered (file,
1273 "gdbarch_dump: push_dummy_code = <%s>\n",
1274 host_address_to_string (gdbarch->push_dummy_code));
1275 fprintf_unfiltered (file,
1276 "gdbarch_dump: ravenscar_ops = %s\n",
1277 host_address_to_string (gdbarch->ravenscar_ops));
1278 fprintf_unfiltered (file,
1279 "gdbarch_dump: gdbarch_read_pc_p() = %d\n",
1280 gdbarch_read_pc_p (gdbarch));
1281 fprintf_unfiltered (file,
1282 "gdbarch_dump: read_pc = <%s>\n",
1283 host_address_to_string (gdbarch->read_pc));
1284 fprintf_unfiltered (file,
1285 "gdbarch_dump: gdbarch_record_special_symbol_p() = %d\n",
1286 gdbarch_record_special_symbol_p (gdbarch));
1287 fprintf_unfiltered (file,
1288 "gdbarch_dump: record_special_symbol = <%s>\n",
1289 host_address_to_string (gdbarch->record_special_symbol));
1290 fprintf_unfiltered (file,
1291 "gdbarch_dump: register_name = <%s>\n",
1292 host_address_to_string (gdbarch->register_name));
1293 fprintf_unfiltered (file,
1294 "gdbarch_dump: register_reggroup_p = <%s>\n",
1295 host_address_to_string (gdbarch->register_reggroup_p));
1296 fprintf_unfiltered (file,
1297 "gdbarch_dump: register_sim_regno = <%s>\n",
1298 host_address_to_string (gdbarch->register_sim_regno));
1299 fprintf_unfiltered (file,
1300 "gdbarch_dump: register_to_value = <%s>\n",
1301 host_address_to_string (gdbarch->register_to_value));
1302 fprintf_unfiltered (file,
1303 "gdbarch_dump: gdbarch_register_type_p() = %d\n",
1304 gdbarch_register_type_p (gdbarch));
1305 fprintf_unfiltered (file,
1306 "gdbarch_dump: register_type = <%s>\n",
1307 host_address_to_string (gdbarch->register_type));
1308 fprintf_unfiltered (file,
1309 "gdbarch_dump: gdbarch_relocate_instruction_p() = %d\n",
1310 gdbarch_relocate_instruction_p (gdbarch));
1311 fprintf_unfiltered (file,
1312 "gdbarch_dump: relocate_instruction = <%s>\n",
1313 host_address_to_string (gdbarch->relocate_instruction));
1314 fprintf_unfiltered (file,
1315 "gdbarch_dump: remote_register_number = <%s>\n",
1316 host_address_to_string (gdbarch->remote_register_number));
1317 fprintf_unfiltered (file,
1318 "gdbarch_dump: return_in_first_hidden_param_p = <%s>\n",
1319 host_address_to_string (gdbarch->return_in_first_hidden_param_p));
1320 fprintf_unfiltered (file,
1321 "gdbarch_dump: gdbarch_return_value_p() = %d\n",
1322 gdbarch_return_value_p (gdbarch));
1323 fprintf_unfiltered (file,
1324 "gdbarch_dump: return_value = <%s>\n",
1325 host_address_to_string (gdbarch->return_value));
1326 fprintf_unfiltered (file,
1327 "gdbarch_dump: sdb_reg_to_regnum = <%s>\n",
1328 host_address_to_string (gdbarch->sdb_reg_to_regnum));
1329 fprintf_unfiltered (file,
1330 "gdbarch_dump: short_bit = %s\n",
1331 plongest (gdbarch->short_bit));
1332 fprintf_unfiltered (file,
1333 "gdbarch_dump: significant_addr_bit = %s\n",
1334 plongest (gdbarch->significant_addr_bit));
1335 fprintf_unfiltered (file,
1336 "gdbarch_dump: gdbarch_single_step_through_delay_p() = %d\n",
1337 gdbarch_single_step_through_delay_p (gdbarch));
1338 fprintf_unfiltered (file,
1339 "gdbarch_dump: single_step_through_delay = <%s>\n",
1340 host_address_to_string (gdbarch->single_step_through_delay));
1341 fprintf_unfiltered (file,
1342 "gdbarch_dump: gdbarch_skip_entrypoint_p() = %d\n",
1343 gdbarch_skip_entrypoint_p (gdbarch));
1344 fprintf_unfiltered (file,
1345 "gdbarch_dump: skip_entrypoint = <%s>\n",
1346 host_address_to_string (gdbarch->skip_entrypoint));
1347 fprintf_unfiltered (file,
1348 "gdbarch_dump: gdbarch_skip_main_prologue_p() = %d\n",
1349 gdbarch_skip_main_prologue_p (gdbarch));
1350 fprintf_unfiltered (file,
1351 "gdbarch_dump: skip_main_prologue = <%s>\n",
1352 host_address_to_string (gdbarch->skip_main_prologue));
1353 fprintf_unfiltered (file,
1354 "gdbarch_dump: skip_permanent_breakpoint = <%s>\n",
1355 host_address_to_string (gdbarch->skip_permanent_breakpoint));
1356 fprintf_unfiltered (file,
1357 "gdbarch_dump: skip_prologue = <%s>\n",
1358 host_address_to_string (gdbarch->skip_prologue));
1359 fprintf_unfiltered (file,
1360 "gdbarch_dump: skip_solib_resolver = <%s>\n",
1361 host_address_to_string (gdbarch->skip_solib_resolver));
1362 fprintf_unfiltered (file,
1363 "gdbarch_dump: skip_trampoline_code = <%s>\n",
1364 host_address_to_string (gdbarch->skip_trampoline_code));
1365 fprintf_unfiltered (file,
1366 "gdbarch_dump: gdbarch_software_single_step_p() = %d\n",
1367 gdbarch_software_single_step_p (gdbarch));
1368 fprintf_unfiltered (file,
1369 "gdbarch_dump: software_single_step = <%s>\n",
1370 host_address_to_string (gdbarch->software_single_step));
1371 fprintf_unfiltered (file,
1372 "gdbarch_dump: sofun_address_maybe_missing = %s\n",
1373 plongest (gdbarch->sofun_address_maybe_missing));
1374 fprintf_unfiltered (file,
1375 "gdbarch_dump: solib_symbols_extension = %s\n",
1376 pstring (gdbarch->solib_symbols_extension));
1377 fprintf_unfiltered (file,
1378 "gdbarch_dump: sp_regnum = %s\n",
1379 plongest (gdbarch->sp_regnum));
1380 fprintf_unfiltered (file,
1381 "gdbarch_dump: stab_reg_to_regnum = <%s>\n",
1382 host_address_to_string (gdbarch->stab_reg_to_regnum));
1383 fprintf_unfiltered (file,
1384 "gdbarch_dump: stabs_argument_has_addr = <%s>\n",
1385 host_address_to_string (gdbarch->stabs_argument_has_addr));
1386 fprintf_unfiltered (file,
1387 "gdbarch_dump: stack_frame_destroyed_p = <%s>\n",
1388 host_address_to_string (gdbarch->stack_frame_destroyed_p));
1389 fprintf_unfiltered (file,
1390 "gdbarch_dump: stap_gdb_register_prefix = %s\n",
1391 pstring (gdbarch->stap_gdb_register_prefix));
1392 fprintf_unfiltered (file,
1393 "gdbarch_dump: stap_gdb_register_suffix = %s\n",
1394 pstring (gdbarch->stap_gdb_register_suffix));
1395 fprintf_unfiltered (file,
1396 "gdbarch_dump: stap_integer_prefixes = %s\n",
1397 pstring_list (gdbarch->stap_integer_prefixes));
1398 fprintf_unfiltered (file,
1399 "gdbarch_dump: stap_integer_suffixes = %s\n",
1400 pstring_list (gdbarch->stap_integer_suffixes));
1401 fprintf_unfiltered (file,
1402 "gdbarch_dump: gdbarch_stap_is_single_operand_p() = %d\n",
1403 gdbarch_stap_is_single_operand_p (gdbarch));
1404 fprintf_unfiltered (file,
1405 "gdbarch_dump: stap_is_single_operand = <%s>\n",
1406 host_address_to_string (gdbarch->stap_is_single_operand));
1407 fprintf_unfiltered (file,
1408 "gdbarch_dump: gdbarch_stap_parse_special_token_p() = %d\n",
1409 gdbarch_stap_parse_special_token_p (gdbarch));
1410 fprintf_unfiltered (file,
1411 "gdbarch_dump: stap_parse_special_token = <%s>\n",
1412 host_address_to_string (gdbarch->stap_parse_special_token));
1413 fprintf_unfiltered (file,
1414 "gdbarch_dump: stap_register_indirection_prefixes = %s\n",
1415 pstring_list (gdbarch->stap_register_indirection_prefixes));
1416 fprintf_unfiltered (file,
1417 "gdbarch_dump: stap_register_indirection_suffixes = %s\n",
1418 pstring_list (gdbarch->stap_register_indirection_suffixes));
1419 fprintf_unfiltered (file,
1420 "gdbarch_dump: stap_register_prefixes = %s\n",
1421 pstring_list (gdbarch->stap_register_prefixes));
1422 fprintf_unfiltered (file,
1423 "gdbarch_dump: stap_register_suffixes = %s\n",
1424 pstring_list (gdbarch->stap_register_suffixes));
1425 fprintf_unfiltered (file,
1426 "gdbarch_dump: gdbarch_static_transform_name_p() = %d\n",
1427 gdbarch_static_transform_name_p (gdbarch));
1428 fprintf_unfiltered (file,
1429 "gdbarch_dump: static_transform_name = <%s>\n",
1430 host_address_to_string (gdbarch->static_transform_name));
1431 fprintf_unfiltered (file,
1432 "gdbarch_dump: sw_breakpoint_from_kind = <%s>\n",
1433 host_address_to_string (gdbarch->sw_breakpoint_from_kind));
1434 fprintf_unfiltered (file,
1435 "gdbarch_dump: syscalls_info = %s\n",
1436 host_address_to_string (gdbarch->syscalls_info));
1437 fprintf_unfiltered (file,
1438 "gdbarch_dump: target_desc = %s\n",
1439 host_address_to_string (gdbarch->target_desc));
1440 fprintf_unfiltered (file,
1441 "gdbarch_dump: type_align = <%s>\n",
1442 host_address_to_string (gdbarch->type_align));
1443 fprintf_unfiltered (file,
1444 "gdbarch_dump: gdbarch_unwind_pc_p() = %d\n",
1445 gdbarch_unwind_pc_p (gdbarch));
1446 fprintf_unfiltered (file,
1447 "gdbarch_dump: unwind_pc = <%s>\n",
1448 host_address_to_string (gdbarch->unwind_pc));
1449 fprintf_unfiltered (file,
1450 "gdbarch_dump: gdbarch_unwind_sp_p() = %d\n",
1451 gdbarch_unwind_sp_p (gdbarch));
1452 fprintf_unfiltered (file,
1453 "gdbarch_dump: unwind_sp = <%s>\n",
1454 host_address_to_string (gdbarch->unwind_sp));
1455 fprintf_unfiltered (file,
1456 "gdbarch_dump: valid_disassembler_options = %s\n",
1457 host_address_to_string (gdbarch->valid_disassembler_options));
1458 fprintf_unfiltered (file,
1459 "gdbarch_dump: value_from_register = <%s>\n",
1460 host_address_to_string (gdbarch->value_from_register));
1461 fprintf_unfiltered (file,
1462 "gdbarch_dump: value_to_register = <%s>\n",
1463 host_address_to_string (gdbarch->value_to_register));
1464 fprintf_unfiltered (file,
1465 "gdbarch_dump: vbit_in_delta = %s\n",
1466 plongest (gdbarch->vbit_in_delta));
1467 fprintf_unfiltered (file,
1468 "gdbarch_dump: virtual_frame_pointer = <%s>\n",
1469 host_address_to_string (gdbarch->virtual_frame_pointer));
1470 fprintf_unfiltered (file,
1471 "gdbarch_dump: vsyscall_range = <%s>\n",
1472 host_address_to_string (gdbarch->vsyscall_range));
1473 fprintf_unfiltered (file,
1474 "gdbarch_dump: vtable_function_descriptors = %s\n",
1475 plongest (gdbarch->vtable_function_descriptors));
1476 fprintf_unfiltered (file,
1477 "gdbarch_dump: wchar_bit = %s\n",
1478 plongest (gdbarch->wchar_bit));
1479 fprintf_unfiltered (file,
1480 "gdbarch_dump: wchar_signed = %s\n",
1481 plongest (gdbarch->wchar_signed));
1482 fprintf_unfiltered (file,
1483 "gdbarch_dump: gdbarch_write_pc_p() = %d\n",
1484 gdbarch_write_pc_p (gdbarch));
1485 fprintf_unfiltered (file,
1486 "gdbarch_dump: write_pc = <%s>\n",
1487 host_address_to_string (gdbarch->write_pc));
1488 fprintf_unfiltered (file,
1489 "gdbarch_dump: xml_syscall_file = %s\n",
1490 pstring (gdbarch->xml_syscall_file));
1491 if (gdbarch->dump_tdep != NULL)
1492 gdbarch->dump_tdep (gdbarch, file);
1495 struct gdbarch_tdep *
1496 gdbarch_tdep (struct gdbarch *gdbarch)
1498 if (gdbarch_debug >= 2)
1499 fprintf_unfiltered (gdb_stdlog, "gdbarch_tdep called\n");
1500 return gdbarch->tdep;
1504 const struct bfd_arch_info *
1505 gdbarch_bfd_arch_info (struct gdbarch *gdbarch)
1507 gdb_assert (gdbarch != NULL);
1508 if (gdbarch_debug >= 2)
1509 fprintf_unfiltered (gdb_stdlog, "gdbarch_bfd_arch_info called\n");
1510 return gdbarch->bfd_arch_info;
1514 gdbarch_byte_order (struct gdbarch *gdbarch)
1516 gdb_assert (gdbarch != NULL);
1517 if (gdbarch_debug >= 2)
1518 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order called\n");
1519 return gdbarch->byte_order;
1523 gdbarch_byte_order_for_code (struct gdbarch *gdbarch)
1525 gdb_assert (gdbarch != NULL);
1526 if (gdbarch_debug >= 2)
1527 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order_for_code called\n");
1528 return gdbarch->byte_order_for_code;
1532 gdbarch_osabi (struct gdbarch *gdbarch)
1534 gdb_assert (gdbarch != NULL);
1535 if (gdbarch_debug >= 2)
1536 fprintf_unfiltered (gdb_stdlog, "gdbarch_osabi called\n");
1537 return gdbarch->osabi;
1540 const struct target_desc *
1541 gdbarch_target_desc (struct gdbarch *gdbarch)
1543 gdb_assert (gdbarch != NULL);
1544 if (gdbarch_debug >= 2)
1545 fprintf_unfiltered (gdb_stdlog, "gdbarch_target_desc called\n");
1546 return gdbarch->target_desc;
1550 gdbarch_bits_big_endian (struct gdbarch *gdbarch)
1552 gdb_assert (gdbarch != NULL);
1553 /* Skip verify of bits_big_endian, invalid_p == 0 */
1554 if (gdbarch_debug >= 2)
1555 fprintf_unfiltered (gdb_stdlog, "gdbarch_bits_big_endian called\n");
1556 return gdbarch->bits_big_endian;
1560 set_gdbarch_bits_big_endian (struct gdbarch *gdbarch,
1561 int bits_big_endian)
1563 gdbarch->bits_big_endian = bits_big_endian;
1567 gdbarch_short_bit (struct gdbarch *gdbarch)
1569 gdb_assert (gdbarch != NULL);
1570 /* Skip verify of short_bit, invalid_p == 0 */
1571 if (gdbarch_debug >= 2)
1572 fprintf_unfiltered (gdb_stdlog, "gdbarch_short_bit called\n");
1573 return gdbarch->short_bit;
1577 set_gdbarch_short_bit (struct gdbarch *gdbarch,
1580 gdbarch->short_bit = short_bit;
1584 gdbarch_int_bit (struct gdbarch *gdbarch)
1586 gdb_assert (gdbarch != NULL);
1587 /* Skip verify of int_bit, invalid_p == 0 */
1588 if (gdbarch_debug >= 2)
1589 fprintf_unfiltered (gdb_stdlog, "gdbarch_int_bit called\n");
1590 return gdbarch->int_bit;
1594 set_gdbarch_int_bit (struct gdbarch *gdbarch,
1597 gdbarch->int_bit = int_bit;
1601 gdbarch_long_bit (struct gdbarch *gdbarch)
1603 gdb_assert (gdbarch != NULL);
1604 /* Skip verify of long_bit, invalid_p == 0 */
1605 if (gdbarch_debug >= 2)
1606 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_bit called\n");
1607 return gdbarch->long_bit;
1611 set_gdbarch_long_bit (struct gdbarch *gdbarch,
1614 gdbarch->long_bit = long_bit;
1618 gdbarch_long_long_bit (struct gdbarch *gdbarch)
1620 gdb_assert (gdbarch != NULL);
1621 /* Skip verify of long_long_bit, invalid_p == 0 */
1622 if (gdbarch_debug >= 2)
1623 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_bit called\n");
1624 return gdbarch->long_long_bit;
1628 set_gdbarch_long_long_bit (struct gdbarch *gdbarch,
1631 gdbarch->long_long_bit = long_long_bit;
1635 gdbarch_half_bit (struct gdbarch *gdbarch)
1637 gdb_assert (gdbarch != NULL);
1638 /* Skip verify of half_bit, invalid_p == 0 */
1639 if (gdbarch_debug >= 2)
1640 fprintf_unfiltered (gdb_stdlog, "gdbarch_half_bit called\n");
1641 return gdbarch->half_bit;
1645 set_gdbarch_half_bit (struct gdbarch *gdbarch,
1648 gdbarch->half_bit = half_bit;
1651 const struct floatformat **
1652 gdbarch_half_format (struct gdbarch *gdbarch)
1654 gdb_assert (gdbarch != NULL);
1655 if (gdbarch_debug >= 2)
1656 fprintf_unfiltered (gdb_stdlog, "gdbarch_half_format called\n");
1657 return gdbarch->half_format;
1661 set_gdbarch_half_format (struct gdbarch *gdbarch,
1662 const struct floatformat ** half_format)
1664 gdbarch->half_format = half_format;
1668 gdbarch_float_bit (struct gdbarch *gdbarch)
1670 gdb_assert (gdbarch != NULL);
1671 /* Skip verify of float_bit, invalid_p == 0 */
1672 if (gdbarch_debug >= 2)
1673 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_bit called\n");
1674 return gdbarch->float_bit;
1678 set_gdbarch_float_bit (struct gdbarch *gdbarch,
1681 gdbarch->float_bit = float_bit;
1684 const struct floatformat **
1685 gdbarch_float_format (struct gdbarch *gdbarch)
1687 gdb_assert (gdbarch != NULL);
1688 if (gdbarch_debug >= 2)
1689 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_format called\n");
1690 return gdbarch->float_format;
1694 set_gdbarch_float_format (struct gdbarch *gdbarch,
1695 const struct floatformat ** float_format)
1697 gdbarch->float_format = float_format;
1701 gdbarch_double_bit (struct gdbarch *gdbarch)
1703 gdb_assert (gdbarch != NULL);
1704 /* Skip verify of double_bit, invalid_p == 0 */
1705 if (gdbarch_debug >= 2)
1706 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_bit called\n");
1707 return gdbarch->double_bit;
1711 set_gdbarch_double_bit (struct gdbarch *gdbarch,
1714 gdbarch->double_bit = double_bit;
1717 const struct floatformat **
1718 gdbarch_double_format (struct gdbarch *gdbarch)
1720 gdb_assert (gdbarch != NULL);
1721 if (gdbarch_debug >= 2)
1722 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_format called\n");
1723 return gdbarch->double_format;
1727 set_gdbarch_double_format (struct gdbarch *gdbarch,
1728 const struct floatformat ** double_format)
1730 gdbarch->double_format = double_format;
1734 gdbarch_long_double_bit (struct gdbarch *gdbarch)
1736 gdb_assert (gdbarch != NULL);
1737 /* Skip verify of long_double_bit, invalid_p == 0 */
1738 if (gdbarch_debug >= 2)
1739 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_bit called\n");
1740 return gdbarch->long_double_bit;
1744 set_gdbarch_long_double_bit (struct gdbarch *gdbarch,
1745 int long_double_bit)
1747 gdbarch->long_double_bit = long_double_bit;
1750 const struct floatformat **
1751 gdbarch_long_double_format (struct gdbarch *gdbarch)
1753 gdb_assert (gdbarch != NULL);
1754 if (gdbarch_debug >= 2)
1755 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_format called\n");
1756 return gdbarch->long_double_format;
1760 set_gdbarch_long_double_format (struct gdbarch *gdbarch,
1761 const struct floatformat ** long_double_format)
1763 gdbarch->long_double_format = long_double_format;
1767 gdbarch_wchar_bit (struct gdbarch *gdbarch)
1769 gdb_assert (gdbarch != NULL);
1770 /* Skip verify of wchar_bit, invalid_p == 0 */
1771 if (gdbarch_debug >= 2)
1772 fprintf_unfiltered (gdb_stdlog, "gdbarch_wchar_bit called\n");
1773 return gdbarch->wchar_bit;
1777 set_gdbarch_wchar_bit (struct gdbarch *gdbarch,
1780 gdbarch->wchar_bit = wchar_bit;
1784 gdbarch_wchar_signed (struct gdbarch *gdbarch)
1786 gdb_assert (gdbarch != NULL);
1787 /* Check variable changed from pre-default. */
1788 gdb_assert (gdbarch->wchar_signed != -1);
1789 if (gdbarch_debug >= 2)
1790 fprintf_unfiltered (gdb_stdlog, "gdbarch_wchar_signed called\n");
1791 return gdbarch->wchar_signed;
1795 set_gdbarch_wchar_signed (struct gdbarch *gdbarch,
1798 gdbarch->wchar_signed = wchar_signed;
1801 const struct floatformat **
1802 gdbarch_floatformat_for_type (struct gdbarch *gdbarch, const char *name, int length)
1804 gdb_assert (gdbarch != NULL);
1805 gdb_assert (gdbarch->floatformat_for_type != NULL);
1806 if (gdbarch_debug >= 2)
1807 fprintf_unfiltered (gdb_stdlog, "gdbarch_floatformat_for_type called\n");
1808 return gdbarch->floatformat_for_type (gdbarch, name, length);
1812 set_gdbarch_floatformat_for_type (struct gdbarch *gdbarch,
1813 gdbarch_floatformat_for_type_ftype floatformat_for_type)
1815 gdbarch->floatformat_for_type = floatformat_for_type;
1819 gdbarch_ptr_bit (struct gdbarch *gdbarch)
1821 gdb_assert (gdbarch != NULL);
1822 /* Skip verify of ptr_bit, invalid_p == 0 */
1823 if (gdbarch_debug >= 2)
1824 fprintf_unfiltered (gdb_stdlog, "gdbarch_ptr_bit called\n");
1825 return gdbarch->ptr_bit;
1829 set_gdbarch_ptr_bit (struct gdbarch *gdbarch,
1832 gdbarch->ptr_bit = ptr_bit;
1836 gdbarch_addr_bit (struct gdbarch *gdbarch)
1838 gdb_assert (gdbarch != NULL);
1839 /* Check variable changed from pre-default. */
1840 gdb_assert (gdbarch->addr_bit != 0);
1841 if (gdbarch_debug >= 2)
1842 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bit called\n");
1843 return gdbarch->addr_bit;
1847 set_gdbarch_addr_bit (struct gdbarch *gdbarch,
1850 gdbarch->addr_bit = addr_bit;
1854 gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch)
1856 gdb_assert (gdbarch != NULL);
1857 /* Check variable changed from pre-default. */
1858 gdb_assert (gdbarch->dwarf2_addr_size != 0);
1859 if (gdbarch_debug >= 2)
1860 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_addr_size called\n");
1861 return gdbarch->dwarf2_addr_size;
1865 set_gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch,
1866 int dwarf2_addr_size)
1868 gdbarch->dwarf2_addr_size = dwarf2_addr_size;
1872 gdbarch_char_signed (struct gdbarch *gdbarch)
1874 gdb_assert (gdbarch != NULL);
1875 /* Check variable changed from pre-default. */
1876 gdb_assert (gdbarch->char_signed != -1);
1877 if (gdbarch_debug >= 2)
1878 fprintf_unfiltered (gdb_stdlog, "gdbarch_char_signed called\n");
1879 return gdbarch->char_signed;
1883 set_gdbarch_char_signed (struct gdbarch *gdbarch,
1886 gdbarch->char_signed = char_signed;
1890 gdbarch_read_pc_p (struct gdbarch *gdbarch)
1892 gdb_assert (gdbarch != NULL);
1893 return gdbarch->read_pc != NULL;
1897 gdbarch_read_pc (struct gdbarch *gdbarch, readable_regcache *regcache)
1899 gdb_assert (gdbarch != NULL);
1900 gdb_assert (gdbarch->read_pc != NULL);
1901 if (gdbarch_debug >= 2)
1902 fprintf_unfiltered (gdb_stdlog, "gdbarch_read_pc called\n");
1903 return gdbarch->read_pc (regcache);
1907 set_gdbarch_read_pc (struct gdbarch *gdbarch,
1908 gdbarch_read_pc_ftype read_pc)
1910 gdbarch->read_pc = read_pc;
1914 gdbarch_write_pc_p (struct gdbarch *gdbarch)
1916 gdb_assert (gdbarch != NULL);
1917 return gdbarch->write_pc != NULL;
1921 gdbarch_write_pc (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR val)
1923 gdb_assert (gdbarch != NULL);
1924 gdb_assert (gdbarch->write_pc != NULL);
1925 if (gdbarch_debug >= 2)
1926 fprintf_unfiltered (gdb_stdlog, "gdbarch_write_pc called\n");
1927 gdbarch->write_pc (regcache, val);
1931 set_gdbarch_write_pc (struct gdbarch *gdbarch,
1932 gdbarch_write_pc_ftype write_pc)
1934 gdbarch->write_pc = write_pc;
1938 gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset)
1940 gdb_assert (gdbarch != NULL);
1941 gdb_assert (gdbarch->virtual_frame_pointer != NULL);
1942 if (gdbarch_debug >= 2)
1943 fprintf_unfiltered (gdb_stdlog, "gdbarch_virtual_frame_pointer called\n");
1944 gdbarch->virtual_frame_pointer (gdbarch, pc, frame_regnum, frame_offset);
1948 set_gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch,
1949 gdbarch_virtual_frame_pointer_ftype virtual_frame_pointer)
1951 gdbarch->virtual_frame_pointer = virtual_frame_pointer;
1955 gdbarch_pseudo_register_read_p (struct gdbarch *gdbarch)
1957 gdb_assert (gdbarch != NULL);
1958 return gdbarch->pseudo_register_read != NULL;
1961 enum register_status
1962 gdbarch_pseudo_register_read (struct gdbarch *gdbarch, readable_regcache *regcache, int cookednum, gdb_byte *buf)
1964 gdb_assert (gdbarch != NULL);
1965 gdb_assert (gdbarch->pseudo_register_read != NULL);
1966 if (gdbarch_debug >= 2)
1967 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read called\n");
1968 return gdbarch->pseudo_register_read (gdbarch, regcache, cookednum, buf);
1972 set_gdbarch_pseudo_register_read (struct gdbarch *gdbarch,
1973 gdbarch_pseudo_register_read_ftype pseudo_register_read)
1975 gdbarch->pseudo_register_read = pseudo_register_read;
1979 gdbarch_pseudo_register_read_value_p (struct gdbarch *gdbarch)
1981 gdb_assert (gdbarch != NULL);
1982 return gdbarch->pseudo_register_read_value != NULL;
1986 gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch, readable_regcache *regcache, int cookednum)
1988 gdb_assert (gdbarch != NULL);
1989 gdb_assert (gdbarch->pseudo_register_read_value != NULL);
1990 if (gdbarch_debug >= 2)
1991 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read_value called\n");
1992 return gdbarch->pseudo_register_read_value (gdbarch, regcache, cookednum);
1996 set_gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch,
1997 gdbarch_pseudo_register_read_value_ftype pseudo_register_read_value)
1999 gdbarch->pseudo_register_read_value = pseudo_register_read_value;
2003 gdbarch_pseudo_register_write_p (struct gdbarch *gdbarch)
2005 gdb_assert (gdbarch != NULL);
2006 return gdbarch->pseudo_register_write != NULL;
2010 gdbarch_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, const gdb_byte *buf)
2012 gdb_assert (gdbarch != NULL);
2013 gdb_assert (gdbarch->pseudo_register_write != NULL);
2014 if (gdbarch_debug >= 2)
2015 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_write called\n");
2016 gdbarch->pseudo_register_write (gdbarch, regcache, cookednum, buf);
2020 set_gdbarch_pseudo_register_write (struct gdbarch *gdbarch,
2021 gdbarch_pseudo_register_write_ftype pseudo_register_write)
2023 gdbarch->pseudo_register_write = pseudo_register_write;
2027 gdbarch_num_regs (struct gdbarch *gdbarch)
2029 gdb_assert (gdbarch != NULL);
2030 /* Check variable changed from pre-default. */
2031 gdb_assert (gdbarch->num_regs != -1);
2032 if (gdbarch_debug >= 2)
2033 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_regs called\n");
2034 return gdbarch->num_regs;
2038 set_gdbarch_num_regs (struct gdbarch *gdbarch,
2041 gdbarch->num_regs = num_regs;
2045 gdbarch_num_pseudo_regs (struct gdbarch *gdbarch)
2047 gdb_assert (gdbarch != NULL);
2048 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
2049 if (gdbarch_debug >= 2)
2050 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_pseudo_regs called\n");
2051 return gdbarch->num_pseudo_regs;
2055 set_gdbarch_num_pseudo_regs (struct gdbarch *gdbarch,
2056 int num_pseudo_regs)
2058 gdbarch->num_pseudo_regs = num_pseudo_regs;
2062 gdbarch_ax_pseudo_register_collect_p (struct gdbarch *gdbarch)
2064 gdb_assert (gdbarch != NULL);
2065 return gdbarch->ax_pseudo_register_collect != NULL;
2069 gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch, struct agent_expr *ax, int reg)
2071 gdb_assert (gdbarch != NULL);
2072 gdb_assert (gdbarch->ax_pseudo_register_collect != NULL);
2073 if (gdbarch_debug >= 2)
2074 fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_collect called\n");
2075 return gdbarch->ax_pseudo_register_collect (gdbarch, ax, reg);
2079 set_gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch,
2080 gdbarch_ax_pseudo_register_collect_ftype ax_pseudo_register_collect)
2082 gdbarch->ax_pseudo_register_collect = ax_pseudo_register_collect;
2086 gdbarch_ax_pseudo_register_push_stack_p (struct gdbarch *gdbarch)
2088 gdb_assert (gdbarch != NULL);
2089 return gdbarch->ax_pseudo_register_push_stack != NULL;
2093 gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch, struct agent_expr *ax, int reg)
2095 gdb_assert (gdbarch != NULL);
2096 gdb_assert (gdbarch->ax_pseudo_register_push_stack != NULL);
2097 if (gdbarch_debug >= 2)
2098 fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_push_stack called\n");
2099 return gdbarch->ax_pseudo_register_push_stack (gdbarch, ax, reg);
2103 set_gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch,
2104 gdbarch_ax_pseudo_register_push_stack_ftype ax_pseudo_register_push_stack)
2106 gdbarch->ax_pseudo_register_push_stack = ax_pseudo_register_push_stack;
2110 gdbarch_handle_segmentation_fault_p (struct gdbarch *gdbarch)
2112 gdb_assert (gdbarch != NULL);
2113 return gdbarch->handle_segmentation_fault != NULL;
2117 gdbarch_handle_segmentation_fault (struct gdbarch *gdbarch, struct ui_out *uiout)
2119 gdb_assert (gdbarch != NULL);
2120 gdb_assert (gdbarch->handle_segmentation_fault != NULL);
2121 if (gdbarch_debug >= 2)
2122 fprintf_unfiltered (gdb_stdlog, "gdbarch_handle_segmentation_fault called\n");
2123 gdbarch->handle_segmentation_fault (gdbarch, uiout);
2127 set_gdbarch_handle_segmentation_fault (struct gdbarch *gdbarch,
2128 gdbarch_handle_segmentation_fault_ftype handle_segmentation_fault)
2130 gdbarch->handle_segmentation_fault = handle_segmentation_fault;
2134 gdbarch_sp_regnum (struct gdbarch *gdbarch)
2136 gdb_assert (gdbarch != NULL);
2137 /* Skip verify of sp_regnum, invalid_p == 0 */
2138 if (gdbarch_debug >= 2)
2139 fprintf_unfiltered (gdb_stdlog, "gdbarch_sp_regnum called\n");
2140 return gdbarch->sp_regnum;
2144 set_gdbarch_sp_regnum (struct gdbarch *gdbarch,
2147 gdbarch->sp_regnum = sp_regnum;
2151 gdbarch_pc_regnum (struct gdbarch *gdbarch)
2153 gdb_assert (gdbarch != NULL);
2154 /* Skip verify of pc_regnum, invalid_p == 0 */
2155 if (gdbarch_debug >= 2)
2156 fprintf_unfiltered (gdb_stdlog, "gdbarch_pc_regnum called\n");
2157 return gdbarch->pc_regnum;
2161 set_gdbarch_pc_regnum (struct gdbarch *gdbarch,
2164 gdbarch->pc_regnum = pc_regnum;
2168 gdbarch_ps_regnum (struct gdbarch *gdbarch)
2170 gdb_assert (gdbarch != NULL);
2171 /* Skip verify of ps_regnum, invalid_p == 0 */
2172 if (gdbarch_debug >= 2)
2173 fprintf_unfiltered (gdb_stdlog, "gdbarch_ps_regnum called\n");
2174 return gdbarch->ps_regnum;
2178 set_gdbarch_ps_regnum (struct gdbarch *gdbarch,
2181 gdbarch->ps_regnum = ps_regnum;
2185 gdbarch_fp0_regnum (struct gdbarch *gdbarch)
2187 gdb_assert (gdbarch != NULL);
2188 /* Skip verify of fp0_regnum, invalid_p == 0 */
2189 if (gdbarch_debug >= 2)
2190 fprintf_unfiltered (gdb_stdlog, "gdbarch_fp0_regnum called\n");
2191 return gdbarch->fp0_regnum;
2195 set_gdbarch_fp0_regnum (struct gdbarch *gdbarch,
2198 gdbarch->fp0_regnum = fp0_regnum;
2202 gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch, int stab_regnr)
2204 gdb_assert (gdbarch != NULL);
2205 gdb_assert (gdbarch->stab_reg_to_regnum != NULL);
2206 if (gdbarch_debug >= 2)
2207 fprintf_unfiltered (gdb_stdlog, "gdbarch_stab_reg_to_regnum called\n");
2208 return gdbarch->stab_reg_to_regnum (gdbarch, stab_regnr);
2212 set_gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch,
2213 gdbarch_stab_reg_to_regnum_ftype stab_reg_to_regnum)
2215 gdbarch->stab_reg_to_regnum = stab_reg_to_regnum;
2219 gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch, int ecoff_regnr)
2221 gdb_assert (gdbarch != NULL);
2222 gdb_assert (gdbarch->ecoff_reg_to_regnum != NULL);
2223 if (gdbarch_debug >= 2)
2224 fprintf_unfiltered (gdb_stdlog, "gdbarch_ecoff_reg_to_regnum called\n");
2225 return gdbarch->ecoff_reg_to_regnum (gdbarch, ecoff_regnr);
2229 set_gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch,
2230 gdbarch_ecoff_reg_to_regnum_ftype ecoff_reg_to_regnum)
2232 gdbarch->ecoff_reg_to_regnum = ecoff_reg_to_regnum;
2236 gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, int sdb_regnr)
2238 gdb_assert (gdbarch != NULL);
2239 gdb_assert (gdbarch->sdb_reg_to_regnum != NULL);
2240 if (gdbarch_debug >= 2)
2241 fprintf_unfiltered (gdb_stdlog, "gdbarch_sdb_reg_to_regnum called\n");
2242 return gdbarch->sdb_reg_to_regnum (gdbarch, sdb_regnr);
2246 set_gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch,
2247 gdbarch_sdb_reg_to_regnum_ftype sdb_reg_to_regnum)
2249 gdbarch->sdb_reg_to_regnum = sdb_reg_to_regnum;
2253 gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int dwarf2_regnr)
2255 gdb_assert (gdbarch != NULL);
2256 gdb_assert (gdbarch->dwarf2_reg_to_regnum != NULL);
2257 if (gdbarch_debug >= 2)
2258 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_reg_to_regnum called\n");
2259 return gdbarch->dwarf2_reg_to_regnum (gdbarch, dwarf2_regnr);
2263 set_gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch,
2264 gdbarch_dwarf2_reg_to_regnum_ftype dwarf2_reg_to_regnum)
2266 gdbarch->dwarf2_reg_to_regnum = dwarf2_reg_to_regnum;
2270 gdbarch_register_name (struct gdbarch *gdbarch, int regnr)
2272 gdb_assert (gdbarch != NULL);
2273 gdb_assert (gdbarch->register_name != NULL);
2274 if (gdbarch_debug >= 2)
2275 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_name called\n");
2276 return gdbarch->register_name (gdbarch, regnr);
2280 set_gdbarch_register_name (struct gdbarch *gdbarch,
2281 gdbarch_register_name_ftype register_name)
2283 gdbarch->register_name = register_name;
2287 gdbarch_register_type_p (struct gdbarch *gdbarch)
2289 gdb_assert (gdbarch != NULL);
2290 return gdbarch->register_type != NULL;
2294 gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr)
2296 gdb_assert (gdbarch != NULL);
2297 gdb_assert (gdbarch->register_type != NULL);
2298 if (gdbarch_debug >= 2)
2299 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_type called\n");
2300 return gdbarch->register_type (gdbarch, reg_nr);
2304 set_gdbarch_register_type (struct gdbarch *gdbarch,
2305 gdbarch_register_type_ftype register_type)
2307 gdbarch->register_type = register_type;
2311 gdbarch_dummy_id_p (struct gdbarch *gdbarch)
2313 gdb_assert (gdbarch != NULL);
2314 return gdbarch->dummy_id != NULL;
2318 gdbarch_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
2320 gdb_assert (gdbarch != NULL);
2321 gdb_assert (gdbarch->dummy_id != NULL);
2322 if (gdbarch_debug >= 2)
2323 fprintf_unfiltered (gdb_stdlog, "gdbarch_dummy_id called\n");
2324 return gdbarch->dummy_id (gdbarch, this_frame);
2328 set_gdbarch_dummy_id (struct gdbarch *gdbarch,
2329 gdbarch_dummy_id_ftype dummy_id)
2331 gdbarch->dummy_id = dummy_id;
2335 gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch)
2337 gdb_assert (gdbarch != NULL);
2338 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
2339 if (gdbarch_debug >= 2)
2340 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_fp_regnum called\n");
2341 return gdbarch->deprecated_fp_regnum;
2345 set_gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch,
2346 int deprecated_fp_regnum)
2348 gdbarch->deprecated_fp_regnum = deprecated_fp_regnum;
2352 gdbarch_push_dummy_call_p (struct gdbarch *gdbarch)
2354 gdb_assert (gdbarch != NULL);
2355 return gdbarch->push_dummy_call != NULL;
2359 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)
2361 gdb_assert (gdbarch != NULL);
2362 gdb_assert (gdbarch->push_dummy_call != NULL);
2363 if (gdbarch_debug >= 2)
2364 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_call called\n");
2365 return gdbarch->push_dummy_call (gdbarch, function, regcache, bp_addr, nargs, args, sp, struct_return, struct_addr);
2369 set_gdbarch_push_dummy_call (struct gdbarch *gdbarch,
2370 gdbarch_push_dummy_call_ftype push_dummy_call)
2372 gdbarch->push_dummy_call = push_dummy_call;
2376 gdbarch_call_dummy_location (struct gdbarch *gdbarch)
2378 gdb_assert (gdbarch != NULL);
2379 /* Skip verify of call_dummy_location, invalid_p == 0 */
2380 if (gdbarch_debug >= 2)
2381 fprintf_unfiltered (gdb_stdlog, "gdbarch_call_dummy_location called\n");
2382 return gdbarch->call_dummy_location;
2386 set_gdbarch_call_dummy_location (struct gdbarch *gdbarch,
2387 int call_dummy_location)
2389 gdbarch->call_dummy_location = call_dummy_location;
2393 gdbarch_push_dummy_code_p (struct gdbarch *gdbarch)
2395 gdb_assert (gdbarch != NULL);
2396 return gdbarch->push_dummy_code != NULL;
2400 gdbarch_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp, CORE_ADDR funaddr, struct value **args, int nargs, struct type *value_type, CORE_ADDR *real_pc, CORE_ADDR *bp_addr, struct regcache *regcache)
2402 gdb_assert (gdbarch != NULL);
2403 gdb_assert (gdbarch->push_dummy_code != NULL);
2404 if (gdbarch_debug >= 2)
2405 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_code called\n");
2406 return gdbarch->push_dummy_code (gdbarch, sp, funaddr, args, nargs, value_type, real_pc, bp_addr, regcache);
2410 set_gdbarch_push_dummy_code (struct gdbarch *gdbarch,
2411 gdbarch_push_dummy_code_ftype push_dummy_code)
2413 gdbarch->push_dummy_code = push_dummy_code;
2417 gdbarch_code_of_frame_writable (struct gdbarch *gdbarch, struct frame_info *frame)
2419 gdb_assert (gdbarch != NULL);
2420 gdb_assert (gdbarch->code_of_frame_writable != NULL);
2421 if (gdbarch_debug >= 2)
2422 fprintf_unfiltered (gdb_stdlog, "gdbarch_code_of_frame_writable called\n");
2423 return gdbarch->code_of_frame_writable (gdbarch, frame);
2427 set_gdbarch_code_of_frame_writable (struct gdbarch *gdbarch,
2428 gdbarch_code_of_frame_writable_ftype code_of_frame_writable)
2430 gdbarch->code_of_frame_writable = code_of_frame_writable;
2434 gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all)
2436 gdb_assert (gdbarch != NULL);
2437 gdb_assert (gdbarch->print_registers_info != NULL);
2438 if (gdbarch_debug >= 2)
2439 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_registers_info called\n");
2440 gdbarch->print_registers_info (gdbarch, file, frame, regnum, all);
2444 set_gdbarch_print_registers_info (struct gdbarch *gdbarch,
2445 gdbarch_print_registers_info_ftype print_registers_info)
2447 gdbarch->print_registers_info = print_registers_info;
2451 gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
2453 gdb_assert (gdbarch != NULL);
2454 gdb_assert (gdbarch->print_float_info != NULL);
2455 if (gdbarch_debug >= 2)
2456 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_float_info called\n");
2457 gdbarch->print_float_info (gdbarch, file, frame, args);
2461 set_gdbarch_print_float_info (struct gdbarch *gdbarch,
2462 gdbarch_print_float_info_ftype print_float_info)
2464 gdbarch->print_float_info = print_float_info;
2468 gdbarch_print_vector_info_p (struct gdbarch *gdbarch)
2470 gdb_assert (gdbarch != NULL);
2471 return gdbarch->print_vector_info != NULL;
2475 gdbarch_print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
2477 gdb_assert (gdbarch != NULL);
2478 gdb_assert (gdbarch->print_vector_info != NULL);
2479 if (gdbarch_debug >= 2)
2480 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_vector_info called\n");
2481 gdbarch->print_vector_info (gdbarch, file, frame, args);
2485 set_gdbarch_print_vector_info (struct gdbarch *gdbarch,
2486 gdbarch_print_vector_info_ftype print_vector_info)
2488 gdbarch->print_vector_info = print_vector_info;
2492 gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr)
2494 gdb_assert (gdbarch != NULL);
2495 gdb_assert (gdbarch->register_sim_regno != NULL);
2496 if (gdbarch_debug >= 2)
2497 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_sim_regno called\n");
2498 return gdbarch->register_sim_regno (gdbarch, reg_nr);
2502 set_gdbarch_register_sim_regno (struct gdbarch *gdbarch,
2503 gdbarch_register_sim_regno_ftype register_sim_regno)
2505 gdbarch->register_sim_regno = register_sim_regno;
2509 gdbarch_cannot_fetch_register (struct gdbarch *gdbarch, int regnum)
2511 gdb_assert (gdbarch != NULL);
2512 gdb_assert (gdbarch->cannot_fetch_register != NULL);
2513 if (gdbarch_debug >= 2)
2514 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_fetch_register called\n");
2515 return gdbarch->cannot_fetch_register (gdbarch, regnum);
2519 set_gdbarch_cannot_fetch_register (struct gdbarch *gdbarch,
2520 gdbarch_cannot_fetch_register_ftype cannot_fetch_register)
2522 gdbarch->cannot_fetch_register = cannot_fetch_register;
2526 gdbarch_cannot_store_register (struct gdbarch *gdbarch, int regnum)
2528 gdb_assert (gdbarch != NULL);
2529 gdb_assert (gdbarch->cannot_store_register != NULL);
2530 if (gdbarch_debug >= 2)
2531 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_store_register called\n");
2532 return gdbarch->cannot_store_register (gdbarch, regnum);
2536 set_gdbarch_cannot_store_register (struct gdbarch *gdbarch,
2537 gdbarch_cannot_store_register_ftype cannot_store_register)
2539 gdbarch->cannot_store_register = cannot_store_register;
2543 gdbarch_get_longjmp_target_p (struct gdbarch *gdbarch)
2545 gdb_assert (gdbarch != NULL);
2546 return gdbarch->get_longjmp_target != NULL;
2550 gdbarch_get_longjmp_target (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR *pc)
2552 gdb_assert (gdbarch != NULL);
2553 gdb_assert (gdbarch->get_longjmp_target != NULL);
2554 if (gdbarch_debug >= 2)
2555 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_longjmp_target called\n");
2556 return gdbarch->get_longjmp_target (frame, pc);
2560 set_gdbarch_get_longjmp_target (struct gdbarch *gdbarch,
2561 gdbarch_get_longjmp_target_ftype get_longjmp_target)
2563 gdbarch->get_longjmp_target = get_longjmp_target;
2567 gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch)
2569 gdb_assert (gdbarch != NULL);
2570 if (gdbarch_debug >= 2)
2571 fprintf_unfiltered (gdb_stdlog, "gdbarch_believe_pcc_promotion called\n");
2572 return gdbarch->believe_pcc_promotion;
2576 set_gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch,
2577 int believe_pcc_promotion)
2579 gdbarch->believe_pcc_promotion = believe_pcc_promotion;
2583 gdbarch_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type)
2585 gdb_assert (gdbarch != NULL);
2586 gdb_assert (gdbarch->convert_register_p != NULL);
2587 if (gdbarch_debug >= 2)
2588 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_register_p called\n");
2589 return gdbarch->convert_register_p (gdbarch, regnum, type);
2593 set_gdbarch_convert_register_p (struct gdbarch *gdbarch,
2594 gdbarch_convert_register_p_ftype convert_register_p)
2596 gdbarch->convert_register_p = convert_register_p;
2600 gdbarch_register_to_value (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, gdb_byte *buf, int *optimizedp, int *unavailablep)
2602 gdb_assert (gdbarch != NULL);
2603 gdb_assert (gdbarch->register_to_value != NULL);
2604 if (gdbarch_debug >= 2)
2605 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_to_value called\n");
2606 return gdbarch->register_to_value (frame, regnum, type, buf, optimizedp, unavailablep);
2610 set_gdbarch_register_to_value (struct gdbarch *gdbarch,
2611 gdbarch_register_to_value_ftype register_to_value)
2613 gdbarch->register_to_value = register_to_value;
2617 gdbarch_value_to_register (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, const gdb_byte *buf)
2619 gdb_assert (gdbarch != NULL);
2620 gdb_assert (gdbarch->value_to_register != NULL);
2621 if (gdbarch_debug >= 2)
2622 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_to_register called\n");
2623 gdbarch->value_to_register (frame, regnum, type, buf);
2627 set_gdbarch_value_to_register (struct gdbarch *gdbarch,
2628 gdbarch_value_to_register_ftype value_to_register)
2630 gdbarch->value_to_register = value_to_register;
2634 gdbarch_value_from_register (struct gdbarch *gdbarch, struct type *type, int regnum, struct frame_id frame_id)
2636 gdb_assert (gdbarch != NULL);
2637 gdb_assert (gdbarch->value_from_register != NULL);
2638 if (gdbarch_debug >= 2)
2639 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_from_register called\n");
2640 return gdbarch->value_from_register (gdbarch, type, regnum, frame_id);
2644 set_gdbarch_value_from_register (struct gdbarch *gdbarch,
2645 gdbarch_value_from_register_ftype value_from_register)
2647 gdbarch->value_from_register = value_from_register;
2651 gdbarch_pointer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
2653 gdb_assert (gdbarch != NULL);
2654 gdb_assert (gdbarch->pointer_to_address != NULL);
2655 if (gdbarch_debug >= 2)
2656 fprintf_unfiltered (gdb_stdlog, "gdbarch_pointer_to_address called\n");
2657 return gdbarch->pointer_to_address (gdbarch, type, buf);
2661 set_gdbarch_pointer_to_address (struct gdbarch *gdbarch,
2662 gdbarch_pointer_to_address_ftype pointer_to_address)
2664 gdbarch->pointer_to_address = pointer_to_address;
2668 gdbarch_address_to_pointer (struct gdbarch *gdbarch, struct type *type, gdb_byte *buf, CORE_ADDR addr)
2670 gdb_assert (gdbarch != NULL);
2671 gdb_assert (gdbarch->address_to_pointer != NULL);
2672 if (gdbarch_debug >= 2)
2673 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_to_pointer called\n");
2674 gdbarch->address_to_pointer (gdbarch, type, buf, addr);
2678 set_gdbarch_address_to_pointer (struct gdbarch *gdbarch,
2679 gdbarch_address_to_pointer_ftype address_to_pointer)
2681 gdbarch->address_to_pointer = address_to_pointer;
2685 gdbarch_integer_to_address_p (struct gdbarch *gdbarch)
2687 gdb_assert (gdbarch != NULL);
2688 return gdbarch->integer_to_address != NULL;
2692 gdbarch_integer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
2694 gdb_assert (gdbarch != NULL);
2695 gdb_assert (gdbarch->integer_to_address != NULL);
2696 if (gdbarch_debug >= 2)
2697 fprintf_unfiltered (gdb_stdlog, "gdbarch_integer_to_address called\n");
2698 return gdbarch->integer_to_address (gdbarch, type, buf);
2702 set_gdbarch_integer_to_address (struct gdbarch *gdbarch,
2703 gdbarch_integer_to_address_ftype integer_to_address)
2705 gdbarch->integer_to_address = integer_to_address;
2709 gdbarch_return_value_p (struct gdbarch *gdbarch)
2711 gdb_assert (gdbarch != NULL);
2712 return gdbarch->return_value != NULL;
2715 enum return_value_convention
2716 gdbarch_return_value (struct gdbarch *gdbarch, struct value *function, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
2718 gdb_assert (gdbarch != NULL);
2719 gdb_assert (gdbarch->return_value != NULL);
2720 if (gdbarch_debug >= 2)
2721 fprintf_unfiltered (gdb_stdlog, "gdbarch_return_value called\n");
2722 return gdbarch->return_value (gdbarch, function, valtype, regcache, readbuf, writebuf);
2726 set_gdbarch_return_value (struct gdbarch *gdbarch,
2727 gdbarch_return_value_ftype return_value)
2729 gdbarch->return_value = return_value;
2733 gdbarch_return_in_first_hidden_param_p (struct gdbarch *gdbarch, struct type *type)
2735 gdb_assert (gdbarch != NULL);
2736 gdb_assert (gdbarch->return_in_first_hidden_param_p != NULL);
2737 if (gdbarch_debug >= 2)
2738 fprintf_unfiltered (gdb_stdlog, "gdbarch_return_in_first_hidden_param_p called\n");
2739 return gdbarch->return_in_first_hidden_param_p (gdbarch, type);
2743 set_gdbarch_return_in_first_hidden_param_p (struct gdbarch *gdbarch,
2744 gdbarch_return_in_first_hidden_param_p_ftype return_in_first_hidden_param_p)
2746 gdbarch->return_in_first_hidden_param_p = return_in_first_hidden_param_p;
2750 gdbarch_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2752 gdb_assert (gdbarch != NULL);
2753 gdb_assert (gdbarch->skip_prologue != NULL);
2754 if (gdbarch_debug >= 2)
2755 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_prologue called\n");
2756 return gdbarch->skip_prologue (gdbarch, ip);
2760 set_gdbarch_skip_prologue (struct gdbarch *gdbarch,
2761 gdbarch_skip_prologue_ftype skip_prologue)
2763 gdbarch->skip_prologue = skip_prologue;
2767 gdbarch_skip_main_prologue_p (struct gdbarch *gdbarch)
2769 gdb_assert (gdbarch != NULL);
2770 return gdbarch->skip_main_prologue != NULL;
2774 gdbarch_skip_main_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2776 gdb_assert (gdbarch != NULL);
2777 gdb_assert (gdbarch->skip_main_prologue != NULL);
2778 if (gdbarch_debug >= 2)
2779 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_main_prologue called\n");
2780 return gdbarch->skip_main_prologue (gdbarch, ip);
2784 set_gdbarch_skip_main_prologue (struct gdbarch *gdbarch,
2785 gdbarch_skip_main_prologue_ftype skip_main_prologue)
2787 gdbarch->skip_main_prologue = skip_main_prologue;
2791 gdbarch_skip_entrypoint_p (struct gdbarch *gdbarch)
2793 gdb_assert (gdbarch != NULL);
2794 return gdbarch->skip_entrypoint != NULL;
2798 gdbarch_skip_entrypoint (struct gdbarch *gdbarch, CORE_ADDR ip)
2800 gdb_assert (gdbarch != NULL);
2801 gdb_assert (gdbarch->skip_entrypoint != NULL);
2802 if (gdbarch_debug >= 2)
2803 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_entrypoint called\n");
2804 return gdbarch->skip_entrypoint (gdbarch, ip);
2808 set_gdbarch_skip_entrypoint (struct gdbarch *gdbarch,
2809 gdbarch_skip_entrypoint_ftype skip_entrypoint)
2811 gdbarch->skip_entrypoint = skip_entrypoint;
2815 gdbarch_inner_than (struct gdbarch *gdbarch, CORE_ADDR lhs, CORE_ADDR rhs)
2817 gdb_assert (gdbarch != NULL);
2818 gdb_assert (gdbarch->inner_than != NULL);
2819 if (gdbarch_debug >= 2)
2820 fprintf_unfiltered (gdb_stdlog, "gdbarch_inner_than called\n");
2821 return gdbarch->inner_than (lhs, rhs);
2825 set_gdbarch_inner_than (struct gdbarch *gdbarch,
2826 gdbarch_inner_than_ftype inner_than)
2828 gdbarch->inner_than = inner_than;
2832 gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
2834 gdb_assert (gdbarch != NULL);
2835 gdb_assert (gdbarch->breakpoint_from_pc != NULL);
2836 if (gdbarch_debug >= 2)
2837 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_from_pc called\n");
2838 return gdbarch->breakpoint_from_pc (gdbarch, pcptr, lenptr);
2842 set_gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch,
2843 gdbarch_breakpoint_from_pc_ftype breakpoint_from_pc)
2845 gdbarch->breakpoint_from_pc = breakpoint_from_pc;
2849 gdbarch_breakpoint_kind_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr)
2851 gdb_assert (gdbarch != NULL);
2852 gdb_assert (gdbarch->breakpoint_kind_from_pc != NULL);
2853 if (gdbarch_debug >= 2)
2854 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_kind_from_pc called\n");
2855 return gdbarch->breakpoint_kind_from_pc (gdbarch, pcptr);
2859 set_gdbarch_breakpoint_kind_from_pc (struct gdbarch *gdbarch,
2860 gdbarch_breakpoint_kind_from_pc_ftype breakpoint_kind_from_pc)
2862 gdbarch->breakpoint_kind_from_pc = breakpoint_kind_from_pc;
2866 gdbarch_sw_breakpoint_from_kind (struct gdbarch *gdbarch, int kind, int *size)
2868 gdb_assert (gdbarch != NULL);
2869 gdb_assert (gdbarch->sw_breakpoint_from_kind != NULL);
2870 if (gdbarch_debug >= 2)
2871 fprintf_unfiltered (gdb_stdlog, "gdbarch_sw_breakpoint_from_kind called\n");
2872 return gdbarch->sw_breakpoint_from_kind (gdbarch, kind, size);
2876 set_gdbarch_sw_breakpoint_from_kind (struct gdbarch *gdbarch,
2877 gdbarch_sw_breakpoint_from_kind_ftype sw_breakpoint_from_kind)
2879 gdbarch->sw_breakpoint_from_kind = sw_breakpoint_from_kind;
2883 gdbarch_breakpoint_kind_from_current_state (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR *pcptr)
2885 gdb_assert (gdbarch != NULL);
2886 gdb_assert (gdbarch->breakpoint_kind_from_current_state != NULL);
2887 if (gdbarch_debug >= 2)
2888 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_kind_from_current_state called\n");
2889 return gdbarch->breakpoint_kind_from_current_state (gdbarch, regcache, pcptr);
2893 set_gdbarch_breakpoint_kind_from_current_state (struct gdbarch *gdbarch,
2894 gdbarch_breakpoint_kind_from_current_state_ftype breakpoint_kind_from_current_state)
2896 gdbarch->breakpoint_kind_from_current_state = breakpoint_kind_from_current_state;
2900 gdbarch_adjust_breakpoint_address_p (struct gdbarch *gdbarch)
2902 gdb_assert (gdbarch != NULL);
2903 return gdbarch->adjust_breakpoint_address != NULL;
2907 gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
2909 gdb_assert (gdbarch != NULL);
2910 gdb_assert (gdbarch->adjust_breakpoint_address != NULL);
2911 if (gdbarch_debug >= 2)
2912 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_breakpoint_address called\n");
2913 return gdbarch->adjust_breakpoint_address (gdbarch, bpaddr);
2917 set_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch,
2918 gdbarch_adjust_breakpoint_address_ftype adjust_breakpoint_address)
2920 gdbarch->adjust_breakpoint_address = adjust_breakpoint_address;
2924 gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
2926 gdb_assert (gdbarch != NULL);
2927 gdb_assert (gdbarch->memory_insert_breakpoint != NULL);
2928 if (gdbarch_debug >= 2)
2929 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_insert_breakpoint called\n");
2930 return gdbarch->memory_insert_breakpoint (gdbarch, bp_tgt);
2934 set_gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch,
2935 gdbarch_memory_insert_breakpoint_ftype memory_insert_breakpoint)
2937 gdbarch->memory_insert_breakpoint = memory_insert_breakpoint;
2941 gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
2943 gdb_assert (gdbarch != NULL);
2944 gdb_assert (gdbarch->memory_remove_breakpoint != NULL);
2945 if (gdbarch_debug >= 2)
2946 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_remove_breakpoint called\n");
2947 return gdbarch->memory_remove_breakpoint (gdbarch, bp_tgt);
2951 set_gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch,
2952 gdbarch_memory_remove_breakpoint_ftype memory_remove_breakpoint)
2954 gdbarch->memory_remove_breakpoint = memory_remove_breakpoint;
2958 gdbarch_decr_pc_after_break (struct gdbarch *gdbarch)
2960 gdb_assert (gdbarch != NULL);
2961 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
2962 if (gdbarch_debug >= 2)
2963 fprintf_unfiltered (gdb_stdlog, "gdbarch_decr_pc_after_break called\n");
2964 return gdbarch->decr_pc_after_break;
2968 set_gdbarch_decr_pc_after_break (struct gdbarch *gdbarch,
2969 CORE_ADDR decr_pc_after_break)
2971 gdbarch->decr_pc_after_break = decr_pc_after_break;
2975 gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch)
2977 gdb_assert (gdbarch != NULL);
2978 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
2979 if (gdbarch_debug >= 2)
2980 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_function_start_offset called\n");
2981 return gdbarch->deprecated_function_start_offset;
2985 set_gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch,
2986 CORE_ADDR deprecated_function_start_offset)
2988 gdbarch->deprecated_function_start_offset = deprecated_function_start_offset;
2992 gdbarch_remote_register_number (struct gdbarch *gdbarch, int regno)
2994 gdb_assert (gdbarch != NULL);
2995 gdb_assert (gdbarch->remote_register_number != NULL);
2996 if (gdbarch_debug >= 2)
2997 fprintf_unfiltered (gdb_stdlog, "gdbarch_remote_register_number called\n");
2998 return gdbarch->remote_register_number (gdbarch, regno);
3002 set_gdbarch_remote_register_number (struct gdbarch *gdbarch,
3003 gdbarch_remote_register_number_ftype remote_register_number)
3005 gdbarch->remote_register_number = remote_register_number;
3009 gdbarch_fetch_tls_load_module_address_p (struct gdbarch *gdbarch)
3011 gdb_assert (gdbarch != NULL);
3012 return gdbarch->fetch_tls_load_module_address != NULL;
3016 gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch, struct objfile *objfile)
3018 gdb_assert (gdbarch != NULL);
3019 gdb_assert (gdbarch->fetch_tls_load_module_address != NULL);
3020 if (gdbarch_debug >= 2)
3021 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_tls_load_module_address called\n");
3022 return gdbarch->fetch_tls_load_module_address (objfile);
3026 set_gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch,
3027 gdbarch_fetch_tls_load_module_address_ftype fetch_tls_load_module_address)
3029 gdbarch->fetch_tls_load_module_address = fetch_tls_load_module_address;
3033 gdbarch_frame_args_skip (struct gdbarch *gdbarch)
3035 gdb_assert (gdbarch != NULL);
3036 /* Skip verify of frame_args_skip, invalid_p == 0 */
3037 if (gdbarch_debug >= 2)
3038 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_args_skip called\n");
3039 return gdbarch->frame_args_skip;
3043 set_gdbarch_frame_args_skip (struct gdbarch *gdbarch,
3044 CORE_ADDR frame_args_skip)
3046 gdbarch->frame_args_skip = frame_args_skip;
3050 gdbarch_unwind_pc_p (struct gdbarch *gdbarch)
3052 gdb_assert (gdbarch != NULL);
3053 return gdbarch->unwind_pc != NULL;
3057 gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
3059 gdb_assert (gdbarch != NULL);
3060 gdb_assert (gdbarch->unwind_pc != NULL);
3061 if (gdbarch_debug >= 2)
3062 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_pc called\n");
3063 return gdbarch->unwind_pc (gdbarch, next_frame);
3067 set_gdbarch_unwind_pc (struct gdbarch *gdbarch,
3068 gdbarch_unwind_pc_ftype unwind_pc)
3070 gdbarch->unwind_pc = unwind_pc;
3074 gdbarch_unwind_sp_p (struct gdbarch *gdbarch)
3076 gdb_assert (gdbarch != NULL);
3077 return gdbarch->unwind_sp != NULL;
3081 gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
3083 gdb_assert (gdbarch != NULL);
3084 gdb_assert (gdbarch->unwind_sp != NULL);
3085 if (gdbarch_debug >= 2)
3086 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_sp called\n");
3087 return gdbarch->unwind_sp (gdbarch, next_frame);
3091 set_gdbarch_unwind_sp (struct gdbarch *gdbarch,
3092 gdbarch_unwind_sp_ftype unwind_sp)
3094 gdbarch->unwind_sp = unwind_sp;
3098 gdbarch_frame_num_args_p (struct gdbarch *gdbarch)
3100 gdb_assert (gdbarch != NULL);
3101 return gdbarch->frame_num_args != NULL;
3105 gdbarch_frame_num_args (struct gdbarch *gdbarch, struct frame_info *frame)
3107 gdb_assert (gdbarch != NULL);
3108 gdb_assert (gdbarch->frame_num_args != NULL);
3109 if (gdbarch_debug >= 2)
3110 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_num_args called\n");
3111 return gdbarch->frame_num_args (frame);
3115 set_gdbarch_frame_num_args (struct gdbarch *gdbarch,
3116 gdbarch_frame_num_args_ftype frame_num_args)
3118 gdbarch->frame_num_args = frame_num_args;
3122 gdbarch_frame_align_p (struct gdbarch *gdbarch)
3124 gdb_assert (gdbarch != NULL);
3125 return gdbarch->frame_align != NULL;
3129 gdbarch_frame_align (struct gdbarch *gdbarch, CORE_ADDR address)
3131 gdb_assert (gdbarch != NULL);
3132 gdb_assert (gdbarch->frame_align != NULL);
3133 if (gdbarch_debug >= 2)
3134 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_align called\n");
3135 return gdbarch->frame_align (gdbarch, address);
3139 set_gdbarch_frame_align (struct gdbarch *gdbarch,
3140 gdbarch_frame_align_ftype frame_align)
3142 gdbarch->frame_align = frame_align;
3146 gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
3148 gdb_assert (gdbarch != NULL);
3149 gdb_assert (gdbarch->stabs_argument_has_addr != NULL);
3150 if (gdbarch_debug >= 2)
3151 fprintf_unfiltered (gdb_stdlog, "gdbarch_stabs_argument_has_addr called\n");
3152 return gdbarch->stabs_argument_has_addr (gdbarch, type);
3156 set_gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch,
3157 gdbarch_stabs_argument_has_addr_ftype stabs_argument_has_addr)
3159 gdbarch->stabs_argument_has_addr = stabs_argument_has_addr;
3163 gdbarch_frame_red_zone_size (struct gdbarch *gdbarch)
3165 gdb_assert (gdbarch != NULL);
3166 if (gdbarch_debug >= 2)
3167 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_red_zone_size called\n");
3168 return gdbarch->frame_red_zone_size;
3172 set_gdbarch_frame_red_zone_size (struct gdbarch *gdbarch,
3173 int frame_red_zone_size)
3175 gdbarch->frame_red_zone_size = frame_red_zone_size;
3179 gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr, struct target_ops *targ)
3181 gdb_assert (gdbarch != NULL);
3182 gdb_assert (gdbarch->convert_from_func_ptr_addr != NULL);
3183 if (gdbarch_debug >= 2)
3184 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_from_func_ptr_addr called\n");
3185 return gdbarch->convert_from_func_ptr_addr (gdbarch, addr, targ);
3189 set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch,
3190 gdbarch_convert_from_func_ptr_addr_ftype convert_from_func_ptr_addr)
3192 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr;
3196 gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
3198 gdb_assert (gdbarch != NULL);
3199 gdb_assert (gdbarch->addr_bits_remove != NULL);
3200 if (gdbarch_debug >= 2)
3201 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bits_remove called\n");
3202 return gdbarch->addr_bits_remove (gdbarch, addr);
3206 set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch,
3207 gdbarch_addr_bits_remove_ftype addr_bits_remove)
3209 gdbarch->addr_bits_remove = addr_bits_remove;
3213 gdbarch_significant_addr_bit (struct gdbarch *gdbarch)
3215 gdb_assert (gdbarch != NULL);
3216 /* Skip verify of significant_addr_bit, invalid_p == 0 */
3217 if (gdbarch_debug >= 2)
3218 fprintf_unfiltered (gdb_stdlog, "gdbarch_significant_addr_bit called\n");
3219 return gdbarch->significant_addr_bit;
3223 set_gdbarch_significant_addr_bit (struct gdbarch *gdbarch,
3224 int significant_addr_bit)
3226 gdbarch->significant_addr_bit = significant_addr_bit;
3230 gdbarch_software_single_step_p (struct gdbarch *gdbarch)
3232 gdb_assert (gdbarch != NULL);
3233 return gdbarch->software_single_step != NULL;
3236 std::vector<CORE_ADDR>
3237 gdbarch_software_single_step (struct gdbarch *gdbarch, struct regcache *regcache)
3239 gdb_assert (gdbarch != NULL);
3240 gdb_assert (gdbarch->software_single_step != NULL);
3241 if (gdbarch_debug >= 2)
3242 fprintf_unfiltered (gdb_stdlog, "gdbarch_software_single_step called\n");
3243 return gdbarch->software_single_step (regcache);
3247 set_gdbarch_software_single_step (struct gdbarch *gdbarch,
3248 gdbarch_software_single_step_ftype software_single_step)
3250 gdbarch->software_single_step = software_single_step;
3254 gdbarch_single_step_through_delay_p (struct gdbarch *gdbarch)
3256 gdb_assert (gdbarch != NULL);
3257 return gdbarch->single_step_through_delay != NULL;
3261 gdbarch_single_step_through_delay (struct gdbarch *gdbarch, struct frame_info *frame)
3263 gdb_assert (gdbarch != NULL);
3264 gdb_assert (gdbarch->single_step_through_delay != NULL);
3265 if (gdbarch_debug >= 2)
3266 fprintf_unfiltered (gdb_stdlog, "gdbarch_single_step_through_delay called\n");
3267 return gdbarch->single_step_through_delay (gdbarch, frame);
3271 set_gdbarch_single_step_through_delay (struct gdbarch *gdbarch,
3272 gdbarch_single_step_through_delay_ftype single_step_through_delay)
3274 gdbarch->single_step_through_delay = single_step_through_delay;
3278 gdbarch_print_insn (struct gdbarch *gdbarch, bfd_vma vma, struct disassemble_info *info)
3280 gdb_assert (gdbarch != NULL);
3281 gdb_assert (gdbarch->print_insn != NULL);
3282 if (gdbarch_debug >= 2)
3283 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_insn called\n");
3284 return gdbarch->print_insn (vma, info);
3288 set_gdbarch_print_insn (struct gdbarch *gdbarch,
3289 gdbarch_print_insn_ftype print_insn)
3291 gdbarch->print_insn = print_insn;
3295 gdbarch_skip_trampoline_code (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR pc)
3297 gdb_assert (gdbarch != NULL);
3298 gdb_assert (gdbarch->skip_trampoline_code != NULL);
3299 if (gdbarch_debug >= 2)
3300 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_trampoline_code called\n");
3301 return gdbarch->skip_trampoline_code (frame, pc);
3305 set_gdbarch_skip_trampoline_code (struct gdbarch *gdbarch,
3306 gdbarch_skip_trampoline_code_ftype skip_trampoline_code)
3308 gdbarch->skip_trampoline_code = skip_trampoline_code;
3312 gdbarch_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
3314 gdb_assert (gdbarch != NULL);
3315 gdb_assert (gdbarch->skip_solib_resolver != NULL);
3316 if (gdbarch_debug >= 2)
3317 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_solib_resolver called\n");
3318 return gdbarch->skip_solib_resolver (gdbarch, pc);
3322 set_gdbarch_skip_solib_resolver (struct gdbarch *gdbarch,
3323 gdbarch_skip_solib_resolver_ftype skip_solib_resolver)
3325 gdbarch->skip_solib_resolver = skip_solib_resolver;
3329 gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, CORE_ADDR pc, const char *name)
3331 gdb_assert (gdbarch != NULL);
3332 gdb_assert (gdbarch->in_solib_return_trampoline != NULL);
3333 if (gdbarch_debug >= 2)
3334 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_solib_return_trampoline called\n");
3335 return gdbarch->in_solib_return_trampoline (gdbarch, pc, name);
3339 set_gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch,
3340 gdbarch_in_solib_return_trampoline_ftype in_solib_return_trampoline)
3342 gdbarch->in_solib_return_trampoline = in_solib_return_trampoline;
3346 gdbarch_in_indirect_branch_thunk (struct gdbarch *gdbarch, CORE_ADDR pc)
3348 gdb_assert (gdbarch != NULL);
3349 gdb_assert (gdbarch->in_indirect_branch_thunk != NULL);
3350 if (gdbarch_debug >= 2)
3351 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_indirect_branch_thunk called\n");
3352 return gdbarch->in_indirect_branch_thunk (gdbarch, pc);
3356 set_gdbarch_in_indirect_branch_thunk (struct gdbarch *gdbarch,
3357 gdbarch_in_indirect_branch_thunk_ftype in_indirect_branch_thunk)
3359 gdbarch->in_indirect_branch_thunk = in_indirect_branch_thunk;
3363 gdbarch_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR addr)
3365 gdb_assert (gdbarch != NULL);
3366 gdb_assert (gdbarch->stack_frame_destroyed_p != NULL);
3367 if (gdbarch_debug >= 2)
3368 fprintf_unfiltered (gdb_stdlog, "gdbarch_stack_frame_destroyed_p called\n");
3369 return gdbarch->stack_frame_destroyed_p (gdbarch, addr);
3373 set_gdbarch_stack_frame_destroyed_p (struct gdbarch *gdbarch,
3374 gdbarch_stack_frame_destroyed_p_ftype stack_frame_destroyed_p)
3376 gdbarch->stack_frame_destroyed_p = stack_frame_destroyed_p;
3380 gdbarch_elf_make_msymbol_special_p (struct gdbarch *gdbarch)
3382 gdb_assert (gdbarch != NULL);
3383 return gdbarch->elf_make_msymbol_special != NULL;
3387 gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch, asymbol *sym, struct minimal_symbol *msym)
3389 gdb_assert (gdbarch != NULL);
3390 gdb_assert (gdbarch->elf_make_msymbol_special != NULL);
3391 if (gdbarch_debug >= 2)
3392 fprintf_unfiltered (gdb_stdlog, "gdbarch_elf_make_msymbol_special called\n");
3393 gdbarch->elf_make_msymbol_special (sym, msym);
3397 set_gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch,
3398 gdbarch_elf_make_msymbol_special_ftype elf_make_msymbol_special)
3400 gdbarch->elf_make_msymbol_special = elf_make_msymbol_special;
3404 gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch, int val, struct minimal_symbol *msym)
3406 gdb_assert (gdbarch != NULL);
3407 gdb_assert (gdbarch->coff_make_msymbol_special != NULL);
3408 if (gdbarch_debug >= 2)
3409 fprintf_unfiltered (gdb_stdlog, "gdbarch_coff_make_msymbol_special called\n");
3410 gdbarch->coff_make_msymbol_special (val, msym);
3414 set_gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch,
3415 gdbarch_coff_make_msymbol_special_ftype coff_make_msymbol_special)
3417 gdbarch->coff_make_msymbol_special = coff_make_msymbol_special;
3421 gdbarch_make_symbol_special (struct gdbarch *gdbarch, struct symbol *sym, struct objfile *objfile)
3423 gdb_assert (gdbarch != NULL);
3424 gdb_assert (gdbarch->make_symbol_special != NULL);
3425 if (gdbarch_debug >= 2)
3426 fprintf_unfiltered (gdb_stdlog, "gdbarch_make_symbol_special called\n");
3427 gdbarch->make_symbol_special (sym, objfile);
3431 set_gdbarch_make_symbol_special (struct gdbarch *gdbarch,
3432 gdbarch_make_symbol_special_ftype make_symbol_special)
3434 gdbarch->make_symbol_special = make_symbol_special;
3438 gdbarch_adjust_dwarf2_addr (struct gdbarch *gdbarch, CORE_ADDR pc)
3440 gdb_assert (gdbarch != NULL);
3441 gdb_assert (gdbarch->adjust_dwarf2_addr != NULL);
3442 if (gdbarch_debug >= 2)
3443 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_dwarf2_addr called\n");
3444 return gdbarch->adjust_dwarf2_addr (pc);
3448 set_gdbarch_adjust_dwarf2_addr (struct gdbarch *gdbarch,
3449 gdbarch_adjust_dwarf2_addr_ftype adjust_dwarf2_addr)
3451 gdbarch->adjust_dwarf2_addr = adjust_dwarf2_addr;
3455 gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch, CORE_ADDR addr, int rel)
3457 gdb_assert (gdbarch != NULL);
3458 gdb_assert (gdbarch->adjust_dwarf2_line != NULL);
3459 if (gdbarch_debug >= 2)
3460 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_dwarf2_line called\n");
3461 return gdbarch->adjust_dwarf2_line (addr, rel);
3465 set_gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch,
3466 gdbarch_adjust_dwarf2_line_ftype adjust_dwarf2_line)
3468 gdbarch->adjust_dwarf2_line = adjust_dwarf2_line;
3472 gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch)
3474 gdb_assert (gdbarch != NULL);
3475 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
3476 if (gdbarch_debug >= 2)
3477 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_step_breakpoint called\n");
3478 return gdbarch->cannot_step_breakpoint;
3482 set_gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch,
3483 int cannot_step_breakpoint)
3485 gdbarch->cannot_step_breakpoint = cannot_step_breakpoint;
3489 gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch)
3491 gdb_assert (gdbarch != NULL);
3492 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
3493 if (gdbarch_debug >= 2)
3494 fprintf_unfiltered (gdb_stdlog, "gdbarch_have_nonsteppable_watchpoint called\n");
3495 return gdbarch->have_nonsteppable_watchpoint;
3499 set_gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch,
3500 int have_nonsteppable_watchpoint)
3502 gdbarch->have_nonsteppable_watchpoint = have_nonsteppable_watchpoint;
3506 gdbarch_address_class_type_flags_p (struct gdbarch *gdbarch)
3508 gdb_assert (gdbarch != NULL);
3509 return gdbarch->address_class_type_flags != NULL;
3513 gdbarch_address_class_type_flags (struct gdbarch *gdbarch, int byte_size, int dwarf2_addr_class)
3515 gdb_assert (gdbarch != NULL);
3516 gdb_assert (gdbarch->address_class_type_flags != NULL);
3517 if (gdbarch_debug >= 2)
3518 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags called\n");
3519 return gdbarch->address_class_type_flags (byte_size, dwarf2_addr_class);
3523 set_gdbarch_address_class_type_flags (struct gdbarch *gdbarch,
3524 gdbarch_address_class_type_flags_ftype address_class_type_flags)
3526 gdbarch->address_class_type_flags = address_class_type_flags;
3530 gdbarch_address_class_type_flags_to_name_p (struct gdbarch *gdbarch)
3532 gdb_assert (gdbarch != NULL);
3533 return gdbarch->address_class_type_flags_to_name != NULL;
3537 gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
3539 gdb_assert (gdbarch != NULL);
3540 gdb_assert (gdbarch->address_class_type_flags_to_name != NULL);
3541 if (gdbarch_debug >= 2)
3542 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags_to_name called\n");
3543 return gdbarch->address_class_type_flags_to_name (gdbarch, type_flags);
3547 set_gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch,
3548 gdbarch_address_class_type_flags_to_name_ftype address_class_type_flags_to_name)
3550 gdbarch->address_class_type_flags_to_name = address_class_type_flags_to_name;
3554 gdbarch_execute_dwarf_cfa_vendor_op (struct gdbarch *gdbarch, gdb_byte op, struct dwarf2_frame_state *fs)
3556 gdb_assert (gdbarch != NULL);
3557 gdb_assert (gdbarch->execute_dwarf_cfa_vendor_op != NULL);
3558 if (gdbarch_debug >= 2)
3559 fprintf_unfiltered (gdb_stdlog, "gdbarch_execute_dwarf_cfa_vendor_op called\n");
3560 return gdbarch->execute_dwarf_cfa_vendor_op (gdbarch, op, fs);
3564 set_gdbarch_execute_dwarf_cfa_vendor_op (struct gdbarch *gdbarch,
3565 gdbarch_execute_dwarf_cfa_vendor_op_ftype execute_dwarf_cfa_vendor_op)
3567 gdbarch->execute_dwarf_cfa_vendor_op = execute_dwarf_cfa_vendor_op;
3571 gdbarch_address_class_name_to_type_flags_p (struct gdbarch *gdbarch)
3573 gdb_assert (gdbarch != NULL);
3574 return gdbarch->address_class_name_to_type_flags != NULL;
3578 gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch, const char *name, int *type_flags_ptr)
3580 gdb_assert (gdbarch != NULL);
3581 gdb_assert (gdbarch->address_class_name_to_type_flags != NULL);
3582 if (gdbarch_debug >= 2)
3583 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_name_to_type_flags called\n");
3584 return gdbarch->address_class_name_to_type_flags (gdbarch, name, type_flags_ptr);
3588 set_gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch,
3589 gdbarch_address_class_name_to_type_flags_ftype address_class_name_to_type_flags)
3591 gdbarch->address_class_name_to_type_flags = address_class_name_to_type_flags;
3595 gdbarch_register_reggroup_p (struct gdbarch *gdbarch, int regnum, struct reggroup *reggroup)
3597 gdb_assert (gdbarch != NULL);
3598 gdb_assert (gdbarch->register_reggroup_p != NULL);
3599 if (gdbarch_debug >= 2)
3600 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_reggroup_p called\n");
3601 return gdbarch->register_reggroup_p (gdbarch, regnum, reggroup);
3605 set_gdbarch_register_reggroup_p (struct gdbarch *gdbarch,
3606 gdbarch_register_reggroup_p_ftype register_reggroup_p)
3608 gdbarch->register_reggroup_p = register_reggroup_p;
3612 gdbarch_fetch_pointer_argument_p (struct gdbarch *gdbarch)
3614 gdb_assert (gdbarch != NULL);
3615 return gdbarch->fetch_pointer_argument != NULL;
3619 gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch, struct frame_info *frame, int argi, struct type *type)
3621 gdb_assert (gdbarch != NULL);
3622 gdb_assert (gdbarch->fetch_pointer_argument != NULL);
3623 if (gdbarch_debug >= 2)
3624 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_pointer_argument called\n");
3625 return gdbarch->fetch_pointer_argument (frame, argi, type);
3629 set_gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch,
3630 gdbarch_fetch_pointer_argument_ftype fetch_pointer_argument)
3632 gdbarch->fetch_pointer_argument = fetch_pointer_argument;
3636 gdbarch_iterate_over_regset_sections_p (struct gdbarch *gdbarch)
3638 gdb_assert (gdbarch != NULL);
3639 return gdbarch->iterate_over_regset_sections != NULL;
3643 gdbarch_iterate_over_regset_sections (struct gdbarch *gdbarch, iterate_over_regset_sections_cb *cb, void *cb_data, const struct regcache *regcache)
3645 gdb_assert (gdbarch != NULL);
3646 gdb_assert (gdbarch->iterate_over_regset_sections != NULL);
3647 if (gdbarch_debug >= 2)
3648 fprintf_unfiltered (gdb_stdlog, "gdbarch_iterate_over_regset_sections called\n");
3649 gdbarch->iterate_over_regset_sections (gdbarch, cb, cb_data, regcache);
3653 set_gdbarch_iterate_over_regset_sections (struct gdbarch *gdbarch,
3654 gdbarch_iterate_over_regset_sections_ftype iterate_over_regset_sections)
3656 gdbarch->iterate_over_regset_sections = iterate_over_regset_sections;
3660 gdbarch_make_corefile_notes_p (struct gdbarch *gdbarch)
3662 gdb_assert (gdbarch != NULL);
3663 return gdbarch->make_corefile_notes != NULL;
3667 gdbarch_make_corefile_notes (struct gdbarch *gdbarch, bfd *obfd, int *note_size)
3669 gdb_assert (gdbarch != NULL);
3670 gdb_assert (gdbarch->make_corefile_notes != NULL);
3671 if (gdbarch_debug >= 2)
3672 fprintf_unfiltered (gdb_stdlog, "gdbarch_make_corefile_notes called\n");
3673 return gdbarch->make_corefile_notes (gdbarch, obfd, note_size);
3677 set_gdbarch_make_corefile_notes (struct gdbarch *gdbarch,
3678 gdbarch_make_corefile_notes_ftype make_corefile_notes)
3680 gdbarch->make_corefile_notes = make_corefile_notes;
3684 gdbarch_find_memory_regions_p (struct gdbarch *gdbarch)
3686 gdb_assert (gdbarch != NULL);
3687 return gdbarch->find_memory_regions != NULL;
3691 gdbarch_find_memory_regions (struct gdbarch *gdbarch, find_memory_region_ftype func, void *data)
3693 gdb_assert (gdbarch != NULL);
3694 gdb_assert (gdbarch->find_memory_regions != NULL);
3695 if (gdbarch_debug >= 2)
3696 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_memory_regions called\n");
3697 return gdbarch->find_memory_regions (gdbarch, func, data);
3701 set_gdbarch_find_memory_regions (struct gdbarch *gdbarch,
3702 gdbarch_find_memory_regions_ftype find_memory_regions)
3704 gdbarch->find_memory_regions = find_memory_regions;
3708 gdbarch_core_xfer_shared_libraries_p (struct gdbarch *gdbarch)
3710 gdb_assert (gdbarch != NULL);
3711 return gdbarch->core_xfer_shared_libraries != NULL;
3715 gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
3717 gdb_assert (gdbarch != NULL);
3718 gdb_assert (gdbarch->core_xfer_shared_libraries != NULL);
3719 if (gdbarch_debug >= 2)
3720 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries called\n");
3721 return gdbarch->core_xfer_shared_libraries (gdbarch, readbuf, offset, len);
3725 set_gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch,
3726 gdbarch_core_xfer_shared_libraries_ftype core_xfer_shared_libraries)
3728 gdbarch->core_xfer_shared_libraries = core_xfer_shared_libraries;
3732 gdbarch_core_xfer_shared_libraries_aix_p (struct gdbarch *gdbarch)
3734 gdb_assert (gdbarch != NULL);
3735 return gdbarch->core_xfer_shared_libraries_aix != NULL;
3739 gdbarch_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
3741 gdb_assert (gdbarch != NULL);
3742 gdb_assert (gdbarch->core_xfer_shared_libraries_aix != NULL);
3743 if (gdbarch_debug >= 2)
3744 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries_aix called\n");
3745 return gdbarch->core_xfer_shared_libraries_aix (gdbarch, readbuf, offset, len);
3749 set_gdbarch_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch,
3750 gdbarch_core_xfer_shared_libraries_aix_ftype core_xfer_shared_libraries_aix)
3752 gdbarch->core_xfer_shared_libraries_aix = core_xfer_shared_libraries_aix;
3756 gdbarch_core_pid_to_str_p (struct gdbarch *gdbarch)
3758 gdb_assert (gdbarch != NULL);
3759 return gdbarch->core_pid_to_str != NULL;
3763 gdbarch_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid)
3765 gdb_assert (gdbarch != NULL);
3766 gdb_assert (gdbarch->core_pid_to_str != NULL);
3767 if (gdbarch_debug >= 2)
3768 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_pid_to_str called\n");
3769 return gdbarch->core_pid_to_str (gdbarch, ptid);
3773 set_gdbarch_core_pid_to_str (struct gdbarch *gdbarch,
3774 gdbarch_core_pid_to_str_ftype core_pid_to_str)
3776 gdbarch->core_pid_to_str = core_pid_to_str;
3780 gdbarch_core_thread_name_p (struct gdbarch *gdbarch)
3782 gdb_assert (gdbarch != NULL);
3783 return gdbarch->core_thread_name != NULL;
3787 gdbarch_core_thread_name (struct gdbarch *gdbarch, struct thread_info *thr)
3789 gdb_assert (gdbarch != NULL);
3790 gdb_assert (gdbarch->core_thread_name != NULL);
3791 if (gdbarch_debug >= 2)
3792 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_thread_name called\n");
3793 return gdbarch->core_thread_name (gdbarch, thr);
3797 set_gdbarch_core_thread_name (struct gdbarch *gdbarch,
3798 gdbarch_core_thread_name_ftype core_thread_name)
3800 gdbarch->core_thread_name = core_thread_name;
3804 gdbarch_core_xfer_siginfo_p (struct gdbarch *gdbarch)
3806 gdb_assert (gdbarch != NULL);
3807 return gdbarch->core_xfer_siginfo != NULL;
3811 gdbarch_core_xfer_siginfo (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
3813 gdb_assert (gdbarch != NULL);
3814 gdb_assert (gdbarch->core_xfer_siginfo != NULL);
3815 if (gdbarch_debug >= 2)
3816 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_siginfo called\n");
3817 return gdbarch->core_xfer_siginfo (gdbarch, readbuf, offset, len);
3821 set_gdbarch_core_xfer_siginfo (struct gdbarch *gdbarch,
3822 gdbarch_core_xfer_siginfo_ftype core_xfer_siginfo)
3824 gdbarch->core_xfer_siginfo = core_xfer_siginfo;
3828 gdbarch_gcore_bfd_target_p (struct gdbarch *gdbarch)
3830 gdb_assert (gdbarch != NULL);
3831 return gdbarch->gcore_bfd_target != 0;
3835 gdbarch_gcore_bfd_target (struct gdbarch *gdbarch)
3837 gdb_assert (gdbarch != NULL);
3838 /* Check variable changed from pre-default. */
3839 gdb_assert (gdbarch->gcore_bfd_target != 0);
3840 if (gdbarch_debug >= 2)
3841 fprintf_unfiltered (gdb_stdlog, "gdbarch_gcore_bfd_target called\n");
3842 return gdbarch->gcore_bfd_target;
3846 set_gdbarch_gcore_bfd_target (struct gdbarch *gdbarch,
3847 const char * gcore_bfd_target)
3849 gdbarch->gcore_bfd_target = gcore_bfd_target;
3853 gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch)
3855 gdb_assert (gdbarch != NULL);
3856 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
3857 if (gdbarch_debug >= 2)
3858 fprintf_unfiltered (gdb_stdlog, "gdbarch_vtable_function_descriptors called\n");
3859 return gdbarch->vtable_function_descriptors;
3863 set_gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch,
3864 int vtable_function_descriptors)
3866 gdbarch->vtable_function_descriptors = vtable_function_descriptors;
3870 gdbarch_vbit_in_delta (struct gdbarch *gdbarch)
3872 gdb_assert (gdbarch != NULL);
3873 /* Skip verify of vbit_in_delta, invalid_p == 0 */
3874 if (gdbarch_debug >= 2)
3875 fprintf_unfiltered (gdb_stdlog, "gdbarch_vbit_in_delta called\n");
3876 return gdbarch->vbit_in_delta;
3880 set_gdbarch_vbit_in_delta (struct gdbarch *gdbarch,
3883 gdbarch->vbit_in_delta = vbit_in_delta;
3887 gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch, struct regcache *regcache)
3889 gdb_assert (gdbarch != NULL);
3890 gdb_assert (gdbarch->skip_permanent_breakpoint != NULL);
3891 if (gdbarch_debug >= 2)
3892 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_permanent_breakpoint called\n");
3893 gdbarch->skip_permanent_breakpoint (regcache);
3897 set_gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch,
3898 gdbarch_skip_permanent_breakpoint_ftype skip_permanent_breakpoint)
3900 gdbarch->skip_permanent_breakpoint = skip_permanent_breakpoint;
3904 gdbarch_max_insn_length_p (struct gdbarch *gdbarch)
3906 gdb_assert (gdbarch != NULL);
3907 return gdbarch->max_insn_length != 0;
3911 gdbarch_max_insn_length (struct gdbarch *gdbarch)
3913 gdb_assert (gdbarch != NULL);
3914 /* Check variable changed from pre-default. */
3915 gdb_assert (gdbarch->max_insn_length != 0);
3916 if (gdbarch_debug >= 2)
3917 fprintf_unfiltered (gdb_stdlog, "gdbarch_max_insn_length called\n");
3918 return gdbarch->max_insn_length;
3922 set_gdbarch_max_insn_length (struct gdbarch *gdbarch,
3923 ULONGEST max_insn_length)
3925 gdbarch->max_insn_length = max_insn_length;
3929 gdbarch_displaced_step_copy_insn_p (struct gdbarch *gdbarch)
3931 gdb_assert (gdbarch != NULL);
3932 return gdbarch->displaced_step_copy_insn != NULL;
3935 struct displaced_step_closure *
3936 gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, CORE_ADDR from, CORE_ADDR to, struct regcache *regs)
3938 gdb_assert (gdbarch != NULL);
3939 gdb_assert (gdbarch->displaced_step_copy_insn != NULL);
3940 if (gdbarch_debug >= 2)
3941 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_copy_insn called\n");
3942 return gdbarch->displaced_step_copy_insn (gdbarch, from, to, regs);
3946 set_gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch,
3947 gdbarch_displaced_step_copy_insn_ftype displaced_step_copy_insn)
3949 gdbarch->displaced_step_copy_insn = displaced_step_copy_insn;
3953 gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, struct displaced_step_closure *closure)
3955 gdb_assert (gdbarch != NULL);
3956 gdb_assert (gdbarch->displaced_step_hw_singlestep != NULL);
3957 if (gdbarch_debug >= 2)
3958 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_hw_singlestep called\n");
3959 return gdbarch->displaced_step_hw_singlestep (gdbarch, closure);
3963 set_gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
3964 gdbarch_displaced_step_hw_singlestep_ftype displaced_step_hw_singlestep)
3966 gdbarch->displaced_step_hw_singlestep = displaced_step_hw_singlestep;
3970 gdbarch_displaced_step_fixup_p (struct gdbarch *gdbarch)
3972 gdb_assert (gdbarch != NULL);
3973 return gdbarch->displaced_step_fixup != NULL;
3977 gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, struct displaced_step_closure *closure, CORE_ADDR from, CORE_ADDR to, struct regcache *regs)
3979 gdb_assert (gdbarch != NULL);
3980 gdb_assert (gdbarch->displaced_step_fixup != NULL);
3981 /* Do not check predicate: gdbarch->displaced_step_fixup != NULL, allow call. */
3982 if (gdbarch_debug >= 2)
3983 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_fixup called\n");
3984 gdbarch->displaced_step_fixup (gdbarch, closure, from, to, regs);
3988 set_gdbarch_displaced_step_fixup (struct gdbarch *gdbarch,
3989 gdbarch_displaced_step_fixup_ftype displaced_step_fixup)
3991 gdbarch->displaced_step_fixup = displaced_step_fixup;
3995 gdbarch_displaced_step_location (struct gdbarch *gdbarch)
3997 gdb_assert (gdbarch != NULL);
3998 gdb_assert (gdbarch->displaced_step_location != NULL);
3999 if (gdbarch_debug >= 2)
4000 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_location called\n");
4001 return gdbarch->displaced_step_location (gdbarch);
4005 set_gdbarch_displaced_step_location (struct gdbarch *gdbarch,
4006 gdbarch_displaced_step_location_ftype displaced_step_location)
4008 gdbarch->displaced_step_location = displaced_step_location;
4012 gdbarch_relocate_instruction_p (struct gdbarch *gdbarch)
4014 gdb_assert (gdbarch != NULL);
4015 return gdbarch->relocate_instruction != NULL;
4019 gdbarch_relocate_instruction (struct gdbarch *gdbarch, CORE_ADDR *to, CORE_ADDR from)
4021 gdb_assert (gdbarch != NULL);
4022 gdb_assert (gdbarch->relocate_instruction != NULL);
4023 /* Do not check predicate: gdbarch->relocate_instruction != NULL, allow call. */
4024 if (gdbarch_debug >= 2)
4025 fprintf_unfiltered (gdb_stdlog, "gdbarch_relocate_instruction called\n");
4026 gdbarch->relocate_instruction (gdbarch, to, from);
4030 set_gdbarch_relocate_instruction (struct gdbarch *gdbarch,
4031 gdbarch_relocate_instruction_ftype relocate_instruction)
4033 gdbarch->relocate_instruction = relocate_instruction;
4037 gdbarch_overlay_update_p (struct gdbarch *gdbarch)
4039 gdb_assert (gdbarch != NULL);
4040 return gdbarch->overlay_update != NULL;
4044 gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect)
4046 gdb_assert (gdbarch != NULL);
4047 gdb_assert (gdbarch->overlay_update != NULL);
4048 if (gdbarch_debug >= 2)
4049 fprintf_unfiltered (gdb_stdlog, "gdbarch_overlay_update called\n");
4050 gdbarch->overlay_update (osect);
4054 set_gdbarch_overlay_update (struct gdbarch *gdbarch,
4055 gdbarch_overlay_update_ftype overlay_update)
4057 gdbarch->overlay_update = overlay_update;
4061 gdbarch_core_read_description_p (struct gdbarch *gdbarch)
4063 gdb_assert (gdbarch != NULL);
4064 return gdbarch->core_read_description != NULL;
4067 const struct target_desc *
4068 gdbarch_core_read_description (struct gdbarch *gdbarch, struct target_ops *target, bfd *abfd)
4070 gdb_assert (gdbarch != NULL);
4071 gdb_assert (gdbarch->core_read_description != NULL);
4072 if (gdbarch_debug >= 2)
4073 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_read_description called\n");
4074 return gdbarch->core_read_description (gdbarch, target, abfd);
4078 set_gdbarch_core_read_description (struct gdbarch *gdbarch,
4079 gdbarch_core_read_description_ftype core_read_description)
4081 gdbarch->core_read_description = core_read_description;
4085 gdbarch_static_transform_name_p (struct gdbarch *gdbarch)
4087 gdb_assert (gdbarch != NULL);
4088 return gdbarch->static_transform_name != NULL;
4092 gdbarch_static_transform_name (struct gdbarch *gdbarch, const char *name)
4094 gdb_assert (gdbarch != NULL);
4095 gdb_assert (gdbarch->static_transform_name != NULL);
4096 if (gdbarch_debug >= 2)
4097 fprintf_unfiltered (gdb_stdlog, "gdbarch_static_transform_name called\n");
4098 return gdbarch->static_transform_name (name);
4102 set_gdbarch_static_transform_name (struct gdbarch *gdbarch,
4103 gdbarch_static_transform_name_ftype static_transform_name)
4105 gdbarch->static_transform_name = static_transform_name;
4109 gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch)
4111 gdb_assert (gdbarch != NULL);
4112 /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */
4113 if (gdbarch_debug >= 2)
4114 fprintf_unfiltered (gdb_stdlog, "gdbarch_sofun_address_maybe_missing called\n");
4115 return gdbarch->sofun_address_maybe_missing;
4119 set_gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch,
4120 int sofun_address_maybe_missing)
4122 gdbarch->sofun_address_maybe_missing = sofun_address_maybe_missing;
4126 gdbarch_process_record_p (struct gdbarch *gdbarch)
4128 gdb_assert (gdbarch != NULL);
4129 return gdbarch->process_record != NULL;
4133 gdbarch_process_record (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr)
4135 gdb_assert (gdbarch != NULL);
4136 gdb_assert (gdbarch->process_record != NULL);
4137 if (gdbarch_debug >= 2)
4138 fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record called\n");
4139 return gdbarch->process_record (gdbarch, regcache, addr);
4143 set_gdbarch_process_record (struct gdbarch *gdbarch,
4144 gdbarch_process_record_ftype process_record)
4146 gdbarch->process_record = process_record;
4150 gdbarch_process_record_signal_p (struct gdbarch *gdbarch)
4152 gdb_assert (gdbarch != NULL);
4153 return gdbarch->process_record_signal != NULL;
4157 gdbarch_process_record_signal (struct gdbarch *gdbarch, struct regcache *regcache, enum gdb_signal signal)
4159 gdb_assert (gdbarch != NULL);
4160 gdb_assert (gdbarch->process_record_signal != NULL);
4161 if (gdbarch_debug >= 2)
4162 fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record_signal called\n");
4163 return gdbarch->process_record_signal (gdbarch, regcache, signal);
4167 set_gdbarch_process_record_signal (struct gdbarch *gdbarch,
4168 gdbarch_process_record_signal_ftype process_record_signal)
4170 gdbarch->process_record_signal = process_record_signal;
4174 gdbarch_gdb_signal_from_target_p (struct gdbarch *gdbarch)
4176 gdb_assert (gdbarch != NULL);
4177 return gdbarch->gdb_signal_from_target != NULL;
4181 gdbarch_gdb_signal_from_target (struct gdbarch *gdbarch, int signo)
4183 gdb_assert (gdbarch != NULL);
4184 gdb_assert (gdbarch->gdb_signal_from_target != NULL);
4185 if (gdbarch_debug >= 2)
4186 fprintf_unfiltered (gdb_stdlog, "gdbarch_gdb_signal_from_target called\n");
4187 return gdbarch->gdb_signal_from_target (gdbarch, signo);
4191 set_gdbarch_gdb_signal_from_target (struct gdbarch *gdbarch,
4192 gdbarch_gdb_signal_from_target_ftype gdb_signal_from_target)
4194 gdbarch->gdb_signal_from_target = gdb_signal_from_target;
4198 gdbarch_gdb_signal_to_target_p (struct gdbarch *gdbarch)
4200 gdb_assert (gdbarch != NULL);
4201 return gdbarch->gdb_signal_to_target != NULL;
4205 gdbarch_gdb_signal_to_target (struct gdbarch *gdbarch, enum gdb_signal signal)
4207 gdb_assert (gdbarch != NULL);
4208 gdb_assert (gdbarch->gdb_signal_to_target != NULL);
4209 if (gdbarch_debug >= 2)
4210 fprintf_unfiltered (gdb_stdlog, "gdbarch_gdb_signal_to_target called\n");
4211 return gdbarch->gdb_signal_to_target (gdbarch, signal);
4215 set_gdbarch_gdb_signal_to_target (struct gdbarch *gdbarch,
4216 gdbarch_gdb_signal_to_target_ftype gdb_signal_to_target)
4218 gdbarch->gdb_signal_to_target = gdb_signal_to_target;
4222 gdbarch_get_siginfo_type_p (struct gdbarch *gdbarch)
4224 gdb_assert (gdbarch != NULL);
4225 return gdbarch->get_siginfo_type != NULL;
4229 gdbarch_get_siginfo_type (struct gdbarch *gdbarch)
4231 gdb_assert (gdbarch != NULL);
4232 gdb_assert (gdbarch->get_siginfo_type != NULL);
4233 if (gdbarch_debug >= 2)
4234 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_siginfo_type called\n");
4235 return gdbarch->get_siginfo_type (gdbarch);
4239 set_gdbarch_get_siginfo_type (struct gdbarch *gdbarch,
4240 gdbarch_get_siginfo_type_ftype get_siginfo_type)
4242 gdbarch->get_siginfo_type = get_siginfo_type;
4246 gdbarch_record_special_symbol_p (struct gdbarch *gdbarch)
4248 gdb_assert (gdbarch != NULL);
4249 return gdbarch->record_special_symbol != NULL;
4253 gdbarch_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile, asymbol *sym)
4255 gdb_assert (gdbarch != NULL);
4256 gdb_assert (gdbarch->record_special_symbol != NULL);
4257 if (gdbarch_debug >= 2)
4258 fprintf_unfiltered (gdb_stdlog, "gdbarch_record_special_symbol called\n");
4259 gdbarch->record_special_symbol (gdbarch, objfile, sym);
4263 set_gdbarch_record_special_symbol (struct gdbarch *gdbarch,
4264 gdbarch_record_special_symbol_ftype record_special_symbol)
4266 gdbarch->record_special_symbol = record_special_symbol;
4270 gdbarch_get_syscall_number_p (struct gdbarch *gdbarch)
4272 gdb_assert (gdbarch != NULL);
4273 return gdbarch->get_syscall_number != NULL;
4277 gdbarch_get_syscall_number (struct gdbarch *gdbarch, thread_info *thread)
4279 gdb_assert (gdbarch != NULL);
4280 gdb_assert (gdbarch->get_syscall_number != NULL);
4281 if (gdbarch_debug >= 2)
4282 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_syscall_number called\n");
4283 return gdbarch->get_syscall_number (gdbarch, thread);
4287 set_gdbarch_get_syscall_number (struct gdbarch *gdbarch,
4288 gdbarch_get_syscall_number_ftype get_syscall_number)
4290 gdbarch->get_syscall_number = get_syscall_number;
4294 gdbarch_xml_syscall_file (struct gdbarch *gdbarch)
4296 gdb_assert (gdbarch != NULL);
4297 /* Skip verify of xml_syscall_file, invalid_p == 0 */
4298 if (gdbarch_debug >= 2)
4299 fprintf_unfiltered (gdb_stdlog, "gdbarch_xml_syscall_file called\n");
4300 return gdbarch->xml_syscall_file;
4304 set_gdbarch_xml_syscall_file (struct gdbarch *gdbarch,
4305 const char * xml_syscall_file)
4307 gdbarch->xml_syscall_file = xml_syscall_file;
4310 struct syscalls_info *
4311 gdbarch_syscalls_info (struct gdbarch *gdbarch)
4313 gdb_assert (gdbarch != NULL);
4314 /* Skip verify of syscalls_info, invalid_p == 0 */
4315 if (gdbarch_debug >= 2)
4316 fprintf_unfiltered (gdb_stdlog, "gdbarch_syscalls_info called\n");
4317 return gdbarch->syscalls_info;
4321 set_gdbarch_syscalls_info (struct gdbarch *gdbarch,
4322 struct syscalls_info * syscalls_info)
4324 gdbarch->syscalls_info = syscalls_info;
4328 gdbarch_stap_integer_prefixes (struct gdbarch *gdbarch)
4330 gdb_assert (gdbarch != NULL);
4331 /* Skip verify of stap_integer_prefixes, invalid_p == 0 */
4332 if (gdbarch_debug >= 2)
4333 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_prefixes called\n");
4334 return gdbarch->stap_integer_prefixes;
4338 set_gdbarch_stap_integer_prefixes (struct gdbarch *gdbarch,
4339 const char *const * stap_integer_prefixes)
4341 gdbarch->stap_integer_prefixes = stap_integer_prefixes;
4345 gdbarch_stap_integer_suffixes (struct gdbarch *gdbarch)
4347 gdb_assert (gdbarch != NULL);
4348 /* Skip verify of stap_integer_suffixes, invalid_p == 0 */
4349 if (gdbarch_debug >= 2)
4350 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_suffixes called\n");
4351 return gdbarch->stap_integer_suffixes;
4355 set_gdbarch_stap_integer_suffixes (struct gdbarch *gdbarch,
4356 const char *const * stap_integer_suffixes)
4358 gdbarch->stap_integer_suffixes = stap_integer_suffixes;
4362 gdbarch_stap_register_prefixes (struct gdbarch *gdbarch)
4364 gdb_assert (gdbarch != NULL);
4365 /* Skip verify of stap_register_prefixes, invalid_p == 0 */
4366 if (gdbarch_debug >= 2)
4367 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_prefixes called\n");
4368 return gdbarch->stap_register_prefixes;
4372 set_gdbarch_stap_register_prefixes (struct gdbarch *gdbarch,
4373 const char *const * stap_register_prefixes)
4375 gdbarch->stap_register_prefixes = stap_register_prefixes;
4379 gdbarch_stap_register_suffixes (struct gdbarch *gdbarch)
4381 gdb_assert (gdbarch != NULL);
4382 /* Skip verify of stap_register_suffixes, invalid_p == 0 */
4383 if (gdbarch_debug >= 2)
4384 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_suffixes called\n");
4385 return gdbarch->stap_register_suffixes;
4389 set_gdbarch_stap_register_suffixes (struct gdbarch *gdbarch,
4390 const char *const * stap_register_suffixes)
4392 gdbarch->stap_register_suffixes = stap_register_suffixes;
4396 gdbarch_stap_register_indirection_prefixes (struct gdbarch *gdbarch)
4398 gdb_assert (gdbarch != NULL);
4399 /* Skip verify of stap_register_indirection_prefixes, invalid_p == 0 */
4400 if (gdbarch_debug >= 2)
4401 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_prefixes called\n");
4402 return gdbarch->stap_register_indirection_prefixes;
4406 set_gdbarch_stap_register_indirection_prefixes (struct gdbarch *gdbarch,
4407 const char *const * stap_register_indirection_prefixes)
4409 gdbarch->stap_register_indirection_prefixes = stap_register_indirection_prefixes;
4413 gdbarch_stap_register_indirection_suffixes (struct gdbarch *gdbarch)
4415 gdb_assert (gdbarch != NULL);
4416 /* Skip verify of stap_register_indirection_suffixes, invalid_p == 0 */
4417 if (gdbarch_debug >= 2)
4418 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_suffixes called\n");
4419 return gdbarch->stap_register_indirection_suffixes;
4423 set_gdbarch_stap_register_indirection_suffixes (struct gdbarch *gdbarch,
4424 const char *const * stap_register_indirection_suffixes)
4426 gdbarch->stap_register_indirection_suffixes = stap_register_indirection_suffixes;
4430 gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch)
4432 gdb_assert (gdbarch != NULL);
4433 /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */
4434 if (gdbarch_debug >= 2)
4435 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_prefix called\n");
4436 return gdbarch->stap_gdb_register_prefix;
4440 set_gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch,
4441 const char * stap_gdb_register_prefix)
4443 gdbarch->stap_gdb_register_prefix = stap_gdb_register_prefix;
4447 gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch)
4449 gdb_assert (gdbarch != NULL);
4450 /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */
4451 if (gdbarch_debug >= 2)
4452 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_suffix called\n");
4453 return gdbarch->stap_gdb_register_suffix;
4457 set_gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch,
4458 const char * stap_gdb_register_suffix)
4460 gdbarch->stap_gdb_register_suffix = stap_gdb_register_suffix;
4464 gdbarch_stap_is_single_operand_p (struct gdbarch *gdbarch)
4466 gdb_assert (gdbarch != NULL);
4467 return gdbarch->stap_is_single_operand != NULL;
4471 gdbarch_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
4473 gdb_assert (gdbarch != NULL);
4474 gdb_assert (gdbarch->stap_is_single_operand != NULL);
4475 if (gdbarch_debug >= 2)
4476 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_is_single_operand called\n");
4477 return gdbarch->stap_is_single_operand (gdbarch, s);
4481 set_gdbarch_stap_is_single_operand (struct gdbarch *gdbarch,
4482 gdbarch_stap_is_single_operand_ftype stap_is_single_operand)
4484 gdbarch->stap_is_single_operand = stap_is_single_operand;
4488 gdbarch_stap_parse_special_token_p (struct gdbarch *gdbarch)
4490 gdb_assert (gdbarch != NULL);
4491 return gdbarch->stap_parse_special_token != NULL;
4495 gdbarch_stap_parse_special_token (struct gdbarch *gdbarch, struct stap_parse_info *p)
4497 gdb_assert (gdbarch != NULL);
4498 gdb_assert (gdbarch->stap_parse_special_token != NULL);
4499 if (gdbarch_debug >= 2)
4500 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_parse_special_token called\n");
4501 return gdbarch->stap_parse_special_token (gdbarch, p);
4505 set_gdbarch_stap_parse_special_token (struct gdbarch *gdbarch,
4506 gdbarch_stap_parse_special_token_ftype stap_parse_special_token)
4508 gdbarch->stap_parse_special_token = stap_parse_special_token;
4512 gdbarch_dtrace_parse_probe_argument_p (struct gdbarch *gdbarch)
4514 gdb_assert (gdbarch != NULL);
4515 return gdbarch->dtrace_parse_probe_argument != NULL;
4519 gdbarch_dtrace_parse_probe_argument (struct gdbarch *gdbarch, struct parser_state *pstate, int narg)
4521 gdb_assert (gdbarch != NULL);
4522 gdb_assert (gdbarch->dtrace_parse_probe_argument != NULL);
4523 if (gdbarch_debug >= 2)
4524 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_parse_probe_argument called\n");
4525 gdbarch->dtrace_parse_probe_argument (gdbarch, pstate, narg);
4529 set_gdbarch_dtrace_parse_probe_argument (struct gdbarch *gdbarch,
4530 gdbarch_dtrace_parse_probe_argument_ftype dtrace_parse_probe_argument)
4532 gdbarch->dtrace_parse_probe_argument = dtrace_parse_probe_argument;
4536 gdbarch_dtrace_probe_is_enabled_p (struct gdbarch *gdbarch)
4538 gdb_assert (gdbarch != NULL);
4539 return gdbarch->dtrace_probe_is_enabled != NULL;
4543 gdbarch_dtrace_probe_is_enabled (struct gdbarch *gdbarch, CORE_ADDR addr)
4545 gdb_assert (gdbarch != NULL);
4546 gdb_assert (gdbarch->dtrace_probe_is_enabled != NULL);
4547 if (gdbarch_debug >= 2)
4548 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_probe_is_enabled called\n");
4549 return gdbarch->dtrace_probe_is_enabled (gdbarch, addr);
4553 set_gdbarch_dtrace_probe_is_enabled (struct gdbarch *gdbarch,
4554 gdbarch_dtrace_probe_is_enabled_ftype dtrace_probe_is_enabled)
4556 gdbarch->dtrace_probe_is_enabled = dtrace_probe_is_enabled;
4560 gdbarch_dtrace_enable_probe_p (struct gdbarch *gdbarch)
4562 gdb_assert (gdbarch != NULL);
4563 return gdbarch->dtrace_enable_probe != NULL;
4567 gdbarch_dtrace_enable_probe (struct gdbarch *gdbarch, CORE_ADDR addr)
4569 gdb_assert (gdbarch != NULL);
4570 gdb_assert (gdbarch->dtrace_enable_probe != NULL);
4571 if (gdbarch_debug >= 2)
4572 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_enable_probe called\n");
4573 gdbarch->dtrace_enable_probe (gdbarch, addr);
4577 set_gdbarch_dtrace_enable_probe (struct gdbarch *gdbarch,
4578 gdbarch_dtrace_enable_probe_ftype dtrace_enable_probe)
4580 gdbarch->dtrace_enable_probe = dtrace_enable_probe;
4584 gdbarch_dtrace_disable_probe_p (struct gdbarch *gdbarch)
4586 gdb_assert (gdbarch != NULL);
4587 return gdbarch->dtrace_disable_probe != NULL;
4591 gdbarch_dtrace_disable_probe (struct gdbarch *gdbarch, CORE_ADDR addr)
4593 gdb_assert (gdbarch != NULL);
4594 gdb_assert (gdbarch->dtrace_disable_probe != NULL);
4595 if (gdbarch_debug >= 2)
4596 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_disable_probe called\n");
4597 gdbarch->dtrace_disable_probe (gdbarch, addr);
4601 set_gdbarch_dtrace_disable_probe (struct gdbarch *gdbarch,
4602 gdbarch_dtrace_disable_probe_ftype dtrace_disable_probe)
4604 gdbarch->dtrace_disable_probe = dtrace_disable_probe;
4608 gdbarch_has_global_solist (struct gdbarch *gdbarch)
4610 gdb_assert (gdbarch != NULL);
4611 /* Skip verify of has_global_solist, invalid_p == 0 */
4612 if (gdbarch_debug >= 2)
4613 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_solist called\n");
4614 return gdbarch->has_global_solist;
4618 set_gdbarch_has_global_solist (struct gdbarch *gdbarch,
4619 int has_global_solist)
4621 gdbarch->has_global_solist = has_global_solist;
4625 gdbarch_has_global_breakpoints (struct gdbarch *gdbarch)
4627 gdb_assert (gdbarch != NULL);
4628 /* Skip verify of has_global_breakpoints, invalid_p == 0 */
4629 if (gdbarch_debug >= 2)
4630 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_breakpoints called\n");
4631 return gdbarch->has_global_breakpoints;
4635 set_gdbarch_has_global_breakpoints (struct gdbarch *gdbarch,
4636 int has_global_breakpoints)
4638 gdbarch->has_global_breakpoints = has_global_breakpoints;
4642 gdbarch_has_shared_address_space (struct gdbarch *gdbarch)
4644 gdb_assert (gdbarch != NULL);
4645 gdb_assert (gdbarch->has_shared_address_space != NULL);
4646 if (gdbarch_debug >= 2)
4647 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_shared_address_space called\n");
4648 return gdbarch->has_shared_address_space (gdbarch);
4652 set_gdbarch_has_shared_address_space (struct gdbarch *gdbarch,
4653 gdbarch_has_shared_address_space_ftype has_shared_address_space)
4655 gdbarch->has_shared_address_space = has_shared_address_space;
4659 gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr, std::string *msg)
4661 gdb_assert (gdbarch != NULL);
4662 gdb_assert (gdbarch->fast_tracepoint_valid_at != NULL);
4663 if (gdbarch_debug >= 2)
4664 fprintf_unfiltered (gdb_stdlog, "gdbarch_fast_tracepoint_valid_at called\n");
4665 return gdbarch->fast_tracepoint_valid_at (gdbarch, addr, msg);
4669 set_gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
4670 gdbarch_fast_tracepoint_valid_at_ftype fast_tracepoint_valid_at)
4672 gdbarch->fast_tracepoint_valid_at = fast_tracepoint_valid_at;
4676 gdbarch_guess_tracepoint_registers (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr)
4678 gdb_assert (gdbarch != NULL);
4679 gdb_assert (gdbarch->guess_tracepoint_registers != NULL);
4680 if (gdbarch_debug >= 2)
4681 fprintf_unfiltered (gdb_stdlog, "gdbarch_guess_tracepoint_registers called\n");
4682 gdbarch->guess_tracepoint_registers (gdbarch, regcache, addr);
4686 set_gdbarch_guess_tracepoint_registers (struct gdbarch *gdbarch,
4687 gdbarch_guess_tracepoint_registers_ftype guess_tracepoint_registers)
4689 gdbarch->guess_tracepoint_registers = guess_tracepoint_registers;
4693 gdbarch_auto_charset (struct gdbarch *gdbarch)
4695 gdb_assert (gdbarch != NULL);
4696 gdb_assert (gdbarch->auto_charset != NULL);
4697 if (gdbarch_debug >= 2)
4698 fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_charset called\n");
4699 return gdbarch->auto_charset ();
4703 set_gdbarch_auto_charset (struct gdbarch *gdbarch,
4704 gdbarch_auto_charset_ftype auto_charset)
4706 gdbarch->auto_charset = auto_charset;
4710 gdbarch_auto_wide_charset (struct gdbarch *gdbarch)
4712 gdb_assert (gdbarch != NULL);
4713 gdb_assert (gdbarch->auto_wide_charset != NULL);
4714 if (gdbarch_debug >= 2)
4715 fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_wide_charset called\n");
4716 return gdbarch->auto_wide_charset ();
4720 set_gdbarch_auto_wide_charset (struct gdbarch *gdbarch,
4721 gdbarch_auto_wide_charset_ftype auto_wide_charset)
4723 gdbarch->auto_wide_charset = auto_wide_charset;
4727 gdbarch_solib_symbols_extension (struct gdbarch *gdbarch)
4729 gdb_assert (gdbarch != NULL);
4730 if (gdbarch_debug >= 2)
4731 fprintf_unfiltered (gdb_stdlog, "gdbarch_solib_symbols_extension called\n");
4732 return gdbarch->solib_symbols_extension;
4736 set_gdbarch_solib_symbols_extension (struct gdbarch *gdbarch,
4737 const char * solib_symbols_extension)
4739 gdbarch->solib_symbols_extension = solib_symbols_extension;
4743 gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch)
4745 gdb_assert (gdbarch != NULL);
4746 /* Skip verify of has_dos_based_file_system, invalid_p == 0 */
4747 if (gdbarch_debug >= 2)
4748 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_dos_based_file_system called\n");
4749 return gdbarch->has_dos_based_file_system;
4753 set_gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch,
4754 int has_dos_based_file_system)
4756 gdbarch->has_dos_based_file_system = has_dos_based_file_system;
4760 gdbarch_gen_return_address (struct gdbarch *gdbarch, struct agent_expr *ax, struct axs_value *value, CORE_ADDR scope)
4762 gdb_assert (gdbarch != NULL);
4763 gdb_assert (gdbarch->gen_return_address != NULL);
4764 if (gdbarch_debug >= 2)
4765 fprintf_unfiltered (gdb_stdlog, "gdbarch_gen_return_address called\n");
4766 gdbarch->gen_return_address (gdbarch, ax, value, scope);
4770 set_gdbarch_gen_return_address (struct gdbarch *gdbarch,
4771 gdbarch_gen_return_address_ftype gen_return_address)
4773 gdbarch->gen_return_address = gen_return_address;
4777 gdbarch_info_proc_p (struct gdbarch *gdbarch)
4779 gdb_assert (gdbarch != NULL);
4780 return gdbarch->info_proc != NULL;
4784 gdbarch_info_proc (struct gdbarch *gdbarch, const char *args, enum info_proc_what what)
4786 gdb_assert (gdbarch != NULL);
4787 gdb_assert (gdbarch->info_proc != NULL);
4788 if (gdbarch_debug >= 2)
4789 fprintf_unfiltered (gdb_stdlog, "gdbarch_info_proc called\n");
4790 gdbarch->info_proc (gdbarch, args, what);
4794 set_gdbarch_info_proc (struct gdbarch *gdbarch,
4795 gdbarch_info_proc_ftype info_proc)
4797 gdbarch->info_proc = info_proc;
4801 gdbarch_core_info_proc_p (struct gdbarch *gdbarch)
4803 gdb_assert (gdbarch != NULL);
4804 return gdbarch->core_info_proc != NULL;
4808 gdbarch_core_info_proc (struct gdbarch *gdbarch, const char *args, enum info_proc_what what)
4810 gdb_assert (gdbarch != NULL);
4811 gdb_assert (gdbarch->core_info_proc != NULL);
4812 if (gdbarch_debug >= 2)
4813 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_info_proc called\n");
4814 gdbarch->core_info_proc (gdbarch, args, what);
4818 set_gdbarch_core_info_proc (struct gdbarch *gdbarch,
4819 gdbarch_core_info_proc_ftype core_info_proc)
4821 gdbarch->core_info_proc = core_info_proc;
4825 gdbarch_iterate_over_objfiles_in_search_order (struct gdbarch *gdbarch, iterate_over_objfiles_in_search_order_cb_ftype *cb, void *cb_data, struct objfile *current_objfile)
4827 gdb_assert (gdbarch != NULL);
4828 gdb_assert (gdbarch->iterate_over_objfiles_in_search_order != NULL);
4829 if (gdbarch_debug >= 2)
4830 fprintf_unfiltered (gdb_stdlog, "gdbarch_iterate_over_objfiles_in_search_order called\n");
4831 gdbarch->iterate_over_objfiles_in_search_order (gdbarch, cb, cb_data, current_objfile);
4835 set_gdbarch_iterate_over_objfiles_in_search_order (struct gdbarch *gdbarch,
4836 gdbarch_iterate_over_objfiles_in_search_order_ftype iterate_over_objfiles_in_search_order)
4838 gdbarch->iterate_over_objfiles_in_search_order = iterate_over_objfiles_in_search_order;
4841 struct ravenscar_arch_ops *
4842 gdbarch_ravenscar_ops (struct gdbarch *gdbarch)
4844 gdb_assert (gdbarch != NULL);
4845 /* Skip verify of ravenscar_ops, invalid_p == 0 */
4846 if (gdbarch_debug >= 2)
4847 fprintf_unfiltered (gdb_stdlog, "gdbarch_ravenscar_ops called\n");
4848 return gdbarch->ravenscar_ops;
4852 set_gdbarch_ravenscar_ops (struct gdbarch *gdbarch,
4853 struct ravenscar_arch_ops * ravenscar_ops)
4855 gdbarch->ravenscar_ops = ravenscar_ops;
4859 gdbarch_insn_is_call (struct gdbarch *gdbarch, CORE_ADDR addr)
4861 gdb_assert (gdbarch != NULL);
4862 gdb_assert (gdbarch->insn_is_call != NULL);
4863 if (gdbarch_debug >= 2)
4864 fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_call called\n");
4865 return gdbarch->insn_is_call (gdbarch, addr);
4869 set_gdbarch_insn_is_call (struct gdbarch *gdbarch,
4870 gdbarch_insn_is_call_ftype insn_is_call)
4872 gdbarch->insn_is_call = insn_is_call;
4876 gdbarch_insn_is_ret (struct gdbarch *gdbarch, CORE_ADDR addr)
4878 gdb_assert (gdbarch != NULL);
4879 gdb_assert (gdbarch->insn_is_ret != NULL);
4880 if (gdbarch_debug >= 2)
4881 fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_ret called\n");
4882 return gdbarch->insn_is_ret (gdbarch, addr);
4886 set_gdbarch_insn_is_ret (struct gdbarch *gdbarch,
4887 gdbarch_insn_is_ret_ftype insn_is_ret)
4889 gdbarch->insn_is_ret = insn_is_ret;
4893 gdbarch_insn_is_jump (struct gdbarch *gdbarch, CORE_ADDR addr)
4895 gdb_assert (gdbarch != NULL);
4896 gdb_assert (gdbarch->insn_is_jump != NULL);
4897 if (gdbarch_debug >= 2)
4898 fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_jump called\n");
4899 return gdbarch->insn_is_jump (gdbarch, addr);
4903 set_gdbarch_insn_is_jump (struct gdbarch *gdbarch,
4904 gdbarch_insn_is_jump_ftype insn_is_jump)
4906 gdbarch->insn_is_jump = insn_is_jump;
4910 gdbarch_auxv_parse_p (struct gdbarch *gdbarch)
4912 gdb_assert (gdbarch != NULL);
4913 return gdbarch->auxv_parse != NULL;
4917 gdbarch_auxv_parse (struct gdbarch *gdbarch, gdb_byte **readptr, gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
4919 gdb_assert (gdbarch != NULL);
4920 gdb_assert (gdbarch->auxv_parse != NULL);
4921 if (gdbarch_debug >= 2)
4922 fprintf_unfiltered (gdb_stdlog, "gdbarch_auxv_parse called\n");
4923 return gdbarch->auxv_parse (gdbarch, readptr, endptr, typep, valp);
4927 set_gdbarch_auxv_parse (struct gdbarch *gdbarch,
4928 gdbarch_auxv_parse_ftype auxv_parse)
4930 gdbarch->auxv_parse = auxv_parse;
4934 gdbarch_print_auxv_entry (struct gdbarch *gdbarch, struct ui_file *file, CORE_ADDR type, CORE_ADDR val)
4936 gdb_assert (gdbarch != NULL);
4937 gdb_assert (gdbarch->print_auxv_entry != NULL);
4938 if (gdbarch_debug >= 2)
4939 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_auxv_entry called\n");
4940 gdbarch->print_auxv_entry (gdbarch, file, type, val);
4944 set_gdbarch_print_auxv_entry (struct gdbarch *gdbarch,
4945 gdbarch_print_auxv_entry_ftype print_auxv_entry)
4947 gdbarch->print_auxv_entry = print_auxv_entry;
4951 gdbarch_vsyscall_range (struct gdbarch *gdbarch, struct mem_range *range)
4953 gdb_assert (gdbarch != NULL);
4954 gdb_assert (gdbarch->vsyscall_range != NULL);
4955 if (gdbarch_debug >= 2)
4956 fprintf_unfiltered (gdb_stdlog, "gdbarch_vsyscall_range called\n");
4957 return gdbarch->vsyscall_range (gdbarch, range);
4961 set_gdbarch_vsyscall_range (struct gdbarch *gdbarch,
4962 gdbarch_vsyscall_range_ftype vsyscall_range)
4964 gdbarch->vsyscall_range = vsyscall_range;
4968 gdbarch_infcall_mmap (struct gdbarch *gdbarch, CORE_ADDR size, unsigned prot)
4970 gdb_assert (gdbarch != NULL);
4971 gdb_assert (gdbarch->infcall_mmap != NULL);
4972 if (gdbarch_debug >= 2)
4973 fprintf_unfiltered (gdb_stdlog, "gdbarch_infcall_mmap called\n");
4974 return gdbarch->infcall_mmap (size, prot);
4978 set_gdbarch_infcall_mmap (struct gdbarch *gdbarch,
4979 gdbarch_infcall_mmap_ftype infcall_mmap)
4981 gdbarch->infcall_mmap = infcall_mmap;
4985 gdbarch_infcall_munmap (struct gdbarch *gdbarch, CORE_ADDR addr, CORE_ADDR size)
4987 gdb_assert (gdbarch != NULL);
4988 gdb_assert (gdbarch->infcall_munmap != NULL);
4989 if (gdbarch_debug >= 2)
4990 fprintf_unfiltered (gdb_stdlog, "gdbarch_infcall_munmap called\n");
4991 gdbarch->infcall_munmap (addr, size);
4995 set_gdbarch_infcall_munmap (struct gdbarch *gdbarch,
4996 gdbarch_infcall_munmap_ftype infcall_munmap)
4998 gdbarch->infcall_munmap = infcall_munmap;
5002 gdbarch_gcc_target_options (struct gdbarch *gdbarch)
5004 gdb_assert (gdbarch != NULL);
5005 gdb_assert (gdbarch->gcc_target_options != NULL);
5006 if (gdbarch_debug >= 2)
5007 fprintf_unfiltered (gdb_stdlog, "gdbarch_gcc_target_options called\n");
5008 return gdbarch->gcc_target_options (gdbarch);
5012 set_gdbarch_gcc_target_options (struct gdbarch *gdbarch,
5013 gdbarch_gcc_target_options_ftype gcc_target_options)
5015 gdbarch->gcc_target_options = gcc_target_options;
5019 gdbarch_gnu_triplet_regexp (struct gdbarch *gdbarch)
5021 gdb_assert (gdbarch != NULL);
5022 gdb_assert (gdbarch->gnu_triplet_regexp != NULL);
5023 if (gdbarch_debug >= 2)
5024 fprintf_unfiltered (gdb_stdlog, "gdbarch_gnu_triplet_regexp called\n");
5025 return gdbarch->gnu_triplet_regexp (gdbarch);
5029 set_gdbarch_gnu_triplet_regexp (struct gdbarch *gdbarch,
5030 gdbarch_gnu_triplet_regexp_ftype gnu_triplet_regexp)
5032 gdbarch->gnu_triplet_regexp = gnu_triplet_regexp;
5036 gdbarch_addressable_memory_unit_size (struct gdbarch *gdbarch)
5038 gdb_assert (gdbarch != NULL);
5039 gdb_assert (gdbarch->addressable_memory_unit_size != NULL);
5040 if (gdbarch_debug >= 2)
5041 fprintf_unfiltered (gdb_stdlog, "gdbarch_addressable_memory_unit_size called\n");
5042 return gdbarch->addressable_memory_unit_size (gdbarch);
5046 set_gdbarch_addressable_memory_unit_size (struct gdbarch *gdbarch,
5047 gdbarch_addressable_memory_unit_size_ftype addressable_memory_unit_size)
5049 gdbarch->addressable_memory_unit_size = addressable_memory_unit_size;
5053 gdbarch_disassembler_options_implicit (struct gdbarch *gdbarch)
5055 gdb_assert (gdbarch != NULL);
5056 /* Skip verify of disassembler_options_implicit, invalid_p == 0 */
5057 if (gdbarch_debug >= 2)
5058 fprintf_unfiltered (gdb_stdlog, "gdbarch_disassembler_options_implicit called\n");
5059 return gdbarch->disassembler_options_implicit;
5063 set_gdbarch_disassembler_options_implicit (struct gdbarch *gdbarch,
5064 const char * disassembler_options_implicit)
5066 gdbarch->disassembler_options_implicit = disassembler_options_implicit;
5070 gdbarch_disassembler_options (struct gdbarch *gdbarch)
5072 gdb_assert (gdbarch != NULL);
5073 /* Skip verify of disassembler_options, invalid_p == 0 */
5074 if (gdbarch_debug >= 2)
5075 fprintf_unfiltered (gdb_stdlog, "gdbarch_disassembler_options called\n");
5076 return gdbarch->disassembler_options;
5080 set_gdbarch_disassembler_options (struct gdbarch *gdbarch,
5081 char ** disassembler_options)
5083 gdbarch->disassembler_options = disassembler_options;
5086 const disasm_options_and_args_t *
5087 gdbarch_valid_disassembler_options (struct gdbarch *gdbarch)
5089 gdb_assert (gdbarch != NULL);
5090 /* Skip verify of valid_disassembler_options, invalid_p == 0 */
5091 if (gdbarch_debug >= 2)
5092 fprintf_unfiltered (gdb_stdlog, "gdbarch_valid_disassembler_options called\n");
5093 return gdbarch->valid_disassembler_options;
5097 set_gdbarch_valid_disassembler_options (struct gdbarch *gdbarch,
5098 const disasm_options_and_args_t * valid_disassembler_options)
5100 gdbarch->valid_disassembler_options = valid_disassembler_options;
5104 gdbarch_type_align (struct gdbarch *gdbarch, struct type *type)
5106 gdb_assert (gdbarch != NULL);
5107 gdb_assert (gdbarch->type_align != NULL);
5108 if (gdbarch_debug >= 2)
5109 fprintf_unfiltered (gdb_stdlog, "gdbarch_type_align called\n");
5110 return gdbarch->type_align (gdbarch, type);
5114 set_gdbarch_type_align (struct gdbarch *gdbarch,
5115 gdbarch_type_align_ftype type_align)
5117 gdbarch->type_align = type_align;
5121 /* Keep a registry of per-architecture data-pointers required by GDB
5128 gdbarch_data_pre_init_ftype *pre_init;
5129 gdbarch_data_post_init_ftype *post_init;
5132 struct gdbarch_data_registration
5134 struct gdbarch_data *data;
5135 struct gdbarch_data_registration *next;
5138 struct gdbarch_data_registry
5141 struct gdbarch_data_registration *registrations;
5144 struct gdbarch_data_registry gdbarch_data_registry =
5149 static struct gdbarch_data *
5150 gdbarch_data_register (gdbarch_data_pre_init_ftype *pre_init,
5151 gdbarch_data_post_init_ftype *post_init)
5153 struct gdbarch_data_registration **curr;
5155 /* Append the new registration. */
5156 for (curr = &gdbarch_data_registry.registrations;
5158 curr = &(*curr)->next);
5159 (*curr) = XNEW (struct gdbarch_data_registration);
5160 (*curr)->next = NULL;
5161 (*curr)->data = XNEW (struct gdbarch_data);
5162 (*curr)->data->index = gdbarch_data_registry.nr++;
5163 (*curr)->data->pre_init = pre_init;
5164 (*curr)->data->post_init = post_init;
5165 (*curr)->data->init_p = 1;
5166 return (*curr)->data;
5169 struct gdbarch_data *
5170 gdbarch_data_register_pre_init (gdbarch_data_pre_init_ftype *pre_init)
5172 return gdbarch_data_register (pre_init, NULL);
5175 struct gdbarch_data *
5176 gdbarch_data_register_post_init (gdbarch_data_post_init_ftype *post_init)
5178 return gdbarch_data_register (NULL, post_init);
5181 /* Create/delete the gdbarch data vector. */
5184 alloc_gdbarch_data (struct gdbarch *gdbarch)
5186 gdb_assert (gdbarch->data == NULL);
5187 gdbarch->nr_data = gdbarch_data_registry.nr;
5188 gdbarch->data = GDBARCH_OBSTACK_CALLOC (gdbarch, gdbarch->nr_data, void *);
5191 /* Initialize the current value of the specified per-architecture
5195 deprecated_set_gdbarch_data (struct gdbarch *gdbarch,
5196 struct gdbarch_data *data,
5199 gdb_assert (data->index < gdbarch->nr_data);
5200 gdb_assert (gdbarch->data[data->index] == NULL);
5201 gdb_assert (data->pre_init == NULL);
5202 gdbarch->data[data->index] = pointer;
5205 /* Return the current value of the specified per-architecture
5209 gdbarch_data (struct gdbarch *gdbarch, struct gdbarch_data *data)
5211 gdb_assert (data->index < gdbarch->nr_data);
5212 if (gdbarch->data[data->index] == NULL)
5214 /* The data-pointer isn't initialized, call init() to get a
5216 if (data->pre_init != NULL)
5217 /* Mid architecture creation: pass just the obstack, and not
5218 the entire architecture, as that way it isn't possible for
5219 pre-init code to refer to undefined architecture
5221 gdbarch->data[data->index] = data->pre_init (gdbarch->obstack);
5222 else if (gdbarch->initialized_p
5223 && data->post_init != NULL)
5224 /* Post architecture creation: pass the entire architecture
5225 (as all fields are valid), but be careful to also detect
5226 recursive references. */
5228 gdb_assert (data->init_p);
5230 gdbarch->data[data->index] = data->post_init (gdbarch);
5234 /* The architecture initialization hasn't completed - punt -
5235 hope that the caller knows what they are doing. Once
5236 deprecated_set_gdbarch_data has been initialized, this can be
5237 changed to an internal error. */
5239 gdb_assert (gdbarch->data[data->index] != NULL);
5241 return gdbarch->data[data->index];
5245 /* Keep a registry of the architectures known by GDB. */
5247 struct gdbarch_registration
5249 enum bfd_architecture bfd_architecture;
5250 gdbarch_init_ftype *init;
5251 gdbarch_dump_tdep_ftype *dump_tdep;
5252 struct gdbarch_list *arches;
5253 struct gdbarch_registration *next;
5256 static struct gdbarch_registration *gdbarch_registry = NULL;
5259 append_name (const char ***buf, int *nr, const char *name)
5261 *buf = XRESIZEVEC (const char *, *buf, *nr + 1);
5267 gdbarch_printable_names (void)
5269 /* Accumulate a list of names based on the registed list of
5272 const char **arches = NULL;
5273 struct gdbarch_registration *rego;
5275 for (rego = gdbarch_registry;
5279 const struct bfd_arch_info *ap;
5280 ap = bfd_lookup_arch (rego->bfd_architecture, 0);
5282 internal_error (__FILE__, __LINE__,
5283 _("gdbarch_architecture_names: multi-arch unknown"));
5286 append_name (&arches, &nr_arches, ap->printable_name);
5291 append_name (&arches, &nr_arches, NULL);
5297 gdbarch_register (enum bfd_architecture bfd_architecture,
5298 gdbarch_init_ftype *init,
5299 gdbarch_dump_tdep_ftype *dump_tdep)
5301 struct gdbarch_registration **curr;
5302 const struct bfd_arch_info *bfd_arch_info;
5304 /* Check that BFD recognizes this architecture */
5305 bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
5306 if (bfd_arch_info == NULL)
5308 internal_error (__FILE__, __LINE__,
5309 _("gdbarch: Attempt to register "
5310 "unknown architecture (%d)"),
5313 /* Check that we haven't seen this architecture before. */
5314 for (curr = &gdbarch_registry;
5316 curr = &(*curr)->next)
5318 if (bfd_architecture == (*curr)->bfd_architecture)
5319 internal_error (__FILE__, __LINE__,
5320 _("gdbarch: Duplicate registration "
5321 "of architecture (%s)"),
5322 bfd_arch_info->printable_name);
5326 fprintf_unfiltered (gdb_stdlog, "register_gdbarch_init (%s, %s)\n",
5327 bfd_arch_info->printable_name,
5328 host_address_to_string (init));
5330 (*curr) = XNEW (struct gdbarch_registration);
5331 (*curr)->bfd_architecture = bfd_architecture;
5332 (*curr)->init = init;
5333 (*curr)->dump_tdep = dump_tdep;
5334 (*curr)->arches = NULL;
5335 (*curr)->next = NULL;
5339 register_gdbarch_init (enum bfd_architecture bfd_architecture,
5340 gdbarch_init_ftype *init)
5342 gdbarch_register (bfd_architecture, init, NULL);
5346 /* Look for an architecture using gdbarch_info. */
5348 struct gdbarch_list *
5349 gdbarch_list_lookup_by_info (struct gdbarch_list *arches,
5350 const struct gdbarch_info *info)
5352 for (; arches != NULL; arches = arches->next)
5354 if (info->bfd_arch_info != arches->gdbarch->bfd_arch_info)
5356 if (info->byte_order != arches->gdbarch->byte_order)
5358 if (info->osabi != arches->gdbarch->osabi)
5360 if (info->target_desc != arches->gdbarch->target_desc)
5368 /* Find an architecture that matches the specified INFO. Create a new
5369 architecture if needed. Return that new architecture. */
5372 gdbarch_find_by_info (struct gdbarch_info info)
5374 struct gdbarch *new_gdbarch;
5375 struct gdbarch_registration *rego;
5377 /* Fill in missing parts of the INFO struct using a number of
5378 sources: "set ..."; INFOabfd supplied; and the global
5380 gdbarch_info_fill (&info);
5382 /* Must have found some sort of architecture. */
5383 gdb_assert (info.bfd_arch_info != NULL);
5387 fprintf_unfiltered (gdb_stdlog,
5388 "gdbarch_find_by_info: info.bfd_arch_info %s\n",
5389 (info.bfd_arch_info != NULL
5390 ? info.bfd_arch_info->printable_name
5392 fprintf_unfiltered (gdb_stdlog,
5393 "gdbarch_find_by_info: info.byte_order %d (%s)\n",
5395 (info.byte_order == BFD_ENDIAN_BIG ? "big"
5396 : info.byte_order == BFD_ENDIAN_LITTLE ? "little"
5398 fprintf_unfiltered (gdb_stdlog,
5399 "gdbarch_find_by_info: info.osabi %d (%s)\n",
5400 info.osabi, gdbarch_osabi_name (info.osabi));
5401 fprintf_unfiltered (gdb_stdlog,
5402 "gdbarch_find_by_info: info.abfd %s\n",
5403 host_address_to_string (info.abfd));
5404 fprintf_unfiltered (gdb_stdlog,
5405 "gdbarch_find_by_info: info.tdep_info %s\n",
5406 host_address_to_string (info.tdep_info));
5409 /* Find the tdep code that knows about this architecture. */
5410 for (rego = gdbarch_registry;
5413 if (rego->bfd_architecture == info.bfd_arch_info->arch)
5418 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5419 "No matching architecture\n");
5423 /* Ask the tdep code for an architecture that matches "info". */
5424 new_gdbarch = rego->init (info, rego->arches);
5426 /* Did the tdep code like it? No. Reject the change and revert to
5427 the old architecture. */
5428 if (new_gdbarch == NULL)
5431 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5432 "Target rejected architecture\n");
5436 /* Is this a pre-existing architecture (as determined by already
5437 being initialized)? Move it to the front of the architecture
5438 list (keeping the list sorted Most Recently Used). */
5439 if (new_gdbarch->initialized_p)
5441 struct gdbarch_list **list;
5442 struct gdbarch_list *self;
5444 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5445 "Previous architecture %s (%s) selected\n",
5446 host_address_to_string (new_gdbarch),
5447 new_gdbarch->bfd_arch_info->printable_name);
5448 /* Find the existing arch in the list. */
5449 for (list = ®o->arches;
5450 (*list) != NULL && (*list)->gdbarch != new_gdbarch;
5451 list = &(*list)->next);
5452 /* It had better be in the list of architectures. */
5453 gdb_assert ((*list) != NULL && (*list)->gdbarch == new_gdbarch);
5456 (*list) = self->next;
5457 /* Insert SELF at the front. */
5458 self->next = rego->arches;
5459 rego->arches = self;
5464 /* It's a new architecture. */
5466 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5467 "New architecture %s (%s) selected\n",
5468 host_address_to_string (new_gdbarch),
5469 new_gdbarch->bfd_arch_info->printable_name);
5471 /* Insert the new architecture into the front of the architecture
5472 list (keep the list sorted Most Recently Used). */
5474 struct gdbarch_list *self = XNEW (struct gdbarch_list);
5475 self->next = rego->arches;
5476 self->gdbarch = new_gdbarch;
5477 rego->arches = self;
5480 /* Check that the newly installed architecture is valid. Plug in
5481 any post init values. */
5482 new_gdbarch->dump_tdep = rego->dump_tdep;
5483 verify_gdbarch (new_gdbarch);
5484 new_gdbarch->initialized_p = 1;
5487 gdbarch_dump (new_gdbarch, gdb_stdlog);
5492 /* Make the specified architecture current. */
5495 set_target_gdbarch (struct gdbarch *new_gdbarch)
5497 gdb_assert (new_gdbarch != NULL);
5498 gdb_assert (new_gdbarch->initialized_p);
5499 current_inferior ()->gdbarch = new_gdbarch;
5500 gdb::observers::architecture_changed.notify (new_gdbarch);
5501 registers_changed ();
5504 /* Return the current inferior's arch. */
5507 target_gdbarch (void)
5509 return current_inferior ()->gdbarch;
5513 _initialize_gdbarch (void)
5515 add_setshow_zuinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\
5516 Set architecture debugging."), _("\
5517 Show architecture debugging."), _("\
5518 When non-zero, architecture debugging is enabled."),
5521 &setdebuglist, &showdebuglist);