Add thumb-2 store word, halfword, and byte.
[oota-llvm.git] / test / CodeGen / Thumb2 / thumb2-strh.ll
1 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*\\\]$} | count 1
2 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#+4092\\\]$} | count 1
3 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#-128\\\]$} | count 2
4 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | not grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#+4096\\\]$}
5 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*+r\[0-9\]*\\\]$} | count 3
6 ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*+r\[0-9\]*,\\Wlsl #2\\\]$} | count 1
7
8 define i16 @f1(i16 %a, i16* %v) {
9         store i16 %a, i16* %v
10         ret i16 %a
11 }
12
13 define i16 @f2(i16 %a, i16* %v) {
14         %tmp2 = getelementptr i16* %v, i32 2046
15         store i16 %a, i16* %tmp2
16         ret i16 %a
17 }
18
19 define i16 @f2a(i16 %a, i16* %v) {
20         %tmp2 = getelementptr i16* %v, i32 -64
21         store i16 %a, i16* %tmp2
22         ret i16 %a
23 }
24
25 define i16 @f3(i16 %a, i16* %v) {
26         %tmp2 = getelementptr i16* %v, i32 2048
27         store i16 %a, i16* %tmp2
28         ret i16 %a
29 }
30
31 define i16 @f4(i16 %a, i32 %base) {
32 entry:
33         %tmp1 = sub i32 %base, 128
34         %tmp2 = inttoptr i32 %tmp1 to i16*
35         store i16 %a, i16* %tmp2
36         ret i16 %a
37 }
38
39 define i16 @f5(i16 %a, i32 %base, i32 %offset) {
40 entry:
41         %tmp1 = add i32 %base, %offset
42         %tmp2 = inttoptr i32 %tmp1 to i16*
43         store i16 %a, i16* %tmp2
44         ret i16 %a
45 }
46
47 define i16 @f6(i16 %a, i32 %base, i32 %offset) {
48 entry:
49         %tmp1 = shl i32 %offset, 2
50         %tmp2 = add i32 %base, %tmp1
51         %tmp3 = inttoptr i32 %tmp2 to i16*
52         store i16 %a, i16* %tmp3
53         ret i16 %a
54 }
55
56 define i16 @f7(i16 %a, i32 %base, i32 %offset) {
57 entry:
58         %tmp1 = lshr i32 %offset, 2
59         %tmp2 = add i32 %base, %tmp1
60         %tmp3 = inttoptr i32 %tmp2 to i16*
61         store i16 %a, i16* %tmp3
62         ret i16 %a
63 }