Home
last modified time | relevance | path

Searched refs:NewL (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/IR/
DConstantRange.cpp749 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local
751 if (NewU == NewL) in smax()
753 return ConstantRange(NewL, NewU); in smax()
762 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local
764 if (NewU == NewL) in umax()
766 return ConstantRange(NewL, NewU); in umax()
775 APInt NewL = APIntOps::smin(getSignedMin(), Other.getSignedMin()); in smin() local
777 if (NewU == NewL) in smin()
779 return ConstantRange(NewL, NewU); in smin()
788 APInt NewL = APIntOps::umin(getUnsignedMin(), Other.getUnsignedMin()); in umin() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
DLoopPassManager.h188 for (Loop *NewL : NewChildLoops)
189 assert(NewL->getParentLoop() == CurrentL && "All of the new loops must "
209 for (Loop *NewL : NewSibLoops)
210 assert(NewL->getParentLoop() == ParentL &&
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstantRange.cpp873 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local
875 if (NewU == NewL) in smax()
877 return ConstantRange(std::move(NewL), std::move(NewU)); in smax()
886 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local
888 if (NewU == NewL) in umax()
890 return ConstantRange(std::move(NewL), std::move(NewU)); in umax()
899 APInt NewL = APIntOps::smin(getSignedMin(), Other.getSignedMin()); in smin() local
901 if (NewU == NewL) in smin()
903 return ConstantRange(std::move(NewL), std::move(NewU)); in smin()
912 APInt NewL = APIntOps::umin(getUnsignedMin(), Other.getUnsignedMin()); in umin() local
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DConstantRange.cpp572 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local
574 if (NewU == NewL) in smax()
576 return ConstantRange(NewL, NewU); in smax()
585 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local
587 if (NewU == NewL) in umax()
589 return ConstantRange(NewL, NewU); in umax()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp478 SDValue NewL; in SoftenFloatRes_LOAD() local
480 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), in SoftenFloatRes_LOAD()
486 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
487 return NewL; in SoftenFloatRes_LOAD()
491 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, in SoftenFloatRes_LOAD()
498 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
499 return BitConvertToInteger(DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL)); in SoftenFloatRes_LOAD()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp634 SDValue NewL; in SoftenFloatRes_LOAD() local
636 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), in SoftenFloatRes_LOAD()
643 if (N != NewL.getValue(1).getNode()) in SoftenFloatRes_LOAD()
644 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
645 return NewL; in SoftenFloatRes_LOAD()
649 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, in SoftenFloatRes_LOAD()
657 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
658 auto ExtendNode = DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL); in SoftenFloatRes_LOAD()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp638 SDValue NewL; in SoftenFloatRes_LOAD() local
640 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), NVT, dl, in SoftenFloatRes_LOAD()
646 if (N != NewL.getValue(1).getNode()) in SoftenFloatRes_LOAD()
647 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
648 return NewL; in SoftenFloatRes_LOAD()
652 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, L->getMemoryVT(), in SoftenFloatRes_LOAD()
658 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD()
659 auto ExtendNode = DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL); in SoftenFloatRes_LOAD()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DSimpleLoopUnswitch.cpp2518 for (auto *NewL : NewLoops) in runOnLoop() local
2519 LPM.addLoop(*NewL); in runOnLoop()