Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h347 bool enableAggressiveInterleaving(bool LoopHasReductions) const;
554 virtual bool enableAggressiveInterleaving(bool LoopHasReductions) = 0;
677 bool enableAggressiveInterleaving(bool LoopHasReductions) override { in enableAggressiveInterleaving() argument
678 return Impl.enableAggressiveInterleaving(LoopHasReductions); in enableAggressiveInterleaving()
DTargetTransformInfoImpl.h240 bool enableAggressiveInterleaving(bool LoopHasReductions) { return false; } in enableAggressiveInterleaving() argument
/external/llvm/lib/Target/PowerPC/
DPPCTargetTransformInfo.cpp195 bool PPCTTIImpl::enableAggressiveInterleaving(bool LoopHasReductions) { in enableAggressiveInterleaving() argument
196 return LoopHasReductions; in enableAggressiveInterleaving()
DPPCTargetTransformInfo.h81 bool enableAggressiveInterleaving(bool LoopHasReductions);
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp150 bool TargetTransformInfo::enableAggressiveInterleaving(bool LoopHasReductions) const { in enableAggressiveInterleaving()
151 return TTIImpl->enableAggressiveInterleaving(LoopHasReductions); in enableAggressiveInterleaving()