Home
last modified time | relevance | path

Searched refs:isFixedOrderRecurrence (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/
H A DLoopVectorizationLegality.h354 bool isFixedOrderRecurrence(const PHINode *Phi) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h220 LLVM_ABI static bool isFixedOrderRecurrence(PHINode *Phi, Loop *TheLoop,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp877 if (RecurrenceDescriptor::isFixedOrderRecurrence(Phi, TheLoop, DT)) { in canVectorizeInstrs()
1390 bool LoopVectorizationLegality::isFixedOrderRecurrence( in isFixedOrderRecurrence() function in llvm::LoopVectorizationLegality
H A DLoopVectorize.cpp2884 if (IndUpdatePhi && Legal->isFixedOrderRecurrence(IndUpdatePhi)) in collectLoopScalars()
3350 if (OP && Legal->isFixedOrderRecurrence(OP)) in collectLoopUniforms()
4352 return Legal->isFixedOrderRecurrence(&Phi); in isCandidateForEpilogueVectorization()
5010 if (isa<PHINode>(I) && Legal->isFixedOrderRecurrence(cast<PHINode>(I))) in computePredInstDiscount()
5753 if (isa<PHINode>(I) && Legal->isFixedOrderRecurrence(cast<PHINode>(I))) in setCostBasedWideningDecision()
6057 if (VF.isVector() && Legal->isFixedOrderRecurrence(Phi)) { in getInstructionCost()
8209 Legal->isFixedOrderRecurrence(Phi)) && in tryToCreateWidenRecipe()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp1114 bool RecurrenceDescriptor::isFixedOrderRecurrence(PHINode *Phi, Loop *TheLoop, in isFixedOrderRecurrence() function in RecurrenceDescriptor