* Makefile.in (XMLFILES): New.
authorDaniel Jacobowitz <drow@false.org>
Wed, 7 Feb 2007 22:48:06 +0000 (22:48 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 7 Feb 2007 22:48:06 +0000 (22:48 +0000)
commit108546a0ea067d8e5da4d223fb03c6659b153bd0
treee36d290d0b6ae5ab759822bb3fb0d474243a7b2d
parent7bd1c9613d962037a19b474fda5c6ab4cbf38501
* Makefile.in (XMLFILES): New.
(COMMON_OBS): Add xml-builtin.o.
(xml-builtin.c, stamp-xml): New rules.
(xml-tdesc.o): Update.
* features/feature_to_c.sh: New file.
* xml-support.c (MAX_XINCLUDE_DEPTH): Define.
(struct gdb_xml_parser): Add dtd_name and is_xinclude.
(gdb_xml_start_element): Initialize scope after possibly reallocating
scopes.  Move cleanup later.  Handle the XInclude description
specially.
(gdb_xml_end_element): Only parse the body if there is a current element.
Call XML_DefaultCurrent if there is no element.
(gdb_xml_fetch_external_entity, gdb_xml_use_dtd): New.
(struct xinclude_parsing_data, xinclude_start_include)
(xinclude_end_include, xml_xinclude_default)
(xml_xinclude_start_doctype, xml_xinclude_end_doctype)
(xml_xinclude_xml_decl, xml_xinclude_cleanup, xinclude_attributes)
(xinclude_elements, xml_process_xincludes, fetch_xml_builtin): New.
* xml-support.h (xml_fetch_another, xml_process_xincludes)
(fetch_xml_builtin, xml_builtin, gdb_xml_use_dtd): New declarations.
* xml-tdesc.c (tdesc_parse_xml): Add fetcher_baton argument.  Expand
XInclude directives.  Use the compiled in DTD.
(fetch_xml_from_file): Add baton argument.  Treat it as a containing
directory name.  Do not warn here.
(file_read_description_xml): Update call.  Warn here instead.  Pass
a dirname as baton.
(fetch_available_features_from_target): New.
(target_read_description_xml): Use it.
* features/gdb-target.dtd: Add copyright notice.  Use xinclude.dtd
to handle XInclude.
* features/xinclude.dtd: New file.

* gdb.xml/bad-include.xml, gdb.xml/inc-2.xml, gdb.xml/inc-body.xml,
gdb.xml/includes.xml, gdb.xml/tdesc-xinclude.exp: New files.

* gdb.texinfo (Target Description Format): Add section on XInclude.
17 files changed:
gdb/ChangeLog
gdb/Makefile.in
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/features/feature_to_c.sh [new file with mode: 0644]
gdb/features/gdb-target.dtd
gdb/features/xinclude.dtd [new file with mode: 0644]
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.xml/bad-include.xml [new file with mode: 0644]
gdb/testsuite/gdb.xml/inc-2.xml [new file with mode: 0644]
gdb/testsuite/gdb.xml/inc-body.xml [new file with mode: 0644]
gdb/testsuite/gdb.xml/includes.xml [new file with mode: 0644]
gdb/testsuite/gdb.xml/loop.xml [new file with mode: 0644]
gdb/testsuite/gdb.xml/tdesc-xinclude.exp [new file with mode: 0644]
gdb/xml-support.c
gdb/xml-support.h
gdb/xml-tdesc.c
This page took 0.027414 seconds and 4 git commands to generate.