Lines Matching refs:opc
37 #define _OPC(cat, opc) (((cat) << NOPC_BITS) | opc)
217 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS))
218 #define opc_op(opc) ((unsigned)((opc) & ((1 << NOPC_BITS) - 1)))
317 uint32_t opc : 4;
424 uint32_t opc : 6;
485 uint32_t opc : 4;
493 switch (_OPC(3, cat3->opc)) {
543 uint32_t opc : 6;
592 uint32_t opc : 5;
679 uint32_t pad4 : 10; // opc/jmp_tgt/sync/opc_cat
701 uint32_t pad4 : 10; // opc/jmp_tgt/sync/opc_cat
723 uint32_t opc : 5;
757 uint32_t opc : 5;
784 uint32_t opc : 4; /* presumed, but only a couple known OPCs */
853 assert(instr->cat6.opc == 0);
863 case 0: return instr->cat0.opc;
865 case 2: return instr->cat2.opc;
866 case 3: return instr->cat3.opc;
867 case 4: return instr->cat4.opc;
868 case 5: return instr->cat5.opc;
871 return instr->cat6_a6xx.opc;
872 return instr->cat6.opc;
873 case 7: return instr->cat7.opc;
878 static inline bool is_mad(opc_t opc)
880 switch (opc) {
893 static inline bool is_madsh(opc_t opc)
895 switch (opc) {
904 static inline bool is_atomic(opc_t opc)
906 switch (opc) {
924 static inline bool is_ssbo(opc_t opc)
926 switch (opc) {
938 static inline bool is_isam(opc_t opc)
940 switch (opc) {