Lines Matching refs:op
163 const struct optable *op, in decode() argument
171 switch (op->type) { in decode()
173 return (unsigned short *)pc + op->length; in decode()
214 const struct optable *op; in nextpc() local
219 op = optables[0].ptr; in nextpc()
224 if ((inst & op->bitmask) == op->bitpattern) { in nextpc()
225 if (op->length < 0) { in nextpc()
226 op = optables[-op->length].ptr; in nextpc()
227 op_len = optables[-op->length].size + 1; in nextpc()
230 return decode(child, op, fetch_p, pc, inst); in nextpc()
232 op++; in nextpc()