Home
last modified time | relevance | path

Searched refs:Lp (Results 1 - 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DCFG.h150 for (const auto *Lp = LI.getLoopFor(Src); Lp; Lp = Lp->getParentLoop()) { in containsIrreducibleCFG()
151 if (Lp->getHeader() == Dst) in containsIrreducibleCFG()
H A DVectorUtils.h207 Value *stripGetElementPtr(Value *Ptr, ScalarEvolution *SE, Loop *Lp);
210 Value *getUniqueCastUse(Value *Ptr, Loop *Lp, Type *Ty);
214 Value *getStrideFromPointer(Value *Ptr, ScalarEvolution *SE, Loop *Lp);
H A DLoopAccessAnalysis.h377 void insert(Loop *Lp, Value *Ptr, bool WritePtr, unsigned DepSetId,
693 int64_t getPtrStride(PredicatedScalarEvolution &PSE, Value *Ptr, const Loop *Lp,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp275 // Return true if the inner loop \p Lp is uniform with regard to the outer loop
278 // very constrained for now but it will be relaxed in the future. \p Lp is
290 // would be redundantly executed for each \p Lp if we invoked this function for
297 // function that is only executed once for each \p Lp.
298 static bool isUniformLoop(Loop *Lp, Loop *OuterLp) { in isUniformLoop() argument
299 assert(Lp->getLoopLatch() && "Expected loop with a single latch."); in isUniformLoop()
301 // If Lp is the outer loop, it's uniform by definition. in isUniformLoop()
302 if (Lp == OuterLp) in isUniformLoop()
304 assert(OuterLp->contains(Lp) && "OuterLp must contain Lp in isUniformLoop()
343 isUniformLoopNest(Loop *Lp, Loop *OuterLp) isUniformLoopNest() argument
1012 canVectorizeLoopCFG(Loop *Lp, bool UseVPlanNativePath) canVectorizeLoopCFG() argument
1077 canVectorizeLoopNestCFG( Loop *Lp, bool UseVPlanNativePath) canVectorizeLoopNestCFG() argument
[all...]
H A DVPlanHCFGBuilder.h63 VPlanHCFGBuilder(Loop *Lp, LoopInfo *LI, VPlan &P) in VPlanHCFGBuilder() argument
64 : TheLoop(Lp), LI(LI), Plan(P) {} in VPlanHCFGBuilder()
H A DVPlanHCFGBuilder.cpp73 PlainCFGBuilder(Loop *Lp, LoopInfo *LI, VPlan &P) in PlainCFGBuilder() argument
74 : TheLoop(Lp), LI(LI), Plan(P) {} in PlainCFGBuilder()
H A DLoopVectorize.cpp2984 Loop *Lp = LI->AllocateLoop();
2990 ParentLoop->addChildLoop(Lp);
2992 LI->addTopLevelLoop(Lp);
2994 Lp->addBasicBlockToLoop(LoopVectorBody, *LI);
2997 Value *Count = getOrCreateTripCount(Lp);
3006 emitMinimumIterationCountCheck(Lp, LoopScalarPreHeader);
3010 emitSCEVChecks(Lp, LoopScalarPreHeader);
3015 emitMemRuntimeChecks(Lp, LoopScalarPreHeader);
3020 Value *CountRoundDown = getOrCreateVectorTripCount(Lp);
3023 createInductionVariable(Lp, StartId
[all...]
/third_party/ffmpeg/libavcodec/
H A Dcbs_jpeg_syntax_template.c157 u(16, Lp, 2, 65535); in application_data()
159 if (current->Lp > 2) { in application_data()
161 current->Ap_ref = av_buffer_alloc(current->Lp - 2); in application_data()
167 for (i = 0; i < current->Lp - 2; i++) in application_data()
H A Dcbs_jpeg.h111 uint16_t Lp; member
H A Dvaapi_encode_mjpeg.c289 app->Lp = 2 + sizeof(priv->jfif_data); in vaapi_encode_mjpeg_init_picture_params()
/third_party/lzma/Java/SevenZip/
H A DLzmaAlone.java18 public int Lp = 0; field in LzmaAlone.CommandLine
49 Lp = Integer.parseInt(s.substring(2)); in ParseSwitch()
212 if (!encoder.SetLcLpPb(params.Lc, params.Lp, params.Pb)) in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/
H A DLoopVectorizationLegality.h316 /// Return true if the pre-header, exiting and latch blocks of \p Lp and all
323 bool canVectorizeLoopNestCFG(Loop *Lp, bool UseVPlanNativePath);
330 /// Return true if the pre-header, exiting and latch blocks of \p Lp
336 bool canVectorizeLoopCFG(Loop *Lp, bool UseVPlanNativePath);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DVectorUtils.cpp153 Value *llvm::stripGetElementPtr(Value *Ptr, ScalarEvolution *SE, Loop *Lp) { in stripGetElementPtr() argument
164 !SE->isLoopInvariant(SE->getSCEV(GEP->getOperand(i)), Lp)) in stripGetElementPtr()
170 Value *llvm::getUniqueCastUse(Value *Ptr, Loop *Lp, Type *Ty) { in getUniqueCastUse() argument
186 Value *llvm::getStrideFromPointer(Value *Ptr, ScalarEvolution *SE, Loop *Lp) { in getStrideFromPointer() argument
199 Ptr = stripGetElementPtr(Ptr, SE, Lp); in getStrideFromPointer()
248 if (!Lp->isLoopInvariant(Stride)) in getStrideFromPointer()
254 Stride = getUniqueCastUse(Stride, Lp, StripedOffRecurrenceCast); in getStrideFromPointer()
H A DLoopAccessAnalysis.cpp190 void RuntimePointerChecking::insert(Loop *Lp, Value *Ptr, bool WritePtr, in insert() argument
201 if (SE->isLoopInvariant(Sc, Lp)) in insert()
992 const Loop *Lp, const ValueToValueMap &StridesMap, in getPtrStride()
1018 if (Lp != AR->getLoop()) { in getPtrStride()
1034 isNoWrapAddRec(Ptr, AR, PSE, Lp); in getPtrStride()
1036 NullPointerIsDefined(Lp->getHeader()->getParent(), in getPtrStride()
1064 auto &DL = Lp->getHeader()->getModule()->getDataLayout(); in getPtrStride()
1084 (IsInBoundsGEP || !NullPointerIsDefined(Lp->getHeader()->getParent(), in getPtrStride()
991 getPtrStride(PredicatedScalarEvolution &PSE, Value *Ptr, const Loop *Lp, const ValueToValueMap &StridesMap, bool Assume, bool ShouldCheckWrap) getPtrStride() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp903 Loop *Lp = LI->getLoopFor(LocB); in adjustForInvariance() local
904 while (Lp) { in adjustForInvariance()
905 if (!isInvariantIn(Node, Lp) || !isInMainPath(LocB, Lp)) in adjustForInvariance()
907 BasicBlock *NewLoc = preheader(DT, Lp); in adjustForInvariance()
910 Lp = Lp->getParentLoop(); in adjustForInvariance()

Completed in 21 milliseconds