Searched refs:PERF_IP_FLAG_BRANCH (Results 1 – 8 of 8) sorted by relevance
| /Linux-v5.15/tools/perf/util/intel-pt-decoder/ |
| D | intel-pt-insn-decoder.c | 264 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/ |
| D | db-export.c | 419 {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 …]
|
| D | cs-etm.c | 1857 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 …]
|
| D | event.h | 88 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator 106 PERF_IP_FLAG_BRANCH |\
|
| D | intel-bts.c | 369 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()
|
| D | intel-pt.c | 1310 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()
|
| D | thread-stack.c | 1209 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
|
| /Linux-v5.15/tools/perf/ |
| D | builtin-script.c | 1542 {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 …]
|