Home
last modified time | relevance | path

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

/Linux-v5.15/tools/perf/util/intel-pt-decoder/
Dintel-pt-insn-decoder.c264 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type()
266 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type()
268 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
270 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type()
272 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
274 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
277 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
280 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
283 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
286 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
/Linux-v5.15/tools/perf/util/
Ddb-export.c419 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
420 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
421 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"},
422 {PERF_IP_FLAG_BRANCH, "unconditional jump"},
423 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT,
425 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT,
427 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET,
429 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET,
431 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"},
432 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC |
[all …]
Dcs-etm.c1857 packet->flags = PERF_IP_FLAG_BRANCH; in cs_etm__set_sample_flags()
1869 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1878 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1888 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1898 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1904 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1913 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1922 if (prev_packet->flags == (PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1927 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1938 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
[all …]
Devent.h88 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator
106 PERF_IP_FLAG_BRANCH |\
Dintel-bts.c369 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
375 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
394 btsq->sample_flags != (PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
397 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
Dintel-pt.c1310 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags()
1313 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1316 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1319 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1326 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
2182 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
Dthread-stack.c1209 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
/Linux-v5.15/tools/perf/
Dbuiltin-script.c1542 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1543 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1544 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1545 {PERF_IP_FLAG_BRANCH, "jmp"},
1546 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1547 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1548 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1549 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1550 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1551 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
[all …]