[Attributor] Really use the executed-context
authorJohannes Doerfert <johannes@jdoerfert.de>
Wed, 30 Oct 2019 22:21:53 +0000 (17:21 -0500)
committerJohannes Doerfert <johannes@jdoerfert.de>
Thu, 31 Oct 2019 20:09:45 +0000 (15:09 -0500)
commiteb4f41dfe58fc88794e1e227935a6f972f1a50e4
tree528a7ac76796d6bb6ec7a9464822fe3978faedaf
parent70ad617dd645a38abe501d2929172bc842914132
[Attributor] Really use the executed-context

Before we did not follow casts and geps when we looked at the users of a
pointer in the pointers must-be-executed-context. This caused us to fail
to determine if it was accessed for sure. With this change we follow
such users now.

The above extension exposed problems in getKnownNonNullAndDerefBytesForUse
which did not always check what the base pointer was. We also did not
handle negative offsets as conservative as we have to without explicit
loop handling. Finally, we should not derive a huge number if we access
a pointer that was traversed backwards first.

The problems exposed by this functional change are already tested in the
existing test cases as is the functional change.

Differential Revision: https://reviews.llvm.org/D69647
llvm/lib/Transforms/IPO/Attributor.cpp
llvm/test/Transforms/FunctionAttrs/arg_nocapture.ll
llvm/test/Transforms/FunctionAttrs/dereferenceable.ll
llvm/test/Transforms/FunctionAttrs/nocapture.ll
llvm/test/Transforms/FunctionAttrs/nosync.ll
llvm/test/Transforms/InferFunctionAttrs/dereferenceable.ll