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