summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-11-14 20:22:27 +0000
committerChad Rosier <mcrosier@apple.com>2011-11-14 20:22:27 +0000
commit57b299796685033c87a5414e179b95b5ae7dc8d4 (patch)
treed8f90c3e687aef277c1baa1a12e98f793eee70fb /test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll
parent6296ee3ee25a41f4d36d4fd61181598cd165235a (diff)
downloadllvm-57b299796685033c87a5414e179b95b5ae7dc8d4.tar.gz
llvm-57b299796685033c87a5414e179b95b5ae7dc8d4.tar.bz2
llvm-57b299796685033c87a5414e179b95b5ae7dc8d4.tar.xz
Add support for Thumb load/stores with negative offsets.
rdar://10412592 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll')
-rw-r--r--test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll168
1 files changed, 168 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll b/test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll
new file mode 100644
index 0000000000..0b8a768b87
--- /dev/null
+++ b/test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll
@@ -0,0 +1,168 @@
+; RUN: llc < %s -O0 -fast-isel-abort -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-darwin | FileCheck %s --check-prefix=THUMB
+
+define i32 @t1(i32* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t1
+ %add.ptr = getelementptr inbounds i32* %ptr, i32 -1
+ %0 = load i32* %add.ptr, align 4, !tbaa !0
+; THUMB: ldr r{{[0-9]}}, [r0, #-4]
+ ret i32 %0
+}
+
+define i32 @t2(i32* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t2
+ %add.ptr = getelementptr inbounds i32* %ptr, i32 -63
+ %0 = load i32* %add.ptr, align 4, !tbaa !0
+; THUMB: ldr r{{[0-9]}}, [r0, #-252]
+ ret i32 %0
+}
+
+define i32 @t3(i32* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t3
+ %add.ptr = getelementptr inbounds i32* %ptr, i32 -64
+ %0 = load i32* %add.ptr, align 4, !tbaa !0
+; THUMB: ldr r{{[0-9]}}, [r0]
+ ret i32 %0
+}
+
+define zeroext i16 @t4(i16* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t4
+ %add.ptr = getelementptr inbounds i16* %ptr, i32 -1
+ %0 = load i16* %add.ptr, align 2, !tbaa !3
+; THUMB: ldrh r{{[0-9]}}, [r0, #-2]
+ ret i16 %0
+}
+
+define zeroext i16 @t5(i16* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t5
+ %add.ptr = getelementptr inbounds i16* %ptr, i32 -127
+ %0 = load i16* %add.ptr, align 2, !tbaa !3
+; THUMB: ldrh r{{[0-9]}}, [r0, #-254]
+ ret i16 %0
+}
+
+define zeroext i16 @t6(i16* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t6
+ %add.ptr = getelementptr inbounds i16* %ptr, i32 -128
+ %0 = load i16* %add.ptr, align 2, !tbaa !3
+; THUMB: ldrh r{{[0-9]}}, [r0]
+ ret i16 %0
+}
+
+define zeroext i8 @t7(i8* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t7
+ %add.ptr = getelementptr inbounds i8* %ptr, i32 -1
+ %0 = load i8* %add.ptr, align 1, !tbaa !1
+; THUMB: ldrb r{{[0-9]}}, [r0, #-1]
+ ret i8 %0
+}
+
+define zeroext i8 @t8(i8* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t8
+ %add.ptr = getelementptr inbounds i8* %ptr, i32 -255
+ %0 = load i8* %add.ptr, align 1, !tbaa !1
+; THUMB: ldrb r{{[0-9]}}, [r0, #-255]
+ ret i8 %0
+}
+
+define zeroext i8 @t9(i8* nocapture %ptr) nounwind readonly {
+entry:
+; THUMB: t9
+ %add.ptr = getelementptr inbounds i8* %ptr, i32 -256
+ %0 = load i8* %add.ptr, align 1, !tbaa !1
+; THUMB: ldrb r{{[0-9]}}, [r0]
+ ret i8 %0
+}
+
+define void @t10(i32* nocapture %ptr) nounwind {
+entry:
+; THUMB: t10
+ %add.ptr = getelementptr inbounds i32* %ptr, i32 -1
+ store i32 0, i32* %add.ptr, align 4, !tbaa !0
+; THUMB: str r{{[0-9]}}, [r0, #-4]
+ ret void
+}
+
+define void @t11(i32* nocapture %ptr) nounwind {
+entry:
+; THUMB: t11
+ %add.ptr = getelementptr inbounds i32* %ptr, i32 -63
+ store i32 0, i32* %add.ptr, align 4, !tbaa !0
+; THUMB: str r{{[0-9]}}, [r0, #-252]
+ ret void
+}
+
+define void @t12(i32* nocapture %ptr) nounwind {
+entry:
+; THUMB: t12
+ %add.ptr = getelementptr inbounds i32* %ptr, i32 -64
+ store i32 0, i32* %add.ptr, align 4, !tbaa !0
+; THUMB: str r{{[0-9]}}, [r0]
+ ret void
+}
+
+define void @t13(i16* nocapture %ptr) nounwind {
+entry:
+; THUMB: t13
+ %add.ptr = getelementptr inbounds i16* %ptr, i32 -1
+ store i16 0, i16* %add.ptr, align 2, !tbaa !3
+; THUMB: strh r{{[0-9]}}, [r0, #-2]
+ ret void
+}
+
+define void @t14(i16* nocapture %ptr) nounwind {
+entry:
+; THUMB: t14
+ %add.ptr = getelementptr inbounds i16* %ptr, i32 -127
+ store i16 0, i16* %add.ptr, align 2, !tbaa !3
+; THUMB: strh r{{[0-9]}}, [r0, #-254]
+ ret void
+}
+
+define void @t15(i16* nocapture %ptr) nounwind {
+entry:
+; THUMB: t15
+ %add.ptr = getelementptr inbounds i16* %ptr, i32 -128
+ store i16 0, i16* %add.ptr, align 2, !tbaa !3
+; THUMB: strh r{{[0-9]}}, [r0]
+ ret void
+}
+
+define void @t16(i8* nocapture %ptr) nounwind {
+entry:
+; THUMB: t16
+ %add.ptr = getelementptr inbounds i8* %ptr, i32 -1
+ store i8 0, i8* %add.ptr, align 1, !tbaa !1
+; THUMB: strb r{{[0-9]}}, [r0, #-1]
+ ret void
+}
+
+define void @t17(i8* nocapture %ptr) nounwind {
+entry:
+; THUMB: t17
+ %add.ptr = getelementptr inbounds i8* %ptr, i32 -255
+ store i8 0, i8* %add.ptr, align 1, !tbaa !1
+; THUMB: strb r{{[0-9]}}, [r0, #-255]
+ ret void
+}
+
+define void @t18(i8* nocapture %ptr) nounwind {
+entry:
+; THUMB: t18
+ %add.ptr = getelementptr inbounds i8* %ptr, i32 -256
+ store i8 0, i8* %add.ptr, align 1, !tbaa !1
+; THUMB: strb r{{[0-9]}}, [r0]
+ ret void
+}
+
+!0 = metadata !{metadata !"int", metadata !1}
+!1 = metadata !{metadata !"omnipotent char", metadata !2}
+!2 = metadata !{metadata !"Simple C/C++ TBAA", null}
+!3 = metadata !{metadata !"short", metadata !1}