/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 749 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/ |
D | LoopPassManager.h | 188 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/ |
D | ConstantRange.cpp | 873 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/ |
D | ConstantRange.cpp | 572 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/ |
D | LegalizeFloatTypes.cpp | 478 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/ |
D | LegalizeFloatTypes.cpp | 634 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/ |
D | LegalizeFloatTypes.cpp | 638 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/ |
D | SimpleLoopUnswitch.cpp | 2518 for (auto *NewL : NewLoops) in runOnLoop() local 2519 LPM.addLoop(*NewL); in runOnLoop()
|