Home
last modified time | relevance | path

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

/Linux-v6.1/tools/perf/util/intel-pt-decoder/
Dintel-pt-insn-decoder.c265 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type()
267 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type()
269 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
271 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type()
273 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
275 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
278 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
281 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
284 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
287 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
/Linux-v6.1/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.c1855 packet->flags = PERF_IP_FLAG_BRANCH; in cs_etm__set_sample_flags()
1867 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1876 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1886 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1896 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1902 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1911 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1920 if (prev_packet->flags == (PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1925 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1936 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
[all …]
Devent.h110 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator
130 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.c1482 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags()
1485 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1488 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1491 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1498 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
2510 (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-v6.1/tools/perf/
Dbuiltin-script.c1584 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1585 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1586 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1587 {PERF_IP_FLAG_BRANCH, "jmp"},
1588 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1589 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1590 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1591 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1592 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1593 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
[all …]