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