Searched refs:PERF_IP_FLAG_BRANCH (Results 1 – 8 of 8) sorted by relevance
/linux-6.3-rc2/tools/perf/util/intel-pt-decoder/ |
A D | intel-pt-insn-decoder.c | 266 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type() 268 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type() 270 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type() 272 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type() 274 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type() 276 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type() 279 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type() 282 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type() 285 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type() 288 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
|
/linux-6.3-rc2/tools/perf/util/ |
A D | db-export.c | 419 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 420 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 422 {PERF_IP_FLAG_BRANCH, "unconditional jump"}, 423 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, 427 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | 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 | 434 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "transaction abort"}, 435 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "trace begin"}, 436 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "trace end"}, [all …]
|
A D | cs-etm.c | 1884 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() 1905 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1915 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1925 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1931 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1954 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1975 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1983 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1992 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() [all …]
|
A D | event.h | 54 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator 74 PERF_IP_FLAG_BRANCH |\
|
A 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()
|
A D | intel-pt.c | 1489 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags() 1492 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 1495 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 1498 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 1505 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 2544 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
|
A D | thread-stack.c | 1209 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
|
/linux-6.3-rc2/tools/perf/ |
A D | builtin-script.c | 1603 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 1604 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 1605 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"}, 1606 {PERF_IP_FLAG_BRANCH, "jmp"}, 1607 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"}, 1611 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"}, 1613 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"}, 1614 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"}, 1615 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"}, 1616 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMENTRY, "vmentry"}, [all …]
|
Completed in 31 milliseconds