Searched refs:NewL (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantRange.cpp | 993 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin()); in smax() local 995 return getNonEmpty(std::move(NewL), std::move(NewU)); in smax() 1004 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin()); in umax() local 1006 return getNonEmpty(std::move(NewL), std::move(NewU)); in umax() 1015 APInt NewL = APIntOps::smin(getSignedMin(), Other.getSignedMin()); in smin() local 1017 return getNonEmpty(std::move(NewL), std::move(NewU)); in smin() 1026 APInt NewL = APIntOps::umin(getUnsignedMin(), Other.getUnsignedMin()); in umin() local 1028 return getNonEmpty(std::move(NewL), std::move(NewU)); in umin() 1304 APInt NewL = getUnsignedMin().uadd_sat(Other.getUnsignedMin()); in uadd_sat() local 1306 return getNonEmpty(std::move(NewL), std::move(NewU)); in uadd_sat() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/ |
D | LoopPassManager.h | 187 for (Loop *NewL : NewChildLoops) 188 assert(NewL->getParentLoop() == CurrentL && "All of the new loops must " 208 for (Loop *NewL : NewSibLoops) 209 assert(NewL->getParentLoop() == ParentL &&
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopFuse.cpp | 835 AddRecLoopReplacer(ScalarEvolution &SE, const Loop &OldL, const Loop &NewL, in AddRecLoopReplacer() argument 838 NewL(NewL) {} in AddRecLoopReplacer() 845 return SE.getAddRecExpr(Operands, &NewL, Expr->getNoWrapFlags()); in visitAddRecExpr() 866 const Loop &OldL, &NewL; member in __anon1112c44a0111::LoopFuser::AddRecLoopReplacer
|
D | SimpleLoopUnswitch.cpp | 2965 for (auto *NewL : NewLoops) in runOnLoop() local 2966 LPM.addLoop(*NewL); in runOnLoop()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeFloatTypes.cpp | 657 SDValue NewL; in SoftenFloatRes_LOAD() local 659 NewL = DAG.getLoad(L->getAddressingMode(), L->getExtensionType(), NVT, dl, in SoftenFloatRes_LOAD() 665 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD() 666 return NewL; in SoftenFloatRes_LOAD() 670 NewL = DAG.getLoad(L->getAddressingMode(), ISD::NON_EXTLOAD, L->getMemoryVT(), in SoftenFloatRes_LOAD() 676 ReplaceValueWith(SDValue(N, 1), NewL.getValue(1)); in SoftenFloatRes_LOAD() 677 auto ExtendNode = DAG.getNode(ISD::FP_EXTEND, dl, VT, NewL); in SoftenFloatRes_LOAD()
|