mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
Fix lowering of cttz to work with signed values
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21874 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86f3e0c24e
commit
a801172e50
@ -251,13 +251,12 @@ void DefaultIntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Intrinsic::cttz: {
|
case Intrinsic::cttz: {
|
||||||
|
// cttz(x) -> ctpop(~X & (X-1))
|
||||||
Value *Src = CI->getOperand(1);
|
Value *Src = CI->getOperand(1);
|
||||||
Value *NotSrc = BinaryOperator::createNot(Src, Src->getName()+".not", CI);
|
Value *NotSrc = BinaryOperator::createNot(Src, Src->getName()+".not", CI);
|
||||||
Src = BinaryOperator::createAnd(NotSrc,
|
Value *SrcM1 = ConstantInt::get(Src->getType(), 1);
|
||||||
BinaryOperator::createSub(Src,
|
SrcM1 = BinaryOperator::createSub(Src, SrcM1, "", CI);
|
||||||
ConstantUInt::get(CI->getOperand(0)->getType(), 1), "", CI));
|
Src = LowerCTPOP(BinaryOperator::createAnd(NotSrc, SrcM1, "", CI), CI);
|
||||||
|
|
||||||
Src = LowerCTPOP(Src, CI);
|
|
||||||
CI->replaceAllUsesWith(Src);
|
CI->replaceAllUsesWith(Src);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user