Home
last modified time | relevance | path

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

/linux-6.12.1/tools/perf/util/intel-pt-decoder/
Dintel-pt-insn-decoder.c292 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type()
294 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type()
296 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
298 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type()
300 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
304 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
307 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
310 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
313 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
316 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
/linux-6.12.1/tools/perf/util/
Ddb-export.c425 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
426 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
427 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"},
428 {PERF_IP_FLAG_BRANCH, "unconditional jump"},
429 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT,
431 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT,
433 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET,
435 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET,
437 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"},
438 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC |
[all …]
Dcs-etm.c2221 packet->flags = PERF_IP_FLAG_BRANCH; in cs_etm__set_sample_flags()
2233 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2242 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2252 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2262 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2268 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2277 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2286 if (prev_packet->flags == (PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2291 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2302 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
[all …]
Devent.h54 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator
74 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.c1513 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags()
1516 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1520 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1524 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1531 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
2570 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
Dthread-stack.c1208 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
/linux-6.12.1/tools/perf/
Dbuiltin-script.c1716 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1717 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1718 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1719 {PERF_IP_FLAG_BRANCH, "jmp"},
1720 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1721 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1722 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1723 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1724 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1725 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
[all …]