Lines Matching refs:ins_ops
71 static struct ins_ops *ins__find(struct arch *arch, const char *name);
80 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
95 static struct ins_ops call_ops;
96 static struct ins_ops dec_ops;
97 static struct ins_ops jump_ops;
98 static struct ins_ops mov_ops;
99 static struct ins_ops nop_ops;
100 static struct ins_ops lock_ops;
101 static struct ins_ops ret_ops;
131 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops)
315 static struct ins_ops call_ops = {
456 static struct ins_ops jump_ops = {
545 static struct ins_ops lock_ops = {
607 static struct ins_ops mov_ops = {
646 static struct ins_ops dec_ops = {
657 static struct ins_ops nop_ops = {
661 static struct ins_ops ret_ops = {
697 static struct ins_ops *__ins__find(struct arch *arch, const char *name)
711 static struct ins_ops *ins__find(struct arch *arch, const char *name)
713 struct ins_ops *ops = __ins__find(arch, name);