mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
ValueTracking: Fix bugs in isKnownToBeAPowerOfTwo
(add nsw x, (and x, y)) isn't a power of two if x is zero, it's zero (add nsw x, (xor x, y)) isn't a power of two if y has bits set that aren't set in x git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185954 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -861,16 +861,14 @@ bool llvm::isKnownToBeAPowerOfTwo(Value *V, bool OrZero, unsigned Depth) {
|
||||
// Adding a power of two to the same power of two is a power of two or
|
||||
// zero.
|
||||
if (BinaryOperator *XBO = dyn_cast<BinaryOperator>(X))
|
||||
if (XBO->getOpcode() == Instruction::And ||
|
||||
XBO->getOpcode() == Instruction::Xor)
|
||||
if (XBO->getOpcode() == Instruction::And)
|
||||
if (XBO->getOperand(0) == Y || XBO->getOperand(1) == Y)
|
||||
if (isKnownToBeAPowerOfTwo(Y, /*OrZero*/true, Depth))
|
||||
if (isKnownToBeAPowerOfTwo(Y, OrZero, Depth))
|
||||
return true;
|
||||
if (BinaryOperator *YBO = dyn_cast<BinaryOperator>(Y))
|
||||
if (YBO->getOpcode() == Instruction::And ||
|
||||
YBO->getOpcode() == Instruction::Xor)
|
||||
if (YBO->getOpcode() == Instruction::And)
|
||||
if (YBO->getOperand(0) == X || YBO->getOperand(1) == X)
|
||||
if (isKnownToBeAPowerOfTwo(X, /*OrZero*/true, Depth))
|
||||
if (isKnownToBeAPowerOfTwo(X, OrZero, Depth))
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user