Home
last modified time | relevance | path

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

/linux/drivers/perf/
H A Darm_brbe.c335 static u64 branch_type_to_brbfcr(int branch_type) in branch_type_to_brbfcr() argument
339 if (branch_type & PERF_SAMPLE_BRANCH_ANY) { in branch_type_to_brbfcr()
344 if (branch_type & PERF_SAMPLE_BRANCH_ANY_CALL) { in branch_type_to_brbfcr()
349 if (branch_type & PERF_SAMPLE_BRANCH_ANY_RETURN) in branch_type_to_brbfcr()
352 if (branch_type & PERF_SAMPLE_BRANCH_IND_CALL) in branch_type_to_brbfcr()
355 if (branch_type & PERF_SAMPLE_BRANCH_COND) in branch_type_to_brbfcr()
358 if (branch_type & PERF_SAMPLE_BRANCH_IND_JUMP) in branch_type_to_brbfcr()
361 if (branch_type & PERF_SAMPLE_BRANCH_CALL) in branch_type_to_brbfcr()
380 static u64 branch_type_to_brbcr(int branch_type) in branch_type_to_brbcr() argument
384 if (branch_type in branch_type_to_brbcr()
432 u64 branch_type = event->attr.branch_sample_type; brbe_branch_attr_valid() local
[all...]
/linux/drivers/clk/rockchip/
H A Dclk.h683 enum rockchip_clk_branch_type branch_type; member
710 .branch_type = branch_composite, \
731 .branch_type = branch_composite, \
753 .branch_type = branch_composite, \
771 .branch_type = branch_composite, \
790 .branch_type = branch_composite, \
808 .branch_type = branch_composite, \
827 .branch_type = branch_composite, \
846 .branch_type = branch_fraction_divider, \
863 .branch_type
[all...]
/linux/tools/perf/util/
H A Ddb-export.h54 int (*export_branch_type)(struct db_export *dbe, u32 branch_type,
96 int db_export__branch_type(struct db_export *dbe, u32 branch_type,
/linux/tools/perf/scripts/python/
H A Dexport-to-postgresql.py398 'branch_type integer,'
425 'branch_type integer,'
605 '(SELECT name FROM branch_types WHERE id = branch_type) AS branch_type_name,'
1024 def branch_type_table(branch_type, name, *x): argument
1028 value = struct.pack(fmt, 2, 4, branch_type, n, name)
1031 def sample_table(sample_id, evsel_id, machine_id, thread_id, comm_id, dso_id, symbol_id, sym_offset, ip, time, cpu, to_dso_id, to_symbol_id, to_sym_offset, to_ip, period, weight, transaction, data_src, branch_type, in_tx, call_path_id, insn_cnt, cyc_cnt, flags, *x): argument
1033 value = struct.pack("!hiqiqiqiqiqiqiqiqiqiqiiiqiqiqiqiiiBiqiqiqii", 21, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8, comm_id, 8, dso_id, 8, symbol_id, 8, sym_offset, 8, ip, 8, time, 4, cpu, 8, to_dso_id, 8, to_symbol_id, 8, to_sym_offset, 8, to_ip, 4, branch_type, 1, in_tx, 8, call_path_id, 8, insn_cnt, 8, cyc_cnt, 4, flags)
1035 value = struct.pack("!hiqiqiqiqiqiqiqiqiqiqiiiqiqiqiqiqiqiqiqiiiBiqiqiqii", 25, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8, comm_id, 8, dso_id, 8, symbol_id, 8, sym_offset, 8, ip, 8, time, 4, cpu, 8, to_dso_id, 8, to_symbol_id, 8, to_sym_offset, 8, to_ip, 8, period, 8, weight, 8, transaction, 8, data_src, 4, branch_type, 1, in_tx, 8, call_path_id, 8, insn_cnt, 8, cyc_cnt, 4, flags)
/linux/arch/x86/events/
H A Dutils.c208 int branch_type(unsigned long from, unsigned long to, int abort) in branch_type() function
/linux/arch/arm64/net/
H A Dbpf_jit_comp.c2880 enum aarch64_insn_branch_type branch_type; in bpf_arch_text_poke() local
2916 branch_type = AARCH64_INSN_BRANCH_LINK; in bpf_arch_text_poke()
2918 branch_type = AARCH64_INSN_BRANCH_NOLINK; in bpf_arch_text_poke()
2920 if (gen_branch_or_nop(branch_type, ip, old_addr, plt, &old_insn) < 0) in bpf_arch_text_poke()
2923 if (gen_branch_or_nop(branch_type, ip, new_addr, plt, &new_insn) < 0) in bpf_arch_text_poke()
/linux/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c1280 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_branch_type() argument
1288 tuple_set_s32(t, 0, branch_type); in python_export_branch_type()
1874 SET_TABLE_HANDLER(branch_type); in set_table_handlers()
/linux/arch/x86/events/intel/
H A Dlbr.c1238 type = branch_type(from, to, cpuc->lbr_entries[i].abort); in intel_pmu_lbr_filter()