aboutsummaryrefslogtreecommitdiff
path: root/gdb/features/traceframe-info.dtd
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2011-02-14 11:19:26 +0000
committerPedro Alves <palves@redhat.com>2011-02-14 11:19:26 +0000
commit4d1f5c790bbbc9c638b130fca24a9483c700e8d9 (patch)
tree710dfd0aa7799865856ae59c6aa9c6123246a90b /gdb/features/traceframe-info.dtd
parentb3b9301ef4f284b2f2f3dd276cf63600507fe47a (diff)
downloadfsf-binutils-gdb-4d1f5c790bbbc9c638b130fca24a9483c700e8d9.zip
fsf-binutils-gdb-4d1f5c790bbbc9c638b130fca24a9483c700e8d9.tar.gz
fsf-binutils-gdb-4d1f5c790bbbc9c638b130fca24a9483c700e8d9.tar.bz2
2011-02-14 Pedro Alves <pedro@codesourcery.com>
gdb/ * target.h (struct traceframe_info): Forward declare. (enum target_object): Add TARGET_OBJECT_TRACEFRAME_INFO. (struct target_ops) <to_traceframe_info>: New field. (target_traceframe_info): New. * target.c (update_current_target): Inherit and default to_traceframe_info. * remote.c (PACKET_qXfer_traceframe_info): New. (remote_protocol_features): Register qXfer:traceframe-info:read. (remote_xfer_partial): Handle TARGET_OBJECT_TRACEFRAME_INFO. (remote_traceframe_info): New. (init_remote_ops): Install it. (_initialize_remote): Install "set/show remote traceframe-info" commands. * tracepoint.h (parse_traceframe_info): Declare. * tracepoint.c (struct mem_range): New. (mem_range_s): New typedef. (struct traceframe_info): New. (traceframe_info): New global. (free_traceframe_info): New function. (clear_traceframe_info): New function. (start_tracing, tfind_1, set_traceframe_number): Clear traceframe info. (build_traceframe_info): New function. (tfile_traceframe_info): New function. (init_tfile_ops): Install tfile_traceframe_info. (traceframe_info_start_memory, free_result): New functions. (memory_attributes, traceframe_info_elements): New globals. (parse_traceframe_info, get_traceframe_info): New functions. * features/traceframe-info.dtd: New file. * Makefile.in (XMLFILES): Add traceframe-info.dtd. gdb/gdbserver/ * server.c (handle_qxfer_traceframe_info): New. (qxfer_packets): Register "traceframe-info". (handle_query): Report support for qXfer:traceframe-info:read+. * tracepoint.c (match_blocktype): New. (traceframe_find_block_type): Rename to ... (traceframe_walk_blocks): ... this. Add callback filter argument, and use it. (traceframe_find_block_type): New, reimplemented on top of traceframe_walk_blocks. (build_traceframe_info_xml): New. (traceframe_read_info): New. * server.h (traceframe_read_info): Declare. gdb/doc/ * gdb.texinfo (Remote Configuration): Mention set/show remote traceframe-info. (Tools/Packages Optional for Building GDB): Mention that expat is used for traceframe info. (Remote Protocol) <Menu>: Add "Traceframe Info Format". (General Query Packets) <qSupported>: Describe the qXfer:traceframe-info:read feature. (qXfer::read): Describe qXfer:traceframe-info:read. (Traceframe Info Format): New section.
Diffstat (limited to 'gdb/features/traceframe-info.dtd')
-rw-r--r--gdb/features/traceframe-info.dtd13
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/features/traceframe-info.dtd b/gdb/features/traceframe-info.dtd
new file mode 100644
index 0000000..327edae
--- /dev/null
+++ b/gdb/features/traceframe-info.dtd
@@ -0,0 +1,13 @@
+<!-- Copyright (C) 2010, 2011 Free Software Foundation, Inc.
+
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved. -->
+
+<!-- traceframe-info: Root element with versioning -->
+<!ELEMENT traceframe-info (memory)* >
+<!ATTLIST traceframe-info version CDATA #FIXED "1.0">
+
+<!ELEMENT memory EMPTY>
+<!ATTLIST memory start CDATA #REQUIRED
+ length CDATA #REQUIRED>