Home
last modified time | relevance | path

Searched refs:PERF_IP_FLAG_BRANCH (Results 1 – 6 of 6) sorted by relevance

/tools/perf/util/intel-pt-decoder/
Dintel-pt-insn-decoder.c225 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type()
227 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type()
229 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
231 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type()
233 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
235 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
238 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
241 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
244 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
/tools/perf/util/
Ddb-export.c436 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
437 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
438 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"},
439 {PERF_IP_FLAG_BRANCH, "unconditional jump"},
440 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT,
442 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT,
444 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET,
446 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET,
448 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"},
449 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC |
[all …]
Dintel-bts.c387 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
393 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
412 btsq->sample_flags != (PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
415 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
Devent.h153 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator
169 PERF_IP_FLAG_BRANCH |\
Dintel-pt.c888 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags()
891 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
895 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
902 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1289 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
/tools/perf/
Dbuiltin-script.c678 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
679 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
680 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
681 {PERF_IP_FLAG_BRANCH, "jmp"},
682 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
683 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
684 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
685 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
686 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
687 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
[all …]