gdb: introduce 'all_non_exited_process_targets' and 'switch_to_target_no_thread'
[deliverable/binutils-gdb.git] / gdb / gdbarch.c
1 /* *INDENT-OFF* */ /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */
2 /* vi:set ro: */
3
4 /* Dynamic architecture support for GDB, the GNU debugger.
5
6 Copyright (C) 1998-2020 Free Software Foundation, Inc.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22
23 /* This file was created with the aid of ``gdbarch.sh''.
24
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
28 being reported.
29
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
33 easier. */
34
35
36 #include "defs.h"
37 #include "arch-utils.h"
38
39 #include "gdbcmd.h"
40 #include "inferior.h"
41 #include "symcat.h"
42
43 #include "floatformat.h"
44 #include "reggroups.h"
45 #include "osabi.h"
46 #include "gdb_obstack.h"
47 #include "observable.h"
48 #include "regcache.h"
49 #include "objfiles.h"
50 #include "auxv.h"
51 #include "frame-unwind.h"
52 #include "dummy-frame.h"
53
54 /* Static function declarations */
55
56 static void alloc_gdbarch_data (struct gdbarch *);
57
58 /* Non-zero if we want to trace architecture code. */
59
60 #ifndef GDBARCH_DEBUG
61 #define GDBARCH_DEBUG 0
62 #endif
63 unsigned int gdbarch_debug = GDBARCH_DEBUG;
64 static void
65 show_gdbarch_debug (struct ui_file *file, int from_tty,
66 struct cmd_list_element *c, const char *value)
67 {
68 fprintf_filtered (file, _("Architecture debugging is %s.\n"), value);
69 }
70
71 static const char *
72 pformat (const struct floatformat **format)
73 {
74 if (format == NULL)
75 return "(null)";
76 else
77 /* Just print out one of them - this is only for diagnostics. */
78 return format[0]->name;
79 }
80
81 static const char *
82 pstring (const char *string)
83 {
84 if (string == NULL)
85 return "(null)";
86 return string;
87 }
88
89 static const char *
90 pstring_ptr (char **string)
91 {
92 if (string == NULL || *string == NULL)
93 return "(null)";
94 return *string;
95 }
96
97 /* Helper function to print a list of strings, represented as "const
98 char *const *". The list is printed comma-separated. */
99
100 static const char *
101 pstring_list (const char *const *list)
102 {
103 static char ret[100];
104 const char *const *p;
105 size_t offset = 0;
106
107 if (list == NULL)
108 return "(null)";
109
110 ret[0] = '\0';
111 for (p = list; *p != NULL && offset < sizeof (ret); ++p)
112 {
113 size_t s = xsnprintf (ret + offset, sizeof (ret) - offset, "%s, ", *p);
114 offset += 2 + s;
115 }
116
117 if (offset > 0)
118 {
119 gdb_assert (offset - 2 < sizeof (ret));
120 ret[offset - 2] = '\0';
121 }
122
123 return ret;
124 }
125
126
127 /* Maintain the struct gdbarch object. */
128
129 struct gdbarch
130 {
131 /* Has this architecture been fully initialized? */
132 int initialized_p;
133
134 /* An obstack bound to the lifetime of the architecture. */
135 struct obstack *obstack;
136
137 /* basic architectural information. */
138 const struct bfd_arch_info * bfd_arch_info;
139 enum bfd_endian byte_order;
140 enum bfd_endian byte_order_for_code;
141 enum gdb_osabi osabi;
142 const struct target_desc * target_desc;
143
144 /* target specific vector. */
145 struct gdbarch_tdep *tdep;
146 gdbarch_dump_tdep_ftype *dump_tdep;
147
148 /* per-architecture data-pointers. */
149 unsigned nr_data;
150 void **data;
151
152 /* Multi-arch values.
153
154 When extending this structure you must:
155
156 Add the field below.
157
158 Declare set/get functions and define the corresponding
159 macro in gdbarch.h.
160
161 gdbarch_alloc(): If zero/NULL is not a suitable default,
162 initialize the new field.
163
164 verify_gdbarch(): Confirm that the target updated the field
165 correctly.
166
167 gdbarch_dump(): Add a fprintf_unfiltered call so that the new
168 field is dumped out
169
170 get_gdbarch(): Implement the set/get functions (probably using
171 the macro's as shortcuts).
172
173 */
174
175 int short_bit;
176 int int_bit;
177 int long_bit;
178 int long_long_bit;
179 int half_bit;
180 const struct floatformat ** half_format;
181 int float_bit;
182 const struct floatformat ** float_format;
183 int double_bit;
184 const struct floatformat ** double_format;
185 int long_double_bit;
186 const struct floatformat ** long_double_format;
187 int wchar_bit;
188 int wchar_signed;
189 gdbarch_floatformat_for_type_ftype *floatformat_for_type;
190 int ptr_bit;
191 int addr_bit;
192 int dwarf2_addr_size;
193 int char_signed;
194 gdbarch_read_pc_ftype *read_pc;
195 gdbarch_write_pc_ftype *write_pc;
196 gdbarch_virtual_frame_pointer_ftype *virtual_frame_pointer;
197 gdbarch_pseudo_register_read_ftype *pseudo_register_read;
198 gdbarch_pseudo_register_read_value_ftype *pseudo_register_read_value;
199 gdbarch_pseudo_register_write_ftype *pseudo_register_write;
200 int num_regs;
201 int num_pseudo_regs;
202 gdbarch_ax_pseudo_register_collect_ftype *ax_pseudo_register_collect;
203 gdbarch_ax_pseudo_register_push_stack_ftype *ax_pseudo_register_push_stack;
204 gdbarch_handle_segmentation_fault_ftype *handle_segmentation_fault;
205 int sp_regnum;
206 int pc_regnum;
207 int ps_regnum;
208 int fp0_regnum;
209 gdbarch_stab_reg_to_regnum_ftype *stab_reg_to_regnum;
210 gdbarch_ecoff_reg_to_regnum_ftype *ecoff_reg_to_regnum;
211 gdbarch_sdb_reg_to_regnum_ftype *sdb_reg_to_regnum;
212 gdbarch_dwarf2_reg_to_regnum_ftype *dwarf2_reg_to_regnum;
213 gdbarch_register_name_ftype *register_name;
214 gdbarch_register_type_ftype *register_type;
215 gdbarch_dummy_id_ftype *dummy_id;
216 int deprecated_fp_regnum;
217 gdbarch_push_dummy_call_ftype *push_dummy_call;
218 int call_dummy_location;
219 gdbarch_push_dummy_code_ftype *push_dummy_code;
220 gdbarch_code_of_frame_writable_ftype *code_of_frame_writable;
221 gdbarch_print_registers_info_ftype *print_registers_info;
222 gdbarch_print_float_info_ftype *print_float_info;
223 gdbarch_print_vector_info_ftype *print_vector_info;
224 gdbarch_register_sim_regno_ftype *register_sim_regno;
225 gdbarch_cannot_fetch_register_ftype *cannot_fetch_register;
226 gdbarch_cannot_store_register_ftype *cannot_store_register;
227 gdbarch_get_longjmp_target_ftype *get_longjmp_target;
228 int believe_pcc_promotion;
229 gdbarch_convert_register_p_ftype *convert_register_p;
230 gdbarch_register_to_value_ftype *register_to_value;
231 gdbarch_value_to_register_ftype *value_to_register;
232 gdbarch_value_from_register_ftype *value_from_register;
233 gdbarch_pointer_to_address_ftype *pointer_to_address;
234 gdbarch_address_to_pointer_ftype *address_to_pointer;
235 gdbarch_integer_to_address_ftype *integer_to_address;
236 gdbarch_return_value_ftype *return_value;
237 gdbarch_return_in_first_hidden_param_p_ftype *return_in_first_hidden_param_p;
238 gdbarch_skip_prologue_ftype *skip_prologue;
239 gdbarch_skip_main_prologue_ftype *skip_main_prologue;
240 gdbarch_skip_entrypoint_ftype *skip_entrypoint;
241 gdbarch_inner_than_ftype *inner_than;
242 gdbarch_breakpoint_from_pc_ftype *breakpoint_from_pc;
243 gdbarch_breakpoint_kind_from_pc_ftype *breakpoint_kind_from_pc;
244 gdbarch_sw_breakpoint_from_kind_ftype *sw_breakpoint_from_kind;
245 gdbarch_breakpoint_kind_from_current_state_ftype *breakpoint_kind_from_current_state;
246 gdbarch_adjust_breakpoint_address_ftype *adjust_breakpoint_address;
247 gdbarch_memory_insert_breakpoint_ftype *memory_insert_breakpoint;
248 gdbarch_memory_remove_breakpoint_ftype *memory_remove_breakpoint;
249 CORE_ADDR decr_pc_after_break;
250 CORE_ADDR deprecated_function_start_offset;
251 gdbarch_remote_register_number_ftype *remote_register_number;
252 gdbarch_fetch_tls_load_module_address_ftype *fetch_tls_load_module_address;
253 gdbarch_get_thread_local_address_ftype *get_thread_local_address;
254 CORE_ADDR frame_args_skip;
255 gdbarch_unwind_pc_ftype *unwind_pc;
256 gdbarch_unwind_sp_ftype *unwind_sp;
257 gdbarch_frame_num_args_ftype *frame_num_args;
258 gdbarch_frame_align_ftype *frame_align;
259 gdbarch_stabs_argument_has_addr_ftype *stabs_argument_has_addr;
260 int frame_red_zone_size;
261 gdbarch_convert_from_func_ptr_addr_ftype *convert_from_func_ptr_addr;
262 gdbarch_addr_bits_remove_ftype *addr_bits_remove;
263 int significant_addr_bit;
264 gdbarch_software_single_step_ftype *software_single_step;
265 gdbarch_single_step_through_delay_ftype *single_step_through_delay;
266 gdbarch_print_insn_ftype *print_insn;
267 gdbarch_skip_trampoline_code_ftype *skip_trampoline_code;
268 gdbarch_skip_solib_resolver_ftype *skip_solib_resolver;
269 gdbarch_in_solib_return_trampoline_ftype *in_solib_return_trampoline;
270 gdbarch_in_indirect_branch_thunk_ftype *in_indirect_branch_thunk;
271 gdbarch_stack_frame_destroyed_p_ftype *stack_frame_destroyed_p;
272 gdbarch_elf_make_msymbol_special_ftype *elf_make_msymbol_special;
273 gdbarch_coff_make_msymbol_special_ftype *coff_make_msymbol_special;
274 gdbarch_make_symbol_special_ftype *make_symbol_special;
275 gdbarch_adjust_dwarf2_addr_ftype *adjust_dwarf2_addr;
276 gdbarch_adjust_dwarf2_line_ftype *adjust_dwarf2_line;
277 int cannot_step_breakpoint;
278 int have_nonsteppable_watchpoint;
279 gdbarch_address_class_type_flags_ftype *address_class_type_flags;
280 gdbarch_address_class_type_flags_to_name_ftype *address_class_type_flags_to_name;
281 gdbarch_execute_dwarf_cfa_vendor_op_ftype *execute_dwarf_cfa_vendor_op;
282 gdbarch_address_class_name_to_type_flags_ftype *address_class_name_to_type_flags;
283 gdbarch_register_reggroup_p_ftype *register_reggroup_p;
284 gdbarch_fetch_pointer_argument_ftype *fetch_pointer_argument;
285 gdbarch_iterate_over_regset_sections_ftype *iterate_over_regset_sections;
286 gdbarch_make_corefile_notes_ftype *make_corefile_notes;
287 gdbarch_find_memory_regions_ftype *find_memory_regions;
288 gdbarch_core_xfer_shared_libraries_ftype *core_xfer_shared_libraries;
289 gdbarch_core_xfer_shared_libraries_aix_ftype *core_xfer_shared_libraries_aix;
290 gdbarch_core_pid_to_str_ftype *core_pid_to_str;
291 gdbarch_core_thread_name_ftype *core_thread_name;
292 gdbarch_core_xfer_siginfo_ftype *core_xfer_siginfo;
293 const char * gcore_bfd_target;
294 int vtable_function_descriptors;
295 int vbit_in_delta;
296 gdbarch_skip_permanent_breakpoint_ftype *skip_permanent_breakpoint;
297 ULONGEST max_insn_length;
298 gdbarch_displaced_step_copy_insn_ftype *displaced_step_copy_insn;
299 gdbarch_displaced_step_hw_singlestep_ftype *displaced_step_hw_singlestep;
300 gdbarch_displaced_step_fixup_ftype *displaced_step_fixup;
301 gdbarch_displaced_step_location_ftype *displaced_step_location;
302 gdbarch_relocate_instruction_ftype *relocate_instruction;
303 gdbarch_overlay_update_ftype *overlay_update;
304 gdbarch_core_read_description_ftype *core_read_description;
305 gdbarch_static_transform_name_ftype *static_transform_name;
306 int sofun_address_maybe_missing;
307 gdbarch_process_record_ftype *process_record;
308 gdbarch_process_record_signal_ftype *process_record_signal;
309 gdbarch_gdb_signal_from_target_ftype *gdb_signal_from_target;
310 gdbarch_gdb_signal_to_target_ftype *gdb_signal_to_target;
311 gdbarch_get_siginfo_type_ftype *get_siginfo_type;
312 gdbarch_record_special_symbol_ftype *record_special_symbol;
313 gdbarch_get_syscall_number_ftype *get_syscall_number;
314 const char * xml_syscall_file;
315 struct syscalls_info * syscalls_info;
316 const char *const * stap_integer_prefixes;
317 const char *const * stap_integer_suffixes;
318 const char *const * stap_register_prefixes;
319 const char *const * stap_register_suffixes;
320 const char *const * stap_register_indirection_prefixes;
321 const char *const * stap_register_indirection_suffixes;
322 const char * stap_gdb_register_prefix;
323 const char * stap_gdb_register_suffix;
324 gdbarch_stap_is_single_operand_ftype *stap_is_single_operand;
325 gdbarch_stap_parse_special_token_ftype *stap_parse_special_token;
326 gdbarch_stap_adjust_register_ftype *stap_adjust_register;
327 gdbarch_dtrace_parse_probe_argument_ftype *dtrace_parse_probe_argument;
328 gdbarch_dtrace_probe_is_enabled_ftype *dtrace_probe_is_enabled;
329 gdbarch_dtrace_enable_probe_ftype *dtrace_enable_probe;
330 gdbarch_dtrace_disable_probe_ftype *dtrace_disable_probe;
331 int has_global_solist;
332 int has_global_breakpoints;
333 gdbarch_has_shared_address_space_ftype *has_shared_address_space;
334 gdbarch_fast_tracepoint_valid_at_ftype *fast_tracepoint_valid_at;
335 gdbarch_guess_tracepoint_registers_ftype *guess_tracepoint_registers;
336 gdbarch_auto_charset_ftype *auto_charset;
337 gdbarch_auto_wide_charset_ftype *auto_wide_charset;
338 const char * solib_symbols_extension;
339 int has_dos_based_file_system;
340 gdbarch_gen_return_address_ftype *gen_return_address;
341 gdbarch_info_proc_ftype *info_proc;
342 gdbarch_core_info_proc_ftype *core_info_proc;
343 gdbarch_iterate_over_objfiles_in_search_order_ftype *iterate_over_objfiles_in_search_order;
344 struct ravenscar_arch_ops * ravenscar_ops;
345 gdbarch_insn_is_call_ftype *insn_is_call;
346 gdbarch_insn_is_ret_ftype *insn_is_ret;
347 gdbarch_insn_is_jump_ftype *insn_is_jump;
348 gdbarch_program_breakpoint_here_p_ftype *program_breakpoint_here_p;
349 gdbarch_auxv_parse_ftype *auxv_parse;
350 gdbarch_print_auxv_entry_ftype *print_auxv_entry;
351 gdbarch_vsyscall_range_ftype *vsyscall_range;
352 gdbarch_infcall_mmap_ftype *infcall_mmap;
353 gdbarch_infcall_munmap_ftype *infcall_munmap;
354 gdbarch_gcc_target_options_ftype *gcc_target_options;
355 gdbarch_gnu_triplet_regexp_ftype *gnu_triplet_regexp;
356 gdbarch_addressable_memory_unit_size_ftype *addressable_memory_unit_size;
357 const char * disassembler_options_implicit;
358 char ** disassembler_options;
359 const disasm_options_and_args_t * valid_disassembler_options;
360 gdbarch_type_align_ftype *type_align;
361 gdbarch_get_pc_address_flags_ftype *get_pc_address_flags;
362 };
363
364 /* Create a new ``struct gdbarch'' based on information provided by
365 ``struct gdbarch_info''. */
366
367 struct gdbarch *
368 gdbarch_alloc (const struct gdbarch_info *info,
369 struct gdbarch_tdep *tdep)
370 {
371 struct gdbarch *gdbarch;
372
373 /* Create an obstack for allocating all the per-architecture memory,
374 then use that to allocate the architecture vector. */
375 struct obstack *obstack = XNEW (struct obstack);
376 obstack_init (obstack);
377 gdbarch = XOBNEW (obstack, struct gdbarch);
378 memset (gdbarch, 0, sizeof (*gdbarch));
379 gdbarch->obstack = obstack;
380
381 alloc_gdbarch_data (gdbarch);
382
383 gdbarch->tdep = tdep;
384
385 gdbarch->bfd_arch_info = info->bfd_arch_info;
386 gdbarch->byte_order = info->byte_order;
387 gdbarch->byte_order_for_code = info->byte_order_for_code;
388 gdbarch->osabi = info->osabi;
389 gdbarch->target_desc = info->target_desc;
390
391 /* Force the explicit initialization of these. */
392 gdbarch->short_bit = 2*TARGET_CHAR_BIT;
393 gdbarch->int_bit = 4*TARGET_CHAR_BIT;
394 gdbarch->long_bit = 4*TARGET_CHAR_BIT;
395 gdbarch->long_long_bit = 2*gdbarch->long_bit;
396 gdbarch->half_bit = 2*TARGET_CHAR_BIT;
397 gdbarch->float_bit = 4*TARGET_CHAR_BIT;
398 gdbarch->double_bit = 8*TARGET_CHAR_BIT;
399 gdbarch->long_double_bit = 8*TARGET_CHAR_BIT;
400 gdbarch->wchar_bit = 4*TARGET_CHAR_BIT;
401 gdbarch->wchar_signed = -1;
402 gdbarch->floatformat_for_type = default_floatformat_for_type;
403 gdbarch->ptr_bit = gdbarch->int_bit;
404 gdbarch->char_signed = -1;
405 gdbarch->virtual_frame_pointer = legacy_virtual_frame_pointer;
406 gdbarch->num_regs = -1;
407 gdbarch->sp_regnum = -1;
408 gdbarch->pc_regnum = -1;
409 gdbarch->ps_regnum = -1;
410 gdbarch->fp0_regnum = -1;
411 gdbarch->stab_reg_to_regnum = no_op_reg_to_regnum;
412 gdbarch->ecoff_reg_to_regnum = no_op_reg_to_regnum;
413 gdbarch->sdb_reg_to_regnum = no_op_reg_to_regnum;
414 gdbarch->dwarf2_reg_to_regnum = no_op_reg_to_regnum;
415 gdbarch->dummy_id = default_dummy_id;
416 gdbarch->deprecated_fp_regnum = -1;
417 gdbarch->call_dummy_location = AT_ENTRY_POINT;
418 gdbarch->code_of_frame_writable = default_code_of_frame_writable;
419 gdbarch->print_registers_info = default_print_registers_info;
420 gdbarch->print_float_info = default_print_float_info;
421 gdbarch->register_sim_regno = legacy_register_sim_regno;
422 gdbarch->cannot_fetch_register = cannot_register_not;
423 gdbarch->cannot_store_register = cannot_register_not;
424 gdbarch->convert_register_p = generic_convert_register_p;
425 gdbarch->value_from_register = default_value_from_register;
426 gdbarch->pointer_to_address = unsigned_pointer_to_address;
427 gdbarch->address_to_pointer = unsigned_address_to_pointer;
428 gdbarch->return_in_first_hidden_param_p = default_return_in_first_hidden_param_p;
429 gdbarch->breakpoint_from_pc = default_breakpoint_from_pc;
430 gdbarch->sw_breakpoint_from_kind = NULL;
431 gdbarch->breakpoint_kind_from_current_state = default_breakpoint_kind_from_current_state;
432 gdbarch->memory_insert_breakpoint = default_memory_insert_breakpoint;
433 gdbarch->memory_remove_breakpoint = default_memory_remove_breakpoint;
434 gdbarch->remote_register_number = default_remote_register_number;
435 gdbarch->unwind_pc = default_unwind_pc;
436 gdbarch->unwind_sp = default_unwind_sp;
437 gdbarch->stabs_argument_has_addr = default_stabs_argument_has_addr;
438 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr_identity;
439 gdbarch->addr_bits_remove = core_addr_identity;
440 gdbarch->print_insn = default_print_insn;
441 gdbarch->skip_trampoline_code = generic_skip_trampoline_code;
442 gdbarch->skip_solib_resolver = generic_skip_solib_resolver;
443 gdbarch->in_solib_return_trampoline = generic_in_solib_return_trampoline;
444 gdbarch->in_indirect_branch_thunk = default_in_indirect_branch_thunk;
445 gdbarch->stack_frame_destroyed_p = generic_stack_frame_destroyed_p;
446 gdbarch->coff_make_msymbol_special = default_coff_make_msymbol_special;
447 gdbarch->make_symbol_special = default_make_symbol_special;
448 gdbarch->adjust_dwarf2_addr = default_adjust_dwarf2_addr;
449 gdbarch->adjust_dwarf2_line = default_adjust_dwarf2_line;
450 gdbarch->execute_dwarf_cfa_vendor_op = default_execute_dwarf_cfa_vendor_op;
451 gdbarch->register_reggroup_p = default_register_reggroup_p;
452 gdbarch->skip_permanent_breakpoint = default_skip_permanent_breakpoint;
453 gdbarch->displaced_step_hw_singlestep = default_displaced_step_hw_singlestep;
454 gdbarch->displaced_step_fixup = NULL;
455 gdbarch->displaced_step_location = NULL;
456 gdbarch->relocate_instruction = NULL;
457 gdbarch->has_shared_address_space = default_has_shared_address_space;
458 gdbarch->fast_tracepoint_valid_at = default_fast_tracepoint_valid_at;
459 gdbarch->guess_tracepoint_registers = default_guess_tracepoint_registers;
460 gdbarch->auto_charset = default_auto_charset;
461 gdbarch->auto_wide_charset = default_auto_wide_charset;
462 gdbarch->gen_return_address = default_gen_return_address;
463 gdbarch->iterate_over_objfiles_in_search_order = default_iterate_over_objfiles_in_search_order;
464 gdbarch->ravenscar_ops = NULL;
465 gdbarch->insn_is_call = default_insn_is_call;
466 gdbarch->insn_is_ret = default_insn_is_ret;
467 gdbarch->insn_is_jump = default_insn_is_jump;
468 gdbarch->program_breakpoint_here_p = default_program_breakpoint_here_p;
469 gdbarch->print_auxv_entry = default_print_auxv_entry;
470 gdbarch->vsyscall_range = default_vsyscall_range;
471 gdbarch->infcall_mmap = default_infcall_mmap;
472 gdbarch->infcall_munmap = default_infcall_munmap;
473 gdbarch->gcc_target_options = default_gcc_target_options;
474 gdbarch->gnu_triplet_regexp = default_gnu_triplet_regexp;
475 gdbarch->addressable_memory_unit_size = default_addressable_memory_unit_size;
476 gdbarch->type_align = default_type_align;
477 gdbarch->get_pc_address_flags = default_get_pc_address_flags;
478 /* gdbarch_alloc() */
479
480 return gdbarch;
481 }
482
483
484
485 obstack *gdbarch_obstack (gdbarch *arch)
486 {
487 return arch->obstack;
488 }
489
490 /* See gdbarch.h. */
491
492 char *
493 gdbarch_obstack_strdup (struct gdbarch *arch, const char *string)
494 {
495 return obstack_strdup (arch->obstack, string);
496 }
497
498
499 /* Free a gdbarch struct. This should never happen in normal
500 operation --- once you've created a gdbarch, you keep it around.
501 However, if an architecture's init function encounters an error
502 building the structure, it may need to clean up a partially
503 constructed gdbarch. */
504
505 void
506 gdbarch_free (struct gdbarch *arch)
507 {
508 struct obstack *obstack;
509
510 gdb_assert (arch != NULL);
511 gdb_assert (!arch->initialized_p);
512 obstack = arch->obstack;
513 obstack_free (obstack, 0); /* Includes the ARCH. */
514 xfree (obstack);
515 }
516
517
518 /* Ensure that all values in a GDBARCH are reasonable. */
519
520 static void
521 verify_gdbarch (struct gdbarch *gdbarch)
522 {
523 string_file log;
524
525 /* fundamental */
526 if (gdbarch->byte_order == BFD_ENDIAN_UNKNOWN)
527 log.puts ("\n\tbyte-order");
528 if (gdbarch->bfd_arch_info == NULL)
529 log.puts ("\n\tbfd_arch_info");
530 /* Check those that need to be defined for the given multi-arch level. */
531 /* Skip verify of short_bit, invalid_p == 0 */
532 /* Skip verify of int_bit, invalid_p == 0 */
533 /* Skip verify of long_bit, invalid_p == 0 */
534 /* Skip verify of long_long_bit, invalid_p == 0 */
535 /* Skip verify of half_bit, invalid_p == 0 */
536 if (gdbarch->half_format == 0)
537 gdbarch->half_format = floatformats_ieee_half;
538 /* Skip verify of float_bit, invalid_p == 0 */
539 if (gdbarch->float_format == 0)
540 gdbarch->float_format = floatformats_ieee_single;
541 /* Skip verify of double_bit, invalid_p == 0 */
542 if (gdbarch->double_format == 0)
543 gdbarch->double_format = floatformats_ieee_double;
544 /* Skip verify of long_double_bit, invalid_p == 0 */
545 if (gdbarch->long_double_format == 0)
546 gdbarch->long_double_format = floatformats_ieee_double;
547 /* Skip verify of wchar_bit, invalid_p == 0 */
548 if (gdbarch->wchar_signed == -1)
549 gdbarch->wchar_signed = 1;
550 /* Skip verify of floatformat_for_type, invalid_p == 0 */
551 /* Skip verify of ptr_bit, invalid_p == 0 */
552 if (gdbarch->addr_bit == 0)
553 gdbarch->addr_bit = gdbarch_ptr_bit (gdbarch);
554 if (gdbarch->dwarf2_addr_size == 0)
555 gdbarch->dwarf2_addr_size = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
556 if (gdbarch->char_signed == -1)
557 gdbarch->char_signed = 1;
558 /* Skip verify of read_pc, has predicate. */
559 /* Skip verify of write_pc, has predicate. */
560 /* Skip verify of virtual_frame_pointer, invalid_p == 0 */
561 /* Skip verify of pseudo_register_read, has predicate. */
562 /* Skip verify of pseudo_register_read_value, has predicate. */
563 /* Skip verify of pseudo_register_write, has predicate. */
564 if (gdbarch->num_regs == -1)
565 log.puts ("\n\tnum_regs");
566 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
567 /* Skip verify of ax_pseudo_register_collect, has predicate. */
568 /* Skip verify of ax_pseudo_register_push_stack, has predicate. */
569 /* Skip verify of handle_segmentation_fault, has predicate. */
570 /* Skip verify of sp_regnum, invalid_p == 0 */
571 /* Skip verify of pc_regnum, invalid_p == 0 */
572 /* Skip verify of ps_regnum, invalid_p == 0 */
573 /* Skip verify of fp0_regnum, invalid_p == 0 */
574 /* Skip verify of stab_reg_to_regnum, invalid_p == 0 */
575 /* Skip verify of ecoff_reg_to_regnum, invalid_p == 0 */
576 /* Skip verify of sdb_reg_to_regnum, invalid_p == 0 */
577 /* Skip verify of dwarf2_reg_to_regnum, invalid_p == 0 */
578 if (gdbarch->register_name == 0)
579 log.puts ("\n\tregister_name");
580 /* Skip verify of register_type, has predicate. */
581 /* Skip verify of dummy_id, invalid_p == 0 */
582 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
583 /* Skip verify of push_dummy_call, has predicate. */
584 /* Skip verify of call_dummy_location, invalid_p == 0 */
585 /* Skip verify of push_dummy_code, has predicate. */
586 /* Skip verify of code_of_frame_writable, invalid_p == 0 */
587 /* Skip verify of print_registers_info, invalid_p == 0 */
588 /* Skip verify of print_float_info, invalid_p == 0 */
589 /* Skip verify of print_vector_info, has predicate. */
590 /* Skip verify of register_sim_regno, invalid_p == 0 */
591 /* Skip verify of cannot_fetch_register, invalid_p == 0 */
592 /* Skip verify of cannot_store_register, invalid_p == 0 */
593 /* Skip verify of get_longjmp_target, has predicate. */
594 /* Skip verify of convert_register_p, invalid_p == 0 */
595 /* Skip verify of value_from_register, invalid_p == 0 */
596 /* Skip verify of pointer_to_address, invalid_p == 0 */
597 /* Skip verify of address_to_pointer, invalid_p == 0 */
598 /* Skip verify of integer_to_address, has predicate. */
599 /* Skip verify of return_value, has predicate. */
600 /* Skip verify of return_in_first_hidden_param_p, invalid_p == 0 */
601 if (gdbarch->skip_prologue == 0)
602 log.puts ("\n\tskip_prologue");
603 /* Skip verify of skip_main_prologue, has predicate. */
604 /* Skip verify of skip_entrypoint, has predicate. */
605 if (gdbarch->inner_than == 0)
606 log.puts ("\n\tinner_than");
607 /* Skip verify of breakpoint_from_pc, invalid_p == 0 */
608 if (gdbarch->breakpoint_kind_from_pc == 0)
609 log.puts ("\n\tbreakpoint_kind_from_pc");
610 /* Skip verify of sw_breakpoint_from_kind, invalid_p == 0 */
611 /* Skip verify of breakpoint_kind_from_current_state, invalid_p == 0 */
612 /* Skip verify of adjust_breakpoint_address, has predicate. */
613 /* Skip verify of memory_insert_breakpoint, invalid_p == 0 */
614 /* Skip verify of memory_remove_breakpoint, invalid_p == 0 */
615 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
616 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
617 /* Skip verify of remote_register_number, invalid_p == 0 */
618 /* Skip verify of fetch_tls_load_module_address, has predicate. */
619 /* Skip verify of get_thread_local_address, has predicate. */
620 /* Skip verify of frame_args_skip, invalid_p == 0 */
621 /* Skip verify of unwind_pc, invalid_p == 0 */
622 /* Skip verify of unwind_sp, invalid_p == 0 */
623 /* Skip verify of frame_num_args, has predicate. */
624 /* Skip verify of frame_align, has predicate. */
625 /* Skip verify of stabs_argument_has_addr, invalid_p == 0 */
626 /* Skip verify of convert_from_func_ptr_addr, invalid_p == 0 */
627 /* Skip verify of addr_bits_remove, invalid_p == 0 */
628 /* Skip verify of significant_addr_bit, invalid_p == 0 */
629 /* Skip verify of software_single_step, has predicate. */
630 /* Skip verify of single_step_through_delay, has predicate. */
631 /* Skip verify of print_insn, invalid_p == 0 */
632 /* Skip verify of skip_trampoline_code, invalid_p == 0 */
633 /* Skip verify of skip_solib_resolver, invalid_p == 0 */
634 /* Skip verify of in_solib_return_trampoline, invalid_p == 0 */
635 /* Skip verify of in_indirect_branch_thunk, invalid_p == 0 */
636 /* Skip verify of stack_frame_destroyed_p, invalid_p == 0 */
637 /* Skip verify of elf_make_msymbol_special, has predicate. */
638 /* Skip verify of coff_make_msymbol_special, invalid_p == 0 */
639 /* Skip verify of make_symbol_special, invalid_p == 0 */
640 /* Skip verify of adjust_dwarf2_addr, invalid_p == 0 */
641 /* Skip verify of adjust_dwarf2_line, invalid_p == 0 */
642 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
643 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
644 /* Skip verify of address_class_type_flags, has predicate. */
645 /* Skip verify of address_class_type_flags_to_name, has predicate. */
646 /* Skip verify of execute_dwarf_cfa_vendor_op, invalid_p == 0 */
647 /* Skip verify of address_class_name_to_type_flags, has predicate. */
648 /* Skip verify of register_reggroup_p, invalid_p == 0 */
649 /* Skip verify of fetch_pointer_argument, has predicate. */
650 /* Skip verify of iterate_over_regset_sections, has predicate. */
651 /* Skip verify of make_corefile_notes, has predicate. */
652 /* Skip verify of find_memory_regions, has predicate. */
653 /* Skip verify of core_xfer_shared_libraries, has predicate. */
654 /* Skip verify of core_xfer_shared_libraries_aix, has predicate. */
655 /* Skip verify of core_pid_to_str, has predicate. */
656 /* Skip verify of core_thread_name, has predicate. */
657 /* Skip verify of core_xfer_siginfo, has predicate. */
658 /* Skip verify of gcore_bfd_target, has predicate. */
659 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
660 /* Skip verify of vbit_in_delta, invalid_p == 0 */
661 /* Skip verify of skip_permanent_breakpoint, invalid_p == 0 */
662 /* Skip verify of max_insn_length, has predicate. */
663 /* Skip verify of displaced_step_copy_insn, has predicate. */
664 /* Skip verify of displaced_step_hw_singlestep, invalid_p == 0 */
665 /* Skip verify of displaced_step_fixup, has predicate. */
666 if ((! gdbarch->displaced_step_location) != (! gdbarch->displaced_step_copy_insn))
667 log.puts ("\n\tdisplaced_step_location");
668 /* Skip verify of relocate_instruction, has predicate. */
669 /* Skip verify of overlay_update, has predicate. */
670 /* Skip verify of core_read_description, has predicate. */
671 /* Skip verify of static_transform_name, has predicate. */
672 /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */
673 /* Skip verify of process_record, has predicate. */
674 /* Skip verify of process_record_signal, has predicate. */
675 /* Skip verify of gdb_signal_from_target, has predicate. */
676 /* Skip verify of gdb_signal_to_target, has predicate. */
677 /* Skip verify of get_siginfo_type, has predicate. */
678 /* Skip verify of record_special_symbol, has predicate. */
679 /* Skip verify of get_syscall_number, has predicate. */
680 /* Skip verify of xml_syscall_file, invalid_p == 0 */
681 /* Skip verify of syscalls_info, invalid_p == 0 */
682 /* Skip verify of stap_integer_prefixes, invalid_p == 0 */
683 /* Skip verify of stap_integer_suffixes, invalid_p == 0 */
684 /* Skip verify of stap_register_prefixes, invalid_p == 0 */
685 /* Skip verify of stap_register_suffixes, invalid_p == 0 */
686 /* Skip verify of stap_register_indirection_prefixes, invalid_p == 0 */
687 /* Skip verify of stap_register_indirection_suffixes, invalid_p == 0 */
688 /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */
689 /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */
690 /* Skip verify of stap_is_single_operand, has predicate. */
691 /* Skip verify of stap_parse_special_token, has predicate. */
692 /* Skip verify of stap_adjust_register, has predicate. */
693 /* Skip verify of dtrace_parse_probe_argument, has predicate. */
694 /* Skip verify of dtrace_probe_is_enabled, has predicate. */
695 /* Skip verify of dtrace_enable_probe, has predicate. */
696 /* Skip verify of dtrace_disable_probe, has predicate. */
697 /* Skip verify of has_global_solist, invalid_p == 0 */
698 /* Skip verify of has_global_breakpoints, invalid_p == 0 */
699 /* Skip verify of has_shared_address_space, invalid_p == 0 */
700 /* Skip verify of fast_tracepoint_valid_at, invalid_p == 0 */
701 /* Skip verify of guess_tracepoint_registers, invalid_p == 0 */
702 /* Skip verify of auto_charset, invalid_p == 0 */
703 /* Skip verify of auto_wide_charset, invalid_p == 0 */
704 /* Skip verify of has_dos_based_file_system, invalid_p == 0 */
705 /* Skip verify of gen_return_address, invalid_p == 0 */
706 /* Skip verify of info_proc, has predicate. */
707 /* Skip verify of core_info_proc, has predicate. */
708 /* Skip verify of iterate_over_objfiles_in_search_order, invalid_p == 0 */
709 /* Skip verify of ravenscar_ops, invalid_p == 0 */
710 /* Skip verify of insn_is_call, invalid_p == 0 */
711 /* Skip verify of insn_is_ret, invalid_p == 0 */
712 /* Skip verify of insn_is_jump, invalid_p == 0 */
713 /* Skip verify of program_breakpoint_here_p, invalid_p == 0 */
714 /* Skip verify of auxv_parse, has predicate. */
715 /* Skip verify of print_auxv_entry, invalid_p == 0 */
716 /* Skip verify of vsyscall_range, invalid_p == 0 */
717 /* Skip verify of infcall_mmap, invalid_p == 0 */
718 /* Skip verify of infcall_munmap, invalid_p == 0 */
719 /* Skip verify of gcc_target_options, invalid_p == 0 */
720 /* Skip verify of gnu_triplet_regexp, invalid_p == 0 */
721 /* Skip verify of addressable_memory_unit_size, invalid_p == 0 */
722 /* Skip verify of disassembler_options_implicit, invalid_p == 0 */
723 /* Skip verify of disassembler_options, invalid_p == 0 */
724 /* Skip verify of valid_disassembler_options, invalid_p == 0 */
725 /* Skip verify of type_align, invalid_p == 0 */
726 /* Skip verify of get_pc_address_flags, invalid_p == 0 */
727 if (!log.empty ())
728 internal_error (__FILE__, __LINE__,
729 _("verify_gdbarch: the following are invalid ...%s"),
730 log.c_str ());
731 }
732
733
734 /* Print out the details of the current architecture. */
735
736 void
737 gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file)
738 {
739 const char *gdb_nm_file = "<not-defined>";
740
741 #if defined (GDB_NM_FILE)
742 gdb_nm_file = GDB_NM_FILE;
743 #endif
744 fprintf_unfiltered (file,
745 "gdbarch_dump: GDB_NM_FILE = %s\n",
746 gdb_nm_file);
747 fprintf_unfiltered (file,
748 "gdbarch_dump: addr_bit = %s\n",
749 plongest (gdbarch->addr_bit));
750 fprintf_unfiltered (file,
751 "gdbarch_dump: addr_bits_remove = <%s>\n",
752 host_address_to_string (gdbarch->addr_bits_remove));
753 fprintf_unfiltered (file,
754 "gdbarch_dump: gdbarch_address_class_name_to_type_flags_p() = %d\n",
755 gdbarch_address_class_name_to_type_flags_p (gdbarch));
756 fprintf_unfiltered (file,
757 "gdbarch_dump: address_class_name_to_type_flags = <%s>\n",
758 host_address_to_string (gdbarch->address_class_name_to_type_flags));
759 fprintf_unfiltered (file,
760 "gdbarch_dump: gdbarch_address_class_type_flags_p() = %d\n",
761 gdbarch_address_class_type_flags_p (gdbarch));
762 fprintf_unfiltered (file,
763 "gdbarch_dump: address_class_type_flags = <%s>\n",
764 host_address_to_string (gdbarch->address_class_type_flags));
765 fprintf_unfiltered (file,
766 "gdbarch_dump: gdbarch_address_class_type_flags_to_name_p() = %d\n",
767 gdbarch_address_class_type_flags_to_name_p (gdbarch));
768 fprintf_unfiltered (file,
769 "gdbarch_dump: address_class_type_flags_to_name = <%s>\n",
770 host_address_to_string (gdbarch->address_class_type_flags_to_name));
771 fprintf_unfiltered (file,
772 "gdbarch_dump: address_to_pointer = <%s>\n",
773 host_address_to_string (gdbarch->address_to_pointer));
774 fprintf_unfiltered (file,
775 "gdbarch_dump: addressable_memory_unit_size = <%s>\n",
776 host_address_to_string (gdbarch->addressable_memory_unit_size));
777 fprintf_unfiltered (file,
778 "gdbarch_dump: gdbarch_adjust_breakpoint_address_p() = %d\n",
779 gdbarch_adjust_breakpoint_address_p (gdbarch));
780 fprintf_unfiltered (file,
781 "gdbarch_dump: adjust_breakpoint_address = <%s>\n",
782 host_address_to_string (gdbarch->adjust_breakpoint_address));
783 fprintf_unfiltered (file,
784 "gdbarch_dump: adjust_dwarf2_addr = <%s>\n",
785 host_address_to_string (gdbarch->adjust_dwarf2_addr));
786 fprintf_unfiltered (file,
787 "gdbarch_dump: adjust_dwarf2_line = <%s>\n",
788 host_address_to_string (gdbarch->adjust_dwarf2_line));
789 fprintf_unfiltered (file,
790 "gdbarch_dump: auto_charset = <%s>\n",
791 host_address_to_string (gdbarch->auto_charset));
792 fprintf_unfiltered (file,
793 "gdbarch_dump: auto_wide_charset = <%s>\n",
794 host_address_to_string (gdbarch->auto_wide_charset));
795 fprintf_unfiltered (file,
796 "gdbarch_dump: gdbarch_auxv_parse_p() = %d\n",
797 gdbarch_auxv_parse_p (gdbarch));
798 fprintf_unfiltered (file,
799 "gdbarch_dump: auxv_parse = <%s>\n",
800 host_address_to_string (gdbarch->auxv_parse));
801 fprintf_unfiltered (file,
802 "gdbarch_dump: gdbarch_ax_pseudo_register_collect_p() = %d\n",
803 gdbarch_ax_pseudo_register_collect_p (gdbarch));
804 fprintf_unfiltered (file,
805 "gdbarch_dump: ax_pseudo_register_collect = <%s>\n",
806 host_address_to_string (gdbarch->ax_pseudo_register_collect));
807 fprintf_unfiltered (file,
808 "gdbarch_dump: gdbarch_ax_pseudo_register_push_stack_p() = %d\n",
809 gdbarch_ax_pseudo_register_push_stack_p (gdbarch));
810 fprintf_unfiltered (file,
811 "gdbarch_dump: ax_pseudo_register_push_stack = <%s>\n",
812 host_address_to_string (gdbarch->ax_pseudo_register_push_stack));
813 fprintf_unfiltered (file,
814 "gdbarch_dump: believe_pcc_promotion = %s\n",
815 plongest (gdbarch->believe_pcc_promotion));
816 fprintf_unfiltered (file,
817 "gdbarch_dump: bfd_arch_info = %s\n",
818 gdbarch_bfd_arch_info (gdbarch)->printable_name);
819 fprintf_unfiltered (file,
820 "gdbarch_dump: breakpoint_from_pc = <%s>\n",
821 host_address_to_string (gdbarch->breakpoint_from_pc));
822 fprintf_unfiltered (file,
823 "gdbarch_dump: breakpoint_kind_from_current_state = <%s>\n",
824 host_address_to_string (gdbarch->breakpoint_kind_from_current_state));
825 fprintf_unfiltered (file,
826 "gdbarch_dump: breakpoint_kind_from_pc = <%s>\n",
827 host_address_to_string (gdbarch->breakpoint_kind_from_pc));
828 fprintf_unfiltered (file,
829 "gdbarch_dump: byte_order = %s\n",
830 plongest (gdbarch->byte_order));
831 fprintf_unfiltered (file,
832 "gdbarch_dump: byte_order_for_code = %s\n",
833 plongest (gdbarch->byte_order_for_code));
834 fprintf_unfiltered (file,
835 "gdbarch_dump: call_dummy_location = %s\n",
836 plongest (gdbarch->call_dummy_location));
837 fprintf_unfiltered (file,
838 "gdbarch_dump: cannot_fetch_register = <%s>\n",
839 host_address_to_string (gdbarch->cannot_fetch_register));
840 fprintf_unfiltered (file,
841 "gdbarch_dump: cannot_step_breakpoint = %s\n",
842 plongest (gdbarch->cannot_step_breakpoint));
843 fprintf_unfiltered (file,
844 "gdbarch_dump: cannot_store_register = <%s>\n",
845 host_address_to_string (gdbarch->cannot_store_register));
846 fprintf_unfiltered (file,
847 "gdbarch_dump: char_signed = %s\n",
848 plongest (gdbarch->char_signed));
849 fprintf_unfiltered (file,
850 "gdbarch_dump: code_of_frame_writable = <%s>\n",
851 host_address_to_string (gdbarch->code_of_frame_writable));
852 fprintf_unfiltered (file,
853 "gdbarch_dump: coff_make_msymbol_special = <%s>\n",
854 host_address_to_string (gdbarch->coff_make_msymbol_special));
855 fprintf_unfiltered (file,
856 "gdbarch_dump: convert_from_func_ptr_addr = <%s>\n",
857 host_address_to_string (gdbarch->convert_from_func_ptr_addr));
858 fprintf_unfiltered (file,
859 "gdbarch_dump: convert_register_p = <%s>\n",
860 host_address_to_string (gdbarch->convert_register_p));
861 fprintf_unfiltered (file,
862 "gdbarch_dump: gdbarch_core_info_proc_p() = %d\n",
863 gdbarch_core_info_proc_p (gdbarch));
864 fprintf_unfiltered (file,
865 "gdbarch_dump: core_info_proc = <%s>\n",
866 host_address_to_string (gdbarch->core_info_proc));
867 fprintf_unfiltered (file,
868 "gdbarch_dump: gdbarch_core_pid_to_str_p() = %d\n",
869 gdbarch_core_pid_to_str_p (gdbarch));
870 fprintf_unfiltered (file,
871 "gdbarch_dump: core_pid_to_str = <%s>\n",
872 host_address_to_string (gdbarch->core_pid_to_str));
873 fprintf_unfiltered (file,
874 "gdbarch_dump: gdbarch_core_read_description_p() = %d\n",
875 gdbarch_core_read_description_p (gdbarch));
876 fprintf_unfiltered (file,
877 "gdbarch_dump: core_read_description = <%s>\n",
878 host_address_to_string (gdbarch->core_read_description));
879 fprintf_unfiltered (file,
880 "gdbarch_dump: gdbarch_core_thread_name_p() = %d\n",
881 gdbarch_core_thread_name_p (gdbarch));
882 fprintf_unfiltered (file,
883 "gdbarch_dump: core_thread_name = <%s>\n",
884 host_address_to_string (gdbarch->core_thread_name));
885 fprintf_unfiltered (file,
886 "gdbarch_dump: gdbarch_core_xfer_shared_libraries_p() = %d\n",
887 gdbarch_core_xfer_shared_libraries_p (gdbarch));
888 fprintf_unfiltered (file,
889 "gdbarch_dump: core_xfer_shared_libraries = <%s>\n",
890 host_address_to_string (gdbarch->core_xfer_shared_libraries));
891 fprintf_unfiltered (file,
892 "gdbarch_dump: gdbarch_core_xfer_shared_libraries_aix_p() = %d\n",
893 gdbarch_core_xfer_shared_libraries_aix_p (gdbarch));
894 fprintf_unfiltered (file,
895 "gdbarch_dump: core_xfer_shared_libraries_aix = <%s>\n",
896 host_address_to_string (gdbarch->core_xfer_shared_libraries_aix));
897 fprintf_unfiltered (file,
898 "gdbarch_dump: gdbarch_core_xfer_siginfo_p() = %d\n",
899 gdbarch_core_xfer_siginfo_p (gdbarch));
900 fprintf_unfiltered (file,
901 "gdbarch_dump: core_xfer_siginfo = <%s>\n",
902 host_address_to_string (gdbarch->core_xfer_siginfo));
903 fprintf_unfiltered (file,
904 "gdbarch_dump: decr_pc_after_break = %s\n",
905 core_addr_to_string_nz (gdbarch->decr_pc_after_break));
906 fprintf_unfiltered (file,
907 "gdbarch_dump: deprecated_fp_regnum = %s\n",
908 plongest (gdbarch->deprecated_fp_regnum));
909 fprintf_unfiltered (file,
910 "gdbarch_dump: deprecated_function_start_offset = %s\n",
911 core_addr_to_string_nz (gdbarch->deprecated_function_start_offset));
912 fprintf_unfiltered (file,
913 "gdbarch_dump: disassembler_options = %s\n",
914 pstring_ptr (gdbarch->disassembler_options));
915 fprintf_unfiltered (file,
916 "gdbarch_dump: disassembler_options_implicit = %s\n",
917 pstring (gdbarch->disassembler_options_implicit));
918 fprintf_unfiltered (file,
919 "gdbarch_dump: gdbarch_displaced_step_copy_insn_p() = %d\n",
920 gdbarch_displaced_step_copy_insn_p (gdbarch));
921 fprintf_unfiltered (file,
922 "gdbarch_dump: displaced_step_copy_insn = <%s>\n",
923 host_address_to_string (gdbarch->displaced_step_copy_insn));
924 fprintf_unfiltered (file,
925 "gdbarch_dump: gdbarch_displaced_step_fixup_p() = %d\n",
926 gdbarch_displaced_step_fixup_p (gdbarch));
927 fprintf_unfiltered (file,
928 "gdbarch_dump: displaced_step_fixup = <%s>\n",
929 host_address_to_string (gdbarch->displaced_step_fixup));
930 fprintf_unfiltered (file,
931 "gdbarch_dump: displaced_step_hw_singlestep = <%s>\n",
932 host_address_to_string (gdbarch->displaced_step_hw_singlestep));
933 fprintf_unfiltered (file,
934 "gdbarch_dump: displaced_step_location = <%s>\n",
935 host_address_to_string (gdbarch->displaced_step_location));
936 fprintf_unfiltered (file,
937 "gdbarch_dump: double_bit = %s\n",
938 plongest (gdbarch->double_bit));
939 fprintf_unfiltered (file,
940 "gdbarch_dump: double_format = %s\n",
941 pformat (gdbarch->double_format));
942 fprintf_unfiltered (file,
943 "gdbarch_dump: gdbarch_dtrace_disable_probe_p() = %d\n",
944 gdbarch_dtrace_disable_probe_p (gdbarch));
945 fprintf_unfiltered (file,
946 "gdbarch_dump: dtrace_disable_probe = <%s>\n",
947 host_address_to_string (gdbarch->dtrace_disable_probe));
948 fprintf_unfiltered (file,
949 "gdbarch_dump: gdbarch_dtrace_enable_probe_p() = %d\n",
950 gdbarch_dtrace_enable_probe_p (gdbarch));
951 fprintf_unfiltered (file,
952 "gdbarch_dump: dtrace_enable_probe = <%s>\n",
953 host_address_to_string (gdbarch->dtrace_enable_probe));
954 fprintf_unfiltered (file,
955 "gdbarch_dump: gdbarch_dtrace_parse_probe_argument_p() = %d\n",
956 gdbarch_dtrace_parse_probe_argument_p (gdbarch));
957 fprintf_unfiltered (file,
958 "gdbarch_dump: dtrace_parse_probe_argument = <%s>\n",
959 host_address_to_string (gdbarch->dtrace_parse_probe_argument));
960 fprintf_unfiltered (file,
961 "gdbarch_dump: gdbarch_dtrace_probe_is_enabled_p() = %d\n",
962 gdbarch_dtrace_probe_is_enabled_p (gdbarch));
963 fprintf_unfiltered (file,
964 "gdbarch_dump: dtrace_probe_is_enabled = <%s>\n",
965 host_address_to_string (gdbarch->dtrace_probe_is_enabled));
966 fprintf_unfiltered (file,
967 "gdbarch_dump: dummy_id = <%s>\n",
968 host_address_to_string (gdbarch->dummy_id));
969 fprintf_unfiltered (file,
970 "gdbarch_dump: dwarf2_addr_size = %s\n",
971 plongest (gdbarch->dwarf2_addr_size));
972 fprintf_unfiltered (file,
973 "gdbarch_dump: dwarf2_reg_to_regnum = <%s>\n",
974 host_address_to_string (gdbarch->dwarf2_reg_to_regnum));
975 fprintf_unfiltered (file,
976 "gdbarch_dump: ecoff_reg_to_regnum = <%s>\n",
977 host_address_to_string (gdbarch->ecoff_reg_to_regnum));
978 fprintf_unfiltered (file,
979 "gdbarch_dump: gdbarch_elf_make_msymbol_special_p() = %d\n",
980 gdbarch_elf_make_msymbol_special_p (gdbarch));
981 fprintf_unfiltered (file,
982 "gdbarch_dump: elf_make_msymbol_special = <%s>\n",
983 host_address_to_string (gdbarch->elf_make_msymbol_special));
984 fprintf_unfiltered (file,
985 "gdbarch_dump: execute_dwarf_cfa_vendor_op = <%s>\n",
986 host_address_to_string (gdbarch->execute_dwarf_cfa_vendor_op));
987 fprintf_unfiltered (file,
988 "gdbarch_dump: fast_tracepoint_valid_at = <%s>\n",
989 host_address_to_string (gdbarch->fast_tracepoint_valid_at));
990 fprintf_unfiltered (file,
991 "gdbarch_dump: gdbarch_fetch_pointer_argument_p() = %d\n",
992 gdbarch_fetch_pointer_argument_p (gdbarch));
993 fprintf_unfiltered (file,
994 "gdbarch_dump: fetch_pointer_argument = <%s>\n",
995 host_address_to_string (gdbarch->fetch_pointer_argument));
996 fprintf_unfiltered (file,
997 "gdbarch_dump: gdbarch_fetch_tls_load_module_address_p() = %d\n",
998 gdbarch_fetch_tls_load_module_address_p (gdbarch));
999 fprintf_unfiltered (file,
1000 "gdbarch_dump: fetch_tls_load_module_address = <%s>\n",
1001 host_address_to_string (gdbarch->fetch_tls_load_module_address));
1002 fprintf_unfiltered (file,
1003 "gdbarch_dump: gdbarch_find_memory_regions_p() = %d\n",
1004 gdbarch_find_memory_regions_p (gdbarch));
1005 fprintf_unfiltered (file,
1006 "gdbarch_dump: find_memory_regions = <%s>\n",
1007 host_address_to_string (gdbarch->find_memory_regions));
1008 fprintf_unfiltered (file,
1009 "gdbarch_dump: float_bit = %s\n",
1010 plongest (gdbarch->float_bit));
1011 fprintf_unfiltered (file,
1012 "gdbarch_dump: float_format = %s\n",
1013 pformat (gdbarch->float_format));
1014 fprintf_unfiltered (file,
1015 "gdbarch_dump: floatformat_for_type = <%s>\n",
1016 host_address_to_string (gdbarch->floatformat_for_type));
1017 fprintf_unfiltered (file,
1018 "gdbarch_dump: fp0_regnum = %s\n",
1019 plongest (gdbarch->fp0_regnum));
1020 fprintf_unfiltered (file,
1021 "gdbarch_dump: gdbarch_frame_align_p() = %d\n",
1022 gdbarch_frame_align_p (gdbarch));
1023 fprintf_unfiltered (file,
1024 "gdbarch_dump: frame_align = <%s>\n",
1025 host_address_to_string (gdbarch->frame_align));
1026 fprintf_unfiltered (file,
1027 "gdbarch_dump: frame_args_skip = %s\n",
1028 core_addr_to_string_nz (gdbarch->frame_args_skip));
1029 fprintf_unfiltered (file,
1030 "gdbarch_dump: gdbarch_frame_num_args_p() = %d\n",
1031 gdbarch_frame_num_args_p (gdbarch));
1032 fprintf_unfiltered (file,
1033 "gdbarch_dump: frame_num_args = <%s>\n",
1034 host_address_to_string (gdbarch->frame_num_args));
1035 fprintf_unfiltered (file,
1036 "gdbarch_dump: frame_red_zone_size = %s\n",
1037 plongest (gdbarch->frame_red_zone_size));
1038 fprintf_unfiltered (file,
1039 "gdbarch_dump: gcc_target_options = <%s>\n",
1040 host_address_to_string (gdbarch->gcc_target_options));
1041 fprintf_unfiltered (file,
1042 "gdbarch_dump: gdbarch_gcore_bfd_target_p() = %d\n",
1043 gdbarch_gcore_bfd_target_p (gdbarch));
1044 fprintf_unfiltered (file,
1045 "gdbarch_dump: gcore_bfd_target = %s\n",
1046 pstring (gdbarch->gcore_bfd_target));
1047 fprintf_unfiltered (file,
1048 "gdbarch_dump: gdbarch_gdb_signal_from_target_p() = %d\n",
1049 gdbarch_gdb_signal_from_target_p (gdbarch));
1050 fprintf_unfiltered (file,
1051 "gdbarch_dump: gdb_signal_from_target = <%s>\n",
1052 host_address_to_string (gdbarch->gdb_signal_from_target));
1053 fprintf_unfiltered (file,
1054 "gdbarch_dump: gdbarch_gdb_signal_to_target_p() = %d\n",
1055 gdbarch_gdb_signal_to_target_p (gdbarch));
1056 fprintf_unfiltered (file,
1057 "gdbarch_dump: gdb_signal_to_target = <%s>\n",
1058 host_address_to_string (gdbarch->gdb_signal_to_target));
1059 fprintf_unfiltered (file,
1060 "gdbarch_dump: gen_return_address = <%s>\n",
1061 host_address_to_string (gdbarch->gen_return_address));
1062 fprintf_unfiltered (file,
1063 "gdbarch_dump: gdbarch_get_longjmp_target_p() = %d\n",
1064 gdbarch_get_longjmp_target_p (gdbarch));
1065 fprintf_unfiltered (file,
1066 "gdbarch_dump: get_longjmp_target = <%s>\n",
1067 host_address_to_string (gdbarch->get_longjmp_target));
1068 fprintf_unfiltered (file,
1069 "gdbarch_dump: get_pc_address_flags = <%s>\n",
1070 host_address_to_string (gdbarch->get_pc_address_flags));
1071 fprintf_unfiltered (file,
1072 "gdbarch_dump: gdbarch_get_siginfo_type_p() = %d\n",
1073 gdbarch_get_siginfo_type_p (gdbarch));
1074 fprintf_unfiltered (file,
1075 "gdbarch_dump: get_siginfo_type = <%s>\n",
1076 host_address_to_string (gdbarch->get_siginfo_type));
1077 fprintf_unfiltered (file,
1078 "gdbarch_dump: gdbarch_get_syscall_number_p() = %d\n",
1079 gdbarch_get_syscall_number_p (gdbarch));
1080 fprintf_unfiltered (file,
1081 "gdbarch_dump: get_syscall_number = <%s>\n",
1082 host_address_to_string (gdbarch->get_syscall_number));
1083 fprintf_unfiltered (file,
1084 "gdbarch_dump: gdbarch_get_thread_local_address_p() = %d\n",
1085 gdbarch_get_thread_local_address_p (gdbarch));
1086 fprintf_unfiltered (file,
1087 "gdbarch_dump: get_thread_local_address = <%s>\n",
1088 host_address_to_string (gdbarch->get_thread_local_address));
1089 fprintf_unfiltered (file,
1090 "gdbarch_dump: gnu_triplet_regexp = <%s>\n",
1091 host_address_to_string (gdbarch->gnu_triplet_regexp));
1092 fprintf_unfiltered (file,
1093 "gdbarch_dump: guess_tracepoint_registers = <%s>\n",
1094 host_address_to_string (gdbarch->guess_tracepoint_registers));
1095 fprintf_unfiltered (file,
1096 "gdbarch_dump: half_bit = %s\n",
1097 plongest (gdbarch->half_bit));
1098 fprintf_unfiltered (file,
1099 "gdbarch_dump: half_format = %s\n",
1100 pformat (gdbarch->half_format));
1101 fprintf_unfiltered (file,
1102 "gdbarch_dump: gdbarch_handle_segmentation_fault_p() = %d\n",
1103 gdbarch_handle_segmentation_fault_p (gdbarch));
1104 fprintf_unfiltered (file,
1105 "gdbarch_dump: handle_segmentation_fault = <%s>\n",
1106 host_address_to_string (gdbarch->handle_segmentation_fault));
1107 fprintf_unfiltered (file,
1108 "gdbarch_dump: has_dos_based_file_system = %s\n",
1109 plongest (gdbarch->has_dos_based_file_system));
1110 fprintf_unfiltered (file,
1111 "gdbarch_dump: has_global_breakpoints = %s\n",
1112 plongest (gdbarch->has_global_breakpoints));
1113 fprintf_unfiltered (file,
1114 "gdbarch_dump: has_global_solist = %s\n",
1115 plongest (gdbarch->has_global_solist));
1116 fprintf_unfiltered (file,
1117 "gdbarch_dump: has_shared_address_space = <%s>\n",
1118 host_address_to_string (gdbarch->has_shared_address_space));
1119 fprintf_unfiltered (file,
1120 "gdbarch_dump: have_nonsteppable_watchpoint = %s\n",
1121 plongest (gdbarch->have_nonsteppable_watchpoint));
1122 fprintf_unfiltered (file,
1123 "gdbarch_dump: in_indirect_branch_thunk = <%s>\n",
1124 host_address_to_string (gdbarch->in_indirect_branch_thunk));
1125 fprintf_unfiltered (file,
1126 "gdbarch_dump: in_solib_return_trampoline = <%s>\n",
1127 host_address_to_string (gdbarch->in_solib_return_trampoline));
1128 fprintf_unfiltered (file,
1129 "gdbarch_dump: infcall_mmap = <%s>\n",
1130 host_address_to_string (gdbarch->infcall_mmap));
1131 fprintf_unfiltered (file,
1132 "gdbarch_dump: infcall_munmap = <%s>\n",
1133 host_address_to_string (gdbarch->infcall_munmap));
1134 fprintf_unfiltered (file,
1135 "gdbarch_dump: gdbarch_info_proc_p() = %d\n",
1136 gdbarch_info_proc_p (gdbarch));
1137 fprintf_unfiltered (file,
1138 "gdbarch_dump: info_proc = <%s>\n",
1139 host_address_to_string (gdbarch->info_proc));
1140 fprintf_unfiltered (file,
1141 "gdbarch_dump: inner_than = <%s>\n",
1142 host_address_to_string (gdbarch->inner_than));
1143 fprintf_unfiltered (file,
1144 "gdbarch_dump: insn_is_call = <%s>\n",
1145 host_address_to_string (gdbarch->insn_is_call));
1146 fprintf_unfiltered (file,
1147 "gdbarch_dump: insn_is_jump = <%s>\n",
1148 host_address_to_string (gdbarch->insn_is_jump));
1149 fprintf_unfiltered (file,
1150 "gdbarch_dump: insn_is_ret = <%s>\n",
1151 host_address_to_string (gdbarch->insn_is_ret));
1152 fprintf_unfiltered (file,
1153 "gdbarch_dump: int_bit = %s\n",
1154 plongest (gdbarch->int_bit));
1155 fprintf_unfiltered (file,
1156 "gdbarch_dump: gdbarch_integer_to_address_p() = %d\n",
1157 gdbarch_integer_to_address_p (gdbarch));
1158 fprintf_unfiltered (file,
1159 "gdbarch_dump: integer_to_address = <%s>\n",
1160 host_address_to_string (gdbarch->integer_to_address));
1161 fprintf_unfiltered (file,
1162 "gdbarch_dump: iterate_over_objfiles_in_search_order = <%s>\n",
1163 host_address_to_string (gdbarch->iterate_over_objfiles_in_search_order));
1164 fprintf_unfiltered (file,
1165 "gdbarch_dump: gdbarch_iterate_over_regset_sections_p() = %d\n",
1166 gdbarch_iterate_over_regset_sections_p (gdbarch));
1167 fprintf_unfiltered (file,
1168 "gdbarch_dump: iterate_over_regset_sections = <%s>\n",
1169 host_address_to_string (gdbarch->iterate_over_regset_sections));
1170 fprintf_unfiltered (file,
1171 "gdbarch_dump: long_bit = %s\n",
1172 plongest (gdbarch->long_bit));
1173 fprintf_unfiltered (file,
1174 "gdbarch_dump: long_double_bit = %s\n",
1175 plongest (gdbarch->long_double_bit));
1176 fprintf_unfiltered (file,
1177 "gdbarch_dump: long_double_format = %s\n",
1178 pformat (gdbarch->long_double_format));
1179 fprintf_unfiltered (file,
1180 "gdbarch_dump: long_long_bit = %s\n",
1181 plongest (gdbarch->long_long_bit));
1182 fprintf_unfiltered (file,
1183 "gdbarch_dump: gdbarch_make_corefile_notes_p() = %d\n",
1184 gdbarch_make_corefile_notes_p (gdbarch));
1185 fprintf_unfiltered (file,
1186 "gdbarch_dump: make_corefile_notes = <%s>\n",
1187 host_address_to_string (gdbarch->make_corefile_notes));
1188 fprintf_unfiltered (file,
1189 "gdbarch_dump: make_symbol_special = <%s>\n",
1190 host_address_to_string (gdbarch->make_symbol_special));
1191 fprintf_unfiltered (file,
1192 "gdbarch_dump: gdbarch_max_insn_length_p() = %d\n",
1193 gdbarch_max_insn_length_p (gdbarch));
1194 fprintf_unfiltered (file,
1195 "gdbarch_dump: max_insn_length = %s\n",
1196 plongest (gdbarch->max_insn_length));
1197 fprintf_unfiltered (file,
1198 "gdbarch_dump: memory_insert_breakpoint = <%s>\n",
1199 host_address_to_string (gdbarch->memory_insert_breakpoint));
1200 fprintf_unfiltered (file,
1201 "gdbarch_dump: memory_remove_breakpoint = <%s>\n",
1202 host_address_to_string (gdbarch->memory_remove_breakpoint));
1203 fprintf_unfiltered (file,
1204 "gdbarch_dump: num_pseudo_regs = %s\n",
1205 plongest (gdbarch->num_pseudo_regs));
1206 fprintf_unfiltered (file,
1207 "gdbarch_dump: num_regs = %s\n",
1208 plongest (gdbarch->num_regs));
1209 fprintf_unfiltered (file,
1210 "gdbarch_dump: osabi = %s\n",
1211 plongest (gdbarch->osabi));
1212 fprintf_unfiltered (file,
1213 "gdbarch_dump: gdbarch_overlay_update_p() = %d\n",
1214 gdbarch_overlay_update_p (gdbarch));
1215 fprintf_unfiltered (file,
1216 "gdbarch_dump: overlay_update = <%s>\n",
1217 host_address_to_string (gdbarch->overlay_update));
1218 fprintf_unfiltered (file,
1219 "gdbarch_dump: pc_regnum = %s\n",
1220 plongest (gdbarch->pc_regnum));
1221 fprintf_unfiltered (file,
1222 "gdbarch_dump: pointer_to_address = <%s>\n",
1223 host_address_to_string (gdbarch->pointer_to_address));
1224 fprintf_unfiltered (file,
1225 "gdbarch_dump: print_auxv_entry = <%s>\n",
1226 host_address_to_string (gdbarch->print_auxv_entry));
1227 fprintf_unfiltered (file,
1228 "gdbarch_dump: print_float_info = <%s>\n",
1229 host_address_to_string (gdbarch->print_float_info));
1230 fprintf_unfiltered (file,
1231 "gdbarch_dump: print_insn = <%s>\n",
1232 host_address_to_string (gdbarch->print_insn));
1233 fprintf_unfiltered (file,
1234 "gdbarch_dump: print_registers_info = <%s>\n",
1235 host_address_to_string (gdbarch->print_registers_info));
1236 fprintf_unfiltered (file,
1237 "gdbarch_dump: gdbarch_print_vector_info_p() = %d\n",
1238 gdbarch_print_vector_info_p (gdbarch));
1239 fprintf_unfiltered (file,
1240 "gdbarch_dump: print_vector_info = <%s>\n",
1241 host_address_to_string (gdbarch->print_vector_info));
1242 fprintf_unfiltered (file,
1243 "gdbarch_dump: gdbarch_process_record_p() = %d\n",
1244 gdbarch_process_record_p (gdbarch));
1245 fprintf_unfiltered (file,
1246 "gdbarch_dump: process_record = <%s>\n",
1247 host_address_to_string (gdbarch->process_record));
1248 fprintf_unfiltered (file,
1249 "gdbarch_dump: gdbarch_process_record_signal_p() = %d\n",
1250 gdbarch_process_record_signal_p (gdbarch));
1251 fprintf_unfiltered (file,
1252 "gdbarch_dump: process_record_signal = <%s>\n",
1253 host_address_to_string (gdbarch->process_record_signal));
1254 fprintf_unfiltered (file,
1255 "gdbarch_dump: program_breakpoint_here_p = <%s>\n",
1256 host_address_to_string (gdbarch->program_breakpoint_here_p));
1257 fprintf_unfiltered (file,
1258 "gdbarch_dump: ps_regnum = %s\n",
1259 plongest (gdbarch->ps_regnum));
1260 fprintf_unfiltered (file,
1261 "gdbarch_dump: gdbarch_pseudo_register_read_p() = %d\n",
1262 gdbarch_pseudo_register_read_p (gdbarch));
1263 fprintf_unfiltered (file,
1264 "gdbarch_dump: pseudo_register_read = <%s>\n",
1265 host_address_to_string (gdbarch->pseudo_register_read));
1266 fprintf_unfiltered (file,
1267 "gdbarch_dump: gdbarch_pseudo_register_read_value_p() = %d\n",
1268 gdbarch_pseudo_register_read_value_p (gdbarch));
1269 fprintf_unfiltered (file,
1270 "gdbarch_dump: pseudo_register_read_value = <%s>\n",
1271 host_address_to_string (gdbarch->pseudo_register_read_value));
1272 fprintf_unfiltered (file,
1273 "gdbarch_dump: gdbarch_pseudo_register_write_p() = %d\n",
1274 gdbarch_pseudo_register_write_p (gdbarch));
1275 fprintf_unfiltered (file,
1276 "gdbarch_dump: pseudo_register_write = <%s>\n",
1277 host_address_to_string (gdbarch->pseudo_register_write));
1278 fprintf_unfiltered (file,
1279 "gdbarch_dump: ptr_bit = %s\n",
1280 plongest (gdbarch->ptr_bit));
1281 fprintf_unfiltered (file,
1282 "gdbarch_dump: gdbarch_push_dummy_call_p() = %d\n",
1283 gdbarch_push_dummy_call_p (gdbarch));
1284 fprintf_unfiltered (file,
1285 "gdbarch_dump: push_dummy_call = <%s>\n",
1286 host_address_to_string (gdbarch->push_dummy_call));
1287 fprintf_unfiltered (file,
1288 "gdbarch_dump: gdbarch_push_dummy_code_p() = %d\n",
1289 gdbarch_push_dummy_code_p (gdbarch));
1290 fprintf_unfiltered (file,
1291 "gdbarch_dump: push_dummy_code = <%s>\n",
1292 host_address_to_string (gdbarch->push_dummy_code));
1293 fprintf_unfiltered (file,
1294 "gdbarch_dump: ravenscar_ops = %s\n",
1295 host_address_to_string (gdbarch->ravenscar_ops));
1296 fprintf_unfiltered (file,
1297 "gdbarch_dump: gdbarch_read_pc_p() = %d\n",
1298 gdbarch_read_pc_p (gdbarch));
1299 fprintf_unfiltered (file,
1300 "gdbarch_dump: read_pc = <%s>\n",
1301 host_address_to_string (gdbarch->read_pc));
1302 fprintf_unfiltered (file,
1303 "gdbarch_dump: gdbarch_record_special_symbol_p() = %d\n",
1304 gdbarch_record_special_symbol_p (gdbarch));
1305 fprintf_unfiltered (file,
1306 "gdbarch_dump: record_special_symbol = <%s>\n",
1307 host_address_to_string (gdbarch->record_special_symbol));
1308 fprintf_unfiltered (file,
1309 "gdbarch_dump: register_name = <%s>\n",
1310 host_address_to_string (gdbarch->register_name));
1311 fprintf_unfiltered (file,
1312 "gdbarch_dump: register_reggroup_p = <%s>\n",
1313 host_address_to_string (gdbarch->register_reggroup_p));
1314 fprintf_unfiltered (file,
1315 "gdbarch_dump: register_sim_regno = <%s>\n",
1316 host_address_to_string (gdbarch->register_sim_regno));
1317 fprintf_unfiltered (file,
1318 "gdbarch_dump: register_to_value = <%s>\n",
1319 host_address_to_string (gdbarch->register_to_value));
1320 fprintf_unfiltered (file,
1321 "gdbarch_dump: gdbarch_register_type_p() = %d\n",
1322 gdbarch_register_type_p (gdbarch));
1323 fprintf_unfiltered (file,
1324 "gdbarch_dump: register_type = <%s>\n",
1325 host_address_to_string (gdbarch->register_type));
1326 fprintf_unfiltered (file,
1327 "gdbarch_dump: gdbarch_relocate_instruction_p() = %d\n",
1328 gdbarch_relocate_instruction_p (gdbarch));
1329 fprintf_unfiltered (file,
1330 "gdbarch_dump: relocate_instruction = <%s>\n",
1331 host_address_to_string (gdbarch->relocate_instruction));
1332 fprintf_unfiltered (file,
1333 "gdbarch_dump: remote_register_number = <%s>\n",
1334 host_address_to_string (gdbarch->remote_register_number));
1335 fprintf_unfiltered (file,
1336 "gdbarch_dump: return_in_first_hidden_param_p = <%s>\n",
1337 host_address_to_string (gdbarch->return_in_first_hidden_param_p));
1338 fprintf_unfiltered (file,
1339 "gdbarch_dump: gdbarch_return_value_p() = %d\n",
1340 gdbarch_return_value_p (gdbarch));
1341 fprintf_unfiltered (file,
1342 "gdbarch_dump: return_value = <%s>\n",
1343 host_address_to_string (gdbarch->return_value));
1344 fprintf_unfiltered (file,
1345 "gdbarch_dump: sdb_reg_to_regnum = <%s>\n",
1346 host_address_to_string (gdbarch->sdb_reg_to_regnum));
1347 fprintf_unfiltered (file,
1348 "gdbarch_dump: short_bit = %s\n",
1349 plongest (gdbarch->short_bit));
1350 fprintf_unfiltered (file,
1351 "gdbarch_dump: significant_addr_bit = %s\n",
1352 plongest (gdbarch->significant_addr_bit));
1353 fprintf_unfiltered (file,
1354 "gdbarch_dump: gdbarch_single_step_through_delay_p() = %d\n",
1355 gdbarch_single_step_through_delay_p (gdbarch));
1356 fprintf_unfiltered (file,
1357 "gdbarch_dump: single_step_through_delay = <%s>\n",
1358 host_address_to_string (gdbarch->single_step_through_delay));
1359 fprintf_unfiltered (file,
1360 "gdbarch_dump: gdbarch_skip_entrypoint_p() = %d\n",
1361 gdbarch_skip_entrypoint_p (gdbarch));
1362 fprintf_unfiltered (file,
1363 "gdbarch_dump: skip_entrypoint = <%s>\n",
1364 host_address_to_string (gdbarch->skip_entrypoint));
1365 fprintf_unfiltered (file,
1366 "gdbarch_dump: gdbarch_skip_main_prologue_p() = %d\n",
1367 gdbarch_skip_main_prologue_p (gdbarch));
1368 fprintf_unfiltered (file,
1369 "gdbarch_dump: skip_main_prologue = <%s>\n",
1370 host_address_to_string (gdbarch->skip_main_prologue));
1371 fprintf_unfiltered (file,
1372 "gdbarch_dump: skip_permanent_breakpoint = <%s>\n",
1373 host_address_to_string (gdbarch->skip_permanent_breakpoint));
1374 fprintf_unfiltered (file,
1375 "gdbarch_dump: skip_prologue = <%s>\n",
1376 host_address_to_string (gdbarch->skip_prologue));
1377 fprintf_unfiltered (file,
1378 "gdbarch_dump: skip_solib_resolver = <%s>\n",
1379 host_address_to_string (gdbarch->skip_solib_resolver));
1380 fprintf_unfiltered (file,
1381 "gdbarch_dump: skip_trampoline_code = <%s>\n",
1382 host_address_to_string (gdbarch->skip_trampoline_code));
1383 fprintf_unfiltered (file,
1384 "gdbarch_dump: gdbarch_software_single_step_p() = %d\n",
1385 gdbarch_software_single_step_p (gdbarch));
1386 fprintf_unfiltered (file,
1387 "gdbarch_dump: software_single_step = <%s>\n",
1388 host_address_to_string (gdbarch->software_single_step));
1389 fprintf_unfiltered (file,
1390 "gdbarch_dump: sofun_address_maybe_missing = %s\n",
1391 plongest (gdbarch->sofun_address_maybe_missing));
1392 fprintf_unfiltered (file,
1393 "gdbarch_dump: solib_symbols_extension = %s\n",
1394 pstring (gdbarch->solib_symbols_extension));
1395 fprintf_unfiltered (file,
1396 "gdbarch_dump: sp_regnum = %s\n",
1397 plongest (gdbarch->sp_regnum));
1398 fprintf_unfiltered (file,
1399 "gdbarch_dump: stab_reg_to_regnum = <%s>\n",
1400 host_address_to_string (gdbarch->stab_reg_to_regnum));
1401 fprintf_unfiltered (file,
1402 "gdbarch_dump: stabs_argument_has_addr = <%s>\n",
1403 host_address_to_string (gdbarch->stabs_argument_has_addr));
1404 fprintf_unfiltered (file,
1405 "gdbarch_dump: stack_frame_destroyed_p = <%s>\n",
1406 host_address_to_string (gdbarch->stack_frame_destroyed_p));
1407 fprintf_unfiltered (file,
1408 "gdbarch_dump: gdbarch_stap_adjust_register_p() = %d\n",
1409 gdbarch_stap_adjust_register_p (gdbarch));
1410 fprintf_unfiltered (file,
1411 "gdbarch_dump: stap_adjust_register = <%s>\n",
1412 host_address_to_string (gdbarch->stap_adjust_register));
1413 fprintf_unfiltered (file,
1414 "gdbarch_dump: stap_gdb_register_prefix = %s\n",
1415 pstring (gdbarch->stap_gdb_register_prefix));
1416 fprintf_unfiltered (file,
1417 "gdbarch_dump: stap_gdb_register_suffix = %s\n",
1418 pstring (gdbarch->stap_gdb_register_suffix));
1419 fprintf_unfiltered (file,
1420 "gdbarch_dump: stap_integer_prefixes = %s\n",
1421 pstring_list (gdbarch->stap_integer_prefixes));
1422 fprintf_unfiltered (file,
1423 "gdbarch_dump: stap_integer_suffixes = %s\n",
1424 pstring_list (gdbarch->stap_integer_suffixes));
1425 fprintf_unfiltered (file,
1426 "gdbarch_dump: gdbarch_stap_is_single_operand_p() = %d\n",
1427 gdbarch_stap_is_single_operand_p (gdbarch));
1428 fprintf_unfiltered (file,
1429 "gdbarch_dump: stap_is_single_operand = <%s>\n",
1430 host_address_to_string (gdbarch->stap_is_single_operand));
1431 fprintf_unfiltered (file,
1432 "gdbarch_dump: gdbarch_stap_parse_special_token_p() = %d\n",
1433 gdbarch_stap_parse_special_token_p (gdbarch));
1434 fprintf_unfiltered (file,
1435 "gdbarch_dump: stap_parse_special_token = <%s>\n",
1436 host_address_to_string (gdbarch->stap_parse_special_token));
1437 fprintf_unfiltered (file,
1438 "gdbarch_dump: stap_register_indirection_prefixes = %s\n",
1439 pstring_list (gdbarch->stap_register_indirection_prefixes));
1440 fprintf_unfiltered (file,
1441 "gdbarch_dump: stap_register_indirection_suffixes = %s\n",
1442 pstring_list (gdbarch->stap_register_indirection_suffixes));
1443 fprintf_unfiltered (file,
1444 "gdbarch_dump: stap_register_prefixes = %s\n",
1445 pstring_list (gdbarch->stap_register_prefixes));
1446 fprintf_unfiltered (file,
1447 "gdbarch_dump: stap_register_suffixes = %s\n",
1448 pstring_list (gdbarch->stap_register_suffixes));
1449 fprintf_unfiltered (file,
1450 "gdbarch_dump: gdbarch_static_transform_name_p() = %d\n",
1451 gdbarch_static_transform_name_p (gdbarch));
1452 fprintf_unfiltered (file,
1453 "gdbarch_dump: static_transform_name = <%s>\n",
1454 host_address_to_string (gdbarch->static_transform_name));
1455 fprintf_unfiltered (file,
1456 "gdbarch_dump: sw_breakpoint_from_kind = <%s>\n",
1457 host_address_to_string (gdbarch->sw_breakpoint_from_kind));
1458 fprintf_unfiltered (file,
1459 "gdbarch_dump: syscalls_info = %s\n",
1460 host_address_to_string (gdbarch->syscalls_info));
1461 fprintf_unfiltered (file,
1462 "gdbarch_dump: target_desc = %s\n",
1463 host_address_to_string (gdbarch->target_desc));
1464 fprintf_unfiltered (file,
1465 "gdbarch_dump: type_align = <%s>\n",
1466 host_address_to_string (gdbarch->type_align));
1467 fprintf_unfiltered (file,
1468 "gdbarch_dump: unwind_pc = <%s>\n",
1469 host_address_to_string (gdbarch->unwind_pc));
1470 fprintf_unfiltered (file,
1471 "gdbarch_dump: unwind_sp = <%s>\n",
1472 host_address_to_string (gdbarch->unwind_sp));
1473 fprintf_unfiltered (file,
1474 "gdbarch_dump: valid_disassembler_options = %s\n",
1475 host_address_to_string (gdbarch->valid_disassembler_options));
1476 fprintf_unfiltered (file,
1477 "gdbarch_dump: value_from_register = <%s>\n",
1478 host_address_to_string (gdbarch->value_from_register));
1479 fprintf_unfiltered (file,
1480 "gdbarch_dump: value_to_register = <%s>\n",
1481 host_address_to_string (gdbarch->value_to_register));
1482 fprintf_unfiltered (file,
1483 "gdbarch_dump: vbit_in_delta = %s\n",
1484 plongest (gdbarch->vbit_in_delta));
1485 fprintf_unfiltered (file,
1486 "gdbarch_dump: virtual_frame_pointer = <%s>\n",
1487 host_address_to_string (gdbarch->virtual_frame_pointer));
1488 fprintf_unfiltered (file,
1489 "gdbarch_dump: vsyscall_range = <%s>\n",
1490 host_address_to_string (gdbarch->vsyscall_range));
1491 fprintf_unfiltered (file,
1492 "gdbarch_dump: vtable_function_descriptors = %s\n",
1493 plongest (gdbarch->vtable_function_descriptors));
1494 fprintf_unfiltered (file,
1495 "gdbarch_dump: wchar_bit = %s\n",
1496 plongest (gdbarch->wchar_bit));
1497 fprintf_unfiltered (file,
1498 "gdbarch_dump: wchar_signed = %s\n",
1499 plongest (gdbarch->wchar_signed));
1500 fprintf_unfiltered (file,
1501 "gdbarch_dump: gdbarch_write_pc_p() = %d\n",
1502 gdbarch_write_pc_p (gdbarch));
1503 fprintf_unfiltered (file,
1504 "gdbarch_dump: write_pc = <%s>\n",
1505 host_address_to_string (gdbarch->write_pc));
1506 fprintf_unfiltered (file,
1507 "gdbarch_dump: xml_syscall_file = %s\n",
1508 pstring (gdbarch->xml_syscall_file));
1509 if (gdbarch->dump_tdep != NULL)
1510 gdbarch->dump_tdep (gdbarch, file);
1511 }
1512
1513 struct gdbarch_tdep *
1514 gdbarch_tdep (struct gdbarch *gdbarch)
1515 {
1516 if (gdbarch_debug >= 2)
1517 fprintf_unfiltered (gdb_stdlog, "gdbarch_tdep called\n");
1518 return gdbarch->tdep;
1519 }
1520
1521
1522 const struct bfd_arch_info *
1523 gdbarch_bfd_arch_info (struct gdbarch *gdbarch)
1524 {
1525 gdb_assert (gdbarch != NULL);
1526 if (gdbarch_debug >= 2)
1527 fprintf_unfiltered (gdb_stdlog, "gdbarch_bfd_arch_info called\n");
1528 return gdbarch->bfd_arch_info;
1529 }
1530
1531 enum bfd_endian
1532 gdbarch_byte_order (struct gdbarch *gdbarch)
1533 {
1534 gdb_assert (gdbarch != NULL);
1535 if (gdbarch_debug >= 2)
1536 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order called\n");
1537 return gdbarch->byte_order;
1538 }
1539
1540 enum bfd_endian
1541 gdbarch_byte_order_for_code (struct gdbarch *gdbarch)
1542 {
1543 gdb_assert (gdbarch != NULL);
1544 if (gdbarch_debug >= 2)
1545 fprintf_unfiltered (gdb_stdlog, "gdbarch_byte_order_for_code called\n");
1546 return gdbarch->byte_order_for_code;
1547 }
1548
1549 enum gdb_osabi
1550 gdbarch_osabi (struct gdbarch *gdbarch)
1551 {
1552 gdb_assert (gdbarch != NULL);
1553 if (gdbarch_debug >= 2)
1554 fprintf_unfiltered (gdb_stdlog, "gdbarch_osabi called\n");
1555 return gdbarch->osabi;
1556 }
1557
1558 const struct target_desc *
1559 gdbarch_target_desc (struct gdbarch *gdbarch)
1560 {
1561 gdb_assert (gdbarch != NULL);
1562 if (gdbarch_debug >= 2)
1563 fprintf_unfiltered (gdb_stdlog, "gdbarch_target_desc called\n");
1564 return gdbarch->target_desc;
1565 }
1566
1567 int
1568 gdbarch_short_bit (struct gdbarch *gdbarch)
1569 {
1570 gdb_assert (gdbarch != NULL);
1571 /* Skip verify of short_bit, invalid_p == 0 */
1572 if (gdbarch_debug >= 2)
1573 fprintf_unfiltered (gdb_stdlog, "gdbarch_short_bit called\n");
1574 return gdbarch->short_bit;
1575 }
1576
1577 void
1578 set_gdbarch_short_bit (struct gdbarch *gdbarch,
1579 int short_bit)
1580 {
1581 gdbarch->short_bit = short_bit;
1582 }
1583
1584 int
1585 gdbarch_int_bit (struct gdbarch *gdbarch)
1586 {
1587 gdb_assert (gdbarch != NULL);
1588 /* Skip verify of int_bit, invalid_p == 0 */
1589 if (gdbarch_debug >= 2)
1590 fprintf_unfiltered (gdb_stdlog, "gdbarch_int_bit called\n");
1591 return gdbarch->int_bit;
1592 }
1593
1594 void
1595 set_gdbarch_int_bit (struct gdbarch *gdbarch,
1596 int int_bit)
1597 {
1598 gdbarch->int_bit = int_bit;
1599 }
1600
1601 int
1602 gdbarch_long_bit (struct gdbarch *gdbarch)
1603 {
1604 gdb_assert (gdbarch != NULL);
1605 /* Skip verify of long_bit, invalid_p == 0 */
1606 if (gdbarch_debug >= 2)
1607 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_bit called\n");
1608 return gdbarch->long_bit;
1609 }
1610
1611 void
1612 set_gdbarch_long_bit (struct gdbarch *gdbarch,
1613 int long_bit)
1614 {
1615 gdbarch->long_bit = long_bit;
1616 }
1617
1618 int
1619 gdbarch_long_long_bit (struct gdbarch *gdbarch)
1620 {
1621 gdb_assert (gdbarch != NULL);
1622 /* Skip verify of long_long_bit, invalid_p == 0 */
1623 if (gdbarch_debug >= 2)
1624 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_long_bit called\n");
1625 return gdbarch->long_long_bit;
1626 }
1627
1628 void
1629 set_gdbarch_long_long_bit (struct gdbarch *gdbarch,
1630 int long_long_bit)
1631 {
1632 gdbarch->long_long_bit = long_long_bit;
1633 }
1634
1635 int
1636 gdbarch_half_bit (struct gdbarch *gdbarch)
1637 {
1638 gdb_assert (gdbarch != NULL);
1639 /* Skip verify of half_bit, invalid_p == 0 */
1640 if (gdbarch_debug >= 2)
1641 fprintf_unfiltered (gdb_stdlog, "gdbarch_half_bit called\n");
1642 return gdbarch->half_bit;
1643 }
1644
1645 void
1646 set_gdbarch_half_bit (struct gdbarch *gdbarch,
1647 int half_bit)
1648 {
1649 gdbarch->half_bit = half_bit;
1650 }
1651
1652 const struct floatformat **
1653 gdbarch_half_format (struct gdbarch *gdbarch)
1654 {
1655 gdb_assert (gdbarch != NULL);
1656 if (gdbarch_debug >= 2)
1657 fprintf_unfiltered (gdb_stdlog, "gdbarch_half_format called\n");
1658 return gdbarch->half_format;
1659 }
1660
1661 void
1662 set_gdbarch_half_format (struct gdbarch *gdbarch,
1663 const struct floatformat ** half_format)
1664 {
1665 gdbarch->half_format = half_format;
1666 }
1667
1668 int
1669 gdbarch_float_bit (struct gdbarch *gdbarch)
1670 {
1671 gdb_assert (gdbarch != NULL);
1672 /* Skip verify of float_bit, invalid_p == 0 */
1673 if (gdbarch_debug >= 2)
1674 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_bit called\n");
1675 return gdbarch->float_bit;
1676 }
1677
1678 void
1679 set_gdbarch_float_bit (struct gdbarch *gdbarch,
1680 int float_bit)
1681 {
1682 gdbarch->float_bit = float_bit;
1683 }
1684
1685 const struct floatformat **
1686 gdbarch_float_format (struct gdbarch *gdbarch)
1687 {
1688 gdb_assert (gdbarch != NULL);
1689 if (gdbarch_debug >= 2)
1690 fprintf_unfiltered (gdb_stdlog, "gdbarch_float_format called\n");
1691 return gdbarch->float_format;
1692 }
1693
1694 void
1695 set_gdbarch_float_format (struct gdbarch *gdbarch,
1696 const struct floatformat ** float_format)
1697 {
1698 gdbarch->float_format = float_format;
1699 }
1700
1701 int
1702 gdbarch_double_bit (struct gdbarch *gdbarch)
1703 {
1704 gdb_assert (gdbarch != NULL);
1705 /* Skip verify of double_bit, invalid_p == 0 */
1706 if (gdbarch_debug >= 2)
1707 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_bit called\n");
1708 return gdbarch->double_bit;
1709 }
1710
1711 void
1712 set_gdbarch_double_bit (struct gdbarch *gdbarch,
1713 int double_bit)
1714 {
1715 gdbarch->double_bit = double_bit;
1716 }
1717
1718 const struct floatformat **
1719 gdbarch_double_format (struct gdbarch *gdbarch)
1720 {
1721 gdb_assert (gdbarch != NULL);
1722 if (gdbarch_debug >= 2)
1723 fprintf_unfiltered (gdb_stdlog, "gdbarch_double_format called\n");
1724 return gdbarch->double_format;
1725 }
1726
1727 void
1728 set_gdbarch_double_format (struct gdbarch *gdbarch,
1729 const struct floatformat ** double_format)
1730 {
1731 gdbarch->double_format = double_format;
1732 }
1733
1734 int
1735 gdbarch_long_double_bit (struct gdbarch *gdbarch)
1736 {
1737 gdb_assert (gdbarch != NULL);
1738 /* Skip verify of long_double_bit, invalid_p == 0 */
1739 if (gdbarch_debug >= 2)
1740 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_bit called\n");
1741 return gdbarch->long_double_bit;
1742 }
1743
1744 void
1745 set_gdbarch_long_double_bit (struct gdbarch *gdbarch,
1746 int long_double_bit)
1747 {
1748 gdbarch->long_double_bit = long_double_bit;
1749 }
1750
1751 const struct floatformat **
1752 gdbarch_long_double_format (struct gdbarch *gdbarch)
1753 {
1754 gdb_assert (gdbarch != NULL);
1755 if (gdbarch_debug >= 2)
1756 fprintf_unfiltered (gdb_stdlog, "gdbarch_long_double_format called\n");
1757 return gdbarch->long_double_format;
1758 }
1759
1760 void
1761 set_gdbarch_long_double_format (struct gdbarch *gdbarch,
1762 const struct floatformat ** long_double_format)
1763 {
1764 gdbarch->long_double_format = long_double_format;
1765 }
1766
1767 int
1768 gdbarch_wchar_bit (struct gdbarch *gdbarch)
1769 {
1770 gdb_assert (gdbarch != NULL);
1771 /* Skip verify of wchar_bit, invalid_p == 0 */
1772 if (gdbarch_debug >= 2)
1773 fprintf_unfiltered (gdb_stdlog, "gdbarch_wchar_bit called\n");
1774 return gdbarch->wchar_bit;
1775 }
1776
1777 void
1778 set_gdbarch_wchar_bit (struct gdbarch *gdbarch,
1779 int wchar_bit)
1780 {
1781 gdbarch->wchar_bit = wchar_bit;
1782 }
1783
1784 int
1785 gdbarch_wchar_signed (struct gdbarch *gdbarch)
1786 {
1787 gdb_assert (gdbarch != NULL);
1788 /* Check variable changed from pre-default. */
1789 gdb_assert (gdbarch->wchar_signed != -1);
1790 if (gdbarch_debug >= 2)
1791 fprintf_unfiltered (gdb_stdlog, "gdbarch_wchar_signed called\n");
1792 return gdbarch->wchar_signed;
1793 }
1794
1795 void
1796 set_gdbarch_wchar_signed (struct gdbarch *gdbarch,
1797 int wchar_signed)
1798 {
1799 gdbarch->wchar_signed = wchar_signed;
1800 }
1801
1802 const struct floatformat **
1803 gdbarch_floatformat_for_type (struct gdbarch *gdbarch, const char *name, int length)
1804 {
1805 gdb_assert (gdbarch != NULL);
1806 gdb_assert (gdbarch->floatformat_for_type != NULL);
1807 if (gdbarch_debug >= 2)
1808 fprintf_unfiltered (gdb_stdlog, "gdbarch_floatformat_for_type called\n");
1809 return gdbarch->floatformat_for_type (gdbarch, name, length);
1810 }
1811
1812 void
1813 set_gdbarch_floatformat_for_type (struct gdbarch *gdbarch,
1814 gdbarch_floatformat_for_type_ftype floatformat_for_type)
1815 {
1816 gdbarch->floatformat_for_type = floatformat_for_type;
1817 }
1818
1819 int
1820 gdbarch_ptr_bit (struct gdbarch *gdbarch)
1821 {
1822 gdb_assert (gdbarch != NULL);
1823 /* Skip verify of ptr_bit, invalid_p == 0 */
1824 if (gdbarch_debug >= 2)
1825 fprintf_unfiltered (gdb_stdlog, "gdbarch_ptr_bit called\n");
1826 return gdbarch->ptr_bit;
1827 }
1828
1829 void
1830 set_gdbarch_ptr_bit (struct gdbarch *gdbarch,
1831 int ptr_bit)
1832 {
1833 gdbarch->ptr_bit = ptr_bit;
1834 }
1835
1836 int
1837 gdbarch_addr_bit (struct gdbarch *gdbarch)
1838 {
1839 gdb_assert (gdbarch != NULL);
1840 /* Check variable changed from pre-default. */
1841 gdb_assert (gdbarch->addr_bit != 0);
1842 if (gdbarch_debug >= 2)
1843 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bit called\n");
1844 return gdbarch->addr_bit;
1845 }
1846
1847 void
1848 set_gdbarch_addr_bit (struct gdbarch *gdbarch,
1849 int addr_bit)
1850 {
1851 gdbarch->addr_bit = addr_bit;
1852 }
1853
1854 int
1855 gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch)
1856 {
1857 gdb_assert (gdbarch != NULL);
1858 /* Check variable changed from pre-default. */
1859 gdb_assert (gdbarch->dwarf2_addr_size != 0);
1860 if (gdbarch_debug >= 2)
1861 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_addr_size called\n");
1862 return gdbarch->dwarf2_addr_size;
1863 }
1864
1865 void
1866 set_gdbarch_dwarf2_addr_size (struct gdbarch *gdbarch,
1867 int dwarf2_addr_size)
1868 {
1869 gdbarch->dwarf2_addr_size = dwarf2_addr_size;
1870 }
1871
1872 int
1873 gdbarch_char_signed (struct gdbarch *gdbarch)
1874 {
1875 gdb_assert (gdbarch != NULL);
1876 /* Check variable changed from pre-default. */
1877 gdb_assert (gdbarch->char_signed != -1);
1878 if (gdbarch_debug >= 2)
1879 fprintf_unfiltered (gdb_stdlog, "gdbarch_char_signed called\n");
1880 return gdbarch->char_signed;
1881 }
1882
1883 void
1884 set_gdbarch_char_signed (struct gdbarch *gdbarch,
1885 int char_signed)
1886 {
1887 gdbarch->char_signed = char_signed;
1888 }
1889
1890 int
1891 gdbarch_read_pc_p (struct gdbarch *gdbarch)
1892 {
1893 gdb_assert (gdbarch != NULL);
1894 return gdbarch->read_pc != NULL;
1895 }
1896
1897 CORE_ADDR
1898 gdbarch_read_pc (struct gdbarch *gdbarch, readable_regcache *regcache)
1899 {
1900 gdb_assert (gdbarch != NULL);
1901 gdb_assert (gdbarch->read_pc != NULL);
1902 if (gdbarch_debug >= 2)
1903 fprintf_unfiltered (gdb_stdlog, "gdbarch_read_pc called\n");
1904 return gdbarch->read_pc (regcache);
1905 }
1906
1907 void
1908 set_gdbarch_read_pc (struct gdbarch *gdbarch,
1909 gdbarch_read_pc_ftype read_pc)
1910 {
1911 gdbarch->read_pc = read_pc;
1912 }
1913
1914 int
1915 gdbarch_write_pc_p (struct gdbarch *gdbarch)
1916 {
1917 gdb_assert (gdbarch != NULL);
1918 return gdbarch->write_pc != NULL;
1919 }
1920
1921 void
1922 gdbarch_write_pc (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR val)
1923 {
1924 gdb_assert (gdbarch != NULL);
1925 gdb_assert (gdbarch->write_pc != NULL);
1926 if (gdbarch_debug >= 2)
1927 fprintf_unfiltered (gdb_stdlog, "gdbarch_write_pc called\n");
1928 gdbarch->write_pc (regcache, val);
1929 }
1930
1931 void
1932 set_gdbarch_write_pc (struct gdbarch *gdbarch,
1933 gdbarch_write_pc_ftype write_pc)
1934 {
1935 gdbarch->write_pc = write_pc;
1936 }
1937
1938 void
1939 gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, int *frame_regnum, LONGEST *frame_offset)
1940 {
1941 gdb_assert (gdbarch != NULL);
1942 gdb_assert (gdbarch->virtual_frame_pointer != NULL);
1943 if (gdbarch_debug >= 2)
1944 fprintf_unfiltered (gdb_stdlog, "gdbarch_virtual_frame_pointer called\n");
1945 gdbarch->virtual_frame_pointer (gdbarch, pc, frame_regnum, frame_offset);
1946 }
1947
1948 void
1949 set_gdbarch_virtual_frame_pointer (struct gdbarch *gdbarch,
1950 gdbarch_virtual_frame_pointer_ftype virtual_frame_pointer)
1951 {
1952 gdbarch->virtual_frame_pointer = virtual_frame_pointer;
1953 }
1954
1955 int
1956 gdbarch_pseudo_register_read_p (struct gdbarch *gdbarch)
1957 {
1958 gdb_assert (gdbarch != NULL);
1959 return gdbarch->pseudo_register_read != NULL;
1960 }
1961
1962 enum register_status
1963 gdbarch_pseudo_register_read (struct gdbarch *gdbarch, readable_regcache *regcache, int cookednum, gdb_byte *buf)
1964 {
1965 gdb_assert (gdbarch != NULL);
1966 gdb_assert (gdbarch->pseudo_register_read != NULL);
1967 if (gdbarch_debug >= 2)
1968 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read called\n");
1969 return gdbarch->pseudo_register_read (gdbarch, regcache, cookednum, buf);
1970 }
1971
1972 void
1973 set_gdbarch_pseudo_register_read (struct gdbarch *gdbarch,
1974 gdbarch_pseudo_register_read_ftype pseudo_register_read)
1975 {
1976 gdbarch->pseudo_register_read = pseudo_register_read;
1977 }
1978
1979 int
1980 gdbarch_pseudo_register_read_value_p (struct gdbarch *gdbarch)
1981 {
1982 gdb_assert (gdbarch != NULL);
1983 return gdbarch->pseudo_register_read_value != NULL;
1984 }
1985
1986 struct value *
1987 gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch, readable_regcache *regcache, int cookednum)
1988 {
1989 gdb_assert (gdbarch != NULL);
1990 gdb_assert (gdbarch->pseudo_register_read_value != NULL);
1991 if (gdbarch_debug >= 2)
1992 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_read_value called\n");
1993 return gdbarch->pseudo_register_read_value (gdbarch, regcache, cookednum);
1994 }
1995
1996 void
1997 set_gdbarch_pseudo_register_read_value (struct gdbarch *gdbarch,
1998 gdbarch_pseudo_register_read_value_ftype pseudo_register_read_value)
1999 {
2000 gdbarch->pseudo_register_read_value = pseudo_register_read_value;
2001 }
2002
2003 int
2004 gdbarch_pseudo_register_write_p (struct gdbarch *gdbarch)
2005 {
2006 gdb_assert (gdbarch != NULL);
2007 return gdbarch->pseudo_register_write != NULL;
2008 }
2009
2010 void
2011 gdbarch_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, int cookednum, const gdb_byte *buf)
2012 {
2013 gdb_assert (gdbarch != NULL);
2014 gdb_assert (gdbarch->pseudo_register_write != NULL);
2015 if (gdbarch_debug >= 2)
2016 fprintf_unfiltered (gdb_stdlog, "gdbarch_pseudo_register_write called\n");
2017 gdbarch->pseudo_register_write (gdbarch, regcache, cookednum, buf);
2018 }
2019
2020 void
2021 set_gdbarch_pseudo_register_write (struct gdbarch *gdbarch,
2022 gdbarch_pseudo_register_write_ftype pseudo_register_write)
2023 {
2024 gdbarch->pseudo_register_write = pseudo_register_write;
2025 }
2026
2027 int
2028 gdbarch_num_regs (struct gdbarch *gdbarch)
2029 {
2030 gdb_assert (gdbarch != NULL);
2031 /* Check variable changed from pre-default. */
2032 gdb_assert (gdbarch->num_regs != -1);
2033 if (gdbarch_debug >= 2)
2034 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_regs called\n");
2035 return gdbarch->num_regs;
2036 }
2037
2038 void
2039 set_gdbarch_num_regs (struct gdbarch *gdbarch,
2040 int num_regs)
2041 {
2042 gdbarch->num_regs = num_regs;
2043 }
2044
2045 int
2046 gdbarch_num_pseudo_regs (struct gdbarch *gdbarch)
2047 {
2048 gdb_assert (gdbarch != NULL);
2049 /* Skip verify of num_pseudo_regs, invalid_p == 0 */
2050 if (gdbarch_debug >= 2)
2051 fprintf_unfiltered (gdb_stdlog, "gdbarch_num_pseudo_regs called\n");
2052 return gdbarch->num_pseudo_regs;
2053 }
2054
2055 void
2056 set_gdbarch_num_pseudo_regs (struct gdbarch *gdbarch,
2057 int num_pseudo_regs)
2058 {
2059 gdbarch->num_pseudo_regs = num_pseudo_regs;
2060 }
2061
2062 int
2063 gdbarch_ax_pseudo_register_collect_p (struct gdbarch *gdbarch)
2064 {
2065 gdb_assert (gdbarch != NULL);
2066 return gdbarch->ax_pseudo_register_collect != NULL;
2067 }
2068
2069 int
2070 gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch, struct agent_expr *ax, int reg)
2071 {
2072 gdb_assert (gdbarch != NULL);
2073 gdb_assert (gdbarch->ax_pseudo_register_collect != NULL);
2074 if (gdbarch_debug >= 2)
2075 fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_collect called\n");
2076 return gdbarch->ax_pseudo_register_collect (gdbarch, ax, reg);
2077 }
2078
2079 void
2080 set_gdbarch_ax_pseudo_register_collect (struct gdbarch *gdbarch,
2081 gdbarch_ax_pseudo_register_collect_ftype ax_pseudo_register_collect)
2082 {
2083 gdbarch->ax_pseudo_register_collect = ax_pseudo_register_collect;
2084 }
2085
2086 int
2087 gdbarch_ax_pseudo_register_push_stack_p (struct gdbarch *gdbarch)
2088 {
2089 gdb_assert (gdbarch != NULL);
2090 return gdbarch->ax_pseudo_register_push_stack != NULL;
2091 }
2092
2093 int
2094 gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch, struct agent_expr *ax, int reg)
2095 {
2096 gdb_assert (gdbarch != NULL);
2097 gdb_assert (gdbarch->ax_pseudo_register_push_stack != NULL);
2098 if (gdbarch_debug >= 2)
2099 fprintf_unfiltered (gdb_stdlog, "gdbarch_ax_pseudo_register_push_stack called\n");
2100 return gdbarch->ax_pseudo_register_push_stack (gdbarch, ax, reg);
2101 }
2102
2103 void
2104 set_gdbarch_ax_pseudo_register_push_stack (struct gdbarch *gdbarch,
2105 gdbarch_ax_pseudo_register_push_stack_ftype ax_pseudo_register_push_stack)
2106 {
2107 gdbarch->ax_pseudo_register_push_stack = ax_pseudo_register_push_stack;
2108 }
2109
2110 int
2111 gdbarch_handle_segmentation_fault_p (struct gdbarch *gdbarch)
2112 {
2113 gdb_assert (gdbarch != NULL);
2114 return gdbarch->handle_segmentation_fault != NULL;
2115 }
2116
2117 void
2118 gdbarch_handle_segmentation_fault (struct gdbarch *gdbarch, struct ui_out *uiout)
2119 {
2120 gdb_assert (gdbarch != NULL);
2121 gdb_assert (gdbarch->handle_segmentation_fault != NULL);
2122 if (gdbarch_debug >= 2)
2123 fprintf_unfiltered (gdb_stdlog, "gdbarch_handle_segmentation_fault called\n");
2124 gdbarch->handle_segmentation_fault (gdbarch, uiout);
2125 }
2126
2127 void
2128 set_gdbarch_handle_segmentation_fault (struct gdbarch *gdbarch,
2129 gdbarch_handle_segmentation_fault_ftype handle_segmentation_fault)
2130 {
2131 gdbarch->handle_segmentation_fault = handle_segmentation_fault;
2132 }
2133
2134 int
2135 gdbarch_sp_regnum (struct gdbarch *gdbarch)
2136 {
2137 gdb_assert (gdbarch != NULL);
2138 /* Skip verify of sp_regnum, invalid_p == 0 */
2139 if (gdbarch_debug >= 2)
2140 fprintf_unfiltered (gdb_stdlog, "gdbarch_sp_regnum called\n");
2141 return gdbarch->sp_regnum;
2142 }
2143
2144 void
2145 set_gdbarch_sp_regnum (struct gdbarch *gdbarch,
2146 int sp_regnum)
2147 {
2148 gdbarch->sp_regnum = sp_regnum;
2149 }
2150
2151 int
2152 gdbarch_pc_regnum (struct gdbarch *gdbarch)
2153 {
2154 gdb_assert (gdbarch != NULL);
2155 /* Skip verify of pc_regnum, invalid_p == 0 */
2156 if (gdbarch_debug >= 2)
2157 fprintf_unfiltered (gdb_stdlog, "gdbarch_pc_regnum called\n");
2158 return gdbarch->pc_regnum;
2159 }
2160
2161 void
2162 set_gdbarch_pc_regnum (struct gdbarch *gdbarch,
2163 int pc_regnum)
2164 {
2165 gdbarch->pc_regnum = pc_regnum;
2166 }
2167
2168 int
2169 gdbarch_ps_regnum (struct gdbarch *gdbarch)
2170 {
2171 gdb_assert (gdbarch != NULL);
2172 /* Skip verify of ps_regnum, invalid_p == 0 */
2173 if (gdbarch_debug >= 2)
2174 fprintf_unfiltered (gdb_stdlog, "gdbarch_ps_regnum called\n");
2175 return gdbarch->ps_regnum;
2176 }
2177
2178 void
2179 set_gdbarch_ps_regnum (struct gdbarch *gdbarch,
2180 int ps_regnum)
2181 {
2182 gdbarch->ps_regnum = ps_regnum;
2183 }
2184
2185 int
2186 gdbarch_fp0_regnum (struct gdbarch *gdbarch)
2187 {
2188 gdb_assert (gdbarch != NULL);
2189 /* Skip verify of fp0_regnum, invalid_p == 0 */
2190 if (gdbarch_debug >= 2)
2191 fprintf_unfiltered (gdb_stdlog, "gdbarch_fp0_regnum called\n");
2192 return gdbarch->fp0_regnum;
2193 }
2194
2195 void
2196 set_gdbarch_fp0_regnum (struct gdbarch *gdbarch,
2197 int fp0_regnum)
2198 {
2199 gdbarch->fp0_regnum = fp0_regnum;
2200 }
2201
2202 int
2203 gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch, int stab_regnr)
2204 {
2205 gdb_assert (gdbarch != NULL);
2206 gdb_assert (gdbarch->stab_reg_to_regnum != NULL);
2207 if (gdbarch_debug >= 2)
2208 fprintf_unfiltered (gdb_stdlog, "gdbarch_stab_reg_to_regnum called\n");
2209 return gdbarch->stab_reg_to_regnum (gdbarch, stab_regnr);
2210 }
2211
2212 void
2213 set_gdbarch_stab_reg_to_regnum (struct gdbarch *gdbarch,
2214 gdbarch_stab_reg_to_regnum_ftype stab_reg_to_regnum)
2215 {
2216 gdbarch->stab_reg_to_regnum = stab_reg_to_regnum;
2217 }
2218
2219 int
2220 gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch, int ecoff_regnr)
2221 {
2222 gdb_assert (gdbarch != NULL);
2223 gdb_assert (gdbarch->ecoff_reg_to_regnum != NULL);
2224 if (gdbarch_debug >= 2)
2225 fprintf_unfiltered (gdb_stdlog, "gdbarch_ecoff_reg_to_regnum called\n");
2226 return gdbarch->ecoff_reg_to_regnum (gdbarch, ecoff_regnr);
2227 }
2228
2229 void
2230 set_gdbarch_ecoff_reg_to_regnum (struct gdbarch *gdbarch,
2231 gdbarch_ecoff_reg_to_regnum_ftype ecoff_reg_to_regnum)
2232 {
2233 gdbarch->ecoff_reg_to_regnum = ecoff_reg_to_regnum;
2234 }
2235
2236 int
2237 gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, int sdb_regnr)
2238 {
2239 gdb_assert (gdbarch != NULL);
2240 gdb_assert (gdbarch->sdb_reg_to_regnum != NULL);
2241 if (gdbarch_debug >= 2)
2242 fprintf_unfiltered (gdb_stdlog, "gdbarch_sdb_reg_to_regnum called\n");
2243 return gdbarch->sdb_reg_to_regnum (gdbarch, sdb_regnr);
2244 }
2245
2246 void
2247 set_gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch,
2248 gdbarch_sdb_reg_to_regnum_ftype sdb_reg_to_regnum)
2249 {
2250 gdbarch->sdb_reg_to_regnum = sdb_reg_to_regnum;
2251 }
2252
2253 int
2254 gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int dwarf2_regnr)
2255 {
2256 gdb_assert (gdbarch != NULL);
2257 gdb_assert (gdbarch->dwarf2_reg_to_regnum != NULL);
2258 if (gdbarch_debug >= 2)
2259 fprintf_unfiltered (gdb_stdlog, "gdbarch_dwarf2_reg_to_regnum called\n");
2260 return gdbarch->dwarf2_reg_to_regnum (gdbarch, dwarf2_regnr);
2261 }
2262
2263 void
2264 set_gdbarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch,
2265 gdbarch_dwarf2_reg_to_regnum_ftype dwarf2_reg_to_regnum)
2266 {
2267 gdbarch->dwarf2_reg_to_regnum = dwarf2_reg_to_regnum;
2268 }
2269
2270 const char *
2271 gdbarch_register_name (struct gdbarch *gdbarch, int regnr)
2272 {
2273 gdb_assert (gdbarch != NULL);
2274 gdb_assert (gdbarch->register_name != NULL);
2275 if (gdbarch_debug >= 2)
2276 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_name called\n");
2277 return gdbarch->register_name (gdbarch, regnr);
2278 }
2279
2280 void
2281 set_gdbarch_register_name (struct gdbarch *gdbarch,
2282 gdbarch_register_name_ftype register_name)
2283 {
2284 gdbarch->register_name = register_name;
2285 }
2286
2287 int
2288 gdbarch_register_type_p (struct gdbarch *gdbarch)
2289 {
2290 gdb_assert (gdbarch != NULL);
2291 return gdbarch->register_type != NULL;
2292 }
2293
2294 struct type *
2295 gdbarch_register_type (struct gdbarch *gdbarch, int reg_nr)
2296 {
2297 gdb_assert (gdbarch != NULL);
2298 gdb_assert (gdbarch->register_type != NULL);
2299 if (gdbarch_debug >= 2)
2300 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_type called\n");
2301 return gdbarch->register_type (gdbarch, reg_nr);
2302 }
2303
2304 void
2305 set_gdbarch_register_type (struct gdbarch *gdbarch,
2306 gdbarch_register_type_ftype register_type)
2307 {
2308 gdbarch->register_type = register_type;
2309 }
2310
2311 struct frame_id
2312 gdbarch_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
2313 {
2314 gdb_assert (gdbarch != NULL);
2315 gdb_assert (gdbarch->dummy_id != NULL);
2316 if (gdbarch_debug >= 2)
2317 fprintf_unfiltered (gdb_stdlog, "gdbarch_dummy_id called\n");
2318 return gdbarch->dummy_id (gdbarch, this_frame);
2319 }
2320
2321 void
2322 set_gdbarch_dummy_id (struct gdbarch *gdbarch,
2323 gdbarch_dummy_id_ftype dummy_id)
2324 {
2325 gdbarch->dummy_id = dummy_id;
2326 }
2327
2328 int
2329 gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch)
2330 {
2331 gdb_assert (gdbarch != NULL);
2332 /* Skip verify of deprecated_fp_regnum, invalid_p == 0 */
2333 if (gdbarch_debug >= 2)
2334 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_fp_regnum called\n");
2335 return gdbarch->deprecated_fp_regnum;
2336 }
2337
2338 void
2339 set_gdbarch_deprecated_fp_regnum (struct gdbarch *gdbarch,
2340 int deprecated_fp_regnum)
2341 {
2342 gdbarch->deprecated_fp_regnum = deprecated_fp_regnum;
2343 }
2344
2345 int
2346 gdbarch_push_dummy_call_p (struct gdbarch *gdbarch)
2347 {
2348 gdb_assert (gdbarch != NULL);
2349 return gdbarch->push_dummy_call != NULL;
2350 }
2351
2352 CORE_ADDR
2353 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, function_call_return_method return_method, CORE_ADDR struct_addr)
2354 {
2355 gdb_assert (gdbarch != NULL);
2356 gdb_assert (gdbarch->push_dummy_call != NULL);
2357 if (gdbarch_debug >= 2)
2358 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_call called\n");
2359 return gdbarch->push_dummy_call (gdbarch, function, regcache, bp_addr, nargs, args, sp, return_method, struct_addr);
2360 }
2361
2362 void
2363 set_gdbarch_push_dummy_call (struct gdbarch *gdbarch,
2364 gdbarch_push_dummy_call_ftype push_dummy_call)
2365 {
2366 gdbarch->push_dummy_call = push_dummy_call;
2367 }
2368
2369 int
2370 gdbarch_call_dummy_location (struct gdbarch *gdbarch)
2371 {
2372 gdb_assert (gdbarch != NULL);
2373 /* Skip verify of call_dummy_location, invalid_p == 0 */
2374 if (gdbarch_debug >= 2)
2375 fprintf_unfiltered (gdb_stdlog, "gdbarch_call_dummy_location called\n");
2376 return gdbarch->call_dummy_location;
2377 }
2378
2379 void
2380 set_gdbarch_call_dummy_location (struct gdbarch *gdbarch,
2381 int call_dummy_location)
2382 {
2383 gdbarch->call_dummy_location = call_dummy_location;
2384 }
2385
2386 int
2387 gdbarch_push_dummy_code_p (struct gdbarch *gdbarch)
2388 {
2389 gdb_assert (gdbarch != NULL);
2390 return gdbarch->push_dummy_code != NULL;
2391 }
2392
2393 CORE_ADDR
2394 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)
2395 {
2396 gdb_assert (gdbarch != NULL);
2397 gdb_assert (gdbarch->push_dummy_code != NULL);
2398 if (gdbarch_debug >= 2)
2399 fprintf_unfiltered (gdb_stdlog, "gdbarch_push_dummy_code called\n");
2400 return gdbarch->push_dummy_code (gdbarch, sp, funaddr, args, nargs, value_type, real_pc, bp_addr, regcache);
2401 }
2402
2403 void
2404 set_gdbarch_push_dummy_code (struct gdbarch *gdbarch,
2405 gdbarch_push_dummy_code_ftype push_dummy_code)
2406 {
2407 gdbarch->push_dummy_code = push_dummy_code;
2408 }
2409
2410 int
2411 gdbarch_code_of_frame_writable (struct gdbarch *gdbarch, struct frame_info *frame)
2412 {
2413 gdb_assert (gdbarch != NULL);
2414 gdb_assert (gdbarch->code_of_frame_writable != NULL);
2415 if (gdbarch_debug >= 2)
2416 fprintf_unfiltered (gdb_stdlog, "gdbarch_code_of_frame_writable called\n");
2417 return gdbarch->code_of_frame_writable (gdbarch, frame);
2418 }
2419
2420 void
2421 set_gdbarch_code_of_frame_writable (struct gdbarch *gdbarch,
2422 gdbarch_code_of_frame_writable_ftype code_of_frame_writable)
2423 {
2424 gdbarch->code_of_frame_writable = code_of_frame_writable;
2425 }
2426
2427 void
2428 gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all)
2429 {
2430 gdb_assert (gdbarch != NULL);
2431 gdb_assert (gdbarch->print_registers_info != NULL);
2432 if (gdbarch_debug >= 2)
2433 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_registers_info called\n");
2434 gdbarch->print_registers_info (gdbarch, file, frame, regnum, all);
2435 }
2436
2437 void
2438 set_gdbarch_print_registers_info (struct gdbarch *gdbarch,
2439 gdbarch_print_registers_info_ftype print_registers_info)
2440 {
2441 gdbarch->print_registers_info = print_registers_info;
2442 }
2443
2444 void
2445 gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
2446 {
2447 gdb_assert (gdbarch != NULL);
2448 gdb_assert (gdbarch->print_float_info != NULL);
2449 if (gdbarch_debug >= 2)
2450 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_float_info called\n");
2451 gdbarch->print_float_info (gdbarch, file, frame, args);
2452 }
2453
2454 void
2455 set_gdbarch_print_float_info (struct gdbarch *gdbarch,
2456 gdbarch_print_float_info_ftype print_float_info)
2457 {
2458 gdbarch->print_float_info = print_float_info;
2459 }
2460
2461 int
2462 gdbarch_print_vector_info_p (struct gdbarch *gdbarch)
2463 {
2464 gdb_assert (gdbarch != NULL);
2465 return gdbarch->print_vector_info != NULL;
2466 }
2467
2468 void
2469 gdbarch_print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
2470 {
2471 gdb_assert (gdbarch != NULL);
2472 gdb_assert (gdbarch->print_vector_info != NULL);
2473 if (gdbarch_debug >= 2)
2474 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_vector_info called\n");
2475 gdbarch->print_vector_info (gdbarch, file, frame, args);
2476 }
2477
2478 void
2479 set_gdbarch_print_vector_info (struct gdbarch *gdbarch,
2480 gdbarch_print_vector_info_ftype print_vector_info)
2481 {
2482 gdbarch->print_vector_info = print_vector_info;
2483 }
2484
2485 int
2486 gdbarch_register_sim_regno (struct gdbarch *gdbarch, int reg_nr)
2487 {
2488 gdb_assert (gdbarch != NULL);
2489 gdb_assert (gdbarch->register_sim_regno != NULL);
2490 if (gdbarch_debug >= 2)
2491 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_sim_regno called\n");
2492 return gdbarch->register_sim_regno (gdbarch, reg_nr);
2493 }
2494
2495 void
2496 set_gdbarch_register_sim_regno (struct gdbarch *gdbarch,
2497 gdbarch_register_sim_regno_ftype register_sim_regno)
2498 {
2499 gdbarch->register_sim_regno = register_sim_regno;
2500 }
2501
2502 int
2503 gdbarch_cannot_fetch_register (struct gdbarch *gdbarch, int regnum)
2504 {
2505 gdb_assert (gdbarch != NULL);
2506 gdb_assert (gdbarch->cannot_fetch_register != NULL);
2507 if (gdbarch_debug >= 2)
2508 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_fetch_register called\n");
2509 return gdbarch->cannot_fetch_register (gdbarch, regnum);
2510 }
2511
2512 void
2513 set_gdbarch_cannot_fetch_register (struct gdbarch *gdbarch,
2514 gdbarch_cannot_fetch_register_ftype cannot_fetch_register)
2515 {
2516 gdbarch->cannot_fetch_register = cannot_fetch_register;
2517 }
2518
2519 int
2520 gdbarch_cannot_store_register (struct gdbarch *gdbarch, int regnum)
2521 {
2522 gdb_assert (gdbarch != NULL);
2523 gdb_assert (gdbarch->cannot_store_register != NULL);
2524 if (gdbarch_debug >= 2)
2525 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_store_register called\n");
2526 return gdbarch->cannot_store_register (gdbarch, regnum);
2527 }
2528
2529 void
2530 set_gdbarch_cannot_store_register (struct gdbarch *gdbarch,
2531 gdbarch_cannot_store_register_ftype cannot_store_register)
2532 {
2533 gdbarch->cannot_store_register = cannot_store_register;
2534 }
2535
2536 int
2537 gdbarch_get_longjmp_target_p (struct gdbarch *gdbarch)
2538 {
2539 gdb_assert (gdbarch != NULL);
2540 return gdbarch->get_longjmp_target != NULL;
2541 }
2542
2543 int
2544 gdbarch_get_longjmp_target (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR *pc)
2545 {
2546 gdb_assert (gdbarch != NULL);
2547 gdb_assert (gdbarch->get_longjmp_target != NULL);
2548 if (gdbarch_debug >= 2)
2549 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_longjmp_target called\n");
2550 return gdbarch->get_longjmp_target (frame, pc);
2551 }
2552
2553 void
2554 set_gdbarch_get_longjmp_target (struct gdbarch *gdbarch,
2555 gdbarch_get_longjmp_target_ftype get_longjmp_target)
2556 {
2557 gdbarch->get_longjmp_target = get_longjmp_target;
2558 }
2559
2560 int
2561 gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch)
2562 {
2563 gdb_assert (gdbarch != NULL);
2564 if (gdbarch_debug >= 2)
2565 fprintf_unfiltered (gdb_stdlog, "gdbarch_believe_pcc_promotion called\n");
2566 return gdbarch->believe_pcc_promotion;
2567 }
2568
2569 void
2570 set_gdbarch_believe_pcc_promotion (struct gdbarch *gdbarch,
2571 int believe_pcc_promotion)
2572 {
2573 gdbarch->believe_pcc_promotion = believe_pcc_promotion;
2574 }
2575
2576 int
2577 gdbarch_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type)
2578 {
2579 gdb_assert (gdbarch != NULL);
2580 gdb_assert (gdbarch->convert_register_p != NULL);
2581 if (gdbarch_debug >= 2)
2582 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_register_p called\n");
2583 return gdbarch->convert_register_p (gdbarch, regnum, type);
2584 }
2585
2586 void
2587 set_gdbarch_convert_register_p (struct gdbarch *gdbarch,
2588 gdbarch_convert_register_p_ftype convert_register_p)
2589 {
2590 gdbarch->convert_register_p = convert_register_p;
2591 }
2592
2593 int
2594 gdbarch_register_to_value (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, gdb_byte *buf, int *optimizedp, int *unavailablep)
2595 {
2596 gdb_assert (gdbarch != NULL);
2597 gdb_assert (gdbarch->register_to_value != NULL);
2598 if (gdbarch_debug >= 2)
2599 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_to_value called\n");
2600 return gdbarch->register_to_value (frame, regnum, type, buf, optimizedp, unavailablep);
2601 }
2602
2603 void
2604 set_gdbarch_register_to_value (struct gdbarch *gdbarch,
2605 gdbarch_register_to_value_ftype register_to_value)
2606 {
2607 gdbarch->register_to_value = register_to_value;
2608 }
2609
2610 void
2611 gdbarch_value_to_register (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, struct type *type, const gdb_byte *buf)
2612 {
2613 gdb_assert (gdbarch != NULL);
2614 gdb_assert (gdbarch->value_to_register != NULL);
2615 if (gdbarch_debug >= 2)
2616 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_to_register called\n");
2617 gdbarch->value_to_register (frame, regnum, type, buf);
2618 }
2619
2620 void
2621 set_gdbarch_value_to_register (struct gdbarch *gdbarch,
2622 gdbarch_value_to_register_ftype value_to_register)
2623 {
2624 gdbarch->value_to_register = value_to_register;
2625 }
2626
2627 struct value *
2628 gdbarch_value_from_register (struct gdbarch *gdbarch, struct type *type, int regnum, struct frame_id frame_id)
2629 {
2630 gdb_assert (gdbarch != NULL);
2631 gdb_assert (gdbarch->value_from_register != NULL);
2632 if (gdbarch_debug >= 2)
2633 fprintf_unfiltered (gdb_stdlog, "gdbarch_value_from_register called\n");
2634 return gdbarch->value_from_register (gdbarch, type, regnum, frame_id);
2635 }
2636
2637 void
2638 set_gdbarch_value_from_register (struct gdbarch *gdbarch,
2639 gdbarch_value_from_register_ftype value_from_register)
2640 {
2641 gdbarch->value_from_register = value_from_register;
2642 }
2643
2644 CORE_ADDR
2645 gdbarch_pointer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
2646 {
2647 gdb_assert (gdbarch != NULL);
2648 gdb_assert (gdbarch->pointer_to_address != NULL);
2649 if (gdbarch_debug >= 2)
2650 fprintf_unfiltered (gdb_stdlog, "gdbarch_pointer_to_address called\n");
2651 return gdbarch->pointer_to_address (gdbarch, type, buf);
2652 }
2653
2654 void
2655 set_gdbarch_pointer_to_address (struct gdbarch *gdbarch,
2656 gdbarch_pointer_to_address_ftype pointer_to_address)
2657 {
2658 gdbarch->pointer_to_address = pointer_to_address;
2659 }
2660
2661 void
2662 gdbarch_address_to_pointer (struct gdbarch *gdbarch, struct type *type, gdb_byte *buf, CORE_ADDR addr)
2663 {
2664 gdb_assert (gdbarch != NULL);
2665 gdb_assert (gdbarch->address_to_pointer != NULL);
2666 if (gdbarch_debug >= 2)
2667 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_to_pointer called\n");
2668 gdbarch->address_to_pointer (gdbarch, type, buf, addr);
2669 }
2670
2671 void
2672 set_gdbarch_address_to_pointer (struct gdbarch *gdbarch,
2673 gdbarch_address_to_pointer_ftype address_to_pointer)
2674 {
2675 gdbarch->address_to_pointer = address_to_pointer;
2676 }
2677
2678 int
2679 gdbarch_integer_to_address_p (struct gdbarch *gdbarch)
2680 {
2681 gdb_assert (gdbarch != NULL);
2682 return gdbarch->integer_to_address != NULL;
2683 }
2684
2685 CORE_ADDR
2686 gdbarch_integer_to_address (struct gdbarch *gdbarch, struct type *type, const gdb_byte *buf)
2687 {
2688 gdb_assert (gdbarch != NULL);
2689 gdb_assert (gdbarch->integer_to_address != NULL);
2690 if (gdbarch_debug >= 2)
2691 fprintf_unfiltered (gdb_stdlog, "gdbarch_integer_to_address called\n");
2692 return gdbarch->integer_to_address (gdbarch, type, buf);
2693 }
2694
2695 void
2696 set_gdbarch_integer_to_address (struct gdbarch *gdbarch,
2697 gdbarch_integer_to_address_ftype integer_to_address)
2698 {
2699 gdbarch->integer_to_address = integer_to_address;
2700 }
2701
2702 int
2703 gdbarch_return_value_p (struct gdbarch *gdbarch)
2704 {
2705 gdb_assert (gdbarch != NULL);
2706 return gdbarch->return_value != NULL;
2707 }
2708
2709 enum return_value_convention
2710 gdbarch_return_value (struct gdbarch *gdbarch, struct value *function, struct type *valtype, struct regcache *regcache, gdb_byte *readbuf, const gdb_byte *writebuf)
2711 {
2712 gdb_assert (gdbarch != NULL);
2713 gdb_assert (gdbarch->return_value != NULL);
2714 if (gdbarch_debug >= 2)
2715 fprintf_unfiltered (gdb_stdlog, "gdbarch_return_value called\n");
2716 return gdbarch->return_value (gdbarch, function, valtype, regcache, readbuf, writebuf);
2717 }
2718
2719 void
2720 set_gdbarch_return_value (struct gdbarch *gdbarch,
2721 gdbarch_return_value_ftype return_value)
2722 {
2723 gdbarch->return_value = return_value;
2724 }
2725
2726 int
2727 gdbarch_return_in_first_hidden_param_p (struct gdbarch *gdbarch, struct type *type)
2728 {
2729 gdb_assert (gdbarch != NULL);
2730 gdb_assert (gdbarch->return_in_first_hidden_param_p != NULL);
2731 if (gdbarch_debug >= 2)
2732 fprintf_unfiltered (gdb_stdlog, "gdbarch_return_in_first_hidden_param_p called\n");
2733 return gdbarch->return_in_first_hidden_param_p (gdbarch, type);
2734 }
2735
2736 void
2737 set_gdbarch_return_in_first_hidden_param_p (struct gdbarch *gdbarch,
2738 gdbarch_return_in_first_hidden_param_p_ftype return_in_first_hidden_param_p)
2739 {
2740 gdbarch->return_in_first_hidden_param_p = return_in_first_hidden_param_p;
2741 }
2742
2743 CORE_ADDR
2744 gdbarch_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2745 {
2746 gdb_assert (gdbarch != NULL);
2747 gdb_assert (gdbarch->skip_prologue != NULL);
2748 if (gdbarch_debug >= 2)
2749 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_prologue called\n");
2750 return gdbarch->skip_prologue (gdbarch, ip);
2751 }
2752
2753 void
2754 set_gdbarch_skip_prologue (struct gdbarch *gdbarch,
2755 gdbarch_skip_prologue_ftype skip_prologue)
2756 {
2757 gdbarch->skip_prologue = skip_prologue;
2758 }
2759
2760 int
2761 gdbarch_skip_main_prologue_p (struct gdbarch *gdbarch)
2762 {
2763 gdb_assert (gdbarch != NULL);
2764 return gdbarch->skip_main_prologue != NULL;
2765 }
2766
2767 CORE_ADDR
2768 gdbarch_skip_main_prologue (struct gdbarch *gdbarch, CORE_ADDR ip)
2769 {
2770 gdb_assert (gdbarch != NULL);
2771 gdb_assert (gdbarch->skip_main_prologue != NULL);
2772 if (gdbarch_debug >= 2)
2773 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_main_prologue called\n");
2774 return gdbarch->skip_main_prologue (gdbarch, ip);
2775 }
2776
2777 void
2778 set_gdbarch_skip_main_prologue (struct gdbarch *gdbarch,
2779 gdbarch_skip_main_prologue_ftype skip_main_prologue)
2780 {
2781 gdbarch->skip_main_prologue = skip_main_prologue;
2782 }
2783
2784 int
2785 gdbarch_skip_entrypoint_p (struct gdbarch *gdbarch)
2786 {
2787 gdb_assert (gdbarch != NULL);
2788 return gdbarch->skip_entrypoint != NULL;
2789 }
2790
2791 CORE_ADDR
2792 gdbarch_skip_entrypoint (struct gdbarch *gdbarch, CORE_ADDR ip)
2793 {
2794 gdb_assert (gdbarch != NULL);
2795 gdb_assert (gdbarch->skip_entrypoint != NULL);
2796 if (gdbarch_debug >= 2)
2797 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_entrypoint called\n");
2798 return gdbarch->skip_entrypoint (gdbarch, ip);
2799 }
2800
2801 void
2802 set_gdbarch_skip_entrypoint (struct gdbarch *gdbarch,
2803 gdbarch_skip_entrypoint_ftype skip_entrypoint)
2804 {
2805 gdbarch->skip_entrypoint = skip_entrypoint;
2806 }
2807
2808 int
2809 gdbarch_inner_than (struct gdbarch *gdbarch, CORE_ADDR lhs, CORE_ADDR rhs)
2810 {
2811 gdb_assert (gdbarch != NULL);
2812 gdb_assert (gdbarch->inner_than != NULL);
2813 if (gdbarch_debug >= 2)
2814 fprintf_unfiltered (gdb_stdlog, "gdbarch_inner_than called\n");
2815 return gdbarch->inner_than (lhs, rhs);
2816 }
2817
2818 void
2819 set_gdbarch_inner_than (struct gdbarch *gdbarch,
2820 gdbarch_inner_than_ftype inner_than)
2821 {
2822 gdbarch->inner_than = inner_than;
2823 }
2824
2825 const gdb_byte *
2826 gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr)
2827 {
2828 gdb_assert (gdbarch != NULL);
2829 gdb_assert (gdbarch->breakpoint_from_pc != NULL);
2830 if (gdbarch_debug >= 2)
2831 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_from_pc called\n");
2832 return gdbarch->breakpoint_from_pc (gdbarch, pcptr, lenptr);
2833 }
2834
2835 void
2836 set_gdbarch_breakpoint_from_pc (struct gdbarch *gdbarch,
2837 gdbarch_breakpoint_from_pc_ftype breakpoint_from_pc)
2838 {
2839 gdbarch->breakpoint_from_pc = breakpoint_from_pc;
2840 }
2841
2842 int
2843 gdbarch_breakpoint_kind_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr)
2844 {
2845 gdb_assert (gdbarch != NULL);
2846 gdb_assert (gdbarch->breakpoint_kind_from_pc != NULL);
2847 if (gdbarch_debug >= 2)
2848 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_kind_from_pc called\n");
2849 return gdbarch->breakpoint_kind_from_pc (gdbarch, pcptr);
2850 }
2851
2852 void
2853 set_gdbarch_breakpoint_kind_from_pc (struct gdbarch *gdbarch,
2854 gdbarch_breakpoint_kind_from_pc_ftype breakpoint_kind_from_pc)
2855 {
2856 gdbarch->breakpoint_kind_from_pc = breakpoint_kind_from_pc;
2857 }
2858
2859 const gdb_byte *
2860 gdbarch_sw_breakpoint_from_kind (struct gdbarch *gdbarch, int kind, int *size)
2861 {
2862 gdb_assert (gdbarch != NULL);
2863 gdb_assert (gdbarch->sw_breakpoint_from_kind != NULL);
2864 if (gdbarch_debug >= 2)
2865 fprintf_unfiltered (gdb_stdlog, "gdbarch_sw_breakpoint_from_kind called\n");
2866 return gdbarch->sw_breakpoint_from_kind (gdbarch, kind, size);
2867 }
2868
2869 void
2870 set_gdbarch_sw_breakpoint_from_kind (struct gdbarch *gdbarch,
2871 gdbarch_sw_breakpoint_from_kind_ftype sw_breakpoint_from_kind)
2872 {
2873 gdbarch->sw_breakpoint_from_kind = sw_breakpoint_from_kind;
2874 }
2875
2876 int
2877 gdbarch_breakpoint_kind_from_current_state (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR *pcptr)
2878 {
2879 gdb_assert (gdbarch != NULL);
2880 gdb_assert (gdbarch->breakpoint_kind_from_current_state != NULL);
2881 if (gdbarch_debug >= 2)
2882 fprintf_unfiltered (gdb_stdlog, "gdbarch_breakpoint_kind_from_current_state called\n");
2883 return gdbarch->breakpoint_kind_from_current_state (gdbarch, regcache, pcptr);
2884 }
2885
2886 void
2887 set_gdbarch_breakpoint_kind_from_current_state (struct gdbarch *gdbarch,
2888 gdbarch_breakpoint_kind_from_current_state_ftype breakpoint_kind_from_current_state)
2889 {
2890 gdbarch->breakpoint_kind_from_current_state = breakpoint_kind_from_current_state;
2891 }
2892
2893 int
2894 gdbarch_adjust_breakpoint_address_p (struct gdbarch *gdbarch)
2895 {
2896 gdb_assert (gdbarch != NULL);
2897 return gdbarch->adjust_breakpoint_address != NULL;
2898 }
2899
2900 CORE_ADDR
2901 gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
2902 {
2903 gdb_assert (gdbarch != NULL);
2904 gdb_assert (gdbarch->adjust_breakpoint_address != NULL);
2905 if (gdbarch_debug >= 2)
2906 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_breakpoint_address called\n");
2907 return gdbarch->adjust_breakpoint_address (gdbarch, bpaddr);
2908 }
2909
2910 void
2911 set_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch,
2912 gdbarch_adjust_breakpoint_address_ftype adjust_breakpoint_address)
2913 {
2914 gdbarch->adjust_breakpoint_address = adjust_breakpoint_address;
2915 }
2916
2917 int
2918 gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
2919 {
2920 gdb_assert (gdbarch != NULL);
2921 gdb_assert (gdbarch->memory_insert_breakpoint != NULL);
2922 if (gdbarch_debug >= 2)
2923 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_insert_breakpoint called\n");
2924 return gdbarch->memory_insert_breakpoint (gdbarch, bp_tgt);
2925 }
2926
2927 void
2928 set_gdbarch_memory_insert_breakpoint (struct gdbarch *gdbarch,
2929 gdbarch_memory_insert_breakpoint_ftype memory_insert_breakpoint)
2930 {
2931 gdbarch->memory_insert_breakpoint = memory_insert_breakpoint;
2932 }
2933
2934 int
2935 gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt)
2936 {
2937 gdb_assert (gdbarch != NULL);
2938 gdb_assert (gdbarch->memory_remove_breakpoint != NULL);
2939 if (gdbarch_debug >= 2)
2940 fprintf_unfiltered (gdb_stdlog, "gdbarch_memory_remove_breakpoint called\n");
2941 return gdbarch->memory_remove_breakpoint (gdbarch, bp_tgt);
2942 }
2943
2944 void
2945 set_gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch,
2946 gdbarch_memory_remove_breakpoint_ftype memory_remove_breakpoint)
2947 {
2948 gdbarch->memory_remove_breakpoint = memory_remove_breakpoint;
2949 }
2950
2951 CORE_ADDR
2952 gdbarch_decr_pc_after_break (struct gdbarch *gdbarch)
2953 {
2954 gdb_assert (gdbarch != NULL);
2955 /* Skip verify of decr_pc_after_break, invalid_p == 0 */
2956 if (gdbarch_debug >= 2)
2957 fprintf_unfiltered (gdb_stdlog, "gdbarch_decr_pc_after_break called\n");
2958 return gdbarch->decr_pc_after_break;
2959 }
2960
2961 void
2962 set_gdbarch_decr_pc_after_break (struct gdbarch *gdbarch,
2963 CORE_ADDR decr_pc_after_break)
2964 {
2965 gdbarch->decr_pc_after_break = decr_pc_after_break;
2966 }
2967
2968 CORE_ADDR
2969 gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch)
2970 {
2971 gdb_assert (gdbarch != NULL);
2972 /* Skip verify of deprecated_function_start_offset, invalid_p == 0 */
2973 if (gdbarch_debug >= 2)
2974 fprintf_unfiltered (gdb_stdlog, "gdbarch_deprecated_function_start_offset called\n");
2975 return gdbarch->deprecated_function_start_offset;
2976 }
2977
2978 void
2979 set_gdbarch_deprecated_function_start_offset (struct gdbarch *gdbarch,
2980 CORE_ADDR deprecated_function_start_offset)
2981 {
2982 gdbarch->deprecated_function_start_offset = deprecated_function_start_offset;
2983 }
2984
2985 int
2986 gdbarch_remote_register_number (struct gdbarch *gdbarch, int regno)
2987 {
2988 gdb_assert (gdbarch != NULL);
2989 gdb_assert (gdbarch->remote_register_number != NULL);
2990 if (gdbarch_debug >= 2)
2991 fprintf_unfiltered (gdb_stdlog, "gdbarch_remote_register_number called\n");
2992 return gdbarch->remote_register_number (gdbarch, regno);
2993 }
2994
2995 void
2996 set_gdbarch_remote_register_number (struct gdbarch *gdbarch,
2997 gdbarch_remote_register_number_ftype remote_register_number)
2998 {
2999 gdbarch->remote_register_number = remote_register_number;
3000 }
3001
3002 int
3003 gdbarch_fetch_tls_load_module_address_p (struct gdbarch *gdbarch)
3004 {
3005 gdb_assert (gdbarch != NULL);
3006 return gdbarch->fetch_tls_load_module_address != NULL;
3007 }
3008
3009 CORE_ADDR
3010 gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch, struct objfile *objfile)
3011 {
3012 gdb_assert (gdbarch != NULL);
3013 gdb_assert (gdbarch->fetch_tls_load_module_address != NULL);
3014 if (gdbarch_debug >= 2)
3015 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_tls_load_module_address called\n");
3016 return gdbarch->fetch_tls_load_module_address (objfile);
3017 }
3018
3019 void
3020 set_gdbarch_fetch_tls_load_module_address (struct gdbarch *gdbarch,
3021 gdbarch_fetch_tls_load_module_address_ftype fetch_tls_load_module_address)
3022 {
3023 gdbarch->fetch_tls_load_module_address = fetch_tls_load_module_address;
3024 }
3025
3026 int
3027 gdbarch_get_thread_local_address_p (struct gdbarch *gdbarch)
3028 {
3029 gdb_assert (gdbarch != NULL);
3030 return gdbarch->get_thread_local_address != NULL;
3031 }
3032
3033 CORE_ADDR
3034 gdbarch_get_thread_local_address (struct gdbarch *gdbarch, ptid_t ptid, CORE_ADDR lm_addr, CORE_ADDR offset)
3035 {
3036 gdb_assert (gdbarch != NULL);
3037 gdb_assert (gdbarch->get_thread_local_address != NULL);
3038 if (gdbarch_debug >= 2)
3039 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_thread_local_address called\n");
3040 return gdbarch->get_thread_local_address (gdbarch, ptid, lm_addr, offset);
3041 }
3042
3043 void
3044 set_gdbarch_get_thread_local_address (struct gdbarch *gdbarch,
3045 gdbarch_get_thread_local_address_ftype get_thread_local_address)
3046 {
3047 gdbarch->get_thread_local_address = get_thread_local_address;
3048 }
3049
3050 CORE_ADDR
3051 gdbarch_frame_args_skip (struct gdbarch *gdbarch)
3052 {
3053 gdb_assert (gdbarch != NULL);
3054 /* Skip verify of frame_args_skip, invalid_p == 0 */
3055 if (gdbarch_debug >= 2)
3056 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_args_skip called\n");
3057 return gdbarch->frame_args_skip;
3058 }
3059
3060 void
3061 set_gdbarch_frame_args_skip (struct gdbarch *gdbarch,
3062 CORE_ADDR frame_args_skip)
3063 {
3064 gdbarch->frame_args_skip = frame_args_skip;
3065 }
3066
3067 CORE_ADDR
3068 gdbarch_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
3069 {
3070 gdb_assert (gdbarch != NULL);
3071 gdb_assert (gdbarch->unwind_pc != NULL);
3072 if (gdbarch_debug >= 2)
3073 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_pc called\n");
3074 return gdbarch->unwind_pc (gdbarch, next_frame);
3075 }
3076
3077 void
3078 set_gdbarch_unwind_pc (struct gdbarch *gdbarch,
3079 gdbarch_unwind_pc_ftype unwind_pc)
3080 {
3081 gdbarch->unwind_pc = unwind_pc;
3082 }
3083
3084 CORE_ADDR
3085 gdbarch_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
3086 {
3087 gdb_assert (gdbarch != NULL);
3088 gdb_assert (gdbarch->unwind_sp != NULL);
3089 if (gdbarch_debug >= 2)
3090 fprintf_unfiltered (gdb_stdlog, "gdbarch_unwind_sp called\n");
3091 return gdbarch->unwind_sp (gdbarch, next_frame);
3092 }
3093
3094 void
3095 set_gdbarch_unwind_sp (struct gdbarch *gdbarch,
3096 gdbarch_unwind_sp_ftype unwind_sp)
3097 {
3098 gdbarch->unwind_sp = unwind_sp;
3099 }
3100
3101 int
3102 gdbarch_frame_num_args_p (struct gdbarch *gdbarch)
3103 {
3104 gdb_assert (gdbarch != NULL);
3105 return gdbarch->frame_num_args != NULL;
3106 }
3107
3108 int
3109 gdbarch_frame_num_args (struct gdbarch *gdbarch, struct frame_info *frame)
3110 {
3111 gdb_assert (gdbarch != NULL);
3112 gdb_assert (gdbarch->frame_num_args != NULL);
3113 if (gdbarch_debug >= 2)
3114 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_num_args called\n");
3115 return gdbarch->frame_num_args (frame);
3116 }
3117
3118 void
3119 set_gdbarch_frame_num_args (struct gdbarch *gdbarch,
3120 gdbarch_frame_num_args_ftype frame_num_args)
3121 {
3122 gdbarch->frame_num_args = frame_num_args;
3123 }
3124
3125 int
3126 gdbarch_frame_align_p (struct gdbarch *gdbarch)
3127 {
3128 gdb_assert (gdbarch != NULL);
3129 return gdbarch->frame_align != NULL;
3130 }
3131
3132 CORE_ADDR
3133 gdbarch_frame_align (struct gdbarch *gdbarch, CORE_ADDR address)
3134 {
3135 gdb_assert (gdbarch != NULL);
3136 gdb_assert (gdbarch->frame_align != NULL);
3137 if (gdbarch_debug >= 2)
3138 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_align called\n");
3139 return gdbarch->frame_align (gdbarch, address);
3140 }
3141
3142 void
3143 set_gdbarch_frame_align (struct gdbarch *gdbarch,
3144 gdbarch_frame_align_ftype frame_align)
3145 {
3146 gdbarch->frame_align = frame_align;
3147 }
3148
3149 int
3150 gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
3151 {
3152 gdb_assert (gdbarch != NULL);
3153 gdb_assert (gdbarch->stabs_argument_has_addr != NULL);
3154 if (gdbarch_debug >= 2)
3155 fprintf_unfiltered (gdb_stdlog, "gdbarch_stabs_argument_has_addr called\n");
3156 return gdbarch->stabs_argument_has_addr (gdbarch, type);
3157 }
3158
3159 void
3160 set_gdbarch_stabs_argument_has_addr (struct gdbarch *gdbarch,
3161 gdbarch_stabs_argument_has_addr_ftype stabs_argument_has_addr)
3162 {
3163 gdbarch->stabs_argument_has_addr = stabs_argument_has_addr;
3164 }
3165
3166 int
3167 gdbarch_frame_red_zone_size (struct gdbarch *gdbarch)
3168 {
3169 gdb_assert (gdbarch != NULL);
3170 if (gdbarch_debug >= 2)
3171 fprintf_unfiltered (gdb_stdlog, "gdbarch_frame_red_zone_size called\n");
3172 return gdbarch->frame_red_zone_size;
3173 }
3174
3175 void
3176 set_gdbarch_frame_red_zone_size (struct gdbarch *gdbarch,
3177 int frame_red_zone_size)
3178 {
3179 gdbarch->frame_red_zone_size = frame_red_zone_size;
3180 }
3181
3182 CORE_ADDR
3183 gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr, struct target_ops *targ)
3184 {
3185 gdb_assert (gdbarch != NULL);
3186 gdb_assert (gdbarch->convert_from_func_ptr_addr != NULL);
3187 if (gdbarch_debug >= 2)
3188 fprintf_unfiltered (gdb_stdlog, "gdbarch_convert_from_func_ptr_addr called\n");
3189 return gdbarch->convert_from_func_ptr_addr (gdbarch, addr, targ);
3190 }
3191
3192 void
3193 set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch,
3194 gdbarch_convert_from_func_ptr_addr_ftype convert_from_func_ptr_addr)
3195 {
3196 gdbarch->convert_from_func_ptr_addr = convert_from_func_ptr_addr;
3197 }
3198
3199 CORE_ADDR
3200 gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
3201 {
3202 gdb_assert (gdbarch != NULL);
3203 gdb_assert (gdbarch->addr_bits_remove != NULL);
3204 if (gdbarch_debug >= 2)
3205 fprintf_unfiltered (gdb_stdlog, "gdbarch_addr_bits_remove called\n");
3206 return gdbarch->addr_bits_remove (gdbarch, addr);
3207 }
3208
3209 void
3210 set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch,
3211 gdbarch_addr_bits_remove_ftype addr_bits_remove)
3212 {
3213 gdbarch->addr_bits_remove = addr_bits_remove;
3214 }
3215
3216 int
3217 gdbarch_significant_addr_bit (struct gdbarch *gdbarch)
3218 {
3219 gdb_assert (gdbarch != NULL);
3220 /* Skip verify of significant_addr_bit, invalid_p == 0 */
3221 if (gdbarch_debug >= 2)
3222 fprintf_unfiltered (gdb_stdlog, "gdbarch_significant_addr_bit called\n");
3223 return gdbarch->significant_addr_bit;
3224 }
3225
3226 void
3227 set_gdbarch_significant_addr_bit (struct gdbarch *gdbarch,
3228 int significant_addr_bit)
3229 {
3230 gdbarch->significant_addr_bit = significant_addr_bit;
3231 }
3232
3233 int
3234 gdbarch_software_single_step_p (struct gdbarch *gdbarch)
3235 {
3236 gdb_assert (gdbarch != NULL);
3237 return gdbarch->software_single_step != NULL;
3238 }
3239
3240 std::vector<CORE_ADDR>
3241 gdbarch_software_single_step (struct gdbarch *gdbarch, struct regcache *regcache)
3242 {
3243 gdb_assert (gdbarch != NULL);
3244 gdb_assert (gdbarch->software_single_step != NULL);
3245 if (gdbarch_debug >= 2)
3246 fprintf_unfiltered (gdb_stdlog, "gdbarch_software_single_step called\n");
3247 return gdbarch->software_single_step (regcache);
3248 }
3249
3250 void
3251 set_gdbarch_software_single_step (struct gdbarch *gdbarch,
3252 gdbarch_software_single_step_ftype software_single_step)
3253 {
3254 gdbarch->software_single_step = software_single_step;
3255 }
3256
3257 int
3258 gdbarch_single_step_through_delay_p (struct gdbarch *gdbarch)
3259 {
3260 gdb_assert (gdbarch != NULL);
3261 return gdbarch->single_step_through_delay != NULL;
3262 }
3263
3264 int
3265 gdbarch_single_step_through_delay (struct gdbarch *gdbarch, struct frame_info *frame)
3266 {
3267 gdb_assert (gdbarch != NULL);
3268 gdb_assert (gdbarch->single_step_through_delay != NULL);
3269 if (gdbarch_debug >= 2)
3270 fprintf_unfiltered (gdb_stdlog, "gdbarch_single_step_through_delay called\n");
3271 return gdbarch->single_step_through_delay (gdbarch, frame);
3272 }
3273
3274 void
3275 set_gdbarch_single_step_through_delay (struct gdbarch *gdbarch,
3276 gdbarch_single_step_through_delay_ftype single_step_through_delay)
3277 {
3278 gdbarch->single_step_through_delay = single_step_through_delay;
3279 }
3280
3281 int
3282 gdbarch_print_insn (struct gdbarch *gdbarch, bfd_vma vma, struct disassemble_info *info)
3283 {
3284 gdb_assert (gdbarch != NULL);
3285 gdb_assert (gdbarch->print_insn != NULL);
3286 if (gdbarch_debug >= 2)
3287 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_insn called\n");
3288 return gdbarch->print_insn (vma, info);
3289 }
3290
3291 void
3292 set_gdbarch_print_insn (struct gdbarch *gdbarch,
3293 gdbarch_print_insn_ftype print_insn)
3294 {
3295 gdbarch->print_insn = print_insn;
3296 }
3297
3298 CORE_ADDR
3299 gdbarch_skip_trampoline_code (struct gdbarch *gdbarch, struct frame_info *frame, CORE_ADDR pc)
3300 {
3301 gdb_assert (gdbarch != NULL);
3302 gdb_assert (gdbarch->skip_trampoline_code != NULL);
3303 if (gdbarch_debug >= 2)
3304 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_trampoline_code called\n");
3305 return gdbarch->skip_trampoline_code (frame, pc);
3306 }
3307
3308 void
3309 set_gdbarch_skip_trampoline_code (struct gdbarch *gdbarch,
3310 gdbarch_skip_trampoline_code_ftype skip_trampoline_code)
3311 {
3312 gdbarch->skip_trampoline_code = skip_trampoline_code;
3313 }
3314
3315 CORE_ADDR
3316 gdbarch_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
3317 {
3318 gdb_assert (gdbarch != NULL);
3319 gdb_assert (gdbarch->skip_solib_resolver != NULL);
3320 if (gdbarch_debug >= 2)
3321 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_solib_resolver called\n");
3322 return gdbarch->skip_solib_resolver (gdbarch, pc);
3323 }
3324
3325 void
3326 set_gdbarch_skip_solib_resolver (struct gdbarch *gdbarch,
3327 gdbarch_skip_solib_resolver_ftype skip_solib_resolver)
3328 {
3329 gdbarch->skip_solib_resolver = skip_solib_resolver;
3330 }
3331
3332 int
3333 gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch, CORE_ADDR pc, const char *name)
3334 {
3335 gdb_assert (gdbarch != NULL);
3336 gdb_assert (gdbarch->in_solib_return_trampoline != NULL);
3337 if (gdbarch_debug >= 2)
3338 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_solib_return_trampoline called\n");
3339 return gdbarch->in_solib_return_trampoline (gdbarch, pc, name);
3340 }
3341
3342 void
3343 set_gdbarch_in_solib_return_trampoline (struct gdbarch *gdbarch,
3344 gdbarch_in_solib_return_trampoline_ftype in_solib_return_trampoline)
3345 {
3346 gdbarch->in_solib_return_trampoline = in_solib_return_trampoline;
3347 }
3348
3349 bool
3350 gdbarch_in_indirect_branch_thunk (struct gdbarch *gdbarch, CORE_ADDR pc)
3351 {
3352 gdb_assert (gdbarch != NULL);
3353 gdb_assert (gdbarch->in_indirect_branch_thunk != NULL);
3354 if (gdbarch_debug >= 2)
3355 fprintf_unfiltered (gdb_stdlog, "gdbarch_in_indirect_branch_thunk called\n");
3356 return gdbarch->in_indirect_branch_thunk (gdbarch, pc);
3357 }
3358
3359 void
3360 set_gdbarch_in_indirect_branch_thunk (struct gdbarch *gdbarch,
3361 gdbarch_in_indirect_branch_thunk_ftype in_indirect_branch_thunk)
3362 {
3363 gdbarch->in_indirect_branch_thunk = in_indirect_branch_thunk;
3364 }
3365
3366 int
3367 gdbarch_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR addr)
3368 {
3369 gdb_assert (gdbarch != NULL);
3370 gdb_assert (gdbarch->stack_frame_destroyed_p != NULL);
3371 if (gdbarch_debug >= 2)
3372 fprintf_unfiltered (gdb_stdlog, "gdbarch_stack_frame_destroyed_p called\n");
3373 return gdbarch->stack_frame_destroyed_p (gdbarch, addr);
3374 }
3375
3376 void
3377 set_gdbarch_stack_frame_destroyed_p (struct gdbarch *gdbarch,
3378 gdbarch_stack_frame_destroyed_p_ftype stack_frame_destroyed_p)
3379 {
3380 gdbarch->stack_frame_destroyed_p = stack_frame_destroyed_p;
3381 }
3382
3383 int
3384 gdbarch_elf_make_msymbol_special_p (struct gdbarch *gdbarch)
3385 {
3386 gdb_assert (gdbarch != NULL);
3387 return gdbarch->elf_make_msymbol_special != NULL;
3388 }
3389
3390 void
3391 gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch, asymbol *sym, struct minimal_symbol *msym)
3392 {
3393 gdb_assert (gdbarch != NULL);
3394 gdb_assert (gdbarch->elf_make_msymbol_special != NULL);
3395 if (gdbarch_debug >= 2)
3396 fprintf_unfiltered (gdb_stdlog, "gdbarch_elf_make_msymbol_special called\n");
3397 gdbarch->elf_make_msymbol_special (sym, msym);
3398 }
3399
3400 void
3401 set_gdbarch_elf_make_msymbol_special (struct gdbarch *gdbarch,
3402 gdbarch_elf_make_msymbol_special_ftype elf_make_msymbol_special)
3403 {
3404 gdbarch->elf_make_msymbol_special = elf_make_msymbol_special;
3405 }
3406
3407 void
3408 gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch, int val, struct minimal_symbol *msym)
3409 {
3410 gdb_assert (gdbarch != NULL);
3411 gdb_assert (gdbarch->coff_make_msymbol_special != NULL);
3412 if (gdbarch_debug >= 2)
3413 fprintf_unfiltered (gdb_stdlog, "gdbarch_coff_make_msymbol_special called\n");
3414 gdbarch->coff_make_msymbol_special (val, msym);
3415 }
3416
3417 void
3418 set_gdbarch_coff_make_msymbol_special (struct gdbarch *gdbarch,
3419 gdbarch_coff_make_msymbol_special_ftype coff_make_msymbol_special)
3420 {
3421 gdbarch->coff_make_msymbol_special = coff_make_msymbol_special;
3422 }
3423
3424 void
3425 gdbarch_make_symbol_special (struct gdbarch *gdbarch, struct symbol *sym, struct objfile *objfile)
3426 {
3427 gdb_assert (gdbarch != NULL);
3428 gdb_assert (gdbarch->make_symbol_special != NULL);
3429 if (gdbarch_debug >= 2)
3430 fprintf_unfiltered (gdb_stdlog, "gdbarch_make_symbol_special called\n");
3431 gdbarch->make_symbol_special (sym, objfile);
3432 }
3433
3434 void
3435 set_gdbarch_make_symbol_special (struct gdbarch *gdbarch,
3436 gdbarch_make_symbol_special_ftype make_symbol_special)
3437 {
3438 gdbarch->make_symbol_special = make_symbol_special;
3439 }
3440
3441 CORE_ADDR
3442 gdbarch_adjust_dwarf2_addr (struct gdbarch *gdbarch, CORE_ADDR pc)
3443 {
3444 gdb_assert (gdbarch != NULL);
3445 gdb_assert (gdbarch->adjust_dwarf2_addr != NULL);
3446 if (gdbarch_debug >= 2)
3447 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_dwarf2_addr called\n");
3448 return gdbarch->adjust_dwarf2_addr (pc);
3449 }
3450
3451 void
3452 set_gdbarch_adjust_dwarf2_addr (struct gdbarch *gdbarch,
3453 gdbarch_adjust_dwarf2_addr_ftype adjust_dwarf2_addr)
3454 {
3455 gdbarch->adjust_dwarf2_addr = adjust_dwarf2_addr;
3456 }
3457
3458 CORE_ADDR
3459 gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch, CORE_ADDR addr, int rel)
3460 {
3461 gdb_assert (gdbarch != NULL);
3462 gdb_assert (gdbarch->adjust_dwarf2_line != NULL);
3463 if (gdbarch_debug >= 2)
3464 fprintf_unfiltered (gdb_stdlog, "gdbarch_adjust_dwarf2_line called\n");
3465 return gdbarch->adjust_dwarf2_line (addr, rel);
3466 }
3467
3468 void
3469 set_gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch,
3470 gdbarch_adjust_dwarf2_line_ftype adjust_dwarf2_line)
3471 {
3472 gdbarch->adjust_dwarf2_line = adjust_dwarf2_line;
3473 }
3474
3475 int
3476 gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch)
3477 {
3478 gdb_assert (gdbarch != NULL);
3479 /* Skip verify of cannot_step_breakpoint, invalid_p == 0 */
3480 if (gdbarch_debug >= 2)
3481 fprintf_unfiltered (gdb_stdlog, "gdbarch_cannot_step_breakpoint called\n");
3482 return gdbarch->cannot_step_breakpoint;
3483 }
3484
3485 void
3486 set_gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch,
3487 int cannot_step_breakpoint)
3488 {
3489 gdbarch->cannot_step_breakpoint = cannot_step_breakpoint;
3490 }
3491
3492 int
3493 gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch)
3494 {
3495 gdb_assert (gdbarch != NULL);
3496 /* Skip verify of have_nonsteppable_watchpoint, invalid_p == 0 */
3497 if (gdbarch_debug >= 2)
3498 fprintf_unfiltered (gdb_stdlog, "gdbarch_have_nonsteppable_watchpoint called\n");
3499 return gdbarch->have_nonsteppable_watchpoint;
3500 }
3501
3502 void
3503 set_gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch,
3504 int have_nonsteppable_watchpoint)
3505 {
3506 gdbarch->have_nonsteppable_watchpoint = have_nonsteppable_watchpoint;
3507 }
3508
3509 int
3510 gdbarch_address_class_type_flags_p (struct gdbarch *gdbarch)
3511 {
3512 gdb_assert (gdbarch != NULL);
3513 return gdbarch->address_class_type_flags != NULL;
3514 }
3515
3516 int
3517 gdbarch_address_class_type_flags (struct gdbarch *gdbarch, int byte_size, int dwarf2_addr_class)
3518 {
3519 gdb_assert (gdbarch != NULL);
3520 gdb_assert (gdbarch->address_class_type_flags != NULL);
3521 if (gdbarch_debug >= 2)
3522 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags called\n");
3523 return gdbarch->address_class_type_flags (byte_size, dwarf2_addr_class);
3524 }
3525
3526 void
3527 set_gdbarch_address_class_type_flags (struct gdbarch *gdbarch,
3528 gdbarch_address_class_type_flags_ftype address_class_type_flags)
3529 {
3530 gdbarch->address_class_type_flags = address_class_type_flags;
3531 }
3532
3533 int
3534 gdbarch_address_class_type_flags_to_name_p (struct gdbarch *gdbarch)
3535 {
3536 gdb_assert (gdbarch != NULL);
3537 return gdbarch->address_class_type_flags_to_name != NULL;
3538 }
3539
3540 const char *
3541 gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
3542 {
3543 gdb_assert (gdbarch != NULL);
3544 gdb_assert (gdbarch->address_class_type_flags_to_name != NULL);
3545 if (gdbarch_debug >= 2)
3546 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_type_flags_to_name called\n");
3547 return gdbarch->address_class_type_flags_to_name (gdbarch, type_flags);
3548 }
3549
3550 void
3551 set_gdbarch_address_class_type_flags_to_name (struct gdbarch *gdbarch,
3552 gdbarch_address_class_type_flags_to_name_ftype address_class_type_flags_to_name)
3553 {
3554 gdbarch->address_class_type_flags_to_name = address_class_type_flags_to_name;
3555 }
3556
3557 bool
3558 gdbarch_execute_dwarf_cfa_vendor_op (struct gdbarch *gdbarch, gdb_byte op, struct dwarf2_frame_state *fs)
3559 {
3560 gdb_assert (gdbarch != NULL);
3561 gdb_assert (gdbarch->execute_dwarf_cfa_vendor_op != NULL);
3562 if (gdbarch_debug >= 2)
3563 fprintf_unfiltered (gdb_stdlog, "gdbarch_execute_dwarf_cfa_vendor_op called\n");
3564 return gdbarch->execute_dwarf_cfa_vendor_op (gdbarch, op, fs);
3565 }
3566
3567 void
3568 set_gdbarch_execute_dwarf_cfa_vendor_op (struct gdbarch *gdbarch,
3569 gdbarch_execute_dwarf_cfa_vendor_op_ftype execute_dwarf_cfa_vendor_op)
3570 {
3571 gdbarch->execute_dwarf_cfa_vendor_op = execute_dwarf_cfa_vendor_op;
3572 }
3573
3574 int
3575 gdbarch_address_class_name_to_type_flags_p (struct gdbarch *gdbarch)
3576 {
3577 gdb_assert (gdbarch != NULL);
3578 return gdbarch->address_class_name_to_type_flags != NULL;
3579 }
3580
3581 int
3582 gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch, const char *name, int *type_flags_ptr)
3583 {
3584 gdb_assert (gdbarch != NULL);
3585 gdb_assert (gdbarch->address_class_name_to_type_flags != NULL);
3586 if (gdbarch_debug >= 2)
3587 fprintf_unfiltered (gdb_stdlog, "gdbarch_address_class_name_to_type_flags called\n");
3588 return gdbarch->address_class_name_to_type_flags (gdbarch, name, type_flags_ptr);
3589 }
3590
3591 void
3592 set_gdbarch_address_class_name_to_type_flags (struct gdbarch *gdbarch,
3593 gdbarch_address_class_name_to_type_flags_ftype address_class_name_to_type_flags)
3594 {
3595 gdbarch->address_class_name_to_type_flags = address_class_name_to_type_flags;
3596 }
3597
3598 int
3599 gdbarch_register_reggroup_p (struct gdbarch *gdbarch, int regnum, struct reggroup *reggroup)
3600 {
3601 gdb_assert (gdbarch != NULL);
3602 gdb_assert (gdbarch->register_reggroup_p != NULL);
3603 if (gdbarch_debug >= 2)
3604 fprintf_unfiltered (gdb_stdlog, "gdbarch_register_reggroup_p called\n");
3605 return gdbarch->register_reggroup_p (gdbarch, regnum, reggroup);
3606 }
3607
3608 void
3609 set_gdbarch_register_reggroup_p (struct gdbarch *gdbarch,
3610 gdbarch_register_reggroup_p_ftype register_reggroup_p)
3611 {
3612 gdbarch->register_reggroup_p = register_reggroup_p;
3613 }
3614
3615 int
3616 gdbarch_fetch_pointer_argument_p (struct gdbarch *gdbarch)
3617 {
3618 gdb_assert (gdbarch != NULL);
3619 return gdbarch->fetch_pointer_argument != NULL;
3620 }
3621
3622 CORE_ADDR
3623 gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch, struct frame_info *frame, int argi, struct type *type)
3624 {
3625 gdb_assert (gdbarch != NULL);
3626 gdb_assert (gdbarch->fetch_pointer_argument != NULL);
3627 if (gdbarch_debug >= 2)
3628 fprintf_unfiltered (gdb_stdlog, "gdbarch_fetch_pointer_argument called\n");
3629 return gdbarch->fetch_pointer_argument (frame, argi, type);
3630 }
3631
3632 void
3633 set_gdbarch_fetch_pointer_argument (struct gdbarch *gdbarch,
3634 gdbarch_fetch_pointer_argument_ftype fetch_pointer_argument)
3635 {
3636 gdbarch->fetch_pointer_argument = fetch_pointer_argument;
3637 }
3638
3639 int
3640 gdbarch_iterate_over_regset_sections_p (struct gdbarch *gdbarch)
3641 {
3642 gdb_assert (gdbarch != NULL);
3643 return gdbarch->iterate_over_regset_sections != NULL;
3644 }
3645
3646 void
3647 gdbarch_iterate_over_regset_sections (struct gdbarch *gdbarch, iterate_over_regset_sections_cb *cb, void *cb_data, const struct regcache *regcache)
3648 {
3649 gdb_assert (gdbarch != NULL);
3650 gdb_assert (gdbarch->iterate_over_regset_sections != NULL);
3651 if (gdbarch_debug >= 2)
3652 fprintf_unfiltered (gdb_stdlog, "gdbarch_iterate_over_regset_sections called\n");
3653 gdbarch->iterate_over_regset_sections (gdbarch, cb, cb_data, regcache);
3654 }
3655
3656 void
3657 set_gdbarch_iterate_over_regset_sections (struct gdbarch *gdbarch,
3658 gdbarch_iterate_over_regset_sections_ftype iterate_over_regset_sections)
3659 {
3660 gdbarch->iterate_over_regset_sections = iterate_over_regset_sections;
3661 }
3662
3663 int
3664 gdbarch_make_corefile_notes_p (struct gdbarch *gdbarch)
3665 {
3666 gdb_assert (gdbarch != NULL);
3667 return gdbarch->make_corefile_notes != NULL;
3668 }
3669
3670 char *
3671 gdbarch_make_corefile_notes (struct gdbarch *gdbarch, bfd *obfd, int *note_size)
3672 {
3673 gdb_assert (gdbarch != NULL);
3674 gdb_assert (gdbarch->make_corefile_notes != NULL);
3675 if (gdbarch_debug >= 2)
3676 fprintf_unfiltered (gdb_stdlog, "gdbarch_make_corefile_notes called\n");
3677 return gdbarch->make_corefile_notes (gdbarch, obfd, note_size);
3678 }
3679
3680 void
3681 set_gdbarch_make_corefile_notes (struct gdbarch *gdbarch,
3682 gdbarch_make_corefile_notes_ftype make_corefile_notes)
3683 {
3684 gdbarch->make_corefile_notes = make_corefile_notes;
3685 }
3686
3687 int
3688 gdbarch_find_memory_regions_p (struct gdbarch *gdbarch)
3689 {
3690 gdb_assert (gdbarch != NULL);
3691 return gdbarch->find_memory_regions != NULL;
3692 }
3693
3694 int
3695 gdbarch_find_memory_regions (struct gdbarch *gdbarch, find_memory_region_ftype func, void *data)
3696 {
3697 gdb_assert (gdbarch != NULL);
3698 gdb_assert (gdbarch->find_memory_regions != NULL);
3699 if (gdbarch_debug >= 2)
3700 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_memory_regions called\n");
3701 return gdbarch->find_memory_regions (gdbarch, func, data);
3702 }
3703
3704 void
3705 set_gdbarch_find_memory_regions (struct gdbarch *gdbarch,
3706 gdbarch_find_memory_regions_ftype find_memory_regions)
3707 {
3708 gdbarch->find_memory_regions = find_memory_regions;
3709 }
3710
3711 int
3712 gdbarch_core_xfer_shared_libraries_p (struct gdbarch *gdbarch)
3713 {
3714 gdb_assert (gdbarch != NULL);
3715 return gdbarch->core_xfer_shared_libraries != NULL;
3716 }
3717
3718 ULONGEST
3719 gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
3720 {
3721 gdb_assert (gdbarch != NULL);
3722 gdb_assert (gdbarch->core_xfer_shared_libraries != NULL);
3723 if (gdbarch_debug >= 2)
3724 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries called\n");
3725 return gdbarch->core_xfer_shared_libraries (gdbarch, readbuf, offset, len);
3726 }
3727
3728 void
3729 set_gdbarch_core_xfer_shared_libraries (struct gdbarch *gdbarch,
3730 gdbarch_core_xfer_shared_libraries_ftype core_xfer_shared_libraries)
3731 {
3732 gdbarch->core_xfer_shared_libraries = core_xfer_shared_libraries;
3733 }
3734
3735 int
3736 gdbarch_core_xfer_shared_libraries_aix_p (struct gdbarch *gdbarch)
3737 {
3738 gdb_assert (gdbarch != NULL);
3739 return gdbarch->core_xfer_shared_libraries_aix != NULL;
3740 }
3741
3742 ULONGEST
3743 gdbarch_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
3744 {
3745 gdb_assert (gdbarch != NULL);
3746 gdb_assert (gdbarch->core_xfer_shared_libraries_aix != NULL);
3747 if (gdbarch_debug >= 2)
3748 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_shared_libraries_aix called\n");
3749 return gdbarch->core_xfer_shared_libraries_aix (gdbarch, readbuf, offset, len);
3750 }
3751
3752 void
3753 set_gdbarch_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch,
3754 gdbarch_core_xfer_shared_libraries_aix_ftype core_xfer_shared_libraries_aix)
3755 {
3756 gdbarch->core_xfer_shared_libraries_aix = core_xfer_shared_libraries_aix;
3757 }
3758
3759 int
3760 gdbarch_core_pid_to_str_p (struct gdbarch *gdbarch)
3761 {
3762 gdb_assert (gdbarch != NULL);
3763 return gdbarch->core_pid_to_str != NULL;
3764 }
3765
3766 std::string
3767 gdbarch_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid)
3768 {
3769 gdb_assert (gdbarch != NULL);
3770 gdb_assert (gdbarch->core_pid_to_str != NULL);
3771 if (gdbarch_debug >= 2)
3772 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_pid_to_str called\n");
3773 return gdbarch->core_pid_to_str (gdbarch, ptid);
3774 }
3775
3776 void
3777 set_gdbarch_core_pid_to_str (struct gdbarch *gdbarch,
3778 gdbarch_core_pid_to_str_ftype core_pid_to_str)
3779 {
3780 gdbarch->core_pid_to_str = core_pid_to_str;
3781 }
3782
3783 int
3784 gdbarch_core_thread_name_p (struct gdbarch *gdbarch)
3785 {
3786 gdb_assert (gdbarch != NULL);
3787 return gdbarch->core_thread_name != NULL;
3788 }
3789
3790 const char *
3791 gdbarch_core_thread_name (struct gdbarch *gdbarch, struct thread_info *thr)
3792 {
3793 gdb_assert (gdbarch != NULL);
3794 gdb_assert (gdbarch->core_thread_name != NULL);
3795 if (gdbarch_debug >= 2)
3796 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_thread_name called\n");
3797 return gdbarch->core_thread_name (gdbarch, thr);
3798 }
3799
3800 void
3801 set_gdbarch_core_thread_name (struct gdbarch *gdbarch,
3802 gdbarch_core_thread_name_ftype core_thread_name)
3803 {
3804 gdbarch->core_thread_name = core_thread_name;
3805 }
3806
3807 int
3808 gdbarch_core_xfer_siginfo_p (struct gdbarch *gdbarch)
3809 {
3810 gdb_assert (gdbarch != NULL);
3811 return gdbarch->core_xfer_siginfo != NULL;
3812 }
3813
3814 LONGEST
3815 gdbarch_core_xfer_siginfo (struct gdbarch *gdbarch, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
3816 {
3817 gdb_assert (gdbarch != NULL);
3818 gdb_assert (gdbarch->core_xfer_siginfo != NULL);
3819 if (gdbarch_debug >= 2)
3820 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_xfer_siginfo called\n");
3821 return gdbarch->core_xfer_siginfo (gdbarch, readbuf, offset, len);
3822 }
3823
3824 void
3825 set_gdbarch_core_xfer_siginfo (struct gdbarch *gdbarch,
3826 gdbarch_core_xfer_siginfo_ftype core_xfer_siginfo)
3827 {
3828 gdbarch->core_xfer_siginfo = core_xfer_siginfo;
3829 }
3830
3831 int
3832 gdbarch_gcore_bfd_target_p (struct gdbarch *gdbarch)
3833 {
3834 gdb_assert (gdbarch != NULL);
3835 return gdbarch->gcore_bfd_target != 0;
3836 }
3837
3838 const char *
3839 gdbarch_gcore_bfd_target (struct gdbarch *gdbarch)
3840 {
3841 gdb_assert (gdbarch != NULL);
3842 /* Check variable changed from pre-default. */
3843 gdb_assert (gdbarch->gcore_bfd_target != 0);
3844 if (gdbarch_debug >= 2)
3845 fprintf_unfiltered (gdb_stdlog, "gdbarch_gcore_bfd_target called\n");
3846 return gdbarch->gcore_bfd_target;
3847 }
3848
3849 void
3850 set_gdbarch_gcore_bfd_target (struct gdbarch *gdbarch,
3851 const char * gcore_bfd_target)
3852 {
3853 gdbarch->gcore_bfd_target = gcore_bfd_target;
3854 }
3855
3856 int
3857 gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch)
3858 {
3859 gdb_assert (gdbarch != NULL);
3860 /* Skip verify of vtable_function_descriptors, invalid_p == 0 */
3861 if (gdbarch_debug >= 2)
3862 fprintf_unfiltered (gdb_stdlog, "gdbarch_vtable_function_descriptors called\n");
3863 return gdbarch->vtable_function_descriptors;
3864 }
3865
3866 void
3867 set_gdbarch_vtable_function_descriptors (struct gdbarch *gdbarch,
3868 int vtable_function_descriptors)
3869 {
3870 gdbarch->vtable_function_descriptors = vtable_function_descriptors;
3871 }
3872
3873 int
3874 gdbarch_vbit_in_delta (struct gdbarch *gdbarch)
3875 {
3876 gdb_assert (gdbarch != NULL);
3877 /* Skip verify of vbit_in_delta, invalid_p == 0 */
3878 if (gdbarch_debug >= 2)
3879 fprintf_unfiltered (gdb_stdlog, "gdbarch_vbit_in_delta called\n");
3880 return gdbarch->vbit_in_delta;
3881 }
3882
3883 void
3884 set_gdbarch_vbit_in_delta (struct gdbarch *gdbarch,
3885 int vbit_in_delta)
3886 {
3887 gdbarch->vbit_in_delta = vbit_in_delta;
3888 }
3889
3890 void
3891 gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch, struct regcache *regcache)
3892 {
3893 gdb_assert (gdbarch != NULL);
3894 gdb_assert (gdbarch->skip_permanent_breakpoint != NULL);
3895 if (gdbarch_debug >= 2)
3896 fprintf_unfiltered (gdb_stdlog, "gdbarch_skip_permanent_breakpoint called\n");
3897 gdbarch->skip_permanent_breakpoint (regcache);
3898 }
3899
3900 void
3901 set_gdbarch_skip_permanent_breakpoint (struct gdbarch *gdbarch,
3902 gdbarch_skip_permanent_breakpoint_ftype skip_permanent_breakpoint)
3903 {
3904 gdbarch->skip_permanent_breakpoint = skip_permanent_breakpoint;
3905 }
3906
3907 int
3908 gdbarch_max_insn_length_p (struct gdbarch *gdbarch)
3909 {
3910 gdb_assert (gdbarch != NULL);
3911 return gdbarch->max_insn_length != 0;
3912 }
3913
3914 ULONGEST
3915 gdbarch_max_insn_length (struct gdbarch *gdbarch)
3916 {
3917 gdb_assert (gdbarch != NULL);
3918 /* Check variable changed from pre-default. */
3919 gdb_assert (gdbarch->max_insn_length != 0);
3920 if (gdbarch_debug >= 2)
3921 fprintf_unfiltered (gdb_stdlog, "gdbarch_max_insn_length called\n");
3922 return gdbarch->max_insn_length;
3923 }
3924
3925 void
3926 set_gdbarch_max_insn_length (struct gdbarch *gdbarch,
3927 ULONGEST max_insn_length)
3928 {
3929 gdbarch->max_insn_length = max_insn_length;
3930 }
3931
3932 int
3933 gdbarch_displaced_step_copy_insn_p (struct gdbarch *gdbarch)
3934 {
3935 gdb_assert (gdbarch != NULL);
3936 return gdbarch->displaced_step_copy_insn != NULL;
3937 }
3938
3939 displaced_step_closure_up
3940 gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, CORE_ADDR from, CORE_ADDR to, struct regcache *regs)
3941 {
3942 gdb_assert (gdbarch != NULL);
3943 gdb_assert (gdbarch->displaced_step_copy_insn != NULL);
3944 if (gdbarch_debug >= 2)
3945 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_copy_insn called\n");
3946 return gdbarch->displaced_step_copy_insn (gdbarch, from, to, regs);
3947 }
3948
3949 void
3950 set_gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch,
3951 gdbarch_displaced_step_copy_insn_ftype displaced_step_copy_insn)
3952 {
3953 gdbarch->displaced_step_copy_insn = displaced_step_copy_insn;
3954 }
3955
3956 int
3957 gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, struct displaced_step_closure *closure)
3958 {
3959 gdb_assert (gdbarch != NULL);
3960 gdb_assert (gdbarch->displaced_step_hw_singlestep != NULL);
3961 if (gdbarch_debug >= 2)
3962 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_hw_singlestep called\n");
3963 return gdbarch->displaced_step_hw_singlestep (gdbarch, closure);
3964 }
3965
3966 void
3967 set_gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
3968 gdbarch_displaced_step_hw_singlestep_ftype displaced_step_hw_singlestep)
3969 {
3970 gdbarch->displaced_step_hw_singlestep = displaced_step_hw_singlestep;
3971 }
3972
3973 int
3974 gdbarch_displaced_step_fixup_p (struct gdbarch *gdbarch)
3975 {
3976 gdb_assert (gdbarch != NULL);
3977 return gdbarch->displaced_step_fixup != NULL;
3978 }
3979
3980 void
3981 gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, struct displaced_step_closure *closure, CORE_ADDR from, CORE_ADDR to, struct regcache *regs)
3982 {
3983 gdb_assert (gdbarch != NULL);
3984 gdb_assert (gdbarch->displaced_step_fixup != NULL);
3985 /* Do not check predicate: gdbarch->displaced_step_fixup != NULL, allow call. */
3986 if (gdbarch_debug >= 2)
3987 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_fixup called\n");
3988 gdbarch->displaced_step_fixup (gdbarch, closure, from, to, regs);
3989 }
3990
3991 void
3992 set_gdbarch_displaced_step_fixup (struct gdbarch *gdbarch,
3993 gdbarch_displaced_step_fixup_ftype displaced_step_fixup)
3994 {
3995 gdbarch->displaced_step_fixup = displaced_step_fixup;
3996 }
3997
3998 CORE_ADDR
3999 gdbarch_displaced_step_location (struct gdbarch *gdbarch)
4000 {
4001 gdb_assert (gdbarch != NULL);
4002 gdb_assert (gdbarch->displaced_step_location != NULL);
4003 if (gdbarch_debug >= 2)
4004 fprintf_unfiltered (gdb_stdlog, "gdbarch_displaced_step_location called\n");
4005 return gdbarch->displaced_step_location (gdbarch);
4006 }
4007
4008 void
4009 set_gdbarch_displaced_step_location (struct gdbarch *gdbarch,
4010 gdbarch_displaced_step_location_ftype displaced_step_location)
4011 {
4012 gdbarch->displaced_step_location = displaced_step_location;
4013 }
4014
4015 int
4016 gdbarch_relocate_instruction_p (struct gdbarch *gdbarch)
4017 {
4018 gdb_assert (gdbarch != NULL);
4019 return gdbarch->relocate_instruction != NULL;
4020 }
4021
4022 void
4023 gdbarch_relocate_instruction (struct gdbarch *gdbarch, CORE_ADDR *to, CORE_ADDR from)
4024 {
4025 gdb_assert (gdbarch != NULL);
4026 gdb_assert (gdbarch->relocate_instruction != NULL);
4027 /* Do not check predicate: gdbarch->relocate_instruction != NULL, allow call. */
4028 if (gdbarch_debug >= 2)
4029 fprintf_unfiltered (gdb_stdlog, "gdbarch_relocate_instruction called\n");
4030 gdbarch->relocate_instruction (gdbarch, to, from);
4031 }
4032
4033 void
4034 set_gdbarch_relocate_instruction (struct gdbarch *gdbarch,
4035 gdbarch_relocate_instruction_ftype relocate_instruction)
4036 {
4037 gdbarch->relocate_instruction = relocate_instruction;
4038 }
4039
4040 int
4041 gdbarch_overlay_update_p (struct gdbarch *gdbarch)
4042 {
4043 gdb_assert (gdbarch != NULL);
4044 return gdbarch->overlay_update != NULL;
4045 }
4046
4047 void
4048 gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect)
4049 {
4050 gdb_assert (gdbarch != NULL);
4051 gdb_assert (gdbarch->overlay_update != NULL);
4052 if (gdbarch_debug >= 2)
4053 fprintf_unfiltered (gdb_stdlog, "gdbarch_overlay_update called\n");
4054 gdbarch->overlay_update (osect);
4055 }
4056
4057 void
4058 set_gdbarch_overlay_update (struct gdbarch *gdbarch,
4059 gdbarch_overlay_update_ftype overlay_update)
4060 {
4061 gdbarch->overlay_update = overlay_update;
4062 }
4063
4064 int
4065 gdbarch_core_read_description_p (struct gdbarch *gdbarch)
4066 {
4067 gdb_assert (gdbarch != NULL);
4068 return gdbarch->core_read_description != NULL;
4069 }
4070
4071 const struct target_desc *
4072 gdbarch_core_read_description (struct gdbarch *gdbarch, struct target_ops *target, bfd *abfd)
4073 {
4074 gdb_assert (gdbarch != NULL);
4075 gdb_assert (gdbarch->core_read_description != NULL);
4076 if (gdbarch_debug >= 2)
4077 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_read_description called\n");
4078 return gdbarch->core_read_description (gdbarch, target, abfd);
4079 }
4080
4081 void
4082 set_gdbarch_core_read_description (struct gdbarch *gdbarch,
4083 gdbarch_core_read_description_ftype core_read_description)
4084 {
4085 gdbarch->core_read_description = core_read_description;
4086 }
4087
4088 int
4089 gdbarch_static_transform_name_p (struct gdbarch *gdbarch)
4090 {
4091 gdb_assert (gdbarch != NULL);
4092 return gdbarch->static_transform_name != NULL;
4093 }
4094
4095 const char *
4096 gdbarch_static_transform_name (struct gdbarch *gdbarch, const char *name)
4097 {
4098 gdb_assert (gdbarch != NULL);
4099 gdb_assert (gdbarch->static_transform_name != NULL);
4100 if (gdbarch_debug >= 2)
4101 fprintf_unfiltered (gdb_stdlog, "gdbarch_static_transform_name called\n");
4102 return gdbarch->static_transform_name (name);
4103 }
4104
4105 void
4106 set_gdbarch_static_transform_name (struct gdbarch *gdbarch,
4107 gdbarch_static_transform_name_ftype static_transform_name)
4108 {
4109 gdbarch->static_transform_name = static_transform_name;
4110 }
4111
4112 int
4113 gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch)
4114 {
4115 gdb_assert (gdbarch != NULL);
4116 /* Skip verify of sofun_address_maybe_missing, invalid_p == 0 */
4117 if (gdbarch_debug >= 2)
4118 fprintf_unfiltered (gdb_stdlog, "gdbarch_sofun_address_maybe_missing called\n");
4119 return gdbarch->sofun_address_maybe_missing;
4120 }
4121
4122 void
4123 set_gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch,
4124 int sofun_address_maybe_missing)
4125 {
4126 gdbarch->sofun_address_maybe_missing = sofun_address_maybe_missing;
4127 }
4128
4129 int
4130 gdbarch_process_record_p (struct gdbarch *gdbarch)
4131 {
4132 gdb_assert (gdbarch != NULL);
4133 return gdbarch->process_record != NULL;
4134 }
4135
4136 int
4137 gdbarch_process_record (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr)
4138 {
4139 gdb_assert (gdbarch != NULL);
4140 gdb_assert (gdbarch->process_record != NULL);
4141 if (gdbarch_debug >= 2)
4142 fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record called\n");
4143 return gdbarch->process_record (gdbarch, regcache, addr);
4144 }
4145
4146 void
4147 set_gdbarch_process_record (struct gdbarch *gdbarch,
4148 gdbarch_process_record_ftype process_record)
4149 {
4150 gdbarch->process_record = process_record;
4151 }
4152
4153 int
4154 gdbarch_process_record_signal_p (struct gdbarch *gdbarch)
4155 {
4156 gdb_assert (gdbarch != NULL);
4157 return gdbarch->process_record_signal != NULL;
4158 }
4159
4160 int
4161 gdbarch_process_record_signal (struct gdbarch *gdbarch, struct regcache *regcache, enum gdb_signal signal)
4162 {
4163 gdb_assert (gdbarch != NULL);
4164 gdb_assert (gdbarch->process_record_signal != NULL);
4165 if (gdbarch_debug >= 2)
4166 fprintf_unfiltered (gdb_stdlog, "gdbarch_process_record_signal called\n");
4167 return gdbarch->process_record_signal (gdbarch, regcache, signal);
4168 }
4169
4170 void
4171 set_gdbarch_process_record_signal (struct gdbarch *gdbarch,
4172 gdbarch_process_record_signal_ftype process_record_signal)
4173 {
4174 gdbarch->process_record_signal = process_record_signal;
4175 }
4176
4177 int
4178 gdbarch_gdb_signal_from_target_p (struct gdbarch *gdbarch)
4179 {
4180 gdb_assert (gdbarch != NULL);
4181 return gdbarch->gdb_signal_from_target != NULL;
4182 }
4183
4184 enum gdb_signal
4185 gdbarch_gdb_signal_from_target (struct gdbarch *gdbarch, int signo)
4186 {
4187 gdb_assert (gdbarch != NULL);
4188 gdb_assert (gdbarch->gdb_signal_from_target != NULL);
4189 if (gdbarch_debug >= 2)
4190 fprintf_unfiltered (gdb_stdlog, "gdbarch_gdb_signal_from_target called\n");
4191 return gdbarch->gdb_signal_from_target (gdbarch, signo);
4192 }
4193
4194 void
4195 set_gdbarch_gdb_signal_from_target (struct gdbarch *gdbarch,
4196 gdbarch_gdb_signal_from_target_ftype gdb_signal_from_target)
4197 {
4198 gdbarch->gdb_signal_from_target = gdb_signal_from_target;
4199 }
4200
4201 int
4202 gdbarch_gdb_signal_to_target_p (struct gdbarch *gdbarch)
4203 {
4204 gdb_assert (gdbarch != NULL);
4205 return gdbarch->gdb_signal_to_target != NULL;
4206 }
4207
4208 int
4209 gdbarch_gdb_signal_to_target (struct gdbarch *gdbarch, enum gdb_signal signal)
4210 {
4211 gdb_assert (gdbarch != NULL);
4212 gdb_assert (gdbarch->gdb_signal_to_target != NULL);
4213 if (gdbarch_debug >= 2)
4214 fprintf_unfiltered (gdb_stdlog, "gdbarch_gdb_signal_to_target called\n");
4215 return gdbarch->gdb_signal_to_target (gdbarch, signal);
4216 }
4217
4218 void
4219 set_gdbarch_gdb_signal_to_target (struct gdbarch *gdbarch,
4220 gdbarch_gdb_signal_to_target_ftype gdb_signal_to_target)
4221 {
4222 gdbarch->gdb_signal_to_target = gdb_signal_to_target;
4223 }
4224
4225 int
4226 gdbarch_get_siginfo_type_p (struct gdbarch *gdbarch)
4227 {
4228 gdb_assert (gdbarch != NULL);
4229 return gdbarch->get_siginfo_type != NULL;
4230 }
4231
4232 struct type *
4233 gdbarch_get_siginfo_type (struct gdbarch *gdbarch)
4234 {
4235 gdb_assert (gdbarch != NULL);
4236 gdb_assert (gdbarch->get_siginfo_type != NULL);
4237 if (gdbarch_debug >= 2)
4238 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_siginfo_type called\n");
4239 return gdbarch->get_siginfo_type (gdbarch);
4240 }
4241
4242 void
4243 set_gdbarch_get_siginfo_type (struct gdbarch *gdbarch,
4244 gdbarch_get_siginfo_type_ftype get_siginfo_type)
4245 {
4246 gdbarch->get_siginfo_type = get_siginfo_type;
4247 }
4248
4249 int
4250 gdbarch_record_special_symbol_p (struct gdbarch *gdbarch)
4251 {
4252 gdb_assert (gdbarch != NULL);
4253 return gdbarch->record_special_symbol != NULL;
4254 }
4255
4256 void
4257 gdbarch_record_special_symbol (struct gdbarch *gdbarch, struct objfile *objfile, asymbol *sym)
4258 {
4259 gdb_assert (gdbarch != NULL);
4260 gdb_assert (gdbarch->record_special_symbol != NULL);
4261 if (gdbarch_debug >= 2)
4262 fprintf_unfiltered (gdb_stdlog, "gdbarch_record_special_symbol called\n");
4263 gdbarch->record_special_symbol (gdbarch, objfile, sym);
4264 }
4265
4266 void
4267 set_gdbarch_record_special_symbol (struct gdbarch *gdbarch,
4268 gdbarch_record_special_symbol_ftype record_special_symbol)
4269 {
4270 gdbarch->record_special_symbol = record_special_symbol;
4271 }
4272
4273 int
4274 gdbarch_get_syscall_number_p (struct gdbarch *gdbarch)
4275 {
4276 gdb_assert (gdbarch != NULL);
4277 return gdbarch->get_syscall_number != NULL;
4278 }
4279
4280 LONGEST
4281 gdbarch_get_syscall_number (struct gdbarch *gdbarch, thread_info *thread)
4282 {
4283 gdb_assert (gdbarch != NULL);
4284 gdb_assert (gdbarch->get_syscall_number != NULL);
4285 if (gdbarch_debug >= 2)
4286 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_syscall_number called\n");
4287 return gdbarch->get_syscall_number (gdbarch, thread);
4288 }
4289
4290 void
4291 set_gdbarch_get_syscall_number (struct gdbarch *gdbarch,
4292 gdbarch_get_syscall_number_ftype get_syscall_number)
4293 {
4294 gdbarch->get_syscall_number = get_syscall_number;
4295 }
4296
4297 const char *
4298 gdbarch_xml_syscall_file (struct gdbarch *gdbarch)
4299 {
4300 gdb_assert (gdbarch != NULL);
4301 /* Skip verify of xml_syscall_file, invalid_p == 0 */
4302 if (gdbarch_debug >= 2)
4303 fprintf_unfiltered (gdb_stdlog, "gdbarch_xml_syscall_file called\n");
4304 return gdbarch->xml_syscall_file;
4305 }
4306
4307 void
4308 set_gdbarch_xml_syscall_file (struct gdbarch *gdbarch,
4309 const char * xml_syscall_file)
4310 {
4311 gdbarch->xml_syscall_file = xml_syscall_file;
4312 }
4313
4314 struct syscalls_info *
4315 gdbarch_syscalls_info (struct gdbarch *gdbarch)
4316 {
4317 gdb_assert (gdbarch != NULL);
4318 /* Skip verify of syscalls_info, invalid_p == 0 */
4319 if (gdbarch_debug >= 2)
4320 fprintf_unfiltered (gdb_stdlog, "gdbarch_syscalls_info called\n");
4321 return gdbarch->syscalls_info;
4322 }
4323
4324 void
4325 set_gdbarch_syscalls_info (struct gdbarch *gdbarch,
4326 struct syscalls_info * syscalls_info)
4327 {
4328 gdbarch->syscalls_info = syscalls_info;
4329 }
4330
4331 const char *const *
4332 gdbarch_stap_integer_prefixes (struct gdbarch *gdbarch)
4333 {
4334 gdb_assert (gdbarch != NULL);
4335 /* Skip verify of stap_integer_prefixes, invalid_p == 0 */
4336 if (gdbarch_debug >= 2)
4337 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_prefixes called\n");
4338 return gdbarch->stap_integer_prefixes;
4339 }
4340
4341 void
4342 set_gdbarch_stap_integer_prefixes (struct gdbarch *gdbarch,
4343 const char *const * stap_integer_prefixes)
4344 {
4345 gdbarch->stap_integer_prefixes = stap_integer_prefixes;
4346 }
4347
4348 const char *const *
4349 gdbarch_stap_integer_suffixes (struct gdbarch *gdbarch)
4350 {
4351 gdb_assert (gdbarch != NULL);
4352 /* Skip verify of stap_integer_suffixes, invalid_p == 0 */
4353 if (gdbarch_debug >= 2)
4354 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_integer_suffixes called\n");
4355 return gdbarch->stap_integer_suffixes;
4356 }
4357
4358 void
4359 set_gdbarch_stap_integer_suffixes (struct gdbarch *gdbarch,
4360 const char *const * stap_integer_suffixes)
4361 {
4362 gdbarch->stap_integer_suffixes = stap_integer_suffixes;
4363 }
4364
4365 const char *const *
4366 gdbarch_stap_register_prefixes (struct gdbarch *gdbarch)
4367 {
4368 gdb_assert (gdbarch != NULL);
4369 /* Skip verify of stap_register_prefixes, invalid_p == 0 */
4370 if (gdbarch_debug >= 2)
4371 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_prefixes called\n");
4372 return gdbarch->stap_register_prefixes;
4373 }
4374
4375 void
4376 set_gdbarch_stap_register_prefixes (struct gdbarch *gdbarch,
4377 const char *const * stap_register_prefixes)
4378 {
4379 gdbarch->stap_register_prefixes = stap_register_prefixes;
4380 }
4381
4382 const char *const *
4383 gdbarch_stap_register_suffixes (struct gdbarch *gdbarch)
4384 {
4385 gdb_assert (gdbarch != NULL);
4386 /* Skip verify of stap_register_suffixes, invalid_p == 0 */
4387 if (gdbarch_debug >= 2)
4388 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_suffixes called\n");
4389 return gdbarch->stap_register_suffixes;
4390 }
4391
4392 void
4393 set_gdbarch_stap_register_suffixes (struct gdbarch *gdbarch,
4394 const char *const * stap_register_suffixes)
4395 {
4396 gdbarch->stap_register_suffixes = stap_register_suffixes;
4397 }
4398
4399 const char *const *
4400 gdbarch_stap_register_indirection_prefixes (struct gdbarch *gdbarch)
4401 {
4402 gdb_assert (gdbarch != NULL);
4403 /* Skip verify of stap_register_indirection_prefixes, invalid_p == 0 */
4404 if (gdbarch_debug >= 2)
4405 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_prefixes called\n");
4406 return gdbarch->stap_register_indirection_prefixes;
4407 }
4408
4409 void
4410 set_gdbarch_stap_register_indirection_prefixes (struct gdbarch *gdbarch,
4411 const char *const * stap_register_indirection_prefixes)
4412 {
4413 gdbarch->stap_register_indirection_prefixes = stap_register_indirection_prefixes;
4414 }
4415
4416 const char *const *
4417 gdbarch_stap_register_indirection_suffixes (struct gdbarch *gdbarch)
4418 {
4419 gdb_assert (gdbarch != NULL);
4420 /* Skip verify of stap_register_indirection_suffixes, invalid_p == 0 */
4421 if (gdbarch_debug >= 2)
4422 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_register_indirection_suffixes called\n");
4423 return gdbarch->stap_register_indirection_suffixes;
4424 }
4425
4426 void
4427 set_gdbarch_stap_register_indirection_suffixes (struct gdbarch *gdbarch,
4428 const char *const * stap_register_indirection_suffixes)
4429 {
4430 gdbarch->stap_register_indirection_suffixes = stap_register_indirection_suffixes;
4431 }
4432
4433 const char *
4434 gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch)
4435 {
4436 gdb_assert (gdbarch != NULL);
4437 /* Skip verify of stap_gdb_register_prefix, invalid_p == 0 */
4438 if (gdbarch_debug >= 2)
4439 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_prefix called\n");
4440 return gdbarch->stap_gdb_register_prefix;
4441 }
4442
4443 void
4444 set_gdbarch_stap_gdb_register_prefix (struct gdbarch *gdbarch,
4445 const char * stap_gdb_register_prefix)
4446 {
4447 gdbarch->stap_gdb_register_prefix = stap_gdb_register_prefix;
4448 }
4449
4450 const char *
4451 gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch)
4452 {
4453 gdb_assert (gdbarch != NULL);
4454 /* Skip verify of stap_gdb_register_suffix, invalid_p == 0 */
4455 if (gdbarch_debug >= 2)
4456 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_gdb_register_suffix called\n");
4457 return gdbarch->stap_gdb_register_suffix;
4458 }
4459
4460 void
4461 set_gdbarch_stap_gdb_register_suffix (struct gdbarch *gdbarch,
4462 const char * stap_gdb_register_suffix)
4463 {
4464 gdbarch->stap_gdb_register_suffix = stap_gdb_register_suffix;
4465 }
4466
4467 int
4468 gdbarch_stap_is_single_operand_p (struct gdbarch *gdbarch)
4469 {
4470 gdb_assert (gdbarch != NULL);
4471 return gdbarch->stap_is_single_operand != NULL;
4472 }
4473
4474 int
4475 gdbarch_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
4476 {
4477 gdb_assert (gdbarch != NULL);
4478 gdb_assert (gdbarch->stap_is_single_operand != NULL);
4479 if (gdbarch_debug >= 2)
4480 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_is_single_operand called\n");
4481 return gdbarch->stap_is_single_operand (gdbarch, s);
4482 }
4483
4484 void
4485 set_gdbarch_stap_is_single_operand (struct gdbarch *gdbarch,
4486 gdbarch_stap_is_single_operand_ftype stap_is_single_operand)
4487 {
4488 gdbarch->stap_is_single_operand = stap_is_single_operand;
4489 }
4490
4491 int
4492 gdbarch_stap_parse_special_token_p (struct gdbarch *gdbarch)
4493 {
4494 gdb_assert (gdbarch != NULL);
4495 return gdbarch->stap_parse_special_token != NULL;
4496 }
4497
4498 int
4499 gdbarch_stap_parse_special_token (struct gdbarch *gdbarch, struct stap_parse_info *p)
4500 {
4501 gdb_assert (gdbarch != NULL);
4502 gdb_assert (gdbarch->stap_parse_special_token != NULL);
4503 if (gdbarch_debug >= 2)
4504 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_parse_special_token called\n");
4505 return gdbarch->stap_parse_special_token (gdbarch, p);
4506 }
4507
4508 void
4509 set_gdbarch_stap_parse_special_token (struct gdbarch *gdbarch,
4510 gdbarch_stap_parse_special_token_ftype stap_parse_special_token)
4511 {
4512 gdbarch->stap_parse_special_token = stap_parse_special_token;
4513 }
4514
4515 int
4516 gdbarch_stap_adjust_register_p (struct gdbarch *gdbarch)
4517 {
4518 gdb_assert (gdbarch != NULL);
4519 return gdbarch->stap_adjust_register != NULL;
4520 }
4521
4522 std::string
4523 gdbarch_stap_adjust_register (struct gdbarch *gdbarch, struct stap_parse_info *p, const std::string &regname, int regnum)
4524 {
4525 gdb_assert (gdbarch != NULL);
4526 gdb_assert (gdbarch->stap_adjust_register != NULL);
4527 if (gdbarch_debug >= 2)
4528 fprintf_unfiltered (gdb_stdlog, "gdbarch_stap_adjust_register called\n");
4529 return gdbarch->stap_adjust_register (gdbarch, p, regname, regnum);
4530 }
4531
4532 void
4533 set_gdbarch_stap_adjust_register (struct gdbarch *gdbarch,
4534 gdbarch_stap_adjust_register_ftype stap_adjust_register)
4535 {
4536 gdbarch->stap_adjust_register = stap_adjust_register;
4537 }
4538
4539 int
4540 gdbarch_dtrace_parse_probe_argument_p (struct gdbarch *gdbarch)
4541 {
4542 gdb_assert (gdbarch != NULL);
4543 return gdbarch->dtrace_parse_probe_argument != NULL;
4544 }
4545
4546 void
4547 gdbarch_dtrace_parse_probe_argument (struct gdbarch *gdbarch, struct expr_builder *builder, int narg)
4548 {
4549 gdb_assert (gdbarch != NULL);
4550 gdb_assert (gdbarch->dtrace_parse_probe_argument != NULL);
4551 if (gdbarch_debug >= 2)
4552 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_parse_probe_argument called\n");
4553 gdbarch->dtrace_parse_probe_argument (gdbarch, builder, narg);
4554 }
4555
4556 void
4557 set_gdbarch_dtrace_parse_probe_argument (struct gdbarch *gdbarch,
4558 gdbarch_dtrace_parse_probe_argument_ftype dtrace_parse_probe_argument)
4559 {
4560 gdbarch->dtrace_parse_probe_argument = dtrace_parse_probe_argument;
4561 }
4562
4563 int
4564 gdbarch_dtrace_probe_is_enabled_p (struct gdbarch *gdbarch)
4565 {
4566 gdb_assert (gdbarch != NULL);
4567 return gdbarch->dtrace_probe_is_enabled != NULL;
4568 }
4569
4570 int
4571 gdbarch_dtrace_probe_is_enabled (struct gdbarch *gdbarch, CORE_ADDR addr)
4572 {
4573 gdb_assert (gdbarch != NULL);
4574 gdb_assert (gdbarch->dtrace_probe_is_enabled != NULL);
4575 if (gdbarch_debug >= 2)
4576 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_probe_is_enabled called\n");
4577 return gdbarch->dtrace_probe_is_enabled (gdbarch, addr);
4578 }
4579
4580 void
4581 set_gdbarch_dtrace_probe_is_enabled (struct gdbarch *gdbarch,
4582 gdbarch_dtrace_probe_is_enabled_ftype dtrace_probe_is_enabled)
4583 {
4584 gdbarch->dtrace_probe_is_enabled = dtrace_probe_is_enabled;
4585 }
4586
4587 int
4588 gdbarch_dtrace_enable_probe_p (struct gdbarch *gdbarch)
4589 {
4590 gdb_assert (gdbarch != NULL);
4591 return gdbarch->dtrace_enable_probe != NULL;
4592 }
4593
4594 void
4595 gdbarch_dtrace_enable_probe (struct gdbarch *gdbarch, CORE_ADDR addr)
4596 {
4597 gdb_assert (gdbarch != NULL);
4598 gdb_assert (gdbarch->dtrace_enable_probe != NULL);
4599 if (gdbarch_debug >= 2)
4600 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_enable_probe called\n");
4601 gdbarch->dtrace_enable_probe (gdbarch, addr);
4602 }
4603
4604 void
4605 set_gdbarch_dtrace_enable_probe (struct gdbarch *gdbarch,
4606 gdbarch_dtrace_enable_probe_ftype dtrace_enable_probe)
4607 {
4608 gdbarch->dtrace_enable_probe = dtrace_enable_probe;
4609 }
4610
4611 int
4612 gdbarch_dtrace_disable_probe_p (struct gdbarch *gdbarch)
4613 {
4614 gdb_assert (gdbarch != NULL);
4615 return gdbarch->dtrace_disable_probe != NULL;
4616 }
4617
4618 void
4619 gdbarch_dtrace_disable_probe (struct gdbarch *gdbarch, CORE_ADDR addr)
4620 {
4621 gdb_assert (gdbarch != NULL);
4622 gdb_assert (gdbarch->dtrace_disable_probe != NULL);
4623 if (gdbarch_debug >= 2)
4624 fprintf_unfiltered (gdb_stdlog, "gdbarch_dtrace_disable_probe called\n");
4625 gdbarch->dtrace_disable_probe (gdbarch, addr);
4626 }
4627
4628 void
4629 set_gdbarch_dtrace_disable_probe (struct gdbarch *gdbarch,
4630 gdbarch_dtrace_disable_probe_ftype dtrace_disable_probe)
4631 {
4632 gdbarch->dtrace_disable_probe = dtrace_disable_probe;
4633 }
4634
4635 int
4636 gdbarch_has_global_solist (struct gdbarch *gdbarch)
4637 {
4638 gdb_assert (gdbarch != NULL);
4639 /* Skip verify of has_global_solist, invalid_p == 0 */
4640 if (gdbarch_debug >= 2)
4641 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_solist called\n");
4642 return gdbarch->has_global_solist;
4643 }
4644
4645 void
4646 set_gdbarch_has_global_solist (struct gdbarch *gdbarch,
4647 int has_global_solist)
4648 {
4649 gdbarch->has_global_solist = has_global_solist;
4650 }
4651
4652 int
4653 gdbarch_has_global_breakpoints (struct gdbarch *gdbarch)
4654 {
4655 gdb_assert (gdbarch != NULL);
4656 /* Skip verify of has_global_breakpoints, invalid_p == 0 */
4657 if (gdbarch_debug >= 2)
4658 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_global_breakpoints called\n");
4659 return gdbarch->has_global_breakpoints;
4660 }
4661
4662 void
4663 set_gdbarch_has_global_breakpoints (struct gdbarch *gdbarch,
4664 int has_global_breakpoints)
4665 {
4666 gdbarch->has_global_breakpoints = has_global_breakpoints;
4667 }
4668
4669 int
4670 gdbarch_has_shared_address_space (struct gdbarch *gdbarch)
4671 {
4672 gdb_assert (gdbarch != NULL);
4673 gdb_assert (gdbarch->has_shared_address_space != NULL);
4674 if (gdbarch_debug >= 2)
4675 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_shared_address_space called\n");
4676 return gdbarch->has_shared_address_space (gdbarch);
4677 }
4678
4679 void
4680 set_gdbarch_has_shared_address_space (struct gdbarch *gdbarch,
4681 gdbarch_has_shared_address_space_ftype has_shared_address_space)
4682 {
4683 gdbarch->has_shared_address_space = has_shared_address_space;
4684 }
4685
4686 int
4687 gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr, std::string *msg)
4688 {
4689 gdb_assert (gdbarch != NULL);
4690 gdb_assert (gdbarch->fast_tracepoint_valid_at != NULL);
4691 if (gdbarch_debug >= 2)
4692 fprintf_unfiltered (gdb_stdlog, "gdbarch_fast_tracepoint_valid_at called\n");
4693 return gdbarch->fast_tracepoint_valid_at (gdbarch, addr, msg);
4694 }
4695
4696 void
4697 set_gdbarch_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
4698 gdbarch_fast_tracepoint_valid_at_ftype fast_tracepoint_valid_at)
4699 {
4700 gdbarch->fast_tracepoint_valid_at = fast_tracepoint_valid_at;
4701 }
4702
4703 void
4704 gdbarch_guess_tracepoint_registers (struct gdbarch *gdbarch, struct regcache *regcache, CORE_ADDR addr)
4705 {
4706 gdb_assert (gdbarch != NULL);
4707 gdb_assert (gdbarch->guess_tracepoint_registers != NULL);
4708 if (gdbarch_debug >= 2)
4709 fprintf_unfiltered (gdb_stdlog, "gdbarch_guess_tracepoint_registers called\n");
4710 gdbarch->guess_tracepoint_registers (gdbarch, regcache, addr);
4711 }
4712
4713 void
4714 set_gdbarch_guess_tracepoint_registers (struct gdbarch *gdbarch,
4715 gdbarch_guess_tracepoint_registers_ftype guess_tracepoint_registers)
4716 {
4717 gdbarch->guess_tracepoint_registers = guess_tracepoint_registers;
4718 }
4719
4720 const char *
4721 gdbarch_auto_charset (struct gdbarch *gdbarch)
4722 {
4723 gdb_assert (gdbarch != NULL);
4724 gdb_assert (gdbarch->auto_charset != NULL);
4725 if (gdbarch_debug >= 2)
4726 fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_charset called\n");
4727 return gdbarch->auto_charset ();
4728 }
4729
4730 void
4731 set_gdbarch_auto_charset (struct gdbarch *gdbarch,
4732 gdbarch_auto_charset_ftype auto_charset)
4733 {
4734 gdbarch->auto_charset = auto_charset;
4735 }
4736
4737 const char *
4738 gdbarch_auto_wide_charset (struct gdbarch *gdbarch)
4739 {
4740 gdb_assert (gdbarch != NULL);
4741 gdb_assert (gdbarch->auto_wide_charset != NULL);
4742 if (gdbarch_debug >= 2)
4743 fprintf_unfiltered (gdb_stdlog, "gdbarch_auto_wide_charset called\n");
4744 return gdbarch->auto_wide_charset ();
4745 }
4746
4747 void
4748 set_gdbarch_auto_wide_charset (struct gdbarch *gdbarch,
4749 gdbarch_auto_wide_charset_ftype auto_wide_charset)
4750 {
4751 gdbarch->auto_wide_charset = auto_wide_charset;
4752 }
4753
4754 const char *
4755 gdbarch_solib_symbols_extension (struct gdbarch *gdbarch)
4756 {
4757 gdb_assert (gdbarch != NULL);
4758 if (gdbarch_debug >= 2)
4759 fprintf_unfiltered (gdb_stdlog, "gdbarch_solib_symbols_extension called\n");
4760 return gdbarch->solib_symbols_extension;
4761 }
4762
4763 void
4764 set_gdbarch_solib_symbols_extension (struct gdbarch *gdbarch,
4765 const char * solib_symbols_extension)
4766 {
4767 gdbarch->solib_symbols_extension = solib_symbols_extension;
4768 }
4769
4770 int
4771 gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch)
4772 {
4773 gdb_assert (gdbarch != NULL);
4774 /* Skip verify of has_dos_based_file_system, invalid_p == 0 */
4775 if (gdbarch_debug >= 2)
4776 fprintf_unfiltered (gdb_stdlog, "gdbarch_has_dos_based_file_system called\n");
4777 return gdbarch->has_dos_based_file_system;
4778 }
4779
4780 void
4781 set_gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch,
4782 int has_dos_based_file_system)
4783 {
4784 gdbarch->has_dos_based_file_system = has_dos_based_file_system;
4785 }
4786
4787 void
4788 gdbarch_gen_return_address (struct gdbarch *gdbarch, struct agent_expr *ax, struct axs_value *value, CORE_ADDR scope)
4789 {
4790 gdb_assert (gdbarch != NULL);
4791 gdb_assert (gdbarch->gen_return_address != NULL);
4792 if (gdbarch_debug >= 2)
4793 fprintf_unfiltered (gdb_stdlog, "gdbarch_gen_return_address called\n");
4794 gdbarch->gen_return_address (gdbarch, ax, value, scope);
4795 }
4796
4797 void
4798 set_gdbarch_gen_return_address (struct gdbarch *gdbarch,
4799 gdbarch_gen_return_address_ftype gen_return_address)
4800 {
4801 gdbarch->gen_return_address = gen_return_address;
4802 }
4803
4804 int
4805 gdbarch_info_proc_p (struct gdbarch *gdbarch)
4806 {
4807 gdb_assert (gdbarch != NULL);
4808 return gdbarch->info_proc != NULL;
4809 }
4810
4811 void
4812 gdbarch_info_proc (struct gdbarch *gdbarch, const char *args, enum info_proc_what what)
4813 {
4814 gdb_assert (gdbarch != NULL);
4815 gdb_assert (gdbarch->info_proc != NULL);
4816 if (gdbarch_debug >= 2)
4817 fprintf_unfiltered (gdb_stdlog, "gdbarch_info_proc called\n");
4818 gdbarch->info_proc (gdbarch, args, what);
4819 }
4820
4821 void
4822 set_gdbarch_info_proc (struct gdbarch *gdbarch,
4823 gdbarch_info_proc_ftype info_proc)
4824 {
4825 gdbarch->info_proc = info_proc;
4826 }
4827
4828 int
4829 gdbarch_core_info_proc_p (struct gdbarch *gdbarch)
4830 {
4831 gdb_assert (gdbarch != NULL);
4832 return gdbarch->core_info_proc != NULL;
4833 }
4834
4835 void
4836 gdbarch_core_info_proc (struct gdbarch *gdbarch, const char *args, enum info_proc_what what)
4837 {
4838 gdb_assert (gdbarch != NULL);
4839 gdb_assert (gdbarch->core_info_proc != NULL);
4840 if (gdbarch_debug >= 2)
4841 fprintf_unfiltered (gdb_stdlog, "gdbarch_core_info_proc called\n");
4842 gdbarch->core_info_proc (gdbarch, args, what);
4843 }
4844
4845 void
4846 set_gdbarch_core_info_proc (struct gdbarch *gdbarch,
4847 gdbarch_core_info_proc_ftype core_info_proc)
4848 {
4849 gdbarch->core_info_proc = core_info_proc;
4850 }
4851
4852 void
4853 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)
4854 {
4855 gdb_assert (gdbarch != NULL);
4856 gdb_assert (gdbarch->iterate_over_objfiles_in_search_order != NULL);
4857 if (gdbarch_debug >= 2)
4858 fprintf_unfiltered (gdb_stdlog, "gdbarch_iterate_over_objfiles_in_search_order called\n");
4859 gdbarch->iterate_over_objfiles_in_search_order (gdbarch, cb, cb_data, current_objfile);
4860 }
4861
4862 void
4863 set_gdbarch_iterate_over_objfiles_in_search_order (struct gdbarch *gdbarch,
4864 gdbarch_iterate_over_objfiles_in_search_order_ftype iterate_over_objfiles_in_search_order)
4865 {
4866 gdbarch->iterate_over_objfiles_in_search_order = iterate_over_objfiles_in_search_order;
4867 }
4868
4869 struct ravenscar_arch_ops *
4870 gdbarch_ravenscar_ops (struct gdbarch *gdbarch)
4871 {
4872 gdb_assert (gdbarch != NULL);
4873 /* Skip verify of ravenscar_ops, invalid_p == 0 */
4874 if (gdbarch_debug >= 2)
4875 fprintf_unfiltered (gdb_stdlog, "gdbarch_ravenscar_ops called\n");
4876 return gdbarch->ravenscar_ops;
4877 }
4878
4879 void
4880 set_gdbarch_ravenscar_ops (struct gdbarch *gdbarch,
4881 struct ravenscar_arch_ops * ravenscar_ops)
4882 {
4883 gdbarch->ravenscar_ops = ravenscar_ops;
4884 }
4885
4886 int
4887 gdbarch_insn_is_call (struct gdbarch *gdbarch, CORE_ADDR addr)
4888 {
4889 gdb_assert (gdbarch != NULL);
4890 gdb_assert (gdbarch->insn_is_call != NULL);
4891 if (gdbarch_debug >= 2)
4892 fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_call called\n");
4893 return gdbarch->insn_is_call (gdbarch, addr);
4894 }
4895
4896 void
4897 set_gdbarch_insn_is_call (struct gdbarch *gdbarch,
4898 gdbarch_insn_is_call_ftype insn_is_call)
4899 {
4900 gdbarch->insn_is_call = insn_is_call;
4901 }
4902
4903 int
4904 gdbarch_insn_is_ret (struct gdbarch *gdbarch, CORE_ADDR addr)
4905 {
4906 gdb_assert (gdbarch != NULL);
4907 gdb_assert (gdbarch->insn_is_ret != NULL);
4908 if (gdbarch_debug >= 2)
4909 fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_ret called\n");
4910 return gdbarch->insn_is_ret (gdbarch, addr);
4911 }
4912
4913 void
4914 set_gdbarch_insn_is_ret (struct gdbarch *gdbarch,
4915 gdbarch_insn_is_ret_ftype insn_is_ret)
4916 {
4917 gdbarch->insn_is_ret = insn_is_ret;
4918 }
4919
4920 int
4921 gdbarch_insn_is_jump (struct gdbarch *gdbarch, CORE_ADDR addr)
4922 {
4923 gdb_assert (gdbarch != NULL);
4924 gdb_assert (gdbarch->insn_is_jump != NULL);
4925 if (gdbarch_debug >= 2)
4926 fprintf_unfiltered (gdb_stdlog, "gdbarch_insn_is_jump called\n");
4927 return gdbarch->insn_is_jump (gdbarch, addr);
4928 }
4929
4930 void
4931 set_gdbarch_insn_is_jump (struct gdbarch *gdbarch,
4932 gdbarch_insn_is_jump_ftype insn_is_jump)
4933 {
4934 gdbarch->insn_is_jump = insn_is_jump;
4935 }
4936
4937 bool
4938 gdbarch_program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
4939 {
4940 gdb_assert (gdbarch != NULL);
4941 gdb_assert (gdbarch->program_breakpoint_here_p != NULL);
4942 if (gdbarch_debug >= 2)
4943 fprintf_unfiltered (gdb_stdlog, "gdbarch_program_breakpoint_here_p called\n");
4944 return gdbarch->program_breakpoint_here_p (gdbarch, address);
4945 }
4946
4947 void
4948 set_gdbarch_program_breakpoint_here_p (struct gdbarch *gdbarch,
4949 gdbarch_program_breakpoint_here_p_ftype program_breakpoint_here_p)
4950 {
4951 gdbarch->program_breakpoint_here_p = program_breakpoint_here_p;
4952 }
4953
4954 int
4955 gdbarch_auxv_parse_p (struct gdbarch *gdbarch)
4956 {
4957 gdb_assert (gdbarch != NULL);
4958 return gdbarch->auxv_parse != NULL;
4959 }
4960
4961 int
4962 gdbarch_auxv_parse (struct gdbarch *gdbarch, gdb_byte **readptr, gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
4963 {
4964 gdb_assert (gdbarch != NULL);
4965 gdb_assert (gdbarch->auxv_parse != NULL);
4966 if (gdbarch_debug >= 2)
4967 fprintf_unfiltered (gdb_stdlog, "gdbarch_auxv_parse called\n");
4968 return gdbarch->auxv_parse (gdbarch, readptr, endptr, typep, valp);
4969 }
4970
4971 void
4972 set_gdbarch_auxv_parse (struct gdbarch *gdbarch,
4973 gdbarch_auxv_parse_ftype auxv_parse)
4974 {
4975 gdbarch->auxv_parse = auxv_parse;
4976 }
4977
4978 void
4979 gdbarch_print_auxv_entry (struct gdbarch *gdbarch, struct ui_file *file, CORE_ADDR type, CORE_ADDR val)
4980 {
4981 gdb_assert (gdbarch != NULL);
4982 gdb_assert (gdbarch->print_auxv_entry != NULL);
4983 if (gdbarch_debug >= 2)
4984 fprintf_unfiltered (gdb_stdlog, "gdbarch_print_auxv_entry called\n");
4985 gdbarch->print_auxv_entry (gdbarch, file, type, val);
4986 }
4987
4988 void
4989 set_gdbarch_print_auxv_entry (struct gdbarch *gdbarch,
4990 gdbarch_print_auxv_entry_ftype print_auxv_entry)
4991 {
4992 gdbarch->print_auxv_entry = print_auxv_entry;
4993 }
4994
4995 int
4996 gdbarch_vsyscall_range (struct gdbarch *gdbarch, struct mem_range *range)
4997 {
4998 gdb_assert (gdbarch != NULL);
4999 gdb_assert (gdbarch->vsyscall_range != NULL);
5000 if (gdbarch_debug >= 2)
5001 fprintf_unfiltered (gdb_stdlog, "gdbarch_vsyscall_range called\n");
5002 return gdbarch->vsyscall_range (gdbarch, range);
5003 }
5004
5005 void
5006 set_gdbarch_vsyscall_range (struct gdbarch *gdbarch,
5007 gdbarch_vsyscall_range_ftype vsyscall_range)
5008 {
5009 gdbarch->vsyscall_range = vsyscall_range;
5010 }
5011
5012 CORE_ADDR
5013 gdbarch_infcall_mmap (struct gdbarch *gdbarch, CORE_ADDR size, unsigned prot)
5014 {
5015 gdb_assert (gdbarch != NULL);
5016 gdb_assert (gdbarch->infcall_mmap != NULL);
5017 if (gdbarch_debug >= 2)
5018 fprintf_unfiltered (gdb_stdlog, "gdbarch_infcall_mmap called\n");
5019 return gdbarch->infcall_mmap (size, prot);
5020 }
5021
5022 void
5023 set_gdbarch_infcall_mmap (struct gdbarch *gdbarch,
5024 gdbarch_infcall_mmap_ftype infcall_mmap)
5025 {
5026 gdbarch->infcall_mmap = infcall_mmap;
5027 }
5028
5029 void
5030 gdbarch_infcall_munmap (struct gdbarch *gdbarch, CORE_ADDR addr, CORE_ADDR size)
5031 {
5032 gdb_assert (gdbarch != NULL);
5033 gdb_assert (gdbarch->infcall_munmap != NULL);
5034 if (gdbarch_debug >= 2)
5035 fprintf_unfiltered (gdb_stdlog, "gdbarch_infcall_munmap called\n");
5036 gdbarch->infcall_munmap (addr, size);
5037 }
5038
5039 void
5040 set_gdbarch_infcall_munmap (struct gdbarch *gdbarch,
5041 gdbarch_infcall_munmap_ftype infcall_munmap)
5042 {
5043 gdbarch->infcall_munmap = infcall_munmap;
5044 }
5045
5046 std::string
5047 gdbarch_gcc_target_options (struct gdbarch *gdbarch)
5048 {
5049 gdb_assert (gdbarch != NULL);
5050 gdb_assert (gdbarch->gcc_target_options != NULL);
5051 if (gdbarch_debug >= 2)
5052 fprintf_unfiltered (gdb_stdlog, "gdbarch_gcc_target_options called\n");
5053 return gdbarch->gcc_target_options (gdbarch);
5054 }
5055
5056 void
5057 set_gdbarch_gcc_target_options (struct gdbarch *gdbarch,
5058 gdbarch_gcc_target_options_ftype gcc_target_options)
5059 {
5060 gdbarch->gcc_target_options = gcc_target_options;
5061 }
5062
5063 const char *
5064 gdbarch_gnu_triplet_regexp (struct gdbarch *gdbarch)
5065 {
5066 gdb_assert (gdbarch != NULL);
5067 gdb_assert (gdbarch->gnu_triplet_regexp != NULL);
5068 if (gdbarch_debug >= 2)
5069 fprintf_unfiltered (gdb_stdlog, "gdbarch_gnu_triplet_regexp called\n");
5070 return gdbarch->gnu_triplet_regexp (gdbarch);
5071 }
5072
5073 void
5074 set_gdbarch_gnu_triplet_regexp (struct gdbarch *gdbarch,
5075 gdbarch_gnu_triplet_regexp_ftype gnu_triplet_regexp)
5076 {
5077 gdbarch->gnu_triplet_regexp = gnu_triplet_regexp;
5078 }
5079
5080 int
5081 gdbarch_addressable_memory_unit_size (struct gdbarch *gdbarch)
5082 {
5083 gdb_assert (gdbarch != NULL);
5084 gdb_assert (gdbarch->addressable_memory_unit_size != NULL);
5085 if (gdbarch_debug >= 2)
5086 fprintf_unfiltered (gdb_stdlog, "gdbarch_addressable_memory_unit_size called\n");
5087 return gdbarch->addressable_memory_unit_size (gdbarch);
5088 }
5089
5090 void
5091 set_gdbarch_addressable_memory_unit_size (struct gdbarch *gdbarch,
5092 gdbarch_addressable_memory_unit_size_ftype addressable_memory_unit_size)
5093 {
5094 gdbarch->addressable_memory_unit_size = addressable_memory_unit_size;
5095 }
5096
5097 const char *
5098 gdbarch_disassembler_options_implicit (struct gdbarch *gdbarch)
5099 {
5100 gdb_assert (gdbarch != NULL);
5101 /* Skip verify of disassembler_options_implicit, invalid_p == 0 */
5102 if (gdbarch_debug >= 2)
5103 fprintf_unfiltered (gdb_stdlog, "gdbarch_disassembler_options_implicit called\n");
5104 return gdbarch->disassembler_options_implicit;
5105 }
5106
5107 void
5108 set_gdbarch_disassembler_options_implicit (struct gdbarch *gdbarch,
5109 const char * disassembler_options_implicit)
5110 {
5111 gdbarch->disassembler_options_implicit = disassembler_options_implicit;
5112 }
5113
5114 char **
5115 gdbarch_disassembler_options (struct gdbarch *gdbarch)
5116 {
5117 gdb_assert (gdbarch != NULL);
5118 /* Skip verify of disassembler_options, invalid_p == 0 */
5119 if (gdbarch_debug >= 2)
5120 fprintf_unfiltered (gdb_stdlog, "gdbarch_disassembler_options called\n");
5121 return gdbarch->disassembler_options;
5122 }
5123
5124 void
5125 set_gdbarch_disassembler_options (struct gdbarch *gdbarch,
5126 char ** disassembler_options)
5127 {
5128 gdbarch->disassembler_options = disassembler_options;
5129 }
5130
5131 const disasm_options_and_args_t *
5132 gdbarch_valid_disassembler_options (struct gdbarch *gdbarch)
5133 {
5134 gdb_assert (gdbarch != NULL);
5135 /* Skip verify of valid_disassembler_options, invalid_p == 0 */
5136 if (gdbarch_debug >= 2)
5137 fprintf_unfiltered (gdb_stdlog, "gdbarch_valid_disassembler_options called\n");
5138 return gdbarch->valid_disassembler_options;
5139 }
5140
5141 void
5142 set_gdbarch_valid_disassembler_options (struct gdbarch *gdbarch,
5143 const disasm_options_and_args_t * valid_disassembler_options)
5144 {
5145 gdbarch->valid_disassembler_options = valid_disassembler_options;
5146 }
5147
5148 ULONGEST
5149 gdbarch_type_align (struct gdbarch *gdbarch, struct type *type)
5150 {
5151 gdb_assert (gdbarch != NULL);
5152 gdb_assert (gdbarch->type_align != NULL);
5153 if (gdbarch_debug >= 2)
5154 fprintf_unfiltered (gdb_stdlog, "gdbarch_type_align called\n");
5155 return gdbarch->type_align (gdbarch, type);
5156 }
5157
5158 void
5159 set_gdbarch_type_align (struct gdbarch *gdbarch,
5160 gdbarch_type_align_ftype type_align)
5161 {
5162 gdbarch->type_align = type_align;
5163 }
5164
5165 std::string
5166 gdbarch_get_pc_address_flags (struct gdbarch *gdbarch, frame_info *frame, CORE_ADDR pc)
5167 {
5168 gdb_assert (gdbarch != NULL);
5169 gdb_assert (gdbarch->get_pc_address_flags != NULL);
5170 if (gdbarch_debug >= 2)
5171 fprintf_unfiltered (gdb_stdlog, "gdbarch_get_pc_address_flags called\n");
5172 return gdbarch->get_pc_address_flags (frame, pc);
5173 }
5174
5175 void
5176 set_gdbarch_get_pc_address_flags (struct gdbarch *gdbarch,
5177 gdbarch_get_pc_address_flags_ftype get_pc_address_flags)
5178 {
5179 gdbarch->get_pc_address_flags = get_pc_address_flags;
5180 }
5181
5182
5183 /* Keep a registry of per-architecture data-pointers required by GDB
5184 modules. */
5185
5186 struct gdbarch_data
5187 {
5188 unsigned index;
5189 int init_p;
5190 gdbarch_data_pre_init_ftype *pre_init;
5191 gdbarch_data_post_init_ftype *post_init;
5192 };
5193
5194 struct gdbarch_data_registration
5195 {
5196 struct gdbarch_data *data;
5197 struct gdbarch_data_registration *next;
5198 };
5199
5200 struct gdbarch_data_registry
5201 {
5202 unsigned nr;
5203 struct gdbarch_data_registration *registrations;
5204 };
5205
5206 struct gdbarch_data_registry gdbarch_data_registry =
5207 {
5208 0, NULL,
5209 };
5210
5211 static struct gdbarch_data *
5212 gdbarch_data_register (gdbarch_data_pre_init_ftype *pre_init,
5213 gdbarch_data_post_init_ftype *post_init)
5214 {
5215 struct gdbarch_data_registration **curr;
5216
5217 /* Append the new registration. */
5218 for (curr = &gdbarch_data_registry.registrations;
5219 (*curr) != NULL;
5220 curr = &(*curr)->next);
5221 (*curr) = XNEW (struct gdbarch_data_registration);
5222 (*curr)->next = NULL;
5223 (*curr)->data = XNEW (struct gdbarch_data);
5224 (*curr)->data->index = gdbarch_data_registry.nr++;
5225 (*curr)->data->pre_init = pre_init;
5226 (*curr)->data->post_init = post_init;
5227 (*curr)->data->init_p = 1;
5228 return (*curr)->data;
5229 }
5230
5231 struct gdbarch_data *
5232 gdbarch_data_register_pre_init (gdbarch_data_pre_init_ftype *pre_init)
5233 {
5234 return gdbarch_data_register (pre_init, NULL);
5235 }
5236
5237 struct gdbarch_data *
5238 gdbarch_data_register_post_init (gdbarch_data_post_init_ftype *post_init)
5239 {
5240 return gdbarch_data_register (NULL, post_init);
5241 }
5242
5243 /* Create/delete the gdbarch data vector. */
5244
5245 static void
5246 alloc_gdbarch_data (struct gdbarch *gdbarch)
5247 {
5248 gdb_assert (gdbarch->data == NULL);
5249 gdbarch->nr_data = gdbarch_data_registry.nr;
5250 gdbarch->data = GDBARCH_OBSTACK_CALLOC (gdbarch, gdbarch->nr_data, void *);
5251 }
5252
5253 /* Initialize the current value of the specified per-architecture
5254 data-pointer. */
5255
5256 void
5257 deprecated_set_gdbarch_data (struct gdbarch *gdbarch,
5258 struct gdbarch_data *data,
5259 void *pointer)
5260 {
5261 gdb_assert (data->index < gdbarch->nr_data);
5262 gdb_assert (gdbarch->data[data->index] == NULL);
5263 gdb_assert (data->pre_init == NULL);
5264 gdbarch->data[data->index] = pointer;
5265 }
5266
5267 /* Return the current value of the specified per-architecture
5268 data-pointer. */
5269
5270 void *
5271 gdbarch_data (struct gdbarch *gdbarch, struct gdbarch_data *data)
5272 {
5273 gdb_assert (data->index < gdbarch->nr_data);
5274 if (gdbarch->data[data->index] == NULL)
5275 {
5276 /* The data-pointer isn't initialized, call init() to get a
5277 value. */
5278 if (data->pre_init != NULL)
5279 /* Mid architecture creation: pass just the obstack, and not
5280 the entire architecture, as that way it isn't possible for
5281 pre-init code to refer to undefined architecture
5282 fields. */
5283 gdbarch->data[data->index] = data->pre_init (gdbarch->obstack);
5284 else if (gdbarch->initialized_p
5285 && data->post_init != NULL)
5286 /* Post architecture creation: pass the entire architecture
5287 (as all fields are valid), but be careful to also detect
5288 recursive references. */
5289 {
5290 gdb_assert (data->init_p);
5291 data->init_p = 0;
5292 gdbarch->data[data->index] = data->post_init (gdbarch);
5293 data->init_p = 1;
5294 }
5295 else
5296 /* The architecture initialization hasn't completed - punt -
5297 hope that the caller knows what they are doing. Once
5298 deprecated_set_gdbarch_data has been initialized, this can be
5299 changed to an internal error. */
5300 return NULL;
5301 gdb_assert (gdbarch->data[data->index] != NULL);
5302 }
5303 return gdbarch->data[data->index];
5304 }
5305
5306
5307 /* Keep a registry of the architectures known by GDB. */
5308
5309 struct gdbarch_registration
5310 {
5311 enum bfd_architecture bfd_architecture;
5312 gdbarch_init_ftype *init;
5313 gdbarch_dump_tdep_ftype *dump_tdep;
5314 struct gdbarch_list *arches;
5315 struct gdbarch_registration *next;
5316 };
5317
5318 static struct gdbarch_registration *gdbarch_registry = NULL;
5319
5320 static void
5321 append_name (const char ***buf, int *nr, const char *name)
5322 {
5323 *buf = XRESIZEVEC (const char *, *buf, *nr + 1);
5324 (*buf)[*nr] = name;
5325 *nr += 1;
5326 }
5327
5328 const char **
5329 gdbarch_printable_names (void)
5330 {
5331 /* Accumulate a list of names based on the registed list of
5332 architectures. */
5333 int nr_arches = 0;
5334 const char **arches = NULL;
5335 struct gdbarch_registration *rego;
5336
5337 for (rego = gdbarch_registry;
5338 rego != NULL;
5339 rego = rego->next)
5340 {
5341 const struct bfd_arch_info *ap;
5342 ap = bfd_lookup_arch (rego->bfd_architecture, 0);
5343 if (ap == NULL)
5344 internal_error (__FILE__, __LINE__,
5345 _("gdbarch_architecture_names: multi-arch unknown"));
5346 do
5347 {
5348 append_name (&arches, &nr_arches, ap->printable_name);
5349 ap = ap->next;
5350 }
5351 while (ap != NULL);
5352 }
5353 append_name (&arches, &nr_arches, NULL);
5354 return arches;
5355 }
5356
5357
5358 void
5359 gdbarch_register (enum bfd_architecture bfd_architecture,
5360 gdbarch_init_ftype *init,
5361 gdbarch_dump_tdep_ftype *dump_tdep)
5362 {
5363 struct gdbarch_registration **curr;
5364 const struct bfd_arch_info *bfd_arch_info;
5365
5366 /* Check that BFD recognizes this architecture */
5367 bfd_arch_info = bfd_lookup_arch (bfd_architecture, 0);
5368 if (bfd_arch_info == NULL)
5369 {
5370 internal_error (__FILE__, __LINE__,
5371 _("gdbarch: Attempt to register "
5372 "unknown architecture (%d)"),
5373 bfd_architecture);
5374 }
5375 /* Check that we haven't seen this architecture before. */
5376 for (curr = &gdbarch_registry;
5377 (*curr) != NULL;
5378 curr = &(*curr)->next)
5379 {
5380 if (bfd_architecture == (*curr)->bfd_architecture)
5381 internal_error (__FILE__, __LINE__,
5382 _("gdbarch: Duplicate registration "
5383 "of architecture (%s)"),
5384 bfd_arch_info->printable_name);
5385 }
5386 /* log it */
5387 if (gdbarch_debug)
5388 fprintf_unfiltered (gdb_stdlog, "register_gdbarch_init (%s, %s)\n",
5389 bfd_arch_info->printable_name,
5390 host_address_to_string (init));
5391 /* Append it */
5392 (*curr) = XNEW (struct gdbarch_registration);
5393 (*curr)->bfd_architecture = bfd_architecture;
5394 (*curr)->init = init;
5395 (*curr)->dump_tdep = dump_tdep;
5396 (*curr)->arches = NULL;
5397 (*curr)->next = NULL;
5398 }
5399
5400 void
5401 register_gdbarch_init (enum bfd_architecture bfd_architecture,
5402 gdbarch_init_ftype *init)
5403 {
5404 gdbarch_register (bfd_architecture, init, NULL);
5405 }
5406
5407
5408 /* Look for an architecture using gdbarch_info. */
5409
5410 struct gdbarch_list *
5411 gdbarch_list_lookup_by_info (struct gdbarch_list *arches,
5412 const struct gdbarch_info *info)
5413 {
5414 for (; arches != NULL; arches = arches->next)
5415 {
5416 if (info->bfd_arch_info != arches->gdbarch->bfd_arch_info)
5417 continue;
5418 if (info->byte_order != arches->gdbarch->byte_order)
5419 continue;
5420 if (info->osabi != arches->gdbarch->osabi)
5421 continue;
5422 if (info->target_desc != arches->gdbarch->target_desc)
5423 continue;
5424 return arches;
5425 }
5426 return NULL;
5427 }
5428
5429
5430 /* Find an architecture that matches the specified INFO. Create a new
5431 architecture if needed. Return that new architecture. */
5432
5433 struct gdbarch *
5434 gdbarch_find_by_info (struct gdbarch_info info)
5435 {
5436 struct gdbarch *new_gdbarch;
5437 struct gdbarch_registration *rego;
5438
5439 /* Fill in missing parts of the INFO struct using a number of
5440 sources: "set ..."; INFOabfd supplied; and the global
5441 defaults. */
5442 gdbarch_info_fill (&info);
5443
5444 /* Must have found some sort of architecture. */
5445 gdb_assert (info.bfd_arch_info != NULL);
5446
5447 if (gdbarch_debug)
5448 {
5449 fprintf_unfiltered (gdb_stdlog,
5450 "gdbarch_find_by_info: info.bfd_arch_info %s\n",
5451 (info.bfd_arch_info != NULL
5452 ? info.bfd_arch_info->printable_name
5453 : "(null)"));
5454 fprintf_unfiltered (gdb_stdlog,
5455 "gdbarch_find_by_info: info.byte_order %d (%s)\n",
5456 info.byte_order,
5457 (info.byte_order == BFD_ENDIAN_BIG ? "big"
5458 : info.byte_order == BFD_ENDIAN_LITTLE ? "little"
5459 : "default"));
5460 fprintf_unfiltered (gdb_stdlog,
5461 "gdbarch_find_by_info: info.osabi %d (%s)\n",
5462 info.osabi, gdbarch_osabi_name (info.osabi));
5463 fprintf_unfiltered (gdb_stdlog,
5464 "gdbarch_find_by_info: info.abfd %s\n",
5465 host_address_to_string (info.abfd));
5466 fprintf_unfiltered (gdb_stdlog,
5467 "gdbarch_find_by_info: info.tdep_info %s\n",
5468 host_address_to_string (info.tdep_info));
5469 }
5470
5471 /* Find the tdep code that knows about this architecture. */
5472 for (rego = gdbarch_registry;
5473 rego != NULL;
5474 rego = rego->next)
5475 if (rego->bfd_architecture == info.bfd_arch_info->arch)
5476 break;
5477 if (rego == NULL)
5478 {
5479 if (gdbarch_debug)
5480 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5481 "No matching architecture\n");
5482 return 0;
5483 }
5484
5485 /* Ask the tdep code for an architecture that matches "info". */
5486 new_gdbarch = rego->init (info, rego->arches);
5487
5488 /* Did the tdep code like it? No. Reject the change and revert to
5489 the old architecture. */
5490 if (new_gdbarch == NULL)
5491 {
5492 if (gdbarch_debug)
5493 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5494 "Target rejected architecture\n");
5495 return NULL;
5496 }
5497
5498 /* Is this a pre-existing architecture (as determined by already
5499 being initialized)? Move it to the front of the architecture
5500 list (keeping the list sorted Most Recently Used). */
5501 if (new_gdbarch->initialized_p)
5502 {
5503 struct gdbarch_list **list;
5504 struct gdbarch_list *self;
5505 if (gdbarch_debug)
5506 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5507 "Previous architecture %s (%s) selected\n",
5508 host_address_to_string (new_gdbarch),
5509 new_gdbarch->bfd_arch_info->printable_name);
5510 /* Find the existing arch in the list. */
5511 for (list = &rego->arches;
5512 (*list) != NULL && (*list)->gdbarch != new_gdbarch;
5513 list = &(*list)->next);
5514 /* It had better be in the list of architectures. */
5515 gdb_assert ((*list) != NULL && (*list)->gdbarch == new_gdbarch);
5516 /* Unlink SELF. */
5517 self = (*list);
5518 (*list) = self->next;
5519 /* Insert SELF at the front. */
5520 self->next = rego->arches;
5521 rego->arches = self;
5522 /* Return it. */
5523 return new_gdbarch;
5524 }
5525
5526 /* It's a new architecture. */
5527 if (gdbarch_debug)
5528 fprintf_unfiltered (gdb_stdlog, "gdbarch_find_by_info: "
5529 "New architecture %s (%s) selected\n",
5530 host_address_to_string (new_gdbarch),
5531 new_gdbarch->bfd_arch_info->printable_name);
5532
5533 /* Insert the new architecture into the front of the architecture
5534 list (keep the list sorted Most Recently Used). */
5535 {
5536 struct gdbarch_list *self = XNEW (struct gdbarch_list);
5537 self->next = rego->arches;
5538 self->gdbarch = new_gdbarch;
5539 rego->arches = self;
5540 }
5541
5542 /* Check that the newly installed architecture is valid. Plug in
5543 any post init values. */
5544 new_gdbarch->dump_tdep = rego->dump_tdep;
5545 verify_gdbarch (new_gdbarch);
5546 new_gdbarch->initialized_p = 1;
5547
5548 if (gdbarch_debug)
5549 gdbarch_dump (new_gdbarch, gdb_stdlog);
5550
5551 return new_gdbarch;
5552 }
5553
5554 /* Make the specified architecture current. */
5555
5556 void
5557 set_target_gdbarch (struct gdbarch *new_gdbarch)
5558 {
5559 gdb_assert (new_gdbarch != NULL);
5560 gdb_assert (new_gdbarch->initialized_p);
5561 current_inferior ()->gdbarch = new_gdbarch;
5562 gdb::observers::architecture_changed.notify (new_gdbarch);
5563 registers_changed ();
5564 }
5565
5566 /* Return the current inferior's arch. */
5567
5568 struct gdbarch *
5569 target_gdbarch (void)
5570 {
5571 return current_inferior ()->gdbarch;
5572 }
5573
5574 void _initialize_gdbarch ();
5575 void
5576 _initialize_gdbarch ()
5577 {
5578 add_setshow_zuinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\
5579 Set architecture debugging."), _("\
5580 Show architecture debugging."), _("\
5581 When non-zero, architecture debugging is enabled."),
5582 NULL,
5583 show_gdbarch_debug,
5584 &setdebuglist, &showdebuglist);
5585 }
This page took 0.157198 seconds and 4 git commands to generate.