2003-06-14 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
CommitLineData
c0e8c252 1/* Dynamic architecture support for GDB, the GNU debugger.
f4f9705a 2
4be87837 3 Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation,
f4f9705a 4 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
10 the Free Software Foundation; either version 2 of the License, or
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
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23#include "defs.h"
24
25#if GDB_MULTI_ARCH
fb6ecb0f 26#include "arch-utils.h"
c0e8c252
AC
27#include "gdbcmd.h"
28#include "inferior.h" /* enum CALL_DUMMY_LOCATION et.al. */
29#else
30/* Just include everything in sight so that the every old definition
31 of macro is visible. */
c0e8c252
AC
32#include "symtab.h"
33#include "frame.h"
34#include "inferior.h"
35#include "breakpoint.h"
36#include "gdb_wait.h"
37#include "gdbcore.h"
38#include "gdbcmd.h"
39#include "target.h"
c0e8c252 40#include "annotate.h"
c0e8c252 41#endif
5f8a3188 42#include "gdb_string.h"
fbec36e2 43#include "regcache.h"
39d4ef09 44#include "gdb_assert.h"
4182591f 45#include "sim-regno.h"
c0e8c252 46
1ba607ad
AC
47#include "version.h"
48
f0d4cc9e
AC
49#include "floatformat.h"
50
049ee0e4
AC
51/* Implementation of extract return value that grubs around in the
52 register cache. */
53void
54legacy_extract_return_value (struct type *type, struct regcache *regcache,
ebba8386 55 void *valbuf)
049ee0e4
AC
56{
57 char *registers = deprecated_grub_regcache_for_registers (regcache);
ebba8386 58 bfd_byte *buf = valbuf;
524d7c18 59 DEPRECATED_EXTRACT_RETURN_VALUE (type, registers, buf); /* OK */
049ee0e4
AC
60}
61
ebba8386
AC
62/* Implementation of store return value that grubs the register cache.
63 Takes a local copy of the buffer to avoid const problems. */
64void
65legacy_store_return_value (struct type *type, struct regcache *regcache,
66 const void *buf)
67{
68 bfd_byte *b = alloca (TYPE_LENGTH (type));
69 gdb_assert (regcache == current_regcache);
70 memcpy (b, buf, TYPE_LENGTH (type));
71 DEPRECATED_STORE_RETURN_VALUE (type, b);
72}
73
74
1fd35568
JB
75int
76always_use_struct_convention (int gcc_p, struct type *value_type)
77{
78 return 1;
79}
80
81
4182591f
AC
82int
83legacy_register_sim_regno (int regnum)
84{
85 /* Only makes sense to supply raw registers. */
86 gdb_assert (regnum >= 0 && regnum < NUM_REGS);
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). */
91 if (REGISTER_NAME (regnum) != NULL
92 && REGISTER_NAME (regnum)[0] != '\0')
93 return regnum;
94 else
95 return LEGACY_SIM_REGNO_IGNORE;
96}
97
c0e8c252
AC
98int
99generic_frameless_function_invocation_not (struct frame_info *fi)
100{
101 return 0;
102}
103
71a9f22e
JB
104int
105generic_return_value_on_stack_not (struct type *type)
106{
107 return 0;
108}
109
bdcd319a
CV
110CORE_ADDR
111generic_skip_trampoline_code (CORE_ADDR pc)
112{
113 return 0;
114}
115
68e9cc94
CV
116int
117generic_in_solib_call_trampoline (CORE_ADDR pc, char *name)
118{
119 return 0;
120}
121
d50355b6
MS
122int
123generic_in_solib_return_trampoline (CORE_ADDR pc, char *name)
124{
125 return 0;
126}
127
c12260ac
CV
128int
129generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
130{
131 return 0;
132}
133
fa88f677 134const char *
c0e8c252
AC
135legacy_register_name (int i)
136{
137#ifdef REGISTER_NAMES
138 static char *names[] = REGISTER_NAMES;
139 if (i < 0 || i >= (sizeof (names) / sizeof (*names)))
140 return NULL;
141 else
142 return names[i];
143#else
8e65ff28
AC
144 internal_error (__FILE__, __LINE__,
145 "legacy_register_name: called.");
c0e8c252
AC
146 return NULL;
147#endif
148}
149
150#if defined (CALL_DUMMY)
151LONGEST legacy_call_dummy_words[] = CALL_DUMMY;
152#else
153LONGEST legacy_call_dummy_words[1];
154#endif
155int legacy_sizeof_call_dummy_words = sizeof (legacy_call_dummy_words);
156
157void
f6684c31
AC
158generic_remote_translate_xfer_address (struct gdbarch *gdbarch,
159 struct regcache *regcache,
160 CORE_ADDR gdb_addr, int gdb_len,
c0e8c252
AC
161 CORE_ADDR * rem_addr, int *rem_len)
162{
163 *rem_addr = gdb_addr;
164 *rem_len = gdb_len;
165}
166
dad41f9a
AC
167int
168generic_prologue_frameless_p (CORE_ADDR ip)
169{
dad41f9a 170 return ip == SKIP_PROLOGUE (ip);
dad41f9a
AC
171}
172
2bf0cb65
EZ
173/* New/multi-arched targets should use the correct gdbarch field
174 instead of using this global pointer. */
175int
176legacy_print_insn (bfd_vma vma, disassemble_info *info)
177{
d7a27068 178 return (*deprecated_tm_print_insn) (vma, info);
2bf0cb65 179}
dad41f9a 180
3339cf8b
AC
181/* Helper functions for INNER_THAN */
182
183int
fba45db2 184core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs)
3339cf8b
AC
185{
186 return (lhs < rhs);
187}
188
189int
fba45db2 190core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs)
3339cf8b
AC
191{
192 return (lhs > rhs);
193}
194
195
f0d4cc9e
AC
196/* Helper functions for TARGET_{FLOAT,DOUBLE}_FORMAT */
197
198const struct floatformat *
199default_float_format (struct gdbarch *gdbarch)
200{
201#if GDB_MULTI_ARCH
202 int byte_order = gdbarch_byte_order (gdbarch);
203#else
204 int byte_order = TARGET_BYTE_ORDER;
205#endif
206 switch (byte_order)
207 {
d7449b42 208 case BFD_ENDIAN_BIG:
f0d4cc9e 209 return &floatformat_ieee_single_big;
778eb05e 210 case BFD_ENDIAN_LITTLE:
f0d4cc9e
AC
211 return &floatformat_ieee_single_little;
212 default:
8e65ff28
AC
213 internal_error (__FILE__, __LINE__,
214 "default_float_format: bad byte order");
f0d4cc9e
AC
215 }
216}
217
218
219const struct floatformat *
220default_double_format (struct gdbarch *gdbarch)
221{
222#if GDB_MULTI_ARCH
223 int byte_order = gdbarch_byte_order (gdbarch);
224#else
225 int byte_order = TARGET_BYTE_ORDER;
226#endif
227 switch (byte_order)
228 {
d7449b42 229 case BFD_ENDIAN_BIG:
f0d4cc9e 230 return &floatformat_ieee_double_big;
778eb05e 231 case BFD_ENDIAN_LITTLE:
f0d4cc9e
AC
232 return &floatformat_ieee_double_little;
233 default:
8e65ff28
AC
234 internal_error (__FILE__, __LINE__,
235 "default_double_format: bad byte order");
f0d4cc9e
AC
236 }
237}
238
193e3b1a
AC
239/* Misc helper functions for targets. */
240
193e3b1a 241int
781a750d 242deprecated_register_convertible_not (int num)
193e3b1a
AC
243{
244 return 0;
245}
246
b4a20239 247
c8f9d51c
JB
248/* Under some ABI's that specify the `struct convention' for returning
249 structures by value, by the time we've returned from the function,
250 the return value is sitting there in the caller's buffer, but GDB
251 has no way to find the address of that buffer.
252
253 On such architectures, use this function as your
254 extract_struct_value_address method. When asked to a struct
255 returned by value in this fashion, GDB will print a nice error
256 message, instead of garbage. */
257CORE_ADDR
258generic_cannot_extract_struct_value_address (char *dummy)
259{
260 return 0;
261}
262
f517ea4e 263CORE_ADDR
875e1767 264core_addr_identity (CORE_ADDR addr)
f517ea4e
PS
265{
266 return addr;
267}
268
88c72b7d
AC
269int
270no_op_reg_to_regnum (int reg)
271{
272 return reg;
273}
274
e02bc4cc
DS
275/* Default prepare_to_procced(). */
276int
277default_prepare_to_proceed (int select_it)
278{
279 return 0;
280}
281
282/* Generic prepare_to_proceed(). This one should be suitable for most
283 targets that support threads. */
284int
285generic_prepare_to_proceed (int select_it)
286{
39f77062 287 ptid_t wait_ptid;
e02bc4cc
DS
288 struct target_waitstatus wait_status;
289
290 /* Get the last target status returned by target_wait(). */
39f77062 291 get_last_target_status (&wait_ptid, &wait_status);
e02bc4cc 292
8849f47d
JL
293 /* Make sure we were stopped either at a breakpoint, or because
294 of a Ctrl-C. */
e02bc4cc 295 if (wait_status.kind != TARGET_WAITKIND_STOPPED
8849f47d
JL
296 || (wait_status.value.sig != TARGET_SIGNAL_TRAP &&
297 wait_status.value.sig != TARGET_SIGNAL_INT))
e02bc4cc
DS
298 {
299 return 0;
300 }
301
39f77062
KB
302 if (!ptid_equal (wait_ptid, minus_one_ptid)
303 && !ptid_equal (inferior_ptid, wait_ptid))
e02bc4cc
DS
304 {
305 /* Switched over from WAIT_PID. */
39f77062 306 CORE_ADDR wait_pc = read_pc_pid (wait_ptid);
e02bc4cc 307
8849f47d 308 if (wait_pc != read_pc ())
e02bc4cc
DS
309 {
310 if (select_it)
311 {
8849f47d 312 /* Switch back to WAIT_PID thread. */
39f77062 313 inferior_ptid = wait_ptid;
e02bc4cc
DS
314
315 /* FIXME: This stuff came from switch_to_thread() in
316 thread.c (which should probably be a public function). */
317 flush_cached_frames ();
318 registers_changed ();
319 stop_pc = wait_pc;
0f7d239c 320 select_frame (get_current_frame ());
e02bc4cc 321 }
8849f47d
JL
322 /* We return 1 to indicate that there is a breakpoint here,
323 so we need to step over it before continuing to avoid
324 hitting it straight away. */
325 if (breakpoint_here_p (wait_pc))
326 {
327 return 1;
328 }
e02bc4cc
DS
329 }
330 }
331 return 0;
332
333}
334
97f46953 335CORE_ADDR
10312cc4
AC
336init_frame_pc_noop (int fromleaf, struct frame_info *prev)
337{
97f46953
AC
338 /* Do nothing, implies return the same PC value. */
339 return get_frame_pc (prev);
10312cc4
AC
340}
341
97f46953 342CORE_ADDR
7824d2f2
AC
343init_frame_pc_default (int fromleaf, struct frame_info *prev)
344{
6913c89a
AC
345 if (fromleaf && DEPRECATED_SAVED_PC_AFTER_CALL_P ())
346 return DEPRECATED_SAVED_PC_AFTER_CALL (get_next_frame (prev));
75e3c1f9 347 else if (get_next_frame (prev) != NULL)
8bedc050 348 return DEPRECATED_FRAME_SAVED_PC (get_next_frame (prev));
7824d2f2 349 else
97f46953 350 return read_pc ();
7824d2f2
AC
351}
352
a2cf933a
EZ
353void
354default_elf_make_msymbol_special (asymbol *sym, struct minimal_symbol *msym)
355{
356 return;
357}
358
359void
360default_coff_make_msymbol_special (int val, struct minimal_symbol *msym)
361{
362 return;
363}
364
01fb7433
AC
365int
366cannot_register_not (int regnum)
367{
368 return 0;
369}
39d4ef09
AC
370
371/* Legacy version of target_virtual_frame_pointer(). Assumes that
0ba6dca9
AC
372 there is an DEPRECATED_FP_REGNUM and that it is the same, cooked or
373 raw. */
39d4ef09
AC
374
375void
376legacy_virtual_frame_pointer (CORE_ADDR pc,
377 int *frame_regnum,
378 LONGEST *frame_offset)
379{
20bcf01c
AC
380 /* FIXME: cagney/2002-09-13: This code is used when identifying the
381 frame pointer of the current PC. It is assuming that a single
382 register and an offset can determine this. I think it should
383 instead generate a byte code expression as that would work better
384 with things like Dwarf2's CFI. */
0ba6dca9
AC
385 if (DEPRECATED_FP_REGNUM >= 0 && DEPRECATED_FP_REGNUM < NUM_REGS)
386 *frame_regnum = DEPRECATED_FP_REGNUM;
20bcf01c
AC
387 else if (SP_REGNUM >= 0 && SP_REGNUM < NUM_REGS)
388 *frame_regnum = SP_REGNUM;
389 else
390 /* Should this be an internal error? I guess so, it is reflecting
391 an architectural limitation in the current design. */
392 internal_error (__FILE__, __LINE__, "No virtual frame pointer available");
39d4ef09
AC
393 *frame_offset = 0;
394}
46cd78fb 395
b2e75d78
AC
396/* Assume the world is sane, every register's virtual and real size
397 is identical. */
46cd78fb
AC
398
399int
b2e75d78 400generic_register_size (int regnum)
46cd78fb
AC
401{
402 gdb_assert (regnum >= 0 && regnum < NUM_REGS + NUM_PSEUDO_REGS);
35cac7cf
AC
403 if (gdbarch_register_type_p (current_gdbarch))
404 return TYPE_LENGTH (gdbarch_register_type (current_gdbarch, regnum));
405 else
406 /* FIXME: cagney/2003-03-01: Once all architectures implement
407 gdbarch_register_type(), this entire function can go away. It
408 is made obsolete by register_size(). */
409 return TYPE_LENGTH (REGISTER_VIRTUAL_TYPE (regnum)); /* OK */
ce29138a
MS
410}
411
a7e3c2ad
AC
412/* Assume all registers are adjacent. */
413
414int
415generic_register_byte (int regnum)
416{
417 int byte;
418 int i;
419 gdb_assert (regnum >= 0 && regnum < NUM_REGS + NUM_PSEUDO_REGS);
420 byte = 0;
421 for (i = 0; i < regnum; i++)
422 {
0aa7e1aa 423 byte += generic_register_size (i);
a7e3c2ad
AC
424 }
425 return byte;
426}
427
d7bd68ca
AC
428\f
429int
430legacy_pc_in_sigtramp (CORE_ADDR pc, char *name)
431{
db54fef4
CV
432#if !defined (IN_SIGTRAMP)
433 if (SIGTRAMP_START_P ())
434 return (pc) >= SIGTRAMP_START (pc) && (pc) < SIGTRAMP_END (pc);
435 else
436 return name && strcmp ("_sigtramp", name) == 0;
437#else
438 return IN_SIGTRAMP (pc, name);
439#endif
d7bd68ca
AC
440}
441
13d01224 442int
ff2e87ac 443legacy_convert_register_p (int regnum, struct type *type)
13d01224 444{
781a750d 445 return DEPRECATED_REGISTER_CONVERTIBLE (regnum);
13d01224
AC
446}
447
448void
ff2e87ac
AC
449legacy_register_to_value (struct frame_info *frame, int regnum,
450 struct type *type, void *to)
13d01224 451{
ff2e87ac
AC
452 char from[MAX_REGISTER_SIZE];
453 frame_read_register (frame, regnum, from);
781a750d 454 DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL (regnum, type, from, to);
13d01224
AC
455}
456
457void
ff2e87ac
AC
458legacy_value_to_register (struct frame_info *frame, int regnum,
459 struct type *type, const void *tmp)
13d01224 460{
ff2e87ac
AC
461 char to[MAX_REGISTER_SIZE];
462 char *from = alloca (TYPE_LENGTH (type));
463 memcpy (from, from, TYPE_LENGTH (type));
781a750d 464 DEPRECATED_REGISTER_CONVERT_TO_RAW (type, regnum, from, to);
ff2e87ac 465 put_frame_register (frame, regnum, to);
13d01224
AC
466}
467
01fb7433 468\f
b4a20239
AC
469/* Functions to manipulate the endianness of the target. */
470
1ba607ad 471/* ``target_byte_order'' is only used when non- multi-arch.
afe64c1a
AC
472 Multi-arch targets obtain the current byte order using the
473 TARGET_BYTE_ORDER gdbarch method.
474
475 The choice of initial value is entirely arbitrary. During startup,
476 the function initialize_current_architecture() updates this value
477 based on default byte-order information extracted from BFD. */
478int target_byte_order = BFD_ENDIAN_BIG;
b4a20239
AC
479int target_byte_order_auto = 1;
480
53904c9e
AC
481static const char endian_big[] = "big";
482static const char endian_little[] = "little";
483static const char endian_auto[] = "auto";
484static const char *endian_enum[] =
b4a20239
AC
485{
486 endian_big,
487 endian_little,
488 endian_auto,
489 NULL,
490};
53904c9e 491static const char *set_endian_string;
b4a20239
AC
492
493/* Called by ``show endian''. */
494
495static void
496show_endian (char *args, int from_tty)
497{
498 if (TARGET_BYTE_ORDER_AUTO)
499 printf_unfiltered ("The target endianness is set automatically (currently %s endian)\n",
d7449b42 500 (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? "big" : "little"));
b4a20239
AC
501 else
502 printf_unfiltered ("The target is assumed to be %s endian\n",
d7449b42 503 (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? "big" : "little"));
b4a20239
AC
504}
505
506static void
507set_endian (char *ignore_args, int from_tty, struct cmd_list_element *c)
508{
3fd3d7d2 509 if (set_endian_string == endian_auto)
b4a20239
AC
510 {
511 target_byte_order_auto = 1;
512 }
513 else if (set_endian_string == endian_little)
514 {
b4a20239
AC
515 target_byte_order_auto = 0;
516 if (GDB_MULTI_ARCH)
517 {
518 struct gdbarch_info info;
fb6ecb0f 519 gdbarch_info_init (&info);
778eb05e 520 info.byte_order = BFD_ENDIAN_LITTLE;
16f33e29
AC
521 if (! gdbarch_update_p (info))
522 {
523 printf_unfiltered ("Little endian target not supported by GDB\n");
524 }
b4a20239 525 }
1ba607ad
AC
526 else
527 {
778eb05e 528 target_byte_order = BFD_ENDIAN_LITTLE;
1ba607ad 529 }
b4a20239
AC
530 }
531 else if (set_endian_string == endian_big)
532 {
b4a20239
AC
533 target_byte_order_auto = 0;
534 if (GDB_MULTI_ARCH)
535 {
536 struct gdbarch_info info;
fb6ecb0f 537 gdbarch_info_init (&info);
d7449b42 538 info.byte_order = BFD_ENDIAN_BIG;
16f33e29
AC
539 if (! gdbarch_update_p (info))
540 {
541 printf_unfiltered ("Big endian target not supported by GDB\n");
542 }
b4a20239 543 }
1ba607ad
AC
544 else
545 {
d7449b42 546 target_byte_order = BFD_ENDIAN_BIG;
1ba607ad 547 }
b4a20239
AC
548 }
549 else
8e65ff28
AC
550 internal_error (__FILE__, __LINE__,
551 "set_endian: bad value");
b4a20239
AC
552 show_endian (NULL, from_tty);
553}
554
555/* Set the endianness from a BFD. */
556
557static void
558set_endian_from_file (bfd *abfd)
559{
3fd3d7d2 560 int want;
1ba607ad 561 if (GDB_MULTI_ARCH)
8e65ff28
AC
562 internal_error (__FILE__, __LINE__,
563 "set_endian_from_file: not for multi-arch");
3fd3d7d2
AC
564 if (bfd_big_endian (abfd))
565 want = BFD_ENDIAN_BIG;
b4a20239 566 else
3fd3d7d2
AC
567 want = BFD_ENDIAN_LITTLE;
568 if (TARGET_BYTE_ORDER_AUTO)
569 target_byte_order = want;
570 else if (TARGET_BYTE_ORDER != want)
571 warning ("%s endian file does not match %s endian target.",
572 want == BFD_ENDIAN_BIG ? "big" : "little",
573 TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? "big" : "little");
b4a20239
AC
574}
575
576
577/* Functions to manipulate the architecture of the target */
578
579enum set_arch { set_arch_auto, set_arch_manual };
580
581int target_architecture_auto = 1;
582
53904c9e 583const char *set_architecture_string;
b4a20239
AC
584
585/* Old way of changing the current architecture. */
586
587extern const struct bfd_arch_info bfd_default_arch_struct;
588const struct bfd_arch_info *target_architecture = &bfd_default_arch_struct;
589int (*target_architecture_hook) (const struct bfd_arch_info *ap);
590
591static int
592arch_ok (const struct bfd_arch_info *arch)
593{
594 if (GDB_MULTI_ARCH)
8e65ff28
AC
595 internal_error (__FILE__, __LINE__,
596 "arch_ok: not multi-arched");
b4a20239
AC
597 /* Should be performing the more basic check that the binary is
598 compatible with GDB. */
599 /* Check with the target that the architecture is valid. */
600 return (target_architecture_hook == NULL
601 || target_architecture_hook (arch));
602}
603
604static void
605set_arch (const struct bfd_arch_info *arch,
606 enum set_arch type)
607{
608 if (GDB_MULTI_ARCH)
8e65ff28
AC
609 internal_error (__FILE__, __LINE__,
610 "set_arch: not multi-arched");
b4a20239
AC
611 switch (type)
612 {
613 case set_arch_auto:
614 if (!arch_ok (arch))
615 warning ("Target may not support %s architecture",
616 arch->printable_name);
617 target_architecture = arch;
618 break;
619 case set_arch_manual:
620 if (!arch_ok (arch))
621 {
622 printf_unfiltered ("Target does not support `%s' architecture.\n",
623 arch->printable_name);
624 }
625 else
626 {
627 target_architecture_auto = 0;
628 target_architecture = arch;
629 }
630 break;
631 }
632 if (gdbarch_debug)
4b9b3959 633 gdbarch_dump (current_gdbarch, gdb_stdlog);
b4a20239
AC
634}
635
636/* Set the architecture from arch/machine (deprecated) */
637
638void
639set_architecture_from_arch_mach (enum bfd_architecture arch,
640 unsigned long mach)
641{
642 const struct bfd_arch_info *wanted = bfd_lookup_arch (arch, mach);
643 if (GDB_MULTI_ARCH)
8e65ff28
AC
644 internal_error (__FILE__, __LINE__,
645 "set_architecture_from_arch_mach: not multi-arched");
b4a20239
AC
646 if (wanted != NULL)
647 set_arch (wanted, set_arch_manual);
648 else
8e65ff28
AC
649 internal_error (__FILE__, __LINE__,
650 "gdbarch: hardwired architecture/machine not recognized");
b4a20239
AC
651}
652
653/* Set the architecture from a BFD (deprecated) */
654
655static void
656set_architecture_from_file (bfd *abfd)
657{
658 const struct bfd_arch_info *wanted = bfd_get_arch_info (abfd);
659 if (GDB_MULTI_ARCH)
8e65ff28
AC
660 internal_error (__FILE__, __LINE__,
661 "set_architecture_from_file: not multi-arched");
b4a20239
AC
662 if (target_architecture_auto)
663 {
664 set_arch (wanted, set_arch_auto);
665 }
666 else if (wanted != target_architecture)
667 {
668 warning ("%s architecture file may be incompatible with %s target.",
669 wanted->printable_name,
670 target_architecture->printable_name);
671 }
672}
673
674
675/* Called if the user enters ``show architecture'' without an
676 argument. */
677
678static void
679show_architecture (char *args, int from_tty)
680{
681 const char *arch;
682 arch = TARGET_ARCHITECTURE->printable_name;
683 if (target_architecture_auto)
684 printf_filtered ("The target architecture is set automatically (currently %s)\n", arch);
685 else
686 printf_filtered ("The target architecture is assumed to be %s\n", arch);
687}
688
689
690/* Called if the user enters ``set architecture'' with or without an
691 argument. */
692
693static void
694set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
695{
696 if (strcmp (set_architecture_string, "auto") == 0)
697 {
698 target_architecture_auto = 1;
699 }
700 else if (GDB_MULTI_ARCH)
701 {
702 struct gdbarch_info info;
fb6ecb0f 703 gdbarch_info_init (&info);
b4a20239
AC
704 info.bfd_arch_info = bfd_scan_arch (set_architecture_string);
705 if (info.bfd_arch_info == NULL)
8e65ff28
AC
706 internal_error (__FILE__, __LINE__,
707 "set_architecture: bfd_scan_arch failed");
16f33e29 708 if (gdbarch_update_p (info))
b4a20239
AC
709 target_architecture_auto = 0;
710 else
ec3d358c 711 printf_unfiltered ("Architecture `%s' not recognized.\n",
b4a20239
AC
712 set_architecture_string);
713 }
714 else
715 {
716 const struct bfd_arch_info *arch
717 = bfd_scan_arch (set_architecture_string);
718 if (arch == NULL)
8e65ff28
AC
719 internal_error (__FILE__, __LINE__,
720 "set_architecture: bfd_scan_arch failed");
b4a20239
AC
721 set_arch (arch, set_arch_manual);
722 }
723 show_architecture (NULL, from_tty);
724}
725
b7d6b182 726/* Set the dynamic target-system-dependent parameters (architecture,
b4a20239
AC
727 byte-order) using information found in the BFD */
728
729void
fba45db2 730set_gdbarch_from_file (bfd *abfd)
b4a20239
AC
731{
732 if (GDB_MULTI_ARCH)
733 {
734 struct gdbarch_info info;
fb6ecb0f 735 gdbarch_info_init (&info);
b4a20239 736 info.abfd = abfd;
16f33e29 737 if (! gdbarch_update_p (info))
ec3d358c 738 error ("Architecture of file not recognized.\n");
b4a20239
AC
739 }
740 else
741 {
742 set_architecture_from_file (abfd);
743 set_endian_from_file (abfd);
744 }
745}
746
747/* Initialize the current architecture. Update the ``set
748 architecture'' command so that it specifies a list of valid
749 architectures. */
750
1ba607ad
AC
751#ifdef DEFAULT_BFD_ARCH
752extern const bfd_arch_info_type DEFAULT_BFD_ARCH;
753static const bfd_arch_info_type *default_bfd_arch = &DEFAULT_BFD_ARCH;
754#else
4b9b3959 755static const bfd_arch_info_type *default_bfd_arch;
1ba607ad
AC
756#endif
757
758#ifdef DEFAULT_BFD_VEC
759extern const bfd_target DEFAULT_BFD_VEC;
760static const bfd_target *default_bfd_vec = &DEFAULT_BFD_VEC;
761#else
762static const bfd_target *default_bfd_vec;
763#endif
764
b4a20239
AC
765void
766initialize_current_architecture (void)
767{
768 const char **arches = gdbarch_printable_names ();
b4a20239 769
1ba607ad
AC
770 /* determine a default architecture and byte order. */
771 struct gdbarch_info info;
fb6ecb0f 772 gdbarch_info_init (&info);
1ba607ad
AC
773
774 /* Find a default architecture. */
775 if (info.bfd_arch_info == NULL
776 && default_bfd_arch != NULL)
777 info.bfd_arch_info = default_bfd_arch;
778 if (info.bfd_arch_info == NULL)
b4a20239 779 {
1ba607ad
AC
780 /* Choose the architecture by taking the first one
781 alphabetically. */
782 const char *chosen = arches[0];
b4a20239 783 const char **arch;
b4a20239
AC
784 for (arch = arches; *arch != NULL; arch++)
785 {
b4a20239
AC
786 if (strcmp (*arch, chosen) < 0)
787 chosen = *arch;
788 }
789 if (chosen == NULL)
8e65ff28
AC
790 internal_error (__FILE__, __LINE__,
791 "initialize_current_architecture: No arch");
b4a20239
AC
792 info.bfd_arch_info = bfd_scan_arch (chosen);
793 if (info.bfd_arch_info == NULL)
8e65ff28
AC
794 internal_error (__FILE__, __LINE__,
795 "initialize_current_architecture: Arch not found");
1ba607ad
AC
796 }
797
afe64c1a 798 /* Take several guesses at a byte order. */
428721aa 799 if (info.byte_order == BFD_ENDIAN_UNKNOWN
1ba607ad
AC
800 && default_bfd_vec != NULL)
801 {
802 /* Extract BFD's default vector's byte order. */
803 switch (default_bfd_vec->byteorder)
804 {
805 case BFD_ENDIAN_BIG:
d7449b42 806 info.byte_order = BFD_ENDIAN_BIG;
1ba607ad
AC
807 break;
808 case BFD_ENDIAN_LITTLE:
778eb05e 809 info.byte_order = BFD_ENDIAN_LITTLE;
1ba607ad
AC
810 break;
811 default:
812 break;
813 }
814 }
428721aa 815 if (info.byte_order == BFD_ENDIAN_UNKNOWN)
1ba607ad
AC
816 {
817 /* look for ``*el-*'' in the target name. */
818 const char *chp;
819 chp = strchr (target_name, '-');
820 if (chp != NULL
821 && chp - 2 >= target_name
822 && strncmp (chp - 2, "el", 2) == 0)
778eb05e 823 info.byte_order = BFD_ENDIAN_LITTLE;
1ba607ad 824 }
428721aa 825 if (info.byte_order == BFD_ENDIAN_UNKNOWN)
1ba607ad
AC
826 {
827 /* Wire it to big-endian!!! */
d7449b42 828 info.byte_order = BFD_ENDIAN_BIG;
1ba607ad
AC
829 }
830
831 if (GDB_MULTI_ARCH)
832 {
16f33e29
AC
833 if (! gdbarch_update_p (info))
834 {
8e65ff28
AC
835 internal_error (__FILE__, __LINE__,
836 "initialize_current_architecture: Selection of initial architecture failed");
16f33e29 837 }
b4a20239 838 }
ceaa8edf 839 else
afe64c1a
AC
840 {
841 /* If the multi-arch logic comes up with a byte-order (from BFD)
842 use it for the non-multi-arch case. */
843 if (info.byte_order != BFD_ENDIAN_UNKNOWN)
844 target_byte_order = info.byte_order;
845 initialize_non_multiarch ();
846 }
b4a20239 847
1ba607ad
AC
848 /* Create the ``set architecture'' command appending ``auto'' to the
849 list of architectures. */
b4a20239
AC
850 {
851 struct cmd_list_element *c;
852 /* Append ``auto''. */
853 int nr;
854 for (nr = 0; arches[nr] != NULL; nr++);
855 arches = xrealloc (arches, sizeof (char*) * (nr + 2));
856 arches[nr + 0] = "auto";
857 arches[nr + 1] = NULL;
858 /* FIXME: add_set_enum_cmd() uses an array of ``char *'' instead
859 of ``const char *''. We just happen to know that the casts are
860 safe. */
861 c = add_set_enum_cmd ("architecture", class_support,
53904c9e 862 arches, &set_architecture_string,
b4a20239
AC
863 "Set architecture of target.",
864 &setlist);
9f60d481 865 set_cmd_sfunc (c, set_architecture);
b4a20239
AC
866 add_alias_cmd ("processor", "architecture", class_support, 1, &setlist);
867 /* Don't use set_from_show - need to print both auto/manual and
868 current setting. */
869 add_cmd ("architecture", class_support, show_architecture,
870 "Show the current target architecture", &showlist);
b4a20239
AC
871 }
872}
873
874
fb6ecb0f
AC
875/* Initialize a gdbarch info to values that will be automatically
876 overridden. Note: Originally, this ``struct info'' was initialized
877 using memset(0). Unfortunatly, that ran into problems, namely
878 BFD_ENDIAN_BIG is zero. An explicit initialization function that
879 can explicitly set each field to a well defined value is used. */
880
881void
882gdbarch_info_init (struct gdbarch_info *info)
883{
884 memset (info, 0, sizeof (struct gdbarch_info));
428721aa 885 info->byte_order = BFD_ENDIAN_UNKNOWN;
4be87837 886 info->osabi = GDB_OSABI_UNINITIALIZED;
fb6ecb0f
AC
887}
888
c0e8c252
AC
889/* */
890
a78f21af 891extern initialize_file_ftype _initialize_gdbarch_utils; /* -Wmissing-prototypes */
c0e8c252
AC
892
893void
b4a20239 894_initialize_gdbarch_utils (void)
c0e8c252 895{
b4a20239
AC
896 struct cmd_list_element *c;
897 c = add_set_enum_cmd ("endian", class_support,
898 endian_enum, &set_endian_string,
899 "Set endianness of target.",
900 &setlist);
9f60d481 901 set_cmd_sfunc (c, set_endian);
b4a20239
AC
902 /* Don't use set_from_show - need to print both auto/manual and
903 current setting. */
904 add_cmd ("endian", class_support, show_endian,
905 "Show the current byte-order", &showlist);
c0e8c252 906}
This page took 0.245858 seconds and 4 git commands to generate.