xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/arch-utils.c (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /* Dynamic architecture support for GDB, the GNU debugger.
2 
3    Copyright (C) 1998-2016 Free Software Foundation, Inc.
4 
5    This file is part of GDB.
6 
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.
11 
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.
16 
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/>.  */
19 
20 #include "defs.h"
21 
22 #include "arch-utils.h"
23 #include "buildsym.h"
24 #include "gdbcmd.h"
25 #include "inferior.h"		/* enum CALL_DUMMY_LOCATION et al.  */
26 #include "infrun.h"
27 #include "regcache.h"
28 #include "sim-regno.h"
29 #include "gdbcore.h"
30 #include "osabi.h"
31 #include "target-descriptions.h"
32 #include "objfiles.h"
33 #include "language.h"
34 #include "symtab.h"
35 
36 #include "version.h"
37 
38 #include "floatformat.h"
39 
40 
41 struct displaced_step_closure *
42 simple_displaced_step_copy_insn (struct gdbarch *gdbarch,
43                                  CORE_ADDR from, CORE_ADDR to,
44                                  struct regcache *regs)
45 {
46   size_t len = gdbarch_max_insn_length (gdbarch);
47   gdb_byte *buf = (gdb_byte *) xmalloc (len);
48 
49   read_memory (from, buf, len);
50   write_memory (to, buf, len);
51 
52   if (debug_displaced)
53     {
54       fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
55                           paddress (gdbarch, from), paddress (gdbarch, to));
56       displaced_step_dump_bytes (gdb_stdlog, buf, len);
57     }
58 
59   return (struct displaced_step_closure *) buf;
60 }
61 
62 
63 void
64 simple_displaced_step_free_closure (struct gdbarch *gdbarch,
65                                     struct displaced_step_closure *closure)
66 {
67   xfree (closure);
68 }
69 
70 int
71 default_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
72 				      struct displaced_step_closure *closure)
73 {
74   return !gdbarch_software_single_step_p (gdbarch);
75 }
76 
77 CORE_ADDR
78 displaced_step_at_entry_point (struct gdbarch *gdbarch)
79 {
80   CORE_ADDR addr;
81   int bp_len;
82 
83   addr = entry_point_address ();
84 
85   /* Inferior calls also use the entry point as a breakpoint location.
86      We don't want displaced stepping to interfere with those
87      breakpoints, so leave space.  */
88   gdbarch_breakpoint_from_pc (gdbarch, &addr, &bp_len);
89   addr += bp_len * 2;
90 
91   return addr;
92 }
93 
94 int
95 legacy_register_sim_regno (struct gdbarch *gdbarch, int regnum)
96 {
97   /* Only makes sense to supply raw registers.  */
98   gdb_assert (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch));
99   /* NOTE: cagney/2002-05-13: The old code did it this way and it is
100      suspected that some GDB/SIM combinations may rely on this
101      behavour.  The default should be one2one_register_sim_regno
102      (below).  */
103   if (gdbarch_register_name (gdbarch, regnum) != NULL
104       && gdbarch_register_name (gdbarch, regnum)[0] != '\0')
105     return regnum;
106   else
107     return LEGACY_SIM_REGNO_IGNORE;
108 }
109 
110 CORE_ADDR
111 generic_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
112 {
113   return 0;
114 }
115 
116 CORE_ADDR
117 generic_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
118 {
119   return 0;
120 }
121 
122 int
123 generic_in_solib_return_trampoline (struct gdbarch *gdbarch,
124 				    CORE_ADDR pc, const char *name)
125 {
126   return 0;
127 }
128 
129 int
130 generic_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
131 {
132   return 0;
133 }
134 
135 int
136 default_code_of_frame_writable (struct gdbarch *gdbarch,
137 				struct frame_info *frame)
138 {
139   return 1;
140 }
141 
142 /* Helper functions for gdbarch_inner_than */
143 
144 int
145 core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs)
146 {
147   return (lhs < rhs);
148 }
149 
150 int
151 core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs)
152 {
153   return (lhs > rhs);
154 }
155 
156 /* Misc helper functions for targets.  */
157 
158 CORE_ADDR
159 core_addr_identity (struct gdbarch *gdbarch, CORE_ADDR addr)
160 {
161   return addr;
162 }
163 
164 CORE_ADDR
165 convert_from_func_ptr_addr_identity (struct gdbarch *gdbarch, CORE_ADDR addr,
166 				     struct target_ops *targ)
167 {
168   return addr;
169 }
170 
171 int
172 no_op_reg_to_regnum (struct gdbarch *gdbarch, int reg)
173 {
174   return reg;
175 }
176 
177 void
178 default_coff_make_msymbol_special (int val, struct minimal_symbol *msym)
179 {
180   return;
181 }
182 
183 /* See arch-utils.h.  */
184 
185 void
186 default_make_symbol_special (struct symbol *sym, struct objfile *objfile)
187 {
188   return;
189 }
190 
191 /* See arch-utils.h.  */
192 
193 CORE_ADDR
194 default_adjust_dwarf2_addr (CORE_ADDR pc)
195 {
196   return pc;
197 }
198 
199 /* See arch-utils.h.  */
200 
201 CORE_ADDR
202 default_adjust_dwarf2_line (CORE_ADDR addr, int rel)
203 {
204   return addr;
205 }
206 
207 int
208 cannot_register_not (struct gdbarch *gdbarch, int regnum)
209 {
210   return 0;
211 }
212 
213 /* Legacy version of target_virtual_frame_pointer().  Assumes that
214    there is an gdbarch_deprecated_fp_regnum and that it is the same,
215    cooked or raw.  */
216 
217 void
218 legacy_virtual_frame_pointer (struct gdbarch *gdbarch,
219 			      CORE_ADDR pc,
220 			      int *frame_regnum,
221 			      LONGEST *frame_offset)
222 {
223   /* FIXME: cagney/2002-09-13: This code is used when identifying the
224      frame pointer of the current PC.  It is assuming that a single
225      register and an offset can determine this.  I think it should
226      instead generate a byte code expression as that would work better
227      with things like Dwarf2's CFI.  */
228   if (gdbarch_deprecated_fp_regnum (gdbarch) >= 0
229       && gdbarch_deprecated_fp_regnum (gdbarch)
230 	   < gdbarch_num_regs (gdbarch))
231     *frame_regnum = gdbarch_deprecated_fp_regnum (gdbarch);
232   else if (gdbarch_sp_regnum (gdbarch) >= 0
233 	   && gdbarch_sp_regnum (gdbarch)
234 	        < gdbarch_num_regs (gdbarch))
235     *frame_regnum = gdbarch_sp_regnum (gdbarch);
236   else
237     /* Should this be an internal error?  I guess so, it is reflecting
238        an architectural limitation in the current design.  */
239     internal_error (__FILE__, __LINE__,
240 		    _("No virtual frame pointer available"));
241   *frame_offset = 0;
242 }
243 
244 
245 int
246 generic_convert_register_p (struct gdbarch *gdbarch, int regnum,
247 			    struct type *type)
248 {
249   return 0;
250 }
251 
252 int
253 default_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
254 {
255   return 0;
256 }
257 
258 int
259 generic_instruction_nullified (struct gdbarch *gdbarch,
260 			       struct regcache *regcache)
261 {
262   return 0;
263 }
264 
265 int
266 default_remote_register_number (struct gdbarch *gdbarch,
267 				int regno)
268 {
269   return regno;
270 }
271 
272 /* See arch-utils.h.  */
273 
274 int
275 default_vsyscall_range (struct gdbarch *gdbarch, struct mem_range *range)
276 {
277   return 0;
278 }
279 
280 
281 /* Functions to manipulate the endianness of the target.  */
282 
283 static enum bfd_endian target_byte_order_user = BFD_ENDIAN_UNKNOWN;
284 
285 static const char endian_big[] = "big";
286 static const char endian_little[] = "little";
287 static const char endian_auto[] = "auto";
288 static const char *const endian_enum[] =
289 {
290   endian_big,
291   endian_little,
292   endian_auto,
293   NULL,
294 };
295 static const char *set_endian_string;
296 
297 enum bfd_endian
298 selected_byte_order (void)
299 {
300   return target_byte_order_user;
301 }
302 
303 /* Called by ``show endian''.  */
304 
305 static void
306 show_endian (struct ui_file *file, int from_tty, struct cmd_list_element *c,
307 	     const char *value)
308 {
309   if (target_byte_order_user == BFD_ENDIAN_UNKNOWN)
310     if (gdbarch_byte_order (get_current_arch ()) == BFD_ENDIAN_BIG)
311       fprintf_unfiltered (file, _("The target endianness is set automatically "
312 				  "(currently big endian)\n"));
313     else
314       fprintf_unfiltered (file, _("The target endianness is set automatically "
315 				  "(currently little endian)\n"));
316   else
317     if (target_byte_order_user == BFD_ENDIAN_BIG)
318       fprintf_unfiltered (file,
319 			  _("The target is assumed to be big endian\n"));
320     else
321       fprintf_unfiltered (file,
322 			  _("The target is assumed to be little endian\n"));
323 }
324 
325 static void
326 set_endian (char *ignore_args, int from_tty, struct cmd_list_element *c)
327 {
328   struct gdbarch_info info;
329 
330   gdbarch_info_init (&info);
331 
332   if (set_endian_string == endian_auto)
333     {
334       target_byte_order_user = BFD_ENDIAN_UNKNOWN;
335       if (! gdbarch_update_p (info))
336 	internal_error (__FILE__, __LINE__,
337 			_("set_endian: architecture update failed"));
338     }
339   else if (set_endian_string == endian_little)
340     {
341       info.byte_order = BFD_ENDIAN_LITTLE;
342       if (! gdbarch_update_p (info))
343 	printf_unfiltered (_("Little endian target not supported by GDB\n"));
344       else
345 	target_byte_order_user = BFD_ENDIAN_LITTLE;
346     }
347   else if (set_endian_string == endian_big)
348     {
349       info.byte_order = BFD_ENDIAN_BIG;
350       if (! gdbarch_update_p (info))
351 	printf_unfiltered (_("Big endian target not supported by GDB\n"));
352       else
353 	target_byte_order_user = BFD_ENDIAN_BIG;
354     }
355   else
356     internal_error (__FILE__, __LINE__,
357 		    _("set_endian: bad value"));
358 
359   show_endian (gdb_stdout, from_tty, NULL, NULL);
360 }
361 
362 /* Given SELECTED, a currently selected BFD architecture, and
363    TARGET_DESC, the current target description, return what
364    architecture to use.
365 
366    SELECTED may be NULL, in which case we return the architecture
367    associated with TARGET_DESC.  If SELECTED specifies a variant
368    of the architecture associtated with TARGET_DESC, return the
369    more specific of the two.
370 
371    If SELECTED is a different architecture, but it is accepted as
372    compatible by the target, we can use the target architecture.
373 
374    If SELECTED is obviously incompatible, warn the user.  */
375 
376 static const struct bfd_arch_info *
377 choose_architecture_for_target (const struct target_desc *target_desc,
378 				const struct bfd_arch_info *selected)
379 {
380   const struct bfd_arch_info *from_target = tdesc_architecture (target_desc);
381   const struct bfd_arch_info *compat1, *compat2;
382 
383   if (selected == NULL)
384     return from_target;
385 
386   if (from_target == NULL)
387     return selected;
388 
389   /* struct bfd_arch_info objects are singletons: that is, there's
390      supposed to be exactly one instance for a given machine.  So you
391      can tell whether two are equivalent by comparing pointers.  */
392   if (from_target == selected)
393     return selected;
394 
395   /* BFD's 'A->compatible (A, B)' functions return zero if A and B are
396      incompatible.  But if they are compatible, it returns the 'more
397      featureful' of the two arches.  That is, if A can run code
398      written for B, but B can't run code written for A, then it'll
399      return A.
400 
401      Some targets (e.g. MIPS as of 2006-12-04) don't fully
402      implement this, instead always returning NULL or the first
403      argument.  We detect that case by checking both directions.  */
404 
405   compat1 = selected->compatible (selected, from_target);
406   compat2 = from_target->compatible (from_target, selected);
407 
408   if (compat1 == NULL && compat2 == NULL)
409     {
410       /* BFD considers the architectures incompatible.  Check our
411 	 target description whether it accepts SELECTED as compatible
412 	 anyway.  */
413       if (tdesc_compatible_p (target_desc, selected))
414 	return from_target;
415 
416       warning (_("Selected architecture %s is not compatible "
417 		 "with reported target architecture %s"),
418 	       selected->printable_name, from_target->printable_name);
419       return selected;
420     }
421 
422   if (compat1 == NULL)
423     return compat2;
424   if (compat2 == NULL)
425     return compat1;
426   if (compat1 == compat2)
427     return compat1;
428 
429   /* If the two didn't match, but one of them was a default
430      architecture, assume the more specific one is correct.  This
431      handles the case where an executable or target description just
432      says "mips", but the other knows which MIPS variant.  */
433   if (compat1->the_default)
434     return compat2;
435   if (compat2->the_default)
436     return compat1;
437 
438   /* We have no idea which one is better.  This is a bug, but not
439      a critical problem; warn the user.  */
440   warning (_("Selected architecture %s is ambiguous with "
441 	     "reported target architecture %s"),
442 	   selected->printable_name, from_target->printable_name);
443   return selected;
444 }
445 
446 /* Functions to manipulate the architecture of the target.  */
447 
448 enum set_arch { set_arch_auto, set_arch_manual };
449 
450 static const struct bfd_arch_info *target_architecture_user;
451 
452 static const char *set_architecture_string;
453 
454 const char *
455 selected_architecture_name (void)
456 {
457   if (target_architecture_user == NULL)
458     return NULL;
459   else
460     return set_architecture_string;
461 }
462 
463 /* Called if the user enters ``show architecture'' without an
464    argument.  */
465 
466 static void
467 show_architecture (struct ui_file *file, int from_tty,
468 		   struct cmd_list_element *c, const char *value)
469 {
470   if (target_architecture_user == NULL)
471     fprintf_filtered (file, _("The target architecture is set "
472 			      "automatically (currently %s)\n"),
473 		      gdbarch_bfd_arch_info (get_current_arch ())->printable_name);
474   else
475     fprintf_filtered (file, _("The target architecture is assumed to be %s\n"),
476 		      set_architecture_string);
477 }
478 
479 
480 /* Called if the user enters ``set architecture'' with or without an
481    argument.  */
482 
483 static void
484 set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
485 {
486   struct gdbarch_info info;
487 
488   gdbarch_info_init (&info);
489 
490   if (strcmp (set_architecture_string, "auto") == 0)
491     {
492       target_architecture_user = NULL;
493       if (!gdbarch_update_p (info))
494 	internal_error (__FILE__, __LINE__,
495 			_("could not select an architecture automatically"));
496     }
497   else
498     {
499       info.bfd_arch_info = bfd_scan_arch (set_architecture_string);
500       if (info.bfd_arch_info == NULL)
501 	internal_error (__FILE__, __LINE__,
502 			_("set_architecture: bfd_scan_arch failed"));
503       if (gdbarch_update_p (info))
504 	target_architecture_user = info.bfd_arch_info;
505       else
506 	printf_unfiltered (_("Architecture `%s' not recognized.\n"),
507 			   set_architecture_string);
508     }
509   show_architecture (gdb_stdout, from_tty, NULL, NULL);
510 }
511 
512 /* Try to select a global architecture that matches "info".  Return
513    non-zero if the attempt succeeds.  */
514 int
515 gdbarch_update_p (struct gdbarch_info info)
516 {
517   struct gdbarch *new_gdbarch;
518 
519   /* Check for the current file.  */
520   if (info.abfd == NULL)
521     info.abfd = exec_bfd;
522   if (info.abfd == NULL)
523     info.abfd = core_bfd;
524 
525   /* Check for the current target description.  */
526   if (info.target_desc == NULL)
527     info.target_desc = target_current_description ();
528 
529   new_gdbarch = gdbarch_find_by_info (info);
530 
531   /* If there no architecture by that name, reject the request.  */
532   if (new_gdbarch == NULL)
533     {
534       if (gdbarch_debug)
535 	fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
536 			    "Architecture not found\n");
537       return 0;
538     }
539 
540   /* If it is the same old architecture, accept the request (but don't
541      swap anything).  */
542   if (new_gdbarch == target_gdbarch ())
543     {
544       if (gdbarch_debug)
545 	fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
546 			    "Architecture %s (%s) unchanged\n",
547 			    host_address_to_string (new_gdbarch),
548 			    gdbarch_bfd_arch_info (new_gdbarch)->printable_name);
549       return 1;
550     }
551 
552   /* It's a new architecture, swap it in.  */
553   if (gdbarch_debug)
554     fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
555 			"New architecture %s (%s) selected\n",
556 			host_address_to_string (new_gdbarch),
557 			gdbarch_bfd_arch_info (new_gdbarch)->printable_name);
558   set_target_gdbarch (new_gdbarch);
559 
560   return 1;
561 }
562 
563 /* Return the architecture for ABFD.  If no suitable architecture
564    could be find, return NULL.  */
565 
566 struct gdbarch *
567 gdbarch_from_bfd (bfd *abfd)
568 {
569   struct gdbarch_info info;
570   gdbarch_info_init (&info);
571 
572   info.abfd = abfd;
573   return gdbarch_find_by_info (info);
574 }
575 
576 /* Set the dynamic target-system-dependent parameters (architecture,
577    byte-order) using information found in the BFD */
578 
579 void
580 set_gdbarch_from_file (bfd *abfd)
581 {
582   struct gdbarch_info info;
583   struct gdbarch *gdbarch;
584 
585   gdbarch_info_init (&info);
586   info.abfd = abfd;
587   info.target_desc = target_current_description ();
588   gdbarch = gdbarch_find_by_info (info);
589 
590   if (gdbarch == NULL)
591     error (_("Architecture of file not recognized."));
592   set_target_gdbarch (gdbarch);
593 }
594 
595 /* Initialize the current architecture.  Update the ``set
596    architecture'' command so that it specifies a list of valid
597    architectures.  */
598 
599 #ifdef DEFAULT_BFD_ARCH
600 extern const bfd_arch_info_type DEFAULT_BFD_ARCH;
601 static const bfd_arch_info_type *default_bfd_arch = &DEFAULT_BFD_ARCH;
602 #else
603 static const bfd_arch_info_type *default_bfd_arch;
604 #endif
605 
606 #ifdef DEFAULT_BFD_VEC
607 extern const bfd_target DEFAULT_BFD_VEC;
608 static const bfd_target *default_bfd_vec = &DEFAULT_BFD_VEC;
609 #else
610 static const bfd_target *default_bfd_vec;
611 #endif
612 
613 static enum bfd_endian default_byte_order = BFD_ENDIAN_UNKNOWN;
614 
615 void
616 initialize_current_architecture (void)
617 {
618   const char **arches = gdbarch_printable_names ();
619   struct gdbarch_info info;
620 
621   /* determine a default architecture and byte order.  */
622   gdbarch_info_init (&info);
623 
624   /* Find a default architecture.  */
625   if (default_bfd_arch == NULL)
626     {
627       /* Choose the architecture by taking the first one
628 	 alphabetically.  */
629       const char *chosen = arches[0];
630       const char **arch;
631       for (arch = arches; *arch != NULL; arch++)
632 	{
633 	  if (strcmp (*arch, chosen) < 0)
634 	    chosen = *arch;
635 	}
636       if (chosen == NULL)
637 	internal_error (__FILE__, __LINE__,
638 			_("initialize_current_architecture: No arch"));
639       default_bfd_arch = bfd_scan_arch (chosen);
640       if (default_bfd_arch == NULL)
641 	internal_error (__FILE__, __LINE__,
642 			_("initialize_current_architecture: Arch not found"));
643     }
644 
645   info.bfd_arch_info = default_bfd_arch;
646 
647   /* Take several guesses at a byte order.  */
648   if (default_byte_order == BFD_ENDIAN_UNKNOWN
649       && default_bfd_vec != NULL)
650     {
651       /* Extract BFD's default vector's byte order.  */
652       switch (default_bfd_vec->byteorder)
653 	{
654 	case BFD_ENDIAN_BIG:
655 	  default_byte_order = BFD_ENDIAN_BIG;
656 	  break;
657 	case BFD_ENDIAN_LITTLE:
658 	  default_byte_order = BFD_ENDIAN_LITTLE;
659 	  break;
660 	default:
661 	  break;
662 	}
663     }
664   if (default_byte_order == BFD_ENDIAN_UNKNOWN)
665     {
666       /* look for ``*el-*'' in the target name.  */
667       const char *chp;
668       chp = strchr (target_name, '-');
669       if (chp != NULL
670 	  && chp - 2 >= target_name
671 	  && startswith (chp - 2, "el"))
672 	default_byte_order = BFD_ENDIAN_LITTLE;
673     }
674   if (default_byte_order == BFD_ENDIAN_UNKNOWN)
675     {
676       /* Wire it to big-endian!!! */
677       default_byte_order = BFD_ENDIAN_BIG;
678     }
679 
680   info.byte_order = default_byte_order;
681   info.byte_order_for_code = info.byte_order;
682 
683   if (! gdbarch_update_p (info))
684     internal_error (__FILE__, __LINE__,
685 		    _("initialize_current_architecture: Selection of "
686 		      "initial architecture failed"));
687 
688   /* Create the ``set architecture'' command appending ``auto'' to the
689      list of architectures.  */
690   {
691     /* Append ``auto''.  */
692     int nr;
693     for (nr = 0; arches[nr] != NULL; nr++);
694     arches = XRESIZEVEC (const char *, arches, nr + 2);
695     arches[nr + 0] = "auto";
696     arches[nr + 1] = NULL;
697     add_setshow_enum_cmd ("architecture", class_support,
698 			  arches, &set_architecture_string,
699 			  _("Set architecture of target."),
700 			  _("Show architecture of target."), NULL,
701 			  set_architecture, show_architecture,
702 			  &setlist, &showlist);
703     add_alias_cmd ("processor", "architecture", class_support, 1, &setlist);
704   }
705 }
706 
707 
708 /* Initialize a gdbarch info to values that will be automatically
709    overridden.  Note: Originally, this ``struct info'' was initialized
710    using memset(0).  Unfortunately, that ran into problems, namely
711    BFD_ENDIAN_BIG is zero.  An explicit initialization function that
712    can explicitly set each field to a well defined value is used.  */
713 
714 void
715 gdbarch_info_init (struct gdbarch_info *info)
716 {
717   memset (info, 0, sizeof (struct gdbarch_info));
718   info->byte_order = BFD_ENDIAN_UNKNOWN;
719   info->byte_order_for_code = info->byte_order;
720   info->osabi = GDB_OSABI_UNINITIALIZED;
721 }
722 
723 /* Similar to init, but this time fill in the blanks.  Information is
724    obtained from the global "set ..." options and explicitly
725    initialized INFO fields.  */
726 
727 void
728 gdbarch_info_fill (struct gdbarch_info *info)
729 {
730   /* "(gdb) set architecture ...".  */
731   if (info->bfd_arch_info == NULL
732       && target_architecture_user)
733     info->bfd_arch_info = target_architecture_user;
734   /* From the file.  */
735   if (info->bfd_arch_info == NULL
736       && info->abfd != NULL
737       && bfd_get_arch (info->abfd) != bfd_arch_unknown
738       && bfd_get_arch (info->abfd) != bfd_arch_obscure)
739     info->bfd_arch_info = bfd_get_arch_info (info->abfd);
740   /* From the target.  */
741   if (info->target_desc != NULL)
742     info->bfd_arch_info = choose_architecture_for_target
743 			   (info->target_desc, info->bfd_arch_info);
744   /* From the default.  */
745   if (info->bfd_arch_info == NULL)
746     info->bfd_arch_info = default_bfd_arch;
747 
748   /* "(gdb) set byte-order ...".  */
749   if (info->byte_order == BFD_ENDIAN_UNKNOWN
750       && target_byte_order_user != BFD_ENDIAN_UNKNOWN)
751     info->byte_order = target_byte_order_user;
752   /* From the INFO struct.  */
753   if (info->byte_order == BFD_ENDIAN_UNKNOWN
754       && info->abfd != NULL)
755     info->byte_order = (bfd_big_endian (info->abfd) ? BFD_ENDIAN_BIG
756 			: bfd_little_endian (info->abfd) ? BFD_ENDIAN_LITTLE
757 			: BFD_ENDIAN_UNKNOWN);
758   /* From the default.  */
759   if (info->byte_order == BFD_ENDIAN_UNKNOWN)
760     info->byte_order = default_byte_order;
761   info->byte_order_for_code = info->byte_order;
762 
763   /* "(gdb) set osabi ...".  Handled by gdbarch_lookup_osabi.  */
764   /* From the manual override, or from file.  */
765   if (info->osabi == GDB_OSABI_UNINITIALIZED)
766     info->osabi = gdbarch_lookup_osabi (info->abfd);
767   /* From the target.  */
768   if (info->osabi == GDB_OSABI_UNKNOWN && info->target_desc != NULL)
769     info->osabi = tdesc_osabi (info->target_desc);
770   /* From the configured default.  */
771 #ifdef GDB_OSABI_DEFAULT
772   if (info->osabi == GDB_OSABI_UNKNOWN)
773     info->osabi = GDB_OSABI_DEFAULT;
774 #endif
775 
776   /* Must have at least filled in the architecture.  */
777   gdb_assert (info->bfd_arch_info != NULL);
778 }
779 
780 /* Return "current" architecture.  If the target is running, this is
781    the architecture of the selected frame.  Otherwise, the "current"
782    architecture defaults to the target architecture.
783 
784    This function should normally be called solely by the command
785    interpreter routines to determine the architecture to execute a
786    command in.  */
787 struct gdbarch *
788 get_current_arch (void)
789 {
790   if (has_stack_frames ())
791     return get_frame_arch (get_selected_frame (NULL));
792   else
793     return target_gdbarch ();
794 }
795 
796 int
797 default_has_shared_address_space (struct gdbarch *gdbarch)
798 {
799   /* Simply say no.  In most unix-like targets each inferior/process
800      has its own address space.  */
801   return 0;
802 }
803 
804 int
805 default_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr,
806 				  char **msg)
807 {
808   /* We don't know if maybe the target has some way to do fast
809      tracepoints that doesn't need gdbarch, so always say yes.  */
810   if (msg)
811     *msg = NULL;
812   return 1;
813 }
814 
815 void
816 default_remote_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr,
817 				   int *kindptr)
818 {
819   gdbarch_breakpoint_from_pc (gdbarch, pcptr, kindptr);
820 }
821 
822 void
823 default_gen_return_address (struct gdbarch *gdbarch,
824 			    struct agent_expr *ax, struct axs_value *value,
825 			    CORE_ADDR scope)
826 {
827   error (_("This architecture has no method to collect a return address."));
828 }
829 
830 int
831 default_return_in_first_hidden_param_p (struct gdbarch *gdbarch,
832 					struct type *type)
833 {
834   /* Usually, the return value's address is stored the in the "first hidden"
835      parameter if the return value should be passed by reference, as
836      specified in ABI.  */
837   return language_pass_by_reference (type);
838 }
839 
840 int default_insn_is_call (struct gdbarch *gdbarch, CORE_ADDR addr)
841 {
842   return 0;
843 }
844 
845 int default_insn_is_ret (struct gdbarch *gdbarch, CORE_ADDR addr)
846 {
847   return 0;
848 }
849 
850 int default_insn_is_jump (struct gdbarch *gdbarch, CORE_ADDR addr)
851 {
852   return 0;
853 }
854 
855 void
856 default_skip_permanent_breakpoint (struct regcache *regcache)
857 {
858   struct gdbarch *gdbarch = get_regcache_arch (regcache);
859   CORE_ADDR current_pc = regcache_read_pc (regcache);
860   int bp_len;
861 
862   gdbarch_breakpoint_from_pc (gdbarch, &current_pc, &bp_len);
863   current_pc += bp_len;
864   regcache_write_pc (regcache, current_pc);
865 }
866 
867 CORE_ADDR
868 default_infcall_mmap (CORE_ADDR size, unsigned prot)
869 {
870   error (_("This target does not support inferior memory allocation by mmap."));
871 }
872 
873 void
874 default_infcall_munmap (CORE_ADDR addr, CORE_ADDR size)
875 {
876   /* Memory reserved by inferior mmap is kept leaked.  */
877 }
878 
879 /* -mcmodel=large is used so that no GOT (Global Offset Table) is needed to be
880    created in inferior memory by GDB (normally it is set by ld.so).  */
881 
882 char *
883 default_gcc_target_options (struct gdbarch *gdbarch)
884 {
885   return xstrprintf ("-m%d%s", gdbarch_ptr_bit (gdbarch),
886 		     gdbarch_ptr_bit (gdbarch) == 64 ? " -mcmodel=large" : "");
887 }
888 
889 /* gdbarch gnu_triplet_regexp method.  */
890 
891 const char *
892 default_gnu_triplet_regexp (struct gdbarch *gdbarch)
893 {
894   return gdbarch_bfd_arch_info (gdbarch)->arch_name;
895 }
896 
897 /* Default method for gdbarch_addressable_memory_unit_size.  By default, a memory byte has
898    a size of 1 octet.  */
899 
900 int
901 default_addressable_memory_unit_size (struct gdbarch *gdbarch)
902 {
903   return 1;
904 }
905 
906 void
907 default_guess_tracepoint_registers (struct gdbarch *gdbarch,
908 				    struct regcache *regcache,
909 				    CORE_ADDR addr)
910 {
911   int pc_regno = gdbarch_pc_regnum (gdbarch);
912   gdb_byte *regs;
913 
914   /* This guessing code below only works if the PC register isn't
915      a pseudo-register.  The value of a pseudo-register isn't stored
916      in the (non-readonly) regcache -- instead it's recomputed
917      (probably from some other cached raw register) whenever the
918      register is read.  In this case, a custom method implementation
919      should be used by the architecture.  */
920   if (pc_regno < 0 || pc_regno >= gdbarch_num_regs (gdbarch))
921     return;
922 
923   regs = (gdb_byte *) alloca (register_size (gdbarch, pc_regno));
924   store_unsigned_integer (regs, register_size (gdbarch, pc_regno),
925 			  gdbarch_byte_order (gdbarch), addr);
926   regcache_raw_supply (regcache, pc_regno, regs);
927 }
928 
929 /* -Wmissing-prototypes */
930 extern initialize_file_ftype _initialize_gdbarch_utils;
931 
932 void
933 _initialize_gdbarch_utils (void)
934 {
935   add_setshow_enum_cmd ("endian", class_support,
936 			endian_enum, &set_endian_string,
937 			_("Set endianness of target."),
938 			_("Show endianness of target."),
939 			NULL, set_endian, show_endian,
940 			&setlist, &showlist);
941 }
942