gdb: remove TYPE_VECTOR
[deliverable/binutils-gdb.git] / gdb / target-descriptions.c
CommitLineData
424163ea
DJ
1/* Target description support for GDB.
2
b811d2c2 3 Copyright (C) 2006-2020 Free Software Foundation, Inc.
424163ea
DJ
4
5 Contributed by CodeSourcery.
6
7 This file is part of GDB.
8
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
424163ea
DJ
12 (at your option) any later version.
13
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.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
424163ea
DJ
21
22#include "defs.h"
23#include "arch-utils.h"
23181151 24#include "gdbcmd.h"
123dc839
DJ
25#include "gdbtypes.h"
26#include "reggroups.h"
424163ea
DJ
27#include "target.h"
28#include "target-descriptions.h"
123dc839 29#include "xml-support.h"
23181151 30#include "xml-tdesc.h"
c3f08eb7 31#include "osabi.h"
424163ea 32
123dc839
DJ
33#include "gdb_obstack.h"
34#include "hashtab.h"
6ecd4729 35#include "inferior.h"
25aa13e5 36#include <algorithm>
27d41eac
YQ
37#include "completer.h"
38#include "readline/tilde.h" /* tilde_expand */
424163ea
DJ
39
40/* Types. */
41
129c10bc 42struct property
29709017 43{
129c10bc
SM
44 property (const std::string &key_, const std::string &value_)
45 : key (key_), value (value_)
46 {}
47
48 std::string key;
49 std::string value;
50};
29709017 51
b8df6ca7
AH
52/* Convert a tdesc_type to a gdb type. */
53
54static type *
55make_gdb_type (struct gdbarch *gdbarch, struct tdesc_type *ttype)
56{
57 class gdb_type_creator : public tdesc_element_visitor
27d41eac 58 {
b8df6ca7
AH
59 public:
60 gdb_type_creator (struct gdbarch *gdbarch)
61 : m_gdbarch (gdbarch)
62 {}
d4a0e8b5 63
b8df6ca7
AH
64 type *get_type ()
65 {
66 return m_type;
67 }
d4a0e8b5 68
b8df6ca7
AH
69 void visit (const tdesc_type_builtin *e) override
70 {
71 switch (e->kind)
72 {
73 /* Predefined types. */
74 case TDESC_TYPE_BOOL:
75 m_type = builtin_type (m_gdbarch)->builtin_bool;
76 return;
77 case TDESC_TYPE_INT8:
78 m_type = builtin_type (m_gdbarch)->builtin_int8;
79 return;
80 case TDESC_TYPE_INT16:
81 m_type = builtin_type (m_gdbarch)->builtin_int16;
82 return;
83 case TDESC_TYPE_INT32:
84 m_type = builtin_type (m_gdbarch)->builtin_int32;
85 return;
86 case TDESC_TYPE_INT64:
87 m_type = builtin_type (m_gdbarch)->builtin_int64;
88 return;
89 case TDESC_TYPE_INT128:
90 m_type = builtin_type (m_gdbarch)->builtin_int128;
91 return;
92 case TDESC_TYPE_UINT8:
93 m_type = builtin_type (m_gdbarch)->builtin_uint8;
94 return;
95 case TDESC_TYPE_UINT16:
96 m_type = builtin_type (m_gdbarch)->builtin_uint16;
97 return;
98 case TDESC_TYPE_UINT32:
99 m_type = builtin_type (m_gdbarch)->builtin_uint32;
100 return;
101 case TDESC_TYPE_UINT64:
102 m_type = builtin_type (m_gdbarch)->builtin_uint64;
103 return;
104 case TDESC_TYPE_UINT128:
105 m_type = builtin_type (m_gdbarch)->builtin_uint128;
106 return;
107 case TDESC_TYPE_CODE_PTR:
108 m_type = builtin_type (m_gdbarch)->builtin_func_ptr;
109 return;
110 case TDESC_TYPE_DATA_PTR:
111 m_type = builtin_type (m_gdbarch)->builtin_data_ptr;
112 return;
113 }
d4a0e8b5 114
b8df6ca7
AH
115 m_type = tdesc_find_type (m_gdbarch, e->name.c_str ());
116 if (m_type != NULL)
117 return;
27d41eac 118
b8df6ca7
AH
119 switch (e->kind)
120 {
a6d0f249
AH
121 case TDESC_TYPE_IEEE_HALF:
122 m_type = arch_float_type (m_gdbarch, -1, "builtin_type_ieee_half",
123 floatformats_ieee_half);
124 return;
125
b8df6ca7
AH
126 case TDESC_TYPE_IEEE_SINGLE:
127 m_type = arch_float_type (m_gdbarch, -1, "builtin_type_ieee_single",
128 floatformats_ieee_single);
129 return;
130
131 case TDESC_TYPE_IEEE_DOUBLE:
132 m_type = arch_float_type (m_gdbarch, -1, "builtin_type_ieee_double",
133 floatformats_ieee_double);
134 return;
135 case TDESC_TYPE_ARM_FPA_EXT:
136 m_type = arch_float_type (m_gdbarch, -1, "builtin_type_arm_ext",
137 floatformats_arm_ext);
138 return;
139
140 case TDESC_TYPE_I387_EXT:
141 m_type = arch_float_type (m_gdbarch, -1, "builtin_type_i387_ext",
142 floatformats_i387_ext);
143 return;
2a67f09d
FW
144
145 case TDESC_TYPE_BFLOAT16:
146 m_type = arch_float_type (m_gdbarch, -1, "builtin_type_bfloat16",
147 floatformats_bfloat16);
148 return;
b8df6ca7 149 }
d4a0e8b5 150
b8df6ca7
AH
151 internal_error (__FILE__, __LINE__,
152 "Type \"%s\" has an unknown kind %d",
153 e->name.c_str (), e->kind);
154 }
d4a0e8b5 155
b8df6ca7
AH
156 void visit (const tdesc_type_vector *e) override
157 {
158 m_type = tdesc_find_type (m_gdbarch, e->name.c_str ());
159 if (m_type != NULL)
160 return;
161
162 type *element_gdb_type = make_gdb_type (m_gdbarch, e->element_type);
163 m_type = init_vector_type (element_gdb_type, e->count);
d0e39ea2 164 m_type->set_name (xstrdup (e->name.c_str ()));
b8df6ca7
AH
165 return;
166 }
53c934e9 167
b8df6ca7
AH
168 void visit (const tdesc_type_with_fields *e) override
169 {
170 m_type = tdesc_find_type (m_gdbarch, e->name.c_str ());
171 if (m_type != NULL)
172 return;
d4a0e8b5 173
b8df6ca7
AH
174 switch (e->kind)
175 {
176 case TDESC_TYPE_STRUCT:
177 make_gdb_type_struct (e);
178 return;
179 case TDESC_TYPE_UNION:
180 make_gdb_type_union (e);
181 return;
182 case TDESC_TYPE_FLAGS:
183 make_gdb_type_flags (e);
184 return;
185 case TDESC_TYPE_ENUM:
186 make_gdb_type_enum (e);
187 return;
188 }
d4a0e8b5 189
b8df6ca7
AH
190 internal_error (__FILE__, __LINE__,
191 "Type \"%s\" has an unknown kind %d",
192 e->name.c_str (), e->kind);
193 }
d4a0e8b5 194
b8df6ca7 195 private:
d4a0e8b5 196
b8df6ca7
AH
197 void make_gdb_type_struct (const tdesc_type_with_fields *e)
198 {
199 m_type = arch_composite_type (m_gdbarch, NULL, TYPE_CODE_STRUCT);
d0e39ea2 200 m_type->set_name (xstrdup (e->name.c_str ()));
d4a0e8b5 201
b8df6ca7
AH
202 for (const tdesc_type_field &f : e->fields)
203 {
204 if (f.start != -1 && f.end != -1)
205 {
206 /* Bitfield. */
207 struct field *fld;
208 struct type *field_gdb_type;
209 int bitsize, total_size;
210
211 /* This invariant should be preserved while creating types. */
212 gdb_assert (e->size != 0);
213 if (f.type != NULL)
214 field_gdb_type = make_gdb_type (m_gdbarch, f.type);
215 else if (e->size > 4)
216 field_gdb_type = builtin_type (m_gdbarch)->builtin_uint64;
217 else
218 field_gdb_type = builtin_type (m_gdbarch)->builtin_uint32;
219
220 fld = append_composite_type_field_raw
221 (m_type, xstrdup (f.name.c_str ()), field_gdb_type);
222
223 /* For little-endian, BITPOS counts from the LSB of
224 the structure and marks the LSB of the field. For
225 big-endian, BITPOS counts from the MSB of the
226 structure and marks the MSB of the field. Either
227 way, it is the number of bits to the "left" of the
228 field. To calculate this in big-endian, we need
229 the total size of the structure. */
230 bitsize = f.end - f.start + 1;
231 total_size = e->size * TARGET_CHAR_BIT;
d5a22e77 232 if (gdbarch_byte_order (m_gdbarch) == BFD_ENDIAN_BIG)
b8df6ca7
AH
233 SET_FIELD_BITPOS (fld[0], total_size - f.start - bitsize);
234 else
235 SET_FIELD_BITPOS (fld[0], f.start);
236 FIELD_BITSIZE (fld[0]) = bitsize;
237 }
238 else
239 {
240 gdb_assert (f.start == -1 && f.end == -1);
241 type *field_gdb_type = make_gdb_type (m_gdbarch, f.type);
242 append_composite_type_field (m_type,
d4a0e8b5 243 xstrdup (f.name.c_str ()),
b8df6ca7
AH
244 field_gdb_type);
245 }
246 }
d4a0e8b5 247
b8df6ca7
AH
248 if (e->size != 0)
249 TYPE_LENGTH (m_type) = e->size;
250 }
d4a0e8b5 251
b8df6ca7
AH
252 void make_gdb_type_union (const tdesc_type_with_fields *e)
253 {
254 m_type = arch_composite_type (m_gdbarch, NULL, TYPE_CODE_UNION);
d0e39ea2 255 m_type->set_name (xstrdup (e->name.c_str ()));
d4a0e8b5 256
b8df6ca7
AH
257 for (const tdesc_type_field &f : e->fields)
258 {
259 type* field_gdb_type = make_gdb_type (m_gdbarch, f.type);
260 append_composite_type_field (m_type, xstrdup (f.name.c_str ()),
261 field_gdb_type);
262
263 /* If any of the children of a union are vectors, flag the
264 union as a vector also. This allows e.g. a union of two
265 vector types to show up automatically in "info vector". */
bd63c870 266 if (field_gdb_type->is_vector ())
2062087b 267 m_type->set_is_vector (true);
b8df6ca7
AH
268 }
269 }
d4a0e8b5 270
b8df6ca7 271 void make_gdb_type_flags (const tdesc_type_with_fields *e)
d4a0e8b5 272 {
b8df6ca7
AH
273 m_type = arch_flags_type (m_gdbarch, e->name.c_str (),
274 e->size * TARGET_CHAR_BIT);
275
276 for (const tdesc_type_field &f : e->fields)
277 {
278 int bitsize = f.end - f.start + 1;
279
280 gdb_assert (f.type != NULL);
281 type *field_gdb_type = make_gdb_type (m_gdbarch, f.type);
282 append_flags_type_field (m_type, f.start, bitsize,
283 field_gdb_type, f.name.c_str ());
284 }
d4a0e8b5
SM
285 }
286
b8df6ca7
AH
287 void make_gdb_type_enum (const tdesc_type_with_fields *e)
288 {
289 m_type = arch_type (m_gdbarch, TYPE_CODE_ENUM, e->size * TARGET_CHAR_BIT,
290 e->name.c_str ());
d4a0e8b5 291
653223d3
SM
292 m_type->set_is_unsigned (true);
293
b8df6ca7
AH
294 for (const tdesc_type_field &f : e->fields)
295 {
296 struct field *fld
297 = append_composite_type_field_raw (m_type,
298 xstrdup (f.name.c_str ()),
299 NULL);
d4a0e8b5 300
b8df6ca7
AH
301 SET_FIELD_BITPOS (fld[0], f.start);
302 }
303 }
304
305 /* The gdbarch used. */
306 struct gdbarch *m_gdbarch;
307
308 /* The type created. */
309 type *m_type;
310 };
311
312 gdb_type_creator gdb_type (gdbarch);
313 ttype->accept (gdb_type);
314 return gdb_type.get_type ();
315}
123dc839 316
fbf42f4e
AB
317/* Wrapper around bfd_arch_info_type. A class with this name is used in
318 the API that is shared between gdb and gdbserver code, but gdbserver
319 doesn't use compatibility information, so its version of this class is
320 empty. */
321
322class tdesc_compatible_info
323{
324public:
325 /* Constructor. */
326 explicit tdesc_compatible_info (const bfd_arch_info_type *arch)
327 : m_arch (arch)
328 { /* Nothing. */ }
329
330 /* Access the contained pointer. */
331 const bfd_arch_info_type *arch () const
332 { return m_arch; }
333
334private:
335 /* Architecture information looked up from the <compatible> entity within
336 a target description. */
337 const bfd_arch_info_type *m_arch;
338};
339
123dc839
DJ
340/* A target description. */
341
6eb1e6a8 342struct target_desc : tdesc_element
424163ea 343{
b468ff4c
YQ
344 target_desc ()
345 {}
346
3eea796c 347 virtual ~target_desc () = default;
b468ff4c
YQ
348
349 target_desc (const target_desc &) = delete;
350 void operator= (const target_desc &) = delete;
351
23181151 352 /* The architecture reported by the target, if any. */
b468ff4c 353 const struct bfd_arch_info *arch = NULL;
23181151 354
08d16641
PA
355 /* The osabi reported by the target, if any; GDB_OSABI_UNKNOWN
356 otherwise. */
b468ff4c 357 enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;
08d16641 358
e35359c5 359 /* The list of compatible architectures reported by the target. */
fbf42f4e 360 std::vector<tdesc_compatible_info_up> compatible;
e35359c5 361
29709017 362 /* Any architecture-specific properties specified by the target. */
129c10bc 363 std::vector<property> properties;
123dc839
DJ
364
365 /* The features associated with this target. */
858c9d13 366 std::vector<tdesc_feature_up> features;
6eb1e6a8 367
e98577a9
AH
368 /* Used to cache the generated xml version of the target description. */
369 mutable char *xmltarget = nullptr;
370
6eb1e6a8
YQ
371 void accept (tdesc_element_visitor &v) const override
372 {
373 v.visit_pre (this);
374
3eea796c 375 for (const tdesc_feature_up &feature : features)
6eb1e6a8
YQ
376 feature->accept (v);
377
378 v.visit_post (this);
379 }
27d41eac
YQ
380
381 bool operator== (const target_desc &other) const
382 {
383 if (arch != other.arch)
384 return false;
385
386 if (osabi != other.osabi)
387 return false;
388
3eea796c 389 if (features.size () != other.features.size ())
27d41eac
YQ
390 return false;
391
3eea796c 392 for (int ix = 0; ix < features.size (); ix++)
27d41eac 393 {
3eea796c
SM
394 const tdesc_feature_up &feature1 = features[ix];
395 const tdesc_feature_up &feature2 = other.features[ix];
27d41eac 396
3eea796c 397 if (feature1 != feature2 && *feature1 != *feature2)
27d41eac
YQ
398 return false;
399 }
400
401 return true;
402 }
403
404 bool operator!= (const target_desc &other) const
405 {
406 return !(*this == other);
407 }
123dc839
DJ
408};
409
410/* Per-architecture data associated with a target description. The
411 target description may be shared by multiple architectures, but
412 this data is private to one gdbarch. */
413
f0cddbef 414struct tdesc_arch_reg
ad068eab 415{
f0cddbef
SM
416 tdesc_arch_reg (tdesc_reg *reg_, struct type *type_)
417 : reg (reg_), type (type_)
418 {}
419
ad068eab
UW
420 struct tdesc_reg *reg;
421 struct type *type;
f0cddbef 422};
ad068eab 423
123dc839
DJ
424struct tdesc_arch_data
425{
ad068eab 426 /* A list of register/type pairs, indexed by GDB's internal register number.
123dc839
DJ
427 During initialization of the gdbarch this list is used to store
428 registers which the architecture assigns a fixed register number.
429 Registers which are NULL in this array, or off the end, are
430 treated as zero-sized and nameless (i.e. placeholders in the
431 numbering). */
f0cddbef 432 std::vector<tdesc_arch_reg> arch_regs;
123dc839
DJ
433
434 /* Functions which report the register name, type, and reggroups for
435 pseudo-registers. */
f0cddbef
SM
436 gdbarch_register_name_ftype *pseudo_register_name = NULL;
437 gdbarch_register_type_ftype *pseudo_register_type = NULL;
438 gdbarch_register_reggroup_p_ftype *pseudo_register_reggroup_p = NULL;
424163ea
DJ
439};
440
6ecd4729
PA
441/* Info about an inferior's target description. There's one of these
442 for each inferior. */
424163ea 443
6ecd4729
PA
444struct target_desc_info
445{
446 /* A flag indicating that a description has already been fetched
447 from the target, so it should not be queried again. */
448
449 int fetched;
424163ea 450
6ecd4729
PA
451 /* The description fetched from the target, or NULL if the target
452 did not supply any description. Only valid when
453 target_desc_fetched is set. Only the description initialization
454 code should access this; normally, the description should be
455 accessed through the gdbarch object. */
424163ea 456
6ecd4729 457 const struct target_desc *tdesc;
424163ea 458
6ecd4729
PA
459 /* The filename to read a target description from, as set by "set
460 tdesc filename ..." */
424163ea 461
6ecd4729
PA
462 char *filename;
463};
23181151 464
6ecd4729
PA
465/* Get the inferior INF's target description info, allocating one on
466 the stop if necessary. */
23181151 467
6ecd4729
PA
468static struct target_desc_info *
469get_tdesc_info (struct inferior *inf)
470{
471 if (inf->tdesc_info == NULL)
472 inf->tdesc_info = XCNEW (struct target_desc_info);
473 return inf->tdesc_info;
474}
23181151 475
123dc839
DJ
476/* A handle for architecture-specific data associated with the
477 target description (see struct tdesc_arch_data). */
478
479static struct gdbarch_data *tdesc_data;
480
6ecd4729
PA
481/* See target-descriptions.h. */
482
483int
484target_desc_info_from_user_p (struct target_desc_info *info)
485{
486 return info != NULL && info->filename != NULL;
487}
488
489/* See target-descriptions.h. */
490
491void
492copy_inferior_target_desc_info (struct inferior *destinf, struct inferior *srcinf)
493{
494 struct target_desc_info *src = get_tdesc_info (srcinf);
495 struct target_desc_info *dest = get_tdesc_info (destinf);
496
497 dest->fetched = src->fetched;
498 dest->tdesc = src->tdesc;
499 dest->filename = src->filename != NULL ? xstrdup (src->filename) : NULL;
500}
501
502/* See target-descriptions.h. */
503
504void
505target_desc_info_free (struct target_desc_info *tdesc_info)
506{
507 if (tdesc_info != NULL)
508 {
509 xfree (tdesc_info->filename);
510 xfree (tdesc_info);
511 }
512}
513
514/* Convenience helper macros. */
515
516#define target_desc_fetched \
517 get_tdesc_info (current_inferior ())->fetched
518#define current_target_desc \
519 get_tdesc_info (current_inferior ())->tdesc
520#define target_description_filename \
521 get_tdesc_info (current_inferior ())->filename
522
523/* The string manipulated by the "set tdesc filename ..." command. */
524
525static char *tdesc_filename_cmd_string;
526
424163ea
DJ
527/* Fetch the current target's description, and switch the current
528 architecture to one which incorporates that description. */
529
530void
531target_find_description (void)
532{
533 /* If we've already fetched a description from the target, don't do
534 it again. This allows a target to fetch the description early,
535 during its to_open or to_create_inferior, if it needs extra
536 information about the target to initialize. */
537 if (target_desc_fetched)
538 return;
539
540 /* The current architecture should not have any target description
541 specified. It should have been cleared, e.g. when we
542 disconnected from the previous target. */
f5656ead 543 gdb_assert (gdbarch_target_desc (target_gdbarch ()) == NULL);
424163ea 544
23181151
DJ
545 /* First try to fetch an XML description from the user-specified
546 file. */
547 current_target_desc = NULL;
548 if (target_description_filename != NULL
549 && *target_description_filename != '\0')
550 current_target_desc
551 = file_read_description_xml (target_description_filename);
552
553 /* Next try to read the description from the current target using
554 target objects. */
555 if (current_target_desc == NULL)
8b88a78e 556 current_target_desc = target_read_description_xml (current_top_target ());
23181151
DJ
557
558 /* If that failed try a target-specific hook. */
559 if (current_target_desc == NULL)
8b88a78e 560 current_target_desc = target_read_description (current_top_target ());
424163ea
DJ
561
562 /* If a non-NULL description was returned, then update the current
563 architecture. */
564 if (current_target_desc)
565 {
566 struct gdbarch_info info;
567
568 gdbarch_info_init (&info);
569 info.target_desc = current_target_desc;
570 if (!gdbarch_update_p (info))
123dc839
DJ
571 warning (_("Architecture rejected target-supplied description"));
572 else
573 {
574 struct tdesc_arch_data *data;
575
19ba03f4
SM
576 data = ((struct tdesc_arch_data *)
577 gdbarch_data (target_gdbarch (), tdesc_data));
123dc839 578 if (tdesc_has_registers (current_target_desc)
f0cddbef 579 && data->arch_regs.empty ())
123dc839
DJ
580 warning (_("Target-supplied registers are not supported "
581 "by the current architecture"));
582 }
424163ea
DJ
583 }
584
585 /* Now that we know this description is usable, record that we
586 fetched it. */
587 target_desc_fetched = 1;
588}
589
590/* Discard any description fetched from the current target, and switch
591 the current architecture to one with no target description. */
592
593void
594target_clear_description (void)
595{
596 struct gdbarch_info info;
597
598 if (!target_desc_fetched)
599 return;
600
601 target_desc_fetched = 0;
602 current_target_desc = NULL;
603
604 gdbarch_info_init (&info);
605 if (!gdbarch_update_p (info))
606 internal_error (__FILE__, __LINE__,
607 _("Could not remove target-supplied description"));
608}
609
610/* Return the global current target description. This should only be
611 used by gdbarch initialization code; most access should be through
612 an existing gdbarch. */
613
614const struct target_desc *
615target_current_description (void)
616{
617 if (target_desc_fetched)
618 return current_target_desc;
619
620 return NULL;
621}
e35359c5
UW
622
623/* Return non-zero if this target description is compatible
624 with the given BFD architecture. */
625
626int
627tdesc_compatible_p (const struct target_desc *target_desc,
628 const struct bfd_arch_info *arch)
629{
fbf42f4e 630 for (const tdesc_compatible_info_up &compat : target_desc->compatible)
e35359c5 631 {
fbf42f4e
AB
632 if (compat->arch () == arch
633 || arch->compatible (arch, compat->arch ())
634 || compat->arch ()->compatible (compat->arch (), arch))
e35359c5
UW
635 return 1;
636 }
637
638 return 0;
639}
23181151
DJ
640\f
641
123dc839 642/* Direct accessors for target descriptions. */
424163ea 643
29709017
DJ
644/* Return the string value of a property named KEY, or NULL if the
645 property was not specified. */
646
647const char *
648tdesc_property (const struct target_desc *target_desc, const char *key)
649{
129c10bc
SM
650 for (const property &prop : target_desc->properties)
651 if (prop.key == key)
652 return prop.value.c_str ();
29709017
DJ
653
654 return NULL;
655}
656
23181151
DJ
657/* Return the BFD architecture associated with this target
658 description, or NULL if no architecture was specified. */
659
660const struct bfd_arch_info *
661tdesc_architecture (const struct target_desc *target_desc)
662{
663 return target_desc->arch;
664}
08d16641 665
268a13a5 666/* See gdbsupport/tdesc.h. */
d278f585
AH
667
668const char *
669tdesc_architecture_name (const struct target_desc *target_desc)
670{
caa7fd04
AB
671 if (target_desc->arch != NULL)
672 return target_desc->arch->printable_name;
673 return NULL;
d278f585
AH
674}
675
fbf42f4e
AB
676/* See gdbsupport/tdesc.h. */
677
678const std::vector<tdesc_compatible_info_up> &
679tdesc_compatible_info_list (const target_desc *target_desc)
680{
681 return target_desc->compatible;
682}
683
684/* See gdbsupport/tdesc.h. */
685
686const char *
687tdesc_compatible_info_arch_name (const tdesc_compatible_info_up &compatible)
688{
689 return compatible->arch ()->printable_name;
690}
691
08d16641
PA
692/* Return the OSABI associated with this target description, or
693 GDB_OSABI_UNKNOWN if no osabi was specified. */
694
695enum gdb_osabi
696tdesc_osabi (const struct target_desc *target_desc)
697{
698 return target_desc->osabi;
699}
700
268a13a5 701/* See gdbsupport/tdesc.h. */
d278f585
AH
702
703const char *
704tdesc_osabi_name (const struct target_desc *target_desc)
705{
706 enum gdb_osabi osabi = tdesc_osabi (target_desc);
707 if (osabi > GDB_OSABI_UNKNOWN && osabi < GDB_OSABI_INVALID)
708 return gdbarch_osabi_name (osabi);
709 return nullptr;
710}
23181151 711
123dc839
DJ
712/* Return 1 if this target description includes any registers. */
713
714int
715tdesc_has_registers (const struct target_desc *target_desc)
716{
123dc839
DJ
717 if (target_desc == NULL)
718 return 0;
719
3eea796c 720 for (const tdesc_feature_up &feature : target_desc->features)
c9c895b9 721 if (!feature->registers.empty ())
123dc839
DJ
722 return 1;
723
724 return 0;
725}
726
727/* Return the feature with the given name, if present, or NULL if
728 the named feature is not found. */
729
730const struct tdesc_feature *
731tdesc_find_feature (const struct target_desc *target_desc,
732 const char *name)
733{
3eea796c 734 for (const tdesc_feature_up &feature : target_desc->features)
f65ff9f9 735 if (feature->name == name)
3eea796c 736 return feature.get ();
123dc839
DJ
737
738 return NULL;
739}
740
741/* Return the name of FEATURE. */
742
743const char *
744tdesc_feature_name (const struct tdesc_feature *feature)
745{
f65ff9f9 746 return feature->name.c_str ();
123dc839
DJ
747}
748
9fd3625f
L
749/* Lookup type associated with ID. */
750
751struct type *
752tdesc_find_type (struct gdbarch *gdbarch, const char *id)
753{
f0cddbef
SM
754 tdesc_arch_data *data
755 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
9fd3625f 756
f0cddbef 757 for (const tdesc_arch_reg &reg : data->arch_regs)
9fd3625f 758 {
f0cddbef
SM
759 if (reg.reg
760 && reg.reg->tdesc_type
761 && reg.type
762 && reg.reg->tdesc_type->name == id)
763 return reg.type;
9fd3625f
L
764 }
765
766 return NULL;
767}
768
123dc839
DJ
769/* Support for registers from target descriptions. */
770
771/* Construct the per-gdbarch data. */
772
773static void *
774tdesc_data_init (struct obstack *obstack)
775{
284a0e3c 776 return obstack_new<tdesc_arch_data> (obstack);
123dc839
DJ
777}
778
779/* Similar, but for the temporary copy used during architecture
780 initialization. */
781
782struct tdesc_arch_data *
783tdesc_data_alloc (void)
784{
f0cddbef 785 return new tdesc_arch_data ();
123dc839
DJ
786}
787
788/* Free something allocated by tdesc_data_alloc, if it is not going
789 to be used (for instance if it was unsuitable for the
790 architecture). */
791
792void
793tdesc_data_cleanup (void *data_untyped)
794{
19ba03f4 795 struct tdesc_arch_data *data = (struct tdesc_arch_data *) data_untyped;
123dc839 796
f0cddbef 797 delete data;
123dc839
DJ
798}
799
800/* Search FEATURE for a register named NAME. */
801
7cc46491
DJ
802static struct tdesc_reg *
803tdesc_find_register_early (const struct tdesc_feature *feature,
804 const char *name)
123dc839 805{
c9c895b9 806 for (const tdesc_reg_up &reg : feature->registers)
a8142ee1 807 if (strcasecmp (reg->name.c_str (), name) == 0)
c9c895b9 808 return reg.get ();
123dc839 809
7cc46491
DJ
810 return NULL;
811}
812
813/* Search FEATURE for a register named NAME. Assign REGNO to it. */
814
815int
816tdesc_numbered_register (const struct tdesc_feature *feature,
817 struct tdesc_arch_data *data,
818 int regno, const char *name)
819{
820 struct tdesc_reg *reg = tdesc_find_register_early (feature, name);
821
822 if (reg == NULL)
823 return 0;
824
825 /* Make sure the vector includes a REGNO'th element. */
f0cddbef
SM
826 while (regno >= data->arch_regs.size ())
827 data->arch_regs.emplace_back (nullptr, nullptr);
828
829 data->arch_regs[regno] = tdesc_arch_reg (reg, NULL);
ad068eab 830
7cc46491 831 return 1;
123dc839
DJ
832}
833
58d6951d
DJ
834/* Search FEATURE for a register named NAME, but do not assign a fixed
835 register number to it. */
836
837int
838tdesc_unnumbered_register (const struct tdesc_feature *feature,
839 const char *name)
840{
841 struct tdesc_reg *reg = tdesc_find_register_early (feature, name);
842
843 if (reg == NULL)
844 return 0;
845
846 return 1;
847}
848
7cc46491
DJ
849/* Search FEATURE for a register whose name is in NAMES and assign
850 REGNO to it. */
123dc839
DJ
851
852int
853tdesc_numbered_register_choices (const struct tdesc_feature *feature,
854 struct tdesc_arch_data *data,
855 int regno, const char *const names[])
856{
857 int i;
858
859 for (i = 0; names[i] != NULL; i++)
860 if (tdesc_numbered_register (feature, data, regno, names[i]))
861 return 1;
862
863 return 0;
864}
865
7cc46491
DJ
866/* Search FEATURE for a register named NAME, and return its size in
867 bits. The register must exist. */
868
869int
12863263 870tdesc_register_bitsize (const struct tdesc_feature *feature, const char *name)
7cc46491
DJ
871{
872 struct tdesc_reg *reg = tdesc_find_register_early (feature, name);
873
874 gdb_assert (reg != NULL);
875 return reg->bitsize;
876}
877
123dc839
DJ
878/* Look up a register by its GDB internal register number. */
879
ad068eab
UW
880static struct tdesc_arch_reg *
881tdesc_find_arch_register (struct gdbarch *gdbarch, int regno)
123dc839 882{
123dc839
DJ
883 struct tdesc_arch_data *data;
884
19ba03f4 885 data = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
f0cddbef
SM
886 if (regno < data->arch_regs.size ())
887 return &data->arch_regs[regno];
123dc839
DJ
888 else
889 return NULL;
890}
891
ad068eab
UW
892static struct tdesc_reg *
893tdesc_find_register (struct gdbarch *gdbarch, int regno)
894{
895 struct tdesc_arch_reg *reg = tdesc_find_arch_register (gdbarch, regno);
5d502164 896
ad068eab
UW
897 return reg? reg->reg : NULL;
898}
899
f8b73d13
DJ
900/* Return the name of register REGNO, from the target description or
901 from an architecture-provided pseudo_register_name method. */
902
903const char *
d93859e2 904tdesc_register_name (struct gdbarch *gdbarch, int regno)
123dc839 905{
d93859e2
UW
906 struct tdesc_reg *reg = tdesc_find_register (gdbarch, regno);
907 int num_regs = gdbarch_num_regs (gdbarch);
123dc839
DJ
908
909 if (reg != NULL)
a8142ee1 910 return reg->name.c_str ();
123dc839 911
f6efe3f8 912 if (regno >= num_regs && regno < gdbarch_num_cooked_regs (gdbarch))
123dc839 913 {
19ba03f4
SM
914 struct tdesc_arch_data *data
915 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
5d502164 916
123dc839 917 gdb_assert (data->pseudo_register_name != NULL);
d93859e2 918 return data->pseudo_register_name (gdbarch, regno);
123dc839
DJ
919 }
920
921 return "";
922}
923
58d6951d 924struct type *
123dc839
DJ
925tdesc_register_type (struct gdbarch *gdbarch, int regno)
926{
ad068eab
UW
927 struct tdesc_arch_reg *arch_reg = tdesc_find_arch_register (gdbarch, regno);
928 struct tdesc_reg *reg = arch_reg? arch_reg->reg : NULL;
123dc839
DJ
929 int num_regs = gdbarch_num_regs (gdbarch);
930 int num_pseudo_regs = gdbarch_num_pseudo_regs (gdbarch);
931
932 if (reg == NULL && regno >= num_regs && regno < num_regs + num_pseudo_regs)
933 {
19ba03f4
SM
934 struct tdesc_arch_data *data
935 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
5d502164 936
123dc839
DJ
937 gdb_assert (data->pseudo_register_type != NULL);
938 return data->pseudo_register_type (gdbarch, regno);
939 }
940
941 if (reg == NULL)
942 /* Return "int0_t", since "void" has a misleading size of one. */
df4df182 943 return builtin_type (gdbarch)->builtin_int0;
123dc839 944
ad068eab 945 if (arch_reg->type == NULL)
123dc839 946 {
ad068eab
UW
947 /* First check for a predefined or target defined type. */
948 if (reg->tdesc_type)
b8df6ca7 949 arch_reg->type = make_gdb_type (gdbarch, reg->tdesc_type);
ad068eab
UW
950
951 /* Next try size-sensitive type shortcuts. */
a8142ee1 952 else if (reg->type == "float")
ad068eab
UW
953 {
954 if (reg->bitsize == gdbarch_float_bit (gdbarch))
955 arch_reg->type = builtin_type (gdbarch)->builtin_float;
956 else if (reg->bitsize == gdbarch_double_bit (gdbarch))
957 arch_reg->type = builtin_type (gdbarch)->builtin_double;
958 else if (reg->bitsize == gdbarch_long_double_bit (gdbarch))
959 arch_reg->type = builtin_type (gdbarch)->builtin_long_double;
960 else
961 {
962 warning (_("Register \"%s\" has an unsupported size (%d bits)"),
a8142ee1 963 reg->name.c_str (), reg->bitsize);
ad068eab
UW
964 arch_reg->type = builtin_type (gdbarch)->builtin_double;
965 }
966 }
a8142ee1 967 else if (reg->type == "int")
ad068eab
UW
968 {
969 if (reg->bitsize == gdbarch_long_bit (gdbarch))
970 arch_reg->type = builtin_type (gdbarch)->builtin_long;
971 else if (reg->bitsize == TARGET_CHAR_BIT)
972 arch_reg->type = builtin_type (gdbarch)->builtin_char;
973 else if (reg->bitsize == gdbarch_short_bit (gdbarch))
974 arch_reg->type = builtin_type (gdbarch)->builtin_short;
975 else if (reg->bitsize == gdbarch_int_bit (gdbarch))
976 arch_reg->type = builtin_type (gdbarch)->builtin_int;
977 else if (reg->bitsize == gdbarch_long_long_bit (gdbarch))
978 arch_reg->type = builtin_type (gdbarch)->builtin_long_long;
979 else if (reg->bitsize == gdbarch_ptr_bit (gdbarch))
c378eb4e 980 /* A bit desperate by this point... */
ad068eab
UW
981 arch_reg->type = builtin_type (gdbarch)->builtin_data_ptr;
982 else
983 {
984 warning (_("Register \"%s\" has an unsupported size (%d bits)"),
a8142ee1 985 reg->name.c_str (), reg->bitsize);
ad068eab
UW
986 arch_reg->type = builtin_type (gdbarch)->builtin_long;
987 }
988 }
989
990 if (arch_reg->type == NULL)
991 internal_error (__FILE__, __LINE__,
992 "Register \"%s\" has an unknown type \"%s\"",
a8142ee1 993 reg->name.c_str (), reg->type.c_str ());
123dc839 994 }
123dc839 995
ad068eab 996 return arch_reg->type;
123dc839
DJ
997}
998
999static int
1000tdesc_remote_register_number (struct gdbarch *gdbarch, int regno)
1001{
1002 struct tdesc_reg *reg = tdesc_find_register (gdbarch, regno);
1003
1004 if (reg != NULL)
1005 return reg->target_regnum;
1006 else
1007 return -1;
1008}
1009
1010/* Check whether REGNUM is a member of REGGROUP. Registers from the
cef0f868
SH
1011 target description may be classified as general, float, vector or other
1012 register groups registered with reggroup_add(). Unlike a gdbarch
1013 register_reggroup_p method, this function will return -1 if it does not
1014 know; the caller should handle registers with no specified group.
1015
1016 The names of containing features are not used. This might be extended
1017 to display registers in some more useful groupings.
123dc839
DJ
1018
1019 The save-restore flag is also implemented here. */
1020
f8b73d13
DJ
1021int
1022tdesc_register_in_reggroup_p (struct gdbarch *gdbarch, int regno,
1023 struct reggroup *reggroup)
123dc839 1024{
123dc839
DJ
1025 struct tdesc_reg *reg = tdesc_find_register (gdbarch, regno);
1026
440cf44e
LM
1027 if (reg != NULL && !reg->group.empty ()
1028 && (reg->group == reggroup_name (reggroup)))
cef0f868 1029 return 1;
123dc839 1030
440cf44e
LM
1031 if (reg != NULL
1032 && (reggroup == save_reggroup || reggroup == restore_reggroup))
1033 return reg->save_restore;
123dc839 1034
f8b73d13
DJ
1035 return -1;
1036}
1037
1038/* Check whether REGNUM is a member of REGGROUP. Registers with no
1039 group specified go to the default reggroup function and are handled
1040 by type. */
1041
1042static int
1043tdesc_register_reggroup_p (struct gdbarch *gdbarch, int regno,
1044 struct reggroup *reggroup)
1045{
1046 int num_regs = gdbarch_num_regs (gdbarch);
1047 int num_pseudo_regs = gdbarch_num_pseudo_regs (gdbarch);
1048 int ret;
1049
1050 if (regno >= num_regs && regno < num_regs + num_pseudo_regs)
1051 {
19ba03f4
SM
1052 struct tdesc_arch_data *data
1053 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
5d502164 1054
58d6951d
DJ
1055 if (data->pseudo_register_reggroup_p != NULL)
1056 return data->pseudo_register_reggroup_p (gdbarch, regno, reggroup);
1057 /* Otherwise fall through to the default reggroup_p. */
f8b73d13
DJ
1058 }
1059
1060 ret = tdesc_register_in_reggroup_p (gdbarch, regno, reggroup);
1061 if (ret != -1)
1062 return ret;
1063
123dc839
DJ
1064 return default_register_reggroup_p (gdbarch, regno, reggroup);
1065}
1066
1067/* Record architecture-specific functions to call for pseudo-register
1068 support. */
1069
1070void
1071set_tdesc_pseudo_register_name (struct gdbarch *gdbarch,
1072 gdbarch_register_name_ftype *pseudo_name)
1073{
19ba03f4
SM
1074 struct tdesc_arch_data *data
1075 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
123dc839
DJ
1076
1077 data->pseudo_register_name = pseudo_name;
1078}
1079
1080void
1081set_tdesc_pseudo_register_type (struct gdbarch *gdbarch,
1082 gdbarch_register_type_ftype *pseudo_type)
1083{
19ba03f4
SM
1084 struct tdesc_arch_data *data
1085 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
123dc839
DJ
1086
1087 data->pseudo_register_type = pseudo_type;
1088}
1089
1090void
1091set_tdesc_pseudo_register_reggroup_p
1092 (struct gdbarch *gdbarch,
1093 gdbarch_register_reggroup_p_ftype *pseudo_reggroup_p)
1094{
19ba03f4
SM
1095 struct tdesc_arch_data *data
1096 = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
123dc839
DJ
1097
1098 data->pseudo_register_reggroup_p = pseudo_reggroup_p;
1099}
1100
1101/* Update GDBARCH to use the target description for registers. */
1102
1103void
1104tdesc_use_registers (struct gdbarch *gdbarch,
7cc46491 1105 const struct target_desc *target_desc,
be64fd07
AB
1106 struct tdesc_arch_data *early_data,
1107 tdesc_unknown_register_ftype unk_reg_cb)
123dc839
DJ
1108{
1109 int num_regs = gdbarch_num_regs (gdbarch);
123dc839
DJ
1110 struct tdesc_arch_data *data;
1111 htab_t reg_hash;
1112
123dc839
DJ
1113 /* We can't use the description for registers if it doesn't describe
1114 any. This function should only be called after validating
1115 registers, so the caller should know that registers are
1116 included. */
1117 gdb_assert (tdesc_has_registers (target_desc));
1118
19ba03f4 1119 data = (struct tdesc_arch_data *) gdbarch_data (gdbarch, tdesc_data);
ad068eab 1120 data->arch_regs = early_data->arch_regs;
f0cddbef 1121 delete early_data;
123dc839
DJ
1122
1123 /* Build up a set of all registers, so that we can assign register
1124 numbers where needed. The hash table expands as necessary, so
1125 the initial size is arbitrary. */
1126 reg_hash = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3eea796c 1127 for (const tdesc_feature_up &feature : target_desc->features)
c9c895b9 1128 for (const tdesc_reg_up &reg : feature->registers)
123dc839 1129 {
c9c895b9 1130 void **slot = htab_find_slot (reg_hash, reg.get (), INSERT);
123dc839 1131
c9c895b9 1132 *slot = reg.get ();
cef0f868
SH
1133 /* Add reggroup if its new. */
1134 if (!reg->group.empty ())
1135 if (reggroup_find (gdbarch, reg->group.c_str ()) == NULL)
1136 reggroup_add (gdbarch, reggroup_gdbarch_new (gdbarch,
1137 reg->group.c_str (),
1138 USER_REGGROUP));
123dc839
DJ
1139 }
1140
1141 /* Remove any registers which were assigned numbers by the
1142 architecture. */
f0cddbef
SM
1143 for (const tdesc_arch_reg &arch_reg : data->arch_regs)
1144 if (arch_reg.reg != NULL)
1145 htab_remove_elt (reg_hash, arch_reg.reg);
123dc839
DJ
1146
1147 /* Assign numbers to the remaining registers and add them to the
f57d151a 1148 list of registers. The new numbers are always above gdbarch_num_regs.
123dc839
DJ
1149 Iterate over the features, not the hash table, so that the order
1150 matches that in the target description. */
1151
f0cddbef
SM
1152 gdb_assert (data->arch_regs.size () <= num_regs);
1153 while (data->arch_regs.size () < num_regs)
1154 data->arch_regs.emplace_back (nullptr, nullptr);
1155
be64fd07
AB
1156 /* First we give the target a chance to number previously unknown
1157 registers. This allows targets to record the numbers assigned based
1158 on which feature the register was from. */
1159 if (unk_reg_cb != NULL)
1160 {
1161 for (const tdesc_feature_up &feature : target_desc->features)
1162 for (const tdesc_reg_up &reg : feature->registers)
1163 if (htab_find (reg_hash, reg.get ()) != NULL)
1164 {
1165 int regno = unk_reg_cb (gdbarch, feature.get (),
1166 reg->name.c_str (), num_regs);
1167 gdb_assert (regno == -1 || regno >= num_regs);
1168 if (regno != -1)
1169 {
1170 while (regno >= data->arch_regs.size ())
1171 data->arch_regs.emplace_back (nullptr, nullptr);
1172 data->arch_regs[regno] = tdesc_arch_reg (reg.get (), NULL);
1173 num_regs = regno + 1;
1174 htab_remove_elt (reg_hash, reg.get ());
1175 }
1176 }
1177 }
1178
1179 /* Ensure the array was sized correctly above. */
1180 gdb_assert (data->arch_regs.size () == num_regs);
1181
1182 /* Now in a final pass we assign register numbers to any remaining
1183 unnumbered registers. */
3eea796c 1184 for (const tdesc_feature_up &feature : target_desc->features)
c9c895b9
SM
1185 for (const tdesc_reg_up &reg : feature->registers)
1186 if (htab_find (reg_hash, reg.get ()) != NULL)
123dc839 1187 {
f0cddbef 1188 data->arch_regs.emplace_back (reg.get (), nullptr);
123dc839
DJ
1189 num_regs++;
1190 }
1191
1192 htab_delete (reg_hash);
1193
1194 /* Update the architecture. */
1195 set_gdbarch_num_regs (gdbarch, num_regs);
1196 set_gdbarch_register_name (gdbarch, tdesc_register_name);
1197 set_gdbarch_register_type (gdbarch, tdesc_register_type);
1198 set_gdbarch_remote_register_number (gdbarch,
1199 tdesc_remote_register_number);
1200 set_gdbarch_register_reggroup_p (gdbarch, tdesc_register_reggroup_p);
1201}
123dc839 1202
268a13a5 1203/* See gdbsupport/tdesc.h. */
f49ff000 1204
123dc839 1205struct tdesc_feature *
3b74854b 1206tdesc_create_feature (struct target_desc *tdesc, const char *name)
123dc839 1207{
72ddacb7 1208 struct tdesc_feature *new_feature = new tdesc_feature (name);
123dc839 1209
3eea796c
SM
1210 tdesc->features.emplace_back (new_feature);
1211
123dc839
DJ
1212 return new_feature;
1213}
1214
0e267416
AB
1215/* See gdbsupport/tdesc.h. */
1216
424163ea
DJ
1217struct target_desc *
1218allocate_target_description (void)
1219{
b468ff4c 1220 return new target_desc ();
424163ea 1221}
29709017 1222
0e267416
AB
1223/* See gdbsupport/tdesc.h. */
1224
c55d06ec
TT
1225void
1226target_desc_deleter::operator() (struct target_desc *target_desc) const
23181151 1227{
b468ff4c 1228 delete target_desc;
23181151
DJ
1229}
1230
e35359c5
UW
1231void
1232tdesc_add_compatible (struct target_desc *target_desc,
1233 const struct bfd_arch_info *compatible)
1234{
e35359c5
UW
1235 /* If this instance of GDB is compiled without BFD support for the
1236 compatible architecture, simply ignore it -- we would not be able
1237 to handle it anyway. */
1238 if (compatible == NULL)
1239 return;
1240
fbf42f4e
AB
1241 for (const tdesc_compatible_info_up &compat : target_desc->compatible)
1242 if (compat->arch () == compatible)
e35359c5
UW
1243 internal_error (__FILE__, __LINE__,
1244 _("Attempted to add duplicate "
1245 "compatible architecture \"%s\""),
1246 compatible->printable_name);
1247
fbf42f4e
AB
1248 target_desc->compatible.push_back
1249 (std::unique_ptr<tdesc_compatible_info>
1250 (new tdesc_compatible_info (compatible)));
e35359c5
UW
1251}
1252
29709017
DJ
1253void
1254set_tdesc_property (struct target_desc *target_desc,
1255 const char *key, const char *value)
1256{
29709017
DJ
1257 gdb_assert (key != NULL && value != NULL);
1258
129c10bc
SM
1259 if (tdesc_property (target_desc, key) != NULL)
1260 internal_error (__FILE__, __LINE__,
1261 _("Attempted to add duplicate property \"%s\""), key);
29709017 1262
129c10bc 1263 target_desc->properties.emplace_back (key, value);
29709017 1264}
23181151 1265
268a13a5 1266/* See gdbsupport/tdesc.h. */
5f035c07
YQ
1267
1268void
1269set_tdesc_architecture (struct target_desc *target_desc,
1270 const char *name)
1271{
1272 set_tdesc_architecture (target_desc, bfd_scan_arch (name));
1273}
1274
23181151
DJ
1275void
1276set_tdesc_architecture (struct target_desc *target_desc,
1277 const struct bfd_arch_info *arch)
1278{
1279 target_desc->arch = arch;
1280}
08d16641 1281
268a13a5 1282/* See gdbsupport/tdesc.h. */
5f035c07
YQ
1283
1284void
1285set_tdesc_osabi (struct target_desc *target_desc, const char *name)
1286{
1287 set_tdesc_osabi (target_desc, osabi_from_tdesc_string (name));
1288}
1289
08d16641
PA
1290void
1291set_tdesc_osabi (struct target_desc *target_desc, enum gdb_osabi osabi)
1292{
1293 target_desc->osabi = osabi;
1294}
23181151
DJ
1295\f
1296
1297static struct cmd_list_element *tdesc_set_cmdlist, *tdesc_show_cmdlist;
1298static struct cmd_list_element *tdesc_unset_cmdlist;
1299
1300/* Helper functions for the CLI commands. */
1301
23181151 1302static void
eb4c3f4a 1303set_tdesc_filename_cmd (const char *args, int from_tty,
23181151
DJ
1304 struct cmd_list_element *c)
1305{
6ecd4729
PA
1306 xfree (target_description_filename);
1307 target_description_filename = xstrdup (tdesc_filename_cmd_string);
1308
23181151
DJ
1309 target_clear_description ();
1310 target_find_description ();
1311}
1312
1313static void
1314show_tdesc_filename_cmd (struct ui_file *file, int from_tty,
1315 struct cmd_list_element *c,
1316 const char *value)
1317{
6ecd4729
PA
1318 value = target_description_filename;
1319
23181151 1320 if (value != NULL && *value != '\0')
3e43a32a 1321 printf_filtered (_("The target description will be read from \"%s\".\n"),
23181151
DJ
1322 value);
1323 else
3e43a32a
MS
1324 printf_filtered (_("The target description will be "
1325 "read from the target.\n"));
23181151
DJ
1326}
1327
1328static void
e100df1a 1329unset_tdesc_filename_cmd (const char *args, int from_tty)
23181151
DJ
1330{
1331 xfree (target_description_filename);
1332 target_description_filename = NULL;
1333 target_clear_description ();
1334 target_find_description ();
1335}
1336
6eb1e6a8
YQ
1337/* Print target description in C. */
1338
1339class print_c_tdesc : public tdesc_element_visitor
1340{
1341public:
1342 print_c_tdesc (std::string &filename_after_features)
1343 : m_filename_after_features (filename_after_features)
1344 {
1345 const char *inp;
1346 char *outp;
1347 const char *filename = lbasename (m_filename_after_features.c_str ());
1348
1349 m_function = (char *) xmalloc (strlen (filename) + 1);
1350 for (inp = filename, outp = m_function; *inp != '\0'; inp++)
1351 if (*inp == '.')
1352 break;
1353 else if (*inp == '-')
1354 *outp++ = '_';
20821f4e
AB
1355 else if (*inp == ' ')
1356 *outp++ = '_';
6eb1e6a8
YQ
1357 else
1358 *outp++ = *inp;
1359 *outp = '\0';
1360
1361 /* Standard boilerplate. */
1362 printf_unfiltered ("/* THIS FILE IS GENERATED. "
1363 "-*- buffer-read-only: t -*- vi"
1364 ":set ro:\n");
6eb1e6a8
YQ
1365 }
1366
1367 ~print_c_tdesc ()
1368 {
1369 xfree (m_function);
1370 }
1371
1372 void visit_pre (const target_desc *e) override
1373 {
25aa13e5
YQ
1374 printf_unfiltered (" Original: %s */\n\n",
1375 lbasename (m_filename_after_features.c_str ()));
1376
6eb1e6a8
YQ
1377 printf_unfiltered ("#include \"defs.h\"\n");
1378 printf_unfiltered ("#include \"osabi.h\"\n");
1379 printf_unfiltered ("#include \"target-descriptions.h\"\n");
1380 printf_unfiltered ("\n");
1381
1382 printf_unfiltered ("struct target_desc *tdesc_%s;\n", m_function);
1383 printf_unfiltered ("static void\n");
1384 printf_unfiltered ("initialize_tdesc_%s (void)\n", m_function);
1385 printf_unfiltered ("{\n");
1386 printf_unfiltered
1387 (" struct target_desc *result = allocate_target_description ();\n");
1388
1389 if (tdesc_architecture (e) != NULL)
1390 {
1391 printf_unfiltered
1392 (" set_tdesc_architecture (result, bfd_scan_arch (\"%s\"));\n",
1393 tdesc_architecture (e)->printable_name);
1394 printf_unfiltered ("\n");
1395 }
1396 if (tdesc_osabi (e) > GDB_OSABI_UNKNOWN
1397 && tdesc_osabi (e) < GDB_OSABI_INVALID)
1398 {
1399 printf_unfiltered
1400 (" set_tdesc_osabi (result, osabi_from_tdesc_string (\"%s\"));\n",
1401 gdbarch_osabi_name (tdesc_osabi (e)));
1402 printf_unfiltered ("\n");
1403 }
1404
fbf42f4e 1405 for (const tdesc_compatible_info_up &compatible : e->compatible)
40e2a983
SM
1406 printf_unfiltered
1407 (" tdesc_add_compatible (result, bfd_scan_arch (\"%s\"));\n",
fbf42f4e 1408 compatible->arch ()->printable_name);
6eb1e6a8 1409
40e2a983 1410 if (!e->compatible.empty ())
6eb1e6a8
YQ
1411 printf_unfiltered ("\n");
1412
129c10bc
SM
1413 for (const property &prop : e->properties)
1414 printf_unfiltered (" set_tdesc_property (result, \"%s\", \"%s\");\n",
1415 prop.key.c_str (), prop.value.c_str ());
1416
6eb1e6a8
YQ
1417 printf_unfiltered (" struct tdesc_feature *feature;\n");
1418 }
1419
25aa13e5 1420 void visit_pre (const tdesc_feature *e) override
6eb1e6a8
YQ
1421 {
1422 printf_unfiltered ("\n feature = tdesc_create_feature (result, \"%s\");\n",
f65ff9f9 1423 e->name.c_str ());
6eb1e6a8
YQ
1424 }
1425
25aa13e5
YQ
1426 void visit_post (const tdesc_feature *e) override
1427 {}
1428
6eb1e6a8
YQ
1429 void visit_post (const target_desc *e) override
1430 {
1431 printf_unfiltered ("\n tdesc_%s = result;\n", m_function);
1432 printf_unfiltered ("}\n");
1433 }
1434
d4a0e8b5
SM
1435 void visit (const tdesc_type_builtin *type) override
1436 {
1437 error (_("C output is not supported type \"%s\"."), type->name.c_str ());
1438 }
1439
1440 void visit (const tdesc_type_vector *type) override
6eb1e6a8 1441 {
d4a0e8b5 1442 if (!m_printed_element_type)
6eb1e6a8 1443 {
d4a0e8b5
SM
1444 printf_unfiltered (" tdesc_type *element_type;\n");
1445 m_printed_element_type = true;
6eb1e6a8
YQ
1446 }
1447
d4a0e8b5
SM
1448 printf_unfiltered
1449 (" element_type = tdesc_named_type (feature, \"%s\");\n",
1450 type->element_type->name.c_str ());
1451 printf_unfiltered
1452 (" tdesc_create_vector (feature, \"%s\", element_type, %d);\n",
1453 type->name.c_str (), type->count);
1454
1455 printf_unfiltered ("\n");
1456 }
1457
1458 void visit (const tdesc_type_with_fields *type) override
1459 {
1460 if (!m_printed_type_with_fields)
6eb1e6a8 1461 {
d4a0e8b5
SM
1462 printf_unfiltered (" tdesc_type_with_fields *type_with_fields;\n");
1463 m_printed_type_with_fields = true;
1464 }
1465
6eb1e6a8
YQ
1466 switch (type->kind)
1467 {
6eb1e6a8
YQ
1468 case TDESC_TYPE_STRUCT:
1469 case TDESC_TYPE_FLAGS:
1470 if (type->kind == TDESC_TYPE_STRUCT)
1471 {
1472 printf_unfiltered
d4a0e8b5 1473 (" type_with_fields = tdesc_create_struct (feature, \"%s\");\n",
082b9140 1474 type->name.c_str ());
d4a0e8b5 1475 if (type->size != 0)
6eb1e6a8 1476 printf_unfiltered
d4a0e8b5 1477 (" tdesc_set_struct_size (type_with_fields, %d);\n", type->size);
6eb1e6a8
YQ
1478 }
1479 else
1480 {
1481 printf_unfiltered
d4a0e8b5
SM
1482 (" type_with_fields = tdesc_create_flags (feature, \"%s\", %d);\n",
1483 type->name.c_str (), type->size);
6eb1e6a8 1484 }
d4a0e8b5 1485 for (const tdesc_type_field &f : type->fields)
6eb1e6a8
YQ
1486 {
1487 const char *type_name;
1488
d05200d1
SM
1489 gdb_assert (f.type != NULL);
1490 type_name = f.type->name.c_str ();
6eb1e6a8
YQ
1491
1492 /* To minimize changes to generated files, don't emit type
1493 info for fields that have defaulted types. */
d05200d1 1494 if (f.start != -1)
6eb1e6a8 1495 {
d05200d1
SM
1496 gdb_assert (f.end != -1);
1497 if (f.type->kind == TDESC_TYPE_BOOL)
6eb1e6a8 1498 {
d05200d1 1499 gdb_assert (f.start == f.end);
6eb1e6a8 1500 printf_unfiltered
d4a0e8b5 1501 (" tdesc_add_flag (type_with_fields, %d, \"%s\");\n",
d05200d1 1502 f.start, f.name.c_str ());
6eb1e6a8 1503 }
d4a0e8b5
SM
1504 else if ((type->size == 4 && f.type->kind == TDESC_TYPE_UINT32)
1505 || (type->size == 8
d05200d1 1506 && f.type->kind == TDESC_TYPE_UINT64))
6eb1e6a8
YQ
1507 {
1508 printf_unfiltered
d4a0e8b5 1509 (" tdesc_add_bitfield (type_with_fields, \"%s\", %d, %d);\n",
d05200d1 1510 f.name.c_str (), f.start, f.end);
6eb1e6a8
YQ
1511 }
1512 else
1513 {
a8d2e585
SM
1514 printf_field_type_assignment
1515 ("tdesc_named_type (feature, \"%s\");\n",
6eb1e6a8
YQ
1516 type_name);
1517 printf_unfiltered
d4a0e8b5 1518 (" tdesc_add_typed_bitfield (type_with_fields, \"%s\","
6eb1e6a8 1519 " %d, %d, field_type);\n",
d05200d1 1520 f.name.c_str (), f.start, f.end);
6eb1e6a8
YQ
1521 }
1522 }
1523 else /* Not a bitfield. */
1524 {
d05200d1 1525 gdb_assert (f.end == -1);
6eb1e6a8 1526 gdb_assert (type->kind == TDESC_TYPE_STRUCT);
a8d2e585
SM
1527 printf_field_type_assignment
1528 ("tdesc_named_type (feature, \"%s\");\n", type_name);
6eb1e6a8 1529 printf_unfiltered
d4a0e8b5 1530 (" tdesc_add_field (type_with_fields, \"%s\", field_type);\n",
d05200d1 1531 f.name.c_str ());
6eb1e6a8
YQ
1532 }
1533 }
1534 break;
1535 case TDESC_TYPE_UNION:
1536 printf_unfiltered
d4a0e8b5 1537 (" type_with_fields = tdesc_create_union (feature, \"%s\");\n",
082b9140 1538 type->name.c_str ());
d4a0e8b5 1539 for (const tdesc_type_field &f : type->fields)
6eb1e6a8 1540 {
a8d2e585
SM
1541 printf_field_type_assignment
1542 ("tdesc_named_type (feature, \"%s\");\n", f.type->name.c_str ());
6eb1e6a8 1543 printf_unfiltered
d4a0e8b5 1544 (" tdesc_add_field (type_with_fields, \"%s\", field_type);\n",
d05200d1 1545 f.name.c_str ());
6eb1e6a8
YQ
1546 }
1547 break;
1548 case TDESC_TYPE_ENUM:
1549 printf_unfiltered
d4a0e8b5
SM
1550 (" type_with_fields = tdesc_create_enum (feature, \"%s\", %d);\n",
1551 type->name.c_str (), type->size);
1552 for (const tdesc_type_field &f : type->fields)
6eb1e6a8 1553 printf_unfiltered
d4a0e8b5 1554 (" tdesc_add_enum_value (type_with_fields, %d, \"%s\");\n",
d05200d1 1555 f.start, f.name.c_str ());
6eb1e6a8
YQ
1556 break;
1557 default:
082b9140 1558 error (_("C output is not supported type \"%s\"."), type->name.c_str ());
6eb1e6a8 1559 }
d4a0e8b5 1560
6eb1e6a8
YQ
1561 printf_unfiltered ("\n");
1562 }
1563
1564 void visit (const tdesc_reg *reg) override
1565 {
1566 printf_unfiltered (" tdesc_create_reg (feature, \"%s\", %ld, %d, ",
a8142ee1
SM
1567 reg->name.c_str (), reg->target_regnum,
1568 reg->save_restore);
1569 if (!reg->group.empty ())
1570 printf_unfiltered ("\"%s\", ", reg->group.c_str ());
6eb1e6a8
YQ
1571 else
1572 printf_unfiltered ("NULL, ");
a8142ee1 1573 printf_unfiltered ("%d, \"%s\");\n", reg->bitsize, reg->type.c_str ());
6eb1e6a8
YQ
1574 }
1575
25aa13e5
YQ
1576protected:
1577 std::string m_filename_after_features;
1578
6eb1e6a8 1579private:
a8d2e585
SM
1580
1581 /* Print an assignment to the field_type variable. Print the declaration
1582 of field_type if that has not been done yet. */
6e8c24fe 1583 ATTRIBUTE_PRINTF (2, 3)
a8d2e585
SM
1584 void printf_field_type_assignment (const char *fmt, ...)
1585 {
1586 if (!m_printed_field_type)
1587 {
1588 printf_unfiltered (" tdesc_type *field_type;\n");
1589 m_printed_field_type = true;
1590 }
1591
1592 printf_unfiltered (" field_type = ");
1593
1594 va_list args;
1595 va_start (args, fmt);
1596 vprintf_unfiltered (fmt, args);
1597 va_end (args);
1598 }
1599
6eb1e6a8 1600 char *m_function;
d4a0e8b5
SM
1601
1602 /* Did we print "struct tdesc_type *element_type;" yet? */
1603 bool m_printed_element_type = false;
1604
1605 /* Did we print "struct tdesc_type_with_fields *element_type;" yet? */
1606 bool m_printed_type_with_fields = false;
1607
1608 /* Did we print "struct tdesc_type *field_type;" yet? */
6eb1e6a8 1609 bool m_printed_field_type = false;
6eb1e6a8
YQ
1610};
1611
25aa13e5
YQ
1612/* Print target description feature in C. */
1613
1614class print_c_feature : public print_c_tdesc
1615{
1616public:
1617 print_c_feature (std::string &file)
1618 : print_c_tdesc (file)
1619 {
1620 /* Trim ".tmp". */
1621 auto const pos = m_filename_after_features.find_last_of ('.');
1622
1623 m_filename_after_features = m_filename_after_features.substr (0, pos);
1624 }
1625
1626 void visit_pre (const target_desc *e) override
1627 {
1628 printf_unfiltered (" Original: %s */\n\n",
1629 lbasename (m_filename_after_features.c_str ()));
1630
268a13a5 1631 printf_unfiltered ("#include \"gdbsupport/tdesc.h\"\n");
25aa13e5
YQ
1632 printf_unfiltered ("\n");
1633 }
1634
1635 void visit_post (const target_desc *e) override
1636 {}
1637
1638 void visit_pre (const tdesc_feature *e) override
1639 {
1640 std::string name (m_filename_after_features);
1641
1642 auto pos = name.find_first_of ('.');
1643
1644 name = name.substr (0, pos);
1645 std::replace (name.begin (), name.end (), '/', '_');
1646 std::replace (name.begin (), name.end (), '-', '_');
1647
1648 printf_unfiltered ("static int\n");
1649 printf_unfiltered ("create_feature_%s ", name.c_str ());
1650 printf_unfiltered ("(struct target_desc *result, long regnum)\n");
1651
1652 printf_unfiltered ("{\n");
1653 printf_unfiltered (" struct tdesc_feature *feature;\n");
0abe8a89
YQ
1654
1655 printf_unfiltered
3b74854b
AH
1656 ("\n feature = tdesc_create_feature (result, \"%s\");\n",
1657 e->name.c_str ());
25aa13e5
YQ
1658 }
1659
1660 void visit_post (const tdesc_feature *e) override
1661 {
1662 printf_unfiltered (" return regnum;\n");
1663 printf_unfiltered ("}\n");
1664 }
1665
1666 void visit (const tdesc_reg *reg) override
1667 {
ea03d0d3
YQ
1668 /* Most "reg" in XML target descriptions don't have "regnum"
1669 attribute, so the register number is allocated sequentially.
1670 In case that reg has "regnum" attribute, register number
1671 should be set by that explicitly. */
1672
1673 if (reg->target_regnum < m_next_regnum)
1674 {
1675 /* The integrity check, it can catch some errors on register
1676 number collision, like this,
1677
1678 <reg name="x0" bitsize="32"/>
1679 <reg name="x1" bitsize="32"/>
1680 <reg name="x2" bitsize="32"/>
1681 <reg name="x3" bitsize="32"/>
1682 <reg name="ps" bitsize="32" regnum="3"/>
1683
1684 but it also has false negatives. The target description
1685 below is correct,
1686
1687 <reg name="x1" bitsize="32" regnum="1"/>
1688 <reg name="x3" bitsize="32" regnum="3"/>
1689 <reg name="x2" bitsize="32" regnum="2"/>
1690 <reg name="x4" bitsize="32" regnum="4"/>
1691
1692 but it is not a good practice, so still error on this,
1693 and also print the message so that it can be saved in the
1694 generated c file. */
1695
1696 printf_unfiltered ("ERROR: \"regnum\" attribute %ld ",
1697 reg->target_regnum);
1698 printf_unfiltered ("is not the largest number (%d).\n",
1699 m_next_regnum);
1700 error (_("\"regnum\" attribute %ld is not the largest number (%d)."),
1701 reg->target_regnum, m_next_regnum);
1702 }
1703
1704 if (reg->target_regnum > m_next_regnum)
1705 {
1706 printf_unfiltered (" regnum = %ld;\n", reg->target_regnum);
1707 m_next_regnum = reg->target_regnum;
1708 }
1709
25aa13e5 1710 printf_unfiltered (" tdesc_create_reg (feature, \"%s\", regnum++, %d, ",
a8142ee1
SM
1711 reg->name.c_str (), reg->save_restore);
1712 if (!reg->group.empty ())
1713 printf_unfiltered ("\"%s\", ", reg->group.c_str ());
25aa13e5
YQ
1714 else
1715 printf_unfiltered ("NULL, ");
a8142ee1 1716 printf_unfiltered ("%d, \"%s\");\n", reg->bitsize, reg->type.c_str ());
ea03d0d3
YQ
1717
1718 m_next_regnum++;
25aa13e5
YQ
1719 }
1720
ea03d0d3
YQ
1721private:
1722 /* The register number to use for the next register we see. */
1723 int m_next_regnum = 0;
25aa13e5
YQ
1724};
1725
268a13a5 1726/* See gdbsupport/tdesc.h. */
e98577a9
AH
1727
1728const char *
1729tdesc_get_features_xml (const target_desc *tdesc)
1730{
1731 if (tdesc->xmltarget == nullptr)
1732 {
1733 std::string buffer ("@");
1734 print_xml_feature v (&buffer);
1735 tdesc->accept (v);
1736 tdesc->xmltarget = xstrdup (buffer.c_str ());
1737 }
1738 return tdesc->xmltarget;
1739}
1740
81adfced 1741static void
e100df1a 1742maint_print_c_tdesc_cmd (const char *args, int from_tty)
81adfced
DJ
1743{
1744 const struct target_desc *tdesc;
6eb1e6a8 1745 const char *filename;
81adfced 1746
8e2141c6
YQ
1747 if (args == NULL)
1748 {
1749 /* Use the global target-supplied description, not the current
1750 architecture's. This lets a GDB for one architecture generate C
1751 for another architecture's description, even though the gdbarch
1752 initialization code will reject the new description. */
1753 tdesc = current_target_desc;
1754 filename = target_description_filename;
1755 }
1756 else
1757 {
1758 /* Use the target description from the XML file. */
1759 filename = args;
1760 tdesc = file_read_description_xml (filename);
1761 }
1762
81adfced
DJ
1763 if (tdesc == NULL)
1764 error (_("There is no target description to print."));
1765
8e2141c6 1766 if (filename == NULL)
20821f4e 1767 filename = "fetched from target";
81adfced 1768
6eb1e6a8
YQ
1769 std::string filename_after_features (filename);
1770 auto loc = filename_after_features.rfind ("/features/");
4e2f8df6 1771
6eb1e6a8
YQ
1772 if (loc != std::string::npos)
1773 filename_after_features = filename_after_features.substr (loc + 10);
4e2f8df6 1774
25aa13e5
YQ
1775 /* Print c files for target features instead of target descriptions,
1776 because c files got from target features are more flexible than the
1777 counterparts. */
6c73f67f
YQ
1778 if (startswith (filename_after_features.c_str (), "i386/32bit-")
1779 || startswith (filename_after_features.c_str (), "i386/64bit-")
506fe5f4 1780 || startswith (filename_after_features.c_str (), "i386/x32-core.xml")
b5ffee31 1781 || startswith (filename_after_features.c_str (), "riscv/")
49bdb7ee 1782 || startswith (filename_after_features.c_str (), "tic6x-")
89abbcc2 1783 || startswith (filename_after_features.c_str (), "aarch64")
817a7585
AK
1784 || startswith (filename_after_features.c_str (), "arm/")
1785 || startswith (filename_after_features.c_str (), "arc/"))
25aa13e5
YQ
1786 {
1787 print_c_feature v (filename_after_features);
81adfced 1788
25aa13e5
YQ
1789 tdesc->accept (v);
1790 }
1791 else
1792 {
1793 print_c_tdesc v (filename_after_features);
1794
1795 tdesc->accept (v);
1796 }
81adfced
DJ
1797}
1798
caa7fd04
AB
1799/* Implement the maintenance print xml-tdesc command. */
1800
1801static void
1802maint_print_xml_tdesc_cmd (const char *args, int from_tty)
1803{
1804 const struct target_desc *tdesc;
1805
1806 if (args == NULL)
1807 {
1808 /* Use the global target-supplied description, not the current
1809 architecture's. This lets a GDB for one architecture generate XML
1810 for another architecture's description, even though the gdbarch
1811 initialization code will reject the new description. */
1812 tdesc = current_target_desc;
1813 }
1814 else
1815 {
1816 /* Use the target description from the XML file. */
1817 tdesc = file_read_description_xml (args);
1818 }
1819
1820 if (tdesc == NULL)
1821 error (_("There is no target description to print."));
1822
1823 std::string buf;
1824 print_xml_feature v (&buf);
1825 tdesc->accept (v);
1826 puts_unfiltered (buf.c_str ());
1827}
1828
27d41eac
YQ
1829namespace selftests {
1830
1c28969e
SM
1831/* A reference target description, used for testing (see record_xml_tdesc). */
1832
1833struct xml_test_tdesc
1834{
1835 xml_test_tdesc (const char *name, std::unique_ptr<const target_desc> &&tdesc)
1836 : name (name), tdesc (std::move (tdesc))
1837 {}
1838
1839 const char *name;
1840 std::unique_ptr<const target_desc> tdesc;
1841};
1842
1843static std::vector<xml_test_tdesc> xml_tdesc;
27d41eac
YQ
1844
1845#if GDB_SELF_TEST
1846
405feb71 1847/* See target-descriptions.h. */
27d41eac
YQ
1848
1849void
1850record_xml_tdesc (const char *xml_file, const struct target_desc *tdesc)
1851{
1c28969e 1852 xml_tdesc.emplace_back (xml_file, std::unique_ptr<const target_desc> (tdesc));
27d41eac
YQ
1853}
1854#endif
1855
1856}
1857
85102364 1858/* Test the conversion process of a target description to/from xml: Take a target
e98577a9
AH
1859 description TDESC, convert to xml, back to a description, and confirm the new
1860 tdesc is identical to the original. */
1861static bool
1862maintenance_check_tdesc_xml_convert (const target_desc *tdesc, const char *name)
1863{
1864 const char *xml = tdesc_get_features_xml (tdesc);
1865
1866 if (xml == nullptr || *xml != '@')
1867 {
1868 printf_filtered (_("Could not convert description for %s to xml.\n"),
1869 name);
1870 return false;
1871 }
1872
1873 const target_desc *tdesc_trans = string_read_description_xml (xml + 1);
1874
1875 if (tdesc_trans == nullptr)
1876 {
1877 printf_filtered (_("Could not convert description for %s from xml.\n"),
1878 name);
1879 return false;
1880 }
1881 else if (*tdesc != *tdesc_trans)
1882 {
1883 printf_filtered (_("Converted description for %s does not match.\n"),
1884 name);
1885 return false;
1886 }
1887 return true;
1888}
1889
1890
27d41eac
YQ
1891/* Check that the target descriptions created dynamically by
1892 architecture-specific code equal the descriptions created from XML files
1893 found in the specified directory DIR. */
1894
1895static void
e100df1a 1896maintenance_check_xml_descriptions (const char *dir, int from_tty)
27d41eac
YQ
1897{
1898 if (dir == NULL)
1899 error (_("Missing dir name"));
1900
1901 gdb::unique_xmalloc_ptr<char> dir1 (tilde_expand (dir));
1902 std::string feature_dir (dir1.get ());
1903 unsigned int failed = 0;
1904
1905 for (auto const &e : selftests::xml_tdesc)
1906 {
1c28969e 1907 std::string tdesc_xml = (feature_dir + SLASH_STRING + e.name);
27d41eac
YQ
1908 const target_desc *tdesc
1909 = file_read_description_xml (tdesc_xml.data ());
1910
1c28969e 1911 if (tdesc == NULL || *tdesc != *e.tdesc)
e98577a9 1912 {
1c28969e 1913 printf_filtered ( _("Descriptions for %s do not match.\n"), e.name);
e98577a9
AH
1914 failed++;
1915 }
1c28969e
SM
1916 else if (!maintenance_check_tdesc_xml_convert (tdesc, e.name)
1917 || !maintenance_check_tdesc_xml_convert (e.tdesc.get (), e.name))
27d41eac
YQ
1918 failed++;
1919 }
1920 printf_filtered (_("Tested %lu XML files, %d failed\n"),
1921 (long) selftests::xml_tdesc.size (), failed);
1922}
1923
6c265988 1924void _initialize_target_descriptions ();
23181151 1925void
6c265988 1926_initialize_target_descriptions ()
23181151 1927{
20821f4e
AB
1928 cmd_list_element *cmd;
1929
123dc839
DJ
1930 tdesc_data = gdbarch_data_register_pre_init (tdesc_data_init);
1931
0743fc83 1932 add_basic_prefix_cmd ("tdesc", class_maintenance, _("\
23181151 1933Set target description specific variables."),
0743fc83
TT
1934 &tdesc_set_cmdlist, "set tdesc ",
1935 0 /* allow-unknown */, &setlist);
1936 add_show_prefix_cmd ("tdesc", class_maintenance, _("\
23181151 1937Show target description specific variables."),
0743fc83
TT
1938 &tdesc_show_cmdlist, "show tdesc ",
1939 0 /* allow-unknown */, &showlist);
1940 add_basic_prefix_cmd ("tdesc", class_maintenance, _("\
23181151 1941Unset target description specific variables."),
0743fc83
TT
1942 &tdesc_unset_cmdlist, "unset tdesc ",
1943 0 /* allow-unknown */, &unsetlist);
23181151
DJ
1944
1945 add_setshow_filename_cmd ("filename", class_obscure,
6ecd4729 1946 &tdesc_filename_cmd_string,
23181151 1947 _("\
590042fc
PW
1948Set the file to read for an XML target description."), _("\
1949Show the file to read for an XML target description."), _("\
23181151
DJ
1950When set, GDB will read the target description from a local\n\
1951file instead of querying the remote target."),
1952 set_tdesc_filename_cmd,
1953 show_tdesc_filename_cmd,
1954 &tdesc_set_cmdlist, &tdesc_show_cmdlist);
1955
1956 add_cmd ("filename", class_obscure, unset_tdesc_filename_cmd, _("\
590042fc
PW
1957Unset the file to read for an XML target description.\n\
1958When unset, GDB will read the description from the target."),
23181151 1959 &tdesc_unset_cmdlist);
81adfced 1960
20821f4e 1961 cmd = add_cmd ("c-tdesc", class_maintenance, maint_print_c_tdesc_cmd, _("\
81adfced
DJ
1962Print the current target description as a C source file."),
1963 &maintenanceprintlist);
20821f4e 1964 set_cmd_completer (cmd, filename_completer);
27d41eac 1965
caa7fd04
AB
1966 cmd = add_cmd ("xml-tdesc", class_maintenance, maint_print_xml_tdesc_cmd, _("\
1967Print the current target description as an XML file."),
1968 &maintenanceprintlist);
1969 set_cmd_completer (cmd, filename_completer);
1970
27d41eac
YQ
1971 cmd = add_cmd ("xml-descriptions", class_maintenance,
1972 maintenance_check_xml_descriptions, _("\
590042fc 1973Check equality of GDB target descriptions and XML created descriptions.\n\
27d41eac
YQ
1974Check the target descriptions created in GDB equal the descriptions\n\
1975created from XML files in the directory.\n\
1976The parameter is the directory name."),
1977 &maintenancechecklist);
1978 set_cmd_completer (cmd, filename_completer);
23181151 1979}
This page took 1.619713 seconds and 4 git commands to generate.