Searched refs:isFixedOrderRecurrence (Results 1 – 5 of 5) sorted by relevance
354 bool isFixedOrderRecurrence(const PHINode *Phi) const;
220 LLVM_ABI static bool isFixedOrderRecurrence(PHINode *Phi, Loop *TheLoop,
877 if (RecurrenceDescriptor::isFixedOrderRecurrence(Phi, TheLoop, DT)) { in canVectorizeInstrs()1390 bool LoopVectorizationLegality::isFixedOrderRecurrence( in isFixedOrderRecurrence() function in llvm::LoopVectorizationLegality
2884 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()
1114 bool RecurrenceDescriptor::isFixedOrderRecurrence(PHINode *Phi, Loop *TheLoop, in isFixedOrderRecurrence() function in RecurrenceDescriptor