diff options
author | Markus Metzger <mmetzger@sourceware.org> | 2013-03-11 08:28:58 +0000 |
---|---|---|
committer | Markus Metzger <mmetzger@sourceware.org> | 2013-03-11 08:28:58 +0000 |
commit | c12a29171fe3379095cfc896e0f8ddfb18c614c3 (patch) | |
tree | 309b8ca660993ea0fb05996e446d84e315c65182 /gdb/Makefile.in | |
parent | 3e3aea48e21e35069ec893c4b5d49de494f8329c (diff) | |
download | gdb-c12a29171fe3379095cfc896e0f8ddfb18c614c3.zip gdb-c12a29171fe3379095cfc896e0f8ddfb18c614c3.tar.gz gdb-c12a29171fe3379095cfc896e0f8ddfb18c614c3.tar.bz2 |
Define the xml document style for transferring branch trace data.
Add a function to parse a btrace xml document into a vector of branch trace
blocks.
gdb/
* features/btrace.dtd: New file.
* Makefile.in (XMLFILES): Add btrace.dtd.
* btrace.h (parse_xml_btrace): New declaration.
* btrace.c: Include xml-support.h.
(parse_xml_btrace): New function.
(parse_xml_btrace_block): New function.
(block_attributes): New struct.
(btrace_attributes): New struct.
(btrace_children): New struct.
(btrace_elements): New struct.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index de48caa..e11e3d1 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -497,7 +497,8 @@ RUNTESTFLAGS= XMLFILES = $(srcdir)/features/gdb-target.dtd $(srcdir)/features/xinclude.dtd \ $(srcdir)/features/library-list.dtd \ $(srcdir)/features/library-list-svr4.dtd $(srcdir)/features/osdata.dtd \ - $(srcdir)/features/threads.dtd $(srcdir)/features/traceframe-info.dtd + $(srcdir)/features/threads.dtd $(srcdir)/features/traceframe-info.dtd \ + $(srcdir)/features/btrace.dtd # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX # interface to the serial port. Hopefully if get ported to OS/2, VMS, |