Home | History | Annotate | Download | only in MSP430

Lines Matching refs:Opc

558   unsigned Opc = (CallConv == CallingConv::MSP430_INTR ?
567 return DAG.getNode(Opc, dl, MVT::Other, RetOps);
738 unsigned Opc = Op.getOpcode();
745 switch (Opc) {
765 if (Opc == ISD::SRL && ShiftAmount) {
773 Victim = DAG.getNode((Opc == ISD::SHL ? MSP430ISD::RLA : MSP430ISD::RRA),
1200 unsigned Opc;
1205 Opc = MSP430::SHL8r1;
1209 Opc = MSP430::SHL16r1;
1213 Opc = MSP430::SAR8r1;
1217 Opc = MSP430::SAR16r1;
1221 Opc = MSP430::SAR8r1c;
1225 Opc = MSP430::SAR16r1c;
1280 BuildMI(LoopBB, dl, TII.get(Opc), ShiftReg2)
1301 unsigned Opc = MI->getOpcode();
1303 if (Opc == MSP430::Shl8 || Opc == MSP430::Shl16 ||
1304 Opc == MSP430::Sra8 || Opc == MSP430::Sra16 ||
1305 Opc == MSP430::Srl8 || Opc == MSP430::Srl16)
1311 assert((Opc == MSP430::Select16 || Opc == MSP430::Select8) &&