Home
last modified time | relevance | path

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

/tools/perf/util/intel-pt-decoder/
Dintel-pt-insn-decoder.c249 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type()
251 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type()
253 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
255 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type()
257 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
259 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
262 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
265 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()
/tools/perf/util/
Ddb-export.c423 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
424 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
425 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"},
426 {PERF_IP_FLAG_BRANCH, "unconditional jump"},
427 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT,
429 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT,
431 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET,
433 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET,
435 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"},
436 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC |
[all …]
Dcs-etm.c1797 packet->flags = PERF_IP_FLAG_BRANCH; in cs_etm__set_sample_flags()
1809 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1818 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1828 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1838 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1844 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1853 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1862 if (prev_packet->flags == (PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1867 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
1878 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
[all …]
Devent.h88 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator
104 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.c998 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags()
1001 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1005 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1012 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1890 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
Dthread-stack.c957 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
/tools/perf/
Dbuiltin-script.c1367 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1368 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1369 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1370 {PERF_IP_FLAG_BRANCH, "jmp"},
1371 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1372 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1373 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1374 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1375 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1376 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
[all …]