* arch-utils.c (generic_register_raw_size): New function.
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
1 /* Dynamic architecture support for GDB, the GNU debugger.
2 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
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"
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"
38 #include "annotate.h"
39 #endif
40 #include "regcache.h"
41 #include "gdb_assert.h"
42
43 #include "version.h"
44
45 #include "floatformat.h"
46
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
57 unsigned char *
58 legacy_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
90 int
91 generic_frameless_function_invocation_not (struct frame_info *fi)
92 {
93 return 0;
94 }
95
96 int
97 generic_return_value_on_stack_not (struct type *type)
98 {
99 return 0;
100 }
101
102 CORE_ADDR
103 generic_skip_trampoline_code (CORE_ADDR pc)
104 {
105 return 0;
106 }
107
108 int
109 generic_in_solib_call_trampoline (CORE_ADDR pc, char *name)
110 {
111 return 0;
112 }
113
114 int
115 generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
116 {
117 return 0;
118 }
119
120 char *
121 legacy_register_name (int i)
122 {
123 #ifdef REGISTER_NAMES
124 static char *names[] = REGISTER_NAMES;
125 if (i < 0 || i >= (sizeof (names) / sizeof (*names)))
126 return NULL;
127 else
128 return names[i];
129 #else
130 internal_error (__FILE__, __LINE__,
131 "legacy_register_name: called.");
132 return NULL;
133 #endif
134 }
135
136 #if defined (CALL_DUMMY)
137 LONGEST legacy_call_dummy_words[] = CALL_DUMMY;
138 #else
139 LONGEST legacy_call_dummy_words[1];
140 #endif
141 int legacy_sizeof_call_dummy_words = sizeof (legacy_call_dummy_words);
142
143 void
144 generic_remote_translate_xfer_address (CORE_ADDR gdb_addr, int gdb_len,
145 CORE_ADDR * rem_addr, int *rem_len)
146 {
147 *rem_addr = gdb_addr;
148 *rem_len = gdb_len;
149 }
150
151 int
152 generic_prologue_frameless_p (CORE_ADDR ip)
153 {
154 #ifdef SKIP_PROLOGUE_FRAMELESS_P
155 return ip == SKIP_PROLOGUE_FRAMELESS_P (ip);
156 #else
157 return ip == SKIP_PROLOGUE (ip);
158 #endif
159 }
160
161 /* New/multi-arched targets should use the correct gdbarch field
162 instead of using this global pointer. */
163 int
164 legacy_print_insn (bfd_vma vma, disassemble_info *info)
165 {
166 return (*tm_print_insn) (vma, info);
167 }
168
169 /* Helper functions for INNER_THAN */
170
171 int
172 core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs)
173 {
174 return (lhs < rhs);
175 }
176
177 int
178 core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs)
179 {
180 return (lhs > rhs);
181 }
182
183
184 /* Helper functions for TARGET_{FLOAT,DOUBLE}_FORMAT */
185
186 const struct floatformat *
187 default_float_format (struct gdbarch *gdbarch)
188 {
189 #if GDB_MULTI_ARCH
190 int byte_order = gdbarch_byte_order (gdbarch);
191 #else
192 int byte_order = TARGET_BYTE_ORDER;
193 #endif
194 switch (byte_order)
195 {
196 case BIG_ENDIAN:
197 return &floatformat_ieee_single_big;
198 case LITTLE_ENDIAN:
199 return &floatformat_ieee_single_little;
200 default:
201 internal_error (__FILE__, __LINE__,
202 "default_float_format: bad byte order");
203 }
204 }
205
206
207 const struct floatformat *
208 default_double_format (struct gdbarch *gdbarch)
209 {
210 #if GDB_MULTI_ARCH
211 int byte_order = gdbarch_byte_order (gdbarch);
212 #else
213 int byte_order = TARGET_BYTE_ORDER;
214 #endif
215 switch (byte_order)
216 {
217 case BIG_ENDIAN:
218 return &floatformat_ieee_double_big;
219 case LITTLE_ENDIAN:
220 return &floatformat_ieee_double_little;
221 default:
222 internal_error (__FILE__, __LINE__,
223 "default_double_format: bad byte order");
224 }
225 }
226
227 /* Misc helper functions for targets. */
228
229 int
230 frame_num_args_unknown (struct frame_info *fi)
231 {
232 return -1;
233 }
234
235
236 int
237 generic_register_convertible_not (int num)
238 {
239 return 0;
240 }
241
242
243 /* Under some ABI's that specify the `struct convention' for returning
244 structures by value, by the time we've returned from the function,
245 the return value is sitting there in the caller's buffer, but GDB
246 has no way to find the address of that buffer.
247
248 On such architectures, use this function as your
249 extract_struct_value_address method. When asked to a struct
250 returned by value in this fashion, GDB will print a nice error
251 message, instead of garbage. */
252 CORE_ADDR
253 generic_cannot_extract_struct_value_address (char *dummy)
254 {
255 return 0;
256 }
257
258 int
259 default_register_sim_regno (int num)
260 {
261 return num;
262 }
263
264
265 CORE_ADDR
266 core_addr_identity (CORE_ADDR addr)
267 {
268 return addr;
269 }
270
271 int
272 no_op_reg_to_regnum (int reg)
273 {
274 return reg;
275 }
276
277 /* For use by frame_args_address and frame_locals_address. */
278 CORE_ADDR
279 default_frame_address (struct frame_info *fi)
280 {
281 return fi->frame;
282 }
283
284 /* Default prepare_to_procced(). */
285 int
286 default_prepare_to_proceed (int select_it)
287 {
288 return 0;
289 }
290
291 /* Generic prepare_to_proceed(). This one should be suitable for most
292 targets that support threads. */
293 int
294 generic_prepare_to_proceed (int select_it)
295 {
296 ptid_t wait_ptid;
297 struct target_waitstatus wait_status;
298
299 /* Get the last target status returned by target_wait(). */
300 get_last_target_status (&wait_ptid, &wait_status);
301
302 /* Make sure we were stopped either at a breakpoint, or because
303 of a Ctrl-C. */
304 if (wait_status.kind != TARGET_WAITKIND_STOPPED
305 || (wait_status.value.sig != TARGET_SIGNAL_TRAP &&
306 wait_status.value.sig != TARGET_SIGNAL_INT))
307 {
308 return 0;
309 }
310
311 if (!ptid_equal (wait_ptid, minus_one_ptid)
312 && !ptid_equal (inferior_ptid, wait_ptid))
313 {
314 /* Switched over from WAIT_PID. */
315 CORE_ADDR wait_pc = read_pc_pid (wait_ptid);
316
317 if (wait_pc != read_pc ())
318 {
319 if (select_it)
320 {
321 /* Switch back to WAIT_PID thread. */
322 inferior_ptid = wait_ptid;
323
324 /* FIXME: This stuff came from switch_to_thread() in
325 thread.c (which should probably be a public function). */
326 flush_cached_frames ();
327 registers_changed ();
328 stop_pc = wait_pc;
329 select_frame (get_current_frame (), 0);
330 }
331 /* We return 1 to indicate that there is a breakpoint here,
332 so we need to step over it before continuing to avoid
333 hitting it straight away. */
334 if (breakpoint_here_p (wait_pc))
335 {
336 return 1;
337 }
338 }
339 }
340 return 0;
341
342 }
343
344 void
345 init_frame_pc_noop (int fromleaf, struct frame_info *prev)
346 {
347 return;
348 }
349
350 void
351 init_frame_pc_default (int fromleaf, struct frame_info *prev)
352 {
353 if (fromleaf)
354 prev->pc = SAVED_PC_AFTER_CALL (prev->next);
355 else if (prev->next != NULL)
356 prev->pc = FRAME_SAVED_PC (prev->next);
357 else
358 prev->pc = read_pc ();
359 }
360
361 int
362 cannot_register_not (int regnum)
363 {
364 return 0;
365 }
366
367 /* Legacy version of target_virtual_frame_pointer(). Assumes that
368 there is an FP_REGNUM and that it is the same, cooked or raw. */
369
370 void
371 legacy_virtual_frame_pointer (CORE_ADDR pc,
372 int *frame_regnum,
373 LONGEST *frame_offset)
374 {
375 gdb_assert (FP_REGNUM >= 0);
376 *frame_regnum = FP_REGNUM;
377 *frame_offset = 0;
378 }
379
380 /* Assume the world is flat. Every register is large enough to fit a
381 target integer. */
382
383 int
384 generic_register_raw_size (int regnum)
385 {
386 gdb_assert (regnum >= 0 && regnum < NUM_REGS + NUM_PSEUDO_REGS);
387 return TARGET_INT_BIT / HOST_CHAR_BIT;
388 }
389
390 \f
391 /* Functions to manipulate the endianness of the target. */
392
393 #ifdef TARGET_BYTE_ORDER_SELECTABLE
394 /* compat - Catch old targets that expect a selectable byte-order to
395 default to BIG_ENDIAN */
396 #ifndef TARGET_BYTE_ORDER_DEFAULT
397 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
398 #endif
399 #endif
400 #if !TARGET_BYTE_ORDER_SELECTABLE_P
401 #ifndef TARGET_BYTE_ORDER_DEFAULT
402 /* compat - Catch old non byte-order selectable targets that do not
403 define TARGET_BYTE_ORDER_DEFAULT and instead expect
404 TARGET_BYTE_ORDER to be used as the default. For targets that
405 defined neither TARGET_BYTE_ORDER nor TARGET_BYTE_ORDER_DEFAULT the
406 below will get a strange compiler warning. */
407 #define TARGET_BYTE_ORDER_DEFAULT TARGET_BYTE_ORDER
408 #endif
409 #endif
410 #ifndef TARGET_BYTE_ORDER_DEFAULT
411 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN /* arbitrary */
412 #endif
413 /* ``target_byte_order'' is only used when non- multi-arch.
414 Multi-arch targets obtain the current byte order using
415 TARGET_BYTE_ORDER which is controlled by gdbarch.*. */
416 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
417 int target_byte_order_auto = 1;
418
419 static const char endian_big[] = "big";
420 static const char endian_little[] = "little";
421 static const char endian_auto[] = "auto";
422 static const char *endian_enum[] =
423 {
424 endian_big,
425 endian_little,
426 endian_auto,
427 NULL,
428 };
429 static const char *set_endian_string;
430
431 /* Called by ``show endian''. */
432
433 static void
434 show_endian (char *args, int from_tty)
435 {
436 if (TARGET_BYTE_ORDER_AUTO)
437 printf_unfiltered ("The target endianness is set automatically (currently %s endian)\n",
438 (TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"));
439 else
440 printf_unfiltered ("The target is assumed to be %s endian\n",
441 (TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"));
442 }
443
444 static void
445 set_endian (char *ignore_args, int from_tty, struct cmd_list_element *c)
446 {
447 if (!TARGET_BYTE_ORDER_SELECTABLE_P)
448 {
449 printf_unfiltered ("Byte order is not selectable.");
450 }
451 else if (set_endian_string == endian_auto)
452 {
453 target_byte_order_auto = 1;
454 }
455 else if (set_endian_string == endian_little)
456 {
457 target_byte_order_auto = 0;
458 if (GDB_MULTI_ARCH)
459 {
460 struct gdbarch_info info;
461 memset (&info, 0, sizeof info);
462 info.byte_order = LITTLE_ENDIAN;
463 if (! gdbarch_update_p (info))
464 {
465 printf_unfiltered ("Little endian target not supported by GDB\n");
466 }
467 }
468 else
469 {
470 target_byte_order = LITTLE_ENDIAN;
471 }
472 }
473 else if (set_endian_string == endian_big)
474 {
475 target_byte_order_auto = 0;
476 if (GDB_MULTI_ARCH)
477 {
478 struct gdbarch_info info;
479 memset (&info, 0, sizeof info);
480 info.byte_order = BIG_ENDIAN;
481 if (! gdbarch_update_p (info))
482 {
483 printf_unfiltered ("Big endian target not supported by GDB\n");
484 }
485 }
486 else
487 {
488 target_byte_order = BIG_ENDIAN;
489 }
490 }
491 else
492 internal_error (__FILE__, __LINE__,
493 "set_endian: bad value");
494 show_endian (NULL, from_tty);
495 }
496
497 /* Set the endianness from a BFD. */
498
499 static void
500 set_endian_from_file (bfd *abfd)
501 {
502 if (GDB_MULTI_ARCH)
503 internal_error (__FILE__, __LINE__,
504 "set_endian_from_file: not for multi-arch");
505 if (TARGET_BYTE_ORDER_SELECTABLE_P)
506 {
507 int want;
508
509 if (bfd_big_endian (abfd))
510 want = BIG_ENDIAN;
511 else
512 want = LITTLE_ENDIAN;
513 if (TARGET_BYTE_ORDER_AUTO)
514 target_byte_order = want;
515 else if (TARGET_BYTE_ORDER != want)
516 warning ("%s endian file does not match %s endian target.",
517 want == BIG_ENDIAN ? "big" : "little",
518 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
519 }
520 else
521 {
522 if (bfd_big_endian (abfd)
523 ? TARGET_BYTE_ORDER != BIG_ENDIAN
524 : TARGET_BYTE_ORDER == BIG_ENDIAN)
525 warning ("%s endian file does not match %s endian target.",
526 bfd_big_endian (abfd) ? "big" : "little",
527 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
528 }
529 }
530
531
532 /* Functions to manipulate the architecture of the target */
533
534 enum set_arch { set_arch_auto, set_arch_manual };
535
536 int target_architecture_auto = 1;
537
538 const char *set_architecture_string;
539
540 /* Old way of changing the current architecture. */
541
542 extern const struct bfd_arch_info bfd_default_arch_struct;
543 const struct bfd_arch_info *target_architecture = &bfd_default_arch_struct;
544 int (*target_architecture_hook) (const struct bfd_arch_info *ap);
545
546 static int
547 arch_ok (const struct bfd_arch_info *arch)
548 {
549 if (GDB_MULTI_ARCH)
550 internal_error (__FILE__, __LINE__,
551 "arch_ok: not multi-arched");
552 /* Should be performing the more basic check that the binary is
553 compatible with GDB. */
554 /* Check with the target that the architecture is valid. */
555 return (target_architecture_hook == NULL
556 || target_architecture_hook (arch));
557 }
558
559 static void
560 set_arch (const struct bfd_arch_info *arch,
561 enum set_arch type)
562 {
563 if (GDB_MULTI_ARCH)
564 internal_error (__FILE__, __LINE__,
565 "set_arch: not multi-arched");
566 switch (type)
567 {
568 case set_arch_auto:
569 if (!arch_ok (arch))
570 warning ("Target may not support %s architecture",
571 arch->printable_name);
572 target_architecture = arch;
573 break;
574 case set_arch_manual:
575 if (!arch_ok (arch))
576 {
577 printf_unfiltered ("Target does not support `%s' architecture.\n",
578 arch->printable_name);
579 }
580 else
581 {
582 target_architecture_auto = 0;
583 target_architecture = arch;
584 }
585 break;
586 }
587 if (gdbarch_debug)
588 gdbarch_dump (current_gdbarch, gdb_stdlog);
589 }
590
591 /* Set the architecture from arch/machine (deprecated) */
592
593 void
594 set_architecture_from_arch_mach (enum bfd_architecture arch,
595 unsigned long mach)
596 {
597 const struct bfd_arch_info *wanted = bfd_lookup_arch (arch, mach);
598 if (GDB_MULTI_ARCH)
599 internal_error (__FILE__, __LINE__,
600 "set_architecture_from_arch_mach: not multi-arched");
601 if (wanted != NULL)
602 set_arch (wanted, set_arch_manual);
603 else
604 internal_error (__FILE__, __LINE__,
605 "gdbarch: hardwired architecture/machine not recognized");
606 }
607
608 /* Set the architecture from a BFD (deprecated) */
609
610 static void
611 set_architecture_from_file (bfd *abfd)
612 {
613 const struct bfd_arch_info *wanted = bfd_get_arch_info (abfd);
614 if (GDB_MULTI_ARCH)
615 internal_error (__FILE__, __LINE__,
616 "set_architecture_from_file: not multi-arched");
617 if (target_architecture_auto)
618 {
619 set_arch (wanted, set_arch_auto);
620 }
621 else if (wanted != target_architecture)
622 {
623 warning ("%s architecture file may be incompatible with %s target.",
624 wanted->printable_name,
625 target_architecture->printable_name);
626 }
627 }
628
629
630 /* Called if the user enters ``show architecture'' without an
631 argument. */
632
633 static void
634 show_architecture (char *args, int from_tty)
635 {
636 const char *arch;
637 arch = TARGET_ARCHITECTURE->printable_name;
638 if (target_architecture_auto)
639 printf_filtered ("The target architecture is set automatically (currently %s)\n", arch);
640 else
641 printf_filtered ("The target architecture is assumed to be %s\n", arch);
642 }
643
644
645 /* Called if the user enters ``set architecture'' with or without an
646 argument. */
647
648 static void
649 set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
650 {
651 if (strcmp (set_architecture_string, "auto") == 0)
652 {
653 target_architecture_auto = 1;
654 }
655 else if (GDB_MULTI_ARCH)
656 {
657 struct gdbarch_info info;
658 memset (&info, 0, sizeof info);
659 info.bfd_arch_info = bfd_scan_arch (set_architecture_string);
660 if (info.bfd_arch_info == NULL)
661 internal_error (__FILE__, __LINE__,
662 "set_architecture: bfd_scan_arch failed");
663 if (gdbarch_update_p (info))
664 target_architecture_auto = 0;
665 else
666 printf_unfiltered ("Architecture `%s' not recognized.\n",
667 set_architecture_string);
668 }
669 else
670 {
671 const struct bfd_arch_info *arch
672 = bfd_scan_arch (set_architecture_string);
673 if (arch == NULL)
674 internal_error (__FILE__, __LINE__,
675 "set_architecture: bfd_scan_arch failed");
676 set_arch (arch, set_arch_manual);
677 }
678 show_architecture (NULL, from_tty);
679 }
680
681 /* Set the dynamic target-system-dependent parameters (architecture,
682 byte-order) using information found in the BFD */
683
684 void
685 set_gdbarch_from_file (bfd *abfd)
686 {
687 if (GDB_MULTI_ARCH)
688 {
689 struct gdbarch_info info;
690 memset (&info, 0, sizeof info);
691 info.abfd = abfd;
692 if (! gdbarch_update_p (info))
693 error ("Architecture of file not recognized.\n");
694 }
695 else
696 {
697 set_architecture_from_file (abfd);
698 set_endian_from_file (abfd);
699 }
700 }
701
702 /* Initialize the current architecture. Update the ``set
703 architecture'' command so that it specifies a list of valid
704 architectures. */
705
706 #ifdef DEFAULT_BFD_ARCH
707 extern const bfd_arch_info_type DEFAULT_BFD_ARCH;
708 static const bfd_arch_info_type *default_bfd_arch = &DEFAULT_BFD_ARCH;
709 #else
710 static const bfd_arch_info_type *default_bfd_arch;
711 #endif
712
713 #ifdef DEFAULT_BFD_VEC
714 extern const bfd_target DEFAULT_BFD_VEC;
715 static const bfd_target *default_bfd_vec = &DEFAULT_BFD_VEC;
716 #else
717 static const bfd_target *default_bfd_vec;
718 #endif
719
720 void
721 initialize_current_architecture (void)
722 {
723 const char **arches = gdbarch_printable_names ();
724
725 /* determine a default architecture and byte order. */
726 struct gdbarch_info info;
727 memset (&info, 0, sizeof (info));
728
729 /* Find a default architecture. */
730 if (info.bfd_arch_info == NULL
731 && default_bfd_arch != NULL)
732 info.bfd_arch_info = default_bfd_arch;
733 if (info.bfd_arch_info == NULL)
734 {
735 /* Choose the architecture by taking the first one
736 alphabetically. */
737 const char *chosen = arches[0];
738 const char **arch;
739 for (arch = arches; *arch != NULL; arch++)
740 {
741 if (strcmp (*arch, chosen) < 0)
742 chosen = *arch;
743 }
744 if (chosen == NULL)
745 internal_error (__FILE__, __LINE__,
746 "initialize_current_architecture: No arch");
747 info.bfd_arch_info = bfd_scan_arch (chosen);
748 if (info.bfd_arch_info == NULL)
749 internal_error (__FILE__, __LINE__,
750 "initialize_current_architecture: Arch not found");
751 }
752
753 /* take several guesses at a byte order. */
754 /* NB: can't use TARGET_BYTE_ORDER_DEFAULT as its definition is
755 forced above. */
756 if (info.byte_order == 0
757 && default_bfd_vec != NULL)
758 {
759 /* Extract BFD's default vector's byte order. */
760 switch (default_bfd_vec->byteorder)
761 {
762 case BFD_ENDIAN_BIG:
763 info.byte_order = BIG_ENDIAN;
764 break;
765 case BFD_ENDIAN_LITTLE:
766 info.byte_order = LITTLE_ENDIAN;
767 break;
768 default:
769 break;
770 }
771 }
772 if (info.byte_order == 0)
773 {
774 /* look for ``*el-*'' in the target name. */
775 const char *chp;
776 chp = strchr (target_name, '-');
777 if (chp != NULL
778 && chp - 2 >= target_name
779 && strncmp (chp - 2, "el", 2) == 0)
780 info.byte_order = LITTLE_ENDIAN;
781 }
782 if (info.byte_order == 0)
783 {
784 /* Wire it to big-endian!!! */
785 info.byte_order = BIG_ENDIAN;
786 }
787
788 if (GDB_MULTI_ARCH)
789 {
790 if (! gdbarch_update_p (info))
791 {
792 internal_error (__FILE__, __LINE__,
793 "initialize_current_architecture: Selection of initial architecture failed");
794 }
795 }
796 else
797 initialize_non_multiarch ();
798
799 /* Create the ``set architecture'' command appending ``auto'' to the
800 list of architectures. */
801 {
802 struct cmd_list_element *c;
803 /* Append ``auto''. */
804 int nr;
805 for (nr = 0; arches[nr] != NULL; nr++);
806 arches = xrealloc (arches, sizeof (char*) * (nr + 2));
807 arches[nr + 0] = "auto";
808 arches[nr + 1] = NULL;
809 /* FIXME: add_set_enum_cmd() uses an array of ``char *'' instead
810 of ``const char *''. We just happen to know that the casts are
811 safe. */
812 c = add_set_enum_cmd ("architecture", class_support,
813 arches, &set_architecture_string,
814 "Set architecture of target.",
815 &setlist);
816 c->function.sfunc = set_architecture;
817 add_alias_cmd ("processor", "architecture", class_support, 1, &setlist);
818 /* Don't use set_from_show - need to print both auto/manual and
819 current setting. */
820 add_cmd ("architecture", class_support, show_architecture,
821 "Show the current target architecture", &showlist);
822 }
823 }
824
825
826 /* */
827
828 extern initialize_file_ftype _initialize_gdbarch_utils;
829
830 void
831 _initialize_gdbarch_utils (void)
832 {
833 struct cmd_list_element *c;
834 c = add_set_enum_cmd ("endian", class_support,
835 endian_enum, &set_endian_string,
836 "Set endianness of target.",
837 &setlist);
838 c->function.sfunc = set_endian;
839 /* Don't use set_from_show - need to print both auto/manual and
840 current setting. */
841 add_cmd ("endian", class_support, show_endian,
842 "Show the current byte-order", &showlist);
843 }
This page took 0.047602 seconds and 4 git commands to generate.