summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/fast-isel-shifter.ll
blob: 04cb41920605a5f57169cfb7eac29acbe5b74c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s --check-prefix=ELF64

define i32 @shl() nounwind {
entry:
; ELF64: shl
; ELF64: slw
  %shl = shl i32 -1, 2
  ret i32 %shl
}

define i32 @shl_reg(i32 %src1, i32 %src2) nounwind {
entry:
; ELF64: shl_reg
; ELF64: slw
  %shl = shl i32 %src1, %src2
  ret i32 %shl
}

define i32 @lshr() nounwind {
entry:
; ELF64: lshr
; ELF64: srw
  %lshr = lshr i32 -1, 2
  ret i32 %lshr
}

define i32 @lshr_reg(i32 %src1, i32 %src2) nounwind {
entry:
; ELF64: lshr_reg
; ELF64: srw
  %lshr = lshr i32 %src1, %src2
  ret i32 %lshr
}

define i32 @ashr() nounwind {
entry:
; ELF64: ashr
; ELF64: srawi
  %ashr = ashr i32 -1, 2
  ret i32 %ashr
}

define i32 @ashr_reg(i32 %src1, i32 %src2) nounwind {
entry:
; ELF64: ashr_reg
; ELF64: sraw
  %ashr = ashr i32 %src1, %src2
  ret i32 %ashr
}