Lines Matching refs:opc
35 #define _OPC(cat, opc) (((cat) << NOPC_BITS) | opc) argument
212 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS)) argument
213 #define opc_op(opc) ((unsigned)((opc) & ((1 << NOPC_BITS) - 1))) argument
312 uint32_t opc : 4; member
418 uint32_t opc : 6; member
478 uint32_t opc : 4; member
486 switch (_OPC(3, cat3->opc)) { in instr_cat3_full()
535 uint32_t opc : 6; member
584 uint32_t opc : 5; member
666 uint32_t opc : 5; member
699 case 0: return instr->cat0.opc; in instr_opc()
701 case 2: return instr->cat2.opc; in instr_opc()
702 case 3: return instr->cat3.opc; in instr_opc()
703 case 4: return instr->cat4.opc; in instr_opc()
704 case 5: return instr->cat5.opc; in instr_opc()
705 case 6: return instr->cat6.opc; in instr_opc()
710 static inline bool is_mad(opc_t opc) in is_mad() argument
712 switch (opc) { in is_mad()
725 static inline bool is_madsh(opc_t opc) in is_madsh() argument
727 switch (opc) { in is_madsh()