diff options
author | Silviu Baranga <silviu.baranga@arm.com> | 2012-09-17 14:10:54 +0000 |
---|---|---|
committer | Silviu Baranga <silviu.baranga@arm.com> | 2012-09-17 14:10:54 +0000 |
commit | 7bd29146833d1bb18e537db18eaa339720ee651f (patch) | |
tree | 9621330a79a88ba997de8c78ee6b8af1cf313eed | |
parent | 86af62c1ad8beda4a897de7732c9776de09dd988 (diff) | |
download | bcm5719-llvm-7bd29146833d1bb18e537db18eaa339720ee651f.tar.gz bcm5719-llvm-7bd29146833d1bb18e537db18eaa339720ee651f.zip |
Removed the VMLxForwarding feature for the Cortex-A15 target.
llvm-svn: 164030
-rw-r--r-- | llvm/lib/Target/ARM/ARM.td | 3 | ||||
-rw-r--r-- | llvm/test/CodeGen/ARM/a15-mla.ll | 12 |
2 files changed, 13 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARM.td b/llvm/lib/Target/ARM/ARM.td index ab57779b580..1fb190ca112 100644 --- a/llvm/lib/Target/ARM/ARM.td +++ b/llvm/lib/Target/ARM/ARM.td @@ -142,8 +142,7 @@ def ProcA9 : SubtargetFeature<"a9", "ARMProcFamily", "CortexA9", // FIXME: It has not been determined if A15 has these features. def ProcA15 : SubtargetFeature<"a15", "ARMProcFamily", "CortexA15", "Cortex-A15 ARM processors", - [FeatureVMLxForwarding, - FeatureT2XtPk, FeatureFP16, + [FeatureT2XtPk, FeatureFP16, FeatureAvoidPartialCPSR]>; class ProcNoItin<string Name, list<SubtargetFeature> Features> diff --git a/llvm/test/CodeGen/ARM/a15-mla.ll b/llvm/test/CodeGen/ARM/a15-mla.ll new file mode 100644 index 00000000000..25f6de4762d --- /dev/null +++ b/llvm/test/CodeGen/ARM/a15-mla.ll @@ -0,0 +1,12 @@ +; RUN: llc < %s -march=arm -float-abi=hard -mcpu=cortex-a15 -mattr=+neon,+neonfp | FileCheck %s + +; This test checks that the VMLxForwarting feature is disabled for A15. +; CHECK: fun_a +define <4 x i32> @fun_a(<4 x i32> %x, <4 x i32> %y) nounwind{ + %1 = add <4 x i32> %x, %y +; CHECK-NOT: vmul +; CHECK: vmla + %2 = mul <4 x i32> %1, %1 + %3 = add <4 x i32> %y, %2 + ret <4 x i32> %3 +} |