1 /* Trace file TFILE format support in GDB.
3 Copyright (C) 1997-2017 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "tracefile.h"
22 #include "readline/tilde.h"
23 #include "filestuff.h"
24 #include "rsp-low.h" /* bin2hex */
27 #include "gdbthread.h"
28 #include "exec.h" /* exec_bfd */
29 #include "completer.h"
30 #include "filenames.h"
32 #include "xml-tdesc.h"
33 #include "target-descriptions.h"
41 /* TFILE trace writer. */
43 struct tfile_trace_file_writer
45 struct trace_file_writer base;
47 /* File pointer to tfile trace file. */
49 /* Path name of the tfile trace file. */
53 /* This is the implementation of trace_file_write_ops method
54 target_save. We just call the generic target
55 target_save_trace_data to do target-side saving. */
58 tfile_target_save (struct trace_file_writer *self,
61 int err = target_save_trace_data (filename);
66 /* This is the implementation of trace_file_write_ops method
70 tfile_dtor (struct trace_file_writer *self)
72 struct tfile_trace_file_writer *writer
73 = (struct tfile_trace_file_writer *) self;
75 xfree (writer->pathname);
77 if (writer->fp != NULL)
81 /* This is the implementation of trace_file_write_ops method
82 start. It creates the trace file FILENAME and registers some
86 tfile_start (struct trace_file_writer *self, const char *filename)
88 struct tfile_trace_file_writer *writer
89 = (struct tfile_trace_file_writer *) self;
91 writer->pathname = tilde_expand (filename);
92 writer->fp = gdb_fopen_cloexec (writer->pathname, "wb").release ();
93 if (writer->fp == NULL)
94 error (_("Unable to open file '%s' for saving trace data (%s)"),
95 writer->pathname, safe_strerror (errno));
98 /* This is the implementation of trace_file_write_ops method
99 write_header. Write the TFILE header. */
102 tfile_write_header (struct trace_file_writer *self)
104 struct tfile_trace_file_writer *writer
105 = (struct tfile_trace_file_writer *) self;
108 /* Write a file header, with a high-bit-set char to indicate a
109 binary file, plus a hint as what this file is, and a version
110 number in case of future needs. */
111 written = fwrite ("\x7fTRACE0\n", 8, 1, writer->fp);
113 perror_with_name (writer->pathname);
116 /* This is the implementation of trace_file_write_ops method
117 write_regblock_type. Write the size of register block. */
120 tfile_write_regblock_type (struct trace_file_writer *self, int size)
122 struct tfile_trace_file_writer *writer
123 = (struct tfile_trace_file_writer *) self;
125 fprintf (writer->fp, "R %x\n", size);
128 /* This is the implementation of trace_file_write_ops method
132 tfile_write_status (struct trace_file_writer *self,
133 struct trace_status *ts)
135 struct tfile_trace_file_writer *writer
136 = (struct tfile_trace_file_writer *) self;
138 fprintf (writer->fp, "status %c;%s",
139 (ts->running ? '1' : '0'), stop_reason_names[ts->stop_reason]);
140 if (ts->stop_reason == tracepoint_error
141 || ts->stop_reason == trace_stop_command)
143 char *buf = (char *) alloca (strlen (ts->stop_desc) * 2 + 1);
145 bin2hex ((gdb_byte *) ts->stop_desc, buf, strlen (ts->stop_desc));
146 fprintf (writer->fp, ":%s", buf);
148 fprintf (writer->fp, ":%x", ts->stopping_tracepoint);
149 if (ts->traceframe_count >= 0)
150 fprintf (writer->fp, ";tframes:%x", ts->traceframe_count);
151 if (ts->traceframes_created >= 0)
152 fprintf (writer->fp, ";tcreated:%x", ts->traceframes_created);
153 if (ts->buffer_free >= 0)
154 fprintf (writer->fp, ";tfree:%x", ts->buffer_free);
155 if (ts->buffer_size >= 0)
156 fprintf (writer->fp, ";tsize:%x", ts->buffer_size);
157 if (ts->disconnected_tracing)
158 fprintf (writer->fp, ";disconn:%x", ts->disconnected_tracing);
159 if (ts->circular_buffer)
160 fprintf (writer->fp, ";circular:%x", ts->circular_buffer);
163 fprintf (writer->fp, ";starttime:%s",
164 phex_nz (ts->start_time, sizeof (ts->start_time)));
168 fprintf (writer->fp, ";stoptime:%s",
169 phex_nz (ts->stop_time, sizeof (ts->stop_time)));
171 if (ts->notes != NULL)
173 char *buf = (char *) alloca (strlen (ts->notes) * 2 + 1);
175 bin2hex ((gdb_byte *) ts->notes, buf, strlen (ts->notes));
176 fprintf (writer->fp, ";notes:%s", buf);
178 if (ts->user_name != NULL)
180 char *buf = (char *) alloca (strlen (ts->user_name) * 2 + 1);
182 bin2hex ((gdb_byte *) ts->user_name, buf, strlen (ts->user_name));
183 fprintf (writer->fp, ";username:%s", buf);
185 fprintf (writer->fp, "\n");
188 /* This is the implementation of trace_file_write_ops method
189 write_uploaded_tsv. */
192 tfile_write_uploaded_tsv (struct trace_file_writer *self,
193 struct uploaded_tsv *utsv)
196 struct tfile_trace_file_writer *writer
197 = (struct tfile_trace_file_writer *) self;
201 buf = (char *) xmalloc (strlen (utsv->name) * 2 + 1);
202 bin2hex ((gdb_byte *) (utsv->name), buf, strlen (utsv->name));
205 fprintf (writer->fp, "tsv %x:%s:%x:%s\n",
206 utsv->number, phex_nz (utsv->initial_value, 8),
207 utsv->builtin, buf != NULL ? buf : "");
213 #define MAX_TRACE_UPLOAD 2000
215 /* This is the implementation of trace_file_write_ops method
216 write_uploaded_tp. */
219 tfile_write_uploaded_tp (struct trace_file_writer *self,
220 struct uploaded_tp *utp)
222 struct tfile_trace_file_writer *writer
223 = (struct tfile_trace_file_writer *) self;
226 char buf[MAX_TRACE_UPLOAD];
228 fprintf (writer->fp, "tp T%x:%s:%c:%x:%x",
229 utp->number, phex_nz (utp->addr, sizeof (utp->addr)),
230 (utp->enabled ? 'E' : 'D'), utp->step, utp->pass);
231 if (utp->type == bp_fast_tracepoint)
232 fprintf (writer->fp, ":F%x", utp->orig_size);
235 ":X%x,%s", (unsigned int) strlen (utp->cond) / 2,
237 fprintf (writer->fp, "\n");
238 for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a)
239 fprintf (writer->fp, "tp A%x:%s:%s\n",
240 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
241 for (a = 0; VEC_iterate (char_ptr, utp->step_actions, a, act); ++a)
242 fprintf (writer->fp, "tp S%x:%s:%s\n",
243 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
246 encode_source_string (utp->number, utp->addr,
247 "at", utp->at_string, buf, MAX_TRACE_UPLOAD);
248 fprintf (writer->fp, "tp Z%s\n", buf);
250 if (utp->cond_string)
252 encode_source_string (utp->number, utp->addr,
253 "cond", utp->cond_string,
254 buf, MAX_TRACE_UPLOAD);
255 fprintf (writer->fp, "tp Z%s\n", buf);
257 for (a = 0; VEC_iterate (char_ptr, utp->cmd_strings, a, act); ++a)
259 encode_source_string (utp->number, utp->addr, "cmd", act,
260 buf, MAX_TRACE_UPLOAD);
261 fprintf (writer->fp, "tp Z%s\n", buf);
263 fprintf (writer->fp, "tp V%x:%s:%x:%s\n",
264 utp->number, phex_nz (utp->addr, sizeof (utp->addr)),
266 phex_nz (utp->traceframe_usage,
267 sizeof (utp->traceframe_usage)));
270 /* This is the implementation of trace_file_write_ops method
274 tfile_write_tdesc (struct trace_file_writer *self)
276 struct tfile_trace_file_writer *writer
277 = (struct tfile_trace_file_writer *) self;
279 gdb::optional<std::string> tdesc
280 = target_fetch_description_xml (¤t_target);
285 const char *ptr = tdesc->c_str ();
287 /* Write tdesc line by line, prefixing each line with "tdesc ". */
290 const char *next = strchr (ptr, '\n');
293 fprintf (writer->fp, "tdesc %.*s\n", (int) (next - ptr), ptr);
297 else if (*ptr != '\0')
299 /* Last line, doesn't have a newline. */
300 fprintf (writer->fp, "tdesc %s\n", ptr);
306 /* This is the implementation of trace_file_write_ops method
307 write_definition_end. */
310 tfile_write_definition_end (struct trace_file_writer *self)
312 struct tfile_trace_file_writer *writer
313 = (struct tfile_trace_file_writer *) self;
315 fprintf (writer->fp, "\n");
318 /* This is the implementation of trace_file_write_ops method
322 tfile_write_raw_data (struct trace_file_writer *self, gdb_byte *buf,
325 struct tfile_trace_file_writer *writer
326 = (struct tfile_trace_file_writer *) self;
328 if (fwrite (buf, len, 1, writer->fp) < 1)
329 perror_with_name (writer->pathname);
332 /* This is the implementation of trace_file_write_ops method
336 tfile_end (struct trace_file_writer *self)
338 struct tfile_trace_file_writer *writer
339 = (struct tfile_trace_file_writer *) self;
342 /* Mark the end of trace data. */
343 if (fwrite (&gotten, 4, 1, writer->fp) < 1)
344 perror_with_name (writer->pathname);
347 /* Operations to write trace buffers into TFILE format. */
349 static const struct trace_file_write_ops tfile_write_ops =
355 tfile_write_regblock_type,
357 tfile_write_uploaded_tsv,
358 tfile_write_uploaded_tp,
360 tfile_write_definition_end,
361 tfile_write_raw_data,
366 /* Return a trace writer for TFILE format. */
368 struct trace_file_writer *
369 tfile_trace_file_writer_new (void)
371 struct tfile_trace_file_writer *writer
372 = XNEW (struct tfile_trace_file_writer);
374 writer->base.ops = &tfile_write_ops;
376 writer->pathname = NULL;
378 return (struct trace_file_writer *) writer;
381 /* target tfile command */
383 static struct target_ops tfile_ops;
385 /* Fill in tfile_ops with its defined operations and properties. */
387 #define TRACE_HEADER_SIZE 8
389 #define TFILE_PID (1)
391 static char *trace_filename;
392 static int trace_fd = -1;
393 static off_t trace_frames_offset;
394 static off_t cur_offset;
395 static int cur_data_size;
396 int trace_regblock_size;
397 static struct buffer trace_tdesc;
399 static void tfile_append_tdesc_line (const char *line);
400 static void tfile_interp_line (char *line,
401 struct uploaded_tp **utpp,
402 struct uploaded_tsv **utsvp);
404 /* Read SIZE bytes into READBUF from the trace frame, starting at
405 TRACE_FD's current position. Note that this call `read'
406 underneath, hence it advances the file's seek position. Throws an
407 error if the `read' syscall fails, or less than SIZE bytes are
411 tfile_read (gdb_byte *readbuf, int size)
415 gotten = read (trace_fd, readbuf, size);
417 perror_with_name (trace_filename);
418 else if (gotten < size)
419 error (_("Premature end of file while reading trace file"));
423 tfile_open (const char *arg, int from_tty)
427 char header[TRACE_HEADER_SIZE];
428 char linebuf[1000]; /* Should be max remote packet size or so. */
431 struct trace_status *ts;
432 struct uploaded_tp *uploaded_tps = NULL;
433 struct uploaded_tsv *uploaded_tsvs = NULL;
435 target_preopen (from_tty);
437 error (_("No trace file specified."));
439 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (arg));
440 if (!IS_ABSOLUTE_PATH (filename.get ()))
441 filename.reset (concat (current_directory, "/", filename.get (),
444 flags = O_BINARY | O_LARGEFILE;
446 scratch_chan = gdb_open_cloexec (filename.get (), flags, 0);
447 if (scratch_chan < 0)
448 perror_with_name (filename.get ());
450 /* Looks semi-reasonable. Toss the old trace file and work on the new. */
452 unpush_target (&tfile_ops);
454 trace_filename = filename.release ();
455 trace_fd = scratch_chan;
457 /* Make sure this is clear. */
458 buffer_free (&trace_tdesc);
461 /* Read the file header and test for validity. */
462 tfile_read ((gdb_byte *) &header, TRACE_HEADER_SIZE);
464 bytes += TRACE_HEADER_SIZE;
465 if (!(header[0] == 0x7f
466 && (startswith (header + 1, "TRACE0\n"))))
467 error (_("File is not a valid trace file."));
469 push_target (&tfile_ops);
471 trace_regblock_size = 0;
472 ts = current_trace_status ();
473 /* We know we're working with a file. Record its name. */
474 ts->filename = trace_filename;
475 /* Set defaults in case there is no status line. */
476 ts->running_known = 0;
477 ts->stop_reason = trace_stop_reason_unknown;
478 ts->traceframe_count = -1;
480 ts->disconnected_tracing = 0;
481 ts->circular_buffer = 0;
485 /* Read through a section of newline-terminated lines that
486 define things like tracepoints. */
490 tfile_read (&byte, 1);
495 /* Empty line marks end of the definition section. */
500 tfile_interp_line (linebuf, &uploaded_tps, &uploaded_tsvs);
505 error (_("Excessively long lines in trace file"));
508 /* By now, tdesc lines have been read from tfile - let's parse them. */
509 target_find_description ();
511 /* Record the starting offset of the binary trace data. */
512 trace_frames_offset = bytes;
514 /* If we don't have a blocksize, we can't interpret the
516 if (trace_regblock_size == 0)
517 error (_("No register block size recorded in trace file"));
519 CATCH (ex, RETURN_MASK_ALL)
521 /* Remove the partially set up target. */
522 unpush_target (&tfile_ops);
523 throw_exception (ex);
527 inferior_appeared (current_inferior (), TFILE_PID);
528 inferior_ptid = pid_to_ptid (TFILE_PID);
529 add_thread_silent (inferior_ptid);
531 if (ts->traceframe_count <= 0)
532 warning (_("No traceframes present in this file."));
534 /* Add the file's tracepoints and variables into the current mix. */
536 /* Get trace state variables first, they may be checked when parsing
537 uploaded commands. */
538 merge_uploaded_trace_state_variables (&uploaded_tsvs);
540 merge_uploaded_tracepoints (&uploaded_tps);
542 post_create_inferior (&tfile_ops, from_tty);
545 /* Interpret the given line from the definitions part of the trace
549 tfile_interp_line (char *line, struct uploaded_tp **utpp,
550 struct uploaded_tsv **utsvp)
554 if (startswith (p, "R "))
557 trace_regblock_size = strtol (p, &p, 16);
559 else if (startswith (p, "status "))
561 p += strlen ("status ");
562 parse_trace_status (p, current_trace_status ());
564 else if (startswith (p, "tp "))
567 parse_tracepoint_definition (p, utpp);
569 else if (startswith (p, "tsv "))
571 p += strlen ("tsv ");
572 parse_tsv_definition (p, utsvp);
574 else if (startswith (p, "tdesc "))
576 p += strlen ("tdesc ");
577 tfile_append_tdesc_line (p);
580 warning (_("Ignoring trace file definition \"%s\""), line);
583 /* Close the trace file and generally clean up. */
586 tfile_close (struct target_ops *self)
593 pid = ptid_get_pid (inferior_ptid);
594 inferior_ptid = null_ptid; /* Avoid confusion from thread stuff. */
595 exit_inferior_silent (pid);
599 xfree (trace_filename);
600 trace_filename = NULL;
601 buffer_free (&trace_tdesc);
603 trace_reset_local_state ();
607 tfile_files_info (struct target_ops *t)
609 printf_filtered ("\t`%s'\n", trace_filename);
613 tfile_get_tracepoint_status (struct target_ops *self,
614 struct breakpoint *tp, struct uploaded_tp *utp)
616 /* Other bits of trace status were collected as part of opening the
617 trace files, so nothing to do here. */
620 /* Given the position of a traceframe in the file, figure out what
621 address the frame was collected at. This would normally be the
622 value of a collected PC register, but if not available, we
626 tfile_get_traceframe_address (off_t tframe_offset)
630 struct tracepoint *tp;
631 off_t saved_offset = cur_offset;
633 /* FIXME dig pc out of collected registers. */
635 /* Fall back to using tracepoint address. */
636 lseek (trace_fd, tframe_offset, SEEK_SET);
637 tfile_read ((gdb_byte *) &tpnum, 2);
638 tpnum = (short) extract_signed_integer ((gdb_byte *) &tpnum, 2,
640 (target_gdbarch ()));
642 tp = get_tracepoint_by_number_on_target (tpnum);
643 /* FIXME this is a poor heuristic if multiple locations. */
645 addr = tp->loc->address;
647 /* Restore our seek position. */
648 cur_offset = saved_offset;
649 lseek (trace_fd, cur_offset, SEEK_SET);
653 /* Given a type of search and some parameters, scan the collection of
654 traceframes in the file looking for a match. When found, return
655 both the traceframe and tracepoint number, otherwise -1 for
659 tfile_trace_find (struct target_ops *self, enum trace_find_type type, int num,
660 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp)
663 int tfnum = 0, found = 0;
664 unsigned int data_size;
665 struct tracepoint *tp;
666 off_t offset, tframe_offset;
676 lseek (trace_fd, trace_frames_offset, SEEK_SET);
677 offset = trace_frames_offset;
680 tframe_offset = offset;
681 tfile_read ((gdb_byte *) &tpnum, 2);
682 tpnum = (short) extract_signed_integer ((gdb_byte *) &tpnum, 2,
684 (target_gdbarch ()));
688 tfile_read ((gdb_byte *) &data_size, 4);
689 data_size = (unsigned int) extract_unsigned_integer
690 ((gdb_byte *) &data_size, 4,
691 gdbarch_byte_order (target_gdbarch ()));
694 if (type == tfind_number)
696 /* Looking for a specific trace frame. */
702 /* Start from the _next_ trace frame. */
703 if (tfnum > get_traceframe_number ())
708 tfaddr = tfile_get_traceframe_address (tframe_offset);
713 tp = get_tracepoint (num);
714 if (tp && tpnum == tp->number_on_target)
718 tfaddr = tfile_get_traceframe_address (tframe_offset);
719 if (addr1 <= tfaddr && tfaddr <= addr2)
723 tfaddr = tfile_get_traceframe_address (tframe_offset);
724 if (!(addr1 <= tfaddr && tfaddr <= addr2))
728 internal_error (__FILE__, __LINE__, _("unknown tfind type"));
738 cur_data_size = data_size;
742 /* Skip past the traceframe's data. */
743 lseek (trace_fd, data_size, SEEK_CUR);
745 /* Update our own count of traceframes. */
748 /* Did not find what we were looking for. */
754 /* Prototype of the callback passed to tframe_walk_blocks. */
755 typedef int (*walk_blocks_callback_func) (char blocktype, void *data);
757 /* Callback for traceframe_walk_blocks, used to find a given block
758 type in a traceframe. */
761 match_blocktype (char blocktype, void *data)
763 char *wantedp = (char *) data;
765 if (*wantedp == blocktype)
771 /* Walk over all traceframe block starting at POS offset from
772 CUR_OFFSET, and call CALLBACK for each block found, passing in DATA
773 unmodified. If CALLBACK returns true, this returns the position in
774 the traceframe where the block is found, relative to the start of
775 the traceframe (cur_offset). Returns -1 if no callback call
776 returned true, indicating that all blocks have been walked. */
779 traceframe_walk_blocks (walk_blocks_callback_func callback,
782 /* Iterate through a traceframe's blocks, looking for a block of the
785 lseek (trace_fd, cur_offset + pos, SEEK_SET);
786 while (pos < cur_data_size)
791 tfile_read ((gdb_byte *) &block_type, 1);
795 if ((*callback) (block_type, data))
801 lseek (trace_fd, cur_offset + pos + trace_regblock_size, SEEK_SET);
802 pos += trace_regblock_size;
805 lseek (trace_fd, cur_offset + pos + 8, SEEK_SET);
806 tfile_read ((gdb_byte *) &mlen, 2);
807 mlen = (unsigned short)
808 extract_unsigned_integer ((gdb_byte *) &mlen, 2,
810 (target_gdbarch ()));
811 lseek (trace_fd, mlen, SEEK_CUR);
812 pos += (8 + 2 + mlen);
815 lseek (trace_fd, cur_offset + pos + 4 + 8, SEEK_SET);
819 error (_("Unknown block type '%c' (0x%x) in trace frame"),
820 block_type, block_type);
828 /* Convenience wrapper around traceframe_walk_blocks. Looks for the
829 position offset of a block of type TYPE_WANTED in the current trace
830 frame, starting at POS. Returns -1 if no such block was found. */
833 traceframe_find_block_type (char type_wanted, int pos)
835 return traceframe_walk_blocks (match_blocktype, pos, &type_wanted);
838 /* Look for a block of saved registers in the traceframe, and get the
839 requested register from it. */
842 tfile_fetch_registers (struct target_ops *ops,
843 struct regcache *regcache, int regno)
845 struct gdbarch *gdbarch = regcache->arch ();
846 int offset, regn, regsize, dummy;
848 /* An uninitialized reg size says we're not going to be
849 successful at getting register blocks. */
850 if (!trace_regblock_size)
853 if (traceframe_find_block_type ('R', 0) >= 0)
855 gdb_byte *regs = (gdb_byte *) alloca (trace_regblock_size);
857 tfile_read (regs, trace_regblock_size);
859 for (regn = 0; regn < gdbarch_num_regs (gdbarch); regn++)
861 if (!remote_register_number_and_offset (regcache->arch (),
862 regn, &dummy, &offset))
865 regsize = register_size (gdbarch, regn);
866 /* Make sure we stay within block bounds. */
867 if (offset + regsize > trace_regblock_size)
869 if (regcache_register_status (regcache, regn) == REG_UNKNOWN)
873 regcache_raw_supply (regcache, regno, regs + offset);
876 else if (regno == -1)
878 regcache_raw_supply (regcache, regn, regs + offset);
884 tracefile_fetch_registers (regcache, regno);
887 static enum target_xfer_status
888 tfile_xfer_partial_features (struct target_ops *ops, const char *annex,
889 gdb_byte *readbuf, const gdb_byte *writebuf,
890 ULONGEST offset, ULONGEST len,
891 ULONGEST *xfered_len)
893 if (strcmp (annex, "target.xml"))
894 return TARGET_XFER_E_IO;
897 error (_("tfile_xfer_partial: tdesc is read-only"));
899 if (trace_tdesc.used_size == 0)
900 return TARGET_XFER_E_IO;
902 if (offset >= trace_tdesc.used_size)
903 return TARGET_XFER_EOF;
905 if (len > trace_tdesc.used_size - offset)
906 len = trace_tdesc.used_size - offset;
908 memcpy (readbuf, trace_tdesc.buffer + offset, len);
911 return TARGET_XFER_OK;
914 static enum target_xfer_status
915 tfile_xfer_partial (struct target_ops *ops, enum target_object object,
916 const char *annex, gdb_byte *readbuf,
917 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
918 ULONGEST *xfered_len)
920 /* We're only doing regular memory and tdesc for now. */
921 if (object == TARGET_OBJECT_AVAILABLE_FEATURES)
922 return tfile_xfer_partial_features (ops, annex, readbuf, writebuf,
923 offset, len, xfered_len);
924 if (object != TARGET_OBJECT_MEMORY)
925 return TARGET_XFER_E_IO;
928 error (_("tfile_xfer_partial: trace file is read-only"));
930 if (get_traceframe_number () != -1)
933 enum target_xfer_status res;
934 /* Records the lowest available address of all blocks that
935 intersects the requested range. */
936 ULONGEST low_addr_available = 0;
938 /* Iterate through the traceframe's blocks, looking for
940 while ((pos = traceframe_find_block_type ('M', pos)) >= 0)
944 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
946 tfile_read ((gdb_byte *) &maddr, 8);
947 maddr = extract_unsigned_integer ((gdb_byte *) &maddr, 8,
949 tfile_read ((gdb_byte *) &mlen, 2);
950 mlen = (unsigned short)
951 extract_unsigned_integer ((gdb_byte *) &mlen, 2, byte_order);
953 /* If the block includes the first part of the desired
954 range, return as much it has; GDB will re-request the
955 remainder, which might be in a different block of this
957 if (maddr <= offset && offset < (maddr + mlen))
959 amt = (maddr + mlen) - offset;
964 lseek (trace_fd, offset - maddr, SEEK_CUR);
965 tfile_read (readbuf, amt);
967 return TARGET_XFER_OK;
970 if (offset < maddr && maddr < (offset + len))
971 if (low_addr_available == 0 || low_addr_available > maddr)
972 low_addr_available = maddr;
974 /* Skip over this block. */
975 pos += (8 + 2 + mlen);
978 /* Requested memory is unavailable in the context of traceframes,
979 and this address falls within a read-only section, fallback
980 to reading from executable, up to LOW_ADDR_AVAILABLE. */
981 if (offset < low_addr_available)
982 len = std::min (len, low_addr_available - offset);
983 res = exec_read_partial_read_only (readbuf, offset, len, xfered_len);
985 if (res == TARGET_XFER_OK)
986 return TARGET_XFER_OK;
989 /* No use trying further, we know some memory starting
990 at MEMADDR isn't available. */
992 return TARGET_XFER_UNAVAILABLE;
997 /* Fallback to reading from read-only sections. */
998 return section_table_read_available_memory (readbuf, offset, len,
1003 /* Iterate through the blocks of a trace frame, looking for a 'V'
1004 block with a matching tsv number. */
1007 tfile_get_trace_state_variable_value (struct target_ops *self,
1008 int tsvnum, LONGEST *val)
1013 /* Iterate over blocks in current frame and find the last 'V'
1014 block in which tsv number is TSVNUM. In one trace frame, there
1015 may be multiple 'V' blocks created for a given trace variable,
1016 and the last matched 'V' block contains the updated value. */
1018 while ((pos = traceframe_find_block_type ('V', pos)) >= 0)
1022 tfile_read ((gdb_byte *) &vnum, 4);
1023 vnum = (int) extract_signed_integer ((gdb_byte *) &vnum, 4,
1025 (target_gdbarch ()));
1028 tfile_read ((gdb_byte *) val, 8);
1029 *val = extract_signed_integer ((gdb_byte *) val, 8,
1031 (target_gdbarch ()));
1040 /* Callback for traceframe_walk_blocks. Builds a traceframe_info
1041 object for the tfile target's current traceframe. */
1044 build_traceframe_info (char blocktype, void *data)
1046 struct traceframe_info *info = (struct traceframe_info *) data;
1053 unsigned short mlen;
1055 tfile_read ((gdb_byte *) &maddr, 8);
1056 maddr = extract_unsigned_integer ((gdb_byte *) &maddr, 8,
1058 (target_gdbarch ()));
1059 tfile_read ((gdb_byte *) &mlen, 2);
1060 mlen = (unsigned short)
1061 extract_unsigned_integer ((gdb_byte *) &mlen,
1062 2, gdbarch_byte_order
1063 (target_gdbarch ()));
1065 info->memory.emplace_back (maddr, mlen);
1072 tfile_read ((gdb_byte *) &vnum, 4);
1073 info->tvars.push_back (vnum);
1081 warning (_("Unhandled trace block type (%d) '%c ' "
1082 "while building trace frame info."),
1083 blocktype, blocktype);
1090 static traceframe_info_up
1091 tfile_traceframe_info (struct target_ops *self)
1093 traceframe_info_up info (new traceframe_info);
1095 traceframe_walk_blocks (build_traceframe_info, 0, info.get ());
1100 /* Handles tdesc lines from tfile by appending the payload to
1101 a global trace_tdesc variable. */
1104 tfile_append_tdesc_line (const char *line)
1106 buffer_grow_str (&trace_tdesc, line);
1107 buffer_grow_str (&trace_tdesc, "\n");
1111 init_tfile_ops (void)
1113 init_tracefile_ops (&tfile_ops);
1115 tfile_ops.to_shortname = "tfile";
1116 tfile_ops.to_longname = "Local trace dump file";
1118 = "Use a trace file as a target. Specify the filename of the trace file.";
1119 tfile_ops.to_open = tfile_open;
1120 tfile_ops.to_close = tfile_close;
1121 tfile_ops.to_fetch_registers = tfile_fetch_registers;
1122 tfile_ops.to_xfer_partial = tfile_xfer_partial;
1123 tfile_ops.to_files_info = tfile_files_info;
1124 tfile_ops.to_get_tracepoint_status = tfile_get_tracepoint_status;
1125 tfile_ops.to_trace_find = tfile_trace_find;
1126 tfile_ops.to_get_trace_state_variable_value
1127 = tfile_get_trace_state_variable_value;
1128 tfile_ops.to_traceframe_info = tfile_traceframe_info;
1132 _initialize_tracefile_tfile (void)
1136 add_target_with_completer (&tfile_ops, filename_completer);