1 ; RUN: llvm-as < %s | llc -march=arm | grep {ldr r0} | count 7
2 ; RUN: llvm-as < %s | llc -march=arm | grep mov | grep 1
3 ; RUN: llvm-as < %s | llc -march=arm | not grep mvn
4 ; RUN: llvm-as < %s | llc -march=arm | grep ldr | grep lsl
5 ; RUN: llvm-as < %s | llc -march=arm | grep ldr | grep lsr
7 define i32 @f1(i32* %v) {
13 define i32 @f2(i32* %v) {
15 %tmp2 = getelementptr i32* %v, i32 1023
16 %tmp = load i32* %tmp2
20 define i32 @f3(i32* %v) {
22 %tmp2 = getelementptr i32* %v, i32 1024
23 %tmp = load i32* %tmp2
27 define i32 @f4(i32 %base) {
29 %tmp1 = sub i32 %base, 128
30 %tmp2 = inttoptr i32 %tmp1 to i32*
31 %tmp3 = load i32* %tmp2
35 define i32 @f5(i32 %base, i32 %offset) {
37 %tmp1 = add i32 %base, %offset
38 %tmp2 = inttoptr i32 %tmp1 to i32*
39 %tmp3 = load i32* %tmp2
43 define i32 @f6(i32 %base, i32 %offset) {
45 %tmp1 = shl i32 %offset, 2
46 %tmp2 = add i32 %base, %tmp1
47 %tmp3 = inttoptr i32 %tmp2 to i32*
48 %tmp4 = load i32* %tmp3
52 define i32 @f7(i32 %base, i32 %offset) {
54 %tmp1 = lshr i32 %offset, 2
55 %tmp2 = add i32 %base, %tmp1
56 %tmp3 = inttoptr i32 %tmp2 to i32*
57 %tmp4 = load i32* %tmp3