]> granicus.if.org Git - llvm/commit
[Loads/SROA] Remove blatantly incorrect code and fix a bug revealed in the process
authorPhilip Reames <listmail@philipreames.com>
Tue, 27 Aug 2019 19:34:43 +0000 (19:34 +0000)
committerPhilip Reames <listmail@philipreames.com>
Tue, 27 Aug 2019 19:34:43 +0000 (19:34 +0000)
commitb8c132d2b1d6de73ffb6223a96c8bd02d58bf1f8
tree86fcd05971b933d4d13785614c85f1dd9e57431e
parentde3ff3a5b1f71a6cc139f480edc58553775420b2
[Loads/SROA] Remove blatantly incorrect code and fix a bug revealed in the process

The code we had isSafeToLoadUnconditionally was blatantly wrong. This function takes a "Size" argument which is supposed to describe the span loaded from. Instead, the code use the size of the pointer passed (which may be unrelated!) and only checks that span. For any Size > LoadSize, this can and does lead to miscompiles.

Worse, the generic code just a few lines above correctly handles the cases which *are* valid. So, let's delete said code.

Removing this code revealed two issues:
1) As noted by jdoerfert the removed code incorrectly handled external globals.  The test update in SROA is to stop testing incorrect behavior.
2) SROA was confusing bytes and bits, but this wasn't obvious as the Size parameter was being essentially ignored anyway.  Fixed.

Differential Revision: https://reviews.llvm.org/D66778

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370102 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Analysis/Loads.cpp
lib/Transforms/Scalar/SROA.cpp
test/Transforms/SROA/addrspacecast.ll