[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / PowerPC / fast-isel-shifter.ll
blob04cb41920605a5f57169cfb7eac29acbe5b74c10
1 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s --check-prefix=ELF64
3 define i32 @shl() nounwind {
4 entry:
5 ; ELF64: shl
6 ; ELF64: slw
7   %shl = shl i32 -1, 2
8   ret i32 %shl
11 define i32 @shl_reg(i32 %src1, i32 %src2) nounwind {
12 entry:
13 ; ELF64: shl_reg
14 ; ELF64: slw
15   %shl = shl i32 %src1, %src2
16   ret i32 %shl
19 define i32 @lshr() nounwind {
20 entry:
21 ; ELF64: lshr
22 ; ELF64: srw
23   %lshr = lshr i32 -1, 2
24   ret i32 %lshr
27 define i32 @lshr_reg(i32 %src1, i32 %src2) nounwind {
28 entry:
29 ; ELF64: lshr_reg
30 ; ELF64: srw
31   %lshr = lshr i32 %src1, %src2
32   ret i32 %lshr
35 define i32 @ashr() nounwind {
36 entry:
37 ; ELF64: ashr
38 ; ELF64: srawi
39   %ashr = ashr i32 -1, 2
40   ret i32 %ashr
43 define i32 @ashr_reg(i32 %src1, i32 %src2) nounwind {
44 entry:
45 ; ELF64: ashr_reg
46 ; ELF64: sraw
47   %ashr = ashr i32 %src1, %src2
48   ret i32 %ashr