[GDBserver][AArch64] Cleanup comments for each linux_target_ops method
[deliverable/binutils-gdb.git] / gdb / btrace.c
CommitLineData
02d27625
MM
1/* Branch trace support for GDB, the GNU debugger.
2
32d0add0 3 Copyright (C) 2013-2015 Free Software Foundation, Inc.
02d27625
MM
4
5 Contributed by Intel Corp. <markus.t.metzger@intel.com>
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
d41f6d8e 22#include "defs.h"
02d27625
MM
23#include "btrace.h"
24#include "gdbthread.h"
02d27625
MM
25#include "inferior.h"
26#include "target.h"
27#include "record.h"
28#include "symtab.h"
29#include "disasm.h"
30#include "source.h"
31#include "filenames.h"
c12a2917 32#include "xml-support.h"
6e07b1d2 33#include "regcache.h"
b20a6524 34#include "rsp-low.h"
b0627500
MM
35#include "gdbcmd.h"
36#include "cli/cli-utils.h"
b20a6524
MM
37
38#include <inttypes.h>
b0627500
MM
39#include <ctype.h>
40
41/* Command lists for btrace maintenance commands. */
42static struct cmd_list_element *maint_btrace_cmdlist;
43static struct cmd_list_element *maint_btrace_set_cmdlist;
44static struct cmd_list_element *maint_btrace_show_cmdlist;
45static struct cmd_list_element *maint_btrace_pt_set_cmdlist;
46static struct cmd_list_element *maint_btrace_pt_show_cmdlist;
47
48/* Control whether to skip PAD packets when computing the packet history. */
49static int maint_btrace_pt_skip_pad = 1;
b20a6524
MM
50
51static void btrace_add_pc (struct thread_info *tp);
02d27625
MM
52
53/* Print a record debug message. Use do ... while (0) to avoid ambiguities
54 when used in if statements. */
55
56#define DEBUG(msg, args...) \
57 do \
58 { \
59 if (record_debug != 0) \
60 fprintf_unfiltered (gdb_stdlog, \
61 "[btrace] " msg "\n", ##args); \
62 } \
63 while (0)
64
65#define DEBUG_FTRACE(msg, args...) DEBUG ("[ftrace] " msg, ##args)
66
02d27625
MM
67/* Return the function name of a recorded function segment for printing.
68 This function never returns NULL. */
69
70static const char *
23a7fe75 71ftrace_print_function_name (const struct btrace_function *bfun)
02d27625
MM
72{
73 struct minimal_symbol *msym;
74 struct symbol *sym;
75
76 msym = bfun->msym;
77 sym = bfun->sym;
78
79 if (sym != NULL)
80 return SYMBOL_PRINT_NAME (sym);
81
82 if (msym != NULL)
efd66ac6 83 return MSYMBOL_PRINT_NAME (msym);
02d27625
MM
84
85 return "<unknown>";
86}
87
88/* Return the file name of a recorded function segment for printing.
89 This function never returns NULL. */
90
91static const char *
23a7fe75 92ftrace_print_filename (const struct btrace_function *bfun)
02d27625
MM
93{
94 struct symbol *sym;
95 const char *filename;
96
97 sym = bfun->sym;
98
99 if (sym != NULL)
08be3fe3 100 filename = symtab_to_filename_for_display (symbol_symtab (sym));
02d27625
MM
101 else
102 filename = "<unknown>";
103
104 return filename;
105}
106
23a7fe75
MM
107/* Return a string representation of the address of an instruction.
108 This function never returns NULL. */
02d27625 109
23a7fe75
MM
110static const char *
111ftrace_print_insn_addr (const struct btrace_insn *insn)
02d27625 112{
23a7fe75
MM
113 if (insn == NULL)
114 return "<nil>";
115
116 return core_addr_to_string_nz (insn->pc);
02d27625
MM
117}
118
23a7fe75 119/* Print an ftrace debug status message. */
02d27625
MM
120
121static void
23a7fe75 122ftrace_debug (const struct btrace_function *bfun, const char *prefix)
02d27625 123{
23a7fe75
MM
124 const char *fun, *file;
125 unsigned int ibegin, iend;
ce0dfbea 126 int level;
23a7fe75
MM
127
128 fun = ftrace_print_function_name (bfun);
129 file = ftrace_print_filename (bfun);
130 level = bfun->level;
131
23a7fe75
MM
132 ibegin = bfun->insn_offset;
133 iend = ibegin + VEC_length (btrace_insn_s, bfun->insn);
134
ce0dfbea
MM
135 DEBUG_FTRACE ("%s: fun = %s, file = %s, level = %d, insn = [%u; %u)",
136 prefix, fun, file, level, ibegin, iend);
02d27625
MM
137}
138
23a7fe75
MM
139/* Return non-zero if BFUN does not match MFUN and FUN,
140 return zero otherwise. */
02d27625
MM
141
142static int
23a7fe75
MM
143ftrace_function_switched (const struct btrace_function *bfun,
144 const struct minimal_symbol *mfun,
145 const struct symbol *fun)
02d27625
MM
146{
147 struct minimal_symbol *msym;
148 struct symbol *sym;
149
02d27625
MM
150 msym = bfun->msym;
151 sym = bfun->sym;
152
153 /* If the minimal symbol changed, we certainly switched functions. */
154 if (mfun != NULL && msym != NULL
efd66ac6 155 && strcmp (MSYMBOL_LINKAGE_NAME (mfun), MSYMBOL_LINKAGE_NAME (msym)) != 0)
02d27625
MM
156 return 1;
157
158 /* If the symbol changed, we certainly switched functions. */
159 if (fun != NULL && sym != NULL)
160 {
161 const char *bfname, *fname;
162
163 /* Check the function name. */
164 if (strcmp (SYMBOL_LINKAGE_NAME (fun), SYMBOL_LINKAGE_NAME (sym)) != 0)
165 return 1;
166
167 /* Check the location of those functions, as well. */
08be3fe3
DE
168 bfname = symtab_to_fullname (symbol_symtab (sym));
169 fname = symtab_to_fullname (symbol_symtab (fun));
02d27625
MM
170 if (filename_cmp (fname, bfname) != 0)
171 return 1;
172 }
173
23a7fe75
MM
174 /* If we lost symbol information, we switched functions. */
175 if (!(msym == NULL && sym == NULL) && mfun == NULL && fun == NULL)
176 return 1;
177
178 /* If we gained symbol information, we switched functions. */
179 if (msym == NULL && sym == NULL && !(mfun == NULL && fun == NULL))
180 return 1;
181
02d27625
MM
182 return 0;
183}
184
23a7fe75
MM
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. */
188
189static struct btrace_function *
190ftrace_new_function (struct btrace_function *prev,
191 struct minimal_symbol *mfun,
192 struct symbol *fun)
193{
194 struct btrace_function *bfun;
195
196 bfun = xzalloc (sizeof (*bfun));
197
198 bfun->msym = mfun;
199 bfun->sym = fun;
200 bfun->flow.prev = prev;
201
5de9129b
MM
202 if (prev == NULL)
203 {
204 /* Start counting at one. */
205 bfun->number = 1;
206 bfun->insn_offset = 1;
207 }
208 else
23a7fe75
MM
209 {
210 gdb_assert (prev->flow.next == NULL);
211 prev->flow.next = bfun;
02d27625 212
23a7fe75
MM
213 bfun->number = prev->number + 1;
214 bfun->insn_offset = (prev->insn_offset
215 + VEC_length (btrace_insn_s, prev->insn));
31fd9caa 216 bfun->level = prev->level;
23a7fe75
MM
217 }
218
219 return bfun;
02d27625
MM
220}
221
23a7fe75 222/* Update the UP field of a function segment. */
02d27625 223
23a7fe75
MM
224static void
225ftrace_update_caller (struct btrace_function *bfun,
226 struct btrace_function *caller,
227 enum btrace_function_flag flags)
02d27625 228{
23a7fe75
MM
229 if (bfun->up != NULL)
230 ftrace_debug (bfun, "updating caller");
02d27625 231
23a7fe75
MM
232 bfun->up = caller;
233 bfun->flags = flags;
234
235 ftrace_debug (bfun, "set caller");
236}
237
238/* Fix up the caller for all segments of a function. */
239
240static void
241ftrace_fixup_caller (struct btrace_function *bfun,
242 struct btrace_function *caller,
243 enum btrace_function_flag flags)
244{
245 struct btrace_function *prev, *next;
246
247 ftrace_update_caller (bfun, caller, flags);
248
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);
252
253 for (next = bfun->segment.next; next != NULL; next = next->segment.next)
254 ftrace_update_caller (next, caller, flags);
255}
256
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. */
260
261static struct btrace_function *
262ftrace_new_call (struct btrace_function *caller,
263 struct minimal_symbol *mfun,
264 struct symbol *fun)
265{
266 struct btrace_function *bfun;
267
268 bfun = ftrace_new_function (caller, mfun, fun);
269 bfun->up = caller;
31fd9caa 270 bfun->level += 1;
23a7fe75
MM
271
272 ftrace_debug (bfun, "new call");
273
274 return bfun;
275}
276
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. */
280
281static struct btrace_function *
282ftrace_new_tailcall (struct btrace_function *caller,
283 struct minimal_symbol *mfun,
284 struct symbol *fun)
285{
286 struct btrace_function *bfun;
02d27625 287
23a7fe75
MM
288 bfun = ftrace_new_function (caller, mfun, fun);
289 bfun->up = caller;
31fd9caa 290 bfun->level += 1;
23a7fe75 291 bfun->flags |= BFUN_UP_LINKS_TO_TAILCALL;
02d27625 292
23a7fe75
MM
293 ftrace_debug (bfun, "new tail call");
294
295 return bfun;
296}
297
298/* Find the innermost caller in the back trace of BFUN with MFUN/FUN
299 symbol information. */
300
301static struct btrace_function *
302ftrace_find_caller (struct btrace_function *bfun,
303 struct minimal_symbol *mfun,
304 struct symbol *fun)
305{
306 for (; bfun != NULL; bfun = bfun->up)
307 {
308 /* Skip functions with incompatible symbol information. */
309 if (ftrace_function_switched (bfun, mfun, fun))
310 continue;
311
312 /* This is the function segment we're looking for. */
313 break;
314 }
315
316 return bfun;
317}
318
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). */
322
323static struct btrace_function *
7d5c24b3 324ftrace_find_call (struct btrace_function *bfun)
23a7fe75
MM
325{
326 for (; bfun != NULL; bfun = bfun->up)
02d27625 327 {
23a7fe75 328 struct btrace_insn *last;
02d27625 329
31fd9caa
MM
330 /* Skip gaps. */
331 if (bfun->errcode != 0)
332 continue;
23a7fe75
MM
333
334 last = VEC_last (btrace_insn_s, bfun->insn);
02d27625 335
7d5c24b3 336 if (last->iclass == BTRACE_INSN_CALL)
23a7fe75
MM
337 break;
338 }
339
340 return bfun;
341}
342
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. */
346
347static struct btrace_function *
7d5c24b3 348ftrace_new_return (struct btrace_function *prev,
23a7fe75
MM
349 struct minimal_symbol *mfun,
350 struct symbol *fun)
351{
352 struct btrace_function *bfun, *caller;
353
354 bfun = ftrace_new_function (prev, mfun, fun);
355
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);
359 if (caller != NULL)
360 {
361 /* The caller of PREV is the preceding btrace function segment in this
362 function instance. */
363 gdb_assert (caller->segment.next == NULL);
364
365 caller->segment.next = bfun;
366 bfun->segment.prev = caller;
367
368 /* Maintain the function level. */
369 bfun->level = caller->level;
370
371 /* Maintain the call stack. */
372 bfun->up = caller->up;
373 bfun->flags = caller->flags;
374
375 ftrace_debug (bfun, "new return");
376 }
377 else
378 {
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. */
02d27625 381
23a7fe75 382 /* Let's search for some actual call. */
7d5c24b3 383 caller = ftrace_find_call (prev->up);
23a7fe75 384 if (caller == NULL)
02d27625 385 {
23a7fe75
MM
386 /* There is no call in PREV's back trace. We assume that the
387 branch trace did not include it. */
388
389 /* Let's find the topmost call function - this skips tail calls. */
390 while (prev->up != NULL)
391 prev = prev->up;
02d27625 392
23a7fe75
MM
393 /* We maintain levels for a series of returns for which we have
394 not seen the calls.
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;
399
400 /* Fix up the call stack for PREV. */
401 ftrace_fixup_caller (prev, bfun, BFUN_UP_LINKS_TO_RET);
402
403 ftrace_debug (bfun, "new return - no caller");
404 }
405 else
02d27625 406 {
23a7fe75
MM
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;
02d27625 410
23a7fe75 411 ftrace_debug (bfun, "new return - unknown caller");
02d27625 412 }
23a7fe75
MM
413 }
414
415 return bfun;
416}
417
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. */
421
422static struct btrace_function *
423ftrace_new_switch (struct btrace_function *prev,
424 struct minimal_symbol *mfun,
425 struct symbol *fun)
426{
427 struct btrace_function *bfun;
428
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);
02d27625 432
23a7fe75
MM
433 ftrace_debug (bfun, "new switch");
434
435 return bfun;
436}
437
31fd9caa
MM
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. */
441
442static struct btrace_function *
443ftrace_new_gap (struct btrace_function *prev, int errcode)
444{
445 struct btrace_function *bfun;
446
447 /* We hijack prev if it was empty. */
448 if (prev != NULL && prev->errcode == 0
449 && VEC_empty (btrace_insn_s, prev->insn))
450 bfun = prev;
451 else
452 bfun = ftrace_new_function (prev, NULL, NULL);
453
454 bfun->errcode = errcode;
455
456 ftrace_debug (bfun, "new gap");
457
458 return bfun;
459}
460
23a7fe75
MM
461/* Update BFUN with respect to the instruction at PC. This may create new
462 function segments.
463 Return the chronologically latest function segment, never NULL. */
464
465static struct btrace_function *
7d5c24b3 466ftrace_update_function (struct btrace_function *bfun, CORE_ADDR pc)
23a7fe75
MM
467{
468 struct bound_minimal_symbol bmfun;
469 struct minimal_symbol *mfun;
470 struct symbol *fun;
471 struct btrace_insn *last;
472
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);
478 mfun = bmfun.minsym;
479
480 if (fun == NULL && mfun == NULL)
481 DEBUG_FTRACE ("no symbol at %s", core_addr_to_string_nz (pc));
482
31fd9caa
MM
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)
23a7fe75
MM
485 return ftrace_new_function (bfun, mfun, fun);
486
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. */
490 last = NULL;
491 if (!VEC_empty (btrace_insn_s, bfun->insn))
492 last = VEC_last (btrace_insn_s, bfun->insn);
493
494 if (last != NULL)
495 {
7d5c24b3
MM
496 switch (last->iclass)
497 {
498 case BTRACE_INSN_RETURN:
986b6601
MM
499 {
500 const char *fname;
501
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);
514
515 return ftrace_new_return (bfun, mfun, fun);
516 }
23a7fe75 517
7d5c24b3
MM
518 case BTRACE_INSN_CALL:
519 /* Ignore calls to the next instruction. They are used for PIC. */
520 if (last->pc + last->size == pc)
521 break;
23a7fe75 522
7d5c24b3 523 return ftrace_new_call (bfun, mfun, fun);
23a7fe75 524
7d5c24b3
MM
525 case BTRACE_INSN_JUMP:
526 {
527 CORE_ADDR start;
23a7fe75 528
7d5c24b3 529 start = get_pc_function_start (pc);
23a7fe75 530
7d5c24b3
MM
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);
535 }
02d27625 536 }
23a7fe75
MM
537 }
538
539 /* Check if we're switching functions for some other reason. */
540 if (ftrace_function_switched (bfun, mfun, fun))
541 {
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));
02d27625 546
23a7fe75
MM
547 return ftrace_new_switch (bfun, mfun, fun);
548 }
549
550 return bfun;
551}
552
23a7fe75
MM
553/* Add the instruction at PC to BFUN's instructions. */
554
555static void
7d5c24b3
MM
556ftrace_update_insns (struct btrace_function *bfun,
557 const struct btrace_insn *insn)
23a7fe75 558{
7d5c24b3 559 VEC_safe_push (btrace_insn_s, bfun->insn, insn);
23a7fe75
MM
560
561 if (record_debug > 1)
562 ftrace_debug (bfun, "update insn");
563}
564
7d5c24b3
MM
565/* Classify the instruction at PC. */
566
567static enum btrace_insn_class
568ftrace_classify_insn (struct gdbarch *gdbarch, CORE_ADDR pc)
569{
7d5c24b3
MM
570 enum btrace_insn_class iclass;
571
572 iclass = BTRACE_INSN_OTHER;
492d29ea 573 TRY
7d5c24b3
MM
574 {
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;
581 }
492d29ea
PA
582 CATCH (error, RETURN_MASK_ERROR)
583 {
584 }
585 END_CATCH
7d5c24b3
MM
586
587 return iclass;
588}
589
734b0e4b 590/* Compute the function branch trace from BTS trace. */
23a7fe75
MM
591
592static void
76235df1 593btrace_compute_ftrace_bts (struct thread_info *tp,
734b0e4b 594 const struct btrace_data_bts *btrace)
23a7fe75 595{
76235df1 596 struct btrace_thread_info *btinfo;
23a7fe75
MM
597 struct btrace_function *begin, *end;
598 struct gdbarch *gdbarch;
31fd9caa 599 unsigned int blk, ngaps;
23a7fe75
MM
600 int level;
601
23a7fe75 602 gdbarch = target_gdbarch ();
76235df1 603 btinfo = &tp->btrace;
969c39fb
MM
604 begin = btinfo->begin;
605 end = btinfo->end;
31fd9caa 606 ngaps = btinfo->ngaps;
969c39fb 607 level = begin != NULL ? -btinfo->level : INT_MAX;
734b0e4b 608 blk = VEC_length (btrace_block_s, btrace->blocks);
23a7fe75
MM
609
610 while (blk != 0)
611 {
612 btrace_block_s *block;
613 CORE_ADDR pc;
614
615 blk -= 1;
616
734b0e4b 617 block = VEC_index (btrace_block_s, btrace->blocks, blk);
23a7fe75
MM
618 pc = block->begin;
619
620 for (;;)
621 {
7d5c24b3 622 struct btrace_insn insn;
23a7fe75
MM
623 int size;
624
625 /* We should hit the end of the block. Warn if we went too far. */
626 if (block->end < pc)
627 {
31fd9caa
MM
628 /* Indicate the gap in the trace - unless we're at the
629 beginning. */
630 if (begin != NULL)
631 {
632 warning (_("Recorded trace may be corrupted around %s."),
633 core_addr_to_string_nz (pc));
634
635 end = ftrace_new_gap (end, BDE_BTS_OVERFLOW);
636 ngaps += 1;
637 }
23a7fe75
MM
638 break;
639 }
640
7d5c24b3 641 end = ftrace_update_function (end, pc);
23a7fe75
MM
642 if (begin == NULL)
643 begin = end;
644
8710b709
MM
645 /* Maintain the function level offset.
646 For all but the last block, we do it here. */
647 if (blk != 0)
648 level = min (level, end->level);
23a7fe75 649
7d5c24b3 650 size = 0;
492d29ea
PA
651 TRY
652 {
653 size = gdb_insn_length (gdbarch, pc);
654 }
655 CATCH (error, RETURN_MASK_ERROR)
656 {
657 }
658 END_CATCH
7d5c24b3
MM
659
660 insn.pc = pc;
661 insn.size = size;
662 insn.iclass = ftrace_classify_insn (gdbarch, pc);
663
664 ftrace_update_insns (end, &insn);
23a7fe75
MM
665
666 /* We're done once we pushed the instruction at the end. */
667 if (block->end == pc)
668 break;
669
7d5c24b3 670 /* We can't continue if we fail to compute the size. */
23a7fe75
MM
671 if (size <= 0)
672 {
673 warning (_("Recorded trace may be incomplete around %s."),
674 core_addr_to_string_nz (pc));
31fd9caa
MM
675
676 /* Indicate the gap in the trace. We just added INSN so we're
677 not at the beginning. */
678 end = ftrace_new_gap (end, BDE_BTS_INSN_SIZE);
679 ngaps += 1;
680
23a7fe75
MM
681 break;
682 }
683
684 pc += size;
8710b709
MM
685
686 /* Maintain the function level offset.
687 For the last block, we do it here to not consider the last
688 instruction.
689 Since the last instruction corresponds to the current instruction
690 and is not really part of the execution history, it shouldn't
691 affect the level. */
692 if (blk == 0)
693 level = min (level, end->level);
23a7fe75 694 }
02d27625
MM
695 }
696
23a7fe75
MM
697 btinfo->begin = begin;
698 btinfo->end = end;
31fd9caa 699 btinfo->ngaps = ngaps;
23a7fe75
MM
700
701 /* LEVEL is the minimal function level of all btrace function segments.
702 Define the global level offset to -LEVEL so all function levels are
703 normalized to start at zero. */
704 btinfo->level = -level;
02d27625
MM
705}
706
b20a6524
MM
707#if defined (HAVE_LIBIPT)
708
709static enum btrace_insn_class
710pt_reclassify_insn (enum pt_insn_class iclass)
711{
712 switch (iclass)
713 {
714 case ptic_call:
715 return BTRACE_INSN_CALL;
716
717 case ptic_return:
718 return BTRACE_INSN_RETURN;
719
720 case ptic_jump:
721 return BTRACE_INSN_JUMP;
722
723 default:
724 return BTRACE_INSN_OTHER;
725 }
726}
727
728/* Add function branch trace using DECODER. */
729
730static void
731ftrace_add_pt (struct pt_insn_decoder *decoder,
732 struct btrace_function **pbegin,
733 struct btrace_function **pend, int *plevel,
734 unsigned int *ngaps)
735{
736 struct btrace_function *begin, *end, *upd;
737 uint64_t offset;
738 int errcode, nerrors;
739
740 begin = *pbegin;
741 end = *pend;
742 nerrors = 0;
743 for (;;)
744 {
745 struct btrace_insn btinsn;
746 struct pt_insn insn;
747
748 errcode = pt_insn_sync_forward (decoder);
749 if (errcode < 0)
750 {
751 if (errcode != -pte_eos)
752 warning (_("Failed to synchronize onto the Intel(R) Processor "
753 "Trace stream: %s."), pt_errstr (pt_errcode (errcode)));
754 break;
755 }
756
757 memset (&btinsn, 0, sizeof (btinsn));
758 for (;;)
759 {
760 errcode = pt_insn_next (decoder, &insn, sizeof(insn));
761 if (errcode < 0)
762 break;
763
764 /* Look for gaps in the trace - unless we're at the beginning. */
765 if (begin != NULL)
766 {
767 /* Tracing is disabled and re-enabled each time we enter the
768 kernel. Most times, we continue from the same instruction we
769 stopped before. This is indicated via the RESUMED instruction
770 flag. The ENABLED instruction flag means that we continued
771 from some other instruction. Indicate this as a trace gap. */
772 if (insn.enabled)
773 *pend = end = ftrace_new_gap (end, BDE_PT_DISABLED);
774
775 /* Indicate trace overflows. */
776 if (insn.resynced)
777 *pend = end = ftrace_new_gap (end, BDE_PT_OVERFLOW);
778 }
779
780 upd = ftrace_update_function (end, insn.ip);
781 if (upd != end)
782 {
783 *pend = end = upd;
784
785 if (begin == NULL)
786 *pbegin = begin = upd;
787 }
788
789 /* Maintain the function level offset. */
790 *plevel = min (*plevel, end->level);
791
792 btinsn.pc = (CORE_ADDR) insn.ip;
793 btinsn.size = (gdb_byte) insn.size;
794 btinsn.iclass = pt_reclassify_insn (insn.iclass);
795
796 ftrace_update_insns (end, &btinsn);
797 }
798
799 if (errcode == -pte_eos)
800 break;
801
802 /* If the gap is at the very beginning, we ignore it - we will have
803 less trace, but we won't have any holes in the trace. */
804 if (begin == NULL)
805 continue;
806
807 pt_insn_get_offset (decoder, &offset);
808
809 warning (_("Failed to decode Intel(R) Processor Trace near trace "
810 "offset 0x%" PRIx64 " near recorded PC 0x%" PRIx64 ": %s."),
811 offset, insn.ip, pt_errstr (pt_errcode (errcode)));
812
813 /* Indicate the gap in the trace. */
814 *pend = end = ftrace_new_gap (end, errcode);
815 *ngaps += 1;
816 }
817
818 if (nerrors > 0)
819 warning (_("The recorded execution trace may have gaps."));
820}
821
822/* A callback function to allow the trace decoder to read the inferior's
823 memory. */
824
825static int
826btrace_pt_readmem_callback (gdb_byte *buffer, size_t size,
80a2b330 827 const struct pt_asid *asid, uint64_t pc,
b20a6524
MM
828 void *context)
829{
830 int errcode;
831
832 TRY
833 {
80a2b330 834 errcode = target_read_code ((CORE_ADDR) pc, buffer, size);
b20a6524
MM
835 if (errcode != 0)
836 return -pte_nomap;
837 }
838 CATCH (error, RETURN_MASK_ERROR)
839 {
840 return -pte_nomap;
841 }
842 END_CATCH
843
844 return size;
845}
846
847/* Translate the vendor from one enum to another. */
848
849static enum pt_cpu_vendor
850pt_translate_cpu_vendor (enum btrace_cpu_vendor vendor)
851{
852 switch (vendor)
853 {
854 default:
855 return pcv_unknown;
856
857 case CV_INTEL:
858 return pcv_intel;
859 }
860}
861
862/* Finalize the function branch trace after decode. */
863
864static void btrace_finalize_ftrace_pt (struct pt_insn_decoder *decoder,
865 struct thread_info *tp, int level)
866{
867 pt_insn_free_decoder (decoder);
868
869 /* LEVEL is the minimal function level of all btrace function segments.
870 Define the global level offset to -LEVEL so all function levels are
871 normalized to start at zero. */
872 tp->btrace.level = -level;
873
874 /* Add a single last instruction entry for the current PC.
875 This allows us to compute the backtrace at the current PC using both
876 standard unwind and btrace unwind.
877 This extra entry is ignored by all record commands. */
878 btrace_add_pc (tp);
879}
880
881/* Compute the function branch trace from Intel(R) Processor Trace. */
882
883static void
884btrace_compute_ftrace_pt (struct thread_info *tp,
885 const struct btrace_data_pt *btrace)
886{
887 struct btrace_thread_info *btinfo;
888 struct pt_insn_decoder *decoder;
889 struct pt_config config;
890 int level, errcode;
891
892 if (btrace->size == 0)
893 return;
894
895 btinfo = &tp->btrace;
896 level = btinfo->begin != NULL ? -btinfo->level : INT_MAX;
897
898 pt_config_init(&config);
899 config.begin = btrace->data;
900 config.end = btrace->data + btrace->size;
901
902 config.cpu.vendor = pt_translate_cpu_vendor (btrace->config.cpu.vendor);
903 config.cpu.family = btrace->config.cpu.family;
904 config.cpu.model = btrace->config.cpu.model;
905 config.cpu.stepping = btrace->config.cpu.stepping;
906
907 errcode = pt_cpu_errata (&config.errata, &config.cpu);
908 if (errcode < 0)
909 error (_("Failed to configure the Intel(R) Processor Trace decoder: %s."),
910 pt_errstr (pt_errcode (errcode)));
911
912 decoder = pt_insn_alloc_decoder (&config);
913 if (decoder == NULL)
914 error (_("Failed to allocate the Intel(R) Processor Trace decoder."));
915
916 TRY
917 {
918 struct pt_image *image;
919
920 image = pt_insn_get_image(decoder);
921 if (image == NULL)
922 error (_("Failed to configure the Intel(R) Processor Trace decoder."));
923
924 errcode = pt_image_set_callback(image, btrace_pt_readmem_callback, NULL);
925 if (errcode < 0)
926 error (_("Failed to configure the Intel(R) Processor Trace decoder: "
927 "%s."), pt_errstr (pt_errcode (errcode)));
928
929 ftrace_add_pt (decoder, &btinfo->begin, &btinfo->end, &level,
930 &btinfo->ngaps);
931 }
932 CATCH (error, RETURN_MASK_ALL)
933 {
934 /* Indicate a gap in the trace if we quit trace processing. */
935 if (error.reason == RETURN_QUIT && btinfo->end != NULL)
936 {
937 btinfo->end = ftrace_new_gap (btinfo->end, BDE_PT_USER_QUIT);
938 btinfo->ngaps++;
939 }
940
941 btrace_finalize_ftrace_pt (decoder, tp, level);
942
943 throw_exception (error);
944 }
945 END_CATCH
946
947 btrace_finalize_ftrace_pt (decoder, tp, level);
948}
949
950#else /* defined (HAVE_LIBIPT) */
951
952static void
953btrace_compute_ftrace_pt (struct thread_info *tp,
954 const struct btrace_data_pt *btrace)
955{
956 internal_error (__FILE__, __LINE__, _("Unexpected branch trace format."));
957}
958
959#endif /* defined (HAVE_LIBIPT) */
960
734b0e4b
MM
961/* Compute the function branch trace from a block branch trace BTRACE for
962 a thread given by BTINFO. */
963
964static void
76235df1 965btrace_compute_ftrace (struct thread_info *tp, struct btrace_data *btrace)
734b0e4b
MM
966{
967 DEBUG ("compute ftrace");
968
969 switch (btrace->format)
970 {
971 case BTRACE_FORMAT_NONE:
972 return;
973
974 case BTRACE_FORMAT_BTS:
76235df1 975 btrace_compute_ftrace_bts (tp, &btrace->variant.bts);
734b0e4b 976 return;
b20a6524
MM
977
978 case BTRACE_FORMAT_PT:
979 btrace_compute_ftrace_pt (tp, &btrace->variant.pt);
980 return;
734b0e4b
MM
981 }
982
983 internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
984}
985
6e07b1d2
MM
986/* Add an entry for the current PC. */
987
988static void
989btrace_add_pc (struct thread_info *tp)
990{
734b0e4b 991 struct btrace_data btrace;
6e07b1d2
MM
992 struct btrace_block *block;
993 struct regcache *regcache;
994 struct cleanup *cleanup;
995 CORE_ADDR pc;
996
997 regcache = get_thread_regcache (tp->ptid);
998 pc = regcache_read_pc (regcache);
999
734b0e4b
MM
1000 btrace_data_init (&btrace);
1001 btrace.format = BTRACE_FORMAT_BTS;
1002 btrace.variant.bts.blocks = NULL;
6e07b1d2 1003
734b0e4b
MM
1004 cleanup = make_cleanup_btrace_data (&btrace);
1005
1006 block = VEC_safe_push (btrace_block_s, btrace.variant.bts.blocks, NULL);
6e07b1d2
MM
1007 block->begin = pc;
1008 block->end = pc;
1009
76235df1 1010 btrace_compute_ftrace (tp, &btrace);
6e07b1d2
MM
1011
1012 do_cleanups (cleanup);
1013}
1014
02d27625
MM
1015/* See btrace.h. */
1016
1017void
f4abbc16 1018btrace_enable (struct thread_info *tp, const struct btrace_config *conf)
02d27625
MM
1019{
1020 if (tp->btrace.target != NULL)
1021 return;
1022
f4abbc16 1023 if (!target_supports_btrace (conf->format))
02d27625
MM
1024 error (_("Target does not support branch tracing."));
1025
1026 DEBUG ("enable thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1027
f4abbc16 1028 tp->btrace.target = target_enable_btrace (tp->ptid, conf);
6e07b1d2
MM
1029
1030 /* Add an entry for the current PC so we start tracing from where we
1031 enabled it. */
1032 if (tp->btrace.target != NULL)
1033 btrace_add_pc (tp);
02d27625
MM
1034}
1035
1036/* See btrace.h. */
1037
f4abbc16
MM
1038const struct btrace_config *
1039btrace_conf (const struct btrace_thread_info *btinfo)
1040{
1041 if (btinfo->target == NULL)
1042 return NULL;
1043
1044 return target_btrace_conf (btinfo->target);
1045}
1046
1047/* See btrace.h. */
1048
02d27625
MM
1049void
1050btrace_disable (struct thread_info *tp)
1051{
1052 struct btrace_thread_info *btp = &tp->btrace;
1053 int errcode = 0;
1054
1055 if (btp->target == NULL)
1056 return;
1057
1058 DEBUG ("disable thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1059
1060 target_disable_btrace (btp->target);
1061 btp->target = NULL;
1062
1063 btrace_clear (tp);
1064}
1065
1066/* See btrace.h. */
1067
1068void
1069btrace_teardown (struct thread_info *tp)
1070{
1071 struct btrace_thread_info *btp = &tp->btrace;
1072 int errcode = 0;
1073
1074 if (btp->target == NULL)
1075 return;
1076
1077 DEBUG ("teardown thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1078
1079 target_teardown_btrace (btp->target);
1080 btp->target = NULL;
1081
1082 btrace_clear (tp);
1083}
1084
734b0e4b 1085/* Stitch branch trace in BTS format. */
969c39fb
MM
1086
1087static int
31fd9caa 1088btrace_stitch_bts (struct btrace_data_bts *btrace, struct thread_info *tp)
969c39fb 1089{
31fd9caa 1090 struct btrace_thread_info *btinfo;
969c39fb
MM
1091 struct btrace_function *last_bfun;
1092 struct btrace_insn *last_insn;
1093 btrace_block_s *first_new_block;
1094
31fd9caa 1095 btinfo = &tp->btrace;
969c39fb
MM
1096 last_bfun = btinfo->end;
1097 gdb_assert (last_bfun != NULL);
31fd9caa
MM
1098 gdb_assert (!VEC_empty (btrace_block_s, btrace->blocks));
1099
1100 /* If the existing trace ends with a gap, we just glue the traces
1101 together. We need to drop the last (i.e. chronologically first) block
1102 of the new trace, though, since we can't fill in the start address.*/
1103 if (VEC_empty (btrace_insn_s, last_bfun->insn))
1104 {
1105 VEC_pop (btrace_block_s, btrace->blocks);
1106 return 0;
1107 }
969c39fb
MM
1108
1109 /* Beware that block trace starts with the most recent block, so the
1110 chronologically first block in the new trace is the last block in
1111 the new trace's block vector. */
734b0e4b 1112 first_new_block = VEC_last (btrace_block_s, btrace->blocks);
969c39fb
MM
1113 last_insn = VEC_last (btrace_insn_s, last_bfun->insn);
1114
1115 /* If the current PC at the end of the block is the same as in our current
1116 trace, there are two explanations:
1117 1. we executed the instruction and some branch brought us back.
1118 2. we have not made any progress.
1119 In the first case, the delta trace vector should contain at least two
1120 entries.
1121 In the second case, the delta trace vector should contain exactly one
1122 entry for the partial block containing the current PC. Remove it. */
1123 if (first_new_block->end == last_insn->pc
734b0e4b 1124 && VEC_length (btrace_block_s, btrace->blocks) == 1)
969c39fb 1125 {
734b0e4b 1126 VEC_pop (btrace_block_s, btrace->blocks);
969c39fb
MM
1127 return 0;
1128 }
1129
1130 DEBUG ("stitching %s to %s", ftrace_print_insn_addr (last_insn),
1131 core_addr_to_string_nz (first_new_block->end));
1132
1133 /* Do a simple sanity check to make sure we don't accidentally end up
1134 with a bad block. This should not occur in practice. */
1135 if (first_new_block->end < last_insn->pc)
1136 {
1137 warning (_("Error while trying to read delta trace. Falling back to "
1138 "a full read."));
1139 return -1;
1140 }
1141
1142 /* We adjust the last block to start at the end of our current trace. */
1143 gdb_assert (first_new_block->begin == 0);
1144 first_new_block->begin = last_insn->pc;
1145
1146 /* We simply pop the last insn so we can insert it again as part of
1147 the normal branch trace computation.
1148 Since instruction iterators are based on indices in the instructions
1149 vector, we don't leave any pointers dangling. */
1150 DEBUG ("pruning insn at %s for stitching",
1151 ftrace_print_insn_addr (last_insn));
1152
1153 VEC_pop (btrace_insn_s, last_bfun->insn);
1154
1155 /* The instructions vector may become empty temporarily if this has
1156 been the only instruction in this function segment.
1157 This violates the invariant but will be remedied shortly by
1158 btrace_compute_ftrace when we add the new trace. */
31fd9caa
MM
1159
1160 /* The only case where this would hurt is if the entire trace consisted
1161 of just that one instruction. If we remove it, we might turn the now
1162 empty btrace function segment into a gap. But we don't want gaps at
1163 the beginning. To avoid this, we remove the entire old trace. */
1164 if (last_bfun == btinfo->begin && VEC_empty (btrace_insn_s, last_bfun->insn))
1165 btrace_clear (tp);
1166
969c39fb
MM
1167 return 0;
1168}
1169
734b0e4b
MM
1170/* Adjust the block trace in order to stitch old and new trace together.
1171 BTRACE is the new delta trace between the last and the current stop.
31fd9caa
MM
1172 TP is the traced thread.
1173 May modifx BTRACE as well as the existing trace in TP.
734b0e4b
MM
1174 Return 0 on success, -1 otherwise. */
1175
1176static int
31fd9caa 1177btrace_stitch_trace (struct btrace_data *btrace, struct thread_info *tp)
734b0e4b
MM
1178{
1179 /* If we don't have trace, there's nothing to do. */
1180 if (btrace_data_empty (btrace))
1181 return 0;
1182
1183 switch (btrace->format)
1184 {
1185 case BTRACE_FORMAT_NONE:
1186 return 0;
1187
1188 case BTRACE_FORMAT_BTS:
31fd9caa 1189 return btrace_stitch_bts (&btrace->variant.bts, tp);
b20a6524
MM
1190
1191 case BTRACE_FORMAT_PT:
1192 /* Delta reads are not supported. */
1193 return -1;
734b0e4b
MM
1194 }
1195
1196 internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
1197}
1198
969c39fb
MM
1199/* Clear the branch trace histories in BTINFO. */
1200
1201static void
1202btrace_clear_history (struct btrace_thread_info *btinfo)
1203{
1204 xfree (btinfo->insn_history);
1205 xfree (btinfo->call_history);
1206 xfree (btinfo->replay);
1207
1208 btinfo->insn_history = NULL;
1209 btinfo->call_history = NULL;
1210 btinfo->replay = NULL;
1211}
1212
b0627500
MM
1213/* Clear the branch trace maintenance histories in BTINFO. */
1214
1215static void
1216btrace_maint_clear (struct btrace_thread_info *btinfo)
1217{
1218 switch (btinfo->data.format)
1219 {
1220 default:
1221 break;
1222
1223 case BTRACE_FORMAT_BTS:
1224 btinfo->maint.variant.bts.packet_history.begin = 0;
1225 btinfo->maint.variant.bts.packet_history.end = 0;
1226 break;
1227
1228#if defined (HAVE_LIBIPT)
1229 case BTRACE_FORMAT_PT:
1230 xfree (btinfo->maint.variant.pt.packets);
1231
1232 btinfo->maint.variant.pt.packets = NULL;
1233 btinfo->maint.variant.pt.packet_history.begin = 0;
1234 btinfo->maint.variant.pt.packet_history.end = 0;
1235 break;
1236#endif /* defined (HAVE_LIBIPT) */
1237 }
1238}
1239
02d27625
MM
1240/* See btrace.h. */
1241
1242void
1243btrace_fetch (struct thread_info *tp)
1244{
1245 struct btrace_thread_info *btinfo;
969c39fb 1246 struct btrace_target_info *tinfo;
734b0e4b 1247 struct btrace_data btrace;
23a7fe75 1248 struct cleanup *cleanup;
969c39fb 1249 int errcode;
02d27625
MM
1250
1251 DEBUG ("fetch thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1252
1253 btinfo = &tp->btrace;
969c39fb
MM
1254 tinfo = btinfo->target;
1255 if (tinfo == NULL)
1256 return;
1257
1258 /* There's no way we could get new trace while replaying.
1259 On the other hand, delta trace would return a partial record with the
1260 current PC, which is the replay PC, not the last PC, as expected. */
1261 if (btinfo->replay != NULL)
02d27625
MM
1262 return;
1263
734b0e4b
MM
1264 btrace_data_init (&btrace);
1265 cleanup = make_cleanup_btrace_data (&btrace);
02d27625 1266
969c39fb
MM
1267 /* Let's first try to extend the trace we already have. */
1268 if (btinfo->end != NULL)
1269 {
1270 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_DELTA);
1271 if (errcode == 0)
1272 {
1273 /* Success. Let's try to stitch the traces together. */
31fd9caa 1274 errcode = btrace_stitch_trace (&btrace, tp);
969c39fb
MM
1275 }
1276 else
1277 {
1278 /* We failed to read delta trace. Let's try to read new trace. */
1279 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_NEW);
1280
1281 /* If we got any new trace, discard what we have. */
734b0e4b 1282 if (errcode == 0 && !btrace_data_empty (&btrace))
969c39fb
MM
1283 btrace_clear (tp);
1284 }
1285
1286 /* If we were not able to read the trace, we start over. */
1287 if (errcode != 0)
1288 {
1289 btrace_clear (tp);
1290 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_ALL);
1291 }
1292 }
1293 else
1294 errcode = target_read_btrace (&btrace, tinfo, BTRACE_READ_ALL);
1295
1296 /* If we were not able to read the branch trace, signal an error. */
1297 if (errcode != 0)
1298 error (_("Failed to read branch trace."));
1299
1300 /* Compute the trace, provided we have any. */
734b0e4b 1301 if (!btrace_data_empty (&btrace))
23a7fe75 1302 {
9be54cae
MM
1303 /* Store the raw trace data. The stored data will be cleared in
1304 btrace_clear, so we always append the new trace. */
1305 btrace_data_append (&btinfo->data, &btrace);
b0627500 1306 btrace_maint_clear (btinfo);
9be54cae 1307
969c39fb 1308 btrace_clear_history (btinfo);
76235df1 1309 btrace_compute_ftrace (tp, &btrace);
23a7fe75 1310 }
02d27625 1311
23a7fe75 1312 do_cleanups (cleanup);
02d27625
MM
1313}
1314
1315/* See btrace.h. */
1316
1317void
1318btrace_clear (struct thread_info *tp)
1319{
1320 struct btrace_thread_info *btinfo;
23a7fe75 1321 struct btrace_function *it, *trash;
02d27625
MM
1322
1323 DEBUG ("clear thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1324
0b722aec
MM
1325 /* Make sure btrace frames that may hold a pointer into the branch
1326 trace data are destroyed. */
1327 reinit_frame_cache ();
1328
02d27625
MM
1329 btinfo = &tp->btrace;
1330
23a7fe75
MM
1331 it = btinfo->begin;
1332 while (it != NULL)
1333 {
1334 trash = it;
1335 it = it->flow.next;
02d27625 1336
23a7fe75
MM
1337 xfree (trash);
1338 }
1339
1340 btinfo->begin = NULL;
1341 btinfo->end = NULL;
31fd9caa 1342 btinfo->ngaps = 0;
23a7fe75 1343
b0627500
MM
1344 /* Must clear the maint data before - it depends on BTINFO->DATA. */
1345 btrace_maint_clear (btinfo);
9be54cae 1346 btrace_data_clear (&btinfo->data);
969c39fb 1347 btrace_clear_history (btinfo);
02d27625
MM
1348}
1349
1350/* See btrace.h. */
1351
1352void
1353btrace_free_objfile (struct objfile *objfile)
1354{
1355 struct thread_info *tp;
1356
1357 DEBUG ("free objfile");
1358
034f788c 1359 ALL_NON_EXITED_THREADS (tp)
02d27625
MM
1360 btrace_clear (tp);
1361}
c12a2917
MM
1362
1363#if defined (HAVE_LIBEXPAT)
1364
1365/* Check the btrace document version. */
1366
1367static void
1368check_xml_btrace_version (struct gdb_xml_parser *parser,
1369 const struct gdb_xml_element *element,
1370 void *user_data, VEC (gdb_xml_value_s) *attributes)
1371{
1372 const char *version = xml_find_attribute (attributes, "version")->value;
1373
1374 if (strcmp (version, "1.0") != 0)
1375 gdb_xml_error (parser, _("Unsupported btrace version: \"%s\""), version);
1376}
1377
1378/* Parse a btrace "block" xml record. */
1379
1380static void
1381parse_xml_btrace_block (struct gdb_xml_parser *parser,
1382 const struct gdb_xml_element *element,
1383 void *user_data, VEC (gdb_xml_value_s) *attributes)
1384{
734b0e4b 1385 struct btrace_data *btrace;
c12a2917
MM
1386 struct btrace_block *block;
1387 ULONGEST *begin, *end;
1388
1389 btrace = user_data;
734b0e4b
MM
1390
1391 switch (btrace->format)
1392 {
1393 case BTRACE_FORMAT_BTS:
1394 break;
1395
1396 case BTRACE_FORMAT_NONE:
1397 btrace->format = BTRACE_FORMAT_BTS;
1398 btrace->variant.bts.blocks = NULL;
1399 break;
1400
1401 default:
1402 gdb_xml_error (parser, _("Btrace format error."));
1403 }
c12a2917
MM
1404
1405 begin = xml_find_attribute (attributes, "begin")->value;
1406 end = xml_find_attribute (attributes, "end")->value;
1407
734b0e4b 1408 block = VEC_safe_push (btrace_block_s, btrace->variant.bts.blocks, NULL);
c12a2917
MM
1409 block->begin = *begin;
1410 block->end = *end;
1411}
1412
b20a6524
MM
1413/* Parse a "raw" xml record. */
1414
1415static void
1416parse_xml_raw (struct gdb_xml_parser *parser, const char *body_text,
1417 gdb_byte **pdata, unsigned long *psize)
1418{
1419 struct cleanup *cleanup;
1420 gdb_byte *data, *bin;
1421 unsigned long size;
1422 size_t len;
1423
1424 len = strlen (body_text);
1425 size = len / 2;
1426
1427 if ((size_t) size * 2 != len)
1428 gdb_xml_error (parser, _("Bad raw data size."));
1429
1430 bin = data = xmalloc (size);
1431 cleanup = make_cleanup (xfree, data);
1432
1433 /* We use hex encoding - see common/rsp-low.h. */
1434 while (len > 0)
1435 {
1436 char hi, lo;
1437
1438 hi = *body_text++;
1439 lo = *body_text++;
1440
1441 if (hi == 0 || lo == 0)
1442 gdb_xml_error (parser, _("Bad hex encoding."));
1443
1444 *bin++ = fromhex (hi) * 16 + fromhex (lo);
1445 len -= 2;
1446 }
1447
1448 discard_cleanups (cleanup);
1449
1450 *pdata = data;
1451 *psize = size;
1452}
1453
1454/* Parse a btrace pt-config "cpu" xml record. */
1455
1456static void
1457parse_xml_btrace_pt_config_cpu (struct gdb_xml_parser *parser,
1458 const struct gdb_xml_element *element,
1459 void *user_data,
1460 VEC (gdb_xml_value_s) *attributes)
1461{
1462 struct btrace_data *btrace;
1463 const char *vendor;
1464 ULONGEST *family, *model, *stepping;
1465
1466 vendor = xml_find_attribute (attributes, "vendor")->value;
1467 family = xml_find_attribute (attributes, "family")->value;
1468 model = xml_find_attribute (attributes, "model")->value;
1469 stepping = xml_find_attribute (attributes, "stepping")->value;
1470
1471 btrace = user_data;
1472
1473 if (strcmp (vendor, "GenuineIntel") == 0)
1474 btrace->variant.pt.config.cpu.vendor = CV_INTEL;
1475
1476 btrace->variant.pt.config.cpu.family = *family;
1477 btrace->variant.pt.config.cpu.model = *model;
1478 btrace->variant.pt.config.cpu.stepping = *stepping;
1479}
1480
1481/* Parse a btrace pt "raw" xml record. */
1482
1483static void
1484parse_xml_btrace_pt_raw (struct gdb_xml_parser *parser,
1485 const struct gdb_xml_element *element,
1486 void *user_data, const char *body_text)
1487{
1488 struct btrace_data *btrace;
1489
1490 btrace = user_data;
1491 parse_xml_raw (parser, body_text, &btrace->variant.pt.data,
1492 &btrace->variant.pt.size);
1493}
1494
1495/* Parse a btrace "pt" xml record. */
1496
1497static void
1498parse_xml_btrace_pt (struct gdb_xml_parser *parser,
1499 const struct gdb_xml_element *element,
1500 void *user_data, VEC (gdb_xml_value_s) *attributes)
1501{
1502 struct btrace_data *btrace;
1503
1504 btrace = user_data;
1505 btrace->format = BTRACE_FORMAT_PT;
1506 btrace->variant.pt.config.cpu.vendor = CV_UNKNOWN;
1507 btrace->variant.pt.data = NULL;
1508 btrace->variant.pt.size = 0;
1509}
1510
c12a2917
MM
1511static const struct gdb_xml_attribute block_attributes[] = {
1512 { "begin", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1513 { "end", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1514 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1515};
1516
b20a6524
MM
1517static const struct gdb_xml_attribute btrace_pt_config_cpu_attributes[] = {
1518 { "vendor", GDB_XML_AF_NONE, NULL, NULL },
1519 { "family", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1520 { "model", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1521 { "stepping", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1522 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1523};
1524
1525static const struct gdb_xml_element btrace_pt_config_children[] = {
1526 { "cpu", btrace_pt_config_cpu_attributes, NULL, GDB_XML_EF_OPTIONAL,
1527 parse_xml_btrace_pt_config_cpu, NULL },
1528 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1529};
1530
1531static const struct gdb_xml_element btrace_pt_children[] = {
1532 { "pt-config", NULL, btrace_pt_config_children, GDB_XML_EF_OPTIONAL, NULL,
1533 NULL },
1534 { "raw", NULL, NULL, GDB_XML_EF_OPTIONAL, NULL, parse_xml_btrace_pt_raw },
1535 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1536};
1537
c12a2917
MM
1538static const struct gdb_xml_attribute btrace_attributes[] = {
1539 { "version", GDB_XML_AF_NONE, NULL, NULL },
1540 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1541};
1542
1543static const struct gdb_xml_element btrace_children[] = {
1544 { "block", block_attributes, NULL,
1545 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL, parse_xml_btrace_block, NULL },
b20a6524
MM
1546 { "pt", NULL, btrace_pt_children, GDB_XML_EF_OPTIONAL, parse_xml_btrace_pt,
1547 NULL },
c12a2917
MM
1548 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1549};
1550
1551static const struct gdb_xml_element btrace_elements[] = {
1552 { "btrace", btrace_attributes, btrace_children, GDB_XML_EF_NONE,
1553 check_xml_btrace_version, NULL },
1554 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1555};
1556
1557#endif /* defined (HAVE_LIBEXPAT) */
1558
1559/* See btrace.h. */
1560
734b0e4b
MM
1561void
1562parse_xml_btrace (struct btrace_data *btrace, const char *buffer)
c12a2917 1563{
c12a2917
MM
1564 struct cleanup *cleanup;
1565 int errcode;
1566
1567#if defined (HAVE_LIBEXPAT)
1568
734b0e4b
MM
1569 btrace->format = BTRACE_FORMAT_NONE;
1570
1571 cleanup = make_cleanup_btrace_data (btrace);
c12a2917 1572 errcode = gdb_xml_parse_quick (_("btrace"), "btrace.dtd", btrace_elements,
734b0e4b 1573 buffer, btrace);
c12a2917 1574 if (errcode != 0)
969c39fb 1575 error (_("Error parsing branch trace."));
c12a2917
MM
1576
1577 /* Keep parse results. */
1578 discard_cleanups (cleanup);
1579
1580#else /* !defined (HAVE_LIBEXPAT) */
1581
1582 error (_("Cannot process branch trace. XML parsing is not supported."));
1583
1584#endif /* !defined (HAVE_LIBEXPAT) */
c12a2917 1585}
23a7fe75 1586
f4abbc16
MM
1587#if defined (HAVE_LIBEXPAT)
1588
1589/* Parse a btrace-conf "bts" xml record. */
1590
1591static void
1592parse_xml_btrace_conf_bts (struct gdb_xml_parser *parser,
1593 const struct gdb_xml_element *element,
1594 void *user_data, VEC (gdb_xml_value_s) *attributes)
1595{
1596 struct btrace_config *conf;
d33501a5 1597 struct gdb_xml_value *size;
f4abbc16
MM
1598
1599 conf = user_data;
1600 conf->format = BTRACE_FORMAT_BTS;
d33501a5
MM
1601 conf->bts.size = 0;
1602
1603 size = xml_find_attribute (attributes, "size");
1604 if (size != NULL)
b20a6524 1605 conf->bts.size = (unsigned int) *(ULONGEST *) size->value;
f4abbc16
MM
1606}
1607
b20a6524
MM
1608/* Parse a btrace-conf "pt" xml record. */
1609
1610static void
1611parse_xml_btrace_conf_pt (struct gdb_xml_parser *parser,
1612 const struct gdb_xml_element *element,
1613 void *user_data, VEC (gdb_xml_value_s) *attributes)
1614{
1615 struct btrace_config *conf;
1616 struct gdb_xml_value *size;
1617
1618 conf = user_data;
1619 conf->format = BTRACE_FORMAT_PT;
1620 conf->pt.size = 0;
1621
1622 size = xml_find_attribute (attributes, "size");
1623 if (size != NULL)
1624 conf->pt.size = (unsigned int) *(ULONGEST *) size->value;
1625}
1626
1627static const struct gdb_xml_attribute btrace_conf_pt_attributes[] = {
1628 { "size", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1629 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1630};
1631
d33501a5
MM
1632static const struct gdb_xml_attribute btrace_conf_bts_attributes[] = {
1633 { "size", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1634 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1635};
1636
f4abbc16 1637static const struct gdb_xml_element btrace_conf_children[] = {
d33501a5
MM
1638 { "bts", btrace_conf_bts_attributes, NULL, GDB_XML_EF_OPTIONAL,
1639 parse_xml_btrace_conf_bts, NULL },
b20a6524
MM
1640 { "pt", btrace_conf_pt_attributes, NULL, GDB_XML_EF_OPTIONAL,
1641 parse_xml_btrace_conf_pt, NULL },
f4abbc16
MM
1642 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1643};
1644
1645static const struct gdb_xml_attribute btrace_conf_attributes[] = {
1646 { "version", GDB_XML_AF_NONE, NULL, NULL },
1647 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1648};
1649
1650static const struct gdb_xml_element btrace_conf_elements[] = {
1651 { "btrace-conf", btrace_conf_attributes, btrace_conf_children,
1652 GDB_XML_EF_NONE, NULL, NULL },
1653 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1654};
1655
1656#endif /* defined (HAVE_LIBEXPAT) */
1657
1658/* See btrace.h. */
1659
1660void
1661parse_xml_btrace_conf (struct btrace_config *conf, const char *xml)
1662{
1663 int errcode;
1664
1665#if defined (HAVE_LIBEXPAT)
1666
1667 errcode = gdb_xml_parse_quick (_("btrace-conf"), "btrace-conf.dtd",
1668 btrace_conf_elements, xml, conf);
1669 if (errcode != 0)
1670 error (_("Error parsing branch trace configuration."));
1671
1672#else /* !defined (HAVE_LIBEXPAT) */
1673
1674 error (_("XML parsing is not supported."));
1675
1676#endif /* !defined (HAVE_LIBEXPAT) */
1677}
1678
23a7fe75
MM
1679/* See btrace.h. */
1680
1681const struct btrace_insn *
1682btrace_insn_get (const struct btrace_insn_iterator *it)
1683{
1684 const struct btrace_function *bfun;
1685 unsigned int index, end;
1686
1687 index = it->index;
1688 bfun = it->function;
1689
31fd9caa
MM
1690 /* Check if the iterator points to a gap in the trace. */
1691 if (bfun->errcode != 0)
1692 return NULL;
1693
23a7fe75
MM
1694 /* The index is within the bounds of this function's instruction vector. */
1695 end = VEC_length (btrace_insn_s, bfun->insn);
1696 gdb_assert (0 < end);
1697 gdb_assert (index < end);
1698
1699 return VEC_index (btrace_insn_s, bfun->insn, index);
1700}
1701
1702/* See btrace.h. */
1703
1704unsigned int
1705btrace_insn_number (const struct btrace_insn_iterator *it)
1706{
1707 const struct btrace_function *bfun;
1708
1709 bfun = it->function;
31fd9caa
MM
1710
1711 /* Return zero if the iterator points to a gap in the trace. */
1712 if (bfun->errcode != 0)
1713 return 0;
1714
23a7fe75
MM
1715 return bfun->insn_offset + it->index;
1716}
1717
1718/* See btrace.h. */
1719
1720void
1721btrace_insn_begin (struct btrace_insn_iterator *it,
1722 const struct btrace_thread_info *btinfo)
1723{
1724 const struct btrace_function *bfun;
1725
1726 bfun = btinfo->begin;
1727 if (bfun == NULL)
1728 error (_("No trace."));
1729
1730 it->function = bfun;
1731 it->index = 0;
1732}
1733
1734/* See btrace.h. */
1735
1736void
1737btrace_insn_end (struct btrace_insn_iterator *it,
1738 const struct btrace_thread_info *btinfo)
1739{
1740 const struct btrace_function *bfun;
1741 unsigned int length;
1742
1743 bfun = btinfo->end;
1744 if (bfun == NULL)
1745 error (_("No trace."));
1746
23a7fe75
MM
1747 length = VEC_length (btrace_insn_s, bfun->insn);
1748
31fd9caa
MM
1749 /* The last function may either be a gap or it contains the current
1750 instruction, which is one past the end of the execution trace; ignore
1751 it. */
1752 if (length > 0)
1753 length -= 1;
1754
23a7fe75 1755 it->function = bfun;
31fd9caa 1756 it->index = length;
23a7fe75
MM
1757}
1758
1759/* See btrace.h. */
1760
1761unsigned int
1762btrace_insn_next (struct btrace_insn_iterator *it, unsigned int stride)
1763{
1764 const struct btrace_function *bfun;
1765 unsigned int index, steps;
1766
1767 bfun = it->function;
1768 steps = 0;
1769 index = it->index;
1770
1771 while (stride != 0)
1772 {
1773 unsigned int end, space, adv;
1774
1775 end = VEC_length (btrace_insn_s, bfun->insn);
1776
31fd9caa
MM
1777 /* An empty function segment represents a gap in the trace. We count
1778 it as one instruction. */
1779 if (end == 0)
1780 {
1781 const struct btrace_function *next;
1782
1783 next = bfun->flow.next;
1784 if (next == NULL)
1785 break;
1786
1787 stride -= 1;
1788 steps += 1;
1789
1790 bfun = next;
1791 index = 0;
1792
1793 continue;
1794 }
1795
23a7fe75
MM
1796 gdb_assert (0 < end);
1797 gdb_assert (index < end);
1798
1799 /* Compute the number of instructions remaining in this segment. */
1800 space = end - index;
1801
1802 /* Advance the iterator as far as possible within this segment. */
1803 adv = min (space, stride);
1804 stride -= adv;
1805 index += adv;
1806 steps += adv;
1807
1808 /* Move to the next function if we're at the end of this one. */
1809 if (index == end)
1810 {
1811 const struct btrace_function *next;
1812
1813 next = bfun->flow.next;
1814 if (next == NULL)
1815 {
1816 /* We stepped past the last function.
1817
1818 Let's adjust the index to point to the last instruction in
1819 the previous function. */
1820 index -= 1;
1821 steps -= 1;
1822 break;
1823 }
1824
1825 /* We now point to the first instruction in the new function. */
1826 bfun = next;
1827 index = 0;
1828 }
1829
1830 /* We did make progress. */
1831 gdb_assert (adv > 0);
1832 }
1833
1834 /* Update the iterator. */
1835 it->function = bfun;
1836 it->index = index;
1837
1838 return steps;
1839}
1840
1841/* See btrace.h. */
1842
1843unsigned int
1844btrace_insn_prev (struct btrace_insn_iterator *it, unsigned int stride)
1845{
1846 const struct btrace_function *bfun;
1847 unsigned int index, steps;
1848
1849 bfun = it->function;
1850 steps = 0;
1851 index = it->index;
1852
1853 while (stride != 0)
1854 {
1855 unsigned int adv;
1856
1857 /* Move to the previous function if we're at the start of this one. */
1858 if (index == 0)
1859 {
1860 const struct btrace_function *prev;
1861
1862 prev = bfun->flow.prev;
1863 if (prev == NULL)
1864 break;
1865
1866 /* We point to one after the last instruction in the new function. */
1867 bfun = prev;
1868 index = VEC_length (btrace_insn_s, bfun->insn);
1869
31fd9caa
MM
1870 /* An empty function segment represents a gap in the trace. We count
1871 it as one instruction. */
1872 if (index == 0)
1873 {
1874 stride -= 1;
1875 steps += 1;
1876
1877 continue;
1878 }
23a7fe75
MM
1879 }
1880
1881 /* Advance the iterator as far as possible within this segment. */
1882 adv = min (index, stride);
31fd9caa 1883
23a7fe75
MM
1884 stride -= adv;
1885 index -= adv;
1886 steps += adv;
1887
1888 /* We did make progress. */
1889 gdb_assert (adv > 0);
1890 }
1891
1892 /* Update the iterator. */
1893 it->function = bfun;
1894 it->index = index;
1895
1896 return steps;
1897}
1898
1899/* See btrace.h. */
1900
1901int
1902btrace_insn_cmp (const struct btrace_insn_iterator *lhs,
1903 const struct btrace_insn_iterator *rhs)
1904{
1905 unsigned int lnum, rnum;
1906
1907 lnum = btrace_insn_number (lhs);
1908 rnum = btrace_insn_number (rhs);
1909
31fd9caa
MM
1910 /* A gap has an instruction number of zero. Things are getting more
1911 complicated if gaps are involved.
1912
1913 We take the instruction number offset from the iterator's function.
1914 This is the number of the first instruction after the gap.
1915
1916 This is OK as long as both lhs and rhs point to gaps. If only one of
1917 them does, we need to adjust the number based on the other's regular
1918 instruction number. Otherwise, a gap might compare equal to an
1919 instruction. */
1920
1921 if (lnum == 0 && rnum == 0)
1922 {
1923 lnum = lhs->function->insn_offset;
1924 rnum = rhs->function->insn_offset;
1925 }
1926 else if (lnum == 0)
1927 {
1928 lnum = lhs->function->insn_offset;
1929
1930 if (lnum == rnum)
1931 lnum -= 1;
1932 }
1933 else if (rnum == 0)
1934 {
1935 rnum = rhs->function->insn_offset;
1936
1937 if (rnum == lnum)
1938 rnum -= 1;
1939 }
1940
23a7fe75
MM
1941 return (int) (lnum - rnum);
1942}
1943
1944/* See btrace.h. */
1945
1946int
1947btrace_find_insn_by_number (struct btrace_insn_iterator *it,
1948 const struct btrace_thread_info *btinfo,
1949 unsigned int number)
1950{
1951 const struct btrace_function *bfun;
31fd9caa 1952 unsigned int end, length;
23a7fe75
MM
1953
1954 for (bfun = btinfo->end; bfun != NULL; bfun = bfun->flow.prev)
31fd9caa
MM
1955 {
1956 /* Skip gaps. */
1957 if (bfun->errcode != 0)
1958 continue;
1959
1960 if (bfun->insn_offset <= number)
1961 break;
1962 }
23a7fe75
MM
1963
1964 if (bfun == NULL)
1965 return 0;
1966
31fd9caa
MM
1967 length = VEC_length (btrace_insn_s, bfun->insn);
1968 gdb_assert (length > 0);
1969
1970 end = bfun->insn_offset + length;
23a7fe75
MM
1971 if (end <= number)
1972 return 0;
1973
1974 it->function = bfun;
1975 it->index = number - bfun->insn_offset;
1976
1977 return 1;
1978}
1979
1980/* See btrace.h. */
1981
1982const struct btrace_function *
1983btrace_call_get (const struct btrace_call_iterator *it)
1984{
1985 return it->function;
1986}
1987
1988/* See btrace.h. */
1989
1990unsigned int
1991btrace_call_number (const struct btrace_call_iterator *it)
1992{
1993 const struct btrace_thread_info *btinfo;
1994 const struct btrace_function *bfun;
1995 unsigned int insns;
1996
1997 btinfo = it->btinfo;
1998 bfun = it->function;
1999 if (bfun != NULL)
2000 return bfun->number;
2001
2002 /* For the end iterator, i.e. bfun == NULL, we return one more than the
2003 number of the last function. */
2004 bfun = btinfo->end;
2005 insns = VEC_length (btrace_insn_s, bfun->insn);
2006
2007 /* If the function contains only a single instruction (i.e. the current
2008 instruction), it will be skipped and its number is already the number
2009 we seek. */
2010 if (insns == 1)
2011 return bfun->number;
2012
2013 /* Otherwise, return one more than the number of the last function. */
2014 return bfun->number + 1;
2015}
2016
2017/* See btrace.h. */
2018
2019void
2020btrace_call_begin (struct btrace_call_iterator *it,
2021 const struct btrace_thread_info *btinfo)
2022{
2023 const struct btrace_function *bfun;
2024
2025 bfun = btinfo->begin;
2026 if (bfun == NULL)
2027 error (_("No trace."));
2028
2029 it->btinfo = btinfo;
2030 it->function = bfun;
2031}
2032
2033/* See btrace.h. */
2034
2035void
2036btrace_call_end (struct btrace_call_iterator *it,
2037 const struct btrace_thread_info *btinfo)
2038{
2039 const struct btrace_function *bfun;
2040
2041 bfun = btinfo->end;
2042 if (bfun == NULL)
2043 error (_("No trace."));
2044
2045 it->btinfo = btinfo;
2046 it->function = NULL;
2047}
2048
2049/* See btrace.h. */
2050
2051unsigned int
2052btrace_call_next (struct btrace_call_iterator *it, unsigned int stride)
2053{
2054 const struct btrace_function *bfun;
2055 unsigned int steps;
2056
2057 bfun = it->function;
2058 steps = 0;
2059 while (bfun != NULL)
2060 {
2061 const struct btrace_function *next;
2062 unsigned int insns;
2063
2064 next = bfun->flow.next;
2065 if (next == NULL)
2066 {
2067 /* Ignore the last function if it only contains a single
2068 (i.e. the current) instruction. */
2069 insns = VEC_length (btrace_insn_s, bfun->insn);
2070 if (insns == 1)
2071 steps -= 1;
2072 }
2073
2074 if (stride == steps)
2075 break;
2076
2077 bfun = next;
2078 steps += 1;
2079 }
2080
2081 it->function = bfun;
2082 return steps;
2083}
2084
2085/* See btrace.h. */
2086
2087unsigned int
2088btrace_call_prev (struct btrace_call_iterator *it, unsigned int stride)
2089{
2090 const struct btrace_thread_info *btinfo;
2091 const struct btrace_function *bfun;
2092 unsigned int steps;
2093
2094 bfun = it->function;
2095 steps = 0;
2096
2097 if (bfun == NULL)
2098 {
2099 unsigned int insns;
2100
2101 btinfo = it->btinfo;
2102 bfun = btinfo->end;
2103 if (bfun == NULL)
2104 return 0;
2105
2106 /* Ignore the last function if it only contains a single
2107 (i.e. the current) instruction. */
2108 insns = VEC_length (btrace_insn_s, bfun->insn);
2109 if (insns == 1)
2110 bfun = bfun->flow.prev;
2111
2112 if (bfun == NULL)
2113 return 0;
2114
2115 steps += 1;
2116 }
2117
2118 while (steps < stride)
2119 {
2120 const struct btrace_function *prev;
2121
2122 prev = bfun->flow.prev;
2123 if (prev == NULL)
2124 break;
2125
2126 bfun = prev;
2127 steps += 1;
2128 }
2129
2130 it->function = bfun;
2131 return steps;
2132}
2133
2134/* See btrace.h. */
2135
2136int
2137btrace_call_cmp (const struct btrace_call_iterator *lhs,
2138 const struct btrace_call_iterator *rhs)
2139{
2140 unsigned int lnum, rnum;
2141
2142 lnum = btrace_call_number (lhs);
2143 rnum = btrace_call_number (rhs);
2144
2145 return (int) (lnum - rnum);
2146}
2147
2148/* See btrace.h. */
2149
2150int
2151btrace_find_call_by_number (struct btrace_call_iterator *it,
2152 const struct btrace_thread_info *btinfo,
2153 unsigned int number)
2154{
2155 const struct btrace_function *bfun;
2156
2157 for (bfun = btinfo->end; bfun != NULL; bfun = bfun->flow.prev)
2158 {
2159 unsigned int bnum;
2160
2161 bnum = bfun->number;
2162 if (number == bnum)
2163 {
2164 it->btinfo = btinfo;
2165 it->function = bfun;
2166 return 1;
2167 }
2168
2169 /* Functions are ordered and numbered consecutively. We could bail out
2170 earlier. On the other hand, it is very unlikely that we search for
2171 a nonexistent function. */
2172 }
2173
2174 return 0;
2175}
2176
2177/* See btrace.h. */
2178
2179void
2180btrace_set_insn_history (struct btrace_thread_info *btinfo,
2181 const struct btrace_insn_iterator *begin,
2182 const struct btrace_insn_iterator *end)
2183{
2184 if (btinfo->insn_history == NULL)
2185 btinfo->insn_history = xzalloc (sizeof (*btinfo->insn_history));
2186
2187 btinfo->insn_history->begin = *begin;
2188 btinfo->insn_history->end = *end;
2189}
2190
2191/* See btrace.h. */
2192
2193void
2194btrace_set_call_history (struct btrace_thread_info *btinfo,
2195 const struct btrace_call_iterator *begin,
2196 const struct btrace_call_iterator *end)
2197{
2198 gdb_assert (begin->btinfo == end->btinfo);
2199
2200 if (btinfo->call_history == NULL)
2201 btinfo->call_history = xzalloc (sizeof (*btinfo->call_history));
2202
2203 btinfo->call_history->begin = *begin;
2204 btinfo->call_history->end = *end;
2205}
07bbe694
MM
2206
2207/* See btrace.h. */
2208
2209int
2210btrace_is_replaying (struct thread_info *tp)
2211{
2212 return tp->btrace.replay != NULL;
2213}
6e07b1d2
MM
2214
2215/* See btrace.h. */
2216
2217int
2218btrace_is_empty (struct thread_info *tp)
2219{
2220 struct btrace_insn_iterator begin, end;
2221 struct btrace_thread_info *btinfo;
2222
2223 btinfo = &tp->btrace;
2224
2225 if (btinfo->begin == NULL)
2226 return 1;
2227
2228 btrace_insn_begin (&begin, btinfo);
2229 btrace_insn_end (&end, btinfo);
2230
2231 return btrace_insn_cmp (&begin, &end) == 0;
2232}
734b0e4b
MM
2233
2234/* Forward the cleanup request. */
2235
2236static void
2237do_btrace_data_cleanup (void *arg)
2238{
2239 btrace_data_fini (arg);
2240}
2241
2242/* See btrace.h. */
2243
2244struct cleanup *
2245make_cleanup_btrace_data (struct btrace_data *data)
2246{
2247 return make_cleanup (do_btrace_data_cleanup, data);
2248}
b0627500
MM
2249
2250#if defined (HAVE_LIBIPT)
2251
2252/* Print a single packet. */
2253
2254static void
2255pt_print_packet (const struct pt_packet *packet)
2256{
2257 switch (packet->type)
2258 {
2259 default:
2260 printf_unfiltered (("[??: %x]"), packet->type);
2261 break;
2262
2263 case ppt_psb:
2264 printf_unfiltered (("psb"));
2265 break;
2266
2267 case ppt_psbend:
2268 printf_unfiltered (("psbend"));
2269 break;
2270
2271 case ppt_pad:
2272 printf_unfiltered (("pad"));
2273 break;
2274
2275 case ppt_tip:
2276 printf_unfiltered (("tip %u: 0x%" PRIx64 ""),
2277 packet->payload.ip.ipc,
2278 packet->payload.ip.ip);
2279 break;
2280
2281 case ppt_tip_pge:
2282 printf_unfiltered (("tip.pge %u: 0x%" PRIx64 ""),
2283 packet->payload.ip.ipc,
2284 packet->payload.ip.ip);
2285 break;
2286
2287 case ppt_tip_pgd:
2288 printf_unfiltered (("tip.pgd %u: 0x%" PRIx64 ""),
2289 packet->payload.ip.ipc,
2290 packet->payload.ip.ip);
2291 break;
2292
2293 case ppt_fup:
2294 printf_unfiltered (("fup %u: 0x%" PRIx64 ""),
2295 packet->payload.ip.ipc,
2296 packet->payload.ip.ip);
2297 break;
2298
2299 case ppt_tnt_8:
2300 printf_unfiltered (("tnt-8 %u: 0x%" PRIx64 ""),
2301 packet->payload.tnt.bit_size,
2302 packet->payload.tnt.payload);
2303 break;
2304
2305 case ppt_tnt_64:
2306 printf_unfiltered (("tnt-64 %u: 0x%" PRIx64 ""),
2307 packet->payload.tnt.bit_size,
2308 packet->payload.tnt.payload);
2309 break;
2310
2311 case ppt_pip:
37fdfe4c
MM
2312 printf_unfiltered (("pip %" PRIx64 "%s"), packet->payload.pip.cr3,
2313 packet->payload.pip.nr ? (" nr") : (""));
b0627500
MM
2314 break;
2315
2316 case ppt_tsc:
2317 printf_unfiltered (("tsc %" PRIx64 ""), packet->payload.tsc.tsc);
2318 break;
2319
2320 case ppt_cbr:
2321 printf_unfiltered (("cbr %u"), packet->payload.cbr.ratio);
2322 break;
2323
2324 case ppt_mode:
2325 switch (packet->payload.mode.leaf)
2326 {
2327 default:
2328 printf_unfiltered (("mode %u"), packet->payload.mode.leaf);
2329 break;
2330
2331 case pt_mol_exec:
2332 printf_unfiltered (("mode.exec%s%s"),
2333 packet->payload.mode.bits.exec.csl
2334 ? (" cs.l") : (""),
2335 packet->payload.mode.bits.exec.csd
2336 ? (" cs.d") : (""));
2337 break;
2338
2339 case pt_mol_tsx:
2340 printf_unfiltered (("mode.tsx%s%s"),
2341 packet->payload.mode.bits.tsx.intx
2342 ? (" intx") : (""),
2343 packet->payload.mode.bits.tsx.abrt
2344 ? (" abrt") : (""));
2345 break;
2346 }
2347 break;
2348
2349 case ppt_ovf:
2350 printf_unfiltered (("ovf"));
2351 break;
2352
37fdfe4c
MM
2353 case ppt_stop:
2354 printf_unfiltered (("stop"));
2355 break;
2356
2357 case ppt_vmcs:
2358 printf_unfiltered (("vmcs %" PRIx64 ""), packet->payload.vmcs.base);
2359 break;
2360
2361 case ppt_tma:
2362 printf_unfiltered (("tma %x %x"), packet->payload.tma.ctc,
2363 packet->payload.tma.fc);
2364 break;
2365
2366 case ppt_mtc:
2367 printf_unfiltered (("mtc %x"), packet->payload.mtc.ctc);
2368 break;
2369
2370 case ppt_cyc:
2371 printf_unfiltered (("cyc %" PRIx64 ""), packet->payload.cyc.value);
2372 break;
2373
2374 case ppt_mnt:
2375 printf_unfiltered (("mnt %" PRIx64 ""), packet->payload.mnt.payload);
2376 break;
b0627500
MM
2377 }
2378}
2379
2380/* Decode packets into MAINT using DECODER. */
2381
2382static void
2383btrace_maint_decode_pt (struct btrace_maint_info *maint,
2384 struct pt_packet_decoder *decoder)
2385{
2386 int errcode;
2387
2388 for (;;)
2389 {
2390 struct btrace_pt_packet packet;
2391
2392 errcode = pt_pkt_sync_forward (decoder);
2393 if (errcode < 0)
2394 break;
2395
2396 for (;;)
2397 {
2398 pt_pkt_get_offset (decoder, &packet.offset);
2399
2400 errcode = pt_pkt_next (decoder, &packet.packet,
2401 sizeof(packet.packet));
2402 if (errcode < 0)
2403 break;
2404
2405 if (maint_btrace_pt_skip_pad == 0 || packet.packet.type != ppt_pad)
2406 {
2407 packet.errcode = pt_errcode (errcode);
2408 VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets,
2409 &packet);
2410 }
2411 }
2412
2413 if (errcode == -pte_eos)
2414 break;
2415
2416 packet.errcode = pt_errcode (errcode);
2417 VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets,
2418 &packet);
2419
2420 warning (_("Error at trace offset 0x%" PRIx64 ": %s."),
2421 packet.offset, pt_errstr (packet.errcode));
2422 }
2423
2424 if (errcode != -pte_eos)
2425 warning (_("Failed to synchronize onto the Intel(R) Processor Trace "
2426 "stream: %s."), pt_errstr (pt_errcode (errcode)));
2427}
2428
2429/* Update the packet history in BTINFO. */
2430
2431static void
2432btrace_maint_update_pt_packets (struct btrace_thread_info *btinfo)
2433{
2434 volatile struct gdb_exception except;
2435 struct pt_packet_decoder *decoder;
2436 struct btrace_data_pt *pt;
2437 struct pt_config config;
2438 int errcode;
2439
2440 pt = &btinfo->data.variant.pt;
2441
2442 /* Nothing to do if there is no trace. */
2443 if (pt->size == 0)
2444 return;
2445
2446 memset (&config, 0, sizeof(config));
2447
2448 config.size = sizeof (config);
2449 config.begin = pt->data;
2450 config.end = pt->data + pt->size;
2451
2452 config.cpu.vendor = pt_translate_cpu_vendor (pt->config.cpu.vendor);
2453 config.cpu.family = pt->config.cpu.family;
2454 config.cpu.model = pt->config.cpu.model;
2455 config.cpu.stepping = pt->config.cpu.stepping;
2456
2457 errcode = pt_cpu_errata (&config.errata, &config.cpu);
2458 if (errcode < 0)
2459 error (_("Failed to configure the Intel(R) Processor Trace decoder: %s."),
2460 pt_errstr (pt_errcode (errcode)));
2461
2462 decoder = pt_pkt_alloc_decoder (&config);
2463 if (decoder == NULL)
2464 error (_("Failed to allocate the Intel(R) Processor Trace decoder."));
2465
2466 TRY
2467 {
2468 btrace_maint_decode_pt (&btinfo->maint, decoder);
2469 }
2470 CATCH (except, RETURN_MASK_ALL)
2471 {
2472 pt_pkt_free_decoder (decoder);
2473
2474 if (except.reason < 0)
2475 throw_exception (except);
2476 }
2477 END_CATCH
2478
2479 pt_pkt_free_decoder (decoder);
2480}
2481
2482#endif /* !defined (HAVE_LIBIPT) */
2483
2484/* Update the packet maintenance information for BTINFO and store the
2485 low and high bounds into BEGIN and END, respectively.
2486 Store the current iterator state into FROM and TO. */
2487
2488static void
2489btrace_maint_update_packets (struct btrace_thread_info *btinfo,
2490 unsigned int *begin, unsigned int *end,
2491 unsigned int *from, unsigned int *to)
2492{
2493 switch (btinfo->data.format)
2494 {
2495 default:
2496 *begin = 0;
2497 *end = 0;
2498 *from = 0;
2499 *to = 0;
2500 break;
2501
2502 case BTRACE_FORMAT_BTS:
2503 /* Nothing to do - we operate directly on BTINFO->DATA. */
2504 *begin = 0;
2505 *end = VEC_length (btrace_block_s, btinfo->data.variant.bts.blocks);
2506 *from = btinfo->maint.variant.bts.packet_history.begin;
2507 *to = btinfo->maint.variant.bts.packet_history.end;
2508 break;
2509
2510#if defined (HAVE_LIBIPT)
2511 case BTRACE_FORMAT_PT:
2512 if (VEC_empty (btrace_pt_packet_s, btinfo->maint.variant.pt.packets))
2513 btrace_maint_update_pt_packets (btinfo);
2514
2515 *begin = 0;
2516 *end = VEC_length (btrace_pt_packet_s, btinfo->maint.variant.pt.packets);
2517 *from = btinfo->maint.variant.pt.packet_history.begin;
2518 *to = btinfo->maint.variant.pt.packet_history.end;
2519 break;
2520#endif /* defined (HAVE_LIBIPT) */
2521 }
2522}
2523
2524/* Print packets in BTINFO from BEGIN (inclusive) until END (exclusive) and
2525 update the current iterator position. */
2526
2527static void
2528btrace_maint_print_packets (struct btrace_thread_info *btinfo,
2529 unsigned int begin, unsigned int end)
2530{
2531 switch (btinfo->data.format)
2532 {
2533 default:
2534 break;
2535
2536 case BTRACE_FORMAT_BTS:
2537 {
2538 VEC (btrace_block_s) *blocks;
2539 unsigned int blk;
2540
2541 blocks = btinfo->data.variant.bts.blocks;
2542 for (blk = begin; blk < end; ++blk)
2543 {
2544 const btrace_block_s *block;
2545
2546 block = VEC_index (btrace_block_s, blocks, blk);
2547
2548 printf_unfiltered ("%u\tbegin: %s, end: %s\n", blk,
2549 core_addr_to_string_nz (block->begin),
2550 core_addr_to_string_nz (block->end));
2551 }
2552
2553 btinfo->maint.variant.bts.packet_history.begin = begin;
2554 btinfo->maint.variant.bts.packet_history.end = end;
2555 }
2556 break;
2557
2558#if defined (HAVE_LIBIPT)
2559 case BTRACE_FORMAT_PT:
2560 {
2561 VEC (btrace_pt_packet_s) *packets;
2562 unsigned int pkt;
2563
2564 packets = btinfo->maint.variant.pt.packets;
2565 for (pkt = begin; pkt < end; ++pkt)
2566 {
2567 const struct btrace_pt_packet *packet;
2568
2569 packet = VEC_index (btrace_pt_packet_s, packets, pkt);
2570
2571 printf_unfiltered ("%u\t", pkt);
2572 printf_unfiltered ("0x%" PRIx64 "\t", packet->offset);
2573
2574 if (packet->errcode == pte_ok)
2575 pt_print_packet (&packet->packet);
2576 else
2577 printf_unfiltered ("[error: %s]", pt_errstr (packet->errcode));
2578
2579 printf_unfiltered ("\n");
2580 }
2581
2582 btinfo->maint.variant.pt.packet_history.begin = begin;
2583 btinfo->maint.variant.pt.packet_history.end = end;
2584 }
2585 break;
2586#endif /* defined (HAVE_LIBIPT) */
2587 }
2588}
2589
2590/* Read a number from an argument string. */
2591
2592static unsigned int
2593get_uint (char **arg)
2594{
2595 char *begin, *end, *pos;
2596 unsigned long number;
2597
2598 begin = *arg;
2599 pos = skip_spaces (begin);
2600
2601 if (!isdigit (*pos))
2602 error (_("Expected positive number, got: %s."), pos);
2603
2604 number = strtoul (pos, &end, 10);
2605 if (number > UINT_MAX)
2606 error (_("Number too big."));
2607
2608 *arg += (end - begin);
2609
2610 return (unsigned int) number;
2611}
2612
2613/* Read a context size from an argument string. */
2614
2615static int
2616get_context_size (char **arg)
2617{
2618 char *pos;
2619 int number;
2620
2621 pos = skip_spaces (*arg);
2622
2623 if (!isdigit (*pos))
2624 error (_("Expected positive number, got: %s."), pos);
2625
2626 return strtol (pos, arg, 10);
2627}
2628
2629/* Complain about junk at the end of an argument string. */
2630
2631static void
2632no_chunk (char *arg)
2633{
2634 if (*arg != 0)
2635 error (_("Junk after argument: %s."), arg);
2636}
2637
2638/* The "maintenance btrace packet-history" command. */
2639
2640static void
2641maint_btrace_packet_history_cmd (char *arg, int from_tty)
2642{
2643 struct btrace_thread_info *btinfo;
2644 struct thread_info *tp;
2645 unsigned int size, begin, end, from, to;
2646
2647 tp = find_thread_ptid (inferior_ptid);
2648 if (tp == NULL)
2649 error (_("No thread."));
2650
2651 size = 10;
2652 btinfo = &tp->btrace;
2653
2654 btrace_maint_update_packets (btinfo, &begin, &end, &from, &to);
2655 if (begin == end)
2656 {
2657 printf_unfiltered (_("No trace.\n"));
2658 return;
2659 }
2660
2661 if (arg == NULL || *arg == 0 || strcmp (arg, "+") == 0)
2662 {
2663 from = to;
2664
2665 if (end - from < size)
2666 size = end - from;
2667 to = from + size;
2668 }
2669 else if (strcmp (arg, "-") == 0)
2670 {
2671 to = from;
2672
2673 if (to - begin < size)
2674 size = to - begin;
2675 from = to - size;
2676 }
2677 else
2678 {
2679 from = get_uint (&arg);
2680 if (end <= from)
2681 error (_("'%u' is out of range."), from);
2682
2683 arg = skip_spaces (arg);
2684 if (*arg == ',')
2685 {
2686 arg = skip_spaces (++arg);
2687
2688 if (*arg == '+')
2689 {
2690 arg += 1;
2691 size = get_context_size (&arg);
2692
2693 no_chunk (arg);
2694
2695 if (end - from < size)
2696 size = end - from;
2697 to = from + size;
2698 }
2699 else if (*arg == '-')
2700 {
2701 arg += 1;
2702 size = get_context_size (&arg);
2703
2704 no_chunk (arg);
2705
2706 /* Include the packet given as first argument. */
2707 from += 1;
2708 to = from;
2709
2710 if (to - begin < size)
2711 size = to - begin;
2712 from = to - size;
2713 }
2714 else
2715 {
2716 to = get_uint (&arg);
2717
2718 /* Include the packet at the second argument and silently
2719 truncate the range. */
2720 if (to < end)
2721 to += 1;
2722 else
2723 to = end;
2724
2725 no_chunk (arg);
2726 }
2727 }
2728 else
2729 {
2730 no_chunk (arg);
2731
2732 if (end - from < size)
2733 size = end - from;
2734 to = from + size;
2735 }
2736
2737 dont_repeat ();
2738 }
2739
2740 btrace_maint_print_packets (btinfo, from, to);
2741}
2742
2743/* The "maintenance btrace clear-packet-history" command. */
2744
2745static void
2746maint_btrace_clear_packet_history_cmd (char *args, int from_tty)
2747{
2748 struct btrace_thread_info *btinfo;
2749 struct thread_info *tp;
2750
2751 if (args != NULL && *args != 0)
2752 error (_("Invalid argument."));
2753
2754 tp = find_thread_ptid (inferior_ptid);
2755 if (tp == NULL)
2756 error (_("No thread."));
2757
2758 btinfo = &tp->btrace;
2759
2760 /* Must clear the maint data before - it depends on BTINFO->DATA. */
2761 btrace_maint_clear (btinfo);
2762 btrace_data_clear (&btinfo->data);
2763}
2764
2765/* The "maintenance btrace clear" command. */
2766
2767static void
2768maint_btrace_clear_cmd (char *args, int from_tty)
2769{
2770 struct btrace_thread_info *btinfo;
2771 struct thread_info *tp;
2772
2773 if (args != NULL && *args != 0)
2774 error (_("Invalid argument."));
2775
2776 tp = find_thread_ptid (inferior_ptid);
2777 if (tp == NULL)
2778 error (_("No thread."));
2779
2780 btrace_clear (tp);
2781}
2782
2783/* The "maintenance btrace" command. */
2784
2785static void
2786maint_btrace_cmd (char *args, int from_tty)
2787{
2788 help_list (maint_btrace_cmdlist, "maintenance btrace ", all_commands,
2789 gdb_stdout);
2790}
2791
2792/* The "maintenance set btrace" command. */
2793
2794static void
2795maint_btrace_set_cmd (char *args, int from_tty)
2796{
2797 help_list (maint_btrace_set_cmdlist, "maintenance set btrace ", all_commands,
2798 gdb_stdout);
2799}
2800
2801/* The "maintenance show btrace" command. */
2802
2803static void
2804maint_btrace_show_cmd (char *args, int from_tty)
2805{
2806 help_list (maint_btrace_show_cmdlist, "maintenance show btrace ",
2807 all_commands, gdb_stdout);
2808}
2809
2810/* The "maintenance set btrace pt" command. */
2811
2812static void
2813maint_btrace_pt_set_cmd (char *args, int from_tty)
2814{
2815 help_list (maint_btrace_pt_set_cmdlist, "maintenance set btrace pt ",
2816 all_commands, gdb_stdout);
2817}
2818
2819/* The "maintenance show btrace pt" command. */
2820
2821static void
2822maint_btrace_pt_show_cmd (char *args, int from_tty)
2823{
2824 help_list (maint_btrace_pt_show_cmdlist, "maintenance show btrace pt ",
2825 all_commands, gdb_stdout);
2826}
2827
2828/* The "maintenance info btrace" command. */
2829
2830static void
2831maint_info_btrace_cmd (char *args, int from_tty)
2832{
2833 struct btrace_thread_info *btinfo;
2834 struct thread_info *tp;
2835 const struct btrace_config *conf;
2836
2837 if (args != NULL && *args != 0)
2838 error (_("Invalid argument."));
2839
2840 tp = find_thread_ptid (inferior_ptid);
2841 if (tp == NULL)
2842 error (_("No thread."));
2843
2844 btinfo = &tp->btrace;
2845
2846 conf = btrace_conf (btinfo);
2847 if (conf == NULL)
2848 error (_("No btrace configuration."));
2849
2850 printf_unfiltered (_("Format: %s.\n"),
2851 btrace_format_string (conf->format));
2852
2853 switch (conf->format)
2854 {
2855 default:
2856 break;
2857
2858 case BTRACE_FORMAT_BTS:
2859 printf_unfiltered (_("Number of packets: %u.\n"),
2860 VEC_length (btrace_block_s,
2861 btinfo->data.variant.bts.blocks));
2862 break;
2863
2864#if defined (HAVE_LIBIPT)
2865 case BTRACE_FORMAT_PT:
2866 {
2867 struct pt_version version;
2868
2869 version = pt_library_version ();
2870 printf_unfiltered (_("Version: %u.%u.%u%s.\n"), version.major,
2871 version.minor, version.build,
2872 version.ext != NULL ? version.ext : "");
2873
2874 btrace_maint_update_pt_packets (btinfo);
2875 printf_unfiltered (_("Number of packets: %u.\n"),
2876 VEC_length (btrace_pt_packet_s,
2877 btinfo->maint.variant.pt.packets));
2878 }
2879 break;
2880#endif /* defined (HAVE_LIBIPT) */
2881 }
2882}
2883
2884/* The "maint show btrace pt skip-pad" show value function. */
2885
2886static void
2887show_maint_btrace_pt_skip_pad (struct ui_file *file, int from_tty,
2888 struct cmd_list_element *c,
2889 const char *value)
2890{
2891 fprintf_filtered (file, _("Skip PAD packets is %s.\n"), value);
2892}
2893
2894
2895/* Initialize btrace maintenance commands. */
2896
2897void _initialize_btrace (void);
2898void
2899_initialize_btrace (void)
2900{
2901 add_cmd ("btrace", class_maintenance, maint_info_btrace_cmd,
2902 _("Info about branch tracing data."), &maintenanceinfolist);
2903
2904 add_prefix_cmd ("btrace", class_maintenance, maint_btrace_cmd,
2905 _("Branch tracing maintenance commands."),
2906 &maint_btrace_cmdlist, "maintenance btrace ",
2907 0, &maintenancelist);
2908
2909 add_prefix_cmd ("btrace", class_maintenance, maint_btrace_set_cmd, _("\
2910Set branch tracing specific variables."),
2911 &maint_btrace_set_cmdlist, "maintenance set btrace ",
2912 0, &maintenance_set_cmdlist);
2913
2914 add_prefix_cmd ("pt", class_maintenance, maint_btrace_pt_set_cmd, _("\
2915Set Intel(R) Processor Trace specific variables."),
2916 &maint_btrace_pt_set_cmdlist, "maintenance set btrace pt ",
2917 0, &maint_btrace_set_cmdlist);
2918
2919 add_prefix_cmd ("btrace", class_maintenance, maint_btrace_show_cmd, _("\
2920Show branch tracing specific variables."),
2921 &maint_btrace_show_cmdlist, "maintenance show btrace ",
2922 0, &maintenance_show_cmdlist);
2923
2924 add_prefix_cmd ("pt", class_maintenance, maint_btrace_pt_show_cmd, _("\
2925Show Intel(R) Processor Trace specific variables."),
2926 &maint_btrace_pt_show_cmdlist, "maintenance show btrace pt ",
2927 0, &maint_btrace_show_cmdlist);
2928
2929 add_setshow_boolean_cmd ("skip-pad", class_maintenance,
2930 &maint_btrace_pt_skip_pad, _("\
2931Set whether PAD packets should be skipped in the btrace packet history."), _("\
2932Show whether PAD packets should be skipped in the btrace packet history."),_("\
2933When enabled, PAD packets are ignored in the btrace packet history."),
2934 NULL, show_maint_btrace_pt_skip_pad,
2935 &maint_btrace_pt_set_cmdlist,
2936 &maint_btrace_pt_show_cmdlist);
2937
2938 add_cmd ("packet-history", class_maintenance, maint_btrace_packet_history_cmd,
2939 _("Print the raw branch tracing data.\n\
2940With no argument, print ten more packets after the previous ten-line print.\n\
2941With '-' as argument print ten packets before a previous ten-line print.\n\
2942One argument specifies the starting packet of a ten-line print.\n\
2943Two arguments with comma between specify starting and ending packets to \
2944print.\n\
2945Preceded with '+'/'-' the second argument specifies the distance from the \
2946first.\n"),
2947 &maint_btrace_cmdlist);
2948
2949 add_cmd ("clear-packet-history", class_maintenance,
2950 maint_btrace_clear_packet_history_cmd,
2951 _("Clears the branch tracing packet history.\n\
2952Discards the raw branch tracing data but not the execution history data.\n\
2953"),
2954 &maint_btrace_cmdlist);
2955
2956 add_cmd ("clear", class_maintenance, maint_btrace_clear_cmd,
2957 _("Clears the branch tracing data.\n\
2958Discards the raw branch tracing data and the execution history data.\n\
2959The next 'record' command will fetch the branch tracing data anew.\n\
2960"),
2961 &maint_btrace_cmdlist);
2962
2963}
This page took 0.291222 seconds and 4 git commands to generate.