* target.h (TARGET_VIRTUAL_FRAME_POINTER): Delete, multi-arched.
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
CommitLineData
c0e8c252 1/* Dynamic architecture support for GDB, the GNU debugger.
b6ba6518 2 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c0e8c252
AC
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#include "defs.h"
22
23#if GDB_MULTI_ARCH
24#include "gdbcmd.h"
25#include "inferior.h" /* enum CALL_DUMMY_LOCATION et.al. */
26#else
27/* Just include everything in sight so that the every old definition
28 of macro is visible. */
29#include "gdb_string.h"
c0e8c252
AC
30#include "symtab.h"
31#include "frame.h"
32#include "inferior.h"
33#include "breakpoint.h"
34#include "gdb_wait.h"
35#include "gdbcore.h"
36#include "gdbcmd.h"
37#include "target.h"
c0e8c252 38#include "annotate.h"
c0e8c252 39#endif
fbec36e2 40#include "regcache.h"
39d4ef09 41#include "gdb_assert.h"
c0e8c252 42
1ba607ad
AC
43#include "version.h"
44
f0d4cc9e
AC
45#include "floatformat.h"
46
c0e8c252
AC
47/* Use the program counter to determine the contents and size
48 of a breakpoint instruction. If no target-dependent macro
49 BREAKPOINT_FROM_PC has been defined to implement this function,
50 assume that the breakpoint doesn't depend on the PC, and
51 use the values of the BIG_BREAKPOINT and LITTLE_BREAKPOINT macros.
52 Return a pointer to a string of bytes that encode a breakpoint
53 instruction, stores the length of the string to *lenptr,
54 and optionally adjust the pc to point to the correct memory location
55 for inserting the breakpoint. */
56
57unsigned char *
58legacy_breakpoint_from_pc (CORE_ADDR * pcptr, int *lenptr)
59{
60 /* {BIG_,LITTLE_}BREAKPOINT is the sequence of bytes we insert for a
61 breakpoint. On some machines, breakpoints are handled by the
62 target environment and we don't have to worry about them here. */
63#ifdef BIG_BREAKPOINT
64 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
65 {
66 static unsigned char big_break_insn[] = BIG_BREAKPOINT;
67 *lenptr = sizeof (big_break_insn);
68 return big_break_insn;
69 }
70#endif
71#ifdef LITTLE_BREAKPOINT
72 if (TARGET_BYTE_ORDER != BIG_ENDIAN)
73 {
74 static unsigned char little_break_insn[] = LITTLE_BREAKPOINT;
75 *lenptr = sizeof (little_break_insn);
76 return little_break_insn;
77 }
78#endif
79#ifdef BREAKPOINT
80 {
81 static unsigned char break_insn[] = BREAKPOINT;
82 *lenptr = sizeof (break_insn);
83 return break_insn;
84 }
85#endif
86 *lenptr = 0;
87 return NULL;
88}
89
90int
91generic_frameless_function_invocation_not (struct frame_info *fi)
92{
93 return 0;
94}
95
71a9f22e
JB
96int
97generic_return_value_on_stack_not (struct type *type)
98{
99 return 0;
100}
101
c0e8c252
AC
102char *
103legacy_register_name (int i)
104{
105#ifdef REGISTER_NAMES
106 static char *names[] = REGISTER_NAMES;
107 if (i < 0 || i >= (sizeof (names) / sizeof (*names)))
108 return NULL;
109 else
110 return names[i];
111#else
8e65ff28
AC
112 internal_error (__FILE__, __LINE__,
113 "legacy_register_name: called.");
c0e8c252
AC
114 return NULL;
115#endif
116}
117
118#if defined (CALL_DUMMY)
119LONGEST legacy_call_dummy_words[] = CALL_DUMMY;
120#else
121LONGEST legacy_call_dummy_words[1];
122#endif
123int legacy_sizeof_call_dummy_words = sizeof (legacy_call_dummy_words);
124
125void
126generic_remote_translate_xfer_address (CORE_ADDR gdb_addr, int gdb_len,
127 CORE_ADDR * rem_addr, int *rem_len)
128{
129 *rem_addr = gdb_addr;
130 *rem_len = gdb_len;
131}
132
dad41f9a
AC
133int
134generic_prologue_frameless_p (CORE_ADDR ip)
135{
136#ifdef SKIP_PROLOGUE_FRAMELESS_P
137 return ip == SKIP_PROLOGUE_FRAMELESS_P (ip);
138#else
139 return ip == SKIP_PROLOGUE (ip);
140#endif
141}
142
143
3339cf8b
AC
144/* Helper functions for INNER_THAN */
145
146int
fba45db2 147core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs)
3339cf8b
AC
148{
149 return (lhs < rhs);
150}
151
152int
fba45db2 153core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs)
3339cf8b
AC
154{
155 return (lhs > rhs);
156}
157
158
f0d4cc9e
AC
159/* Helper functions for TARGET_{FLOAT,DOUBLE}_FORMAT */
160
161const struct floatformat *
162default_float_format (struct gdbarch *gdbarch)
163{
164#if GDB_MULTI_ARCH
165 int byte_order = gdbarch_byte_order (gdbarch);
166#else
167 int byte_order = TARGET_BYTE_ORDER;
168#endif
169 switch (byte_order)
170 {
171 case BIG_ENDIAN:
172 return &floatformat_ieee_single_big;
173 case LITTLE_ENDIAN:
174 return &floatformat_ieee_single_little;
175 default:
8e65ff28
AC
176 internal_error (__FILE__, __LINE__,
177 "default_float_format: bad byte order");
f0d4cc9e
AC
178 }
179}
180
181
182const struct floatformat *
183default_double_format (struct gdbarch *gdbarch)
184{
185#if GDB_MULTI_ARCH
186 int byte_order = gdbarch_byte_order (gdbarch);
187#else
188 int byte_order = TARGET_BYTE_ORDER;
189#endif
190 switch (byte_order)
191 {
192 case BIG_ENDIAN:
193 return &floatformat_ieee_double_big;
194 case LITTLE_ENDIAN:
195 return &floatformat_ieee_double_little;
196 default:
8e65ff28
AC
197 internal_error (__FILE__, __LINE__,
198 "default_double_format: bad byte order");
f0d4cc9e
AC
199 }
200}
201
193e3b1a
AC
202/* Misc helper functions for targets. */
203
204int
fba45db2 205frame_num_args_unknown (struct frame_info *fi)
193e3b1a
AC
206{
207 return -1;
208}
209
210
211int
fba45db2 212generic_register_convertible_not (int num)
193e3b1a
AC
213{
214 return 0;
215}
216
b4a20239 217
7c7651b2
AC
218int
219default_register_sim_regno (int num)
220{
221 return num;
222}
223
f517ea4e
PS
224
225CORE_ADDR
875e1767 226core_addr_identity (CORE_ADDR addr)
f517ea4e
PS
227{
228 return addr;
229}
230
88c72b7d
AC
231int
232no_op_reg_to_regnum (int reg)
233{
234 return reg;
235}
236
c347ee3e
MS
237/* For use by frame_args_address and frame_locals_address. */
238CORE_ADDR
239default_frame_address (struct frame_info *fi)
240{
241 return fi->frame;
242}
243
e02bc4cc
DS
244/* Default prepare_to_procced(). */
245int
246default_prepare_to_proceed (int select_it)
247{
248 return 0;
249}
250
251/* Generic prepare_to_proceed(). This one should be suitable for most
252 targets that support threads. */
253int
254generic_prepare_to_proceed (int select_it)
255{
39f77062 256 ptid_t wait_ptid;
e02bc4cc
DS
257 struct target_waitstatus wait_status;
258
259 /* Get the last target status returned by target_wait(). */
39f77062 260 get_last_target_status (&wait_ptid, &wait_status);
e02bc4cc 261
8849f47d
JL
262 /* Make sure we were stopped either at a breakpoint, or because
263 of a Ctrl-C. */
e02bc4cc 264 if (wait_status.kind != TARGET_WAITKIND_STOPPED
8849f47d
JL
265 || (wait_status.value.sig != TARGET_SIGNAL_TRAP &&
266 wait_status.value.sig != TARGET_SIGNAL_INT))
e02bc4cc
DS
267 {
268 return 0;
269 }
270
39f77062
KB
271 if (!ptid_equal (wait_ptid, minus_one_ptid)
272 && !ptid_equal (inferior_ptid, wait_ptid))
e02bc4cc
DS
273 {
274 /* Switched over from WAIT_PID. */
39f77062 275 CORE_ADDR wait_pc = read_pc_pid (wait_ptid);
e02bc4cc 276
8849f47d 277 if (wait_pc != read_pc ())
e02bc4cc
DS
278 {
279 if (select_it)
280 {
8849f47d 281 /* Switch back to WAIT_PID thread. */
39f77062 282 inferior_ptid = wait_ptid;
e02bc4cc
DS
283
284 /* FIXME: This stuff came from switch_to_thread() in
285 thread.c (which should probably be a public function). */
286 flush_cached_frames ();
287 registers_changed ();
288 stop_pc = wait_pc;
289 select_frame (get_current_frame (), 0);
290 }
8849f47d
JL
291 /* We return 1 to indicate that there is a breakpoint here,
292 so we need to step over it before continuing to avoid
293 hitting it straight away. */
294 if (breakpoint_here_p (wait_pc))
295 {
296 return 1;
297 }
e02bc4cc
DS
298 }
299 }
300 return 0;
301
302}
303
10312cc4
AC
304void
305init_frame_pc_noop (int fromleaf, struct frame_info *prev)
306{
307 return;
308}
309
7824d2f2
AC
310void
311init_frame_pc_default (int fromleaf, struct frame_info *prev)
312{
313 if (fromleaf)
314 prev->pc = SAVED_PC_AFTER_CALL (prev->next);
315 else if (prev->next != NULL)
316 prev->pc = FRAME_SAVED_PC (prev->next);
317 else
318 prev->pc = read_pc ();
319}
320
01fb7433
AC
321int
322cannot_register_not (int regnum)
323{
324 return 0;
325}
39d4ef09
AC
326
327/* Legacy version of target_virtual_frame_pointer(). Assumes that
328 there is an FP_REGNUM and that it is the same, cooked or raw. */
329
330void
331legacy_virtual_frame_pointer (CORE_ADDR pc,
332 int *frame_regnum,
333 LONGEST *frame_offset)
334{
335 gdb_assert (FP_REGNUM >= 0);
336 *frame_regnum = FP_REGNUM;
337 *frame_offset = 0;
338}
01fb7433 339\f
b4a20239
AC
340/* Functions to manipulate the endianness of the target. */
341
342#ifdef TARGET_BYTE_ORDER_SELECTABLE
343/* compat - Catch old targets that expect a selectable byte-order to
344 default to BIG_ENDIAN */
345#ifndef TARGET_BYTE_ORDER_DEFAULT
346#define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
347#endif
348#endif
349#if !TARGET_BYTE_ORDER_SELECTABLE_P
350#ifndef TARGET_BYTE_ORDER_DEFAULT
351/* compat - Catch old non byte-order selectable targets that do not
352 define TARGET_BYTE_ORDER_DEFAULT and instead expect
353 TARGET_BYTE_ORDER to be used as the default. For targets that
354 defined neither TARGET_BYTE_ORDER nor TARGET_BYTE_ORDER_DEFAULT the
355 below will get a strange compiler warning. */
356#define TARGET_BYTE_ORDER_DEFAULT TARGET_BYTE_ORDER
357#endif
358#endif
359#ifndef TARGET_BYTE_ORDER_DEFAULT
360#define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN /* arbitrary */
361#endif
1ba607ad
AC
362/* ``target_byte_order'' is only used when non- multi-arch.
363 Multi-arch targets obtain the current byte order using
364 TARGET_BYTE_ORDER which is controlled by gdbarch.*. */
b4a20239
AC
365int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
366int target_byte_order_auto = 1;
367
53904c9e
AC
368static const char endian_big[] = "big";
369static const char endian_little[] = "little";
370static const char endian_auto[] = "auto";
371static const char *endian_enum[] =
b4a20239
AC
372{
373 endian_big,
374 endian_little,
375 endian_auto,
376 NULL,
377};
53904c9e 378static const char *set_endian_string;
b4a20239
AC
379
380/* Called by ``show endian''. */
381
382static void
383show_endian (char *args, int from_tty)
384{
385 if (TARGET_BYTE_ORDER_AUTO)
386 printf_unfiltered ("The target endianness is set automatically (currently %s endian)\n",
387 (TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"));
388 else
389 printf_unfiltered ("The target is assumed to be %s endian\n",
390 (TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"));
391}
392
393static void
394set_endian (char *ignore_args, int from_tty, struct cmd_list_element *c)
395{
396 if (!TARGET_BYTE_ORDER_SELECTABLE_P)
397 {
398 printf_unfiltered ("Byte order is not selectable.");
399 }
400 else if (set_endian_string == endian_auto)
401 {
402 target_byte_order_auto = 1;
403 }
404 else if (set_endian_string == endian_little)
405 {
b4a20239
AC
406 target_byte_order_auto = 0;
407 if (GDB_MULTI_ARCH)
408 {
409 struct gdbarch_info info;
410 memset (&info, 0, sizeof info);
411 info.byte_order = LITTLE_ENDIAN;
16f33e29
AC
412 if (! gdbarch_update_p (info))
413 {
414 printf_unfiltered ("Little endian target not supported by GDB\n");
415 }
b4a20239 416 }
1ba607ad
AC
417 else
418 {
419 target_byte_order = LITTLE_ENDIAN;
420 }
b4a20239
AC
421 }
422 else if (set_endian_string == endian_big)
423 {
b4a20239
AC
424 target_byte_order_auto = 0;
425 if (GDB_MULTI_ARCH)
426 {
427 struct gdbarch_info info;
428 memset (&info, 0, sizeof info);
429 info.byte_order = BIG_ENDIAN;
16f33e29
AC
430 if (! gdbarch_update_p (info))
431 {
432 printf_unfiltered ("Big endian target not supported by GDB\n");
433 }
b4a20239 434 }
1ba607ad
AC
435 else
436 {
437 target_byte_order = BIG_ENDIAN;
438 }
b4a20239
AC
439 }
440 else
8e65ff28
AC
441 internal_error (__FILE__, __LINE__,
442 "set_endian: bad value");
b4a20239
AC
443 show_endian (NULL, from_tty);
444}
445
446/* Set the endianness from a BFD. */
447
448static void
449set_endian_from_file (bfd *abfd)
450{
1ba607ad 451 if (GDB_MULTI_ARCH)
8e65ff28
AC
452 internal_error (__FILE__, __LINE__,
453 "set_endian_from_file: not for multi-arch");
b4a20239
AC
454 if (TARGET_BYTE_ORDER_SELECTABLE_P)
455 {
456 int want;
457
458 if (bfd_big_endian (abfd))
459 want = BIG_ENDIAN;
460 else
461 want = LITTLE_ENDIAN;
462 if (TARGET_BYTE_ORDER_AUTO)
463 target_byte_order = want;
464 else if (TARGET_BYTE_ORDER != want)
465 warning ("%s endian file does not match %s endian target.",
466 want == BIG_ENDIAN ? "big" : "little",
467 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
468 }
469 else
470 {
471 if (bfd_big_endian (abfd)
472 ? TARGET_BYTE_ORDER != BIG_ENDIAN
473 : TARGET_BYTE_ORDER == BIG_ENDIAN)
474 warning ("%s endian file does not match %s endian target.",
475 bfd_big_endian (abfd) ? "big" : "little",
476 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
477 }
478}
479
480
481/* Functions to manipulate the architecture of the target */
482
483enum set_arch { set_arch_auto, set_arch_manual };
484
485int target_architecture_auto = 1;
486
53904c9e 487const char *set_architecture_string;
b4a20239
AC
488
489/* Old way of changing the current architecture. */
490
491extern const struct bfd_arch_info bfd_default_arch_struct;
492const struct bfd_arch_info *target_architecture = &bfd_default_arch_struct;
493int (*target_architecture_hook) (const struct bfd_arch_info *ap);
494
495static int
496arch_ok (const struct bfd_arch_info *arch)
497{
498 if (GDB_MULTI_ARCH)
8e65ff28
AC
499 internal_error (__FILE__, __LINE__,
500 "arch_ok: not multi-arched");
b4a20239
AC
501 /* Should be performing the more basic check that the binary is
502 compatible with GDB. */
503 /* Check with the target that the architecture is valid. */
504 return (target_architecture_hook == NULL
505 || target_architecture_hook (arch));
506}
507
508static void
509set_arch (const struct bfd_arch_info *arch,
510 enum set_arch type)
511{
512 if (GDB_MULTI_ARCH)
8e65ff28
AC
513 internal_error (__FILE__, __LINE__,
514 "set_arch: not multi-arched");
b4a20239
AC
515 switch (type)
516 {
517 case set_arch_auto:
518 if (!arch_ok (arch))
519 warning ("Target may not support %s architecture",
520 arch->printable_name);
521 target_architecture = arch;
522 break;
523 case set_arch_manual:
524 if (!arch_ok (arch))
525 {
526 printf_unfiltered ("Target does not support `%s' architecture.\n",
527 arch->printable_name);
528 }
529 else
530 {
531 target_architecture_auto = 0;
532 target_architecture = arch;
533 }
534 break;
535 }
536 if (gdbarch_debug)
4b9b3959 537 gdbarch_dump (current_gdbarch, gdb_stdlog);
b4a20239
AC
538}
539
540/* Set the architecture from arch/machine (deprecated) */
541
542void
543set_architecture_from_arch_mach (enum bfd_architecture arch,
544 unsigned long mach)
545{
546 const struct bfd_arch_info *wanted = bfd_lookup_arch (arch, mach);
547 if (GDB_MULTI_ARCH)
8e65ff28
AC
548 internal_error (__FILE__, __LINE__,
549 "set_architecture_from_arch_mach: not multi-arched");
b4a20239
AC
550 if (wanted != NULL)
551 set_arch (wanted, set_arch_manual);
552 else
8e65ff28
AC
553 internal_error (__FILE__, __LINE__,
554 "gdbarch: hardwired architecture/machine not recognized");
b4a20239
AC
555}
556
557/* Set the architecture from a BFD (deprecated) */
558
559static void
560set_architecture_from_file (bfd *abfd)
561{
562 const struct bfd_arch_info *wanted = bfd_get_arch_info (abfd);
563 if (GDB_MULTI_ARCH)
8e65ff28
AC
564 internal_error (__FILE__, __LINE__,
565 "set_architecture_from_file: not multi-arched");
b4a20239
AC
566 if (target_architecture_auto)
567 {
568 set_arch (wanted, set_arch_auto);
569 }
570 else if (wanted != target_architecture)
571 {
572 warning ("%s architecture file may be incompatible with %s target.",
573 wanted->printable_name,
574 target_architecture->printable_name);
575 }
576}
577
578
579/* Called if the user enters ``show architecture'' without an
580 argument. */
581
582static void
583show_architecture (char *args, int from_tty)
584{
585 const char *arch;
586 arch = TARGET_ARCHITECTURE->printable_name;
587 if (target_architecture_auto)
588 printf_filtered ("The target architecture is set automatically (currently %s)\n", arch);
589 else
590 printf_filtered ("The target architecture is assumed to be %s\n", arch);
591}
592
593
594/* Called if the user enters ``set architecture'' with or without an
595 argument. */
596
597static void
598set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
599{
600 if (strcmp (set_architecture_string, "auto") == 0)
601 {
602 target_architecture_auto = 1;
603 }
604 else if (GDB_MULTI_ARCH)
605 {
606 struct gdbarch_info info;
607 memset (&info, 0, sizeof info);
608 info.bfd_arch_info = bfd_scan_arch (set_architecture_string);
609 if (info.bfd_arch_info == NULL)
8e65ff28
AC
610 internal_error (__FILE__, __LINE__,
611 "set_architecture: bfd_scan_arch failed");
16f33e29 612 if (gdbarch_update_p (info))
b4a20239
AC
613 target_architecture_auto = 0;
614 else
ec3d358c 615 printf_unfiltered ("Architecture `%s' not recognized.\n",
b4a20239
AC
616 set_architecture_string);
617 }
618 else
619 {
620 const struct bfd_arch_info *arch
621 = bfd_scan_arch (set_architecture_string);
622 if (arch == NULL)
8e65ff28
AC
623 internal_error (__FILE__, __LINE__,
624 "set_architecture: bfd_scan_arch failed");
b4a20239
AC
625 set_arch (arch, set_arch_manual);
626 }
627 show_architecture (NULL, from_tty);
628}
629
b7d6b182 630/* Set the dynamic target-system-dependent parameters (architecture,
b4a20239
AC
631 byte-order) using information found in the BFD */
632
633void
fba45db2 634set_gdbarch_from_file (bfd *abfd)
b4a20239
AC
635{
636 if (GDB_MULTI_ARCH)
637 {
638 struct gdbarch_info info;
639 memset (&info, 0, sizeof info);
640 info.abfd = abfd;
16f33e29 641 if (! gdbarch_update_p (info))
ec3d358c 642 error ("Architecture of file not recognized.\n");
b4a20239
AC
643 }
644 else
645 {
646 set_architecture_from_file (abfd);
647 set_endian_from_file (abfd);
648 }
649}
650
651/* Initialize the current architecture. Update the ``set
652 architecture'' command so that it specifies a list of valid
653 architectures. */
654
1ba607ad
AC
655#ifdef DEFAULT_BFD_ARCH
656extern const bfd_arch_info_type DEFAULT_BFD_ARCH;
657static const bfd_arch_info_type *default_bfd_arch = &DEFAULT_BFD_ARCH;
658#else
4b9b3959 659static const bfd_arch_info_type *default_bfd_arch;
1ba607ad
AC
660#endif
661
662#ifdef DEFAULT_BFD_VEC
663extern const bfd_target DEFAULT_BFD_VEC;
664static const bfd_target *default_bfd_vec = &DEFAULT_BFD_VEC;
665#else
666static const bfd_target *default_bfd_vec;
667#endif
668
b4a20239
AC
669void
670initialize_current_architecture (void)
671{
672 const char **arches = gdbarch_printable_names ();
b4a20239 673
1ba607ad
AC
674 /* determine a default architecture and byte order. */
675 struct gdbarch_info info;
676 memset (&info, 0, sizeof (info));
677
678 /* Find a default architecture. */
679 if (info.bfd_arch_info == NULL
680 && default_bfd_arch != NULL)
681 info.bfd_arch_info = default_bfd_arch;
682 if (info.bfd_arch_info == NULL)
b4a20239 683 {
1ba607ad
AC
684 /* Choose the architecture by taking the first one
685 alphabetically. */
686 const char *chosen = arches[0];
b4a20239 687 const char **arch;
b4a20239
AC
688 for (arch = arches; *arch != NULL; arch++)
689 {
b4a20239
AC
690 if (strcmp (*arch, chosen) < 0)
691 chosen = *arch;
692 }
693 if (chosen == NULL)
8e65ff28
AC
694 internal_error (__FILE__, __LINE__,
695 "initialize_current_architecture: No arch");
b4a20239
AC
696 info.bfd_arch_info = bfd_scan_arch (chosen);
697 if (info.bfd_arch_info == NULL)
8e65ff28
AC
698 internal_error (__FILE__, __LINE__,
699 "initialize_current_architecture: Arch not found");
1ba607ad
AC
700 }
701
702 /* take several guesses at a byte order. */
703 /* NB: can't use TARGET_BYTE_ORDER_DEFAULT as its definition is
704 forced above. */
705 if (info.byte_order == 0
706 && default_bfd_vec != NULL)
707 {
708 /* Extract BFD's default vector's byte order. */
709 switch (default_bfd_vec->byteorder)
710 {
711 case BFD_ENDIAN_BIG:
712 info.byte_order = BIG_ENDIAN;
713 break;
714 case BFD_ENDIAN_LITTLE:
715 info.byte_order = LITTLE_ENDIAN;
716 break;
717 default:
718 break;
719 }
720 }
721 if (info.byte_order == 0)
722 {
723 /* look for ``*el-*'' in the target name. */
724 const char *chp;
725 chp = strchr (target_name, '-');
726 if (chp != NULL
727 && chp - 2 >= target_name
728 && strncmp (chp - 2, "el", 2) == 0)
729 info.byte_order = LITTLE_ENDIAN;
730 }
731 if (info.byte_order == 0)
732 {
733 /* Wire it to big-endian!!! */
734 info.byte_order = BIG_ENDIAN;
735 }
736
737 if (GDB_MULTI_ARCH)
738 {
16f33e29
AC
739 if (! gdbarch_update_p (info))
740 {
8e65ff28
AC
741 internal_error (__FILE__, __LINE__,
742 "initialize_current_architecture: Selection of initial architecture failed");
16f33e29 743 }
b4a20239 744 }
ceaa8edf
JB
745 else
746 initialize_non_multiarch ();
b4a20239 747
1ba607ad
AC
748 /* Create the ``set architecture'' command appending ``auto'' to the
749 list of architectures. */
b4a20239
AC
750 {
751 struct cmd_list_element *c;
752 /* Append ``auto''. */
753 int nr;
754 for (nr = 0; arches[nr] != NULL; nr++);
755 arches = xrealloc (arches, sizeof (char*) * (nr + 2));
756 arches[nr + 0] = "auto";
757 arches[nr + 1] = NULL;
758 /* FIXME: add_set_enum_cmd() uses an array of ``char *'' instead
759 of ``const char *''. We just happen to know that the casts are
760 safe. */
761 c = add_set_enum_cmd ("architecture", class_support,
53904c9e 762 arches, &set_architecture_string,
b4a20239
AC
763 "Set architecture of target.",
764 &setlist);
765 c->function.sfunc = set_architecture;
766 add_alias_cmd ("processor", "architecture", class_support, 1, &setlist);
767 /* Don't use set_from_show - need to print both auto/manual and
768 current setting. */
769 add_cmd ("architecture", class_support, show_architecture,
770 "Show the current target architecture", &showlist);
b4a20239
AC
771 }
772}
773
774
c0e8c252
AC
775/* */
776
b4a20239 777extern initialize_file_ftype _initialize_gdbarch_utils;
c0e8c252
AC
778
779void
b4a20239 780_initialize_gdbarch_utils (void)
c0e8c252 781{
b4a20239
AC
782 struct cmd_list_element *c;
783 c = add_set_enum_cmd ("endian", class_support,
784 endian_enum, &set_endian_string,
785 "Set endianness of target.",
786 &setlist);
787 c->function.sfunc = set_endian;
788 /* Don't use set_from_show - need to print both auto/manual and
789 current setting. */
790 add_cmd ("endian", class_support, show_endian,
791 "Show the current byte-order", &showlist);
c0e8c252 792}
This page took 0.127364 seconds and 4 git commands to generate.