Searched refs:PERF_IP_FLAG_BRANCH (Results 1 – 9 of 9) sorted by relevance
| /linux/tools/perf/util/ |
| H A D | trace-event-scripting.c | 280 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 281 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 282 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"}, 283 {PERF_IP_FLAG_BRANCH, "jmp"}, 284 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"}, 285 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"}, 286 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"}, 287 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"}, 288 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"}, 289 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, [all …]
|
| H A D | db-export.c | 429 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"}, 430 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"}, 431 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "conditional jump"}, 432 {PERF_IP_FLAG_BRANCH, "unconditional jump"}, 433 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, 435 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, 437 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, 439 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, 441 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "asynchronous branch"}, 442 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | [all …]
|
| H A D | cs-etm.c | 2226 packet->flags = PERF_IP_FLAG_BRANCH; in cs_etm__set_sample_flags() 2238 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2247 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2257 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2267 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2273 packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2282 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2291 if (prev_packet->flags == (PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2296 prev_packet->flags = PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() 2307 prev_packet->flags |= PERF_IP_FLAG_BRANCH | in cs_etm__set_sample_flags() [all …]
|
| H A D | event.h | 54 PERF_IP_FLAG_BRANCH = 1ULL << 0, enumerator 81 PERF_IP_FLAG_BRANCH |\
|
| H A D | intel-bts.c | 371 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type() 377 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type() 396 btsq->sample_flags != (PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type() 399 btsq->sample_flags = PERF_IP_FLAG_BRANCH | in intel_bts_get_branch_type()
|
| H A D | intel-pt.c | 1515 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT; in intel_pt_sample_flags() 1518 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 1522 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 1526 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_sample_flags() 1533 ptq->flags = PERF_IP_FLAG_BRANCH | in intel_pt_sample_flags() 2776 (ptq->flags & PERF_IP_FLAG_BRANCH) && in intel_pt_is_switch_ip()
|
| H A D | arm-spe.c | 396 bool have_tgt = !!(speq->flags & PERF_IP_FLAG_BRANCH); in arm_spe__prep_branch_stack() 610 speq->flags = PERF_IP_FLAG_BRANCH; in arm_spe__sample_flags()
|
| H A D | thread-stack.c | 1208 } else if (sample->flags & PERF_IP_FLAG_BRANCH && in thread_stack__process()
|
| /linux/tools/perf/util/intel-pt-decoder/ |
| H A D | intel-pt-insn-decoder.c | 289 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL; in intel_pt_insn_type() 291 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN; in intel_pt_insn_type() 293 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type() 295 return PERF_IP_FLAG_BRANCH; in intel_pt_insn_type() 297 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL; in intel_pt_insn_type() 301 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type() 304 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type() 307 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type() 310 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | in intel_pt_insn_type() 313 return PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | in intel_pt_insn_type()
|