mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Expand 64-bit CTLZ nodes if target architecture does not support it. Add test
case for DCLO and DCLZ. llvm-svn: 147022
This commit is contained in:
parent
6454b0ffc1
commit
0af792d12b
@ -222,8 +222,10 @@ MipsTargetLowering(MipsTargetMachine &TM)
|
||||
setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
|
||||
}
|
||||
|
||||
if (!Subtarget->hasBitCount())
|
||||
if (!Subtarget->hasBitCount()) {
|
||||
setOperationAction(ISD::CTLZ, MVT::i32, Expand);
|
||||
setOperationAction(ISD::CTLZ, MVT::i64, Expand);
|
||||
}
|
||||
|
||||
if (!Subtarget->hasSwap()) {
|
||||
setOperationAction(ISD::BSWAP, MVT::i32, Expand);
|
||||
|
19
test/CodeGen/Mips/mips64countleading.ll
Normal file
19
test/CodeGen/Mips/mips64countleading.ll
Normal file
@ -0,0 +1,19 @@
|
||||
; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s
|
||||
|
||||
define i64 @t1(i64 %X) nounwind readnone {
|
||||
entry:
|
||||
; CHECK: dclz
|
||||
%tmp1 = tail call i64 @llvm.ctlz.i64(i64 %X, i1 true)
|
||||
ret i64 %tmp1
|
||||
}
|
||||
|
||||
declare i64 @llvm.ctlz.i64(i64, i1) nounwind readnone
|
||||
|
||||
define i64 @t3(i64 %X) nounwind readnone {
|
||||
entry:
|
||||
; CHECK: dclo
|
||||
%neg = xor i64 %X, -1
|
||||
%tmp1 = tail call i64 @llvm.ctlz.i64(i64 %neg, i1 true)
|
||||
ret i64 %tmp1
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user