Home
last modified time | relevance | path

Searched refs:enableAggressiveInterleaving (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h65 bool enableAggressiveInterleaving(bool LoopHasReductions);
H A DPPCTargetTransformInfo.cpp231 bool PPCTTIImpl::enableAggressiveInterleaving(bool LoopHasReductions) { in enableAggressiveInterleaving() function in PPCTTIImpl
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h95 bool enableAggressiveInterleaving(bool LoopHasReductions) { in enableAggressiveInterleaving() function
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h577 bool enableAggressiveInterleaving(bool LoopHasReductions) const;
1094 virtual bool enableAggressiveInterleaving(bool LoopHasReductions) = 0;
1368 bool enableAggressiveInterleaving(bool LoopHasReductions) override { in enableAggressiveInterleaving() function
1369 return Impl.enableAggressiveInterleaving(LoopHasReductions); in enableAggressiveInterleaving()
H A DTargetTransformInfoImpl.h308 bool enableAggressiveInterleaving(bool LoopHasReductions) { return false; } in enableAggressiveInterleaving() function
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp258 bool TargetTransformInfo::enableAggressiveInterleaving(bool LoopHasReductions) const { in enableAggressiveInterleaving() function in TargetTransformInfo
259 return TTIImpl->enableAggressiveInterleaving(LoopHasReductions); in enableAggressiveInterleaving()
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5051 if (TTI.enableAggressiveInterleaving(HasReductions)) { in selectInterleaveCount()