[PATCH] D154054: [CaptureTracking] Don't consider comparison of inbounds GEP with nonnull non-capturing
Nikita Popov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 6 07:49:04 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf3d0613d852a: [CaptureTracking] Don't consider comparison of inbounds GEP with nonnull non… (authored by nikic).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D154054/new/
https://reviews.llvm.org/D154054
Files:
llvm/lib/Analysis/CaptureTracking.cpp
llvm/test/Transforms/FunctionAttrs/nocapture.ll
Index: llvm/test/Transforms/FunctionAttrs/nocapture.ll
===================================================================
--- llvm/test/Transforms/FunctionAttrs/nocapture.ll
+++ llvm/test/Transforms/FunctionAttrs/nocapture.ll
@@ -488,7 +488,7 @@
define i1 @nocaptureInboundsGEPICmp(ptr %x) {
; CHECK-LABEL: define i1 @nocaptureInboundsGEPICmp
-; CHECK-SAME: (ptr nocapture readnone [[X:%.*]]) #[[ATTR0]] {
+; CHECK-SAME: (ptr readnone [[X:%.*]]) #[[ATTR0]] {
; CHECK-NEXT: [[TMP1:%.*]] = getelementptr inbounds i32, ptr [[X]], i32 5
; CHECK-NEXT: [[TMP2:%.*]] = icmp eq ptr [[TMP1]], null
; CHECK-NEXT: ret i1 [[TMP2]]
@@ -500,7 +500,7 @@
define i1 @nocaptureInboundsGEPICmpRev(ptr %x) {
; CHECK-LABEL: define i1 @nocaptureInboundsGEPICmpRev
-; CHECK-SAME: (ptr nocapture readnone [[X:%.*]]) #[[ATTR0]] {
+; CHECK-SAME: (ptr readnone [[X:%.*]]) #[[ATTR0]] {
; CHECK-NEXT: [[TMP1:%.*]] = getelementptr inbounds i32, ptr [[X]], i32 5
; CHECK-NEXT: [[TMP2:%.*]] = icmp eq ptr null, [[TMP1]]
; CHECK-NEXT: ret i1 [[TMP2]]
Index: llvm/lib/Analysis/CaptureTracking.cpp
===================================================================
--- llvm/lib/Analysis/CaptureTracking.cpp
+++ llvm/lib/Analysis/CaptureTracking.cpp
@@ -58,17 +58,16 @@
bool CaptureTracker::shouldExplore(const Use *U) { return true; }
bool CaptureTracker::isDereferenceableOrNull(Value *O, const DataLayout &DL) {
- // An inbounds GEP can either be a valid pointer (pointing into
- // or to the end of an allocation), or be null in the default
- // address space. So for an inbounds GEP there is no way to let
- // the pointer escape using clever GEP hacking because doing so
- // would make the pointer point outside of the allocated object
- // and thus make the GEP result a poison value. Similarly, other
- // dereferenceable pointers cannot be manipulated without producing
- // poison.
- if (auto *GEP = dyn_cast<GetElementPtrInst>(O))
- if (GEP->isInBounds())
- return true;
+ // We want comparisons to null pointers to not be considered capturing,
+ // but need to guard against cases like gep(p, -ptrtoint(p2)) == null,
+ // which are equivalent to p == p2 and would capture the pointer.
+ //
+ // A dereferenceable pointer is a case where this is known to be safe,
+ // because the pointer resulting from such a construction would not be
+ // dereferenceable.
+ //
+ // It is not sufficient to check for inbounds GEP here, because GEP with
+ // zero offset is always inbounds.
bool CanBeNull, CanBeFreed;
return O->getPointerDereferenceableBytes(DL, CanBeNull, CanBeFreed);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154054.537730.patch
Type: text/x-patch
Size: 2623 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230706/c6a58943/attachment.bin>
More information about the llvm-commits
mailing list