Home | History | Annotate | Download | only in opcodes

Lines Matching defs:opcode

26 #include "opcode/i370.h"
37 const struct i370_opcode *opcode;
55 /* Find the first match in the opcode table. We could speed this up
56 a bit by doing a binary search on the major opcode. */
58 for (opcode = i370_opcodes; opcode < opcode_end; opcode++)
67 if (2 == opcode->len)
72 masked.i[0] &= opcode->mask.i[0];
73 if (masked.i[0] != opcode->opcode.i[0])
76 if (6 == opcode->len)
78 masked.i[1] &= opcode->mask.i[1];
79 if (masked.i[1] != opcode->opcode.i[1])
84 if (2 == opcode->len)
94 for (opindex = opcode->operands; *opindex != 0; opindex++)
104 (*info->fprintf_func) (info->stream, "%s", opcode->name);
105 if (opcode->operands[0] != 0)
109 for (opindex = opcode->operands; *opindex != 0; opindex++)
154 return opcode->len;