Lines Matching refs:ins_ops
62 static struct ins_ops *ins__find(struct arch *arch, const char *name);
75 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)
324 static struct ins_ops call_ops = {
465 static struct ins_ops jump_ops = {
554 static struct ins_ops lock_ops = {
629 static struct ins_ops mov_ops = {
668 static struct ins_ops dec_ops = {
679 static struct ins_ops nop_ops = {
683 static struct ins_ops ret_ops = {
719 static struct ins_ops *__ins__find(struct arch *arch, const char *name)
753 static struct ins_ops *ins__find(struct arch *arch, const char *name)
755 struct ins_ops *ops = __ins__find(arch, name);