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