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