1 /* Target description support for GDB.
3 Copyright (C) 2006, 2007 Free Software Foundation, Inc.
5 Contributed by CodeSourcery.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "arch-utils.h"
26 #include "reggroups.h"
28 #include "target-descriptions.h"
30 #include "xml-support.h"
31 #include "xml-tdesc.h"
33 #include "gdb_assert.h"
34 #include "gdb_obstack.h"
39 typedef struct property
44 DEF_VEC_O(property_s
);
46 /* An individual register from a target description. */
48 typedef struct tdesc_reg
50 /* The name of this register. In standard features, it may be
51 recognized by the architecture support code, or it may be purely
55 /* The register number used by this target to refer to this
56 register. This is used for remote p/P packets and to determine
57 the ordering of registers in the remote g/G packets. */
60 /* If this flag is set, GDB should save and restore this register
61 around calls to an inferior function. */
64 /* The name of the register group containing this register, or NULL
65 if the group should be automatically determined from the
66 register's type. If this is "general", "float", or "vector", the
67 corresponding "info" command should display this register's
68 value. It can be an arbitrary string, but should be limited to
69 alphanumeric characters and internal hyphens. Currently other
70 strings are ignored (treated as NULL). */
73 /* The size of the register, in bits. */
76 /* The type of the register. This string corresponds to either
77 a named type from the target description or a predefined
81 /* The target-described type corresponding to TYPE, if found. */
82 struct type
*gdb_type
;
84 DEF_VEC_P(tdesc_reg_p
);
86 /* A named type from a target description. */
87 typedef struct type
*type_p
;
90 /* A feature from a target description. Each feature is a collection
91 of other elements, e.g. registers and types. */
93 typedef struct tdesc_feature
95 /* The name of this feature. It may be recognized by the architecture
99 /* The registers associated with this feature. */
100 VEC(tdesc_reg_p
) *registers
;
102 /* The types associated with this feature. */
105 DEF_VEC_P(tdesc_feature_p
);
107 /* A target description. */
111 /* The architecture reported by the target, if any. */
112 const struct bfd_arch_info
*arch
;
114 /* Any architecture-specific properties specified by the target. */
115 VEC(property_s
) *properties
;
117 /* The features associated with this target. */
118 VEC(tdesc_feature_p
) *features
;
121 /* Per-architecture data associated with a target description. The
122 target description may be shared by multiple architectures, but
123 this data is private to one gdbarch. */
125 struct tdesc_arch_data
127 /* A list of registers, indexed by GDB's internal register number.
128 During initialization of the gdbarch this list is used to store
129 registers which the architecture assigns a fixed register number.
130 Registers which are NULL in this array, or off the end, are
131 treated as zero-sized and nameless (i.e. placeholders in the
133 VEC(tdesc_reg_p
) *registers
;
135 /* Functions which report the register name, type, and reggroups for
137 gdbarch_register_name_ftype
*pseudo_register_name
;
138 gdbarch_register_type_ftype
*pseudo_register_type
;
139 gdbarch_register_reggroup_p_ftype
*pseudo_register_reggroup_p
;
142 /* Global state. These variables are associated with the current
143 target; if GDB adds support for multiple simultaneous targets, then
144 these variables should become target-specific data. */
146 /* A flag indicating that a description has already been fetched from
147 the current target, so it should not be queried again. */
149 static int target_desc_fetched
;
151 /* The description fetched from the current target, or NULL if the
152 current target did not supply any description. Only valid when
153 target_desc_fetched is set. Only the description initialization
154 code should access this; normally, the description should be
155 accessed through the gdbarch object. */
157 static const struct target_desc
*current_target_desc
;
159 /* Other global variables. */
161 /* The filename to read a target description from. */
163 static char *target_description_filename
;
165 /* A handle for architecture-specific data associated with the
166 target description (see struct tdesc_arch_data). */
168 static struct gdbarch_data
*tdesc_data
;
170 /* Fetch the current target's description, and switch the current
171 architecture to one which incorporates that description. */
174 target_find_description (void)
176 /* If we've already fetched a description from the target, don't do
177 it again. This allows a target to fetch the description early,
178 during its to_open or to_create_inferior, if it needs extra
179 information about the target to initialize. */
180 if (target_desc_fetched
)
183 /* The current architecture should not have any target description
184 specified. It should have been cleared, e.g. when we
185 disconnected from the previous target. */
186 gdb_assert (gdbarch_target_desc (current_gdbarch
) == NULL
);
188 /* First try to fetch an XML description from the user-specified
190 current_target_desc
= NULL
;
191 if (target_description_filename
!= NULL
192 && *target_description_filename
!= '\0')
194 = file_read_description_xml (target_description_filename
);
196 /* Next try to read the description from the current target using
198 if (current_target_desc
== NULL
)
199 current_target_desc
= target_read_description_xml (¤t_target
);
201 /* If that failed try a target-specific hook. */
202 if (current_target_desc
== NULL
)
203 current_target_desc
= target_read_description (¤t_target
);
205 /* If a non-NULL description was returned, then update the current
207 if (current_target_desc
)
209 struct gdbarch_info info
;
211 gdbarch_info_init (&info
);
212 info
.target_desc
= current_target_desc
;
213 if (!gdbarch_update_p (info
))
214 warning (_("Architecture rejected target-supplied description"));
217 struct tdesc_arch_data
*data
;
219 data
= gdbarch_data (current_gdbarch
, tdesc_data
);
220 if (tdesc_has_registers (current_target_desc
)
221 && data
->registers
== NULL
)
222 warning (_("Target-supplied registers are not supported "
223 "by the current architecture"));
227 /* Now that we know this description is usable, record that we
229 target_desc_fetched
= 1;
232 /* Discard any description fetched from the current target, and switch
233 the current architecture to one with no target description. */
236 target_clear_description (void)
238 struct gdbarch_info info
;
240 if (!target_desc_fetched
)
243 target_desc_fetched
= 0;
244 current_target_desc
= NULL
;
246 gdbarch_info_init (&info
);
247 if (!gdbarch_update_p (info
))
248 internal_error (__FILE__
, __LINE__
,
249 _("Could not remove target-supplied description"));
252 /* Return the global current target description. This should only be
253 used by gdbarch initialization code; most access should be through
254 an existing gdbarch. */
256 const struct target_desc
*
257 target_current_description (void)
259 if (target_desc_fetched
)
260 return current_target_desc
;
266 /* Direct accessors for target descriptions. */
268 /* Return the string value of a property named KEY, or NULL if the
269 property was not specified. */
272 tdesc_property (const struct target_desc
*target_desc
, const char *key
)
274 struct property
*prop
;
277 for (ix
= 0; VEC_iterate (property_s
, target_desc
->properties
, ix
, prop
);
279 if (strcmp (prop
->key
, key
) == 0)
285 /* Return the BFD architecture associated with this target
286 description, or NULL if no architecture was specified. */
288 const struct bfd_arch_info
*
289 tdesc_architecture (const struct target_desc
*target_desc
)
291 return target_desc
->arch
;
295 /* Return 1 if this target description includes any registers. */
298 tdesc_has_registers (const struct target_desc
*target_desc
)
301 struct tdesc_feature
*feature
;
303 if (target_desc
== NULL
)
307 VEC_iterate (tdesc_feature_p
, target_desc
->features
, ix
, feature
);
309 if (! VEC_empty (tdesc_reg_p
, feature
->registers
))
315 /* Return the feature with the given name, if present, or NULL if
316 the named feature is not found. */
318 const struct tdesc_feature
*
319 tdesc_find_feature (const struct target_desc
*target_desc
,
323 struct tdesc_feature
*feature
;
326 VEC_iterate (tdesc_feature_p
, target_desc
->features
, ix
, feature
);
328 if (strcmp (feature
->name
, name
) == 0)
334 /* Return the name of FEATURE. */
337 tdesc_feature_name (const struct tdesc_feature
*feature
)
339 return feature
->name
;
342 /* Return the type associated with ID in the context of FEATURE, or
346 tdesc_named_type (const struct tdesc_feature
*feature
, const char *id
)
349 struct type
*gdb_type
;
351 /* First try target-defined types. */
352 for (ix
= 0; VEC_iterate (type_p
, feature
->types
, ix
, gdb_type
); ix
++)
353 if (strcmp (TYPE_NAME (gdb_type
), id
) == 0)
356 /* Next try some predefined types. Note that none of these types
357 depend on the current architecture; some of the builtin_type_foo
358 variables are swapped based on the architecture. */
359 if (strcmp (id
, "int8") == 0)
360 return builtin_type_int8
;
362 if (strcmp (id
, "int16") == 0)
363 return builtin_type_int16
;
365 if (strcmp (id
, "int32") == 0)
366 return builtin_type_int32
;
368 if (strcmp (id
, "int64") == 0)
369 return builtin_type_int64
;
371 if (strcmp (id
, "uint8") == 0)
372 return builtin_type_uint8
;
374 if (strcmp (id
, "uint16") == 0)
375 return builtin_type_uint16
;
377 if (strcmp (id
, "uint32") == 0)
378 return builtin_type_uint32
;
380 if (strcmp (id
, "uint64") == 0)
381 return builtin_type_uint64
;
383 if (strcmp (id
, "ieee_single") == 0)
384 return builtin_type_ieee_single
;
386 if (strcmp (id
, "ieee_double") == 0)
387 return builtin_type_ieee_double
;
389 if (strcmp (id
, "arm_fpa_ext") == 0)
390 return builtin_type_arm_ext
;
396 /* Support for registers from target descriptions. */
398 /* Construct the per-gdbarch data. */
401 tdesc_data_init (struct obstack
*obstack
)
403 struct tdesc_arch_data
*data
;
405 data
= OBSTACK_ZALLOC (obstack
, struct tdesc_arch_data
);
409 /* Similar, but for the temporary copy used during architecture
412 struct tdesc_arch_data
*
413 tdesc_data_alloc (void)
415 return XZALLOC (struct tdesc_arch_data
);
418 /* Free something allocated by tdesc_data_alloc, if it is not going
419 to be used (for instance if it was unsuitable for the
423 tdesc_data_cleanup (void *data_untyped
)
425 struct tdesc_arch_data
*data
= data_untyped
;
427 VEC_free (tdesc_reg_p
, data
->registers
);
431 /* Search FEATURE for a register named NAME. */
434 tdesc_numbered_register (const struct tdesc_feature
*feature
,
435 struct tdesc_arch_data
*data
,
436 int regno
, const char *name
)
439 struct tdesc_reg
*reg
;
442 VEC_iterate (tdesc_reg_p
, feature
->registers
, ixr
, reg
);
444 if (strcasecmp (reg
->name
, name
) == 0)
446 /* Make sure the vector includes a REGNO'th element. */
447 while (regno
>= VEC_length (tdesc_reg_p
, data
->registers
))
448 VEC_safe_push (tdesc_reg_p
, data
->registers
, NULL
);
449 VEC_replace (tdesc_reg_p
, data
->registers
, regno
, reg
);
456 /* Search FEATURE for a register whose name is in NAMES. */
459 tdesc_numbered_register_choices (const struct tdesc_feature
*feature
,
460 struct tdesc_arch_data
*data
,
461 int regno
, const char *const names
[])
465 for (i
= 0; names
[i
] != NULL
; i
++)
466 if (tdesc_numbered_register (feature
, data
, regno
, names
[i
]))
472 /* Look up a register by its GDB internal register number. */
474 static struct tdesc_reg
*
475 tdesc_find_register (struct gdbarch
*gdbarch
, int regno
)
477 struct tdesc_reg
*reg
;
478 struct tdesc_arch_data
*data
;
480 data
= gdbarch_data (gdbarch
, tdesc_data
);
481 if (regno
< VEC_length (tdesc_reg_p
, data
->registers
))
482 return VEC_index (tdesc_reg_p
, data
->registers
, regno
);
487 /* Return the name of register REGNO, from the target description or
488 from an architecture-provided pseudo_register_name method. */
491 tdesc_register_name (int regno
)
493 struct tdesc_reg
*reg
= tdesc_find_register (current_gdbarch
, regno
);
494 int num_regs
= gdbarch_num_regs (current_gdbarch
);
495 int num_pseudo_regs
= gdbarch_num_pseudo_regs (current_gdbarch
);
500 if (regno
>= num_regs
&& regno
< num_regs
+ num_pseudo_regs
)
502 struct tdesc_arch_data
*data
= gdbarch_data (current_gdbarch
,
504 gdb_assert (data
->pseudo_register_name
!= NULL
);
505 return data
->pseudo_register_name (regno
);
512 tdesc_register_type (struct gdbarch
*gdbarch
, int regno
)
514 struct tdesc_reg
*reg
= tdesc_find_register (gdbarch
, regno
);
515 int num_regs
= gdbarch_num_regs (gdbarch
);
516 int num_pseudo_regs
= gdbarch_num_pseudo_regs (gdbarch
);
518 if (reg
== NULL
&& regno
>= num_regs
&& regno
< num_regs
+ num_pseudo_regs
)
520 struct tdesc_arch_data
*data
= gdbarch_data (gdbarch
, tdesc_data
);
521 gdb_assert (data
->pseudo_register_type
!= NULL
);
522 return data
->pseudo_register_type (gdbarch
, regno
);
526 /* Return "int0_t", since "void" has a misleading size of one. */
527 return builtin_type_int0
;
529 /* First check for a predefined or target defined type. */
531 return reg
->gdb_type
;
533 /* Next try size-sensitive type shortcuts. */
534 if (strcmp (reg
->type
, "float") == 0)
536 if (reg
->bitsize
== gdbarch_float_bit (gdbarch
))
537 return builtin_type_float
;
538 else if (reg
->bitsize
== gdbarch_double_bit (gdbarch
))
539 return builtin_type_double
;
540 else if (reg
->bitsize
== gdbarch_long_double_bit (gdbarch
))
541 return builtin_type_long_double
;
543 else if (strcmp (reg
->type
, "int") == 0)
545 if (reg
->bitsize
== gdbarch_long_bit (gdbarch
))
546 return builtin_type_long
;
547 else if (reg
->bitsize
== TARGET_CHAR_BIT
)
548 return builtin_type_char
;
549 else if (reg
->bitsize
== gdbarch_short_bit (gdbarch
))
550 return builtin_type_short
;
551 else if (reg
->bitsize
== gdbarch_int_bit (gdbarch
))
552 return builtin_type_int
;
553 else if (reg
->bitsize
== gdbarch_long_long_bit (gdbarch
))
554 return builtin_type_long_long
;
555 else if (reg
->bitsize
== gdbarch_ptr_bit (gdbarch
))
556 /* A bit desperate by this point... */
557 return builtin_type_void_data_ptr
;
559 else if (strcmp (reg
->type
, "code_ptr") == 0)
560 return builtin_type_void_func_ptr
;
561 else if (strcmp (reg
->type
, "data_ptr") == 0)
562 return builtin_type_void_data_ptr
;
564 internal_error (__FILE__
, __LINE__
,
565 "Register \"%s\" has an unknown type \"%s\"",
566 reg
->name
, reg
->type
);
568 warning (_("Register \"%s\" has an unsupported size (%d bits)"),
569 reg
->name
, reg
->bitsize
);
570 return builtin_type_long
;
574 tdesc_remote_register_number (struct gdbarch
*gdbarch
, int regno
)
576 struct tdesc_reg
*reg
= tdesc_find_register (gdbarch
, regno
);
579 return reg
->target_regnum
;
584 /* Check whether REGNUM is a member of REGGROUP. Registers from the
585 target description may be classified as general, float, or vector.
586 Unlike a gdbarch register_reggroup_p method, this function will
587 return -1 if it does not know; the caller should handle registers
588 with no specified group.
590 Arbitrary strings (other than "general", "float", and "vector")
591 from the description are not used; they cause the register to be
592 displayed in "info all-registers" but excluded from "info
593 registers" et al. The names of containing features are also not
594 used. This might be extended to display registers in some more
597 The save-restore flag is also implemented here. */
600 tdesc_register_in_reggroup_p (struct gdbarch
*gdbarch
, int regno
,
601 struct reggroup
*reggroup
)
603 struct tdesc_reg
*reg
= tdesc_find_register (gdbarch
, regno
);
605 if (reg
!= NULL
&& reg
->group
!= NULL
)
607 int general_p
= 0, float_p
= 0, vector_p
= 0;
609 if (strcmp (reg
->group
, "general") == 0)
611 else if (strcmp (reg
->group
, "float") == 0)
613 else if (strcmp (reg
->group
, "vector") == 0)
616 if (reggroup
== float_reggroup
)
619 if (reggroup
== vector_reggroup
)
622 if (reggroup
== general_reggroup
)
627 && (reggroup
== save_reggroup
|| reggroup
== restore_reggroup
))
628 return reg
->save_restore
;
633 /* Check whether REGNUM is a member of REGGROUP. Registers with no
634 group specified go to the default reggroup function and are handled
638 tdesc_register_reggroup_p (struct gdbarch
*gdbarch
, int regno
,
639 struct reggroup
*reggroup
)
641 int num_regs
= gdbarch_num_regs (gdbarch
);
642 int num_pseudo_regs
= gdbarch_num_pseudo_regs (gdbarch
);
645 if (regno
>= num_regs
&& regno
< num_regs
+ num_pseudo_regs
)
647 struct tdesc_arch_data
*data
= gdbarch_data (gdbarch
, tdesc_data
);
648 gdb_assert (data
->pseudo_register_reggroup_p
!= NULL
);
649 return data
->pseudo_register_reggroup_p (gdbarch
, regno
, reggroup
);
652 ret
= tdesc_register_in_reggroup_p (gdbarch
, regno
, reggroup
);
656 return default_register_reggroup_p (gdbarch
, regno
, reggroup
);
659 /* Record architecture-specific functions to call for pseudo-register
663 set_tdesc_pseudo_register_name (struct gdbarch
*gdbarch
,
664 gdbarch_register_name_ftype
*pseudo_name
)
666 struct tdesc_arch_data
*data
= gdbarch_data (gdbarch
, tdesc_data
);
668 data
->pseudo_register_name
= pseudo_name
;
672 set_tdesc_pseudo_register_type (struct gdbarch
*gdbarch
,
673 gdbarch_register_type_ftype
*pseudo_type
)
675 struct tdesc_arch_data
*data
= gdbarch_data (gdbarch
, tdesc_data
);
677 data
->pseudo_register_type
= pseudo_type
;
681 set_tdesc_pseudo_register_reggroup_p
682 (struct gdbarch
*gdbarch
,
683 gdbarch_register_reggroup_p_ftype
*pseudo_reggroup_p
)
685 struct tdesc_arch_data
*data
= gdbarch_data (gdbarch
, tdesc_data
);
687 data
->pseudo_register_reggroup_p
= pseudo_reggroup_p
;
690 /* Update GDBARCH to use the target description for registers. */
693 tdesc_use_registers (struct gdbarch
*gdbarch
,
694 struct tdesc_arch_data
*early_data
)
696 int num_regs
= gdbarch_num_regs (gdbarch
);
698 const struct target_desc
*target_desc
;
699 struct tdesc_feature
*feature
;
700 struct tdesc_reg
*reg
;
701 struct tdesc_arch_data
*data
;
704 target_desc
= gdbarch_target_desc (gdbarch
);
706 /* We can't use the description for registers if it doesn't describe
707 any. This function should only be called after validating
708 registers, so the caller should know that registers are
710 gdb_assert (tdesc_has_registers (target_desc
));
712 data
= gdbarch_data (gdbarch
, tdesc_data
);
713 data
->registers
= early_data
->registers
;
716 /* Build up a set of all registers, so that we can assign register
717 numbers where needed. The hash table expands as necessary, so
718 the initial size is arbitrary. */
719 reg_hash
= htab_create (37, htab_hash_pointer
, htab_eq_pointer
, NULL
);
721 VEC_iterate (tdesc_feature_p
, target_desc
->features
, ixf
, feature
);
724 VEC_iterate (tdesc_reg_p
, feature
->registers
, ixr
, reg
);
727 void **slot
= htab_find_slot (reg_hash
, reg
, INSERT
);
732 /* Remove any registers which were assigned numbers by the
734 for (ixr
= 0; VEC_iterate (tdesc_reg_p
, data
->registers
, ixr
, reg
); ixr
++)
736 htab_remove_elt (reg_hash
, reg
);
738 /* Assign numbers to the remaining registers and add them to the
739 list of registers. The new numbers are always above gdbarch_num_regs.
740 Iterate over the features, not the hash table, so that the order
741 matches that in the target description. */
743 gdb_assert (VEC_length (tdesc_reg_p
, data
->registers
) <= num_regs
);
744 while (VEC_length (tdesc_reg_p
, data
->registers
) < num_regs
)
745 VEC_safe_push (tdesc_reg_p
, data
->registers
, NULL
);
747 VEC_iterate (tdesc_feature_p
, target_desc
->features
, ixf
, feature
);
750 VEC_iterate (tdesc_reg_p
, feature
->registers
, ixr
, reg
);
752 if (htab_find (reg_hash
, reg
) != NULL
)
754 VEC_safe_push (tdesc_reg_p
, data
->registers
, reg
);
758 htab_delete (reg_hash
);
760 /* Update the architecture. */
761 set_gdbarch_num_regs (gdbarch
, num_regs
);
762 set_gdbarch_register_name (gdbarch
, tdesc_register_name
);
763 set_gdbarch_register_type (gdbarch
, tdesc_register_type
);
764 set_gdbarch_remote_register_number (gdbarch
,
765 tdesc_remote_register_number
);
766 set_gdbarch_register_reggroup_p (gdbarch
, tdesc_register_reggroup_p
);
770 /* Methods for constructing a target description. */
773 tdesc_free_reg (struct tdesc_reg
*reg
)
782 tdesc_create_reg (struct tdesc_feature
*feature
, const char *name
,
783 int regnum
, int save_restore
, const char *group
,
784 int bitsize
, const char *type
)
786 struct tdesc_reg
*reg
= XZALLOC (struct tdesc_reg
);
788 reg
->name
= xstrdup (name
);
789 reg
->target_regnum
= regnum
;
790 reg
->save_restore
= save_restore
;
791 reg
->group
= group
? xstrdup (group
) : NULL
;
792 reg
->bitsize
= bitsize
;
793 reg
->type
= type
? xstrdup (type
) : xstrdup ("<unknown>");
795 /* If the register's type is target-defined, look it up now. We may not
796 have easy access to the containing feature when we want it later. */
797 reg
->gdb_type
= tdesc_named_type (feature
, reg
->type
);
799 VEC_safe_push (tdesc_reg_p
, feature
->registers
, reg
);
803 tdesc_free_feature (struct tdesc_feature
*feature
)
805 struct tdesc_reg
*reg
;
808 for (ix
= 0; VEC_iterate (tdesc_reg_p
, feature
->registers
, ix
, reg
); ix
++)
809 tdesc_free_reg (reg
);
810 VEC_free (tdesc_reg_p
, feature
->registers
);
812 /* There is no easy way to free xmalloc-allocated types, nor is
813 there a way to allocate types on an obstack not associated with
814 an objfile. Therefore we never free types. Since we only ever
815 parse an identical XML document once, this memory leak is mostly
817 VEC_free (type_p
, feature
->types
);
819 xfree (feature
->name
);
823 struct tdesc_feature
*
824 tdesc_create_feature (struct target_desc
*tdesc
, const char *name
)
826 struct tdesc_feature
*new_feature
= XZALLOC (struct tdesc_feature
);
828 new_feature
->name
= xstrdup (name
);
830 VEC_safe_push (tdesc_feature_p
, tdesc
->features
, new_feature
);
835 tdesc_record_type (struct tdesc_feature
*feature
, struct type
*type
)
837 /* The type's ID should be used as its TYPE_NAME. */
838 gdb_assert (TYPE_NAME (type
) != NULL
);
840 VEC_safe_push (type_p
, feature
->types
, type
);
844 allocate_target_description (void)
846 return XZALLOC (struct target_desc
);
850 free_target_description (void *arg
)
852 struct target_desc
*target_desc
= arg
;
853 struct tdesc_feature
*feature
;
854 struct property
*prop
;
858 VEC_iterate (tdesc_feature_p
, target_desc
->features
, ix
, feature
);
860 tdesc_free_feature (feature
);
861 VEC_free (tdesc_feature_p
, target_desc
->features
);
864 VEC_iterate (property_s
, target_desc
->properties
, ix
, prop
);
870 VEC_free (property_s
, target_desc
->properties
);
876 make_cleanup_free_target_description (struct target_desc
*target_desc
)
878 return make_cleanup (free_target_description
, target_desc
);
882 set_tdesc_property (struct target_desc
*target_desc
,
883 const char *key
, const char *value
)
885 struct property
*prop
, new_prop
;
888 gdb_assert (key
!= NULL
&& value
!= NULL
);
890 for (ix
= 0; VEC_iterate (property_s
, target_desc
->properties
, ix
, prop
);
892 if (strcmp (prop
->key
, key
) == 0)
893 internal_error (__FILE__
, __LINE__
,
894 _("Attempted to add duplicate property \"%s\""), key
);
896 new_prop
.key
= xstrdup (key
);
897 new_prop
.value
= xstrdup (value
);
898 VEC_safe_push (property_s
, target_desc
->properties
, &new_prop
);
902 set_tdesc_architecture (struct target_desc
*target_desc
,
903 const struct bfd_arch_info
*arch
)
905 target_desc
->arch
= arch
;
909 static struct cmd_list_element
*tdesc_set_cmdlist
, *tdesc_show_cmdlist
;
910 static struct cmd_list_element
*tdesc_unset_cmdlist
;
912 /* Helper functions for the CLI commands. */
915 set_tdesc_cmd (char *args
, int from_tty
)
917 help_list (tdesc_set_cmdlist
, "set tdesc ", -1, gdb_stdout
);
921 show_tdesc_cmd (char *args
, int from_tty
)
923 cmd_show_list (tdesc_show_cmdlist
, from_tty
, "");
927 unset_tdesc_cmd (char *args
, int from_tty
)
929 help_list (tdesc_unset_cmdlist
, "unset tdesc ", -1, gdb_stdout
);
933 set_tdesc_filename_cmd (char *args
, int from_tty
,
934 struct cmd_list_element
*c
)
936 target_clear_description ();
937 target_find_description ();
941 show_tdesc_filename_cmd (struct ui_file
*file
, int from_tty
,
942 struct cmd_list_element
*c
,
945 if (value
!= NULL
&& *value
!= '\0')
946 printf_filtered (_("\
947 The target description will be read from \"%s\".\n"),
950 printf_filtered (_("\
951 The target description will be read from the target.\n"));
955 unset_tdesc_filename_cmd (char *args
, int from_tty
)
957 xfree (target_description_filename
);
958 target_description_filename
= NULL
;
959 target_clear_description ();
960 target_find_description ();
964 _initialize_target_descriptions (void)
966 tdesc_data
= gdbarch_data_register_pre_init (tdesc_data_init
);
968 add_prefix_cmd ("tdesc", class_maintenance
, set_tdesc_cmd
, _("\
969 Set target description specific variables."),
970 &tdesc_set_cmdlist
, "set tdesc ",
971 0 /* allow-unknown */, &setlist
);
972 add_prefix_cmd ("tdesc", class_maintenance
, show_tdesc_cmd
, _("\
973 Show target description specific variables."),
974 &tdesc_show_cmdlist
, "show tdesc ",
975 0 /* allow-unknown */, &showlist
);
976 add_prefix_cmd ("tdesc", class_maintenance
, unset_tdesc_cmd
, _("\
977 Unset target description specific variables."),
978 &tdesc_unset_cmdlist
, "unset tdesc ",
979 0 /* allow-unknown */, &unsetlist
);
981 add_setshow_filename_cmd ("filename", class_obscure
,
982 &target_description_filename
,
984 Set the file to read for an XML target description"), _("\
985 Show the file to read for an XML target description"), _("\
986 When set, GDB will read the target description from a local\n\
987 file instead of querying the remote target."),
988 set_tdesc_filename_cmd
,
989 show_tdesc_filename_cmd
,
990 &tdesc_set_cmdlist
, &tdesc_show_cmdlist
);
992 add_cmd ("filename", class_obscure
, unset_tdesc_filename_cmd
, _("\
993 Unset the file to read for an XML target description. When unset,\n\
994 GDB will read the description from the target."),
995 &tdesc_unset_cmdlist
);