1 /* Branch trace support for GDB, the GNU debugger.
3 Copyright (C) 2013-2016 Free Software Foundation, Inc.
5 Contributed by Intel Corp. <markus.t.metzger@intel.com>
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/>. */
24 #include "gdbthread.h"
31 #include "filenames.h"
32 #include "xml-support.h"
36 #include "cli/cli-utils.h"
41 /* Command lists for btrace maintenance commands. */
42 static struct cmd_list_element *maint_btrace_cmdlist;
43 static struct cmd_list_element *maint_btrace_set_cmdlist;
44 static struct cmd_list_element *maint_btrace_show_cmdlist;
45 static struct cmd_list_element *maint_btrace_pt_set_cmdlist;
46 static struct cmd_list_element *maint_btrace_pt_show_cmdlist;
48 /* Control whether to skip PAD packets when computing the packet history. */
49 static int maint_btrace_pt_skip_pad = 1;
51 static void btrace_add_pc (struct thread_info *tp);
53 /* Print a record debug message. Use do ... while (0) to avoid ambiguities
54 when used in if statements. */
56 #define DEBUG(msg, args...) \
59 if (record_debug != 0) \
60 fprintf_unfiltered (gdb_stdlog, \
61 "[btrace] " msg "\n", ##args); \
65 #define DEBUG_FTRACE(msg, args...) DEBUG ("[ftrace] " msg, ##args)
67 /* Return the function name of a recorded function segment for printing.
68 This function never returns NULL. */
71 ftrace_print_function_name (const struct btrace_function *bfun)
73 struct minimal_symbol *msym;
80 return SYMBOL_PRINT_NAME (sym);
83 return MSYMBOL_PRINT_NAME (msym);
88 /* Return the file name of a recorded function segment for printing.
89 This function never returns NULL. */
92 ftrace_print_filename (const struct btrace_function *bfun)
100 filename = symtab_to_filename_for_display (symbol_symtab (sym));
102 filename = "<unknown>";
107 /* Return a string representation of the address of an instruction.
108 This function never returns NULL. */
111 ftrace_print_insn_addr (const struct btrace_insn *insn)
116 return core_addr_to_string_nz (insn->pc);
119 /* Print an ftrace debug status message. */
122 ftrace_debug (const struct btrace_function *bfun, const char *prefix)
124 const char *fun, *file;
125 unsigned int ibegin, iend;
128 fun = ftrace_print_function_name (bfun);
129 file = ftrace_print_filename (bfun);
132 ibegin = bfun->insn_offset;
133 iend = ibegin + VEC_length (btrace_insn_s, bfun->insn);
135 DEBUG_FTRACE ("%s: fun = %s, file = %s, level = %d, insn = [%u; %u)",
136 prefix, fun, file, level, ibegin, iend);
139 /* Return non-zero if BFUN does not match MFUN and FUN,
140 return zero otherwise. */
143 ftrace_function_switched (const struct btrace_function *bfun,
144 const struct minimal_symbol *mfun,
145 const struct symbol *fun)
147 struct minimal_symbol *msym;
153 /* If the minimal symbol changed, we certainly switched functions. */
154 if (mfun != NULL && msym != NULL
155 && strcmp (MSYMBOL_LINKAGE_NAME (mfun), MSYMBOL_LINKAGE_NAME (msym)) != 0)
158 /* If the symbol changed, we certainly switched functions. */
159 if (fun != NULL && sym != NULL)
161 const char *bfname, *fname;
163 /* Check the function name. */
164 if (strcmp (SYMBOL_LINKAGE_NAME (fun), SYMBOL_LINKAGE_NAME (sym)) != 0)
167 /* Check the location of those functions, as well. */
168 bfname = symtab_to_fullname (symbol_symtab (sym));
169 fname = symtab_to_fullname (symbol_symtab (fun));
170 if (filename_cmp (fname, bfname) != 0)
174 /* If we lost symbol information, we switched functions. */
175 if (!(msym == NULL && sym == NULL) && mfun == NULL && fun == NULL)
178 /* If we gained symbol information, we switched functions. */
179 if (msym == NULL && sym == NULL && !(mfun == NULL && fun == NULL))
185 /* Allocate and initialize a new branch trace function segment.
186 PREV is the chronologically preceding function segment.
187 MFUN and FUN are the symbol information we have for this function. */
189 static struct btrace_function *
190 ftrace_new_function (struct btrace_function *prev,
191 struct minimal_symbol *mfun,
194 struct btrace_function *bfun;
196 bfun = XCNEW (struct btrace_function);
200 bfun->flow.prev = prev;
204 /* Start counting at one. */
206 bfun->insn_offset = 1;
210 gdb_assert (prev->flow.next == NULL);
211 prev->flow.next = bfun;
213 bfun->number = prev->number + 1;
214 bfun->insn_offset = (prev->insn_offset
215 + VEC_length (btrace_insn_s, prev->insn));
216 bfun->level = prev->level;
222 /* Update the UP field of a function segment. */
225 ftrace_update_caller (struct btrace_function *bfun,
226 struct btrace_function *caller,
227 enum btrace_function_flag flags)
229 if (bfun->up != NULL)
230 ftrace_debug (bfun, "updating caller");
235 ftrace_debug (bfun, "set caller");
238 /* Fix up the caller for all segments of a function. */
241 ftrace_fixup_caller (struct btrace_function *bfun,
242 struct btrace_function *caller,
243 enum btrace_function_flag flags)
245 struct btrace_function *prev, *next;
247 ftrace_update_caller (bfun, caller, flags);
249 /* Update all function segments belonging to the same function. */
250 for (prev = bfun->segment.prev; prev != NULL; prev = prev->segment.prev)
251 ftrace_update_caller (prev, caller, flags);
253 for (next = bfun->segment.next; next != NULL; next = next->segment.next)
254 ftrace_update_caller (next, caller, flags);
257 /* Add a new function segment for a call.
258 CALLER is the chronologically preceding function segment.
259 MFUN and FUN are the symbol information we have for this function. */
261 static struct btrace_function *
262 ftrace_new_call (struct btrace_function *caller,
263 struct minimal_symbol *mfun,
266 struct btrace_function *bfun;
268 bfun = ftrace_new_function (caller, mfun, fun);
272 ftrace_debug (bfun, "new call");
277 /* Add a new function segment for a tail call.
278 CALLER is the chronologically preceding function segment.
279 MFUN and FUN are the symbol information we have for this function. */
281 static struct btrace_function *
282 ftrace_new_tailcall (struct btrace_function *caller,
283 struct minimal_symbol *mfun,
286 struct btrace_function *bfun;
288 bfun = ftrace_new_function (caller, mfun, fun);
291 bfun->flags |= BFUN_UP_LINKS_TO_TAILCALL;
293 ftrace_debug (bfun, "new tail call");
298 /* Find the innermost caller in the back trace of BFUN with MFUN/FUN
299 symbol information. */
301 static struct btrace_function *
302 ftrace_find_caller (struct btrace_function *bfun,
303 struct minimal_symbol *mfun,
306 for (; bfun != NULL; bfun = bfun->up)
308 /* Skip functions with incompatible symbol information. */
309 if (ftrace_function_switched (bfun, mfun, fun))
312 /* This is the function segment we're looking for. */
319 /* Find the innermost caller in the back trace of BFUN, skipping all
320 function segments that do not end with a call instruction (e.g.
321 tail calls ending with a jump). */
323 static struct btrace_function *
324 ftrace_find_call (struct btrace_function *bfun)
326 for (; bfun != NULL; bfun = bfun->up)
328 struct btrace_insn *last;
331 if (bfun->errcode != 0)
334 last = VEC_last (btrace_insn_s, bfun->insn);
336 if (last->iclass == BTRACE_INSN_CALL)
343 /* Add a continuation segment for a function into which we return.
344 PREV is the chronologically preceding function segment.
345 MFUN and FUN are the symbol information we have for this function. */
347 static struct btrace_function *
348 ftrace_new_return (struct btrace_function *prev,
349 struct minimal_symbol *mfun,
352 struct btrace_function *bfun, *caller;
354 bfun = ftrace_new_function (prev, mfun, fun);
356 /* It is important to start at PREV's caller. Otherwise, we might find
357 PREV itself, if PREV is a recursive function. */
358 caller = ftrace_find_caller (prev->up, mfun, fun);
361 /* The caller of PREV is the preceding btrace function segment in this
362 function instance. */
363 gdb_assert (caller->segment.next == NULL);
365 caller->segment.next = bfun;
366 bfun->segment.prev = caller;
368 /* Maintain the function level. */
369 bfun->level = caller->level;
371 /* Maintain the call stack. */
372 bfun->up = caller->up;
373 bfun->flags = caller->flags;
375 ftrace_debug (bfun, "new return");
379 /* We did not find a caller. This could mean that something went
380 wrong or that the call is simply not included in the trace. */
382 /* Let's search for some actual call. */
383 caller = ftrace_find_call (prev->up);
386 /* There is no call in PREV's back trace. We assume that the
387 branch trace did not include it. */
389 /* Let's find the topmost call function - this skips tail calls. */
390 while (prev->up != NULL)
393 /* We maintain levels for a series of returns for which we have
395 We start at the preceding function's level in case this has
396 already been a return for which we have not seen the call.
397 We start at level 0 otherwise, to handle tail calls correctly. */
398 bfun->level = min (0, prev->level) - 1;
400 /* Fix up the call stack for PREV. */
401 ftrace_fixup_caller (prev, bfun, BFUN_UP_LINKS_TO_RET);
403 ftrace_debug (bfun, "new return - no caller");
407 /* There is a call in PREV's back trace to which we should have
408 returned. Let's remain at this level. */
409 bfun->level = prev->level;
411 ftrace_debug (bfun, "new return - unknown caller");
418 /* Add a new function segment for a function switch.
419 PREV is the chronologically preceding function segment.
420 MFUN and FUN are the symbol information we have for this function. */
422 static struct btrace_function *
423 ftrace_new_switch (struct btrace_function *prev,
424 struct minimal_symbol *mfun,
427 struct btrace_function *bfun;
429 /* This is an unexplained function switch. The call stack will likely
430 be wrong at this point. */
431 bfun = ftrace_new_function (prev, mfun, fun);
433 ftrace_debug (bfun, "new switch");
438 /* Add a new function segment for a gap in the trace due to a decode error.
439 PREV is the chronologically preceding function segment.
440 ERRCODE is the format-specific error code. */
442 static struct btrace_function *
443 ftrace_new_gap (struct btrace_function *prev, int errcode)
445 struct btrace_function *bfun;
447 /* We hijack prev if it was empty. */
448 if (prev != NULL && prev->errcode == 0
449 && VEC_empty (btrace_insn_s, prev->insn))
452 bfun = ftrace_new_function (prev, NULL, NULL);
454 bfun->errcode = errcode;
456 ftrace_debug (bfun, "new gap");
461 /* Update BFUN with respect to the instruction at PC. This may create new
463 Return the chronologically latest function segment, never NULL. */
465 static struct btrace_function *
466 ftrace_update_function (struct btrace_function *bfun, CORE_ADDR pc)
468 struct bound_minimal_symbol bmfun;
469 struct minimal_symbol *mfun;
471 struct btrace_insn *last;
473 /* Try to determine the function we're in. We use both types of symbols
474 to avoid surprises when we sometimes get a full symbol and sometimes
475 only a minimal symbol. */
476 fun = find_pc_function (pc);
477 bmfun = lookup_minimal_symbol_by_pc (pc);
480 if (fun == NULL && mfun == NULL)
481 DEBUG_FTRACE ("no symbol at %s", core_addr_to_string_nz (pc));
483 /* If we didn't have a function or if we had a gap before, we create one. */
484 if (bfun == NULL || bfun->errcode != 0)
485 return ftrace_new_function (bfun, mfun, fun);
487 /* Check the last instruction, if we have one.
488 We do this check first, since it allows us to fill in the call stack
489 links in addition to the normal flow links. */
491 if (!VEC_empty (btrace_insn_s, bfun->insn))
492 last = VEC_last (btrace_insn_s, bfun->insn);
496 switch (last->iclass)
498 case BTRACE_INSN_RETURN:
502 /* On some systems, _dl_runtime_resolve returns to the resolved
503 function instead of jumping to it. From our perspective,
504 however, this is a tailcall.
505 If we treated it as return, we wouldn't be able to find the
506 resolved function in our stack back trace. Hence, we would
507 lose the current stack back trace and start anew with an empty
508 back trace. When the resolved function returns, we would then
509 create a stack back trace with the same function names but
510 different frame id's. This will confuse stepping. */
511 fname = ftrace_print_function_name (bfun);
512 if (strcmp (fname, "_dl_runtime_resolve") == 0)
513 return ftrace_new_tailcall (bfun, mfun, fun);
515 return ftrace_new_return (bfun, mfun, fun);
518 case BTRACE_INSN_CALL:
519 /* Ignore calls to the next instruction. They are used for PIC. */
520 if (last->pc + last->size == pc)
523 return ftrace_new_call (bfun, mfun, fun);
525 case BTRACE_INSN_JUMP:
529 start = get_pc_function_start (pc);
531 /* If we can't determine the function for PC, we treat a jump at
532 the end of the block as tail call. */
533 if (start == 0 || start == pc)
534 return ftrace_new_tailcall (bfun, mfun, fun);
539 /* Check if we're switching functions for some other reason. */
540 if (ftrace_function_switched (bfun, mfun, fun))
542 DEBUG_FTRACE ("switching from %s in %s at %s",
543 ftrace_print_insn_addr (last),
544 ftrace_print_function_name (bfun),
545 ftrace_print_filename (bfun));
547 return ftrace_new_switch (bfun, mfun, fun);
553 /* Add the instruction at PC to BFUN's instructions. */
556 ftrace_update_insns (struct btrace_function *bfun,
557 const struct btrace_insn *insn)
559 VEC_safe_push (btrace_insn_s, bfun->insn, insn);
561 if (record_debug > 1)
562 ftrace_debug (bfun, "update insn");
565 /* Classify the instruction at PC. */
567 static enum btrace_insn_class
568 ftrace_classify_insn (struct gdbarch *gdbarch, CORE_ADDR pc)
570 enum btrace_insn_class iclass;
572 iclass = BTRACE_INSN_OTHER;
575 if (gdbarch_insn_is_call (gdbarch, pc))
576 iclass = BTRACE_INSN_CALL;
577 else if (gdbarch_insn_is_ret (gdbarch, pc))
578 iclass = BTRACE_INSN_RETURN;
579 else if (gdbarch_insn_is_jump (gdbarch, pc))
580 iclass = BTRACE_INSN_JUMP;
582 CATCH (error, RETURN_MASK_ERROR)
590 /* Compute the function branch trace from BTS trace. */
593 btrace_compute_ftrace_bts (struct thread_info *tp,
594 const struct btrace_data_bts *btrace)
596 struct btrace_thread_info *btinfo;
597 struct btrace_function *begin, *end;
598 struct gdbarch *gdbarch;
599 unsigned int blk, ngaps;
602 gdbarch = target_gdbarch ();
603 btinfo = &tp->btrace;
604 begin = btinfo->begin;
606 ngaps = btinfo->ngaps;
607 level = begin != NULL ? -btinfo->level : INT_MAX;
608 blk = VEC_length (btrace_block_s, btrace->blocks);
612 btrace_block_s *block;
617 block = VEC_index (btrace_block_s, btrace->blocks, blk);
622 struct btrace_insn insn;
625 /* We should hit the end of the block. Warn if we went too far. */
628 /* Indicate the gap in the trace - unless we're at the
632 warning (_("Recorded trace may be corrupted around %s."),
633 core_addr_to_string_nz (pc));
635 end = ftrace_new_gap (end, BDE_BTS_OVERFLOW);
641 end = ftrace_update_function (end, pc);
645 /* Maintain the function level offset.
646 For all but the last block, we do it here. */
648 level = min (level, end->level);
653 size = gdb_insn_length (gdbarch, pc);
655 CATCH (error, RETURN_MASK_ERROR)
662 insn.iclass = ftrace_classify_insn (gdbarch, pc);
665 ftrace_update_insns (end, &insn);
667 /* We're done once we pushed the instruction at the end. */
668 if (block->end == pc)
671 /* We can't continue if we fail to compute the size. */
674 warning (_("Recorded trace may be incomplete around %s."),
675 core_addr_to_string_nz (pc));
677 /* Indicate the gap in the trace. We just added INSN so we're
678 not at the beginning. */
679 end = ftrace_new_gap (end, BDE_BTS_INSN_SIZE);
687 /* Maintain the function level offset.
688 For the last block, we do it here to not consider the last
690 Since the last instruction corresponds to the current instruction
691 and is not really part of the execution history, it shouldn't
694 level = min (level, end->level);
698 btinfo->begin = begin;
700 btinfo->ngaps = ngaps;
702 /* LEVEL is the minimal function level of all btrace function segments.
703 Define the global level offset to -LEVEL so all function levels are
704 normalized to start at zero. */
705 btinfo->level = -level;
708 #if defined (HAVE_LIBIPT)
710 static enum btrace_insn_class
711 pt_reclassify_insn (enum pt_insn_class iclass)
716 return BTRACE_INSN_CALL;
719 return BTRACE_INSN_RETURN;
722 return BTRACE_INSN_JUMP;
725 return BTRACE_INSN_OTHER;
729 /* Return the btrace instruction flags for INSN. */
731 static enum btrace_insn_flag
732 pt_btrace_insn_flags (const struct pt_insn *insn)
734 enum btrace_insn_flag flags = 0;
736 if (insn->speculative)
737 flags |= BTRACE_INSN_FLAG_SPECULATIVE;
742 /* Add function branch trace using DECODER. */
745 ftrace_add_pt (struct pt_insn_decoder *decoder,
746 struct btrace_function **pbegin,
747 struct btrace_function **pend, int *plevel,
750 struct btrace_function *begin, *end, *upd;
752 int errcode, nerrors;
759 struct btrace_insn btinsn;
762 errcode = pt_insn_sync_forward (decoder);
765 if (errcode != -pte_eos)
766 warning (_("Failed to synchronize onto the Intel(R) Processor "
767 "Trace stream: %s."), pt_errstr (pt_errcode (errcode)));
771 memset (&btinsn, 0, sizeof (btinsn));
774 errcode = pt_insn_next (decoder, &insn, sizeof(insn));
778 /* Look for gaps in the trace - unless we're at the beginning. */
781 /* Tracing is disabled and re-enabled each time we enter the
782 kernel. Most times, we continue from the same instruction we
783 stopped before. This is indicated via the RESUMED instruction
784 flag. The ENABLED instruction flag means that we continued
785 from some other instruction. Indicate this as a trace gap. */
787 *pend = end = ftrace_new_gap (end, BDE_PT_DISABLED);
789 /* Indicate trace overflows. */
791 *pend = end = ftrace_new_gap (end, BDE_PT_OVERFLOW);
794 upd = ftrace_update_function (end, insn.ip);
800 *pbegin = begin = upd;
803 /* Maintain the function level offset. */
804 *plevel = min (*plevel, end->level);
806 btinsn.pc = (CORE_ADDR) insn.ip;
807 btinsn.size = (gdb_byte) insn.size;
808 btinsn.iclass = pt_reclassify_insn (insn.iclass);
809 btinsn.flags = pt_btrace_insn_flags (&insn);
811 ftrace_update_insns (end, &btinsn);
814 if (errcode == -pte_eos)
817 /* If the gap is at the very beginning, we ignore it - we will have
818 less trace, but we won't have any holes in the trace. */
822 pt_insn_get_offset (decoder, &offset);
824 warning (_("Failed to decode Intel(R) Processor Trace near trace "
825 "offset 0x%" PRIx64 " near recorded PC 0x%" PRIx64 ": %s."),
826 offset, insn.ip, pt_errstr (pt_errcode (errcode)));
828 /* Indicate the gap in the trace. */
829 *pend = end = ftrace_new_gap (end, errcode);
834 warning (_("The recorded execution trace may have gaps."));
837 /* A callback function to allow the trace decoder to read the inferior's
841 btrace_pt_readmem_callback (gdb_byte *buffer, size_t size,
842 const struct pt_asid *asid, uint64_t pc,
850 errcode = target_read_code ((CORE_ADDR) pc, buffer, size);
854 CATCH (error, RETURN_MASK_ERROR)
863 /* Translate the vendor from one enum to another. */
865 static enum pt_cpu_vendor
866 pt_translate_cpu_vendor (enum btrace_cpu_vendor vendor)
878 /* Finalize the function branch trace after decode. */
880 static void btrace_finalize_ftrace_pt (struct pt_insn_decoder *decoder,
881 struct thread_info *tp, int level)
883 pt_insn_free_decoder (decoder);
885 /* LEVEL is the minimal function level of all btrace function segments.
886 Define the global level offset to -LEVEL so all function levels are
887 normalized to start at zero. */
888 tp->btrace.level = -level;
890 /* Add a single last instruction entry for the current PC.
891 This allows us to compute the backtrace at the current PC using both
892 standard unwind and btrace unwind.
893 This extra entry is ignored by all record commands. */
897 /* Compute the function branch trace from Intel(R) Processor Trace. */
900 btrace_compute_ftrace_pt (struct thread_info *tp,
901 const struct btrace_data_pt *btrace)
903 struct btrace_thread_info *btinfo;
904 struct pt_insn_decoder *decoder;
905 struct pt_config config;
908 if (btrace->size == 0)
911 btinfo = &tp->btrace;
912 level = btinfo->begin != NULL ? -btinfo->level : INT_MAX;
914 pt_config_init(&config);
915 config.begin = btrace->data;
916 config.end = btrace->data + btrace->size;
918 config.cpu.vendor = pt_translate_cpu_vendor (btrace->config.cpu.vendor);
919 config.cpu.family = btrace->config.cpu.family;
920 config.cpu.model = btrace->config.cpu.model;
921 config.cpu.stepping = btrace->config.cpu.stepping;
923 errcode = pt_cpu_errata (&config.errata, &config.cpu);
925 error (_("Failed to configure the Intel(R) Processor Trace decoder: %s."),
926 pt_errstr (pt_errcode (errcode)));
928 decoder = pt_insn_alloc_decoder (&config);
930 error (_("Failed to allocate the Intel(R) Processor Trace decoder."));
934 struct pt_image *image;
936 image = pt_insn_get_image(decoder);
938 error (_("Failed to configure the Intel(R) Processor Trace decoder."));
940 errcode = pt_image_set_callback(image, btrace_pt_readmem_callback, NULL);
942 error (_("Failed to configure the Intel(R) Processor Trace decoder: "
943 "%s."), pt_errstr (pt_errcode (errcode)));
945 ftrace_add_pt (decoder, &btinfo->begin, &btinfo->end, &level,
948 CATCH (error, RETURN_MASK_ALL)
950 /* Indicate a gap in the trace if we quit trace processing. */
951 if (error.reason == RETURN_QUIT && btinfo->end != NULL)
953 btinfo->end = ftrace_new_gap (btinfo->end, BDE_PT_USER_QUIT);
957 btrace_finalize_ftrace_pt (decoder, tp, level);
959 throw_exception (error);
963 btrace_finalize_ftrace_pt (decoder, tp, level);
966 #else /* defined (HAVE_LIBIPT) */
969 btrace_compute_ftrace_pt (struct thread_info *tp,
970 const struct btrace_data_pt *btrace)
972 internal_error (__FILE__, __LINE__, _("Unexpected branch trace format."));
975 #endif /* defined (HAVE_LIBIPT) */
977 /* Compute the function branch trace from a block branch trace BTRACE for
978 a thread given by BTINFO. */
981 btrace_compute_ftrace (struct thread_info *tp, struct btrace_data *btrace)
983 DEBUG ("compute ftrace");
985 switch (btrace->format)
987 case BTRACE_FORMAT_NONE:
990 case BTRACE_FORMAT_BTS:
991 btrace_compute_ftrace_bts (tp, &btrace->variant.bts);
994 case BTRACE_FORMAT_PT:
995 btrace_compute_ftrace_pt (tp, &btrace->variant.pt);
999 internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
1002 /* Add an entry for the current PC. */
1005 btrace_add_pc (struct thread_info *tp)
1007 struct btrace_data btrace;
1008 struct btrace_block *block;
1009 struct regcache *regcache;
1010 struct cleanup *cleanup;
1013 regcache = get_thread_regcache (tp->ptid);
1014 pc = regcache_read_pc (regcache);
1016 btrace_data_init (&btrace);
1017 btrace.format = BTRACE_FORMAT_BTS;
1018 btrace.variant.bts.blocks = NULL;
1020 cleanup = make_cleanup_btrace_data (&btrace);
1022 block = VEC_safe_push (btrace_block_s, btrace.variant.bts.blocks, NULL);
1026 btrace_compute_ftrace (tp, &btrace);
1028 do_cleanups (cleanup);
1034 btrace_enable (struct thread_info *tp, const struct btrace_config *conf)
1036 if (tp->btrace.target != NULL)
1039 #if !defined (HAVE_LIBIPT)
1040 if (conf->format == BTRACE_FORMAT_PT)
1041 error (_("GDB does not support Intel(R) Processor Trace."));
1042 #endif /* !defined (HAVE_LIBIPT) */
1044 if (!target_supports_btrace (conf->format))
1045 error (_("Target does not support branch tracing."));
1047 DEBUG ("enable thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1049 tp->btrace.target = target_enable_btrace (tp->ptid, conf);
1051 /* Add an entry for the current PC so we start tracing from where we
1053 if (tp->btrace.target != NULL)
1059 const struct btrace_config *
1060 btrace_conf (const struct btrace_thread_info *btinfo)
1062 if (btinfo->target == NULL)
1065 return target_btrace_conf (btinfo->target);
1071 btrace_disable (struct thread_info *tp)
1073 struct btrace_thread_info *btp = &tp->btrace;
1076 if (btp->target == NULL)
1079 DEBUG ("disable thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1081 target_disable_btrace (btp->target);
1090 btrace_teardown (struct thread_info *tp)
1092 struct btrace_thread_info *btp = &tp->btrace;
1095 if (btp->target == NULL)
1098 DEBUG ("teardown thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1100 target_teardown_btrace (btp->target);
1106 /* Stitch branch trace in BTS format. */
1109 btrace_stitch_bts (struct btrace_data_bts *btrace, struct thread_info *tp)
1111 struct btrace_thread_info *btinfo;
1112 struct btrace_function *last_bfun;
1113 struct btrace_insn *last_insn;
1114 btrace_block_s *first_new_block;
1116 btinfo = &tp->btrace;
1117 last_bfun = btinfo->end;
1118 gdb_assert (last_bfun != NULL);
1119 gdb_assert (!VEC_empty (btrace_block_s, btrace->blocks));
1121 /* If the existing trace ends with a gap, we just glue the traces
1122 together. We need to drop the last (i.e. chronologically first) block
1123 of the new trace, though, since we can't fill in the start address.*/
1124 if (VEC_empty (btrace_insn_s, last_bfun->insn))
1126 VEC_pop (btrace_block_s, btrace->blocks);
1130 /* Beware that block trace starts with the most recent block, so the
1131 chronologically first block in the new trace is the last block in
1132 the new trace's block vector. */
1133 first_new_block = VEC_last (btrace_block_s, btrace->blocks);
1134 last_insn = VEC_last (btrace_insn_s, last_bfun->insn);
1136 /* If the current PC at the end of the block is the same as in our current
1137 trace, there are two explanations:
1138 1. we executed the instruction and some branch brought us back.
1139 2. we have not made any progress.
1140 In the first case, the delta trace vector should contain at least two
1142 In the second case, the delta trace vector should contain exactly one
1143 entry for the partial block containing the current PC. Remove it. */
1144 if (first_new_block->end == last_insn->pc
1145 && VEC_length (btrace_block_s, btrace->blocks) == 1)
1147 VEC_pop (btrace_block_s, btrace->blocks);
1151 DEBUG ("stitching %s to %s", ftrace_print_insn_addr (last_insn),
1152 core_addr_to_string_nz (first_new_block->end));
1154 /* Do a simple sanity check to make sure we don't accidentally end up
1155 with a bad block. This should not occur in practice. */
1156 if (first_new_block->end < last_insn->pc)
1158 warning (_("Error while trying to read delta trace. Falling back to "
1163 /* We adjust the last block to start at the end of our current trace. */
1164 gdb_assert (first_new_block->begin == 0);
1165 first_new_block->begin = last_insn->pc;
1167 /* We simply pop the last insn so we can insert it again as part of
1168 the normal branch trace computation.
1169 Since instruction iterators are based on indices in the instructions
1170 vector, we don't leave any pointers dangling. */
1171 DEBUG ("pruning insn at %s for stitching",
1172 ftrace_print_insn_addr (last_insn));
1174 VEC_pop (btrace_insn_s, last_bfun->insn);
1176 /* The instructions vector may become empty temporarily if this has
1177 been the only instruction in this function segment.
1178 This violates the invariant but will be remedied shortly by
1179 btrace_compute_ftrace when we add the new trace. */
1181 /* The only case where this would hurt is if the entire trace consisted
1182 of just that one instruction. If we remove it, we might turn the now
1183 empty btrace function segment into a gap. But we don't want gaps at
1184 the beginning. To avoid this, we remove the entire old trace. */
1185 if (last_bfun == btinfo->begin && VEC_empty (btrace_insn_s, last_bfun->insn))
1191 /* Adjust the block trace in order to stitch old and new trace together.
1192 BTRACE is the new delta trace between the last and the current stop.
1193 TP is the traced thread.
1194 May modifx BTRACE as well as the existing trace in TP.
1195 Return 0 on success, -1 otherwise. */
1198 btrace_stitch_trace (struct btrace_data *btrace, struct thread_info *tp)
1200 /* If we don't have trace, there's nothing to do. */
1201 if (btrace_data_empty (btrace))
1204 switch (btrace->format)
1206 case BTRACE_FORMAT_NONE:
1209 case BTRACE_FORMAT_BTS:
1210 return btrace_stitch_bts (&btrace->variant.bts, tp);
1212 case BTRACE_FORMAT_PT:
1213 /* Delta reads are not supported. */
1217 internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
1220 /* Clear the branch trace histories in BTINFO. */
1223 btrace_clear_history (struct btrace_thread_info *btinfo)
1225 xfree (btinfo->insn_history);
1226 xfree (btinfo->call_history);
1227 xfree (btinfo->replay);
1229 btinfo->insn_history = NULL;
1230 btinfo->call_history = NULL;
1231 btinfo->replay = NULL;
1234 /* Clear the branch trace maintenance histories in BTINFO. */
1237 btrace_maint_clear (struct btrace_thread_info *btinfo)
1239 switch (btinfo->data.format)
1244 case BTRACE_FORMAT_BTS:
1245 btinfo->maint.variant.bts.packet_history.begin = 0;
1246 btinfo->maint.variant.bts.packet_history.end = 0;
1249 #if defined (HAVE_LIBIPT)
1250 case BTRACE_FORMAT_PT:
1251 xfree (btinfo->maint.variant.pt.packets);
1253 btinfo->maint.variant.pt.packets = NULL;
1254 btinfo->maint.variant.pt.packet_history.begin = 0;
1255 btinfo->maint.variant.pt.packet_history.end = 0;
1257 #endif /* defined (HAVE_LIBIPT) */
1264 btrace_fetch (struct thread_info *tp)
1266 struct btrace_thread_info *btinfo;
1267 struct btrace_target_info *tinfo;
1268 struct btrace_data btrace;
1269 struct cleanup *cleanup;
1272 DEBUG ("fetch thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1274 btinfo = &tp->btrace;
1275 tinfo = btinfo->target;
1279 /* There's no way we could get new trace while replaying.
1280 On the other hand, delta trace would return a partial record with the
1281 current PC, which is the replay PC, not the last PC, as expected. */
1282 if (btinfo->replay != NULL)
1285 btrace_data_init (&btrace);
1286 cleanup = make_cleanup_btrace_data (&btrace);
1288 /* Let's first try to extend the trace we already have. */
1289 if (btinfo->end != NULL)
1291 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_DELTA);
1294 /* Success. Let's try to stitch the traces together. */
1295 errcode = btrace_stitch_trace (&btrace, tp);
1299 /* We failed to read delta trace. Let's try to read new trace. */
1300 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_NEW);
1302 /* If we got any new trace, discard what we have. */
1303 if (errcode == 0 && !btrace_data_empty (&btrace))
1307 /* If we were not able to read the trace, we start over. */
1311 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_ALL);
1315 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_ALL);
1317 /* If we were not able to read the branch trace, signal an error. */
1319 error (_("Failed to read branch trace."));
1321 /* Compute the trace, provided we have any. */
1322 if (!btrace_data_empty (&btrace))
1324 /* Store the raw trace data. The stored data will be cleared in
1325 btrace_clear, so we always append the new trace. */
1326 btrace_data_append (&btinfo->data, &btrace);
1327 btrace_maint_clear (btinfo);
1329 btrace_clear_history (btinfo);
1330 btrace_compute_ftrace (tp, &btrace);
1333 do_cleanups (cleanup);
1339 btrace_clear (struct thread_info *tp)
1341 struct btrace_thread_info *btinfo;
1342 struct btrace_function *it, *trash;
1344 DEBUG ("clear thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1346 /* Make sure btrace frames that may hold a pointer into the branch
1347 trace data are destroyed. */
1348 reinit_frame_cache ();
1350 btinfo = &tp->btrace;
1361 btinfo->begin = NULL;
1365 /* Must clear the maint data before - it depends on BTINFO->DATA. */
1366 btrace_maint_clear (btinfo);
1367 btrace_data_clear (&btinfo->data);
1368 btrace_clear_history (btinfo);
1374 btrace_free_objfile (struct objfile *objfile)
1376 struct thread_info *tp;
1378 DEBUG ("free objfile");
1380 ALL_NON_EXITED_THREADS (tp)
1384 #if defined (HAVE_LIBEXPAT)
1386 /* Check the btrace document version. */
1389 check_xml_btrace_version (struct gdb_xml_parser *parser,
1390 const struct gdb_xml_element *element,
1391 void *user_data, VEC (gdb_xml_value_s) *attributes)
1394 = (const char *) xml_find_attribute (attributes, "version")->value;
1396 if (strcmp (version, "1.0") != 0)
1397 gdb_xml_error (parser, _("Unsupported btrace version: \"%s\""), version);
1400 /* Parse a btrace "block" xml record. */
1403 parse_xml_btrace_block (struct gdb_xml_parser *parser,
1404 const struct gdb_xml_element *element,
1405 void *user_data, VEC (gdb_xml_value_s) *attributes)
1407 struct btrace_data *btrace;
1408 struct btrace_block *block;
1409 ULONGEST *begin, *end;
1411 btrace = (struct btrace_data *) user_data;
1413 switch (btrace->format)
1415 case BTRACE_FORMAT_BTS:
1418 case BTRACE_FORMAT_NONE:
1419 btrace->format = BTRACE_FORMAT_BTS;
1420 btrace->variant.bts.blocks = NULL;
1424 gdb_xml_error (parser, _("Btrace format error."));
1427 begin = (ULONGEST *) xml_find_attribute (attributes, "begin")->value;
1428 end = (ULONGEST *) xml_find_attribute (attributes, "end")->value;
1430 block = VEC_safe_push (btrace_block_s, btrace->variant.bts.blocks, NULL);
1431 block->begin = *begin;
1435 /* Parse a "raw" xml record. */
1438 parse_xml_raw (struct gdb_xml_parser *parser, const char *body_text,
1439 gdb_byte **pdata, size_t *psize)
1441 struct cleanup *cleanup;
1442 gdb_byte *data, *bin;
1445 len = strlen (body_text);
1447 gdb_xml_error (parser, _("Bad raw data size."));
1451 bin = data = (gdb_byte *) xmalloc (size);
1452 cleanup = make_cleanup (xfree, data);
1454 /* We use hex encoding - see common/rsp-low.h. */
1462 if (hi == 0 || lo == 0)
1463 gdb_xml_error (parser, _("Bad hex encoding."));
1465 *bin++ = fromhex (hi) * 16 + fromhex (lo);
1469 discard_cleanups (cleanup);
1475 /* Parse a btrace pt-config "cpu" xml record. */
1478 parse_xml_btrace_pt_config_cpu (struct gdb_xml_parser *parser,
1479 const struct gdb_xml_element *element,
1481 VEC (gdb_xml_value_s) *attributes)
1483 struct btrace_data *btrace;
1485 ULONGEST *family, *model, *stepping;
1487 vendor = (const char *) xml_find_attribute (attributes, "vendor")->value;
1488 family = (ULONGEST *) xml_find_attribute (attributes, "family")->value;
1489 model = (ULONGEST *) xml_find_attribute (attributes, "model")->value;
1490 stepping = (ULONGEST *) xml_find_attribute (attributes, "stepping")->value;
1492 btrace = (struct btrace_data *) user_data;
1494 if (strcmp (vendor, "GenuineIntel") == 0)
1495 btrace->variant.pt.config.cpu.vendor = CV_INTEL;
1497 btrace->variant.pt.config.cpu.family = *family;
1498 btrace->variant.pt.config.cpu.model = *model;
1499 btrace->variant.pt.config.cpu.stepping = *stepping;
1502 /* Parse a btrace pt "raw" xml record. */
1505 parse_xml_btrace_pt_raw (struct gdb_xml_parser *parser,
1506 const struct gdb_xml_element *element,
1507 void *user_data, const char *body_text)
1509 struct btrace_data *btrace;
1511 btrace = (struct btrace_data *) user_data;
1512 parse_xml_raw (parser, body_text, &btrace->variant.pt.data,
1513 &btrace->variant.pt.size);
1516 /* Parse a btrace "pt" xml record. */
1519 parse_xml_btrace_pt (struct gdb_xml_parser *parser,
1520 const struct gdb_xml_element *element,
1521 void *user_data, VEC (gdb_xml_value_s) *attributes)
1523 struct btrace_data *btrace;
1525 btrace = (struct btrace_data *) user_data;
1526 btrace->format = BTRACE_FORMAT_PT;
1527 btrace->variant.pt.config.cpu.vendor = CV_UNKNOWN;
1528 btrace->variant.pt.data = NULL;
1529 btrace->variant.pt.size = 0;
1532 static const struct gdb_xml_attribute block_attributes[] = {
1533 { "begin", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1534 { "end", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1535 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1538 static const struct gdb_xml_attribute btrace_pt_config_cpu_attributes[] = {
1539 { "vendor", GDB_XML_AF_NONE, NULL, NULL },
1540 { "family", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1541 { "model", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1542 { "stepping", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1543 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1546 static const struct gdb_xml_element btrace_pt_config_children[] = {
1547 { "cpu", btrace_pt_config_cpu_attributes, NULL, GDB_XML_EF_OPTIONAL,
1548 parse_xml_btrace_pt_config_cpu, NULL },
1549 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1552 static const struct gdb_xml_element btrace_pt_children[] = {
1553 { "pt-config", NULL, btrace_pt_config_children, GDB_XML_EF_OPTIONAL, NULL,
1555 { "raw", NULL, NULL, GDB_XML_EF_OPTIONAL, NULL, parse_xml_btrace_pt_raw },
1556 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1559 static const struct gdb_xml_attribute btrace_attributes[] = {
1560 { "version", GDB_XML_AF_NONE, NULL, NULL },
1561 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1564 static const struct gdb_xml_element btrace_children[] = {
1565 { "block", block_attributes, NULL,
1566 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL, parse_xml_btrace_block, NULL },
1567 { "pt", NULL, btrace_pt_children, GDB_XML_EF_OPTIONAL, parse_xml_btrace_pt,
1569 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1572 static const struct gdb_xml_element btrace_elements[] = {
1573 { "btrace", btrace_attributes, btrace_children, GDB_XML_EF_NONE,
1574 check_xml_btrace_version, NULL },
1575 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1578 #endif /* defined (HAVE_LIBEXPAT) */
1583 parse_xml_btrace (struct btrace_data *btrace, const char *buffer)
1585 struct cleanup *cleanup;
1588 #if defined (HAVE_LIBEXPAT)
1590 btrace->format = BTRACE_FORMAT_NONE;
1592 cleanup = make_cleanup_btrace_data (btrace);
1593 errcode = gdb_xml_parse_quick (_("btrace"), "btrace.dtd", btrace_elements,
1596 error (_("Error parsing branch trace."));
1598 /* Keep parse results. */
1599 discard_cleanups (cleanup);
1601 #else /* !defined (HAVE_LIBEXPAT) */
1603 error (_("Cannot process branch trace. XML parsing is not supported."));
1605 #endif /* !defined (HAVE_LIBEXPAT) */
1608 #if defined (HAVE_LIBEXPAT)
1610 /* Parse a btrace-conf "bts" xml record. */
1613 parse_xml_btrace_conf_bts (struct gdb_xml_parser *parser,
1614 const struct gdb_xml_element *element,
1615 void *user_data, VEC (gdb_xml_value_s) *attributes)
1617 struct btrace_config *conf;
1618 struct gdb_xml_value *size;
1620 conf = (struct btrace_config *) user_data;
1621 conf->format = BTRACE_FORMAT_BTS;
1624 size = xml_find_attribute (attributes, "size");
1626 conf->bts.size = (unsigned int) *(ULONGEST *) size->value;
1629 /* Parse a btrace-conf "pt" xml record. */
1632 parse_xml_btrace_conf_pt (struct gdb_xml_parser *parser,
1633 const struct gdb_xml_element *element,
1634 void *user_data, VEC (gdb_xml_value_s) *attributes)
1636 struct btrace_config *conf;
1637 struct gdb_xml_value *size;
1639 conf = (struct btrace_config *) user_data;
1640 conf->format = BTRACE_FORMAT_PT;
1643 size = xml_find_attribute (attributes, "size");
1645 conf->pt.size = (unsigned int) *(ULONGEST *) size->value;
1648 static const struct gdb_xml_attribute btrace_conf_pt_attributes[] = {
1649 { "size", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1650 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1653 static const struct gdb_xml_attribute btrace_conf_bts_attributes[] = {
1654 { "size", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1655 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1658 static const struct gdb_xml_element btrace_conf_children[] = {
1659 { "bts", btrace_conf_bts_attributes, NULL, GDB_XML_EF_OPTIONAL,
1660 parse_xml_btrace_conf_bts, NULL },
1661 { "pt", btrace_conf_pt_attributes, NULL, GDB_XML_EF_OPTIONAL,
1662 parse_xml_btrace_conf_pt, NULL },
1663 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1666 static const struct gdb_xml_attribute btrace_conf_attributes[] = {
1667 { "version", GDB_XML_AF_NONE, NULL, NULL },
1668 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1671 static const struct gdb_xml_element btrace_conf_elements[] = {
1672 { "btrace-conf", btrace_conf_attributes, btrace_conf_children,
1673 GDB_XML_EF_NONE, NULL, NULL },
1674 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1677 #endif /* defined (HAVE_LIBEXPAT) */
1682 parse_xml_btrace_conf (struct btrace_config *conf, const char *xml)
1686 #if defined (HAVE_LIBEXPAT)
1688 errcode = gdb_xml_parse_quick (_("btrace-conf"), "btrace-conf.dtd",
1689 btrace_conf_elements, xml, conf);
1691 error (_("Error parsing branch trace configuration."));
1693 #else /* !defined (HAVE_LIBEXPAT) */
1695 error (_("XML parsing is not supported."));
1697 #endif /* !defined (HAVE_LIBEXPAT) */
1702 const struct btrace_insn *
1703 btrace_insn_get (const struct btrace_insn_iterator *it)
1705 const struct btrace_function *bfun;
1706 unsigned int index, end;
1709 bfun = it->function;
1711 /* Check if the iterator points to a gap in the trace. */
1712 if (bfun->errcode != 0)
1715 /* The index is within the bounds of this function's instruction vector. */
1716 end = VEC_length (btrace_insn_s, bfun->insn);
1717 gdb_assert (0 < end);
1718 gdb_assert (index < end);
1720 return VEC_index (btrace_insn_s, bfun->insn, index);
1726 btrace_insn_number (const struct btrace_insn_iterator *it)
1728 const struct btrace_function *bfun;
1730 bfun = it->function;
1732 /* Return zero if the iterator points to a gap in the trace. */
1733 if (bfun->errcode != 0)
1736 return bfun->insn_offset + it->index;
1742 btrace_insn_begin (struct btrace_insn_iterator *it,
1743 const struct btrace_thread_info *btinfo)
1745 const struct btrace_function *bfun;
1747 bfun = btinfo->begin;
1749 error (_("No trace."));
1751 it->function = bfun;
1758 btrace_insn_end (struct btrace_insn_iterator *it,
1759 const struct btrace_thread_info *btinfo)
1761 const struct btrace_function *bfun;
1762 unsigned int length;
1766 error (_("No trace."));
1768 length = VEC_length (btrace_insn_s, bfun->insn);
1770 /* The last function may either be a gap or it contains the current
1771 instruction, which is one past the end of the execution trace; ignore
1776 it->function = bfun;
1783 btrace_insn_next (struct btrace_insn_iterator *it, unsigned int stride)
1785 const struct btrace_function *bfun;
1786 unsigned int index, steps;
1788 bfun = it->function;
1794 unsigned int end, space, adv;
1796 end = VEC_length (btrace_insn_s, bfun->insn);
1798 /* An empty function segment represents a gap in the trace. We count
1799 it as one instruction. */
1802 const struct btrace_function *next;
1804 next = bfun->flow.next;
1817 gdb_assert (0 < end);
1818 gdb_assert (index < end);
1820 /* Compute the number of instructions remaining in this segment. */
1821 space = end - index;
1823 /* Advance the iterator as far as possible within this segment. */
1824 adv = min (space, stride);
1829 /* Move to the next function if we're at the end of this one. */
1832 const struct btrace_function *next;
1834 next = bfun->flow.next;
1837 /* We stepped past the last function.
1839 Let's adjust the index to point to the last instruction in
1840 the previous function. */
1846 /* We now point to the first instruction in the new function. */
1851 /* We did make progress. */
1852 gdb_assert (adv > 0);
1855 /* Update the iterator. */
1856 it->function = bfun;
1865 btrace_insn_prev (struct btrace_insn_iterator *it, unsigned int stride)
1867 const struct btrace_function *bfun;
1868 unsigned int index, steps;
1870 bfun = it->function;
1878 /* Move to the previous function if we're at the start of this one. */
1881 const struct btrace_function *prev;
1883 prev = bfun->flow.prev;
1887 /* We point to one after the last instruction in the new function. */
1889 index = VEC_length (btrace_insn_s, bfun->insn);
1891 /* An empty function segment represents a gap in the trace. We count
1892 it as one instruction. */
1902 /* Advance the iterator as far as possible within this segment. */
1903 adv = min (index, stride);
1909 /* We did make progress. */
1910 gdb_assert (adv > 0);
1913 /* Update the iterator. */
1914 it->function = bfun;
1923 btrace_insn_cmp (const struct btrace_insn_iterator *lhs,
1924 const struct btrace_insn_iterator *rhs)
1926 unsigned int lnum, rnum;
1928 lnum = btrace_insn_number (lhs);
1929 rnum = btrace_insn_number (rhs);
1931 /* A gap has an instruction number of zero. Things are getting more
1932 complicated if gaps are involved.
1934 We take the instruction number offset from the iterator's function.
1935 This is the number of the first instruction after the gap.
1937 This is OK as long as both lhs and rhs point to gaps. If only one of
1938 them does, we need to adjust the number based on the other's regular
1939 instruction number. Otherwise, a gap might compare equal to an
1942 if (lnum == 0 && rnum == 0)
1944 lnum = lhs->function->insn_offset;
1945 rnum = rhs->function->insn_offset;
1949 lnum = lhs->function->insn_offset;
1956 rnum = rhs->function->insn_offset;
1962 return (int) (lnum - rnum);
1968 btrace_find_insn_by_number (struct btrace_insn_iterator *it,
1969 const struct btrace_thread_info *btinfo,
1970 unsigned int number)
1972 const struct btrace_function *bfun;
1973 unsigned int end, length;
1975 for (bfun = btinfo->end; bfun != NULL; bfun = bfun->flow.prev)
1978 if (bfun->errcode != 0)
1981 if (bfun->insn_offset <= number)
1988 length = VEC_length (btrace_insn_s, bfun->insn);
1989 gdb_assert (length > 0);
1991 end = bfun->insn_offset + length;
1995 it->function = bfun;
1996 it->index = number - bfun->insn_offset;
2003 const struct btrace_function *
2004 btrace_call_get (const struct btrace_call_iterator *it)
2006 return it->function;
2012 btrace_call_number (const struct btrace_call_iterator *it)
2014 const struct btrace_thread_info *btinfo;
2015 const struct btrace_function *bfun;
2018 btinfo = it->btinfo;
2019 bfun = it->function;
2021 return bfun->number;
2023 /* For the end iterator, i.e. bfun == NULL, we return one more than the
2024 number of the last function. */
2026 insns = VEC_length (btrace_insn_s, bfun->insn);
2028 /* If the function contains only a single instruction (i.e. the current
2029 instruction), it will be skipped and its number is already the number
2032 return bfun->number;
2034 /* Otherwise, return one more than the number of the last function. */
2035 return bfun->number + 1;
2041 btrace_call_begin (struct btrace_call_iterator *it,
2042 const struct btrace_thread_info *btinfo)
2044 const struct btrace_function *bfun;
2046 bfun = btinfo->begin;
2048 error (_("No trace."));
2050 it->btinfo = btinfo;
2051 it->function = bfun;
2057 btrace_call_end (struct btrace_call_iterator *it,
2058 const struct btrace_thread_info *btinfo)
2060 const struct btrace_function *bfun;
2064 error (_("No trace."));
2066 it->btinfo = btinfo;
2067 it->function = NULL;
2073 btrace_call_next (struct btrace_call_iterator *it, unsigned int stride)
2075 const struct btrace_function *bfun;
2078 bfun = it->function;
2080 while (bfun != NULL)
2082 const struct btrace_function *next;
2085 next = bfun->flow.next;
2088 /* Ignore the last function if it only contains a single
2089 (i.e. the current) instruction. */
2090 insns = VEC_length (btrace_insn_s, bfun->insn);
2095 if (stride == steps)
2102 it->function = bfun;
2109 btrace_call_prev (struct btrace_call_iterator *it, unsigned int stride)
2111 const struct btrace_thread_info *btinfo;
2112 const struct btrace_function *bfun;
2115 bfun = it->function;
2122 btinfo = it->btinfo;
2127 /* Ignore the last function if it only contains a single
2128 (i.e. the current) instruction. */
2129 insns = VEC_length (btrace_insn_s, bfun->insn);
2131 bfun = bfun->flow.prev;
2139 while (steps < stride)
2141 const struct btrace_function *prev;
2143 prev = bfun->flow.prev;
2151 it->function = bfun;
2158 btrace_call_cmp (const struct btrace_call_iterator *lhs,
2159 const struct btrace_call_iterator *rhs)
2161 unsigned int lnum, rnum;
2163 lnum = btrace_call_number (lhs);
2164 rnum = btrace_call_number (rhs);
2166 return (int) (lnum - rnum);
2172 btrace_find_call_by_number (struct btrace_call_iterator *it,
2173 const struct btrace_thread_info *btinfo,
2174 unsigned int number)
2176 const struct btrace_function *bfun;
2178 for (bfun = btinfo->end; bfun != NULL; bfun = bfun->flow.prev)
2182 bnum = bfun->number;
2185 it->btinfo = btinfo;
2186 it->function = bfun;
2190 /* Functions are ordered and numbered consecutively. We could bail out
2191 earlier. On the other hand, it is very unlikely that we search for
2192 a nonexistent function. */
2201 btrace_set_insn_history (struct btrace_thread_info *btinfo,
2202 const struct btrace_insn_iterator *begin,
2203 const struct btrace_insn_iterator *end)
2205 if (btinfo->insn_history == NULL)
2206 btinfo->insn_history = XCNEW (struct btrace_insn_history);
2208 btinfo->insn_history->begin = *begin;
2209 btinfo->insn_history->end = *end;
2215 btrace_set_call_history (struct btrace_thread_info *btinfo,
2216 const struct btrace_call_iterator *begin,
2217 const struct btrace_call_iterator *end)
2219 gdb_assert (begin->btinfo == end->btinfo);
2221 if (btinfo->call_history == NULL)
2222 btinfo->call_history = XCNEW (struct btrace_call_history);
2224 btinfo->call_history->begin = *begin;
2225 btinfo->call_history->end = *end;
2231 btrace_is_replaying (struct thread_info *tp)
2233 return tp->btrace.replay != NULL;
2239 btrace_is_empty (struct thread_info *tp)
2241 struct btrace_insn_iterator begin, end;
2242 struct btrace_thread_info *btinfo;
2244 btinfo = &tp->btrace;
2246 if (btinfo->begin == NULL)
2249 btrace_insn_begin (&begin, btinfo);
2250 btrace_insn_end (&end, btinfo);
2252 return btrace_insn_cmp (&begin, &end) == 0;
2255 /* Forward the cleanup request. */
2258 do_btrace_data_cleanup (void *arg)
2260 btrace_data_fini ((struct btrace_data *) arg);
2266 make_cleanup_btrace_data (struct btrace_data *data)
2268 return make_cleanup (do_btrace_data_cleanup, data);
2271 #if defined (HAVE_LIBIPT)
2273 /* Print a single packet. */
2276 pt_print_packet (const struct pt_packet *packet)
2278 switch (packet->type)
2281 printf_unfiltered (("[??: %x]"), packet->type);
2285 printf_unfiltered (("psb"));
2289 printf_unfiltered (("psbend"));
2293 printf_unfiltered (("pad"));
2297 printf_unfiltered (("tip %u: 0x%" PRIx64 ""),
2298 packet->payload.ip.ipc,
2299 packet->payload.ip.ip);
2303 printf_unfiltered (("tip.pge %u: 0x%" PRIx64 ""),
2304 packet->payload.ip.ipc,
2305 packet->payload.ip.ip);
2309 printf_unfiltered (("tip.pgd %u: 0x%" PRIx64 ""),
2310 packet->payload.ip.ipc,
2311 packet->payload.ip.ip);
2315 printf_unfiltered (("fup %u: 0x%" PRIx64 ""),
2316 packet->payload.ip.ipc,
2317 packet->payload.ip.ip);
2321 printf_unfiltered (("tnt-8 %u: 0x%" PRIx64 ""),
2322 packet->payload.tnt.bit_size,
2323 packet->payload.tnt.payload);
2327 printf_unfiltered (("tnt-64 %u: 0x%" PRIx64 ""),
2328 packet->payload.tnt.bit_size,
2329 packet->payload.tnt.payload);
2333 printf_unfiltered (("pip %" PRIx64 "%s"), packet->payload.pip.cr3,
2334 packet->payload.pip.nr ? (" nr") : (""));
2338 printf_unfiltered (("tsc %" PRIx64 ""), packet->payload.tsc.tsc);
2342 printf_unfiltered (("cbr %u"), packet->payload.cbr.ratio);
2346 switch (packet->payload.mode.leaf)
2349 printf_unfiltered (("mode %u"), packet->payload.mode.leaf);
2353 printf_unfiltered (("mode.exec%s%s"),
2354 packet->payload.mode.bits.exec.csl
2356 packet->payload.mode.bits.exec.csd
2357 ? (" cs.d") : (""));
2361 printf_unfiltered (("mode.tsx%s%s"),
2362 packet->payload.mode.bits.tsx.intx
2364 packet->payload.mode.bits.tsx.abrt
2365 ? (" abrt") : (""));
2371 printf_unfiltered (("ovf"));
2375 printf_unfiltered (("stop"));
2379 printf_unfiltered (("vmcs %" PRIx64 ""), packet->payload.vmcs.base);
2383 printf_unfiltered (("tma %x %x"), packet->payload.tma.ctc,
2384 packet->payload.tma.fc);
2388 printf_unfiltered (("mtc %x"), packet->payload.mtc.ctc);
2392 printf_unfiltered (("cyc %" PRIx64 ""), packet->payload.cyc.value);
2396 printf_unfiltered (("mnt %" PRIx64 ""), packet->payload.mnt.payload);
2401 /* Decode packets into MAINT using DECODER. */
2404 btrace_maint_decode_pt (struct btrace_maint_info *maint,
2405 struct pt_packet_decoder *decoder)
2411 struct btrace_pt_packet packet;
2413 errcode = pt_pkt_sync_forward (decoder);
2419 pt_pkt_get_offset (decoder, &packet.offset);
2421 errcode = pt_pkt_next (decoder, &packet.packet,
2422 sizeof(packet.packet));
2426 if (maint_btrace_pt_skip_pad == 0 || packet.packet.type != ppt_pad)
2428 packet.errcode = pt_errcode (errcode);
2429 VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets,
2434 if (errcode == -pte_eos)
2437 packet.errcode = pt_errcode (errcode);
2438 VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets,
2441 warning (_("Error at trace offset 0x%" PRIx64 ": %s."),
2442 packet.offset, pt_errstr (packet.errcode));
2445 if (errcode != -pte_eos)
2446 warning (_("Failed to synchronize onto the Intel(R) Processor Trace "
2447 "stream: %s."), pt_errstr (pt_errcode (errcode)));
2450 /* Update the packet history in BTINFO. */
2453 btrace_maint_update_pt_packets (struct btrace_thread_info *btinfo)
2455 volatile struct gdb_exception except;
2456 struct pt_packet_decoder *decoder;
2457 struct btrace_data_pt *pt;
2458 struct pt_config config;
2461 pt = &btinfo->data.variant.pt;
2463 /* Nothing to do if there is no trace. */
2467 memset (&config, 0, sizeof(config));
2469 config.size = sizeof (config);
2470 config.begin = pt->data;
2471 config.end = pt->data + pt->size;
2473 config.cpu.vendor = pt_translate_cpu_vendor (pt->config.cpu.vendor);
2474 config.cpu.family = pt->config.cpu.family;
2475 config.cpu.model = pt->config.cpu.model;
2476 config.cpu.stepping = pt->config.cpu.stepping;
2478 errcode = pt_cpu_errata (&config.errata, &config.cpu);
2480 error (_("Failed to configure the Intel(R) Processor Trace decoder: %s."),
2481 pt_errstr (pt_errcode (errcode)));
2483 decoder = pt_pkt_alloc_decoder (&config);
2484 if (decoder == NULL)
2485 error (_("Failed to allocate the Intel(R) Processor Trace decoder."));
2489 btrace_maint_decode_pt (&btinfo->maint, decoder);
2491 CATCH (except, RETURN_MASK_ALL)
2493 pt_pkt_free_decoder (decoder);
2495 if (except.reason < 0)
2496 throw_exception (except);
2500 pt_pkt_free_decoder (decoder);
2503 #endif /* !defined (HAVE_LIBIPT) */
2505 /* Update the packet maintenance information for BTINFO and store the
2506 low and high bounds into BEGIN and END, respectively.
2507 Store the current iterator state into FROM and TO. */
2510 btrace_maint_update_packets (struct btrace_thread_info *btinfo,
2511 unsigned int *begin, unsigned int *end,
2512 unsigned int *from, unsigned int *to)
2514 switch (btinfo->data.format)
2523 case BTRACE_FORMAT_BTS:
2524 /* Nothing to do - we operate directly on BTINFO->DATA. */
2526 *end = VEC_length (btrace_block_s, btinfo->data.variant.bts.blocks);
2527 *from = btinfo->maint.variant.bts.packet_history.begin;
2528 *to = btinfo->maint.variant.bts.packet_history.end;
2531 #if defined (HAVE_LIBIPT)
2532 case BTRACE_FORMAT_PT:
2533 if (VEC_empty (btrace_pt_packet_s, btinfo->maint.variant.pt.packets))
2534 btrace_maint_update_pt_packets (btinfo);
2537 *end = VEC_length (btrace_pt_packet_s, btinfo->maint.variant.pt.packets);
2538 *from = btinfo->maint.variant.pt.packet_history.begin;
2539 *to = btinfo->maint.variant.pt.packet_history.end;
2541 #endif /* defined (HAVE_LIBIPT) */
2545 /* Print packets in BTINFO from BEGIN (inclusive) until END (exclusive) and
2546 update the current iterator position. */
2549 btrace_maint_print_packets (struct btrace_thread_info *btinfo,
2550 unsigned int begin, unsigned int end)
2552 switch (btinfo->data.format)
2557 case BTRACE_FORMAT_BTS:
2559 VEC (btrace_block_s) *blocks;
2562 blocks = btinfo->data.variant.bts.blocks;
2563 for (blk = begin; blk < end; ++blk)
2565 const btrace_block_s *block;
2567 block = VEC_index (btrace_block_s, blocks, blk);
2569 printf_unfiltered ("%u\tbegin: %s, end: %s\n", blk,
2570 core_addr_to_string_nz (block->begin),
2571 core_addr_to_string_nz (block->end));
2574 btinfo->maint.variant.bts.packet_history.begin = begin;
2575 btinfo->maint.variant.bts.packet_history.end = end;
2579 #if defined (HAVE_LIBIPT)
2580 case BTRACE_FORMAT_PT:
2582 VEC (btrace_pt_packet_s) *packets;
2585 packets = btinfo->maint.variant.pt.packets;
2586 for (pkt = begin; pkt < end; ++pkt)
2588 const struct btrace_pt_packet *packet;
2590 packet = VEC_index (btrace_pt_packet_s, packets, pkt);
2592 printf_unfiltered ("%u\t", pkt);
2593 printf_unfiltered ("0x%" PRIx64 "\t", packet->offset);
2595 if (packet->errcode == pte_ok)
2596 pt_print_packet (&packet->packet);
2598 printf_unfiltered ("[error: %s]", pt_errstr (packet->errcode));
2600 printf_unfiltered ("\n");
2603 btinfo->maint.variant.pt.packet_history.begin = begin;
2604 btinfo->maint.variant.pt.packet_history.end = end;
2607 #endif /* defined (HAVE_LIBIPT) */
2611 /* Read a number from an argument string. */
2614 get_uint (char **arg)
2616 char *begin, *end, *pos;
2617 unsigned long number;
2620 pos = skip_spaces (begin);
2622 if (!isdigit (*pos))
2623 error (_("Expected positive number, got: %s."), pos);
2625 number = strtoul (pos, &end, 10);
2626 if (number > UINT_MAX)
2627 error (_("Number too big."));
2629 *arg += (end - begin);
2631 return (unsigned int) number;
2634 /* Read a context size from an argument string. */
2637 get_context_size (char **arg)
2642 pos = skip_spaces (*arg);
2644 if (!isdigit (*pos))
2645 error (_("Expected positive number, got: %s."), pos);
2647 return strtol (pos, arg, 10);
2650 /* Complain about junk at the end of an argument string. */
2653 no_chunk (char *arg)
2656 error (_("Junk after argument: %s."), arg);
2659 /* The "maintenance btrace packet-history" command. */
2662 maint_btrace_packet_history_cmd (char *arg, int from_tty)
2664 struct btrace_thread_info *btinfo;
2665 struct thread_info *tp;
2666 unsigned int size, begin, end, from, to;
2668 tp = find_thread_ptid (inferior_ptid);
2670 error (_("No thread."));
2673 btinfo = &tp->btrace;
2675 btrace_maint_update_packets (btinfo, &begin, &end, &from, &to);
2678 printf_unfiltered (_("No trace.\n"));
2682 if (arg == NULL || *arg == 0 || strcmp (arg, "+") == 0)
2686 if (end - from < size)
2690 else if (strcmp (arg, "-") == 0)
2694 if (to - begin < size)
2700 from = get_uint (&arg);
2702 error (_("'%u' is out of range."), from);
2704 arg = skip_spaces (arg);
2707 arg = skip_spaces (++arg);
2712 size = get_context_size (&arg);
2716 if (end - from < size)
2720 else if (*arg == '-')
2723 size = get_context_size (&arg);
2727 /* Include the packet given as first argument. */
2731 if (to - begin < size)
2737 to = get_uint (&arg);
2739 /* Include the packet at the second argument and silently
2740 truncate the range. */
2753 if (end - from < size)
2761 btrace_maint_print_packets (btinfo, from, to);
2764 /* The "maintenance btrace clear-packet-history" command. */
2767 maint_btrace_clear_packet_history_cmd (char *args, int from_tty)
2769 struct btrace_thread_info *btinfo;
2770 struct thread_info *tp;
2772 if (args != NULL && *args != 0)
2773 error (_("Invalid argument."));
2775 tp = find_thread_ptid (inferior_ptid);
2777 error (_("No thread."));
2779 btinfo = &tp->btrace;
2781 /* Must clear the maint data before - it depends on BTINFO->DATA. */
2782 btrace_maint_clear (btinfo);
2783 btrace_data_clear (&btinfo->data);
2786 /* The "maintenance btrace clear" command. */
2789 maint_btrace_clear_cmd (char *args, int from_tty)
2791 struct btrace_thread_info *btinfo;
2792 struct thread_info *tp;
2794 if (args != NULL && *args != 0)
2795 error (_("Invalid argument."));
2797 tp = find_thread_ptid (inferior_ptid);
2799 error (_("No thread."));
2804 /* The "maintenance btrace" command. */
2807 maint_btrace_cmd (char *args, int from_tty)
2809 help_list (maint_btrace_cmdlist, "maintenance btrace ", all_commands,
2813 /* The "maintenance set btrace" command. */
2816 maint_btrace_set_cmd (char *args, int from_tty)
2818 help_list (maint_btrace_set_cmdlist, "maintenance set btrace ", all_commands,
2822 /* The "maintenance show btrace" command. */
2825 maint_btrace_show_cmd (char *args, int from_tty)
2827 help_list (maint_btrace_show_cmdlist, "maintenance show btrace ",
2828 all_commands, gdb_stdout);
2831 /* The "maintenance set btrace pt" command. */
2834 maint_btrace_pt_set_cmd (char *args, int from_tty)
2836 help_list (maint_btrace_pt_set_cmdlist, "maintenance set btrace pt ",
2837 all_commands, gdb_stdout);
2840 /* The "maintenance show btrace pt" command. */
2843 maint_btrace_pt_show_cmd (char *args, int from_tty)
2845 help_list (maint_btrace_pt_show_cmdlist, "maintenance show btrace pt ",
2846 all_commands, gdb_stdout);
2849 /* The "maintenance info btrace" command. */
2852 maint_info_btrace_cmd (char *args, int from_tty)
2854 struct btrace_thread_info *btinfo;
2855 struct thread_info *tp;
2856 const struct btrace_config *conf;
2858 if (args != NULL && *args != 0)
2859 error (_("Invalid argument."));
2861 tp = find_thread_ptid (inferior_ptid);
2863 error (_("No thread."));
2865 btinfo = &tp->btrace;
2867 conf = btrace_conf (btinfo);
2869 error (_("No btrace configuration."));
2871 printf_unfiltered (_("Format: %s.\n"),
2872 btrace_format_string (conf->format));
2874 switch (conf->format)
2879 case BTRACE_FORMAT_BTS:
2880 printf_unfiltered (_("Number of packets: %u.\n"),
2881 VEC_length (btrace_block_s,
2882 btinfo->data.variant.bts.blocks));
2885 #if defined (HAVE_LIBIPT)
2886 case BTRACE_FORMAT_PT:
2888 struct pt_version version;
2890 version = pt_library_version ();
2891 printf_unfiltered (_("Version: %u.%u.%u%s.\n"), version.major,
2892 version.minor, version.build,
2893 version.ext != NULL ? version.ext : "");
2895 btrace_maint_update_pt_packets (btinfo);
2896 printf_unfiltered (_("Number of packets: %u.\n"),
2897 VEC_length (btrace_pt_packet_s,
2898 btinfo->maint.variant.pt.packets));
2901 #endif /* defined (HAVE_LIBIPT) */
2905 /* The "maint show btrace pt skip-pad" show value function. */
2908 show_maint_btrace_pt_skip_pad (struct ui_file *file, int from_tty,
2909 struct cmd_list_element *c,
2912 fprintf_filtered (file, _("Skip PAD packets is %s.\n"), value);
2916 /* Initialize btrace maintenance commands. */
2918 void _initialize_btrace (void);
2920 _initialize_btrace (void)
2922 add_cmd ("btrace", class_maintenance, maint_info_btrace_cmd,
2923 _("Info about branch tracing data."), &maintenanceinfolist);
2925 add_prefix_cmd ("btrace", class_maintenance, maint_btrace_cmd,
2926 _("Branch tracing maintenance commands."),
2927 &maint_btrace_cmdlist, "maintenance btrace ",
2928 0, &maintenancelist);
2930 add_prefix_cmd ("btrace", class_maintenance, maint_btrace_set_cmd, _("\
2931 Set branch tracing specific variables."),
2932 &maint_btrace_set_cmdlist, "maintenance set btrace ",
2933 0, &maintenance_set_cmdlist);
2935 add_prefix_cmd ("pt", class_maintenance, maint_btrace_pt_set_cmd, _("\
2936 Set Intel(R) Processor Trace specific variables."),
2937 &maint_btrace_pt_set_cmdlist, "maintenance set btrace pt ",
2938 0, &maint_btrace_set_cmdlist);
2940 add_prefix_cmd ("btrace", class_maintenance, maint_btrace_show_cmd, _("\
2941 Show branch tracing specific variables."),
2942 &maint_btrace_show_cmdlist, "maintenance show btrace ",
2943 0, &maintenance_show_cmdlist);
2945 add_prefix_cmd ("pt", class_maintenance, maint_btrace_pt_show_cmd, _("\
2946 Show Intel(R) Processor Trace specific variables."),
2947 &maint_btrace_pt_show_cmdlist, "maintenance show btrace pt ",
2948 0, &maint_btrace_show_cmdlist);
2950 add_setshow_boolean_cmd ("skip-pad", class_maintenance,
2951 &maint_btrace_pt_skip_pad, _("\
2952 Set whether PAD packets should be skipped in the btrace packet history."), _("\
2953 Show whether PAD packets should be skipped in the btrace packet history."),_("\
2954 When enabled, PAD packets are ignored in the btrace packet history."),
2955 NULL, show_maint_btrace_pt_skip_pad,
2956 &maint_btrace_pt_set_cmdlist,
2957 &maint_btrace_pt_show_cmdlist);
2959 add_cmd ("packet-history", class_maintenance, maint_btrace_packet_history_cmd,
2960 _("Print the raw branch tracing data.\n\
2961 With no argument, print ten more packets after the previous ten-line print.\n\
2962 With '-' as argument print ten packets before a previous ten-line print.\n\
2963 One argument specifies the starting packet of a ten-line print.\n\
2964 Two arguments with comma between specify starting and ending packets to \
2966 Preceded with '+'/'-' the second argument specifies the distance from the \
2968 &maint_btrace_cmdlist);
2970 add_cmd ("clear-packet-history", class_maintenance,
2971 maint_btrace_clear_packet_history_cmd,
2972 _("Clears the branch tracing packet history.\n\
2973 Discards the raw branch tracing data but not the execution history data.\n\
2975 &maint_btrace_cmdlist);
2977 add_cmd ("clear", class_maintenance, maint_btrace_clear_cmd,
2978 _("Clears the branch tracing data.\n\
2979 Discards the raw branch tracing data and the execution history data.\n\
2980 The next 'record' command will fetch the branch tracing data anew.\n\
2982 &maint_btrace_cmdlist);