summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2016-11-22 14:25:02 +0000
committerChad Rosier <mcrosier@codeaurora.org>2016-11-22 14:25:02 +0000
commitecc77273a09bae469ac3480db4d0fab1a7b2cb27 (patch)
tree8150dffeb846a3d99830d8eb507a52330010eea5 /llvm/lib
parent2abc29c593ea22960f136fbc6587c2b7025a37ca (diff)
downloadbcm5719-llvm-ecc77273a09bae469ac3480db4d0fab1a7b2cb27.tar.gz
bcm5719-llvm-ecc77273a09bae469ac3480db4d0fab1a7b2cb27.zip
[AArch64] Set the max interleave factor for Falkor.
llvm-svn: 287642
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/AArch64/AArch64Subtarget.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64Subtarget.cpp b/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
index 3d761286649..f58bbbd2613 100644
--- a/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
+++ b/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
@@ -69,6 +69,9 @@ void AArch64Subtarget::initializeProperties() {
PrefFunctionAlignment = 4;
PrefLoopAlignment = 3;
break;
+ case Falkor:
+ MaxInterleaveFactor = 4;
+ break;
case Kryo:
MaxInterleaveFactor = 4;
VectorInsertExtractBaseCost = 2;
@@ -84,7 +87,6 @@ void AArch64Subtarget::initializeProperties() {
case CortexA53: break;
case CortexA72: break;
case CortexA73: break;
- case Falkor: break;
case Others: break;
}
}
OpenPOWER on IntegriCloud