Home
last modified time | relevance | path

Searched refs:branch_type (Results 1 – 10 of 10) 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 & PERF_SAMPLE_BRANCH_USER) in branch_type_to_brbcr()
[all …]
/linux/drivers/clk/rockchip/
H A Dclk.h822 enum rockchip_clk_branch_type branch_type; member
849 .branch_type = branch_composite, \
870 .branch_type = branch_composite, \
892 .branch_type = branch_composite, \
910 .branch_type = branch_composite, \
929 .branch_type = branch_composite, \
947 .branch_type = branch_composite, \
966 .branch_type = branch_composite, \
985 .branch_type = branch_fraction_divider, \
1002 .branch_type = branch_fraction_divider, \
[all …]
H A Dclk.c218 if (child && child->branch_type != branch_mux) { in rockchip_clk_register_frac_branch()
530 if (list->branch_type == branch_grf_mux || in rockchip_clk_register_branches()
531 list->branch_type == branch_grf_gate || in rockchip_clk_register_branches()
532 list->branch_type == branch_grf_mmc) { in rockchip_clk_register_branches()
542 switch (list->branch_type) { in rockchip_clk_register_branches()
679 __func__, list->branch_type); in rockchip_clk_register_branches()
704 switch (list->branch_type) { in rockchip_clk_register_late_branches()
709 dev_err(dev, "unknown clock type %d\n", list->branch_type); in rockchip_clk_register_late_branches()
/linux/tools/perf/util/
H A Ddb-export.c283 int db_export__branch_type(struct db_export *dbe, u32 branch_type, in call_path_from_sample()
287 return dbe->export_branch_type(dbe, branch_type, name); in db_export__branch_type()
421 u32 branch_type; in db_export__sample()
453 err = db_export__branch_type(dbe, branch_types[i].branch_type, in db_export__branch_types()
462 u32 type = branch_types[i].branch_type; in db_export__branch_types()
285 db_export__branch_type(struct db_export * dbe,u32 branch_type,const char * name) db_export__branch_type() argument
425 u32 branch_type; global() member
H A Ddb-export.h53 int (*export_branch_type)(struct db_export *dbe, u32 branch_type,
95 int db_export__branch_type(struct db_export *dbe, u32 branch_type,
H A Dparse-events.l294 branch_type { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE); }
H A Devlist.c1360 u64 branch_type = 0; in evlist__id_hdr_size()
1363 branch_type |= evsel->core.attr.branch_sample_type; in evlist__id_hdr_size()
1364 return branch_type;
1263 u64 branch_type = 0; evlist__combined_branch_type() local
/linux/tools/perf/scripts/python/
H A Dexport-to-postgresql.py1024 def branch_type_table(branch_type, name, *x): argument
1028 value = struct.pack(fmt, 2, 4, branch_type, n, name)
1031 …ymbol_id, to_sym_offset, to_ip, period, weight, transaction, data_src, branch_type, in_tx, call_pa… argument
1033 … 4, cpu, 8, to_dso_id, 8, to_symbol_id, 8, to_sym_offset, 8, to_ip, 4, branch_type, 1, in_tx, 8, c…
1035 …ffset, 8, to_ip, 8, period, 8, weight, 8, transaction, 8, data_src, 4, branch_type, 1, in_tx, 8, c…
/linux/arch/arm64/net/
H A Dbpf_jit_comp.c3180 enum aarch64_insn_branch_type branch_type; in bpf_arch_text_poke() local
3215 branch_type = old_t == BPF_MOD_CALL ? AARCH64_INSN_BRANCH_LINK : in bpf_arch_text_poke()
3217 if (gen_branch_or_nop(branch_type, ip, old_addr, plt, &old_insn) < 0) in bpf_arch_text_poke()
3220 branch_type = new_t == BPF_MOD_CALL ? AARCH64_INSN_BRANCH_LINK : in bpf_arch_text_poke()
3222 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.c1283 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_symbol()
1291 tuple_set_s32(t, 0, branch_type); in python_export_branch_type()
1897 SET_TABLE_HANDLER(branch_type); in _free_command_line()
1288 python_export_branch_type(struct db_export * dbe,u32 branch_type,const char * name) python_export_branch_type() argument