1 /* Dynamic architecture support for GDB, the GNU debugger.
3 Copyright (C) 1998-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "arch-utils.h"
25 #include "inferior.h" /* enum CALL_DUMMY_LOCATION et al. */
28 #include "sim-regno.h"
31 #include "target-descriptions.h"
38 #include "floatformat.h"
43 default_displaced_step_hw_singlestep (struct gdbarch
*gdbarch
,
44 struct displaced_step_closure
*closure
)
46 return !gdbarch_software_single_step_p (gdbarch
);
50 displaced_step_at_entry_point (struct gdbarch
*gdbarch
)
55 addr
= entry_point_address ();
57 /* Inferior calls also use the entry point as a breakpoint location.
58 We don't want displaced stepping to interfere with those
59 breakpoints, so leave space. */
60 gdbarch_breakpoint_from_pc (gdbarch
, &addr
, &bp_len
);
67 legacy_register_sim_regno (struct gdbarch
*gdbarch
, int regnum
)
69 /* Only makes sense to supply raw registers. */
70 gdb_assert (regnum
>= 0 && regnum
< gdbarch_num_regs (gdbarch
));
71 /* NOTE: cagney/2002-05-13: The old code did it this way and it is
72 suspected that some GDB/SIM combinations may rely on this
73 behavour. The default should be one2one_register_sim_regno
75 if (gdbarch_register_name (gdbarch
, regnum
) != NULL
76 && gdbarch_register_name (gdbarch
, regnum
)[0] != '\0')
79 return LEGACY_SIM_REGNO_IGNORE
;
83 generic_skip_trampoline_code (struct frame_info
*frame
, CORE_ADDR pc
)
89 generic_skip_solib_resolver (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
95 generic_in_solib_return_trampoline (struct gdbarch
*gdbarch
,
96 CORE_ADDR pc
, const char *name
)
102 generic_stack_frame_destroyed_p (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
108 default_code_of_frame_writable (struct gdbarch
*gdbarch
,
109 struct frame_info
*frame
)
114 /* Helper functions for gdbarch_inner_than */
117 core_addr_lessthan (CORE_ADDR lhs
, CORE_ADDR rhs
)
123 core_addr_greaterthan (CORE_ADDR lhs
, CORE_ADDR rhs
)
128 /* Misc helper functions for targets. */
131 core_addr_identity (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
137 convert_from_func_ptr_addr_identity (struct gdbarch
*gdbarch
, CORE_ADDR addr
,
138 struct target_ops
*targ
)
144 no_op_reg_to_regnum (struct gdbarch
*gdbarch
, int reg
)
150 default_coff_make_msymbol_special (int val
, struct minimal_symbol
*msym
)
155 /* See arch-utils.h. */
158 default_make_symbol_special (struct symbol
*sym
, struct objfile
*objfile
)
163 /* See arch-utils.h. */
166 default_adjust_dwarf2_addr (CORE_ADDR pc
)
171 /* See arch-utils.h. */
174 default_adjust_dwarf2_line (CORE_ADDR addr
, int rel
)
179 /* See arch-utils.h. */
182 default_execute_dwarf_cfa_vendor_op (struct gdbarch
*gdbarch
, gdb_byte op
,
183 struct dwarf2_frame_state
*fs
)
189 cannot_register_not (struct gdbarch
*gdbarch
, int regnum
)
194 /* Legacy version of target_virtual_frame_pointer(). Assumes that
195 there is an gdbarch_deprecated_fp_regnum and that it is the same,
199 legacy_virtual_frame_pointer (struct gdbarch
*gdbarch
,
202 LONGEST
*frame_offset
)
204 /* FIXME: cagney/2002-09-13: This code is used when identifying the
205 frame pointer of the current PC. It is assuming that a single
206 register and an offset can determine this. I think it should
207 instead generate a byte code expression as that would work better
208 with things like Dwarf2's CFI. */
209 if (gdbarch_deprecated_fp_regnum (gdbarch
) >= 0
210 && gdbarch_deprecated_fp_regnum (gdbarch
)
211 < gdbarch_num_regs (gdbarch
))
212 *frame_regnum
= gdbarch_deprecated_fp_regnum (gdbarch
);
213 else if (gdbarch_sp_regnum (gdbarch
) >= 0
214 && gdbarch_sp_regnum (gdbarch
)
215 < gdbarch_num_regs (gdbarch
))
216 *frame_regnum
= gdbarch_sp_regnum (gdbarch
);
218 /* Should this be an internal error? I guess so, it is reflecting
219 an architectural limitation in the current design. */
220 internal_error (__FILE__
, __LINE__
,
221 _("No virtual frame pointer available"));
225 /* Return a floating-point format for a floating-point variable of
226 length LEN in bits. If non-NULL, NAME is the name of its type.
227 If no suitable type is found, return NULL. */
229 const struct floatformat
**
230 default_floatformat_for_type (struct gdbarch
*gdbarch
,
231 const char *name
, int len
)
233 const struct floatformat
**format
= NULL
;
235 if (len
== gdbarch_half_bit (gdbarch
))
236 format
= gdbarch_half_format (gdbarch
);
237 else if (len
== gdbarch_float_bit (gdbarch
))
238 format
= gdbarch_float_format (gdbarch
);
239 else if (len
== gdbarch_double_bit (gdbarch
))
240 format
= gdbarch_double_format (gdbarch
);
241 else if (len
== gdbarch_long_double_bit (gdbarch
))
242 format
= gdbarch_long_double_format (gdbarch
);
243 /* On i386 the 'long double' type takes 96 bits,
244 while the real number of used bits is only 80,
245 both in processor and in memory.
246 The code below accepts the real bit size. */
247 else if (gdbarch_long_double_format (gdbarch
) != NULL
248 && len
== gdbarch_long_double_format (gdbarch
)[0]->totalsize
)
249 format
= gdbarch_long_double_format (gdbarch
);
255 generic_convert_register_p (struct gdbarch
*gdbarch
, int regnum
,
262 default_stabs_argument_has_addr (struct gdbarch
*gdbarch
, struct type
*type
)
268 generic_instruction_nullified (struct gdbarch
*gdbarch
,
269 struct regcache
*regcache
)
275 default_remote_register_number (struct gdbarch
*gdbarch
,
281 /* See arch-utils.h. */
284 default_vsyscall_range (struct gdbarch
*gdbarch
, struct mem_range
*range
)
290 /* Functions to manipulate the endianness of the target. */
292 static enum bfd_endian target_byte_order_user
= BFD_ENDIAN_UNKNOWN
;
294 static const char endian_big
[] = "big";
295 static const char endian_little
[] = "little";
296 static const char endian_auto
[] = "auto";
297 static const char *const endian_enum
[] =
304 static const char *set_endian_string
;
307 selected_byte_order (void)
309 return target_byte_order_user
;
312 /* Called by ``show endian''. */
315 show_endian (struct ui_file
*file
, int from_tty
, struct cmd_list_element
*c
,
318 if (target_byte_order_user
== BFD_ENDIAN_UNKNOWN
)
319 if (gdbarch_byte_order (get_current_arch ()) == BFD_ENDIAN_BIG
)
320 fprintf_unfiltered (file
, _("The target endianness is set automatically "
321 "(currently big endian)\n"));
323 fprintf_unfiltered (file
, _("The target endianness is set automatically "
324 "(currently little endian)\n"));
326 if (target_byte_order_user
== BFD_ENDIAN_BIG
)
327 fprintf_unfiltered (file
,
328 _("The target is assumed to be big endian\n"));
330 fprintf_unfiltered (file
,
331 _("The target is assumed to be little endian\n"));
335 set_endian (const char *ignore_args
, int from_tty
, struct cmd_list_element
*c
)
337 struct gdbarch_info info
;
339 gdbarch_info_init (&info
);
341 if (set_endian_string
== endian_auto
)
343 target_byte_order_user
= BFD_ENDIAN_UNKNOWN
;
344 if (! gdbarch_update_p (info
))
345 internal_error (__FILE__
, __LINE__
,
346 _("set_endian: architecture update failed"));
348 else if (set_endian_string
== endian_little
)
350 info
.byte_order
= BFD_ENDIAN_LITTLE
;
351 if (! gdbarch_update_p (info
))
352 printf_unfiltered (_("Little endian target not supported by GDB\n"));
354 target_byte_order_user
= BFD_ENDIAN_LITTLE
;
356 else if (set_endian_string
== endian_big
)
358 info
.byte_order
= BFD_ENDIAN_BIG
;
359 if (! gdbarch_update_p (info
))
360 printf_unfiltered (_("Big endian target not supported by GDB\n"));
362 target_byte_order_user
= BFD_ENDIAN_BIG
;
365 internal_error (__FILE__
, __LINE__
,
366 _("set_endian: bad value"));
368 show_endian (gdb_stdout
, from_tty
, NULL
, NULL
);
371 /* Given SELECTED, a currently selected BFD architecture, and
372 TARGET_DESC, the current target description, return what
375 SELECTED may be NULL, in which case we return the architecture
376 associated with TARGET_DESC. If SELECTED specifies a variant
377 of the architecture associtated with TARGET_DESC, return the
378 more specific of the two.
380 If SELECTED is a different architecture, but it is accepted as
381 compatible by the target, we can use the target architecture.
383 If SELECTED is obviously incompatible, warn the user. */
385 static const struct bfd_arch_info
*
386 choose_architecture_for_target (const struct target_desc
*target_desc
,
387 const struct bfd_arch_info
*selected
)
389 const struct bfd_arch_info
*from_target
= tdesc_architecture (target_desc
);
390 const struct bfd_arch_info
*compat1
, *compat2
;
392 if (selected
== NULL
)
395 if (from_target
== NULL
)
398 /* struct bfd_arch_info objects are singletons: that is, there's
399 supposed to be exactly one instance for a given machine. So you
400 can tell whether two are equivalent by comparing pointers. */
401 if (from_target
== selected
)
404 /* BFD's 'A->compatible (A, B)' functions return zero if A and B are
405 incompatible. But if they are compatible, it returns the 'more
406 featureful' of the two arches. That is, if A can run code
407 written for B, but B can't run code written for A, then it'll
410 Some targets (e.g. MIPS as of 2006-12-04) don't fully
411 implement this, instead always returning NULL or the first
412 argument. We detect that case by checking both directions. */
414 compat1
= selected
->compatible (selected
, from_target
);
415 compat2
= from_target
->compatible (from_target
, selected
);
417 if (compat1
== NULL
&& compat2
== NULL
)
419 /* BFD considers the architectures incompatible. Check our
420 target description whether it accepts SELECTED as compatible
422 if (tdesc_compatible_p (target_desc
, selected
))
425 warning (_("Selected architecture %s is not compatible "
426 "with reported target architecture %s"),
427 selected
->printable_name
, from_target
->printable_name
);
435 if (compat1
== compat2
)
438 /* If the two didn't match, but one of them was a default
439 architecture, assume the more specific one is correct. This
440 handles the case where an executable or target description just
441 says "mips", but the other knows which MIPS variant. */
442 if (compat1
->the_default
)
444 if (compat2
->the_default
)
447 /* We have no idea which one is better. This is a bug, but not
448 a critical problem; warn the user. */
449 warning (_("Selected architecture %s is ambiguous with "
450 "reported target architecture %s"),
451 selected
->printable_name
, from_target
->printable_name
);
455 /* Functions to manipulate the architecture of the target. */
457 enum set_arch
{ set_arch_auto
, set_arch_manual
};
459 static const struct bfd_arch_info
*target_architecture_user
;
461 static const char *set_architecture_string
;
464 selected_architecture_name (void)
466 if (target_architecture_user
== NULL
)
469 return set_architecture_string
;
472 /* Called if the user enters ``show architecture'' without an
476 show_architecture (struct ui_file
*file
, int from_tty
,
477 struct cmd_list_element
*c
, const char *value
)
479 if (target_architecture_user
== NULL
)
480 fprintf_filtered (file
, _("The target architecture is set "
481 "automatically (currently %s)\n"),
482 gdbarch_bfd_arch_info (get_current_arch ())->printable_name
);
484 fprintf_filtered (file
, _("The target architecture is assumed to be %s\n"),
485 set_architecture_string
);
489 /* Called if the user enters ``set architecture'' with or without an
493 set_architecture (const char *ignore_args
,
494 int from_tty
, struct cmd_list_element
*c
)
496 struct gdbarch_info info
;
498 gdbarch_info_init (&info
);
500 if (strcmp (set_architecture_string
, "auto") == 0)
502 target_architecture_user
= NULL
;
503 if (!gdbarch_update_p (info
))
504 internal_error (__FILE__
, __LINE__
,
505 _("could not select an architecture automatically"));
509 info
.bfd_arch_info
= bfd_scan_arch (set_architecture_string
);
510 if (info
.bfd_arch_info
== NULL
)
511 internal_error (__FILE__
, __LINE__
,
512 _("set_architecture: bfd_scan_arch failed"));
513 if (gdbarch_update_p (info
))
514 target_architecture_user
= info
.bfd_arch_info
;
516 printf_unfiltered (_("Architecture `%s' not recognized.\n"),
517 set_architecture_string
);
519 show_architecture (gdb_stdout
, from_tty
, NULL
, NULL
);
522 /* Try to select a global architecture that matches "info". Return
523 non-zero if the attempt succeeds. */
525 gdbarch_update_p (struct gdbarch_info info
)
527 struct gdbarch
*new_gdbarch
;
529 /* Check for the current file. */
530 if (info
.abfd
== NULL
)
531 info
.abfd
= exec_bfd
;
532 if (info
.abfd
== NULL
)
533 info
.abfd
= core_bfd
;
535 /* Check for the current target description. */
536 if (info
.target_desc
== NULL
)
537 info
.target_desc
= target_current_description ();
539 new_gdbarch
= gdbarch_find_by_info (info
);
541 /* If there no architecture by that name, reject the request. */
542 if (new_gdbarch
== NULL
)
545 fprintf_unfiltered (gdb_stdlog
, "gdbarch_update_p: "
546 "Architecture not found\n");
550 /* If it is the same old architecture, accept the request (but don't
552 if (new_gdbarch
== target_gdbarch ())
555 fprintf_unfiltered (gdb_stdlog
, "gdbarch_update_p: "
556 "Architecture %s (%s) unchanged\n",
557 host_address_to_string (new_gdbarch
),
558 gdbarch_bfd_arch_info (new_gdbarch
)->printable_name
);
562 /* It's a new architecture, swap it in. */
564 fprintf_unfiltered (gdb_stdlog
, "gdbarch_update_p: "
565 "New architecture %s (%s) selected\n",
566 host_address_to_string (new_gdbarch
),
567 gdbarch_bfd_arch_info (new_gdbarch
)->printable_name
);
568 set_target_gdbarch (new_gdbarch
);
573 /* Return the architecture for ABFD. If no suitable architecture
574 could be find, return NULL. */
577 gdbarch_from_bfd (bfd
*abfd
)
579 struct gdbarch_info info
;
580 gdbarch_info_init (&info
);
583 return gdbarch_find_by_info (info
);
586 /* Set the dynamic target-system-dependent parameters (architecture,
587 byte-order) using information found in the BFD */
590 set_gdbarch_from_file (bfd
*abfd
)
592 struct gdbarch_info info
;
593 struct gdbarch
*gdbarch
;
595 gdbarch_info_init (&info
);
597 info
.target_desc
= target_current_description ();
598 gdbarch
= gdbarch_find_by_info (info
);
601 error (_("Architecture of file not recognized."));
602 set_target_gdbarch (gdbarch
);
605 /* Initialize the current architecture. Update the ``set
606 architecture'' command so that it specifies a list of valid
609 #ifdef DEFAULT_BFD_ARCH
610 extern const bfd_arch_info_type DEFAULT_BFD_ARCH
;
611 static const bfd_arch_info_type
*default_bfd_arch
= &DEFAULT_BFD_ARCH
;
613 static const bfd_arch_info_type
*default_bfd_arch
;
616 #ifdef DEFAULT_BFD_VEC
617 extern const bfd_target DEFAULT_BFD_VEC
;
618 static const bfd_target
*default_bfd_vec
= &DEFAULT_BFD_VEC
;
620 static const bfd_target
*default_bfd_vec
;
623 static enum bfd_endian default_byte_order
= BFD_ENDIAN_UNKNOWN
;
626 initialize_current_architecture (void)
628 const char **arches
= gdbarch_printable_names ();
629 struct gdbarch_info info
;
631 /* determine a default architecture and byte order. */
632 gdbarch_info_init (&info
);
634 /* Find a default architecture. */
635 if (default_bfd_arch
== NULL
)
637 /* Choose the architecture by taking the first one
639 const char *chosen
= arches
[0];
641 for (arch
= arches
; *arch
!= NULL
; arch
++)
643 if (strcmp (*arch
, chosen
) < 0)
647 internal_error (__FILE__
, __LINE__
,
648 _("initialize_current_architecture: No arch"));
649 default_bfd_arch
= bfd_scan_arch (chosen
);
650 if (default_bfd_arch
== NULL
)
651 internal_error (__FILE__
, __LINE__
,
652 _("initialize_current_architecture: Arch not found"));
655 info
.bfd_arch_info
= default_bfd_arch
;
657 /* Take several guesses at a byte order. */
658 if (default_byte_order
== BFD_ENDIAN_UNKNOWN
659 && default_bfd_vec
!= NULL
)
661 /* Extract BFD's default vector's byte order. */
662 switch (default_bfd_vec
->byteorder
)
665 default_byte_order
= BFD_ENDIAN_BIG
;
667 case BFD_ENDIAN_LITTLE
:
668 default_byte_order
= BFD_ENDIAN_LITTLE
;
674 if (default_byte_order
== BFD_ENDIAN_UNKNOWN
)
676 /* look for ``*el-*'' in the target name. */
678 chp
= strchr (target_name
, '-');
680 && chp
- 2 >= target_name
681 && startswith (chp
- 2, "el"))
682 default_byte_order
= BFD_ENDIAN_LITTLE
;
684 if (default_byte_order
== BFD_ENDIAN_UNKNOWN
)
686 /* Wire it to big-endian!!! */
687 default_byte_order
= BFD_ENDIAN_BIG
;
690 info
.byte_order
= default_byte_order
;
691 info
.byte_order_for_code
= info
.byte_order
;
693 if (! gdbarch_update_p (info
))
694 internal_error (__FILE__
, __LINE__
,
695 _("initialize_current_architecture: Selection of "
696 "initial architecture failed"));
698 /* Create the ``set architecture'' command appending ``auto'' to the
699 list of architectures. */
701 /* Append ``auto''. */
703 for (nr
= 0; arches
[nr
] != NULL
; nr
++);
704 arches
= XRESIZEVEC (const char *, arches
, nr
+ 2);
705 arches
[nr
+ 0] = "auto";
706 arches
[nr
+ 1] = NULL
;
707 add_setshow_enum_cmd ("architecture", class_support
,
708 arches
, &set_architecture_string
,
709 _("Set architecture of target."),
710 _("Show architecture of target."), NULL
,
711 set_architecture
, show_architecture
,
712 &setlist
, &showlist
);
713 add_alias_cmd ("processor", "architecture", class_support
, 1, &setlist
);
718 /* Initialize a gdbarch info to values that will be automatically
719 overridden. Note: Originally, this ``struct info'' was initialized
720 using memset(0). Unfortunately, that ran into problems, namely
721 BFD_ENDIAN_BIG is zero. An explicit initialization function that
722 can explicitly set each field to a well defined value is used. */
725 gdbarch_info_init (struct gdbarch_info
*info
)
727 memset (info
, 0, sizeof (struct gdbarch_info
));
728 info
->byte_order
= BFD_ENDIAN_UNKNOWN
;
729 info
->byte_order_for_code
= info
->byte_order
;
732 /* Similar to init, but this time fill in the blanks. Information is
733 obtained from the global "set ..." options and explicitly
734 initialized INFO fields. */
737 gdbarch_info_fill (struct gdbarch_info
*info
)
739 /* "(gdb) set architecture ...". */
740 if (info
->bfd_arch_info
== NULL
741 && target_architecture_user
)
742 info
->bfd_arch_info
= target_architecture_user
;
744 if (info
->bfd_arch_info
== NULL
745 && info
->abfd
!= NULL
746 && bfd_get_arch (info
->abfd
) != bfd_arch_unknown
747 && bfd_get_arch (info
->abfd
) != bfd_arch_obscure
)
748 info
->bfd_arch_info
= bfd_get_arch_info (info
->abfd
);
749 /* From the target. */
750 if (info
->target_desc
!= NULL
)
751 info
->bfd_arch_info
= choose_architecture_for_target
752 (info
->target_desc
, info
->bfd_arch_info
);
753 /* From the default. */
754 if (info
->bfd_arch_info
== NULL
)
755 info
->bfd_arch_info
= default_bfd_arch
;
757 /* "(gdb) set byte-order ...". */
758 if (info
->byte_order
== BFD_ENDIAN_UNKNOWN
759 && target_byte_order_user
!= BFD_ENDIAN_UNKNOWN
)
760 info
->byte_order
= target_byte_order_user
;
761 /* From the INFO struct. */
762 if (info
->byte_order
== BFD_ENDIAN_UNKNOWN
763 && info
->abfd
!= NULL
)
764 info
->byte_order
= (bfd_big_endian (info
->abfd
) ? BFD_ENDIAN_BIG
765 : bfd_little_endian (info
->abfd
) ? BFD_ENDIAN_LITTLE
766 : BFD_ENDIAN_UNKNOWN
);
767 /* From the default. */
768 if (info
->byte_order
== BFD_ENDIAN_UNKNOWN
)
769 info
->byte_order
= default_byte_order
;
770 info
->byte_order_for_code
= info
->byte_order
;
772 /* "(gdb) set osabi ...". Handled by gdbarch_lookup_osabi. */
773 /* From the manual override, or from file. */
774 if (info
->osabi
== GDB_OSABI_UNKNOWN
)
775 info
->osabi
= gdbarch_lookup_osabi (info
->abfd
);
776 /* From the target. */
778 if (info
->osabi
== GDB_OSABI_UNKNOWN
&& info
->target_desc
!= NULL
)
779 info
->osabi
= tdesc_osabi (info
->target_desc
);
780 /* From the configured default. */
781 #ifdef GDB_OSABI_DEFAULT
782 if (info
->osabi
== GDB_OSABI_UNKNOWN
)
783 info
->osabi
= GDB_OSABI_DEFAULT
;
785 /* If we still don't know which osabi to pick, pick none. */
786 if (info
->osabi
== GDB_OSABI_UNKNOWN
)
787 info
->osabi
= GDB_OSABI_NONE
;
789 /* Must have at least filled in the architecture. */
790 gdb_assert (info
->bfd_arch_info
!= NULL
);
793 /* Return "current" architecture. If the target is running, this is
794 the architecture of the selected frame. Otherwise, the "current"
795 architecture defaults to the target architecture.
797 This function should normally be called solely by the command
798 interpreter routines to determine the architecture to execute a
801 get_current_arch (void)
803 if (has_stack_frames ())
804 return get_frame_arch (get_selected_frame (NULL
));
806 return target_gdbarch ();
810 default_has_shared_address_space (struct gdbarch
*gdbarch
)
812 /* Simply say no. In most unix-like targets each inferior/process
813 has its own address space. */
818 default_fast_tracepoint_valid_at (struct gdbarch
*gdbarch
, CORE_ADDR addr
,
821 /* We don't know if maybe the target has some way to do fast
822 tracepoints that doesn't need gdbarch, so always say yes. */
829 default_breakpoint_from_pc (struct gdbarch
*gdbarch
, CORE_ADDR
*pcptr
,
832 int kind
= gdbarch_breakpoint_kind_from_pc (gdbarch
, pcptr
);
834 return gdbarch_sw_breakpoint_from_kind (gdbarch
, kind
, lenptr
);
837 default_breakpoint_kind_from_current_state (struct gdbarch
*gdbarch
,
838 struct regcache
*regcache
,
841 return gdbarch_breakpoint_kind_from_pc (gdbarch
, pcptr
);
846 default_gen_return_address (struct gdbarch
*gdbarch
,
847 struct agent_expr
*ax
, struct axs_value
*value
,
850 error (_("This architecture has no method to collect a return address."));
854 default_return_in_first_hidden_param_p (struct gdbarch
*gdbarch
,
857 /* Usually, the return value's address is stored the in the "first hidden"
858 parameter if the return value should be passed by reference, as
860 return language_pass_by_reference (type
);
863 int default_insn_is_call (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
868 int default_insn_is_ret (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
873 int default_insn_is_jump (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
879 default_skip_permanent_breakpoint (struct regcache
*regcache
)
881 struct gdbarch
*gdbarch
= regcache
->arch ();
882 CORE_ADDR current_pc
= regcache_read_pc (regcache
);
885 gdbarch_breakpoint_from_pc (gdbarch
, ¤t_pc
, &bp_len
);
886 current_pc
+= bp_len
;
887 regcache_write_pc (regcache
, current_pc
);
891 default_infcall_mmap (CORE_ADDR size
, unsigned prot
)
893 error (_("This target does not support inferior memory allocation by mmap."));
897 default_infcall_munmap (CORE_ADDR addr
, CORE_ADDR size
)
899 /* Memory reserved by inferior mmap is kept leaked. */
902 /* -mcmodel=large is used so that no GOT (Global Offset Table) is needed to be
903 created in inferior memory by GDB (normally it is set by ld.so). */
906 default_gcc_target_options (struct gdbarch
*gdbarch
)
908 return xstrprintf ("-m%d%s", gdbarch_ptr_bit (gdbarch
),
909 gdbarch_ptr_bit (gdbarch
) == 64 ? " -mcmodel=large" : "");
912 /* gdbarch gnu_triplet_regexp method. */
915 default_gnu_triplet_regexp (struct gdbarch
*gdbarch
)
917 return gdbarch_bfd_arch_info (gdbarch
)->arch_name
;
920 /* Default method for gdbarch_addressable_memory_unit_size. By default, a memory byte has
921 a size of 1 octet. */
924 default_addressable_memory_unit_size (struct gdbarch
*gdbarch
)
930 default_guess_tracepoint_registers (struct gdbarch
*gdbarch
,
931 struct regcache
*regcache
,
934 int pc_regno
= gdbarch_pc_regnum (gdbarch
);
937 /* This guessing code below only works if the PC register isn't
938 a pseudo-register. The value of a pseudo-register isn't stored
939 in the (non-readonly) regcache -- instead it's recomputed
940 (probably from some other cached raw register) whenever the
941 register is read. In this case, a custom method implementation
942 should be used by the architecture. */
943 if (pc_regno
< 0 || pc_regno
>= gdbarch_num_regs (gdbarch
))
946 regs
= (gdb_byte
*) alloca (register_size (gdbarch
, pc_regno
));
947 store_unsigned_integer (regs
, register_size (gdbarch
, pc_regno
),
948 gdbarch_byte_order (gdbarch
), addr
);
949 regcache_raw_supply (regcache
, pc_regno
, regs
);
953 default_print_insn (bfd_vma memaddr
, disassemble_info
*info
)
955 disassembler_ftype disassemble_fn
;
957 disassemble_fn
= disassembler (info
->arch
, info
->endian
== BFD_ENDIAN_BIG
,
958 info
->mach
, exec_bfd
);
960 gdb_assert (disassemble_fn
!= NULL
);
961 return (*disassemble_fn
) (memaddr
, info
);
964 /* See arch-utils.h. */
967 gdbarch_skip_prologue_noexcept (gdbarch
*gdbarch
, CORE_ADDR pc
) noexcept
969 CORE_ADDR new_pc
= pc
;
973 new_pc
= gdbarch_skip_prologue (gdbarch
, pc
);
975 CATCH (ex
, RETURN_MASK_ALL
)
982 /* See arch-utils.h. */
985 default_in_indirect_branch_thunk (gdbarch
*gdbarch
, CORE_ADDR pc
)
990 /* See arch-utils.h. */
993 default_type_align (struct gdbarch
*gdbarch
, struct type
*type
)
995 return TYPE_LENGTH (check_typedef (type
));
999 _initialize_gdbarch_utils (void)
1001 add_setshow_enum_cmd ("endian", class_support
,
1002 endian_enum
, &set_endian_string
,
1003 _("Set endianness of target."),
1004 _("Show endianness of target."),
1005 NULL
, set_endian
, show_endian
,
1006 &setlist
, &showlist
);