Home
last modified time | relevance | path

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

/linux/tools/perf/util/
H A Dtrace-event-scripting.c277 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
278 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
279 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
280 {PERF_IP_FLAG_BRANCH, "jmp"},
281 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
282 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
283 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
284 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
285 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
286 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CAL
[all...]
H A Ddb-export.c425 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
426 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
427 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"},
428 {PERF_IP_FLAG_BRANCH, "unconditional jump"},
429 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT,
431 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT,
433 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET,
435 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET,
437 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"},
438 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CAL
[all...]
H A Dcs-etm.c2369 packet->flags = PERF_IP_FLAG_BRANCH; in cs_etm__set_sample_flags()
2381 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags()
2390 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__decode_data_block()
2400 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__decode_data_block()
2410 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__decode_data_block()
2416 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__process_traceid_queue()
2425 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__process_traceid_queue()
2434 if (prev_packet->flags == (PERF_IP_FLAG_BRANCH | in cs_etm__process_traceid_queue()
2438 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__process_traceid_queue()
2450 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__process_traceid_queue()
[all...]
H A Devent.h54 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator
81 PERF_IP_FLAG_BRANCH |\
H A Dintel-bts.c372 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
378 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()
400 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
H A Dintel-pt.c1516 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags()
1519 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
1523 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1527 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags()
1534 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags()
2799 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_sample()
H A Darm-spe.c415 bool have_tgt = !!(speq->flags & PERF_IP_FLAG_BRANCH); in arm_spe__prep_branch_stack()
649 speq->flags = PERF_IP_FLAG_BRANCH; in arm_spe__synth_data_source_common()
H A Dthread-stack.c1208 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
/linux/tools/perf/util/intel-pt-decoder/
H A Dintel-pt-insn-decoder.c284 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type()
286 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type()
288 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
290 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type()
292 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type()
296 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
299 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
302 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
305 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type()
308 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CAL in intel_pt_insn_type()
[all...]