Lines Matching refs:ExtOpc
18024 static SDValue SplitAndExtendv16i1(unsigned ExtOpc, MVT VT, SDValue In, in SplitAndExtendv16i1() argument
18031 Lo = DAG.getNode(ExtOpc, dl, MVT::v8i16, Lo); in SplitAndExtendv16i1()
18032 Hi = DAG.getNode(ExtOpc, dl, MVT::v8i16, Hi); in SplitAndExtendv16i1()
20338 unsigned ExtOpc = in LowerEXTEND_VECTOR_INREG() local
20341 return DAG.getNode(ExtOpc, dl, VT, In); in LowerEXTEND_VECTOR_INREG()
24664 unsigned ExtOpc = Opc == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; in LowerShift() local
24665 R = DAG.getNode(ExtOpc, dl, ExtVT, R); in LowerShift()
38387 unsigned ExtOpc = LHS.getOpcode(); in combinePMULH() local
38388 if ((ExtOpc != ISD::SIGN_EXTEND && ExtOpc != ISD::ZERO_EXTEND) || in combinePMULH()
38389 RHS.getOpcode() != ExtOpc) in combinePMULH()
38400 unsigned Opc = ExtOpc == ISD::SIGN_EXTEND ? ISD::MULHS : ISD::MULHU; in combinePMULH()