Lines Matching refs:ins_ops
36 static struct ins_ops call_ops;
37 static struct ins_ops dec_ops;
38 static struct ins_ops jump_ops;
39 static struct ins_ops mov_ops;
40 static struct ins_ops nop_ops;
41 static struct ins_ops lock_ops;
42 static struct ins_ops ret_ops;
43 static struct ins_ops load_store_ops;
44 static struct ins_ops arithmetic_ops;
88 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) in arch__associate_ins_ops()
335 static struct ins_ops call_ops = {
488 static struct ins_ops jump_ops = {
580 static struct ins_ops lock_ops = {
688 static struct ins_ops mov_ops = {
738 static struct ins_ops arithmetic_ops = {
772 static struct ins_ops load_store_ops = {
812 static struct ins_ops dec_ops = {
823 static struct ins_ops nop_ops = {
827 static struct ins_ops ret_ops = {
868 static struct ins_ops *__ins__find(struct arch *arch, const char *name, struct disasm_line *dl) in __ins__find()
878 struct ins_ops *ops; in __ins__find()
914 struct ins_ops *ins__find(struct arch *arch, const char *name, struct disasm_line *dl) in ins__find()
916 struct ins_ops *ops = __ins__find(arch, name, dl); in ins__find()