Lines Matching refs:ins_ops
34 static struct ins_ops call_ops;
35 static struct ins_ops dec_ops;
36 static struct ins_ops jump_ops;
37 static struct ins_ops mov_ops;
38 static struct ins_ops nop_ops;
39 static struct ins_ops lock_ops;
40 static struct ins_ops ret_ops;
41 static struct ins_ops load_store_ops;
42 static struct ins_ops arithmetic_ops;
87 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) in arch__associate_ins_ops()
334 static struct ins_ops call_ops = {
484 static struct ins_ops jump_ops = {
576 static struct ins_ops lock_ops = {
684 static struct ins_ops mov_ops = {
734 static struct ins_ops arithmetic_ops = {
768 static struct ins_ops load_store_ops = {
808 static struct ins_ops dec_ops = {
819 static struct ins_ops nop_ops = {
823 static struct ins_ops ret_ops = {
864 static struct ins_ops *__ins__find(struct arch *arch, const char *name, struct disasm_line *dl) in __ins__find()
874 struct ins_ops *ops; in __ins__find()
910 struct ins_ops *ins__find(struct arch *arch, const char *name, struct disasm_line *dl) in ins__find()
912 struct ins_ops *ops = __ins__find(arch, name, dl); in ins__find()