ari, btrace: avoid unsigned long long
[external/binutils.git] / gdb / btrace.c
1 /* Branch trace support for GDB, the GNU debugger.
2
3    Copyright (C) 2013-2015 Free Software Foundation, Inc.
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
22 #include "defs.h"
23 #include "btrace.h"
24 #include "gdbthread.h"
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"
32 #include "xml-support.h"
33 #include "regcache.h"
34 #include "rsp-low.h"
35 #include "gdbcmd.h"
36 #include "cli/cli-utils.h"
37
38 #include <inttypes.h>
39 #include <ctype.h>
40
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;
47
48 /* Control whether to skip PAD packets when computing the packet history.  */
49 static int maint_btrace_pt_skip_pad = 1;
50
51 static void btrace_add_pc (struct thread_info *tp);
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
67 /* Return the function name of a recorded function segment for printing.
68    This function never returns NULL.  */
69
70 static const char *
71 ftrace_print_function_name (const struct btrace_function *bfun)
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)
83     return MSYMBOL_PRINT_NAME (msym);
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
91 static const char *
92 ftrace_print_filename (const struct btrace_function *bfun)
93 {
94   struct symbol *sym;
95   const char *filename;
96
97   sym = bfun->sym;
98
99   if (sym != NULL)
100     filename = symtab_to_filename_for_display (symbol_symtab (sym));
101   else
102     filename = "<unknown>";
103
104   return filename;
105 }
106
107 /* Return a string representation of the address of an instruction.
108    This function never returns NULL.  */
109
110 static const char *
111 ftrace_print_insn_addr (const struct btrace_insn *insn)
112 {
113   if (insn == NULL)
114     return "<nil>";
115
116   return core_addr_to_string_nz (insn->pc);
117 }
118
119 /* Print an ftrace debug status message.  */
120
121 static void
122 ftrace_debug (const struct btrace_function *bfun, const char *prefix)
123 {
124   const char *fun, *file;
125   unsigned int ibegin, iend;
126   int level;
127
128   fun = ftrace_print_function_name (bfun);
129   file = ftrace_print_filename (bfun);
130   level = bfun->level;
131
132   ibegin = bfun->insn_offset;
133   iend = ibegin + VEC_length (btrace_insn_s, bfun->insn);
134
135   DEBUG_FTRACE ("%s: fun = %s, file = %s, level = %d, insn = [%u; %u)",
136                 prefix, fun, file, level, ibegin, iend);
137 }
138
139 /* Return non-zero if BFUN does not match MFUN and FUN,
140    return zero otherwise.  */
141
142 static int
143 ftrace_function_switched (const struct btrace_function *bfun,
144                           const struct minimal_symbol *mfun,
145                           const struct symbol *fun)
146 {
147   struct minimal_symbol *msym;
148   struct symbol *sym;
149
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
155       && strcmp (MSYMBOL_LINKAGE_NAME (mfun), MSYMBOL_LINKAGE_NAME (msym)) != 0)
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.  */
168       bfname = symtab_to_fullname (symbol_symtab (sym));
169       fname = symtab_to_fullname (symbol_symtab (fun));
170       if (filename_cmp (fname, bfname) != 0)
171         return 1;
172     }
173
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
182   return 0;
183 }
184
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
189 static struct btrace_function *
190 ftrace_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
202   if (prev == NULL)
203     {
204       /* Start counting at one.  */
205       bfun->number = 1;
206       bfun->insn_offset = 1;
207     }
208   else
209     {
210       gdb_assert (prev->flow.next == NULL);
211       prev->flow.next = bfun;
212
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;
217     }
218
219   return bfun;
220 }
221
222 /* Update the UP field of a function segment.  */
223
224 static void
225 ftrace_update_caller (struct btrace_function *bfun,
226                       struct btrace_function *caller,
227                       enum btrace_function_flag flags)
228 {
229   if (bfun->up != NULL)
230     ftrace_debug (bfun, "updating caller");
231
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
240 static void
241 ftrace_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
261 static struct btrace_function *
262 ftrace_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;
270   bfun->level += 1;
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
281 static struct btrace_function *
282 ftrace_new_tailcall (struct btrace_function *caller,
283                      struct minimal_symbol *mfun,
284                      struct symbol *fun)
285 {
286   struct btrace_function *bfun;
287
288   bfun = ftrace_new_function (caller, mfun, fun);
289   bfun->up = caller;
290   bfun->level += 1;
291   bfun->flags |= BFUN_UP_LINKS_TO_TAILCALL;
292
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
301 static struct btrace_function *
302 ftrace_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
323 static struct btrace_function *
324 ftrace_find_call (struct btrace_function *bfun)
325 {
326   for (; bfun != NULL; bfun = bfun->up)
327     {
328       struct btrace_insn *last;
329
330       /* Skip gaps.  */
331       if (bfun->errcode != 0)
332         continue;
333
334       last = VEC_last (btrace_insn_s, bfun->insn);
335
336       if (last->iclass == BTRACE_INSN_CALL)
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
347 static struct btrace_function *
348 ftrace_new_return (struct btrace_function *prev,
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.  */
381
382       /* Let's search for some actual call.  */
383       caller = ftrace_find_call (prev->up);
384       if (caller == NULL)
385         {
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;
392
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
406         {
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;
410
411           ftrace_debug (bfun, "new return - unknown caller");
412         }
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
422 static struct btrace_function *
423 ftrace_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);
432
433   ftrace_debug (bfun, "new switch");
434
435   return bfun;
436 }
437
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
442 static struct btrace_function *
443 ftrace_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
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
465 static struct btrace_function *
466 ftrace_update_function (struct btrace_function *bfun, CORE_ADDR pc)
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
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);
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     {
496       switch (last->iclass)
497         {
498         case BTRACE_INSN_RETURN:
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           }
517
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;
522
523           return ftrace_new_call (bfun, mfun, fun);
524
525         case BTRACE_INSN_JUMP:
526           {
527             CORE_ADDR start;
528
529             start = get_pc_function_start (pc);
530
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           }
536         }
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));
546
547       return ftrace_new_switch (bfun, mfun, fun);
548     }
549
550   return bfun;
551 }
552
553 /* Add the instruction at PC to BFUN's instructions.  */
554
555 static void
556 ftrace_update_insns (struct btrace_function *bfun,
557                      const struct btrace_insn *insn)
558 {
559   VEC_safe_push (btrace_insn_s, bfun->insn, insn);
560
561   if (record_debug > 1)
562     ftrace_debug (bfun, "update insn");
563 }
564
565 /* Classify the instruction at PC.  */
566
567 static enum btrace_insn_class
568 ftrace_classify_insn (struct gdbarch *gdbarch, CORE_ADDR pc)
569 {
570   enum btrace_insn_class iclass;
571
572   iclass = BTRACE_INSN_OTHER;
573   TRY
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     }
582   CATCH (error, RETURN_MASK_ERROR)
583     {
584     }
585   END_CATCH
586
587   return iclass;
588 }
589
590 /* Compute the function branch trace from BTS trace.  */
591
592 static void
593 btrace_compute_ftrace_bts (struct thread_info *tp,
594                            const struct btrace_data_bts *btrace)
595 {
596   struct btrace_thread_info *btinfo;
597   struct btrace_function *begin, *end;
598   struct gdbarch *gdbarch;
599   unsigned int blk, ngaps;
600   int level;
601
602   gdbarch = target_gdbarch ();
603   btinfo = &tp->btrace;
604   begin = btinfo->begin;
605   end = btinfo->end;
606   ngaps = btinfo->ngaps;
607   level = begin != NULL ? -btinfo->level : INT_MAX;
608   blk = VEC_length (btrace_block_s, btrace->blocks);
609
610   while (blk != 0)
611     {
612       btrace_block_s *block;
613       CORE_ADDR pc;
614
615       blk -= 1;
616
617       block = VEC_index (btrace_block_s, btrace->blocks, blk);
618       pc = block->begin;
619
620       for (;;)
621         {
622           struct btrace_insn insn;
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             {
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                 }
638               break;
639             }
640
641           end = ftrace_update_function (end, pc);
642           if (begin == NULL)
643             begin = end;
644
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);
649
650           size = 0;
651           TRY
652             {
653               size = gdb_insn_length (gdbarch, pc);
654             }
655           CATCH (error, RETURN_MASK_ERROR)
656             {
657             }
658           END_CATCH
659
660           insn.pc = pc;
661           insn.size = size;
662           insn.iclass = ftrace_classify_insn (gdbarch, pc);
663
664           ftrace_update_insns (end, &insn);
665
666           /* We're done once we pushed the instruction at the end.  */
667           if (block->end == pc)
668             break;
669
670           /* We can't continue if we fail to compute the size.  */
671           if (size <= 0)
672             {
673               warning (_("Recorded trace may be incomplete around %s."),
674                        core_addr_to_string_nz (pc));
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
681               break;
682             }
683
684           pc += size;
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);
694         }
695     }
696
697   btinfo->begin = begin;
698   btinfo->end = end;
699   btinfo->ngaps = ngaps;
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;
705 }
706
707 #if defined (HAVE_LIBIPT)
708
709 static enum btrace_insn_class
710 pt_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
730 static void
731 ftrace_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
825 static int
826 btrace_pt_readmem_callback (gdb_byte *buffer, size_t size,
827                             const struct pt_asid *asid, uint64_t pc,
828                             void *context)
829 {
830   int errcode;
831
832   TRY
833     {
834       errcode = target_read_code ((CORE_ADDR) pc, buffer, size);
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
849 static enum pt_cpu_vendor
850 pt_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
864 static 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
883 static void
884 btrace_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
952 static void
953 btrace_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
961 /* Compute the function branch trace from a block branch trace BTRACE for
962    a thread given by BTINFO.  */
963
964 static void
965 btrace_compute_ftrace (struct thread_info *tp, struct btrace_data *btrace)
966 {
967   DEBUG ("compute ftrace");
968
969   switch (btrace->format)
970     {
971     case BTRACE_FORMAT_NONE:
972       return;
973
974     case BTRACE_FORMAT_BTS:
975       btrace_compute_ftrace_bts (tp, &btrace->variant.bts);
976       return;
977
978     case BTRACE_FORMAT_PT:
979       btrace_compute_ftrace_pt (tp, &btrace->variant.pt);
980       return;
981     }
982
983   internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
984 }
985
986 /* Add an entry for the current PC.  */
987
988 static void
989 btrace_add_pc (struct thread_info *tp)
990 {
991   struct btrace_data btrace;
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
1000   btrace_data_init (&btrace);
1001   btrace.format = BTRACE_FORMAT_BTS;
1002   btrace.variant.bts.blocks = NULL;
1003
1004   cleanup = make_cleanup_btrace_data (&btrace);
1005
1006   block = VEC_safe_push (btrace_block_s, btrace.variant.bts.blocks, NULL);
1007   block->begin = pc;
1008   block->end = pc;
1009
1010   btrace_compute_ftrace (tp, &btrace);
1011
1012   do_cleanups (cleanup);
1013 }
1014
1015 /* See btrace.h.  */
1016
1017 void
1018 btrace_enable (struct thread_info *tp, const struct btrace_config *conf)
1019 {
1020   if (tp->btrace.target != NULL)
1021     return;
1022
1023   if (!target_supports_btrace (conf->format))
1024     error (_("Target does not support branch tracing."));
1025
1026   DEBUG ("enable thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1027
1028   tp->btrace.target = target_enable_btrace (tp->ptid, conf);
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);
1034 }
1035
1036 /* See btrace.h.  */
1037
1038 const struct btrace_config *
1039 btrace_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
1049 void
1050 btrace_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
1068 void
1069 btrace_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
1085 /* Stitch branch trace in BTS format.  */
1086
1087 static int
1088 btrace_stitch_bts (struct btrace_data_bts *btrace, struct thread_info *tp)
1089 {
1090   struct btrace_thread_info *btinfo;
1091   struct btrace_function *last_bfun;
1092   struct btrace_insn *last_insn;
1093   btrace_block_s *first_new_block;
1094
1095   btinfo = &tp->btrace;
1096   last_bfun = btinfo->end;
1097   gdb_assert (last_bfun != NULL);
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     }
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.  */
1112   first_new_block = VEC_last (btrace_block_s, btrace->blocks);
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
1124       && VEC_length (btrace_block_s, btrace->blocks) == 1)
1125     {
1126       VEC_pop (btrace_block_s, btrace->blocks);
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.  */
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
1167   return 0;
1168 }
1169
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.
1172    TP is the traced thread.
1173    May modifx BTRACE as well as the existing trace in TP.
1174    Return 0 on success, -1 otherwise.  */
1175
1176 static int
1177 btrace_stitch_trace (struct btrace_data *btrace, struct thread_info *tp)
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:
1189       return btrace_stitch_bts (&btrace->variant.bts, tp);
1190
1191     case BTRACE_FORMAT_PT:
1192       /* Delta reads are not supported.  */
1193       return -1;
1194     }
1195
1196   internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
1197 }
1198
1199 /* Clear the branch trace histories in BTINFO.  */
1200
1201 static void
1202 btrace_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
1213 /* Clear the branch trace maintenance histories in BTINFO.  */
1214
1215 static void
1216 btrace_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
1240 /* See btrace.h.  */
1241
1242 void
1243 btrace_fetch (struct thread_info *tp)
1244 {
1245   struct btrace_thread_info *btinfo;
1246   struct btrace_target_info *tinfo;
1247   struct btrace_data btrace;
1248   struct cleanup *cleanup;
1249   int errcode;
1250
1251   DEBUG ("fetch thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1252
1253   btinfo = &tp->btrace;
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)
1262     return;
1263
1264   btrace_data_init (&btrace);
1265   cleanup = make_cleanup_btrace_data (&btrace);
1266
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.  */
1274           errcode = btrace_stitch_trace (&btrace, tp);
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.  */
1282           if (errcode == 0 && !btrace_data_empty (&btrace))
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.  */
1301   if (!btrace_data_empty (&btrace))
1302     {
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);
1306       btrace_maint_clear (btinfo);
1307
1308       btrace_clear_history (btinfo);
1309       btrace_compute_ftrace (tp, &btrace);
1310     }
1311
1312   do_cleanups (cleanup);
1313 }
1314
1315 /* See btrace.h.  */
1316
1317 void
1318 btrace_clear (struct thread_info *tp)
1319 {
1320   struct btrace_thread_info *btinfo;
1321   struct btrace_function *it, *trash;
1322
1323   DEBUG ("clear thread %d (%s)", tp->num, target_pid_to_str (tp->ptid));
1324
1325   /* Make sure btrace frames that may hold a pointer into the branch
1326      trace data are destroyed.  */
1327   reinit_frame_cache ();
1328
1329   btinfo = &tp->btrace;
1330
1331   it = btinfo->begin;
1332   while (it != NULL)
1333     {
1334       trash = it;
1335       it = it->flow.next;
1336
1337       xfree (trash);
1338     }
1339
1340   btinfo->begin = NULL;
1341   btinfo->end = NULL;
1342   btinfo->ngaps = 0;
1343
1344   /* Must clear the maint data before - it depends on BTINFO->DATA.  */
1345   btrace_maint_clear (btinfo);
1346   btrace_data_clear (&btinfo->data);
1347   btrace_clear_history (btinfo);
1348 }
1349
1350 /* See btrace.h.  */
1351
1352 void
1353 btrace_free_objfile (struct objfile *objfile)
1354 {
1355   struct thread_info *tp;
1356
1357   DEBUG ("free objfile");
1358
1359   ALL_NON_EXITED_THREADS (tp)
1360     btrace_clear (tp);
1361 }
1362
1363 #if defined (HAVE_LIBEXPAT)
1364
1365 /* Check the btrace document version.  */
1366
1367 static void
1368 check_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
1380 static void
1381 parse_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 {
1385   struct btrace_data *btrace;
1386   struct btrace_block *block;
1387   ULONGEST *begin, *end;
1388
1389   btrace = user_data;
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     }
1404
1405   begin = xml_find_attribute (attributes, "begin")->value;
1406   end = xml_find_attribute (attributes, "end")->value;
1407
1408   block = VEC_safe_push (btrace_block_s, btrace->variant.bts.blocks, NULL);
1409   block->begin = *begin;
1410   block->end = *end;
1411 }
1412
1413 /* Parse a "raw" xml record.  */
1414
1415 static void
1416 parse_xml_raw (struct gdb_xml_parser *parser, const char *body_text,
1417                gdb_byte **pdata, size_t *psize)
1418 {
1419   struct cleanup *cleanup;
1420   gdb_byte *data, *bin;
1421   size_t len, size;
1422
1423   len = strlen (body_text);
1424   if (len % 2 != 0)
1425     gdb_xml_error (parser, _("Bad raw data size."));
1426
1427   size = len / 2;
1428
1429   bin = data = xmalloc (size);
1430   cleanup = make_cleanup (xfree, data);
1431
1432   /* We use hex encoding - see common/rsp-low.h.  */
1433   while (len > 0)
1434     {
1435       char hi, lo;
1436
1437       hi = *body_text++;
1438       lo = *body_text++;
1439
1440       if (hi == 0 || lo == 0)
1441         gdb_xml_error (parser, _("Bad hex encoding."));
1442
1443       *bin++ = fromhex (hi) * 16 + fromhex (lo);
1444       len -= 2;
1445     }
1446
1447   discard_cleanups (cleanup);
1448
1449   *pdata = data;
1450   *psize = size;
1451 }
1452
1453 /* Parse a btrace pt-config "cpu" xml record.  */
1454
1455 static void
1456 parse_xml_btrace_pt_config_cpu (struct gdb_xml_parser *parser,
1457                                 const struct gdb_xml_element *element,
1458                                 void *user_data,
1459                                 VEC (gdb_xml_value_s) *attributes)
1460 {
1461   struct btrace_data *btrace;
1462   const char *vendor;
1463   ULONGEST *family, *model, *stepping;
1464
1465   vendor = xml_find_attribute (attributes, "vendor")->value;
1466   family = xml_find_attribute (attributes, "family")->value;
1467   model = xml_find_attribute (attributes, "model")->value;
1468   stepping = xml_find_attribute (attributes, "stepping")->value;
1469
1470   btrace = user_data;
1471
1472   if (strcmp (vendor, "GenuineIntel") == 0)
1473     btrace->variant.pt.config.cpu.vendor = CV_INTEL;
1474
1475   btrace->variant.pt.config.cpu.family = *family;
1476   btrace->variant.pt.config.cpu.model = *model;
1477   btrace->variant.pt.config.cpu.stepping = *stepping;
1478 }
1479
1480 /* Parse a btrace pt "raw" xml record.  */
1481
1482 static void
1483 parse_xml_btrace_pt_raw (struct gdb_xml_parser *parser,
1484                          const struct gdb_xml_element *element,
1485                          void *user_data, const char *body_text)
1486 {
1487   struct btrace_data *btrace;
1488
1489   btrace = user_data;
1490   parse_xml_raw (parser, body_text, &btrace->variant.pt.data,
1491                  &btrace->variant.pt.size);
1492 }
1493
1494 /* Parse a btrace "pt" xml record.  */
1495
1496 static void
1497 parse_xml_btrace_pt (struct gdb_xml_parser *parser,
1498                      const struct gdb_xml_element *element,
1499                      void *user_data, VEC (gdb_xml_value_s) *attributes)
1500 {
1501   struct btrace_data *btrace;
1502
1503   btrace = user_data;
1504   btrace->format = BTRACE_FORMAT_PT;
1505   btrace->variant.pt.config.cpu.vendor = CV_UNKNOWN;
1506   btrace->variant.pt.data = NULL;
1507   btrace->variant.pt.size = 0;
1508 }
1509
1510 static const struct gdb_xml_attribute block_attributes[] = {
1511   { "begin", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1512   { "end", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1513   { NULL, GDB_XML_AF_NONE, NULL, NULL }
1514 };
1515
1516 static const struct gdb_xml_attribute btrace_pt_config_cpu_attributes[] = {
1517   { "vendor", GDB_XML_AF_NONE, NULL, NULL },
1518   { "family", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1519   { "model", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1520   { "stepping", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1521   { NULL, GDB_XML_AF_NONE, NULL, NULL }
1522 };
1523
1524 static const struct gdb_xml_element btrace_pt_config_children[] = {
1525   { "cpu", btrace_pt_config_cpu_attributes, NULL, GDB_XML_EF_OPTIONAL,
1526     parse_xml_btrace_pt_config_cpu, NULL },
1527   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1528 };
1529
1530 static const struct gdb_xml_element btrace_pt_children[] = {
1531   { "pt-config", NULL, btrace_pt_config_children, GDB_XML_EF_OPTIONAL, NULL,
1532     NULL },
1533   { "raw", NULL, NULL, GDB_XML_EF_OPTIONAL, NULL, parse_xml_btrace_pt_raw },
1534   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1535 };
1536
1537 static const struct gdb_xml_attribute btrace_attributes[] = {
1538   { "version", GDB_XML_AF_NONE, NULL, NULL },
1539   { NULL, GDB_XML_AF_NONE, NULL, NULL }
1540 };
1541
1542 static const struct gdb_xml_element btrace_children[] = {
1543   { "block", block_attributes, NULL,
1544     GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL, parse_xml_btrace_block, NULL },
1545   { "pt", NULL, btrace_pt_children, GDB_XML_EF_OPTIONAL, parse_xml_btrace_pt,
1546     NULL },
1547   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1548 };
1549
1550 static const struct gdb_xml_element btrace_elements[] = {
1551   { "btrace", btrace_attributes, btrace_children, GDB_XML_EF_NONE,
1552     check_xml_btrace_version, NULL },
1553   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1554 };
1555
1556 #endif /* defined (HAVE_LIBEXPAT) */
1557
1558 /* See btrace.h.  */
1559
1560 void
1561 parse_xml_btrace (struct btrace_data *btrace, const char *buffer)
1562 {
1563   struct cleanup *cleanup;
1564   int errcode;
1565
1566 #if defined (HAVE_LIBEXPAT)
1567
1568   btrace->format = BTRACE_FORMAT_NONE;
1569
1570   cleanup = make_cleanup_btrace_data (btrace);
1571   errcode = gdb_xml_parse_quick (_("btrace"), "btrace.dtd", btrace_elements,
1572                                  buffer, btrace);
1573   if (errcode != 0)
1574     error (_("Error parsing branch trace."));
1575
1576   /* Keep parse results.  */
1577   discard_cleanups (cleanup);
1578
1579 #else  /* !defined (HAVE_LIBEXPAT) */
1580
1581   error (_("Cannot process branch trace.  XML parsing is not supported."));
1582
1583 #endif  /* !defined (HAVE_LIBEXPAT) */
1584 }
1585
1586 #if defined (HAVE_LIBEXPAT)
1587
1588 /* Parse a btrace-conf "bts" xml record.  */
1589
1590 static void
1591 parse_xml_btrace_conf_bts (struct gdb_xml_parser *parser,
1592                           const struct gdb_xml_element *element,
1593                           void *user_data, VEC (gdb_xml_value_s) *attributes)
1594 {
1595   struct btrace_config *conf;
1596   struct gdb_xml_value *size;
1597
1598   conf = user_data;
1599   conf->format = BTRACE_FORMAT_BTS;
1600   conf->bts.size = 0;
1601
1602   size = xml_find_attribute (attributes, "size");
1603   if (size != NULL)
1604     conf->bts.size = (unsigned int) *(ULONGEST *) size->value;
1605 }
1606
1607 /* Parse a btrace-conf "pt" xml record.  */
1608
1609 static void
1610 parse_xml_btrace_conf_pt (struct gdb_xml_parser *parser,
1611                           const struct gdb_xml_element *element,
1612                           void *user_data, VEC (gdb_xml_value_s) *attributes)
1613 {
1614   struct btrace_config *conf;
1615   struct gdb_xml_value *size;
1616
1617   conf = user_data;
1618   conf->format = BTRACE_FORMAT_PT;
1619   conf->pt.size = 0;
1620
1621   size = xml_find_attribute (attributes, "size");
1622   if (size != NULL)
1623     conf->pt.size = (unsigned int) *(ULONGEST *) size->value;
1624 }
1625
1626 static const struct gdb_xml_attribute btrace_conf_pt_attributes[] = {
1627   { "size", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1628   { NULL, GDB_XML_AF_NONE, NULL, NULL }
1629 };
1630
1631 static const struct gdb_xml_attribute btrace_conf_bts_attributes[] = {
1632   { "size", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1633   { NULL, GDB_XML_AF_NONE, NULL, NULL }
1634 };
1635
1636 static const struct gdb_xml_element btrace_conf_children[] = {
1637   { "bts", btrace_conf_bts_attributes, NULL, GDB_XML_EF_OPTIONAL,
1638     parse_xml_btrace_conf_bts, NULL },
1639   { "pt", btrace_conf_pt_attributes, NULL, GDB_XML_EF_OPTIONAL,
1640     parse_xml_btrace_conf_pt, NULL },
1641   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1642 };
1643
1644 static const struct gdb_xml_attribute btrace_conf_attributes[] = {
1645   { "version", GDB_XML_AF_NONE, NULL, NULL },
1646   { NULL, GDB_XML_AF_NONE, NULL, NULL }
1647 };
1648
1649 static const struct gdb_xml_element btrace_conf_elements[] = {
1650   { "btrace-conf", btrace_conf_attributes, btrace_conf_children,
1651     GDB_XML_EF_NONE, NULL, NULL },
1652   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1653 };
1654
1655 #endif /* defined (HAVE_LIBEXPAT) */
1656
1657 /* See btrace.h.  */
1658
1659 void
1660 parse_xml_btrace_conf (struct btrace_config *conf, const char *xml)
1661 {
1662   int errcode;
1663
1664 #if defined (HAVE_LIBEXPAT)
1665
1666   errcode = gdb_xml_parse_quick (_("btrace-conf"), "btrace-conf.dtd",
1667                                  btrace_conf_elements, xml, conf);
1668   if (errcode != 0)
1669     error (_("Error parsing branch trace configuration."));
1670
1671 #else  /* !defined (HAVE_LIBEXPAT) */
1672
1673   error (_("XML parsing is not supported."));
1674
1675 #endif  /* !defined (HAVE_LIBEXPAT) */
1676 }
1677
1678 /* See btrace.h.  */
1679
1680 const struct btrace_insn *
1681 btrace_insn_get (const struct btrace_insn_iterator *it)
1682 {
1683   const struct btrace_function *bfun;
1684   unsigned int index, end;
1685
1686   index = it->index;
1687   bfun = it->function;
1688
1689   /* Check if the iterator points to a gap in the trace.  */
1690   if (bfun->errcode != 0)
1691     return NULL;
1692
1693   /* The index is within the bounds of this function's instruction vector.  */
1694   end = VEC_length (btrace_insn_s, bfun->insn);
1695   gdb_assert (0 < end);
1696   gdb_assert (index < end);
1697
1698   return VEC_index (btrace_insn_s, bfun->insn, index);
1699 }
1700
1701 /* See btrace.h.  */
1702
1703 unsigned int
1704 btrace_insn_number (const struct btrace_insn_iterator *it)
1705 {
1706   const struct btrace_function *bfun;
1707
1708   bfun = it->function;
1709
1710   /* Return zero if the iterator points to a gap in the trace.  */
1711   if (bfun->errcode != 0)
1712     return 0;
1713
1714   return bfun->insn_offset + it->index;
1715 }
1716
1717 /* See btrace.h.  */
1718
1719 void
1720 btrace_insn_begin (struct btrace_insn_iterator *it,
1721                    const struct btrace_thread_info *btinfo)
1722 {
1723   const struct btrace_function *bfun;
1724
1725   bfun = btinfo->begin;
1726   if (bfun == NULL)
1727     error (_("No trace."));
1728
1729   it->function = bfun;
1730   it->index = 0;
1731 }
1732
1733 /* See btrace.h.  */
1734
1735 void
1736 btrace_insn_end (struct btrace_insn_iterator *it,
1737                  const struct btrace_thread_info *btinfo)
1738 {
1739   const struct btrace_function *bfun;
1740   unsigned int length;
1741
1742   bfun = btinfo->end;
1743   if (bfun == NULL)
1744     error (_("No trace."));
1745
1746   length = VEC_length (btrace_insn_s, bfun->insn);
1747
1748   /* The last function may either be a gap or it contains the current
1749      instruction, which is one past the end of the execution trace; ignore
1750      it.  */
1751   if (length > 0)
1752     length -= 1;
1753
1754   it->function = bfun;
1755   it->index = length;
1756 }
1757
1758 /* See btrace.h.  */
1759
1760 unsigned int
1761 btrace_insn_next (struct btrace_insn_iterator *it, unsigned int stride)
1762 {
1763   const struct btrace_function *bfun;
1764   unsigned int index, steps;
1765
1766   bfun = it->function;
1767   steps = 0;
1768   index = it->index;
1769
1770   while (stride != 0)
1771     {
1772       unsigned int end, space, adv;
1773
1774       end = VEC_length (btrace_insn_s, bfun->insn);
1775
1776       /* An empty function segment represents a gap in the trace.  We count
1777          it as one instruction.  */
1778       if (end == 0)
1779         {
1780           const struct btrace_function *next;
1781
1782           next = bfun->flow.next;
1783           if (next == NULL)
1784             break;
1785
1786           stride -= 1;
1787           steps += 1;
1788
1789           bfun = next;
1790           index = 0;
1791
1792           continue;
1793         }
1794
1795       gdb_assert (0 < end);
1796       gdb_assert (index < end);
1797
1798       /* Compute the number of instructions remaining in this segment.  */
1799       space = end - index;
1800
1801       /* Advance the iterator as far as possible within this segment.  */
1802       adv = min (space, stride);
1803       stride -= adv;
1804       index += adv;
1805       steps += adv;
1806
1807       /* Move to the next function if we're at the end of this one.  */
1808       if (index == end)
1809         {
1810           const struct btrace_function *next;
1811
1812           next = bfun->flow.next;
1813           if (next == NULL)
1814             {
1815               /* We stepped past the last function.
1816
1817                  Let's adjust the index to point to the last instruction in
1818                  the previous function.  */
1819               index -= 1;
1820               steps -= 1;
1821               break;
1822             }
1823
1824           /* We now point to the first instruction in the new function.  */
1825           bfun = next;
1826           index = 0;
1827         }
1828
1829       /* We did make progress.  */
1830       gdb_assert (adv > 0);
1831     }
1832
1833   /* Update the iterator.  */
1834   it->function = bfun;
1835   it->index = index;
1836
1837   return steps;
1838 }
1839
1840 /* See btrace.h.  */
1841
1842 unsigned int
1843 btrace_insn_prev (struct btrace_insn_iterator *it, unsigned int stride)
1844 {
1845   const struct btrace_function *bfun;
1846   unsigned int index, steps;
1847
1848   bfun = it->function;
1849   steps = 0;
1850   index = it->index;
1851
1852   while (stride != 0)
1853     {
1854       unsigned int adv;
1855
1856       /* Move to the previous function if we're at the start of this one.  */
1857       if (index == 0)
1858         {
1859           const struct btrace_function *prev;
1860
1861           prev = bfun->flow.prev;
1862           if (prev == NULL)
1863             break;
1864
1865           /* We point to one after the last instruction in the new function.  */
1866           bfun = prev;
1867           index = VEC_length (btrace_insn_s, bfun->insn);
1868
1869           /* An empty function segment represents a gap in the trace.  We count
1870              it as one instruction.  */
1871           if (index == 0)
1872             {
1873               stride -= 1;
1874               steps += 1;
1875
1876               continue;
1877             }
1878         }
1879
1880       /* Advance the iterator as far as possible within this segment.  */
1881       adv = min (index, stride);
1882
1883       stride -= adv;
1884       index -= adv;
1885       steps += adv;
1886
1887       /* We did make progress.  */
1888       gdb_assert (adv > 0);
1889     }
1890
1891   /* Update the iterator.  */
1892   it->function = bfun;
1893   it->index = index;
1894
1895   return steps;
1896 }
1897
1898 /* See btrace.h.  */
1899
1900 int
1901 btrace_insn_cmp (const struct btrace_insn_iterator *lhs,
1902                  const struct btrace_insn_iterator *rhs)
1903 {
1904   unsigned int lnum, rnum;
1905
1906   lnum = btrace_insn_number (lhs);
1907   rnum = btrace_insn_number (rhs);
1908
1909   /* A gap has an instruction number of zero.  Things are getting more
1910      complicated if gaps are involved.
1911
1912      We take the instruction number offset from the iterator's function.
1913      This is the number of the first instruction after the gap.
1914
1915      This is OK as long as both lhs and rhs point to gaps.  If only one of
1916      them does, we need to adjust the number based on the other's regular
1917      instruction number.  Otherwise, a gap might compare equal to an
1918      instruction.  */
1919
1920   if (lnum == 0 && rnum == 0)
1921     {
1922       lnum = lhs->function->insn_offset;
1923       rnum = rhs->function->insn_offset;
1924     }
1925   else if (lnum == 0)
1926     {
1927       lnum = lhs->function->insn_offset;
1928
1929       if (lnum == rnum)
1930         lnum -= 1;
1931     }
1932   else if (rnum == 0)
1933     {
1934       rnum = rhs->function->insn_offset;
1935
1936       if (rnum == lnum)
1937         rnum -= 1;
1938     }
1939
1940   return (int) (lnum - rnum);
1941 }
1942
1943 /* See btrace.h.  */
1944
1945 int
1946 btrace_find_insn_by_number (struct btrace_insn_iterator *it,
1947                             const struct btrace_thread_info *btinfo,
1948                             unsigned int number)
1949 {
1950   const struct btrace_function *bfun;
1951   unsigned int end, length;
1952
1953   for (bfun = btinfo->end; bfun != NULL; bfun = bfun->flow.prev)
1954     {
1955       /* Skip gaps. */
1956       if (bfun->errcode != 0)
1957         continue;
1958
1959       if (bfun->insn_offset <= number)
1960         break;
1961     }
1962
1963   if (bfun == NULL)
1964     return 0;
1965
1966   length = VEC_length (btrace_insn_s, bfun->insn);
1967   gdb_assert (length > 0);
1968
1969   end = bfun->insn_offset + length;
1970   if (end <= number)
1971     return 0;
1972
1973   it->function = bfun;
1974   it->index = number - bfun->insn_offset;
1975
1976   return 1;
1977 }
1978
1979 /* See btrace.h.  */
1980
1981 const struct btrace_function *
1982 btrace_call_get (const struct btrace_call_iterator *it)
1983 {
1984   return it->function;
1985 }
1986
1987 /* See btrace.h.  */
1988
1989 unsigned int
1990 btrace_call_number (const struct btrace_call_iterator *it)
1991 {
1992   const struct btrace_thread_info *btinfo;
1993   const struct btrace_function *bfun;
1994   unsigned int insns;
1995
1996   btinfo = it->btinfo;
1997   bfun = it->function;
1998   if (bfun != NULL)
1999     return bfun->number;
2000
2001   /* For the end iterator, i.e. bfun == NULL, we return one more than the
2002      number of the last function.  */
2003   bfun = btinfo->end;
2004   insns = VEC_length (btrace_insn_s, bfun->insn);
2005
2006   /* If the function contains only a single instruction (i.e. the current
2007      instruction), it will be skipped and its number is already the number
2008      we seek.  */
2009   if (insns == 1)
2010     return bfun->number;
2011
2012   /* Otherwise, return one more than the number of the last function.  */
2013   return bfun->number + 1;
2014 }
2015
2016 /* See btrace.h.  */
2017
2018 void
2019 btrace_call_begin (struct btrace_call_iterator *it,
2020                    const struct btrace_thread_info *btinfo)
2021 {
2022   const struct btrace_function *bfun;
2023
2024   bfun = btinfo->begin;
2025   if (bfun == NULL)
2026     error (_("No trace."));
2027
2028   it->btinfo = btinfo;
2029   it->function = bfun;
2030 }
2031
2032 /* See btrace.h.  */
2033
2034 void
2035 btrace_call_end (struct btrace_call_iterator *it,
2036                  const struct btrace_thread_info *btinfo)
2037 {
2038   const struct btrace_function *bfun;
2039
2040   bfun = btinfo->end;
2041   if (bfun == NULL)
2042     error (_("No trace."));
2043
2044   it->btinfo = btinfo;
2045   it->function = NULL;
2046 }
2047
2048 /* See btrace.h.  */
2049
2050 unsigned int
2051 btrace_call_next (struct btrace_call_iterator *it, unsigned int stride)
2052 {
2053   const struct btrace_function *bfun;
2054   unsigned int steps;
2055
2056   bfun = it->function;
2057   steps = 0;
2058   while (bfun != NULL)
2059     {
2060       const struct btrace_function *next;
2061       unsigned int insns;
2062
2063       next = bfun->flow.next;
2064       if (next == NULL)
2065         {
2066           /* Ignore the last function if it only contains a single
2067              (i.e. the current) instruction.  */
2068           insns = VEC_length (btrace_insn_s, bfun->insn);
2069           if (insns == 1)
2070             steps -= 1;
2071         }
2072
2073       if (stride == steps)
2074         break;
2075
2076       bfun = next;
2077       steps += 1;
2078     }
2079
2080   it->function = bfun;
2081   return steps;
2082 }
2083
2084 /* See btrace.h.  */
2085
2086 unsigned int
2087 btrace_call_prev (struct btrace_call_iterator *it, unsigned int stride)
2088 {
2089   const struct btrace_thread_info *btinfo;
2090   const struct btrace_function *bfun;
2091   unsigned int steps;
2092
2093   bfun = it->function;
2094   steps = 0;
2095
2096   if (bfun == NULL)
2097     {
2098       unsigned int insns;
2099
2100       btinfo = it->btinfo;
2101       bfun = btinfo->end;
2102       if (bfun == NULL)
2103         return 0;
2104
2105       /* Ignore the last function if it only contains a single
2106          (i.e. the current) instruction.  */
2107       insns = VEC_length (btrace_insn_s, bfun->insn);
2108       if (insns == 1)
2109         bfun = bfun->flow.prev;
2110
2111       if (bfun == NULL)
2112         return 0;
2113
2114       steps += 1;
2115     }
2116
2117   while (steps < stride)
2118     {
2119       const struct btrace_function *prev;
2120
2121       prev = bfun->flow.prev;
2122       if (prev == NULL)
2123         break;
2124
2125       bfun = prev;
2126       steps += 1;
2127     }
2128
2129   it->function = bfun;
2130   return steps;
2131 }
2132
2133 /* See btrace.h.  */
2134
2135 int
2136 btrace_call_cmp (const struct btrace_call_iterator *lhs,
2137                  const struct btrace_call_iterator *rhs)
2138 {
2139   unsigned int lnum, rnum;
2140
2141   lnum = btrace_call_number (lhs);
2142   rnum = btrace_call_number (rhs);
2143
2144   return (int) (lnum - rnum);
2145 }
2146
2147 /* See btrace.h.  */
2148
2149 int
2150 btrace_find_call_by_number (struct btrace_call_iterator *it,
2151                             const struct btrace_thread_info *btinfo,
2152                             unsigned int number)
2153 {
2154   const struct btrace_function *bfun;
2155
2156   for (bfun = btinfo->end; bfun != NULL; bfun = bfun->flow.prev)
2157     {
2158       unsigned int bnum;
2159
2160       bnum = bfun->number;
2161       if (number == bnum)
2162         {
2163           it->btinfo = btinfo;
2164           it->function = bfun;
2165           return 1;
2166         }
2167
2168       /* Functions are ordered and numbered consecutively.  We could bail out
2169          earlier.  On the other hand, it is very unlikely that we search for
2170          a nonexistent function.  */
2171   }
2172
2173   return 0;
2174 }
2175
2176 /* See btrace.h.  */
2177
2178 void
2179 btrace_set_insn_history (struct btrace_thread_info *btinfo,
2180                          const struct btrace_insn_iterator *begin,
2181                          const struct btrace_insn_iterator *end)
2182 {
2183   if (btinfo->insn_history == NULL)
2184     btinfo->insn_history = xzalloc (sizeof (*btinfo->insn_history));
2185
2186   btinfo->insn_history->begin = *begin;
2187   btinfo->insn_history->end = *end;
2188 }
2189
2190 /* See btrace.h.  */
2191
2192 void
2193 btrace_set_call_history (struct btrace_thread_info *btinfo,
2194                          const struct btrace_call_iterator *begin,
2195                          const struct btrace_call_iterator *end)
2196 {
2197   gdb_assert (begin->btinfo == end->btinfo);
2198
2199   if (btinfo->call_history == NULL)
2200     btinfo->call_history = xzalloc (sizeof (*btinfo->call_history));
2201
2202   btinfo->call_history->begin = *begin;
2203   btinfo->call_history->end = *end;
2204 }
2205
2206 /* See btrace.h.  */
2207
2208 int
2209 btrace_is_replaying (struct thread_info *tp)
2210 {
2211   return tp->btrace.replay != NULL;
2212 }
2213
2214 /* See btrace.h.  */
2215
2216 int
2217 btrace_is_empty (struct thread_info *tp)
2218 {
2219   struct btrace_insn_iterator begin, end;
2220   struct btrace_thread_info *btinfo;
2221
2222   btinfo = &tp->btrace;
2223
2224   if (btinfo->begin == NULL)
2225     return 1;
2226
2227   btrace_insn_begin (&begin, btinfo);
2228   btrace_insn_end (&end, btinfo);
2229
2230   return btrace_insn_cmp (&begin, &end) == 0;
2231 }
2232
2233 /* Forward the cleanup request.  */
2234
2235 static void
2236 do_btrace_data_cleanup (void *arg)
2237 {
2238   btrace_data_fini (arg);
2239 }
2240
2241 /* See btrace.h.  */
2242
2243 struct cleanup *
2244 make_cleanup_btrace_data (struct btrace_data *data)
2245 {
2246   return make_cleanup (do_btrace_data_cleanup, data);
2247 }
2248
2249 #if defined (HAVE_LIBIPT)
2250
2251 /* Print a single packet.  */
2252
2253 static void
2254 pt_print_packet (const struct pt_packet *packet)
2255 {
2256   switch (packet->type)
2257     {
2258     default:
2259       printf_unfiltered (("[??: %x]"), packet->type);
2260       break;
2261
2262     case ppt_psb:
2263       printf_unfiltered (("psb"));
2264       break;
2265
2266     case ppt_psbend:
2267       printf_unfiltered (("psbend"));
2268       break;
2269
2270     case ppt_pad:
2271       printf_unfiltered (("pad"));
2272       break;
2273
2274     case ppt_tip:
2275       printf_unfiltered (("tip %u: 0x%" PRIx64 ""),
2276                          packet->payload.ip.ipc,
2277                          packet->payload.ip.ip);
2278       break;
2279
2280     case ppt_tip_pge:
2281       printf_unfiltered (("tip.pge %u: 0x%" PRIx64 ""),
2282                          packet->payload.ip.ipc,
2283                          packet->payload.ip.ip);
2284       break;
2285
2286     case ppt_tip_pgd:
2287       printf_unfiltered (("tip.pgd %u: 0x%" PRIx64 ""),
2288                          packet->payload.ip.ipc,
2289                          packet->payload.ip.ip);
2290       break;
2291
2292     case ppt_fup:
2293       printf_unfiltered (("fup %u: 0x%" PRIx64 ""),
2294                          packet->payload.ip.ipc,
2295                          packet->payload.ip.ip);
2296       break;
2297
2298     case ppt_tnt_8:
2299       printf_unfiltered (("tnt-8 %u: 0x%" PRIx64 ""),
2300                          packet->payload.tnt.bit_size,
2301                          packet->payload.tnt.payload);
2302       break;
2303
2304     case ppt_tnt_64:
2305       printf_unfiltered (("tnt-64 %u: 0x%" PRIx64 ""),
2306                          packet->payload.tnt.bit_size,
2307                          packet->payload.tnt.payload);
2308       break;
2309
2310     case ppt_pip:
2311       printf_unfiltered (("pip %" PRIx64 "%s"), packet->payload.pip.cr3,
2312                          packet->payload.pip.nr ? (" nr") : (""));
2313       break;
2314
2315     case ppt_tsc:
2316       printf_unfiltered (("tsc %" PRIx64 ""), packet->payload.tsc.tsc);
2317       break;
2318
2319     case ppt_cbr:
2320       printf_unfiltered (("cbr %u"), packet->payload.cbr.ratio);
2321       break;
2322
2323     case ppt_mode:
2324       switch (packet->payload.mode.leaf)
2325         {
2326         default:
2327           printf_unfiltered (("mode %u"), packet->payload.mode.leaf);
2328           break;
2329
2330         case pt_mol_exec:
2331           printf_unfiltered (("mode.exec%s%s"),
2332                              packet->payload.mode.bits.exec.csl
2333                              ? (" cs.l") : (""),
2334                              packet->payload.mode.bits.exec.csd
2335                              ? (" cs.d") : (""));
2336           break;
2337
2338         case pt_mol_tsx:
2339           printf_unfiltered (("mode.tsx%s%s"),
2340                              packet->payload.mode.bits.tsx.intx
2341                              ? (" intx") : (""),
2342                              packet->payload.mode.bits.tsx.abrt
2343                              ? (" abrt") : (""));
2344           break;
2345         }
2346       break;
2347
2348     case ppt_ovf:
2349       printf_unfiltered (("ovf"));
2350       break;
2351
2352     case ppt_stop:
2353       printf_unfiltered (("stop"));
2354       break;
2355
2356     case ppt_vmcs:
2357       printf_unfiltered (("vmcs %" PRIx64 ""), packet->payload.vmcs.base);
2358       break;
2359
2360     case ppt_tma:
2361       printf_unfiltered (("tma %x %x"), packet->payload.tma.ctc,
2362                          packet->payload.tma.fc);
2363       break;
2364
2365     case ppt_mtc:
2366       printf_unfiltered (("mtc %x"), packet->payload.mtc.ctc);
2367       break;
2368
2369     case ppt_cyc:
2370       printf_unfiltered (("cyc %" PRIx64 ""), packet->payload.cyc.value);
2371       break;
2372
2373     case ppt_mnt:
2374       printf_unfiltered (("mnt %" PRIx64 ""), packet->payload.mnt.payload);
2375       break;
2376     }
2377 }
2378
2379 /* Decode packets into MAINT using DECODER.  */
2380
2381 static void
2382 btrace_maint_decode_pt (struct btrace_maint_info *maint,
2383                         struct pt_packet_decoder *decoder)
2384 {
2385   int errcode;
2386
2387   for (;;)
2388     {
2389       struct btrace_pt_packet packet;
2390
2391       errcode = pt_pkt_sync_forward (decoder);
2392       if (errcode < 0)
2393         break;
2394
2395       for (;;)
2396         {
2397           pt_pkt_get_offset (decoder, &packet.offset);
2398
2399           errcode = pt_pkt_next (decoder, &packet.packet,
2400                                  sizeof(packet.packet));
2401           if (errcode < 0)
2402             break;
2403
2404           if (maint_btrace_pt_skip_pad == 0 || packet.packet.type != ppt_pad)
2405             {
2406               packet.errcode = pt_errcode (errcode);
2407               VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets,
2408                              &packet);
2409             }
2410         }
2411
2412       if (errcode == -pte_eos)
2413         break;
2414
2415       packet.errcode = pt_errcode (errcode);
2416       VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets,
2417                      &packet);
2418
2419       warning (_("Error at trace offset 0x%" PRIx64 ": %s."),
2420                packet.offset, pt_errstr (packet.errcode));
2421     }
2422
2423   if (errcode != -pte_eos)
2424     warning (_("Failed to synchronize onto the Intel(R) Processor Trace "
2425                "stream: %s."), pt_errstr (pt_errcode (errcode)));
2426 }
2427
2428 /* Update the packet history in BTINFO.  */
2429
2430 static void
2431 btrace_maint_update_pt_packets (struct btrace_thread_info *btinfo)
2432 {
2433   volatile struct gdb_exception except;
2434   struct pt_packet_decoder *decoder;
2435   struct btrace_data_pt *pt;
2436   struct pt_config config;
2437   int errcode;
2438
2439   pt = &btinfo->data.variant.pt;
2440
2441   /* Nothing to do if there is no trace.  */
2442   if (pt->size == 0)
2443     return;
2444
2445   memset (&config, 0, sizeof(config));
2446
2447   config.size = sizeof (config);
2448   config.begin = pt->data;
2449   config.end = pt->data + pt->size;
2450
2451   config.cpu.vendor = pt_translate_cpu_vendor (pt->config.cpu.vendor);
2452   config.cpu.family = pt->config.cpu.family;
2453   config.cpu.model = pt->config.cpu.model;
2454   config.cpu.stepping = pt->config.cpu.stepping;
2455
2456   errcode = pt_cpu_errata (&config.errata, &config.cpu);
2457   if (errcode < 0)
2458     error (_("Failed to configure the Intel(R) Processor Trace decoder: %s."),
2459            pt_errstr (pt_errcode (errcode)));
2460
2461   decoder = pt_pkt_alloc_decoder (&config);
2462   if (decoder == NULL)
2463     error (_("Failed to allocate the Intel(R) Processor Trace decoder."));
2464
2465   TRY
2466     {
2467       btrace_maint_decode_pt (&btinfo->maint, decoder);
2468     }
2469   CATCH (except, RETURN_MASK_ALL)
2470     {
2471       pt_pkt_free_decoder (decoder);
2472
2473       if (except.reason < 0)
2474         throw_exception (except);
2475     }
2476   END_CATCH
2477
2478   pt_pkt_free_decoder (decoder);
2479 }
2480
2481 #endif /* !defined (HAVE_LIBIPT)  */
2482
2483 /* Update the packet maintenance information for BTINFO and store the
2484    low and high bounds into BEGIN and END, respectively.
2485    Store the current iterator state into FROM and TO.  */
2486
2487 static void
2488 btrace_maint_update_packets (struct btrace_thread_info *btinfo,
2489                              unsigned int *begin, unsigned int *end,
2490                              unsigned int *from, unsigned int *to)
2491 {
2492   switch (btinfo->data.format)
2493     {
2494     default:
2495       *begin = 0;
2496       *end = 0;
2497       *from = 0;
2498       *to = 0;
2499       break;
2500
2501     case BTRACE_FORMAT_BTS:
2502       /* Nothing to do - we operate directly on BTINFO->DATA.  */
2503       *begin = 0;
2504       *end = VEC_length (btrace_block_s, btinfo->data.variant.bts.blocks);
2505       *from = btinfo->maint.variant.bts.packet_history.begin;
2506       *to = btinfo->maint.variant.bts.packet_history.end;
2507       break;
2508
2509 #if defined (HAVE_LIBIPT)
2510     case BTRACE_FORMAT_PT:
2511       if (VEC_empty (btrace_pt_packet_s, btinfo->maint.variant.pt.packets))
2512         btrace_maint_update_pt_packets (btinfo);
2513
2514       *begin = 0;
2515       *end = VEC_length (btrace_pt_packet_s, btinfo->maint.variant.pt.packets);
2516       *from = btinfo->maint.variant.pt.packet_history.begin;
2517       *to = btinfo->maint.variant.pt.packet_history.end;
2518       break;
2519 #endif /* defined (HAVE_LIBIPT)  */
2520     }
2521 }
2522
2523 /* Print packets in BTINFO from BEGIN (inclusive) until END (exclusive) and
2524    update the current iterator position.  */
2525
2526 static void
2527 btrace_maint_print_packets (struct btrace_thread_info *btinfo,
2528                             unsigned int begin, unsigned int end)
2529 {
2530   switch (btinfo->data.format)
2531     {
2532     default:
2533       break;
2534
2535     case BTRACE_FORMAT_BTS:
2536       {
2537         VEC (btrace_block_s) *blocks;
2538         unsigned int blk;
2539
2540         blocks = btinfo->data.variant.bts.blocks;
2541         for (blk = begin; blk < end; ++blk)
2542           {
2543             const btrace_block_s *block;
2544
2545             block = VEC_index (btrace_block_s, blocks, blk);
2546
2547             printf_unfiltered ("%u\tbegin: %s, end: %s\n", blk,
2548                                core_addr_to_string_nz (block->begin),
2549                                core_addr_to_string_nz (block->end));
2550           }
2551
2552         btinfo->maint.variant.bts.packet_history.begin = begin;
2553         btinfo->maint.variant.bts.packet_history.end = end;
2554       }
2555       break;
2556
2557 #if defined (HAVE_LIBIPT)
2558     case BTRACE_FORMAT_PT:
2559       {
2560         VEC (btrace_pt_packet_s) *packets;
2561         unsigned int pkt;
2562
2563         packets = btinfo->maint.variant.pt.packets;
2564         for (pkt = begin; pkt < end; ++pkt)
2565           {
2566             const struct btrace_pt_packet *packet;
2567
2568             packet = VEC_index (btrace_pt_packet_s, packets, pkt);
2569
2570             printf_unfiltered ("%u\t", pkt);
2571             printf_unfiltered ("0x%" PRIx64 "\t", packet->offset);
2572
2573             if (packet->errcode == pte_ok)
2574               pt_print_packet (&packet->packet);
2575             else
2576               printf_unfiltered ("[error: %s]", pt_errstr (packet->errcode));
2577
2578             printf_unfiltered ("\n");
2579           }
2580
2581         btinfo->maint.variant.pt.packet_history.begin = begin;
2582         btinfo->maint.variant.pt.packet_history.end = end;
2583       }
2584       break;
2585 #endif /* defined (HAVE_LIBIPT)  */
2586     }
2587 }
2588
2589 /* Read a number from an argument string.  */
2590
2591 static unsigned int
2592 get_uint (char **arg)
2593 {
2594   char *begin, *end, *pos;
2595   unsigned long number;
2596
2597   begin = *arg;
2598   pos = skip_spaces (begin);
2599
2600   if (!isdigit (*pos))
2601     error (_("Expected positive number, got: %s."), pos);
2602
2603   number = strtoul (pos, &end, 10);
2604   if (number > UINT_MAX)
2605     error (_("Number too big."));
2606
2607   *arg += (end - begin);
2608
2609   return (unsigned int) number;
2610 }
2611
2612 /* Read a context size from an argument string.  */
2613
2614 static int
2615 get_context_size (char **arg)
2616 {
2617   char *pos;
2618   int number;
2619
2620   pos = skip_spaces (*arg);
2621
2622   if (!isdigit (*pos))
2623     error (_("Expected positive number, got: %s."), pos);
2624
2625   return strtol (pos, arg, 10);
2626 }
2627
2628 /* Complain about junk at the end of an argument string.  */
2629
2630 static void
2631 no_chunk (char *arg)
2632 {
2633   if (*arg != 0)
2634     error (_("Junk after argument: %s."), arg);
2635 }
2636
2637 /* The "maintenance btrace packet-history" command.  */
2638
2639 static void
2640 maint_btrace_packet_history_cmd (char *arg, int from_tty)
2641 {
2642   struct btrace_thread_info *btinfo;
2643   struct thread_info *tp;
2644   unsigned int size, begin, end, from, to;
2645
2646   tp = find_thread_ptid (inferior_ptid);
2647   if (tp == NULL)
2648     error (_("No thread."));
2649
2650   size = 10;
2651   btinfo = &tp->btrace;
2652
2653   btrace_maint_update_packets (btinfo, &begin, &end, &from, &to);
2654   if (begin == end)
2655     {
2656       printf_unfiltered (_("No trace.\n"));
2657       return;
2658     }
2659
2660   if (arg == NULL || *arg == 0 || strcmp (arg, "+") == 0)
2661     {
2662       from = to;
2663
2664       if (end - from < size)
2665         size = end - from;
2666       to = from + size;
2667     }
2668   else if (strcmp (arg, "-") == 0)
2669     {
2670       to = from;
2671
2672       if (to - begin < size)
2673         size = to - begin;
2674       from = to - size;
2675     }
2676   else
2677     {
2678       from = get_uint (&arg);
2679       if (end <= from)
2680         error (_("'%u' is out of range."), from);
2681
2682       arg = skip_spaces (arg);
2683       if (*arg == ',')
2684         {
2685           arg = skip_spaces (++arg);
2686
2687           if (*arg == '+')
2688             {
2689               arg += 1;
2690               size = get_context_size (&arg);
2691
2692               no_chunk (arg);
2693
2694               if (end - from < size)
2695                 size = end - from;
2696               to = from + size;
2697             }
2698           else if (*arg == '-')
2699             {
2700               arg += 1;
2701               size = get_context_size (&arg);
2702
2703               no_chunk (arg);
2704
2705               /* Include the packet given as first argument.  */
2706               from += 1;
2707               to = from;
2708
2709               if (to - begin < size)
2710                 size = to - begin;
2711               from = to - size;
2712             }
2713           else
2714             {
2715               to = get_uint (&arg);
2716
2717               /* Include the packet at the second argument and silently
2718                  truncate the range.  */
2719               if (to < end)
2720                 to += 1;
2721               else
2722                 to = end;
2723
2724               no_chunk (arg);
2725             }
2726         }
2727       else
2728         {
2729           no_chunk (arg);
2730
2731           if (end - from < size)
2732             size = end - from;
2733           to = from + size;
2734         }
2735
2736       dont_repeat ();
2737     }
2738
2739   btrace_maint_print_packets (btinfo, from, to);
2740 }
2741
2742 /* The "maintenance btrace clear-packet-history" command.  */
2743
2744 static void
2745 maint_btrace_clear_packet_history_cmd (char *args, int from_tty)
2746 {
2747   struct btrace_thread_info *btinfo;
2748   struct thread_info *tp;
2749
2750   if (args != NULL && *args != 0)
2751     error (_("Invalid argument."));
2752
2753   tp = find_thread_ptid (inferior_ptid);
2754   if (tp == NULL)
2755     error (_("No thread."));
2756
2757   btinfo = &tp->btrace;
2758
2759   /* Must clear the maint data before - it depends on BTINFO->DATA.  */
2760   btrace_maint_clear (btinfo);
2761   btrace_data_clear (&btinfo->data);
2762 }
2763
2764 /* The "maintenance btrace clear" command.  */
2765
2766 static void
2767 maint_btrace_clear_cmd (char *args, int from_tty)
2768 {
2769   struct btrace_thread_info *btinfo;
2770   struct thread_info *tp;
2771
2772   if (args != NULL && *args != 0)
2773     error (_("Invalid argument."));
2774
2775   tp = find_thread_ptid (inferior_ptid);
2776   if (tp == NULL)
2777     error (_("No thread."));
2778
2779   btrace_clear (tp);
2780 }
2781
2782 /* The "maintenance btrace" command.  */
2783
2784 static void
2785 maint_btrace_cmd (char *args, int from_tty)
2786 {
2787   help_list (maint_btrace_cmdlist, "maintenance btrace ", all_commands,
2788              gdb_stdout);
2789 }
2790
2791 /* The "maintenance set btrace" command.  */
2792
2793 static void
2794 maint_btrace_set_cmd (char *args, int from_tty)
2795 {
2796   help_list (maint_btrace_set_cmdlist, "maintenance set btrace ", all_commands,
2797              gdb_stdout);
2798 }
2799
2800 /* The "maintenance show btrace" command.  */
2801
2802 static void
2803 maint_btrace_show_cmd (char *args, int from_tty)
2804 {
2805   help_list (maint_btrace_show_cmdlist, "maintenance show btrace ",
2806              all_commands, gdb_stdout);
2807 }
2808
2809 /* The "maintenance set btrace pt" command.  */
2810
2811 static void
2812 maint_btrace_pt_set_cmd (char *args, int from_tty)
2813 {
2814   help_list (maint_btrace_pt_set_cmdlist, "maintenance set btrace pt ",
2815              all_commands, gdb_stdout);
2816 }
2817
2818 /* The "maintenance show btrace pt" command.  */
2819
2820 static void
2821 maint_btrace_pt_show_cmd (char *args, int from_tty)
2822 {
2823   help_list (maint_btrace_pt_show_cmdlist, "maintenance show btrace pt ",
2824              all_commands, gdb_stdout);
2825 }
2826
2827 /* The "maintenance info btrace" command.  */
2828
2829 static void
2830 maint_info_btrace_cmd (char *args, int from_tty)
2831 {
2832   struct btrace_thread_info *btinfo;
2833   struct thread_info *tp;
2834   const struct btrace_config *conf;
2835
2836   if (args != NULL && *args != 0)
2837     error (_("Invalid argument."));
2838
2839   tp = find_thread_ptid (inferior_ptid);
2840   if (tp == NULL)
2841     error (_("No thread."));
2842
2843   btinfo = &tp->btrace;
2844
2845   conf = btrace_conf (btinfo);
2846   if (conf == NULL)
2847     error (_("No btrace configuration."));
2848
2849   printf_unfiltered (_("Format: %s.\n"),
2850                      btrace_format_string (conf->format));
2851
2852   switch (conf->format)
2853     {
2854     default:
2855       break;
2856
2857     case BTRACE_FORMAT_BTS:
2858       printf_unfiltered (_("Number of packets: %u.\n"),
2859                          VEC_length (btrace_block_s,
2860                                      btinfo->data.variant.bts.blocks));
2861       break;
2862
2863 #if defined (HAVE_LIBIPT)
2864     case BTRACE_FORMAT_PT:
2865       {
2866         struct pt_version version;
2867
2868         version = pt_library_version ();
2869         printf_unfiltered (_("Version: %u.%u.%u%s.\n"), version.major,
2870                            version.minor, version.build,
2871                            version.ext != NULL ? version.ext : "");
2872
2873         btrace_maint_update_pt_packets (btinfo);
2874         printf_unfiltered (_("Number of packets: %u.\n"),
2875                            VEC_length (btrace_pt_packet_s,
2876                                        btinfo->maint.variant.pt.packets));
2877       }
2878       break;
2879 #endif /* defined (HAVE_LIBIPT)  */
2880     }
2881 }
2882
2883 /* The "maint show btrace pt skip-pad" show value function. */
2884
2885 static void
2886 show_maint_btrace_pt_skip_pad  (struct ui_file *file, int from_tty,
2887                                   struct cmd_list_element *c,
2888                                   const char *value)
2889 {
2890   fprintf_filtered (file, _("Skip PAD packets is %s.\n"), value);
2891 }
2892
2893
2894 /* Initialize btrace maintenance commands.  */
2895
2896 void _initialize_btrace (void);
2897 void
2898 _initialize_btrace (void)
2899 {
2900   add_cmd ("btrace", class_maintenance, maint_info_btrace_cmd,
2901            _("Info about branch tracing data."), &maintenanceinfolist);
2902
2903   add_prefix_cmd ("btrace", class_maintenance, maint_btrace_cmd,
2904                   _("Branch tracing maintenance commands."),
2905                   &maint_btrace_cmdlist, "maintenance btrace ",
2906                   0, &maintenancelist);
2907
2908   add_prefix_cmd ("btrace", class_maintenance, maint_btrace_set_cmd, _("\
2909 Set branch tracing specific variables."),
2910                   &maint_btrace_set_cmdlist, "maintenance set btrace ",
2911                   0, &maintenance_set_cmdlist);
2912
2913   add_prefix_cmd ("pt", class_maintenance, maint_btrace_pt_set_cmd, _("\
2914 Set Intel(R) Processor Trace specific variables."),
2915                   &maint_btrace_pt_set_cmdlist, "maintenance set btrace pt ",
2916                   0, &maint_btrace_set_cmdlist);
2917
2918   add_prefix_cmd ("btrace", class_maintenance, maint_btrace_show_cmd, _("\
2919 Show branch tracing specific variables."),
2920                   &maint_btrace_show_cmdlist, "maintenance show btrace ",
2921                   0, &maintenance_show_cmdlist);
2922
2923   add_prefix_cmd ("pt", class_maintenance, maint_btrace_pt_show_cmd, _("\
2924 Show Intel(R) Processor Trace specific variables."),
2925                   &maint_btrace_pt_show_cmdlist, "maintenance show btrace pt ",
2926                   0, &maint_btrace_show_cmdlist);
2927
2928   add_setshow_boolean_cmd ("skip-pad", class_maintenance,
2929                            &maint_btrace_pt_skip_pad, _("\
2930 Set whether PAD packets should be skipped in the btrace packet history."), _("\
2931 Show whether PAD packets should be skipped in the btrace packet history."),_("\
2932 When enabled, PAD packets are ignored in the btrace packet history."),
2933                            NULL, show_maint_btrace_pt_skip_pad,
2934                            &maint_btrace_pt_set_cmdlist,
2935                            &maint_btrace_pt_show_cmdlist);
2936
2937   add_cmd ("packet-history", class_maintenance, maint_btrace_packet_history_cmd,
2938            _("Print the raw branch tracing data.\n\
2939 With no argument, print ten more packets after the previous ten-line print.\n\
2940 With '-' as argument print ten packets before a previous ten-line print.\n\
2941 One argument specifies the starting packet of a ten-line print.\n\
2942 Two arguments with comma between specify starting and ending packets to \
2943 print.\n\
2944 Preceded with '+'/'-' the second argument specifies the distance from the \
2945 first.\n"),
2946            &maint_btrace_cmdlist);
2947
2948   add_cmd ("clear-packet-history", class_maintenance,
2949            maint_btrace_clear_packet_history_cmd,
2950            _("Clears the branch tracing packet history.\n\
2951 Discards the raw branch tracing data but not the execution history data.\n\
2952 "),
2953            &maint_btrace_cmdlist);
2954
2955   add_cmd ("clear", class_maintenance, maint_btrace_clear_cmd,
2956            _("Clears the branch tracing data.\n\
2957 Discards the raw branch tracing data and the execution history data.\n\
2958 The next 'record' command will fetch the branch tracing data anew.\n\
2959 "),
2960            &maint_btrace_cmdlist);
2961
2962 }