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