Symbol: ins_ops
tools/perf/util/annotate-arch/annotate-arm.c
16
static const struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-arm.c
19
const struct ins_ops *ops;
tools/perf/util/annotate-arch/annotate-arm64.c
67
static const struct ins_ops arm64_mov_ops = {
tools/perf/util/annotate-arch/annotate-arm64.c
72
static const struct ins_ops *arm64__associate_instruction_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-arm64.c
75
const struct ins_ops *ops;
tools/perf/util/annotate-arch/annotate-csky.c
11
const struct ins_ops *ops = NULL;
tools/perf/util/annotate-arch/annotate-csky.c
8
static const struct ins_ops *csky__associate_ins_ops(struct arch *arch,
tools/perf/util/annotate-arch/annotate-loongarch.c
112
static const struct ins_ops loongarch_jump_ops = {
tools/perf/util/annotate-arch/annotate-loongarch.c
119
const struct ins_ops *loongarch__associate_ins_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-loongarch.c
121
const struct ins_ops *ops = NULL;
tools/perf/util/annotate-arch/annotate-loongarch.c
62
static const struct ins_ops loongarch_call_ops = {
tools/perf/util/annotate-arch/annotate-mips.c
10
const struct ins_ops *ops = NULL;
tools/perf/util/annotate-arch/annotate-mips.c
8
const struct ins_ops *mips__associate_ins_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-powerpc.c
280
const struct ins_ops *check_ppc_insn(struct disasm_line *dl)
tools/perf/util/annotate-arch/annotate-powerpc.c
57
static const struct ins_ops arithmetic_ops = {
tools/perf/util/annotate-arch/annotate-powerpc.c
91
static const struct ins_ops load_store_ops = {
tools/perf/util/annotate-arch/annotate-powerpc.c
96
static const struct ins_ops *powerpc__associate_instruction_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-powerpc.c
99
const struct ins_ops *ops;
tools/perf/util/annotate-arch/annotate-riscv64.c
10
const struct ins_ops *ops = NULL;
tools/perf/util/annotate-arch/annotate-riscv64.c
8
const struct ins_ops *riscv64__associate_ins_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-s390.c
116
static const struct ins_ops s390_mov_ops = {
tools/perf/util/annotate-arch/annotate-s390.c
121
static const struct ins_ops *s390__associate_ins_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-s390.c
123
const struct ins_ops *ops = NULL;
tools/perf/util/annotate-arch/annotate-s390.c
61
static const struct ins_ops s390_call_ops = {
tools/perf/util/annotate-arch/annotate-sparc.c
124
static const struct ins_ops *sparc__associate_instruction_ops(struct arch *arch, const char *name)
tools/perf/util/annotate-arch/annotate-sparc.c
126
const struct ins_ops *ops = NULL;
tools/perf/util/disasm.c
308
const struct ins_ops call_ops = {
tools/perf/util/disasm.c
41
const struct ins_ops call_ops;
tools/perf/util/disasm.c
42
const struct ins_ops dec_ops;
tools/perf/util/disasm.c
43
const struct ins_ops jump_ops;
tools/perf/util/disasm.c
44
const struct ins_ops mov_ops;
tools/perf/util/disasm.c
45
const struct ins_ops nop_ops;
tools/perf/util/disasm.c
46
const struct ins_ops lock_ops;
tools/perf/util/disasm.c
462
const struct ins_ops jump_ops = {
tools/perf/util/disasm.c
47
const struct ins_ops ret_ops;
tools/perf/util/disasm.c
48
const struct ins_ops load_store_ops;
tools/perf/util/disasm.c
49
const struct ins_ops arithmetic_ops;
tools/perf/util/disasm.c
555
const struct ins_ops lock_ops = {
tools/perf/util/disasm.c
664
const struct ins_ops mov_ops = {
tools/perf/util/disasm.c
705
const struct ins_ops dec_ops = {
tools/perf/util/disasm.c
716
const struct ins_ops nop_ops = {
tools/perf/util/disasm.c
720
const struct ins_ops ret_ops = {
tools/perf/util/disasm.c
761
static const struct ins_ops *__ins__find(const struct arch *arch, const char *name,
tools/perf/util/disasm.c
772
const struct ins_ops *ops;
tools/perf/util/disasm.c
808
const struct ins_ops *ins__find(const struct arch *arch, const char *name, struct disasm_line *dl)
tools/perf/util/disasm.c
810
const struct ins_ops *ops = __ins__find(arch, name, dl);
tools/perf/util/disasm.c
89
int arch__associate_ins_ops(struct arch *arch, const char *name, const struct ins_ops *ops)
tools/perf/util/disasm.h
115
extern const struct ins_ops call_ops;
tools/perf/util/disasm.h
116
extern const struct ins_ops dec_ops;
tools/perf/util/disasm.h
117
extern const struct ins_ops jump_ops;
tools/perf/util/disasm.h
118
extern const struct ins_ops mov_ops;
tools/perf/util/disasm.h
119
extern const struct ins_ops nop_ops;
tools/perf/util/disasm.h
120
extern const struct ins_ops lock_ops;
tools/perf/util/disasm.h
121
extern const struct ins_ops ret_ops;
tools/perf/util/disasm.h
123
int arch__associate_ins_ops(struct arch *arch, const char *name, const struct ins_ops *ops);
tools/perf/util/disasm.h
137
const struct ins_ops *ins__find(const struct arch *arch, const char *name, struct disasm_line *dl);
tools/perf/util/disasm.h
145
const struct ins_ops *check_ppc_insn(struct disasm_line *dl);
tools/perf/util/disasm.h
46
const struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
tools/perf/util/disasm.h
56
const struct ins_ops *ops;