Lines Matching defs:ops
13 struct ins_operands *ops,
16 char *s = strchr(ops->raw, ','), *target, *endptr;
22 ops->source.raw = strdup(ops->raw);
25 if (ops->source.raw == NULL)
29 ops->target.raw = strdup(target);
30 if (ops->target.raw == NULL)
33 ops->target.addr = strtoull(target, &endptr, 16);
46 ops->target.name = strdup(s);
49 if (ops->target.name == NULL)
55 zfree(&ops->target.raw);
57 zfree(&ops->source.raw);
62 struct ins_operands *ops, int max_ins_name);
72 struct ins_ops *ops;
76 ops = &jump_ops;
78 ops = &call_ops;
80 ops = &ret_ops;
82 ops = &arm64_mov_ops;
84 arch__associate_ins_ops(arch, name, ops);
85 return ops;