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,
18 * Intel LBR_SELECT bits
19 * Intel Vol3a, April 2011, Section 16.7 Table 16-10
21 * Hardware branch filter (not available on all CPUs)
23 #define LBR_KERNEL_BIT 0 /* do not capture at ring0 */
24 #define LBR_USER_BIT 1 /* do not capture at ring > 0 */
25 #define LBR_JCC_BIT 2 /* do not capture conditional branches */
26 #define LBR_REL_CALL_BIT 3 /* do not capture relative calls */
27 #define LBR_IND_CALL_BIT 4 /* do not capture indirect calls */
28 #define LBR_RETURN_BIT 5 /* do not capture near returns */
29 #define LBR_IND_JMP_BIT 6 /* do not capture indirect jumps */
30 #define LBR_REL_JMP_BIT 7 /* do not capture relative jumps */
31 #define LBR_FAR_BIT 8 /* do not capture far branches */
33 #define LBR_KERNEL (1 << LBR_KERNEL_BIT)
34 #define LBR_USER (1 << LBR_USER_BIT)
35 #define LBR_JCC (1 << LBR_JCC_BIT)
36 #define LBR_REL_CALL (1 << LBR_REL_CALL_BIT)
37 #define LBR_IND_CALL (1 << LBR_IND_CALL_BIT)
38 #define LBR_RETURN (1 << LBR_RETURN_BIT)
39 #define LBR_REL_JMP (1 << LBR_REL_JMP_BIT)
40 #define LBR_IND_JMP (1 << LBR_IND_JMP_BIT)
41 #define LBR_FAR (1 << LBR_FAR_BIT)
43 #define LBR_PLM (LBR_KERNEL | LBR_USER)
45 #define LBR_SEL_MASK 0x1ff /* valid bits in LBR_SELECT */
46 #define LBR_NOT_SUPP -1 /* LBR filter not supported */
47 #define LBR_IGN 0 /* ignored */
58 #define LBR_FROM_FLAG_MISPRED (1ULL << 63)
60 #define for_each_branch_sample_type(x) \
61 for ((x) = PERF_SAMPLE_BRANCH_USER; \
62 (x) < PERF_SAMPLE_BRANCH_MAX; (x) <<= 1)
65 * x86control flow change classification
66 * x86control flow changes include branches, interrupts, traps, faults
69 X86_BR_NONE
= 0, /* unknown */
71 X86_BR_USER
= 1 << 0, /* branch target is user */
72 X86_BR_KERNEL
= 1 << 1, /* branch target is kernel */
74 X86_BR_CALL
= 1 << 2, /* call */
75 X86_BR_RET
= 1 << 3, /* return */
76 X86_BR_SYSCALL
= 1 << 4, /* syscall */
77 X86_BR_SYSRET
= 1 << 5, /* syscall return */
78 X86_BR_INT
= 1 << 6, /* sw interrupt */
79 X86_BR_IRET
= 1 << 7, /* return from interrupt */
80 X86_BR_JCC
= 1 << 8, /* conditional */
81 X86_BR_JMP
= 1 << 9, /* jump */
82 X86_BR_IRQ
= 1 << 10,/* hw interrupt or trap or fault */
83 X86_BR_IND_CALL
= 1 << 11,/* indirect calls */
86 #define X86_BR_PLM (X86_BR_USER | X86_BR_KERNEL)
100 #define X86_BR_ALL (X86_BR_PLM | X86_BR_ANY)
102 #define X86_BR_ANY_CALL \
109 static void intel_pmu_lbr_filter(struct cpu_hw_events
*cpuc
);
112 * We only support LBR implementations that have FREEZE_LBRS_ON_PMI
113 * otherwise it becomes near impossible to get a reliable stack.
116 static void __intel_pmu_lbr_enable(void)
119 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
122 wrmsrl(MSR_LBR_SELECT
, cpuc
->lbr_sel
->config
);
124 rdmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
125 debugctl
|= (DEBUGCTLMSR_LBR
| DEBUGCTLMSR_FREEZE_LBRS_ON_PMI
);
126 wrmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
129 static void __intel_pmu_lbr_disable(void)
133 rdmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
134 debugctl
&= ~(DEBUGCTLMSR_LBR
| DEBUGCTLMSR_FREEZE_LBRS_ON_PMI
);
135 wrmsrl(MSR_IA32_DEBUGCTLMSR
, debugctl
);
138 static void intel_pmu_lbr_reset_32(void)
142 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++)
143 wrmsrl(x86_pmu
.lbr_from
+ i
, 0);
146 static void intel_pmu_lbr_reset_64(void)
150 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
151 wrmsrl(x86_pmu
.lbr_from
+ i
, 0);
152 wrmsrl(x86_pmu
.lbr_to
+ i
, 0);
156 void intel_pmu_lbr_reset(void)
161 if (x86_pmu
.intel_cap
.lbr_format
== LBR_FORMAT_32
)
162 intel_pmu_lbr_reset_32();
164 intel_pmu_lbr_reset_64();
167 void intel_pmu_lbr_enable(struct perf_event
*event
)
169 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
175 * Reset the LBR stack if we changed task context to
178 if (event
->ctx
->task
&& cpuc
->lbr_context
!= event
->ctx
) {
179 intel_pmu_lbr_reset();
180 cpuc
->lbr_context
= event
->ctx
;
182 cpuc
->br_sel
= event
->hw
.branch_reg
.reg
;
187 void intel_pmu_lbr_disable(struct perf_event
*event
)
189 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
195 WARN_ON_ONCE(cpuc
->lbr_users
< 0);
197 if (cpuc
->enabled
&& !cpuc
->lbr_users
) {
198 __intel_pmu_lbr_disable();
199 /* avoid stale pointer */
200 cpuc
->lbr_context
= NULL
;
204 void intel_pmu_lbr_enable_all(void)
206 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
209 __intel_pmu_lbr_enable();
212 void intel_pmu_lbr_disable_all(void)
214 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
217 __intel_pmu_lbr_disable();
221 * TOS = most recently recorded branch
223 static inline u64
intel_pmu_lbr_tos(void)
227 rdmsrl(x86_pmu
.lbr_tos
, tos
);
232 static void intel_pmu_lbr_read_32(struct cpu_hw_events
*cpuc
)
234 unsigned long mask
= x86_pmu
.lbr_nr
- 1;
235 u64 tos
= intel_pmu_lbr_tos();
238 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
239 unsigned long lbr_idx
= (tos
- i
) & mask
;
248 rdmsrl(x86_pmu
.lbr_from
+ lbr_idx
, msr_lastbranch
.lbr
);
250 cpuc
->lbr_entries
[i
].from
= msr_lastbranch
.from
;
251 cpuc
->lbr_entries
[i
].to
= msr_lastbranch
.to
;
252 cpuc
->lbr_entries
[i
].mispred
= 0;
253 cpuc
->lbr_entries
[i
].predicted
= 0;
254 cpuc
->lbr_entries
[i
].reserved
= 0;
256 cpuc
->lbr_stack
.nr
= i
;
260 * Due to lack of segmentation in Linux the effective address (offset)
261 * is the same as the linear address, allowing us to merge the LIP and EIP
264 static void intel_pmu_lbr_read_64(struct cpu_hw_events
*cpuc
)
266 unsigned long mask
= x86_pmu
.lbr_nr
- 1;
267 int lbr_format
= x86_pmu
.intel_cap
.lbr_format
;
268 u64 tos
= intel_pmu_lbr_tos();
271 for (i
= 0; i
< x86_pmu
.lbr_nr
; i
++) {
272 unsigned long lbr_idx
= (tos
- i
) & mask
;
273 u64 from
, to
, mis
= 0, pred
= 0;
275 rdmsrl(x86_pmu
.lbr_from
+ lbr_idx
, from
);
276 rdmsrl(x86_pmu
.lbr_to
+ lbr_idx
, to
);
278 if (lbr_format
== LBR_FORMAT_EIP_FLAGS
) {
279 mis
= !!(from
& LBR_FROM_FLAG_MISPRED
);
281 from
= (u64
)((((s64
)from
) << 1) >> 1);
284 cpuc
->lbr_entries
[i
].from
= from
;
285 cpuc
->lbr_entries
[i
].to
= to
;
286 cpuc
->lbr_entries
[i
].mispred
= mis
;
287 cpuc
->lbr_entries
[i
].predicted
= pred
;
288 cpuc
->lbr_entries
[i
].reserved
= 0;
290 cpuc
->lbr_stack
.nr
= i
;
293 void intel_pmu_lbr_read(void)
295 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
297 if (!cpuc
->lbr_users
)
300 if (x86_pmu
.intel_cap
.lbr_format
== LBR_FORMAT_32
)
301 intel_pmu_lbr_read_32(cpuc
);
303 intel_pmu_lbr_read_64(cpuc
);
305 intel_pmu_lbr_filter(cpuc
);
310 * - in case there is no HW filter
311 * - in case the HW filter has errata or limitations
313 static void intel_pmu_setup_sw_lbr_filter(struct perf_event
*event
)
315 u64 br_type
= event
->attr
.branch_sample_type
;
318 if (br_type
& PERF_SAMPLE_BRANCH_USER
)
321 if (br_type
& PERF_SAMPLE_BRANCH_KERNEL
)
322 mask
|= X86_BR_KERNEL
;
324 /* we ignore BRANCH_HV here */
326 if (br_type
& PERF_SAMPLE_BRANCH_ANY
)
329 if (br_type
& PERF_SAMPLE_BRANCH_ANY_CALL
)
330 mask
|= X86_BR_ANY_CALL
;
332 if (br_type
& PERF_SAMPLE_BRANCH_ANY_RETURN
)
333 mask
|= X86_BR_RET
| X86_BR_IRET
| X86_BR_SYSRET
;
335 if (br_type
& PERF_SAMPLE_BRANCH_IND_CALL
)
336 mask
|= X86_BR_IND_CALL
;
338 * stash actual user request into reg, it may
339 * be used by fixup code for some CPU
341 event
->hw
.branch_reg
.reg
= mask
;
345 * setup the HW LBR filter
346 * Used only when available, may not be enough to disambiguate
347 * all branches, may need the help of the SW filter
349 static int intel_pmu_setup_hw_lbr_filter(struct perf_event
*event
)
351 struct hw_perf_event_extra
*reg
;
352 u64 br_type
= event
->attr
.branch_sample_type
;
356 for_each_branch_sample_type(m
) {
360 v
= x86_pmu
.lbr_sel_map
[m
];
361 if (v
== LBR_NOT_SUPP
)
367 reg
= &event
->hw
.branch_reg
;
368 reg
->idx
= EXTRA_REG_LBR
;
370 /* LBR_SELECT operates in suppress mode so invert mask */
371 reg
->config
= ~mask
& x86_pmu
.lbr_sel_mask
;
376 int intel_pmu_setup_lbr_filter(struct perf_event
*event
)
387 * setup SW LBR filter
389 intel_pmu_setup_sw_lbr_filter(event
);
392 * setup HW LBR filter, if any
394 if (x86_pmu
.lbr_sel_map
)
395 ret
= intel_pmu_setup_hw_lbr_filter(event
);
401 * return the type of control flow change at address "from"
402 * intruction is not necessarily a branch (in case of interrupt).
404 * The branch type returned also includes the priv level of the
405 * target of the control flow change (X86_BR_USER, X86_BR_KERNEL).
407 * If a branch type is unknown OR the instruction cannot be
408 * decoded (e.g., text page not present), then X86_BR_NONE is
411 static int branch_type(unsigned long from
, unsigned long to
)
415 int bytes
, size
= MAX_INSN_SIZE
;
416 int ret
= X86_BR_NONE
;
417 int ext
, to_plm
, from_plm
;
418 u8 buf
[MAX_INSN_SIZE
];
421 to_plm
= kernel_ip(to
) ? X86_BR_KERNEL
: X86_BR_USER
;
422 from_plm
= kernel_ip(from
) ? X86_BR_KERNEL
: X86_BR_USER
;
425 * maybe zero if lbr did not fill up after a reset by the time
426 * we get a PMU interrupt
428 if (from
== 0 || to
== 0)
431 if (from_plm
== X86_BR_USER
) {
433 * can happen if measuring at the user level only
434 * and we interrupt in a kernel thread, e.g., idle.
439 /* may fail if text not present */
440 bytes
= copy_from_user_nmi(buf
, (void __user
*)from
, size
);
449 * decoder needs to know the ABI especially
450 * on 64-bit systems running 32-bit apps
453 is64
= kernel_ip((unsigned long)addr
) || !test_thread_flag(TIF_IA32
);
455 insn_init(&insn
, addr
, is64
);
456 insn_get_opcode(&insn
);
458 switch (insn
.opcode
.bytes
[0]) {
460 switch (insn
.opcode
.bytes
[1]) {
461 case 0x05: /* syscall */
462 case 0x34: /* sysenter */
463 ret
= X86_BR_SYSCALL
;
465 case 0x07: /* sysret */
466 case 0x35: /* sysexit */
469 case 0x80 ... 0x8f: /* conditional */
476 case 0x70 ... 0x7f: /* conditional */
479 case 0xc2: /* near ret */
480 case 0xc3: /* near ret */
481 case 0xca: /* far ret */
482 case 0xcb: /* far ret */
485 case 0xcf: /* iret */
488 case 0xcc ... 0xce: /* int */
491 case 0xe8: /* call near rel */
492 case 0x9a: /* call far absolute */
495 case 0xe0 ... 0xe3: /* loop jmp */
498 case 0xe9 ... 0xeb: /* jmp */
501 case 0xff: /* call near absolute, call far absolute ind */
502 insn_get_modrm(&insn
);
503 ext
= (insn
.modrm
.bytes
[0] >> 3) & 0x7;
505 case 2: /* near ind call */
506 case 3: /* far ind call */
507 ret
= X86_BR_IND_CALL
;
519 * interrupts, traps, faults (and thus ring transition) may
520 * occur on any instructions. Thus, to classify them correctly,
521 * we need to first look at the from and to priv levels. If they
522 * are different and to is in the kernel, then it indicates
523 * a ring transition. If the from instruction is not a ring
524 * transition instr (syscall, systenter, int), then it means
525 * it was a irq, trap or fault.
527 * we have no way of detecting kernel to kernel faults.
529 if (from_plm
== X86_BR_USER
&& to_plm
== X86_BR_KERNEL
530 && ret
!= X86_BR_SYSCALL
&& ret
!= X86_BR_INT
)
534 * branch priv level determined by target as
535 * is done by HW when LBR_SELECT is implemented
537 if (ret
!= X86_BR_NONE
)
544 * implement actual branch filter based on user demand.
545 * Hardware may not exactly satisfy that request, thus
546 * we need to inspect opcodes. Mismatched branches are
547 * discarded. Therefore, the number of branches returned
548 * in PERF_SAMPLE_BRANCH_STACK sample may vary.
551 intel_pmu_lbr_filter(struct cpu_hw_events
*cpuc
)
554 int br_sel
= cpuc
->br_sel
;
556 bool compress
= false;
558 /* if sampling all branches, then nothing to filter */
559 if ((br_sel
& X86_BR_ALL
) == X86_BR_ALL
)
562 for (i
= 0; i
< cpuc
->lbr_stack
.nr
; i
++) {
564 from
= cpuc
->lbr_entries
[i
].from
;
565 to
= cpuc
->lbr_entries
[i
].to
;
567 type
= branch_type(from
, to
);
569 /* if type does not correspond, then discard */
570 if (type
== X86_BR_NONE
|| (br_sel
& type
) != type
) {
571 cpuc
->lbr_entries
[i
].from
= 0;
579 /* remove all entries with from=0 */
580 for (i
= 0; i
< cpuc
->lbr_stack
.nr
; ) {
581 if (!cpuc
->lbr_entries
[i
].from
) {
583 while (++j
< cpuc
->lbr_stack
.nr
)
584 cpuc
->lbr_entries
[j
-1] = cpuc
->lbr_entries
[j
];
585 cpuc
->lbr_stack
.nr
--;
586 if (!cpuc
->lbr_entries
[i
].from
)
594 * Map interface branch filters onto LBR filters
596 static const int nhm_lbr_sel_map
[PERF_SAMPLE_BRANCH_MAX
] = {
597 [PERF_SAMPLE_BRANCH_ANY
] = LBR_ANY
,
598 [PERF_SAMPLE_BRANCH_USER
] = LBR_USER
,
599 [PERF_SAMPLE_BRANCH_KERNEL
] = LBR_KERNEL
,
600 [PERF_SAMPLE_BRANCH_HV
] = LBR_IGN
,
601 [PERF_SAMPLE_BRANCH_ANY_RETURN
] = LBR_RETURN
| LBR_REL_JMP
602 | LBR_IND_JMP
| LBR_FAR
,
604 * NHM/WSM erratum: must include REL_JMP+IND_JMP to get CALL branches
606 [PERF_SAMPLE_BRANCH_ANY_CALL
] =
607 LBR_REL_CALL
| LBR_IND_CALL
| LBR_REL_JMP
| LBR_IND_JMP
| LBR_FAR
,
609 * NHM/WSM erratum: must include IND_JMP to capture IND_CALL
611 [PERF_SAMPLE_BRANCH_IND_CALL
] = LBR_IND_CALL
| LBR_IND_JMP
,
614 static const int snb_lbr_sel_map
[PERF_SAMPLE_BRANCH_MAX
] = {
615 [PERF_SAMPLE_BRANCH_ANY
] = LBR_ANY
,
616 [PERF_SAMPLE_BRANCH_USER
] = LBR_USER
,
617 [PERF_SAMPLE_BRANCH_KERNEL
] = LBR_KERNEL
,
618 [PERF_SAMPLE_BRANCH_HV
] = LBR_IGN
,
619 [PERF_SAMPLE_BRANCH_ANY_RETURN
] = LBR_RETURN
| LBR_FAR
,
620 [PERF_SAMPLE_BRANCH_ANY_CALL
] = LBR_REL_CALL
| LBR_IND_CALL
622 [PERF_SAMPLE_BRANCH_IND_CALL
] = LBR_IND_CALL
,
626 void intel_pmu_lbr_init_core(void)
629 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
630 x86_pmu
.lbr_from
= MSR_LBR_CORE_FROM
;
631 x86_pmu
.lbr_to
= MSR_LBR_CORE_TO
;
634 * SW branch filter usage:
635 * - compensate for lack of HW filter
637 pr_cont("4-deep LBR, ");
640 /* nehalem/westmere */
641 void intel_pmu_lbr_init_nhm(void)
644 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
645 x86_pmu
.lbr_from
= MSR_LBR_NHM_FROM
;
646 x86_pmu
.lbr_to
= MSR_LBR_NHM_TO
;
648 x86_pmu
.lbr_sel_mask
= LBR_SEL_MASK
;
649 x86_pmu
.lbr_sel_map
= nhm_lbr_sel_map
;
652 * SW branch filter usage:
653 * - workaround LBR_SEL errata (see above)
654 * - support syscall, sysret capture.
655 * That requires LBR_FAR but that means far
656 * jmp need to be filtered out
658 pr_cont("16-deep LBR, ");
662 void intel_pmu_lbr_init_snb(void)
665 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
666 x86_pmu
.lbr_from
= MSR_LBR_NHM_FROM
;
667 x86_pmu
.lbr_to
= MSR_LBR_NHM_TO
;
669 x86_pmu
.lbr_sel_mask
= LBR_SEL_MASK
;
670 x86_pmu
.lbr_sel_map
= snb_lbr_sel_map
;
673 * SW branch filter usage:
674 * - support syscall, sysret capture.
675 * That requires LBR_FAR but that means far
676 * jmp need to be filtered out
678 pr_cont("16-deep LBR, ");
682 void intel_pmu_lbr_init_atom(void)
685 * only models starting at stepping 10 seems
686 * to have an operational LBR which can freeze
689 if (boot_cpu_data
.x86_model
== 28
690 && boot_cpu_data
.x86_mask
< 10) {
691 pr_cont("LBR disabled due to erratum");
696 x86_pmu
.lbr_tos
= MSR_LBR_TOS
;
697 x86_pmu
.lbr_from
= MSR_LBR_CORE_FROM
;
698 x86_pmu
.lbr_to
= MSR_LBR_CORE_TO
;
701 * SW branch filter usage:
702 * - compensate for lack of HW filter
704 pr_cont("8-deep LBR, ");