Lines Matching refs:ins_ops
67 static struct ins_ops *ins__find(struct arch *arch, const char *name);
76 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
91 static struct ins_ops call_ops;
92 static struct ins_ops dec_ops;
93 static struct ins_ops jump_ops;
94 static struct ins_ops mov_ops;
95 static struct ins_ops nop_ops;
96 static struct ins_ops lock_ops;
97 static struct ins_ops ret_ops;
127 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) in arch__associate_ins_ops()
311 static struct ins_ops call_ops = {
452 static struct ins_ops jump_ops = {
541 static struct ins_ops lock_ops = {
603 static struct ins_ops mov_ops = {
642 static struct ins_ops dec_ops = {
653 static struct ins_ops nop_ops = {
657 static struct ins_ops ret_ops = {
693 static struct ins_ops *__ins__find(struct arch *arch, const char *name) in __ins__find()
707 static struct ins_ops *ins__find(struct arch *arch, const char *name) in ins__find()
709 struct ins_ops *ops = __ins__find(arch, name); in ins__find()