Searched refs:PERF_IP_FLAG_BRANCH (Results 1 – 8 of 8) sorted by relevance
/linux/tools/perf/util/intel-pt-decoder/ |
A 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/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 | 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() 1927 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1948 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1956 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 1965 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() [all …]
|
A D | event.h | 91 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator 109 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 | 1321 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags() 1324 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 1327 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 1330 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 1337 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 2230 (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/tools/perf/ |
A D | builtin-script.c | 1549 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 1550 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 1551 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"}, 1552 {PERF_IP_FLAG_BRANCH, "jmp"}, 1553 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"}, 1557 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"}, 1559 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"}, 1560 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"}, 1561 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"}, 1562 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMENTRY, "vmentry"}, [all …]
|
Completed in 37 milliseconds