Lines Matching defs:opcode
30 /* If two instructions have the same opcode then we prefer the first
34 int o = spu_opcodes[i].opcode;
47 unsigned int opcode = insn >> (32-11);
49 /* Init the table. This assumes that element 0/opcode 0 (currently
54 if ((index = spu_disassemble_table[opcode & 0x780]) != 0
58 if ((index = spu_disassemble_table[opcode & 0x7f0]) != 0
62 if ((index = spu_disassemble_table[opcode & 0x7f8]) != 0
66 if ((index = spu_disassemble_table[opcode & 0x7fc]) != 0
70 if ((index = spu_disassemble_table[opcode & 0x7fe]) != 0
74 if ((index = spu_disassemble_table[opcode & 0x7ff]) != 0)