Lines Matching defs:opc
41 uint32_t opc : 6;
458 #define OPC(opc) [INST_OPCODE_##opc] = {#opc, print_opc_default}
459 #define OPC_MOV(opc) [INST_OPCODE_##opc] = {#opc, print_opc_mov}
460 #define OPC_TEX(opc) [INST_OPCODE_##opc] = {#opc, print_opc_tex}
461 #define OPC_IMM(opc) [INST_OPCODE_##opc] = {#opc, print_opc_imm}
530 const unsigned opc = instr->opc | (instr->opcode_bit6 << 6);
531 const char *name = opcs[opc].name;
609 opcs[opc].print(&operands);
611 printf("unknown (%d)", instr->opc);