Lines Matching refs:ins_ops
68 static struct ins_ops *ins__find(struct arch *arch, const char *name);
77 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
92 static struct ins_ops call_ops;
93 static struct ins_ops dec_ops;
94 static struct ins_ops jump_ops;
95 static struct ins_ops mov_ops;
96 static struct ins_ops nop_ops;
97 static struct ins_ops lock_ops;
98 static struct ins_ops ret_ops;
128 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) in arch__associate_ins_ops()
316 static struct ins_ops call_ops = {
457 static struct ins_ops jump_ops = {
546 static struct ins_ops lock_ops = {
608 static struct ins_ops mov_ops = {
647 static struct ins_ops dec_ops = {
658 static struct ins_ops nop_ops = {
662 static struct ins_ops ret_ops = {
698 static struct ins_ops *__ins__find(struct arch *arch, const char *name) in __ins__find()
712 static struct ins_ops *ins__find(struct arch *arch, const char *name) in ins__find()
714 struct ins_ops *ops = __ins__find(arch, name); in ins__find()