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