Lines Matching refs:IntVT

3978   MVT IntVT = is64Bit() ? MVT::i64 : MVT::i32;  in forwardMustTailParameters()  local
3979 RegParmTypes.push_back(IntVT); in forwardMustTailParameters()
20821 MVT IntVT = CastToInt.getSimpleValueType(); in lowerFPToIntToFP() local
20830 IntVT != MVT::i32) in lowerFPToIntToFP()
20834 unsigned IntSize = IntVT.getSizeInBits(); in lowerFPToIntToFP()
20837 MVT VecIntVT = MVT::getVectorVT(IntVT, 128 / IntSize); in lowerFPToIntToFP()
23479 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); in LowerVectorAllZero() local
23480 if (!DAG.getTargetLoweringInfo().isTypeLegal(IntVT)) in LowerVectorAllZero()
23483 DAG.getBitcast(IntVT, MaskBits(V)), in LowerVectorAllZero()
23484 DAG.getConstant(0, DL, IntVT)); in LowerVectorAllZero()
42393 EVT IntVT = in combineBitcastvxi1() local
42395 V = DAG.getZExtOrTrunc(V, DL, IntVT); in combineBitcastvxi1()
42413 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), Imm.getBitWidth()); in combinevXi1ConstantToInteger() local
42414 return DAG.getConstant(Imm, SDLoc(Op), IntVT); in combinevXi1ConstantToInteger()
42836 EVT IntVT = EVT(MovmskVT).changeVectorElementTypeToInteger(); in combineBitcast() local
42837 MovmskIn = DAG.getBitcast(IntVT, MovmskIn); in combineBitcast()
42841 DAG.getConstant(0, dl, IntVT), ISD::SETLT); in combineBitcast()
44955 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getVectorNumElements()); in combineSelect() local
44961 LHS.getOperand(0).getValueType() == IntVT)) && in combineSelect()
44964 RHS.getOperand(0).getValueType() == IntVT))) { in combineSelect()
44975 SDValue Select = DAG.getSelect(DL, IntVT, Cond, LHS, RHS); in combineSelect()
47295 MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32; in combineCompareEqual() local
47308 IntVT = MVT::i32; in combineCompareEqual()
47311 SDValue OnesOrZeroesI = DAG.getBitcast(IntVT, OnesOrZeroesF); in combineCompareEqual()
47312 SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI, in combineCompareEqual()
47313 DAG.getConstant(1, DL, IntVT)); in combineCompareEqual()
49011 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), NumElts); in combineLoad() local
49012 if (TLI.isTypeLegal(IntVT)) { in combineLoad()
49013 SDValue IntLoad = DAG.getLoad(IntVT, dl, Ld->getChain(), Ld->getBasePtr(), in combineLoad()
50860 MVT IntVT = MVT::getVectorVT(IntSVT, VT.getSizeInBits() / IntBits); in lowerX86FPLogicOp() local
50862 SDValue Op0 = DAG.getBitcast(IntVT, N->getOperand(0)); in lowerX86FPLogicOp()
50863 SDValue Op1 = DAG.getBitcast(IntVT, N->getOperand(1)); in lowerX86FPLogicOp()
50872 SDValue IntOp = DAG.getNode(IntOpcode, dl, IntVT, Op0, Op1); in lowerX86FPLogicOp()
52555 EVT IntVT = BV->getValueType(0); in combineVectorCompareAndMaskUnaryOp() local
52565 SDValue MaskConst = DAG.getBitcast(IntVT, SourceConst); in combineVectorCompareAndMaskUnaryOp()
52566 SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT, Op0->getOperand(0), in combineVectorCompareAndMaskUnaryOp()
54853 EVT IntVT = SrcVT.changeVectorElementTypeToInteger(); in combineFP_EXTEND() local
54854 Src = DAG.getBitcast(IntVT, Src); in combineFP_EXTEND()
54859 SDValue Fill = NumElts == 4 ? DAG.getUNDEF(IntVT) in combineFP_EXTEND()
54860 : DAG.getConstant(0, dl, IntVT); in combineFP_EXTEND()
54980 EVT IntVT = VT.changeVectorElementTypeToInteger(); in combineFP_ROUND() local
54981 Cvt = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, IntVT, Cvt, in combineFP_ROUND()