Searched refs:PERF_IP_FLAG_BRANCH (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/tools/perf/util/intel-pt-decoder/ |
D | intel-pt-insn-decoder.c | 250 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type() 252 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type() 254 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type() 256 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type() 258 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type() 260 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type() 263 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type() 266 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type() 269 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
|
/Linux-v4.19/tools/perf/util/ |
D | db-export.c | 435 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 436 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 437 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"}, 438 {PERF_IP_FLAG_BRANCH, "unconditional jump"}, 439 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, 441 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, 443 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, 445 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, 447 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"}, 448 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | [all …]
|
D | intel-bts.c | 385 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type() 391 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type() 410 btsq->sample_flags != (PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type() 413 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
|
D | event.h | 162 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator 178 PERF_IP_FLAG_BRANCH |\
|
D | intel-pt.c | 890 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags() 893 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 897 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 904 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 1438 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
|
/Linux-v4.19/tools/perf/ |
D | builtin-script.c | 1242 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 1243 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 1244 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"}, 1245 {PERF_IP_FLAG_BRANCH, "jmp"}, 1246 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"}, 1247 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"}, 1248 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"}, 1249 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"}, 1250 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"}, 1251 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"}, [all …]
|