2012-01-04 Tristan Gingold <gingold@adacore.com>
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
CommitLineData
c0e8c252 1/* Dynamic architecture support for GDB, the GNU debugger.
f4f9705a 2
0b302171 3 Copyright (C) 1998-2012 Free Software Foundation, Inc.
c0e8c252
AC
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c0e8c252
AC
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c0e8c252
AC
19
20#include "defs.h"
21
fb6ecb0f 22#include "arch-utils.h"
192cb3d4 23#include "buildsym.h"
c0e8c252 24#include "gdbcmd.h"
0e2de366 25#include "inferior.h" /* enum CALL_DUMMY_LOCATION et al. */
5f8a3188 26#include "gdb_string.h"
fbec36e2 27#include "regcache.h"
39d4ef09 28#include "gdb_assert.h"
4182591f 29#include "sim-regno.h"
750eb019 30#include "gdbcore.h"
bf922ad9 31#include "osabi.h"
424163ea 32#include "target-descriptions.h"
237fc4c9 33#include "objfiles.h"
bf922ad9 34
1ba607ad
AC
35#include "version.h"
36
f0d4cc9e
AC
37#include "floatformat.h"
38
1fd35568 39
237fc4c9
PA
40struct displaced_step_closure *
41simple_displaced_step_copy_insn (struct gdbarch *gdbarch,
42 CORE_ADDR from, CORE_ADDR to,
43 struct regcache *regs)
44{
45 size_t len = gdbarch_max_insn_length (gdbarch);
46 gdb_byte *buf = xmalloc (len);
47
48 read_memory (from, buf, len);
49 write_memory (to, buf, len);
50
51 if (debug_displaced)
52 {
5af949e3
UW
53 fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
54 paddress (gdbarch, from), paddress (gdbarch, to));
237fc4c9
PA
55 displaced_step_dump_bytes (gdb_stdlog, buf, len);
56 }
57
58 return (struct displaced_step_closure *) buf;
59}
60
61
62void
63simple_displaced_step_free_closure (struct gdbarch *gdbarch,
64 struct displaced_step_closure *closure)
65{
66 xfree (closure);
67}
68
99e40580
UW
69int
70default_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
71 struct displaced_step_closure *closure)
72{
73 return !gdbarch_software_single_step_p (gdbarch);
74}
237fc4c9
PA
75
76CORE_ADDR
77displaced_step_at_entry_point (struct gdbarch *gdbarch)
78{
79 CORE_ADDR addr;
80 int bp_len;
81
82 addr = entry_point_address ();
83
237fc4c9
PA
84 /* Inferior calls also use the entry point as a breakpoint location.
85 We don't want displaced stepping to interfere with those
86 breakpoints, so leave space. */
87 gdbarch_breakpoint_from_pc (gdbarch, &addr, &bp_len);
b5914469 88 addr += bp_len * 3;
237fc4c9
PA
89
90 return addr;
91}
92
4182591f 93int
e7faf938 94legacy_register_sim_regno (struct gdbarch *gdbarch, int regnum)
4182591f
AC
95{
96 /* Only makes sense to supply raw registers. */
e7faf938 97 gdb_assert (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch));
4182591f
AC
98 /* NOTE: cagney/2002-05-13: The old code did it this way and it is
99 suspected that some GDB/SIM combinations may rely on this
100 behavour. The default should be one2one_register_sim_regno
101 (below). */
e7faf938
MD
102 if (gdbarch_register_name (gdbarch, regnum) != NULL
103 && gdbarch_register_name (gdbarch, regnum)[0] != '\0')
4182591f
AC
104 return regnum;
105 else
106 return LEGACY_SIM_REGNO_IGNORE;
107}
108
bdcd319a 109CORE_ADDR
52f729a7 110generic_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
bdcd319a
CV
111{
112 return 0;
113}
114
dea0c52f 115CORE_ADDR
4c8c40e6 116generic_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
dea0c52f
MK
117{
118 return 0;
119}
120
d50355b6 121int
e17a4113
UW
122generic_in_solib_return_trampoline (struct gdbarch *gdbarch,
123 CORE_ADDR pc, char *name)
d50355b6
MS
124{
125 return 0;
126}
127
c12260ac
CV
128int
129generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
130{
131 return 0;
132}
133
4d1e7dd1 134/* Helper functions for gdbarch_inner_than */
3339cf8b
AC
135
136int
fba45db2 137core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs)
3339cf8b
AC
138{
139 return (lhs < rhs);
140}
141
142int
fba45db2 143core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs)
3339cf8b
AC
144{
145 return (lhs > rhs);
146}
147
0e2de366 148/* Misc helper functions for targets. */
193e3b1a 149
f517ea4e 150CORE_ADDR
24568a2c 151core_addr_identity (struct gdbarch *gdbarch, CORE_ADDR addr)
f517ea4e
PS
152{
153 return addr;
154}
155
e2d0e7eb
AC
156CORE_ADDR
157convert_from_func_ptr_addr_identity (struct gdbarch *gdbarch, CORE_ADDR addr,
158 struct target_ops *targ)
159{
160 return addr;
161}
162
88c72b7d 163int
d3f73121 164no_op_reg_to_regnum (struct gdbarch *gdbarch, int reg)
88c72b7d
AC
165{
166 return reg;
167}
168
a2cf933a
EZ
169void
170default_elf_make_msymbol_special (asymbol *sym, struct minimal_symbol *msym)
171{
172 return;
173}
174
175void
176default_coff_make_msymbol_special (int val, struct minimal_symbol *msym)
177{
178 return;
179}
180
01fb7433 181int
64a3914f 182cannot_register_not (struct gdbarch *gdbarch, int regnum)
01fb7433
AC
183{
184 return 0;
185}
39d4ef09
AC
186
187/* Legacy version of target_virtual_frame_pointer(). Assumes that
0e2de366
MS
188 there is an gdbarch_deprecated_fp_regnum and that it is the same,
189 cooked or raw. */
39d4ef09
AC
190
191void
a54fba4c
MD
192legacy_virtual_frame_pointer (struct gdbarch *gdbarch,
193 CORE_ADDR pc,
39d4ef09
AC
194 int *frame_regnum,
195 LONGEST *frame_offset)
196{
20bcf01c
AC
197 /* FIXME: cagney/2002-09-13: This code is used when identifying the
198 frame pointer of the current PC. It is assuming that a single
199 register and an offset can determine this. I think it should
200 instead generate a byte code expression as that would work better
201 with things like Dwarf2's CFI. */
a54fba4c
MD
202 if (gdbarch_deprecated_fp_regnum (gdbarch) >= 0
203 && gdbarch_deprecated_fp_regnum (gdbarch)
204 < gdbarch_num_regs (gdbarch))
205 *frame_regnum = gdbarch_deprecated_fp_regnum (gdbarch);
206 else if (gdbarch_sp_regnum (gdbarch) >= 0
207 && gdbarch_sp_regnum (gdbarch)
208 < gdbarch_num_regs (gdbarch))
209 *frame_regnum = gdbarch_sp_regnum (gdbarch);
20bcf01c
AC
210 else
211 /* Should this be an internal error? I guess so, it is reflecting
212 an architectural limitation in the current design. */
0e2de366
MS
213 internal_error (__FILE__, __LINE__,
214 _("No virtual frame pointer available"));
39d4ef09
AC
215 *frame_offset = 0;
216}
46cd78fb 217
d7bd68ca 218\f
13d01224 219int
76a8ddb9
UW
220generic_convert_register_p (struct gdbarch *gdbarch, int regnum,
221 struct type *type)
13d01224 222{
9730f241 223 return 0;
13d01224
AC
224}
225
192cb3d4
MK
226int
227default_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
228{
192cb3d4
MK
229 return 0;
230}
231
3ca64954
RC
232int
233generic_instruction_nullified (struct gdbarch *gdbarch,
234 struct regcache *regcache)
235{
236 return 0;
237}
238
123dc839
DJ
239int
240default_remote_register_number (struct gdbarch *gdbarch,
241 int regno)
242{
243 return regno;
244}
245
01fb7433 246\f
b4a20239
AC
247/* Functions to manipulate the endianness of the target. */
248
7a107747 249static int target_byte_order_user = BFD_ENDIAN_UNKNOWN;
b4a20239 250
53904c9e
AC
251static const char endian_big[] = "big";
252static const char endian_little[] = "little";
253static const char endian_auto[] = "auto";
254static const char *endian_enum[] =
b4a20239
AC
255{
256 endian_big,
257 endian_little,
258 endian_auto,
259 NULL,
260};
53904c9e 261static const char *set_endian_string;
b4a20239 262
b6d373df
DJ
263enum bfd_endian
264selected_byte_order (void)
265{
e17c207e 266 return target_byte_order_user;
b6d373df
DJ
267}
268
b4a20239
AC
269/* Called by ``show endian''. */
270
271static void
7ab04401
AC
272show_endian (struct ui_file *file, int from_tty, struct cmd_list_element *c,
273 const char *value)
b4a20239 274{
7b6b9e83 275 if (target_byte_order_user == BFD_ENDIAN_UNKNOWN)
e17c207e 276 if (gdbarch_byte_order (get_current_arch ()) == BFD_ENDIAN_BIG)
7ab04401
AC
277 fprintf_unfiltered (file, _("The target endianness is set automatically "
278 "(currently big endian)\n"));
edefbb7c 279 else
7ab04401 280 fprintf_unfiltered (file, _("The target endianness is set automatically "
3e43a32a 281 "(currently little endian)\n"));
b4a20239 282 else
e17c207e 283 if (target_byte_order_user == BFD_ENDIAN_BIG)
7ab04401
AC
284 fprintf_unfiltered (file,
285 _("The target is assumed to be big endian\n"));
286 else
287 fprintf_unfiltered (file,
288 _("The target is assumed to be little endian\n"));
b4a20239
AC
289}
290
291static void
292set_endian (char *ignore_args, int from_tty, struct cmd_list_element *c)
293{
7a107747
DJ
294 struct gdbarch_info info;
295
296 gdbarch_info_init (&info);
297
3fd3d7d2 298 if (set_endian_string == endian_auto)
b4a20239 299 {
7a107747
DJ
300 target_byte_order_user = BFD_ENDIAN_UNKNOWN;
301 if (! gdbarch_update_p (info))
302 internal_error (__FILE__, __LINE__,
303 _("set_endian: architecture update failed"));
b4a20239
AC
304 }
305 else if (set_endian_string == endian_little)
306 {
d90cf509
AC
307 info.byte_order = BFD_ENDIAN_LITTLE;
308 if (! gdbarch_update_p (info))
edefbb7c 309 printf_unfiltered (_("Little endian target not supported by GDB\n"));
7a107747
DJ
310 else
311 target_byte_order_user = BFD_ENDIAN_LITTLE;
b4a20239
AC
312 }
313 else if (set_endian_string == endian_big)
314 {
d90cf509
AC
315 info.byte_order = BFD_ENDIAN_BIG;
316 if (! gdbarch_update_p (info))
edefbb7c 317 printf_unfiltered (_("Big endian target not supported by GDB\n"));
7a107747
DJ
318 else
319 target_byte_order_user = BFD_ENDIAN_BIG;
b4a20239
AC
320 }
321 else
8e65ff28 322 internal_error (__FILE__, __LINE__,
edefbb7c 323 _("set_endian: bad value"));
7a107747 324
7ab04401 325 show_endian (gdb_stdout, from_tty, NULL, NULL);
b4a20239
AC
326}
327
23181151 328/* Given SELECTED, a currently selected BFD architecture, and
e35359c5
UW
329 TARGET_DESC, the current target description, return what
330 architecture to use.
331
332 SELECTED may be NULL, in which case we return the architecture
333 associated with TARGET_DESC. If SELECTED specifies a variant
334 of the architecture associtated with TARGET_DESC, return the
335 more specific of the two.
336
337 If SELECTED is a different architecture, but it is accepted as
338 compatible by the target, we can use the target architecture.
339
340 If SELECTED is obviously incompatible, warn the user. */
23181151
DJ
341
342static const struct bfd_arch_info *
e35359c5
UW
343choose_architecture_for_target (const struct target_desc *target_desc,
344 const struct bfd_arch_info *selected)
23181151 345{
e35359c5 346 const struct bfd_arch_info *from_target = tdesc_architecture (target_desc);
23181151
DJ
347 const struct bfd_arch_info *compat1, *compat2;
348
349 if (selected == NULL)
350 return from_target;
351
352 if (from_target == NULL)
353 return selected;
354
355 /* struct bfd_arch_info objects are singletons: that is, there's
356 supposed to be exactly one instance for a given machine. So you
357 can tell whether two are equivalent by comparing pointers. */
358 if (from_target == selected)
359 return selected;
360
361 /* BFD's 'A->compatible (A, B)' functions return zero if A and B are
362 incompatible. But if they are compatible, it returns the 'more
363 featureful' of the two arches. That is, if A can run code
364 written for B, but B can't run code written for A, then it'll
365 return A.
366
367 Some targets (e.g. MIPS as of 2006-12-04) don't fully
368 implement this, instead always returning NULL or the first
369 argument. We detect that case by checking both directions. */
370
371 compat1 = selected->compatible (selected, from_target);
372 compat2 = from_target->compatible (from_target, selected);
373
374 if (compat1 == NULL && compat2 == NULL)
375 {
0e2de366
MS
376 /* BFD considers the architectures incompatible. Check our
377 target description whether it accepts SELECTED as compatible
378 anyway. */
e35359c5
UW
379 if (tdesc_compatible_p (target_desc, selected))
380 return from_target;
381
23181151
DJ
382 warning (_("Selected architecture %s is not compatible "
383 "with reported target architecture %s"),
384 selected->printable_name, from_target->printable_name);
385 return selected;
386 }
387
388 if (compat1 == NULL)
389 return compat2;
390 if (compat2 == NULL)
391 return compat1;
392 if (compat1 == compat2)
393 return compat1;
394
0e2de366
MS
395 /* If the two didn't match, but one of them was a default
396 architecture, assume the more specific one is correct. This
397 handles the case where an executable or target description just
398 says "mips", but the other knows which MIPS variant. */
23181151
DJ
399 if (compat1->the_default)
400 return compat2;
401 if (compat2->the_default)
402 return compat1;
403
404 /* We have no idea which one is better. This is a bug, but not
405 a critical problem; warn the user. */
406 warning (_("Selected architecture %s is ambiguous with "
407 "reported target architecture %s"),
408 selected->printable_name, from_target->printable_name);
409 return selected;
410}
411
0e2de366 412/* Functions to manipulate the architecture of the target. */
b4a20239
AC
413
414enum set_arch { set_arch_auto, set_arch_manual };
415
7a107747 416static const struct bfd_arch_info *target_architecture_user;
b4a20239 417
a8cf2722
AC
418static const char *set_architecture_string;
419
420const char *
421selected_architecture_name (void)
422{
7a107747 423 if (target_architecture_user == NULL)
a8cf2722
AC
424 return NULL;
425 else
426 return set_architecture_string;
427}
b4a20239 428
b4a20239 429/* Called if the user enters ``show architecture'' without an
0e2de366 430 argument. */
b4a20239
AC
431
432static void
7ab04401
AC
433show_architecture (struct ui_file *file, int from_tty,
434 struct cmd_list_element *c, const char *value)
b4a20239 435{
7a107747 436 if (target_architecture_user == NULL)
3e43a32a
MS
437 fprintf_filtered (file, _("The target architecture is set "
438 "automatically (currently %s)\n"),
439 gdbarch_bfd_arch_info (get_current_arch ())->printable_name);
b4a20239 440 else
3e43a32a
MS
441 fprintf_filtered (file, _("The target architecture is assumed to be %s\n"),
442 set_architecture_string);
b4a20239
AC
443}
444
445
446/* Called if the user enters ``set architecture'' with or without an
0e2de366 447 argument. */
b4a20239
AC
448
449static void
450set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
451{
7a107747
DJ
452 struct gdbarch_info info;
453
454 gdbarch_info_init (&info);
455
b4a20239
AC
456 if (strcmp (set_architecture_string, "auto") == 0)
457 {
7a107747
DJ
458 target_architecture_user = NULL;
459 if (!gdbarch_update_p (info))
460 internal_error (__FILE__, __LINE__,
461 _("could not select an architecture automatically"));
b4a20239 462 }
d90cf509 463 else
b4a20239 464 {
b4a20239
AC
465 info.bfd_arch_info = bfd_scan_arch (set_architecture_string);
466 if (info.bfd_arch_info == NULL)
8e65ff28 467 internal_error (__FILE__, __LINE__,
edefbb7c 468 _("set_architecture: bfd_scan_arch failed"));
16f33e29 469 if (gdbarch_update_p (info))
7a107747 470 target_architecture_user = info.bfd_arch_info;
b4a20239 471 else
edefbb7c 472 printf_unfiltered (_("Architecture `%s' not recognized.\n"),
b4a20239
AC
473 set_architecture_string);
474 }
7ab04401 475 show_architecture (gdb_stdout, from_tty, NULL, NULL);
b4a20239
AC
476}
477
ebdba546
AC
478/* Try to select a global architecture that matches "info". Return
479 non-zero if the attempt succeds. */
480int
481gdbarch_update_p (struct gdbarch_info info)
482{
a7f1256d
UW
483 struct gdbarch *new_gdbarch;
484
485 /* Check for the current file. */
486 if (info.abfd == NULL)
487 info.abfd = exec_bfd;
488 if (info.abfd == NULL)
489 info.abfd = core_bfd;
490
491 /* Check for the current target description. */
492 if (info.target_desc == NULL)
493 info.target_desc = target_current_description ();
494
495 new_gdbarch = gdbarch_find_by_info (info);
ebdba546
AC
496
497 /* If there no architecture by that name, reject the request. */
498 if (new_gdbarch == NULL)
499 {
500 if (gdbarch_debug)
501 fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
502 "Architecture not found\n");
503 return 0;
504 }
505
506 /* If it is the same old architecture, accept the request (but don't
507 swap anything). */
1cf3db46 508 if (new_gdbarch == target_gdbarch)
ebdba546
AC
509 {
510 if (gdbarch_debug)
511 fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
e3cb3832
JB
512 "Architecture %s (%s) unchanged\n",
513 host_address_to_string (new_gdbarch),
ebdba546
AC
514 gdbarch_bfd_arch_info (new_gdbarch)->printable_name);
515 return 1;
516 }
517
518 /* It's a new architecture, swap it in. */
519 if (gdbarch_debug)
520 fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: "
e3cb3832
JB
521 "New architecture %s (%s) selected\n",
522 host_address_to_string (new_gdbarch),
ebdba546 523 gdbarch_bfd_arch_info (new_gdbarch)->printable_name);
59837fe0 524 deprecated_target_gdbarch_select_hack (new_gdbarch);
ebdba546
AC
525
526 return 1;
527}
528
2b026650
MK
529/* Return the architecture for ABFD. If no suitable architecture
530 could be find, return NULL. */
531
532struct gdbarch *
533gdbarch_from_bfd (bfd *abfd)
b4a20239 534{
d90cf509
AC
535 struct gdbarch_info info;
536 gdbarch_info_init (&info);
05c547f6 537
d90cf509 538 info.abfd = abfd;
b60eb90d 539 return gdbarch_find_by_info (info);
2b026650
MK
540}
541
542/* Set the dynamic target-system-dependent parameters (architecture,
543 byte-order) using information found in the BFD */
544
545void
546set_gdbarch_from_file (bfd *abfd)
547{
a7f1256d 548 struct gdbarch_info info;
2b026650
MK
549 struct gdbarch *gdbarch;
550
a7f1256d
UW
551 gdbarch_info_init (&info);
552 info.abfd = abfd;
553 info.target_desc = target_current_description ();
554 gdbarch = gdbarch_find_by_info (info);
555
2b026650 556 if (gdbarch == NULL)
8a3fe4f8 557 error (_("Architecture of file not recognized."));
59837fe0 558 deprecated_target_gdbarch_select_hack (gdbarch);
b4a20239
AC
559}
560
561/* Initialize the current architecture. Update the ``set
562 architecture'' command so that it specifies a list of valid
563 architectures. */
564
1ba607ad
AC
565#ifdef DEFAULT_BFD_ARCH
566extern const bfd_arch_info_type DEFAULT_BFD_ARCH;
567static const bfd_arch_info_type *default_bfd_arch = &DEFAULT_BFD_ARCH;
568#else
4b9b3959 569static const bfd_arch_info_type *default_bfd_arch;
1ba607ad
AC
570#endif
571
572#ifdef DEFAULT_BFD_VEC
573extern const bfd_target DEFAULT_BFD_VEC;
574static const bfd_target *default_bfd_vec = &DEFAULT_BFD_VEC;
575#else
576static const bfd_target *default_bfd_vec;
577#endif
578
7a107747
DJ
579static int default_byte_order = BFD_ENDIAN_UNKNOWN;
580
b4a20239
AC
581void
582initialize_current_architecture (void)
583{
584 const char **arches = gdbarch_printable_names ();
05c547f6 585 struct gdbarch_info info;
b4a20239 586
0e2de366 587 /* determine a default architecture and byte order. */
fb6ecb0f 588 gdbarch_info_init (&info);
1ba607ad 589
0e2de366 590 /* Find a default architecture. */
7a107747 591 if (default_bfd_arch == NULL)
b4a20239 592 {
1ba607ad 593 /* Choose the architecture by taking the first one
0e2de366 594 alphabetically. */
1ba607ad 595 const char *chosen = arches[0];
b4a20239 596 const char **arch;
b4a20239
AC
597 for (arch = arches; *arch != NULL; arch++)
598 {
b4a20239
AC
599 if (strcmp (*arch, chosen) < 0)
600 chosen = *arch;
601 }
602 if (chosen == NULL)
8e65ff28 603 internal_error (__FILE__, __LINE__,
edefbb7c 604 _("initialize_current_architecture: No arch"));
7a107747
DJ
605 default_bfd_arch = bfd_scan_arch (chosen);
606 if (default_bfd_arch == NULL)
8e65ff28 607 internal_error (__FILE__, __LINE__,
edefbb7c 608 _("initialize_current_architecture: Arch not found"));
1ba607ad
AC
609 }
610
7a107747
DJ
611 info.bfd_arch_info = default_bfd_arch;
612
afe64c1a 613 /* Take several guesses at a byte order. */
7a107747 614 if (default_byte_order == BFD_ENDIAN_UNKNOWN
1ba607ad
AC
615 && default_bfd_vec != NULL)
616 {
0e2de366 617 /* Extract BFD's default vector's byte order. */
1ba607ad
AC
618 switch (default_bfd_vec->byteorder)
619 {
620 case BFD_ENDIAN_BIG:
7a107747 621 default_byte_order = BFD_ENDIAN_BIG;
1ba607ad
AC
622 break;
623 case BFD_ENDIAN_LITTLE:
7a107747 624 default_byte_order = BFD_ENDIAN_LITTLE;
1ba607ad
AC
625 break;
626 default:
627 break;
628 }
629 }
7a107747 630 if (default_byte_order == BFD_ENDIAN_UNKNOWN)
1ba607ad 631 {
0e2de366 632 /* look for ``*el-*'' in the target name. */
1ba607ad
AC
633 const char *chp;
634 chp = strchr (target_name, '-');
635 if (chp != NULL
636 && chp - 2 >= target_name
637 && strncmp (chp - 2, "el", 2) == 0)
7a107747 638 default_byte_order = BFD_ENDIAN_LITTLE;
1ba607ad 639 }
7a107747 640 if (default_byte_order == BFD_ENDIAN_UNKNOWN)
1ba607ad
AC
641 {
642 /* Wire it to big-endian!!! */
7a107747 643 default_byte_order = BFD_ENDIAN_BIG;
1ba607ad
AC
644 }
645
7a107747 646 info.byte_order = default_byte_order;
9d4fde75 647 info.byte_order_for_code = info.byte_order;
7a107747 648
d90cf509
AC
649 if (! gdbarch_update_p (info))
650 internal_error (__FILE__, __LINE__,
edefbb7c
AC
651 _("initialize_current_architecture: Selection of "
652 "initial architecture failed"));
b4a20239 653
1ba607ad 654 /* Create the ``set architecture'' command appending ``auto'' to the
0e2de366 655 list of architectures. */
b4a20239 656 {
0e2de366 657 /* Append ``auto''. */
b4a20239
AC
658 int nr;
659 for (nr = 0; arches[nr] != NULL; nr++);
660 arches = xrealloc (arches, sizeof (char*) * (nr + 2));
661 arches[nr + 0] = "auto";
662 arches[nr + 1] = NULL;
7ab04401 663 add_setshow_enum_cmd ("architecture", class_support,
3e43a32a
MS
664 arches, &set_architecture_string,
665 _("Set architecture of target."),
666 _("Show architecture of target."), NULL,
7ab04401
AC
667 set_architecture, show_architecture,
668 &setlist, &showlist);
b4a20239 669 add_alias_cmd ("processor", "architecture", class_support, 1, &setlist);
b4a20239
AC
670 }
671}
672
673
fb6ecb0f
AC
674/* Initialize a gdbarch info to values that will be automatically
675 overridden. Note: Originally, this ``struct info'' was initialized
ce2826aa 676 using memset(0). Unfortunately, that ran into problems, namely
fb6ecb0f
AC
677 BFD_ENDIAN_BIG is zero. An explicit initialization function that
678 can explicitly set each field to a well defined value is used. */
679
680void
681gdbarch_info_init (struct gdbarch_info *info)
682{
683 memset (info, 0, sizeof (struct gdbarch_info));
428721aa 684 info->byte_order = BFD_ENDIAN_UNKNOWN;
9d4fde75 685 info->byte_order_for_code = info->byte_order;
4be87837 686 info->osabi = GDB_OSABI_UNINITIALIZED;
fb6ecb0f
AC
687}
688
100bcc3f 689/* Similar to init, but this time fill in the blanks. Information is
7a107747
DJ
690 obtained from the global "set ..." options and explicitly
691 initialized INFO fields. */
bf922ad9
AC
692
693void
7a107747 694gdbarch_info_fill (struct gdbarch_info *info)
bf922ad9
AC
695{
696 /* "(gdb) set architecture ...". */
697 if (info->bfd_arch_info == NULL
7a107747
DJ
698 && target_architecture_user)
699 info->bfd_arch_info = target_architecture_user;
424163ea 700 /* From the file. */
bf922ad9
AC
701 if (info->bfd_arch_info == NULL
702 && info->abfd != NULL
703 && bfd_get_arch (info->abfd) != bfd_arch_unknown
704 && bfd_get_arch (info->abfd) != bfd_arch_obscure)
705 info->bfd_arch_info = bfd_get_arch_info (info->abfd);
23181151
DJ
706 /* From the target. */
707 if (info->target_desc != NULL)
708 info->bfd_arch_info = choose_architecture_for_target
e35359c5 709 (info->target_desc, info->bfd_arch_info);
7a107747
DJ
710 /* From the default. */
711 if (info->bfd_arch_info == NULL)
712 info->bfd_arch_info = default_bfd_arch;
bf922ad9
AC
713
714 /* "(gdb) set byte-order ...". */
715 if (info->byte_order == BFD_ENDIAN_UNKNOWN
7a107747
DJ
716 && target_byte_order_user != BFD_ENDIAN_UNKNOWN)
717 info->byte_order = target_byte_order_user;
bf922ad9
AC
718 /* From the INFO struct. */
719 if (info->byte_order == BFD_ENDIAN_UNKNOWN
720 && info->abfd != NULL)
721 info->byte_order = (bfd_big_endian (info->abfd) ? BFD_ENDIAN_BIG
7a107747
DJ
722 : bfd_little_endian (info->abfd) ? BFD_ENDIAN_LITTLE
723 : BFD_ENDIAN_UNKNOWN);
724 /* From the default. */
725 if (info->byte_order == BFD_ENDIAN_UNKNOWN)
726 info->byte_order = default_byte_order;
9d4fde75 727 info->byte_order_for_code = info->byte_order;
bf922ad9
AC
728
729 /* "(gdb) set osabi ...". Handled by gdbarch_lookup_osabi. */
08d16641 730 /* From the manual override, or from file. */
bf922ad9
AC
731 if (info->osabi == GDB_OSABI_UNINITIALIZED)
732 info->osabi = gdbarch_lookup_osabi (info->abfd);
08d16641
PA
733 /* From the target. */
734 if (info->osabi == GDB_OSABI_UNKNOWN && info->target_desc != NULL)
735 info->osabi = tdesc_osabi (info->target_desc);
736 /* From the configured default. */
f4290e2a 737#ifdef GDB_OSABI_DEFAULT
08d16641
PA
738 if (info->osabi == GDB_OSABI_UNKNOWN)
739 info->osabi = GDB_OSABI_DEFAULT;
f4290e2a 740#endif
bf922ad9
AC
741
742 /* Must have at least filled in the architecture. */
743 gdb_assert (info->bfd_arch_info != NULL);
744}
745
0e2de366
MS
746/* Return "current" architecture. If the target is running, this is
747 the architecture of the selected frame. Otherwise, the "current"
748 architecture defaults to the target architecture.
e17c207e 749
0e2de366
MS
750 This function should normally be called solely by the command
751 interpreter routines to determine the architecture to execute a
752 command in. */
e17c207e
UW
753struct gdbarch *
754get_current_arch (void)
755{
756 if (has_stack_frames ())
757 return get_frame_arch (get_selected_frame (NULL));
758 else
759 return target_gdbarch;
760}
761
6c95b8df
PA
762int
763default_has_shared_address_space (struct gdbarch *gdbarch)
764{
765 /* Simply say no. In most unix-like targets each inferior/process
766 has its own address space. */
767 return 0;
768}
769
7a697b8d
SS
770int
771default_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
772 CORE_ADDR addr, int *isize, char **msg)
773{
774 /* We don't know if maybe the target has some way to do fast
775 tracepoints that doesn't need gdbarch, so always say yes. */
776 if (msg)
777 *msg = NULL;
778 return 1;
779}
780
a1dcb23a
DJ
781void
782default_remote_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr,
783 int *kindptr)
784{
785 gdbarch_breakpoint_from_pc (gdbarch, pcptr, kindptr);
786}
787
6710bf39
SS
788void
789default_gen_return_address (struct gdbarch *gdbarch,
790 struct agent_expr *ax, struct axs_value *value,
791 CORE_ADDR scope)
792{
793 error (_("This architecture has no method to collect a return address."));
794}
795
c0e8c252
AC
796/* */
797
3e43a32a
MS
798/* -Wmissing-prototypes */
799extern initialize_file_ftype _initialize_gdbarch_utils;
c0e8c252
AC
800
801void
b4a20239 802_initialize_gdbarch_utils (void)
c0e8c252 803{
7ab04401 804 add_setshow_enum_cmd ("endian", class_support,
3e43a32a
MS
805 endian_enum, &set_endian_string,
806 _("Set endianness of target."),
807 _("Show endianness of target."),
808 NULL, set_endian, show_endian,
7ab04401 809 &setlist, &showlist);
c0e8c252 810}
This page took 0.731819 seconds and 4 git commands to generate.