| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | IVDescriptors.h | 268 class InductionDescriptor { 280 InductionDescriptor() = default; 297 InductionDescriptor &D, const SCEV *Expr = nullptr, 304 InductionDescriptor &D); 314 InductionDescriptor &D, bool Assume = false); 341 InductionDescriptor(Value *Start, InductionKind K, const SCEV *Step,
|
| H A D | LoopInfo.h | 60 class InductionDescriptor; variable 746 InductionDescriptor &IndDesc) const;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | IVDescriptors.cpp | 964 InductionDescriptor::InductionDescriptor(Value *Start, InductionKind K, in InductionDescriptor() function in InductionDescriptor 1002 ConstantInt *InductionDescriptor::getConstIntStepValue() const { in getConstIntStepValue() 1008 bool InductionDescriptor::isFPInductionPHI(PHINode *Phi, const Loop *TheLoop, in isFPInductionPHI() 1010 InductionDescriptor &D) { in isFPInductionPHI() 1057 D = InductionDescriptor(StartValue, IK_FpInduction, Step, BOp); in isFPInductionPHI() 1166 bool InductionDescriptor::isInductionPHI(PHINode *Phi, const Loop *TheLoop, in isInductionPHI() 1168 InductionDescriptor &D, bool Assume) { in isInductionPHI() 1210 bool InductionDescriptor::isInductionPHI( in isInductionPHI() 1212 InductionDescriptor &D, const SCEV *Expr, in isInductionPHI() 1253 D = InductionDescriptor(StartValue, IK_IntInduction, Step, BOp, in isInductionPHI() [all …]
|
| H A D | LoopInfo.cpp | 204 InductionDescriptor IndDesc; in getBounds() 205 if (!InductionDescriptor::isInductionPHI(&IndVar, &L, &SE, IndDesc)) in getBounds() 308 InductionDescriptor IndDesc; in getInductionVariable() 309 if (!InductionDescriptor::isInductionPHI(&IndVar, this, &SE, IndDesc)) in getInductionVariable() 333 InductionDescriptor &IndDesc) const { in getInductionDescriptor() 335 return InductionDescriptor::isInductionPHI(IndVar, this, &SE, IndDesc); in getInductionDescriptor() 353 InductionDescriptor IndDesc; in isAuxiliaryInductionVariable() 354 if (!InductionDescriptor::isInductionPHI(&AuxIndVar, this, &SE, IndDesc)) in isAuxiliaryInductionVariable() 411 InductionDescriptor IndDesc; in isCanonical()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorizationLegality.cpp | 510 PHINode *Phi, const InductionDescriptor &ID, in addInductionPhi() 534 if (ID.getKind() == InductionDescriptor::IK_IntInduction && in addInductionPhi() 566 InductionDescriptor ID; in setupOuterLoopInductions() 567 if (InductionDescriptor::isInductionPHI(&Phi, TheLoop, PSE, ID) && in setupOuterLoopInductions() 568 ID.getKind() == InductionDescriptor::IK_IntInduction) { in setupOuterLoopInductions() 678 InductionDescriptor ID; in canVectorizeInstrs() 679 if (InductionDescriptor::isInductionPHI(Phi, TheLoop, PSE, ID)) { in canVectorizeInstrs() 694 if (InductionDescriptor::isInductionPHI(Phi, TheLoop, PSE, ID, true)) { in canVectorizeInstrs() 916 InductionDescriptor IndDesc = Induction.second; in canVectorizeFPMath()
|
| H A D | VPlanTransforms.cpp | 48 InductionDescriptor II = Inductions.lookup(Phi); in VPInstructionsToVPRecipes() 49 if (II.getKind() == InductionDescriptor::IK_IntInduction || in VPInstructionsToVPRecipes() 50 II.getKind() == InductionDescriptor::IK_FpInduction) { in VPInstructionsToVPRecipes()
|
| H A D | LoopVectorize.cpp | 3365 const InductionDescriptor &ID) const { in emitTransformedIndex() 3421 case InductionDescriptor::IK_IntInduction: { in emitTransformedIndex() 3432 case InductionDescriptor::IK_PtrInduction: { in emitTransformedIndex() 3441 case InductionDescriptor::IK_FpInduction: { in emitTransformedIndex() 3456 case InductionDescriptor::IK_NoInduction: in emitTransformedIndex() 3539 InductionDescriptor II = InductionEntry.second; in createInductionResumeValues() 4738 case InductionDescriptor::IK_NoInduction: in widenPHIInstruction() 4740 case InductionDescriptor::IK_IntInduction: in widenPHIInstruction() 4741 case InductionDescriptor::IK_FpInduction: in widenPHIInstruction() 4743 case InductionDescriptor::IK_PtrInduction: { in widenPHIInstruction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | CanonicalizeFreezeInLoops.cpp | 133 InductionDescriptor ID; in run() 134 if (!InductionDescriptor::isInductionPHI(&PHI, L, &SE, ID)) in run()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/ |
| H A D | LoopVectorizationLegality.h | 267 using InductionList = MapVector<PHINode *, InductionDescriptor>; 453 void addInductionPhi(PHINode *Phi, const InductionDescriptor &ID,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopInterchange.cpp | 759 InductionDescriptor ID; in findInductionAndReductions() 760 if (InductionDescriptor::isInductionPHI(&PHI, L, SE, ID)) in findInductionAndReductions()
|