forked from OSchip/llvm-project
Analysis: Return early for UndefValue in computeKnownBits
There is no benefit in looking through assumptions on UndefValue to guess known bits. Return early to avoid walking their use-lists, and assert that all instances of ConstantData are handled here for similar reasons (UndefValue was the only integer/pointer holdout). llvm-svn: 282337
This commit is contained in:
parent
752ad8fde7
commit
b1b208a1f5
|
@ -1502,6 +1502,14 @@ void computeKnownBits(const Value *V, APInt &KnownZero, APInt &KnownOne,
|
|||
// Start out not knowing anything.
|
||||
KnownZero.clearAllBits(); KnownOne.clearAllBits();
|
||||
|
||||
// We can't imply anything about undefs.
|
||||
if (isa<UndefValue>(V))
|
||||
return;
|
||||
|
||||
// There's no point in looking through other users of ConstantData for
|
||||
// assumptions. Confirm that we've handled them all.
|
||||
assert(!isa<ConstantData>(V) && "Unhandled constant data!");
|
||||
|
||||
// Limit search depth.
|
||||
// All recursive calls that increase depth must come after this.
|
||||
if (Depth == MaxDepth)
|
||||
|
|
Loading…
Reference in New Issue