Home | History | Annotate | Download | only in ir3

Lines Matching defs:opc

32 /* size of largest OPC field of all the instruction categories: */
35 #define _OPC(cat, opc) (((cat) << NOPC_BITS) | opc)
212 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS))
213 #define opc_op(opc) ((unsigned)((opc) & ((1 << NOPC_BITS) - 1)))
312 uint32_t opc : 4;
418 uint32_t opc : 6;
478 uint32_t opc : 4;
486 switch (_OPC(3, cat3->opc)) {
535 uint32_t opc : 6;
584 uint32_t opc : 5;
666 uint32_t opc : 5;
699 case 0: return instr->cat0.opc;
701 case 2: return instr->cat2.opc;
702 case 3: return instr->cat3.opc;
703 case 4: return instr->cat4.opc;
704 case 5: return instr->cat5.opc;
705 case 6: return instr->cat6.opc;
710 static inline bool is_mad(opc_t opc)
712 switch (opc) {
725 static inline bool is_madsh(opc_t opc)
727 switch (opc) {