Lines Matching refs:ins_ops
57 static struct ins_ops *ins__find(struct arch *arch, const char *name);
66 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
81 static struct ins_ops call_ops;
82 static struct ins_ops dec_ops;
83 static struct ins_ops jump_ops;
84 static struct ins_ops mov_ops;
85 static struct ins_ops nop_ops;
86 static struct ins_ops lock_ops;
87 static struct ins_ops ret_ops;
117 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) in arch__associate_ins_ops()
275 static struct ins_ops call_ops = {
408 static struct ins_ops jump_ops = {
497 static struct ins_ops lock_ops = {
559 static struct ins_ops mov_ops = {
598 static struct ins_ops dec_ops = {
609 static struct ins_ops nop_ops = {
613 static struct ins_ops ret_ops = {
649 static struct ins_ops *__ins__find(struct arch *arch, const char *name) in __ins__find()
663 static struct ins_ops *ins__find(struct arch *arch, const char *name) in ins__find()
665 struct ins_ops *ops = __ins__find(arch, name); in ins__find()