blob: 28a33a493cf161f007f15f99d183de9712336500 [file] [log] [blame]
David Goodwin2f6f1132009-07-27 16:31:55 +00001; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\.w\\W*r\[0-9\],\\W*\\\[r\[0-9\]*\\\]$} | count 1
2; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\.w\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#+4092\\\]$} | count 1
David Goodwinbab5da12009-06-30 22:11:34 +00003; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#-128\\\]$} | count 2
David Goodwin2f6f1132009-07-27 16:31:55 +00004; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | not grep {strh\\.w\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#+4096\\\]$}
5; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {strh\\.w\\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\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*+r\[0-9\]*,\\Wlsl #2\\\]$} | count 1
David Goodwinbab5da12009-06-30 22:11:34 +00007
8define i16 @f1(i16 %a, i16* %v) {
9 store i16 %a, i16* %v
10 ret i16 %a
11}
12
13define 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
19define 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
25define 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
31define i16 @f4(i16 %a, i32 %base) {
32entry:
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
39define i16 @f5(i16 %a, i32 %base, i32 %offset) {
40entry:
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
47define i16 @f6(i16 %a, i32 %base, i32 %offset) {
48entry:
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
56define i16 @f7(i16 %a, i32 %base, i32 %offset) {
57entry:
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}