summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2015-06-29 21:42:16 +0000
committerTim Northover <tnorthover@apple.com>2015-06-29 21:42:16 +0000
commit83f0fbcc3712b185dc2323f8ee6e2a9527f97a04 (patch)
tree5299bbf5ceee928f7b0c1dbee252ab98719c7157 /llvm/test/CodeGen
parentabf88a0398d60bbf26d462dd84b9252c9098dc5a (diff)
downloadbcm5719-llvm-83f0fbcc3712b185dc2323f8ee6e2a9527f97a04.tar.gz
bcm5719-llvm-83f0fbcc3712b185dc2323f8ee6e2a9527f97a04.zip
ARM: add correct kill flags when combining stm instructions
When the store sequence being combined actually stores the base register, we should not mark it as killed until the end. rdar://21504262 llvm-svn: 241003
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r--llvm/test/CodeGen/ARM/load-store-flags.ll43
1 files changed, 43 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/load-store-flags.ll b/llvm/test/CodeGen/ARM/load-store-flags.ll
new file mode 100644
index 00000000000..5825a30109d
--- /dev/null
+++ b/llvm/test/CodeGen/ARM/load-store-flags.ll
@@ -0,0 +1,43 @@
+; RUN: llc -mtriple=thumbv7-apple-ios7.0 -o - %s -verify-machineinstrs | FileCheck %s
+
+; The base register for the store is killed by the last instruction, but is
+; actually also used during as part of the store itself. If an extra ADD is
+; inserted, it should not kill the base.
+define void @test_base_kill(i32 %v0, i32 %v1, i32* %addr) {
+; CHECK-LABEL: test_base_kill:
+; CHECK: adds [[NEWBASE:r[0-9]+]], r2, #4
+; CHECK: stm.w [[NEWBASE]], {r0, r1, r2}
+
+ %addr.1 = getelementptr i32, i32* %addr, i32 1
+ store i32 %v0, i32* %addr.1
+
+ %addr.2 = getelementptr i32, i32* %addr, i32 2
+ store i32 %v1, i32* %addr.2
+
+ %addr.3 = getelementptr i32, i32* %addr, i32 3
+ %val = ptrtoint i32* %addr to i32
+ store i32 %val, i32* %addr.3
+
+ ret void
+}
+
+; Similar, but it's not sufficient to look at just the last instruction (where
+; liveness of the base is determined). An intervening instruction might be moved
+; past it to form the STM.
+define void @test_base_kill_mid(i32 %v0, i32* %addr, i32 %v1) {
+; CHECK-LABEL: test_base_kill_mid:
+; CHECK: adds [[NEWBASE:r[0-9]+]], r1, #4
+; CHECK: stm.w [[NEWBASE]], {r0, r1, r2}
+
+ %addr.1 = getelementptr i32, i32* %addr, i32 1
+ store i32 %v0, i32* %addr.1
+
+ %addr.2 = getelementptr i32, i32* %addr, i32 2
+ %val = ptrtoint i32* %addr to i32
+ store i32 %val, i32* %addr.2
+
+ %addr.3 = getelementptr i32, i32* %addr, i32 3
+ store i32 %v1, i32* %addr.3
+
+ ret void
+}
OpenPOWER on IntegriCloud