/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | CFG.h | 150 for (const auto *Lp = LI.getLoopFor(Src); Lp; Lp = Lp->getParentLoop()) { in containsIrreducibleCFG() 151 if (Lp->getHeader() == Dst) in containsIrreducibleCFG()
|
H A D | VectorUtils.h | 207 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 D | LoopAccessAnalysis.h | 377 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 D | LoopVectorizationLegality.cpp | 275 // 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 D | VPlanHCFGBuilder.h | 63 VPlanHCFGBuilder(Loop *Lp, LoopInfo *LI, VPlan &P) in VPlanHCFGBuilder() argument 64 : TheLoop(Lp), LI(LI), Plan(P) {} in VPlanHCFGBuilder()
|
H A D | VPlanHCFGBuilder.cpp | 73 PlainCFGBuilder(Loop *Lp, LoopInfo *LI, VPlan &P) in PlainCFGBuilder() argument 74 : TheLoop(Lp), LI(LI), Plan(P) {} in PlainCFGBuilder()
|
H A D | LoopVectorize.cpp | 2984 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 D | cbs_jpeg_syntax_template.c | 157 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 D | cbs_jpeg.h | 111 uint16_t Lp; member
|
H A D | vaapi_encode_mjpeg.c | 289 app->Lp = 2 + sizeof(priv->jfif_data); in vaapi_encode_mjpeg_init_picture_params()
|
/third_party/lzma/Java/SevenZip/ |
H A D | LzmaAlone.java | 18 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 D | LoopVectorizationLegality.h | 316 /// 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 D | VectorUtils.cpp | 153 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 D | LoopAccessAnalysis.cpp | 190 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 D | HexagonCommonGEP.cpp | 903 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()
|