mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
[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:
parent
bb819edc1f
commit
824431f680
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user