Update
[gdb.git] / gdb / xml-tdesc.c
blobe1aefd17addab47372533d97e07fac2ab05d3f28
1 /* XML target description support for GDB.
3 Copyright (C) 2006, 2008 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/>. */
22 #include "defs.h"
23 #include "gdbtypes.h"
24 #include "target.h"
25 #include "target-descriptions.h"
26 #include "xml-support.h"
27 #include "xml-tdesc.h"
29 #include "filenames.h"
31 #include "gdb_assert.h"
33 #if !defined(HAVE_LIBEXPAT)
35 /* Parse DOCUMENT into a target description. Or don't, since we don't have
36 an XML parser. */
38 static struct target_desc *
39 tdesc_parse_xml (const char *document, xml_fetch_another fetcher,
40 void *fetcher_baton)
42 static int have_warned;
44 if (!have_warned)
46 have_warned = 1;
47 warning (_("Can not parse XML target description; XML support was "
48 "disabled at compile time"));
51 return NULL;
54 #else /* HAVE_LIBEXPAT */
56 /* A record of every XML description we have parsed. We never discard
57 old descriptions, because we never discard gdbarches. As long as we
58 have a gdbarch referencing this description, we want to have a copy
59 of it here, so that if we parse the same XML document again we can
60 return the same "struct target_desc *"; if they are not singletons,
61 then we will create unnecessary duplicate gdbarches. See
62 gdbarch_list_lookup_by_info. */
64 struct tdesc_xml_cache
66 const char *xml_document;
67 struct target_desc *tdesc;
69 typedef struct tdesc_xml_cache tdesc_xml_cache_s;
70 DEF_VEC_O(tdesc_xml_cache_s);
72 static VEC(tdesc_xml_cache_s) *xml_cache;
74 /* Callback data for target description parsing. */
76 struct tdesc_parsing_data
78 /* The target description we are building. */
79 struct target_desc *tdesc;
81 /* The target feature we are currently parsing, or last parsed. */
82 struct tdesc_feature *current_feature;
84 /* The register number to use for the next register we see, if
85 it does not have its own. This starts at zero. */
86 int next_regnum;
88 /* The union we are currently parsing, or last parsed. */
89 struct type *current_union;
92 /* Handle the end of an <architecture> element and its value. */
94 static void
95 tdesc_end_arch (struct gdb_xml_parser *parser,
96 const struct gdb_xml_element *element,
97 void *user_data, const char *body_text)
99 struct tdesc_parsing_data *data = user_data;
100 const struct bfd_arch_info *arch;
102 arch = bfd_scan_arch (body_text);
103 if (arch == NULL)
104 gdb_xml_error (parser, _("Target description specified unknown "
105 "architecture \"%s\""), body_text);
106 set_tdesc_architecture (data->tdesc, arch);
109 /* Handle the start of a <target> element. */
111 static void
112 tdesc_start_target (struct gdb_xml_parser *parser,
113 const struct gdb_xml_element *element,
114 void *user_data, VEC(gdb_xml_value_s) *attributes)
116 struct tdesc_parsing_data *data = user_data;
117 char *version = VEC_index (gdb_xml_value_s, attributes, 0)->value;
119 if (strcmp (version, "1.0") != 0)
120 gdb_xml_error (parser,
121 _("Target description has unsupported version \"%s\""),
122 version);
125 /* Handle the start of a <feature> element. */
127 static void
128 tdesc_start_feature (struct gdb_xml_parser *parser,
129 const struct gdb_xml_element *element,
130 void *user_data, VEC(gdb_xml_value_s) *attributes)
132 struct tdesc_parsing_data *data = user_data;
133 char *name = VEC_index (gdb_xml_value_s, attributes, 0)->value;
135 data->current_feature = tdesc_create_feature (data->tdesc, name);
138 /* Handle the start of a <reg> element. Fill in the optional
139 attributes and attach it to the containing feature. */
141 static void
142 tdesc_start_reg (struct gdb_xml_parser *parser,
143 const struct gdb_xml_element *element,
144 void *user_data, VEC(gdb_xml_value_s) *attributes)
146 struct tdesc_parsing_data *data = user_data;
147 struct gdb_xml_value *attrs = VEC_address (gdb_xml_value_s, attributes);
148 int ix = 0, length;
149 char *name, *group, *type;
150 int bitsize, regnum, save_restore;
152 length = VEC_length (gdb_xml_value_s, attributes);
154 name = attrs[ix++].value;
155 bitsize = * (ULONGEST *) attrs[ix++].value;
157 if (ix < length && strcmp (attrs[ix].name, "regnum") == 0)
158 regnum = * (ULONGEST *) attrs[ix++].value;
159 else
160 regnum = data->next_regnum;
162 if (ix < length && strcmp (attrs[ix].name, "type") == 0)
163 type = attrs[ix++].value;
164 else
165 type = "int";
167 if (ix < length && strcmp (attrs[ix].name, "group") == 0)
168 group = attrs[ix++].value;
169 else
170 group = NULL;
172 if (ix < length && strcmp (attrs[ix].name, "save-restore") == 0)
173 save_restore = * (ULONGEST *) attrs[ix++].value;
174 else
175 save_restore = 1;
177 if (strcmp (type, "int") != 0
178 && strcmp (type, "float") != 0
179 && strcmp (type, "code_ptr") != 0
180 && strcmp (type, "data_ptr") != 0
181 && tdesc_named_type (data->current_feature, type) == NULL)
182 gdb_xml_error (parser, _("Register \"%s\" has unknown type \"%s\""),
183 name, type);
185 tdesc_create_reg (data->current_feature, name, regnum, save_restore, group,
186 bitsize, type);
188 data->next_regnum = regnum + 1;
191 /* Handle the start of a <union> element. Initialize the type and
192 record it with the current feature. */
194 static void
195 tdesc_start_union (struct gdb_xml_parser *parser,
196 const struct gdb_xml_element *element,
197 void *user_data, VEC(gdb_xml_value_s) *attributes)
199 struct tdesc_parsing_data *data = user_data;
200 char *id = VEC_index (gdb_xml_value_s, attributes, 0)->value;
201 struct type *type;
203 type = init_composite_type (NULL, TYPE_CODE_UNION);
204 TYPE_NAME (type) = xstrdup (id);
205 tdesc_record_type (data->current_feature, type);
206 data->current_union = type;
209 /* Handle the end of a <union> element. */
211 static void
212 tdesc_end_union (struct gdb_xml_parser *parser,
213 const struct gdb_xml_element *element,
214 void *user_data, const char *body_text)
216 struct tdesc_parsing_data *data = user_data;
217 int i;
219 /* If any of the children of this union are vectors, flag the union
220 as a vector also. This allows e.g. a union of two vector types
221 to show up automatically in "info vector". */
222 for (i = 0; i < TYPE_NFIELDS (data->current_union); i++)
223 if (TYPE_VECTOR (TYPE_FIELD_TYPE (data->current_union, i)))
225 TYPE_FLAGS (data->current_union) |= TYPE_FLAG_VECTOR;
226 break;
230 /* Handle the start of a <field> element. Attach the field to the
231 current union. */
233 static void
234 tdesc_start_field (struct gdb_xml_parser *parser,
235 const struct gdb_xml_element *element,
236 void *user_data, VEC(gdb_xml_value_s) *attributes)
238 struct tdesc_parsing_data *data = user_data;
239 struct gdb_xml_value *attrs = VEC_address (gdb_xml_value_s, attributes);
240 struct type *type, *field_type;
241 char *field_name, *field_type_id;
243 field_name = attrs[0].value;
244 field_type_id = attrs[1].value;
246 field_type = tdesc_named_type (data->current_feature, field_type_id);
247 if (field_type == NULL)
248 gdb_xml_error (parser, _("Union field \"%s\" references undefined "
249 "type \"%s\""),
250 field_name, field_type_id);
252 append_composite_type_field (data->current_union, xstrdup (field_name),
253 field_type);
256 /* Handle the start of a <vector> element. Initialize the type and
257 record it with the current feature. */
259 static void
260 tdesc_start_vector (struct gdb_xml_parser *parser,
261 const struct gdb_xml_element *element,
262 void *user_data, VEC(gdb_xml_value_s) *attributes)
264 struct tdesc_parsing_data *data = user_data;
265 struct gdb_xml_value *attrs = VEC_address (gdb_xml_value_s, attributes);
266 struct type *type, *field_type, *range_type;
267 char *id, *field_type_id;
268 int count;
270 id = attrs[0].value;
271 field_type_id = attrs[1].value;
272 count = * (ULONGEST *) attrs[2].value;
274 field_type = tdesc_named_type (data->current_feature, field_type_id);
275 if (field_type == NULL)
276 gdb_xml_error (parser, _("Vector \"%s\" references undefined type \"%s\""),
277 id, field_type_id);
279 type = init_vector_type (field_type, count);
280 TYPE_NAME (type) = xstrdup (id);
282 tdesc_record_type (data->current_feature, type);
285 /* The elements and attributes of an XML target description. */
287 static const struct gdb_xml_attribute field_attributes[] = {
288 { "name", GDB_XML_AF_NONE, NULL, NULL },
289 { "type", GDB_XML_AF_NONE, NULL, NULL },
290 { NULL, GDB_XML_AF_NONE, NULL, NULL }
293 static const struct gdb_xml_element union_children[] = {
294 { "field", field_attributes, NULL, GDB_XML_EF_REPEATABLE,
295 tdesc_start_field, NULL },
296 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
299 static const struct gdb_xml_attribute reg_attributes[] = {
300 { "name", GDB_XML_AF_NONE, NULL, NULL },
301 { "bitsize", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
302 { "regnum", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
303 { "type", GDB_XML_AF_OPTIONAL, NULL, NULL },
304 { "group", GDB_XML_AF_OPTIONAL, NULL, NULL },
305 { "save-restore", GDB_XML_AF_OPTIONAL,
306 gdb_xml_parse_attr_enum, gdb_xml_enums_boolean },
307 { NULL, GDB_XML_AF_NONE, NULL, NULL }
310 static const struct gdb_xml_attribute union_attributes[] = {
311 { "id", GDB_XML_AF_NONE, NULL, NULL },
312 { NULL, GDB_XML_AF_NONE, NULL, NULL }
315 static const struct gdb_xml_attribute vector_attributes[] = {
316 { "id", GDB_XML_AF_NONE, NULL, NULL },
317 { "type", GDB_XML_AF_NONE, NULL, NULL },
318 { "count", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
319 { NULL, GDB_XML_AF_NONE, NULL, NULL }
322 static const struct gdb_xml_attribute feature_attributes[] = {
323 { "name", GDB_XML_AF_NONE, NULL, NULL },
324 { NULL, GDB_XML_AF_NONE, NULL, NULL }
327 static const struct gdb_xml_element feature_children[] = {
328 { "reg", reg_attributes, NULL,
329 GDB_XML_EF_OPTIONAL | GDB_XML_EF_REPEATABLE,
330 tdesc_start_reg, NULL },
331 { "union", union_attributes, union_children,
332 GDB_XML_EF_OPTIONAL | GDB_XML_EF_REPEATABLE,
333 tdesc_start_union, tdesc_end_union },
334 { "vector", vector_attributes, NULL,
335 GDB_XML_EF_OPTIONAL | GDB_XML_EF_REPEATABLE,
336 tdesc_start_vector, NULL },
337 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
340 static const struct gdb_xml_attribute target_attributes[] = {
341 { "version", GDB_XML_AF_NONE, NULL, NULL },
342 { NULL, GDB_XML_AF_NONE, NULL, NULL }
345 static const struct gdb_xml_element target_children[] = {
346 { "architecture", NULL, NULL, GDB_XML_EF_OPTIONAL,
347 NULL, tdesc_end_arch },
348 { "feature", feature_attributes, feature_children,
349 GDB_XML_EF_OPTIONAL | GDB_XML_EF_REPEATABLE,
350 tdesc_start_feature, NULL },
351 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
354 static const struct gdb_xml_element tdesc_elements[] = {
355 { "target", target_attributes, target_children, GDB_XML_EF_NONE,
356 tdesc_start_target, NULL },
357 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
360 /* Parse DOCUMENT into a target description and return it. */
362 static struct target_desc *
363 tdesc_parse_xml (const char *document, xml_fetch_another fetcher,
364 void *fetcher_baton)
366 struct cleanup *back_to, *result_cleanup;
367 struct gdb_xml_parser *parser;
368 struct tdesc_parsing_data data;
369 struct tdesc_xml_cache *cache;
370 char *expanded_text;
371 int ix;
373 /* Expand all XInclude directives. */
374 expanded_text = xml_process_xincludes (_("target description"),
375 document, fetcher, fetcher_baton, 0);
376 if (expanded_text == NULL)
378 warning (_("Could not load XML target description; ignoring"));
379 return NULL;
382 /* Check for an exact match in the list of descriptions we have
383 previously parsed. strcmp is a slightly inefficient way to
384 do this; an SHA-1 checksum would work as well. */
385 for (ix = 0; VEC_iterate (tdesc_xml_cache_s, xml_cache, ix, cache); ix++)
386 if (strcmp (cache->xml_document, expanded_text) == 0)
388 xfree (expanded_text);
389 return cache->tdesc;
392 back_to = make_cleanup (null_cleanup, NULL);
393 parser = gdb_xml_create_parser_and_cleanup (_("target description"),
394 tdesc_elements, &data);
395 gdb_xml_use_dtd (parser, "gdb-target.dtd");
397 memset (&data, 0, sizeof (struct tdesc_parsing_data));
398 data.tdesc = allocate_target_description ();
399 result_cleanup = make_cleanup_free_target_description (data.tdesc);
400 make_cleanup (xfree, expanded_text);
402 if (gdb_xml_parse (parser, expanded_text) == 0)
404 /* Parsed successfully. */
405 struct tdesc_xml_cache new_cache;
407 new_cache.xml_document = expanded_text;
408 new_cache.tdesc = data.tdesc;
409 VEC_safe_push (tdesc_xml_cache_s, xml_cache, &new_cache);
410 discard_cleanups (result_cleanup);
411 do_cleanups (back_to);
412 return data.tdesc;
414 else
416 warning (_("Could not load XML target description; ignoring"));
417 do_cleanups (back_to);
418 return NULL;
421 #endif /* HAVE_LIBEXPAT */
424 /* Close FILE. */
426 static void
427 do_cleanup_fclose (void *file)
429 fclose (file);
432 /* Open FILENAME, read all its text into memory, close it, and return
433 the text. If something goes wrong, return NULL and warn. */
435 static char *
436 fetch_xml_from_file (const char *filename, void *baton)
438 const char *dirname = baton;
439 FILE *file;
440 struct cleanup *back_to;
441 char *text;
442 size_t len, offset;
444 if (dirname && *dirname)
446 char *fullname = concat (dirname, "/", filename, NULL);
447 if (fullname == NULL)
448 nomem (0);
449 file = fopen (fullname, FOPEN_RT);
450 xfree (fullname);
452 else
453 file = fopen (filename, FOPEN_RT);
455 if (file == NULL)
456 return NULL;
458 back_to = make_cleanup (do_cleanup_fclose, file);
460 /* Read in the whole file, one chunk at a time. */
461 len = 4096;
462 offset = 0;
463 text = xmalloc (len);
464 make_cleanup (free_current_contents, &text);
465 while (1)
467 size_t bytes_read;
469 /* Continue reading where the last read left off. Leave at least
470 one byte so that we can NUL-terminate the result. */
471 bytes_read = fread (text + offset, 1, len - offset - 1, file);
472 if (ferror (file))
474 warning (_("Read error from \"%s\""), filename);
475 do_cleanups (back_to);
476 return NULL;
479 offset += bytes_read;
481 if (feof (file))
482 break;
484 len = len * 2;
485 text = xrealloc (text, len);
488 fclose (file);
489 discard_cleanups (back_to);
491 text[offset] = '\0';
492 return text;
495 /* Read an XML target description from FILENAME. Parse it, and return
496 the parsed description. */
498 const struct target_desc *
499 file_read_description_xml (const char *filename)
501 struct target_desc *tdesc;
502 char *tdesc_str;
503 struct cleanup *back_to;
504 char *dirname;
506 tdesc_str = fetch_xml_from_file (filename, NULL);
507 if (tdesc_str == NULL)
509 warning (_("Could not open \"%s\""), filename);
510 return NULL;
513 back_to = make_cleanup (xfree, tdesc_str);
515 dirname = ldirname (filename);
516 if (dirname != NULL)
517 make_cleanup (xfree, dirname);
519 tdesc = tdesc_parse_xml (tdesc_str, fetch_xml_from_file, dirname);
520 do_cleanups (back_to);
522 return tdesc;
525 /* Read a string representation of available features from the target,
526 using TARGET_OBJECT_AVAILABLE_FEATURES. The returned string is
527 malloc allocated and NUL-terminated. NAME should be a non-NULL
528 string identifying the XML document we want; the top level document
529 is "target.xml". Other calls may be performed for the DTD or
530 for <xi:include>. */
532 static char *
533 fetch_available_features_from_target (const char *name, void *baton_)
535 struct target_ops *ops = baton_;
537 /* Read this object as a string. This ensures that a NUL
538 terminator is added. */
539 return target_read_stralloc (ops,
540 TARGET_OBJECT_AVAILABLE_FEATURES,
541 name);
545 /* Read an XML target description using OPS. Parse it, and return the
546 parsed description. */
548 const struct target_desc *
549 target_read_description_xml (struct target_ops *ops)
551 struct target_desc *tdesc;
552 char *tdesc_str;
553 struct cleanup *back_to;
555 tdesc_str = fetch_available_features_from_target ("target.xml", ops);
556 if (tdesc_str == NULL)
557 return NULL;
559 back_to = make_cleanup (xfree, tdesc_str);
560 tdesc = tdesc_parse_xml (tdesc_str,
561 fetch_available_features_from_target,
562 ops);
563 do_cleanups (back_to);
565 return tdesc;