Lines Matching refs:IntVT
10359 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); in ConstantFoldBITCASTofBUILD_VECTOR() local
10360 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode(); in ConstantFoldBITCASTofBUILD_VECTOR()
10361 SrcEltVT = IntVT; in ConstantFoldBITCASTofBUILD_VECTOR()
12262 EVT IntVT = Int.getValueType(); in visitFNEG() local
12263 if (IntVT.isInteger() && !IntVT.isVector()) { in visitFNEG()
12269 SignMask = APInt::getSplat(IntVT.getSizeInBits(), SignMask); in visitFNEG()
12272 SignMask = APInt::getSignMask(IntVT.getSizeInBits()); in visitFNEG()
12275 Int = DAG.getNode(ISD::XOR, DL0, IntVT, Int, in visitFNEG()
12276 DAG.getConstant(SignMask, DL0, IntVT)); in visitFNEG()
12360 EVT IntVT = Int.getValueType(); in visitFABS() local
12361 if (IntVT.isInteger() && !IntVT.isVector()) { in visitFABS()
12367 SignMask = APInt::getSplat(IntVT.getSizeInBits(), SignMask); in visitFABS()
12370 SignMask = ~APInt::getSignMask(IntVT.getSizeInBits()); in visitFABS()
12373 Int = DAG.getNode(ISD::AND, DL, IntVT, Int, in visitFABS()
12374 DAG.getConstant(SignMask, DL, IntVT)); in visitFABS()
14057 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); in TransformFPLoadStorePair() local
14058 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) || in TransformFPLoadStorePair()
14059 !TLI.isOperationLegal(ISD::STORE, IntVT) || in TransformFPLoadStorePair()
14066 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext()); in TransformFPLoadStorePair()
14072 DAG.getLoad(IntVT, SDLoc(Value), LD->getChain(), LD->getBasePtr(), in TransformFPLoadStorePair()