David Goodwin | 4ff863c | 2009-06-30 01:02:20 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {cmp\\W*r\[0-9\],\\W*r\[0-9\]$} | count 2 |
| 2 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {cmp\\W*r\[0-9\],\\W*r\[0-9\],\\W*lsl\\W*#5$} | count 1 |
| 3 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {cmp\\W*r\[0-9\],\\W*r\[0-9\],\\W*lsr\\W*#6$} | count 1 |
| 4 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {cmp\\W*r\[0-9\],\\W*r\[0-9\],\\W*asr\\W*#7$} | count 1 |
| 5 | ; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {cmp\\W*r\[0-9\],\\W*r\[0-9\],\\W*ror\\W*#8$} | count 1 |
David Goodwin | 2634e98 | 2009-06-26 18:10:30 +0000 | [diff] [blame] | 6 | |
| 7 | define i1 @f1(i32 %a, i32 %b) { |
| 8 | %tmp = icmp ne i32 %a, %b |
| 9 | ret i1 %tmp |
| 10 | } |
| 11 | |
| 12 | define i1 @f2(i32 %a, i32 %b) { |
| 13 | %tmp = icmp eq i32 %a, %b |
| 14 | ret i1 %tmp |
| 15 | } |
David Goodwin | 4ff863c | 2009-06-30 01:02:20 +0000 | [diff] [blame^] | 16 | |
| 17 | define i1 @f6(i32 %a, i32 %b) { |
| 18 | %tmp = shl i32 %b, 5 |
| 19 | %tmp1 = icmp eq i32 %tmp, %a |
| 20 | ret i1 %tmp1 |
| 21 | } |
| 22 | |
| 23 | define i1 @f7(i32 %a, i32 %b) { |
| 24 | %tmp = lshr i32 %b, 6 |
| 25 | %tmp1 = icmp ne i32 %tmp, %a |
| 26 | ret i1 %tmp1 |
| 27 | } |
| 28 | |
| 29 | define i1 @f8(i32 %a, i32 %b) { |
| 30 | %tmp = ashr i32 %b, 7 |
| 31 | %tmp1 = icmp eq i32 %a, %tmp |
| 32 | ret i1 %tmp1 |
| 33 | } |
| 34 | |
| 35 | define i1 @f9(i32 %a, i32 %b) { |
| 36 | %l8 = shl i32 %a, 24 |
| 37 | %r8 = lshr i32 %a, 8 |
| 38 | %tmp = or i32 %l8, %r8 |
| 39 | %tmp1 = icmp ne i32 %a, %tmp |
| 40 | ret i1 %tmp1 |
| 41 | } |