1 #include <linux/perf_event.h>
2 #include <linux/types.h>
4 #include <asm/perf_event.h>
8 #include "perf_event.h"
12 LBR_FORMAT_LIP
= 0x01,
13 LBR_FORMAT_EIP
= 0x02,
14 LBR_FORMAT_EIP_FLAGS
= 0x03,
15 LBR_FORMAT_EIP_FLAGS2
= 0x04,
16 LBR_FORMAT_MAX_KNOWN
= LBR_FORMAT_EIP_FLAGS2
,
22 } lbr_desc
[LBR_FORMAT_MAX_KNOWN
+ 1] = {
23 [LBR_FORMAT_EIP_FLAGS
] = LBR_EIP_FLAGS
,
24 [LBR_FORMAT_EIP_FLAGS2
] = LBR_EIP_FLAGS
| LBR_TSX
,
28 * Intel LBR_SELECT bits
29 * Intel Vol3a, April 2011, Section 16.7 Table 16-10
31 * Hardware branch filter (not available on all CPUs)
33 #define LBR_KERNEL_BIT 0 /* do not capture at ring0 */
34 #define LBR_USER_BIT 1 /* do not capture at ring > 0 */
35 #define LBR_JCC_BIT 2 /* do not capture conditional branches */
36 #define LBR_REL_CALL_BIT 3 /* do not capture relative calls */
37 #define LBR_IND_CALL_BIT 4 /* do not capture indirect calls */
38 #define LBR_RETURN_BIT 5 /* do not capture near returns */
39 #define LBR_IND_JMP_BIT 6 /* do not capture indirect jumps */
40 #define LBR_REL_JMP_BIT 7 /* do not capture relative jumps */
41 #define LBR_FAR_BIT 8 /* do not capture far branches */
42 #define LBR_CALL_STACK_BIT 9 /* enable call stack */
44 #define LBR_KERNEL (1 << LBR_KERNEL_BIT)
45 #define LBR_USER (1 << LBR_USER_BIT)
46 #define LBR_JCC (1 << LBR_JCC_BIT)
47 #define LBR_REL_CALL (1 << LBR_REL_CALL_BIT)
48 #define LBR_IND_CALL (1 << LBR_IND_CALL_BIT)
49 #define LBR_RETURN (1 << LBR_RETURN_BIT)
50 #define LBR_REL_JMP (1 << LBR_REL_JMP_BIT)
51 #define LBR_IND_JMP (1 << LBR_IND_JMP_BIT)
52 #define LBR_FAR (1 << LBR_FAR_BIT)
53 #define LBR_CALL_STACK (1 << LBR_CALL_STACK_BIT)
55 #define LBR_PLM (LBR_KERNEL | LBR_USER)
57 #define LBR_SEL_MASK 0x1ff /* valid bits in LBR_SELECT */
58 #define LBR_NOT_SUPP -1 /* LBR filter not supported */
59 #define LBR_IGN 0 /* ignored */
70 #define LBR_FROM_FLAG_MISPRED (1ULL << 63)
71 #define LBR_FROM_FLAG_IN_TX (1ULL << 62)
72 #define LBR_FROM_FLAG_ABORT (1ULL << 61)
75 * x86control flow change classification
76 * x86control flow changes include branches, interrupts, traps, faults
79 X86_BR_NONE
= 0, /* unknown */
81 X86_BR_USER
= 1 << 0, /* branch target is user */
82 X86_BR_KERNEL
= 1 << 1, /* branch target is kernel */
84 X86_BR_CALL
= 1 << 2, /* call */
85 X86_BR_RET
= 1 << 3, /* return */
86 X86_BR_SYSCALL
= 1 << 4, /* syscall */
87 X86_BR_SYSRET
= 1 << 5, /* syscall return */
88 X86_BR_INT
= 1 << 6, /* sw interrupt */
89 X86_BR_IRET
= 1 << 7, /* return from interrupt */
90 X86_BR_JCC
= 1 << 8, /* conditional */
91 X86_BR_JMP
= 1 << 9, /* jump */
92 X86_BR_IRQ
= 1 << 10,/* hw interrupt or trap or fault */
93 X86_BR_IND_CALL
= 1 << 11,/* indirect calls */
94 X86_BR_ABORT
= 1 << 12,/* transaction abort */
95 X86_BR_IN_TX
= 1 << 13,/* in transaction */
96 X86_BR_NO_TX
= 1 << 14,/* not in transaction */
97 X86_BR_ZERO_CALL
= 1 << 15,/* zero length call */
98 X86_BR_CALL_STACK
= 1 << 16,/* call stack */
99 X86_BR_IND_JMP
= 1 << 17,/* indirect jump */
102 #define X86_BR_PLM (X86_BR_USER | X86_BR_KERNEL)
103 #define X86_BR_ANYTX (X86_BR_NO_TX | X86_BR_IN_TX)
120 #define X86_BR_ALL (X86_BR_PLM | X86_BR_ANY)
122 #define X86_BR_ANY_CALL \
130 static void intel_pmu_lbr_filter(struct cpu_hw_events
*cpuc
);
133 * We only support LBR implementations that have FREEZE_LBRS_ON_PMI
134 * otherwise it becomes near impossible to get a reliable stack.
137 static void __intel_pmu_lbr_enable(bool pmi
)
139 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
140 u64 debugctl
, lbr_select
= 0, orig_debugctl
;
143 * No need to reprogram LBR_SELECT in a PMI, as it
146 if (cpuc
->lbr_sel
&& !pmi
) {
147 lbr_select
= cpuc
->lbr_sel
->config
;
148 wrmsrl(MSR_LBR_SELECT
, lbr_select
);
151 rdmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
152 orig_debugctl
= debugctl
;
153 debugctl
|= DEBUGCTLMSR_LBR
;
155 * LBR callstack does not work well with FREEZE_LBRS_ON_PMI.
156 * If FREEZE_LBRS_ON_PMI is set, PMI near call/return instructions
157 * may cause superfluous increase/decrease of LBR_TOS.
159 if (!(lbr_select
& LBR_CALL_STACK
))
160 debugctl
|= DEBUGCTLMSR_FREEZE_LBRS_ON_PMI
;
161 if (orig_debugctl
!= debugctl
)
162 wrmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
165 static void __intel_pmu_lbr_disable(void)
169 rdmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
170 debugctl
&= ~(DEBUGCTLMSR_LBR
| DEBUGCTLMSR_FREEZE_LBRS_ON_PMI
);
171 wrmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
174 static void intel_pmu_lbr_reset_32(void)
178 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++)
179 wrmsrl(x86_pmu
.lbr_from
+ i
, 0);
182 static void intel_pmu_lbr_reset_64(void)
186 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
187 wrmsrl(x86_pmu
.lbr_from
+ i
, 0);
188 wrmsrl(x86_pmu
.lbr_to
+ i
, 0);
192 void intel_pmu_lbr_reset(void)
197 if (x86_pmu
.intel_cap
.lbr_format
== LBR_FORMAT_32
)
198 intel_pmu_lbr_reset_32();
200 intel_pmu_lbr_reset_64();
204 * TOS = most recently recorded branch
206 static inline u64
intel_pmu_lbr_tos(void)
210 rdmsrl(x86_pmu
.lbr_tos
, tos
);
219 static void __intel_pmu_lbr_restore(struct x86_perf_task_context
*task_ctx
)
222 unsigned lbr_idx
, mask
;
225 if (task_ctx
->lbr_callstack_users
== 0 ||
226 task_ctx
->lbr_stack_state
== LBR_NONE
) {
227 intel_pmu_lbr_reset();
231 mask
= x86_pmu
.lbr_nr
- 1;
232 tos
= intel_pmu_lbr_tos();
233 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
234 lbr_idx
= (tos
- i
) & mask
;
235 wrmsrl(x86_pmu
.lbr_from
+ lbr_idx
, task_ctx
->lbr_from
[i
]);
236 wrmsrl(x86_pmu
.lbr_to
+ lbr_idx
, task_ctx
->lbr_to
[i
]);
238 task_ctx
->lbr_stack_state
= LBR_NONE
;
241 static void __intel_pmu_lbr_save(struct x86_perf_task_context
*task_ctx
)
244 unsigned lbr_idx
, mask
;
247 if (task_ctx
->lbr_callstack_users
== 0) {
248 task_ctx
->lbr_stack_state
= LBR_NONE
;
252 mask
= x86_pmu
.lbr_nr
- 1;
253 tos
= intel_pmu_lbr_tos();
254 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
255 lbr_idx
= (tos
- i
) & mask
;
256 rdmsrl(x86_pmu
.lbr_from
+ lbr_idx
, task_ctx
->lbr_from
[i
]);
257 rdmsrl(x86_pmu
.lbr_to
+ lbr_idx
, task_ctx
->lbr_to
[i
]);
259 task_ctx
->lbr_stack_state
= LBR_VALID
;
262 void intel_pmu_lbr_sched_task(struct perf_event_context
*ctx
, bool sched_in
)
264 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
265 struct x86_perf_task_context
*task_ctx
;
268 * If LBR callstack feature is enabled and the stack was saved when
269 * the task was scheduled out, restore the stack. Otherwise flush
272 task_ctx
= ctx
? ctx
->task_ctx_data
: NULL
;
275 __intel_pmu_lbr_restore(task_ctx
);
276 cpuc
->lbr_context
= ctx
;
278 __intel_pmu_lbr_save(task_ctx
);
284 * When sampling the branck stack in system-wide, it may be
285 * necessary to flush the stack on context switch. This happens
286 * when the branch stack does not tag its entries with the pid
287 * of the current task. Otherwise it becomes impossible to
288 * associate a branch entry with a task. This ambiguity is more
289 * likely to appear when the branch stack supports priv level
290 * filtering and the user sets it to monitor only at the user
291 * level (which could be a useful measurement in system-wide
292 * mode). In that case, the risk is high of having a branch
293 * stack with branch from multiple tasks.
296 intel_pmu_lbr_reset();
297 cpuc
->lbr_context
= ctx
;
301 static inline bool branch_user_callstack(unsigned br_sel
)
303 return (br_sel
& X86_BR_USER
) && (br_sel
& X86_BR_CALL_STACK
);
306 void intel_pmu_lbr_enable(struct perf_event
*event
)
308 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
309 struct x86_perf_task_context
*task_ctx
;
315 * Reset the LBR stack if we changed task context to
318 if (event
->ctx
->task
&& cpuc
->lbr_context
!= event
->ctx
) {
319 intel_pmu_lbr_reset();
320 cpuc
->lbr_context
= event
->ctx
;
322 cpuc
->br_sel
= event
->hw
.branch_reg
.reg
;
324 if (branch_user_callstack(cpuc
->br_sel
) && event
->ctx
&&
325 event
->ctx
->task_ctx_data
) {
326 task_ctx
= event
->ctx
->task_ctx_data
;
327 task_ctx
->lbr_callstack_users
++;
331 perf_sched_cb_inc(event
->ctx
->pmu
);
334 void intel_pmu_lbr_disable(struct perf_event
*event
)
336 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
337 struct x86_perf_task_context
*task_ctx
;
342 if (branch_user_callstack(cpuc
->br_sel
) && event
->ctx
&&
343 event
->ctx
->task_ctx_data
) {
344 task_ctx
= event
->ctx
->task_ctx_data
;
345 task_ctx
->lbr_callstack_users
--;
349 WARN_ON_ONCE(cpuc
->lbr_users
< 0);
350 perf_sched_cb_dec(event
->ctx
->pmu
);
352 if (cpuc
->enabled
&& !cpuc
->lbr_users
) {
353 __intel_pmu_lbr_disable();
354 /* avoid stale pointer */
355 cpuc
->lbr_context
= NULL
;
359 void intel_pmu_lbr_enable_all(bool pmi
)
361 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
364 __intel_pmu_lbr_enable(pmi
);
367 void intel_pmu_lbr_disable_all(void)
369 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
372 __intel_pmu_lbr_disable();
375 static void intel_pmu_lbr_read_32(struct cpu_hw_events
*cpuc
)
377 unsigned long mask
= x86_pmu
.lbr_nr
- 1;
378 u64 tos
= intel_pmu_lbr_tos();
381 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
382 unsigned long lbr_idx
= (tos
- i
) & mask
;
391 rdmsrl(x86_pmu
.lbr_from
+ lbr_idx
, msr_lastbranch
.lbr
);
393 cpuc
->lbr_entries
[i
].from
= msr_lastbranch
.from
;
394 cpuc
->lbr_entries
[i
].to
= msr_lastbranch
.to
;
395 cpuc
->lbr_entries
[i
].mispred
= 0;
396 cpuc
->lbr_entries
[i
].predicted
= 0;
397 cpuc
->lbr_entries
[i
].reserved
= 0;
399 cpuc
->lbr_stack
.nr
= i
;
403 * Due to lack of segmentation in Linux the effective address (offset)
404 * is the same as the linear address, allowing us to merge the LIP and EIP
407 static void intel_pmu_lbr_read_64(struct cpu_hw_events
*cpuc
)
409 unsigned long mask
= x86_pmu
.lbr_nr
- 1;
410 int lbr_format
= x86_pmu
.intel_cap
.lbr_format
;
411 u64 tos
= intel_pmu_lbr_tos();
415 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
416 unsigned long lbr_idx
= (tos
- i
) & mask
;
417 u64 from
, to
, mis
= 0, pred
= 0, in_tx
= 0, abort
= 0;
419 int lbr_flags
= lbr_desc
[lbr_format
];
421 rdmsrl(x86_pmu
.lbr_from
+ lbr_idx
, from
);
422 rdmsrl(x86_pmu
.lbr_to
+ lbr_idx
, to
);
424 if (lbr_flags
& LBR_EIP_FLAGS
) {
425 mis
= !!(from
& LBR_FROM_FLAG_MISPRED
);
429 if (lbr_flags
& LBR_TSX
) {
430 in_tx
= !!(from
& LBR_FROM_FLAG_IN_TX
);
431 abort
= !!(from
& LBR_FROM_FLAG_ABORT
);
434 from
= (u64
)((((s64
)from
) << skip
) >> skip
);
437 * Some CPUs report duplicated abort records,
438 * with the second entry not having an abort bit set.
439 * Skip them here. This loop runs backwards,
440 * so we need to undo the previous record.
441 * If the abort just happened outside the window
442 * the extra entry cannot be removed.
444 if (abort
&& x86_pmu
.lbr_double_abort
&& out
> 0)
447 cpuc
->lbr_entries
[out
].from
= from
;
448 cpuc
->lbr_entries
[out
].to
= to
;
449 cpuc
->lbr_entries
[out
].mispred
= mis
;
450 cpuc
->lbr_entries
[out
].predicted
= pred
;
451 cpuc
->lbr_entries
[out
].in_tx
= in_tx
;
452 cpuc
->lbr_entries
[out
].abort
= abort
;
453 cpuc
->lbr_entries
[out
].reserved
= 0;
456 cpuc
->lbr_stack
.nr
= out
;
459 void intel_pmu_lbr_read(void)
461 struct cpu_hw_events
*cpuc
= this_cpu_ptr(&cpu_hw_events
);
463 if (!cpuc
->lbr_users
)
466 if (x86_pmu
.intel_cap
.lbr_format
== LBR_FORMAT_32
)
467 intel_pmu_lbr_read_32(cpuc
);
469 intel_pmu_lbr_read_64(cpuc
);
471 intel_pmu_lbr_filter(cpuc
);
476 * - in case there is no HW filter
477 * - in case the HW filter has errata or limitations
479 static int intel_pmu_setup_sw_lbr_filter(struct perf_event
*event
)
481 u64 br_type
= event
->attr
.branch_sample_type
;
484 if (br_type
& PERF_SAMPLE_BRANCH_USER
)
487 if (br_type
& PERF_SAMPLE_BRANCH_KERNEL
)
488 mask
|= X86_BR_KERNEL
;
490 /* we ignore BRANCH_HV here */
492 if (br_type
& PERF_SAMPLE_BRANCH_ANY
)
495 if (br_type
& PERF_SAMPLE_BRANCH_ANY_CALL
)
496 mask
|= X86_BR_ANY_CALL
;
498 if (br_type
& PERF_SAMPLE_BRANCH_ANY_RETURN
)
499 mask
|= X86_BR_RET
| X86_BR_IRET
| X86_BR_SYSRET
;
501 if (br_type
& PERF_SAMPLE_BRANCH_IND_CALL
)
502 mask
|= X86_BR_IND_CALL
;
504 if (br_type
& PERF_SAMPLE_BRANCH_ABORT_TX
)
505 mask
|= X86_BR_ABORT
;
507 if (br_type
& PERF_SAMPLE_BRANCH_IN_TX
)
508 mask
|= X86_BR_IN_TX
;
510 if (br_type
& PERF_SAMPLE_BRANCH_NO_TX
)
511 mask
|= X86_BR_NO_TX
;
513 if (br_type
& PERF_SAMPLE_BRANCH_COND
)
516 if (br_type
& PERF_SAMPLE_BRANCH_CALL_STACK
) {
517 if (!x86_pmu_has_lbr_callstack())
519 if (mask
& ~(X86_BR_USER
| X86_BR_KERNEL
))
521 mask
|= X86_BR_CALL
| X86_BR_IND_CALL
| X86_BR_RET
|
525 if (br_type
& PERF_SAMPLE_BRANCH_IND_JUMP
)
526 mask
|= X86_BR_IND_JMP
;
529 * stash actual user request into reg, it may
530 * be used by fixup code for some CPU
532 event
->hw
.branch_reg
.reg
= mask
;
537 * setup the HW LBR filter
538 * Used only when available, may not be enough to disambiguate
539 * all branches, may need the help of the SW filter
541 static int intel_pmu_setup_hw_lbr_filter(struct perf_event
*event
)
543 struct hw_perf_event_extra
*reg
;
544 u64 br_type
= event
->attr
.branch_sample_type
;
548 for (i
= 0; i
< PERF_SAMPLE_BRANCH_MAX_SHIFT
; i
++) {
549 if (!(br_type
& (1ULL << i
)))
552 v
= x86_pmu
.lbr_sel_map
[i
];
553 if (v
== LBR_NOT_SUPP
)
559 reg
= &event
->hw
.branch_reg
;
560 reg
->idx
= EXTRA_REG_LBR
;
563 * The first 9 bits (LBR_SEL_MASK) in LBR_SELECT operate
564 * in suppress mode. So LBR_SELECT should be set to
565 * (~mask & LBR_SEL_MASK) | (mask & ~LBR_SEL_MASK)
567 reg
->config
= mask
^ x86_pmu
.lbr_sel_mask
;
572 int intel_pmu_setup_lbr_filter(struct perf_event
*event
)
583 * setup SW LBR filter
585 ret
= intel_pmu_setup_sw_lbr_filter(event
);
590 * setup HW LBR filter, if any
592 if (x86_pmu
.lbr_sel_map
)
593 ret
= intel_pmu_setup_hw_lbr_filter(event
);
599 * return the type of control flow change at address "from"
600 * intruction is not necessarily a branch (in case of interrupt).
602 * The branch type returned also includes the priv level of the
603 * target of the control flow change (X86_BR_USER, X86_BR_KERNEL).
605 * If a branch type is unknown OR the instruction cannot be
606 * decoded (e.g., text page not present), then X86_BR_NONE is
609 static int branch_type(unsigned long from
, unsigned long to
, int abort
)
613 int bytes_read
, bytes_left
;
614 int ret
= X86_BR_NONE
;
615 int ext
, to_plm
, from_plm
;
616 u8 buf
[MAX_INSN_SIZE
];
619 to_plm
= kernel_ip(to
) ? X86_BR_KERNEL
: X86_BR_USER
;
620 from_plm
= kernel_ip(from
) ? X86_BR_KERNEL
: X86_BR_USER
;
623 * maybe zero if lbr did not fill up after a reset by the time
624 * we get a PMU interrupt
626 if (from
== 0 || to
== 0)
630 return X86_BR_ABORT
| to_plm
;
632 if (from_plm
== X86_BR_USER
) {
634 * can happen if measuring at the user level only
635 * and we interrupt in a kernel thread, e.g., idle.
640 /* may fail if text not present */
641 bytes_left
= copy_from_user_nmi(buf
, (void __user
*)from
,
643 bytes_read
= MAX_INSN_SIZE
- bytes_left
;
650 * The LBR logs any address in the IP, even if the IP just
651 * faulted. This means userspace can control the from address.
652 * Ensure we don't blindy read any address by validating it is
653 * a known text address.
655 if (kernel_text_address(from
)) {
658 * Assume we can get the maximum possible size
659 * when grabbing kernel data. This is not
660 * _strictly_ true since we could possibly be
661 * executing up next to a memory hole, but
662 * it is very unlikely to be a problem.
664 bytes_read
= MAX_INSN_SIZE
;
671 * decoder needs to know the ABI especially
672 * on 64-bit systems running 32-bit apps
675 is64
= kernel_ip((unsigned long)addr
) || !test_thread_flag(TIF_IA32
);
677 insn_init(&insn
, addr
, bytes_read
, is64
);
678 insn_get_opcode(&insn
);
679 if (!insn
.opcode
.got
)
682 switch (insn
.opcode
.bytes
[0]) {
684 switch (insn
.opcode
.bytes
[1]) {
685 case 0x05: /* syscall */
686 case 0x34: /* sysenter */
687 ret
= X86_BR_SYSCALL
;
689 case 0x07: /* sysret */
690 case 0x35: /* sysexit */
693 case 0x80 ... 0x8f: /* conditional */
700 case 0x70 ... 0x7f: /* conditional */
703 case 0xc2: /* near ret */
704 case 0xc3: /* near ret */
705 case 0xca: /* far ret */
706 case 0xcb: /* far ret */
709 case 0xcf: /* iret */
712 case 0xcc ... 0xce: /* int */
715 case 0xe8: /* call near rel */
716 insn_get_immediate(&insn
);
717 if (insn
.immediate1
.value
== 0) {
718 /* zero length call */
719 ret
= X86_BR_ZERO_CALL
;
722 case 0x9a: /* call far absolute */
725 case 0xe0 ... 0xe3: /* loop jmp */
728 case 0xe9 ... 0xeb: /* jmp */
731 case 0xff: /* call near absolute, call far absolute ind */
732 insn_get_modrm(&insn
);
733 ext
= (insn
.modrm
.bytes
[0] >> 3) & 0x7;
735 case 2: /* near ind call */
736 case 3: /* far ind call */
737 ret
= X86_BR_IND_CALL
;
741 ret
= X86_BR_IND_JMP
;
749 * interrupts, traps, faults (and thus ring transition) may
750 * occur on any instructions. Thus, to classify them correctly,
751 * we need to first look at the from and to priv levels. If they
752 * are different and to is in the kernel, then it indicates
753 * a ring transition. If the from instruction is not a ring
754 * transition instr (syscall, systenter, int), then it means
755 * it was a irq, trap or fault.
757 * we have no way of detecting kernel to kernel faults.
759 if (from_plm
== X86_BR_USER
&& to_plm
== X86_BR_KERNEL
760 && ret
!= X86_BR_SYSCALL
&& ret
!= X86_BR_INT
)
764 * branch priv level determined by target as
765 * is done by HW when LBR_SELECT is implemented
767 if (ret
!= X86_BR_NONE
)
774 * implement actual branch filter based on user demand.
775 * Hardware may not exactly satisfy that request, thus
776 * we need to inspect opcodes. Mismatched branches are
777 * discarded. Therefore, the number of branches returned
778 * in PERF_SAMPLE_BRANCH_STACK sample may vary.
781 intel_pmu_lbr_filter(struct cpu_hw_events
*cpuc
)
784 int br_sel
= cpuc
->br_sel
;
786 bool compress
= false;
788 /* if sampling all branches, then nothing to filter */
789 if ((br_sel
& X86_BR_ALL
) == X86_BR_ALL
)
792 for (i
= 0; i
< cpuc
->lbr_stack
.nr
; i
++) {
794 from
= cpuc
->lbr_entries
[i
].from
;
795 to
= cpuc
->lbr_entries
[i
].to
;
797 type
= branch_type(from
, to
, cpuc
->lbr_entries
[i
].abort
);
798 if (type
!= X86_BR_NONE
&& (br_sel
& X86_BR_ANYTX
)) {
799 if (cpuc
->lbr_entries
[i
].in_tx
)
800 type
|= X86_BR_IN_TX
;
802 type
|= X86_BR_NO_TX
;
805 /* if type does not correspond, then discard */
806 if (type
== X86_BR_NONE
|| (br_sel
& type
) != type
) {
807 cpuc
->lbr_entries
[i
].from
= 0;
815 /* remove all entries with from=0 */
816 for (i
= 0; i
< cpuc
->lbr_stack
.nr
; ) {
817 if (!cpuc
->lbr_entries
[i
].from
) {
819 while (++j
< cpuc
->lbr_stack
.nr
)
820 cpuc
->lbr_entries
[j
-1] = cpuc
->lbr_entries
[j
];
821 cpuc
->lbr_stack
.nr
--;
822 if (!cpuc
->lbr_entries
[i
].from
)
830 * Map interface branch filters onto LBR filters
832 static const int nhm_lbr_sel_map
[PERF_SAMPLE_BRANCH_MAX_SHIFT
] = {
833 [PERF_SAMPLE_BRANCH_ANY_SHIFT
] = LBR_ANY
,
834 [PERF_SAMPLE_BRANCH_USER_SHIFT
] = LBR_USER
,
835 [PERF_SAMPLE_BRANCH_KERNEL_SHIFT
] = LBR_KERNEL
,
836 [PERF_SAMPLE_BRANCH_HV_SHIFT
] = LBR_IGN
,
837 [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT
] = LBR_RETURN
| LBR_REL_JMP
838 | LBR_IND_JMP
| LBR_FAR
,
840 * NHM/WSM erratum: must include REL_JMP+IND_JMP to get CALL branches
842 [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT
] =
843 LBR_REL_CALL
| LBR_IND_CALL
| LBR_REL_JMP
| LBR_IND_JMP
| LBR_FAR
,
845 * NHM/WSM erratum: must include IND_JMP to capture IND_CALL
847 [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT
] = LBR_IND_CALL
| LBR_IND_JMP
,
848 [PERF_SAMPLE_BRANCH_COND_SHIFT
] = LBR_JCC
,
849 [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT
] = LBR_IND_JMP
,
852 static const int snb_lbr_sel_map
[PERF_SAMPLE_BRANCH_MAX_SHIFT
] = {
853 [PERF_SAMPLE_BRANCH_ANY_SHIFT
] = LBR_ANY
,
854 [PERF_SAMPLE_BRANCH_USER_SHIFT
] = LBR_USER
,
855 [PERF_SAMPLE_BRANCH_KERNEL_SHIFT
] = LBR_KERNEL
,
856 [PERF_SAMPLE_BRANCH_HV_SHIFT
] = LBR_IGN
,
857 [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT
] = LBR_RETURN
| LBR_FAR
,
858 [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT
] = LBR_REL_CALL
| LBR_IND_CALL
860 [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT
] = LBR_IND_CALL
,
861 [PERF_SAMPLE_BRANCH_COND_SHIFT
] = LBR_JCC
,
862 [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT
] = LBR_IND_JMP
,
865 static const int hsw_lbr_sel_map
[PERF_SAMPLE_BRANCH_MAX_SHIFT
] = {
866 [PERF_SAMPLE_BRANCH_ANY_SHIFT
] = LBR_ANY
,
867 [PERF_SAMPLE_BRANCH_USER_SHIFT
] = LBR_USER
,
868 [PERF_SAMPLE_BRANCH_KERNEL_SHIFT
] = LBR_KERNEL
,
869 [PERF_SAMPLE_BRANCH_HV_SHIFT
] = LBR_IGN
,
870 [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT
] = LBR_RETURN
| LBR_FAR
,
871 [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT
] = LBR_REL_CALL
| LBR_IND_CALL
873 [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT
] = LBR_IND_CALL
,
874 [PERF_SAMPLE_BRANCH_COND_SHIFT
] = LBR_JCC
,
875 [PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT
] = LBR_REL_CALL
| LBR_IND_CALL
876 | LBR_RETURN
| LBR_CALL_STACK
,
877 [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT
] = LBR_IND_JMP
,
881 void __init
intel_pmu_lbr_init_core(void)
884 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
885 x86_pmu
.lbr_from
= MSR_LBR_CORE_FROM
;
886 x86_pmu
.lbr_to
= MSR_LBR_CORE_TO
;
889 * SW branch filter usage:
890 * - compensate for lack of HW filter
892 pr_cont("4-deep LBR, ");
895 /* nehalem/westmere */
896 void __init
intel_pmu_lbr_init_nhm(void)
899 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
900 x86_pmu
.lbr_from
= MSR_LBR_NHM_FROM
;
901 x86_pmu
.lbr_to
= MSR_LBR_NHM_TO
;
903 x86_pmu
.lbr_sel_mask
= LBR_SEL_MASK
;
904 x86_pmu
.lbr_sel_map
= nhm_lbr_sel_map
;
907 * SW branch filter usage:
908 * - workaround LBR_SEL errata (see above)
909 * - support syscall, sysret capture.
910 * That requires LBR_FAR but that means far
911 * jmp need to be filtered out
913 pr_cont("16-deep LBR, ");
917 void __init
intel_pmu_lbr_init_snb(void)
920 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
921 x86_pmu
.lbr_from
= MSR_LBR_NHM_FROM
;
922 x86_pmu
.lbr_to
= MSR_LBR_NHM_TO
;
924 x86_pmu
.lbr_sel_mask
= LBR_SEL_MASK
;
925 x86_pmu
.lbr_sel_map
= snb_lbr_sel_map
;
928 * SW branch filter usage:
929 * - support syscall, sysret capture.
930 * That requires LBR_FAR but that means far
931 * jmp need to be filtered out
933 pr_cont("16-deep LBR, ");
937 void intel_pmu_lbr_init_hsw(void)
940 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
941 x86_pmu
.lbr_from
= MSR_LBR_NHM_FROM
;
942 x86_pmu
.lbr_to
= MSR_LBR_NHM_TO
;
944 x86_pmu
.lbr_sel_mask
= LBR_SEL_MASK
;
945 x86_pmu
.lbr_sel_map
= hsw_lbr_sel_map
;
947 pr_cont("16-deep LBR, ");
951 void __init
intel_pmu_lbr_init_atom(void)
954 * only models starting at stepping 10 seems
955 * to have an operational LBR which can freeze
958 if (boot_cpu_data
.x86_model
== 28
959 && boot_cpu_data
.x86_mask
< 10) {
960 pr_cont("LBR disabled due to erratum");
965 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
966 x86_pmu
.lbr_from
= MSR_LBR_CORE_FROM
;
967 x86_pmu
.lbr_to
= MSR_LBR_CORE_TO
;
970 * SW branch filter usage:
971 * - compensate for lack of HW filter
973 pr_cont("8-deep LBR, ");