David Goodwin | 73b8f16 | 2009-06-30 22:11:34 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {str\\W*r\[0-9\],\\W*\\\[r\[0-9\]*\\\]$} | count 1 |
| 2 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {str\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#+4092\\\]$} | count 1 |
| 3 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {str\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#-128\\\]$} | count 2 |
| 4 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | not grep {str\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*#+4096\\\]$} |
| 5 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {str\\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 {str\\W*r\[0-9\],\\W*\\\[r\[0-9\]*,\\W*+r\[0-9\]*,\\Wlsl #2\\\]$} | count 1 |
| 7 | |
| 8 | define i32 @f1(i32 %a, i32* %v) { |
| 9 | store i32 %a, i32* %v |
| 10 | ret i32 %a |
| 11 | } |
| 12 | |
| 13 | define i32 @f2(i32 %a, i32* %v) { |
| 14 | %tmp2 = getelementptr i32* %v, i32 1023 |
| 15 | store i32 %a, i32* %tmp2 |
| 16 | ret i32 %a |
| 17 | } |
| 18 | |
| 19 | define i32 @f2a(i32 %a, i32* %v) { |
| 20 | %tmp2 = getelementptr i32* %v, i32 -32 |
| 21 | store i32 %a, i32* %tmp2 |
| 22 | ret i32 %a |
| 23 | } |
| 24 | |
| 25 | define i32 @f3(i32 %a, i32* %v) { |
| 26 | %tmp2 = getelementptr i32* %v, i32 1024 |
| 27 | store i32 %a, i32* %tmp2 |
| 28 | ret i32 %a |
| 29 | } |
| 30 | |
| 31 | define i32 @f4(i32 %a, i32 %base) { |
| 32 | entry: |
| 33 | %tmp1 = sub i32 %base, 128 |
| 34 | %tmp2 = inttoptr i32 %tmp1 to i32* |
| 35 | store i32 %a, i32* %tmp2 |
| 36 | ret i32 %a |
| 37 | } |
| 38 | |
| 39 | define i32 @f5(i32 %a, i32 %base, i32 %offset) { |
| 40 | entry: |
| 41 | %tmp1 = add i32 %base, %offset |
| 42 | %tmp2 = inttoptr i32 %tmp1 to i32* |
| 43 | store i32 %a, i32* %tmp2 |
| 44 | ret i32 %a |
| 45 | } |
| 46 | |
| 47 | define i32 @f6(i32 %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 i32* |
| 52 | store i32 %a, i32* %tmp3 |
| 53 | ret i32 %a |
| 54 | } |
| 55 | |
| 56 | define i32 @f7(i32 %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 i32* |
| 61 | store i32 %a, i32* %tmp3 |
| 62 | ret i32 %a |
| 63 | } |