Changes to support making the shift instructions be true BinaryOperators.
[oota-llvm.git] / test / CodeGen / PowerPC / rotl.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep or && 
2 ; RUN: llvm-as < %s | llc -march=ppc32 | grep rlwnm  | wc -l | grep 2 &&
3 ; RUN: llvm-as < %s | llc -march=ppc32 | grep rlwinm | wc -l | grep 2
4
5 define i32 @rotlw(i32 %x, i32 %sh) {
6 entry:
7         %tmp.7 = sub i32 32, %sh                ; <i32> [#uses=1]
8         %tmp.10 = lshr i32 %x, %tmp.7           ; <i32> [#uses=2]
9         %tmp.4 = shl i32 %x, %sh                ; <i32> [#uses=1]
10         %tmp.12 = or i32 %tmp.10, %tmp.4                ; <i32> [#uses=1]
11         ret i32 %tmp.12
12 }
13
14 define i32 @rotrw(i32 %x, i32 %sh) {
15 entry:
16         %tmp.3 = trunc i32 %sh to i8            ; <i8> [#uses=1]
17         %tmp.4 = lshr i32 %x, %sh               ; <i32> [#uses=2]
18         %tmp.7 = sub i32 32, %sh                ; <i32> [#uses=1]
19         %tmp.10 = shl i32 %x, %tmp.7            ; <i32> [#uses=1]
20         %tmp.12 = or i32 %tmp.4, %tmp.10                ; <i32> [#uses=1]
21         ret i32 %tmp.12
22 }
23
24 define i32 @rotlwi(i32 %x) {
25 entry:
26         %tmp.7 = lshr i32 %x, 27                ; <i32> [#uses=2]
27         %tmp.3 = shl i32 %x, 5          ; <i32> [#uses=1]
28         %tmp.9 = or i32 %tmp.3, %tmp.7          ; <i32> [#uses=1]
29         ret i32 %tmp.9
30 }
31
32 define i32 @rotrwi(i32 %x) {
33 entry:
34         %tmp.3 = lshr i32 %x, 5         ; <i32> [#uses=2]
35         %tmp.7 = shl i32 %x, 27         ; <i32> [#uses=1]
36         %tmp.9 = or i32 %tmp.3, %tmp.7          ; <i32> [#uses=1]
37         ret i32 %tmp.9
38 }