diff options
author | Sanjay Patel <spatel@rotateright.com> | 2017-08-14 15:13:46 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2017-08-14 15:13:46 +0000 |
commit | a1067d9baecd36de4d71b8da95e52f8ef7a00996 (patch) | |
tree | 901e6defa0b46daa8abf5fd23562a2de45ddab0f /llvm/lib/Transforms | |
parent | b305d26b57623a54ddd0ce3f534f416b67c9abed (diff) | |
download | bcm5719-llvm-a1067d9baecd36de4d71b8da95e52f8ef7a00996.tar.gz bcm5719-llvm-a1067d9baecd36de4d71b8da95e52f8ef7a00996.zip |
[BDCE] reduce scope of an assert (PR34179)
The assert was added with r310779 and is usually correct,
but as the test shows, not always. The 'volatile' on the
load is needed to expose the faulty path because without
it, DemandedBits would return that the load is just dead
rather than not demanded, and so we wouldn't hit the
bogus assert.
Also, since the lambda is just a single-line now, get rid
of it and inline the DB.isAllOnesValue() calls.
This should fix (prevent execution of a faulty assert):
https://bugs.llvm.org/show_bug.cgi?id=34179
llvm-svn: 310842
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/BDCE.cpp | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/llvm/lib/Transforms/Scalar/BDCE.cpp b/llvm/lib/Transforms/Scalar/BDCE.cpp index 5677ac91d6f..2e5618686ec 100644 --- a/llvm/lib/Transforms/Scalar/BDCE.cpp +++ b/llvm/lib/Transforms/Scalar/BDCE.cpp @@ -40,20 +40,15 @@ STATISTIC(NumSimplified, "Number of instructions trivialized (dead bits)"); /// instruction may need to be cleared of assumptions that can no longer be /// guaranteed correct. static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { - // Any value we're trivializing should be an integer value, and moreover, - // any conversion between an integer value and a non-integer value should - // demand all of the bits. This will cause us to stop looking down the - // use/def chain, so we should only see integer-typed instructions here. - auto isExternallyVisible = [](Instruction *I, DemandedBits &DB) { - assert(I->getType()->isIntegerTy() && "Trivializing a non-integer value?"); - return DB.getDemandedBits(I).isAllOnesValue(); - }; + assert(I->getType()->isIntegerTy() && "Trivializing a non-integer value?"); // Initialize the worklist with eligible direct users. SmallVector<Instruction *, 16> WorkList; for (User *JU : I->users()) { + // If all bits of a user are demanded, then we know that nothing below that + // in the def-use chain needs to be changed. auto *J = dyn_cast<Instruction>(JU); - if (J && !isExternallyVisible(J, DB)) + if (J && !DB.getDemandedBits(J).isAllOnesValue()) WorkList.push_back(J); } @@ -72,8 +67,10 @@ static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { Visited.insert(J); for (User *KU : J->users()) { + // If all bits of a user are demanded, then we know that nothing below + // that in the def-use chain needs to be changed. auto *K = dyn_cast<Instruction>(KU); - if (K && !Visited.count(K) && !isExternallyVisible(K, DB)) + if (K && !Visited.count(K) && !DB.getDemandedBits(K).isAllOnesValue()) WorkList.push_back(K); } } |