mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-10 06:00:30 +00:00
d80c13bfed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140860 91177308-0d34-0410-b5e6-96231b3b80d8
65 lines
1.2 KiB
LLVM
65 lines
1.2 KiB
LLVM
; RUN: llc -march=mips64el -mcpu=mips64r1 < %s | FileCheck %s
|
|
|
|
define i64 @f0(i64 %a0, i64 %a1) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsllv
|
|
%shl = shl i64 %a0, %a1
|
|
ret i64 %shl
|
|
}
|
|
|
|
define i64 @f1(i64 %a0, i64 %a1) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsrav
|
|
%shr = ashr i64 %a0, %a1
|
|
ret i64 %shr
|
|
}
|
|
|
|
define i64 @f2(i64 %a0, i64 %a1) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsrlv
|
|
%shr = lshr i64 %a0, %a1
|
|
ret i64 %shr
|
|
}
|
|
|
|
define i64 @f3(i64 %a0) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsll ${{[0-9]+}}, ${{[0-9]+}}, 10
|
|
%shl = shl i64 %a0, 10
|
|
ret i64 %shl
|
|
}
|
|
|
|
define i64 @f4(i64 %a0) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsra ${{[0-9]+}}, ${{[0-9]+}}, 10
|
|
%shr = ashr i64 %a0, 10
|
|
ret i64 %shr
|
|
}
|
|
|
|
define i64 @f5(i64 %a0) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsrl ${{[0-9]+}}, ${{[0-9]+}}, 10
|
|
%shr = lshr i64 %a0, 10
|
|
ret i64 %shr
|
|
}
|
|
|
|
define i64 @f6(i64 %a0) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsll32 ${{[0-9]+}}, ${{[0-9]+}}, 8
|
|
%shl = shl i64 %a0, 40
|
|
ret i64 %shl
|
|
}
|
|
|
|
define i64 @f7(i64 %a0) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsra32 ${{[0-9]+}}, ${{[0-9]+}}, 8
|
|
%shr = ashr i64 %a0, 40
|
|
ret i64 %shr
|
|
}
|
|
|
|
define i64 @f8(i64 %a0) nounwind readnone {
|
|
entry:
|
|
; CHECK: dsrl32 ${{[0-9]+}}, ${{[0-9]+}}, 8
|
|
%shr = lshr i64 %a0, 40
|
|
ret i64 %shr
|
|
}
|