[LoopVectorize] Up the maximum unroll factor to 4 for AArch64

Only for Cortex-A57 and Cyclone for now, where it has shown wins.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216141 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
James Molloy 2014-08-21 00:02:51 +00:00
parent bb819edc1f
commit 824431f680

View File

@ -104,7 +104,7 @@ public:
return 64;
}
unsigned getMaximumUnrollFactor() const override { return 2; }
unsigned getMaximumUnrollFactor() const override;
unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const
override;
@ -513,3 +513,9 @@ unsigned AArch64TTI::getCostOfKeepingLiveOverCall(ArrayRef<Type*> Tys) const {
}
return Cost;
}
unsigned AArch64TTI::getMaximumUnrollFactor() const {
if (ST->isCortexA57() || ST->isCyclone())
return 4;
return 2;
}