[PATCH] D115302: [AA] Teach AA about convergent instrinsics that affect loads/stores.
Artem Belevich via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 8 11:57:04 PST 2021
tra updated this revision to Diff 392857.
tra edited the summary of this revision.
tra added a comment.
Moved the check to GlobalModRef and switched to checking for nosync
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115302/new/
https://reviews.llvm.org/D115302
Files:
llvm/lib/Analysis/GlobalsModRef.cpp
llvm/test/Analysis/GlobalsModRef/intrinsic_convergent.ll
Index: llvm/test/Analysis/GlobalsModRef/intrinsic_convergent.ll
===================================================================
--- /dev/null
+++ llvm/test/Analysis/GlobalsModRef/intrinsic_convergent.ll
@@ -0,0 +1,33 @@
+; RUN: opt -globals-aa -gvn -S < %s | FileCheck %s
+target datalayout = "e-i64:64-i128:128-v16:16-v32:32-n16:32:64"
+target triple = "nvptx64-nvidia-cuda"
+
+ at s = internal local_unnamed_addr addrspace(3) global i32 undef, align 4
+
+; CHECK-LABEL: @bar_sync
+; CHECK: store
+; CHECK: tail call void @llvm.nvvm.bar.sync(i32 0)
+; CHECK: load
+define dso_local i32 @bar_sync(i32 %0) local_unnamed_addr {
+ store i32 %0, i32* addrspacecast (i32 addrspace(3)* @s to i32*), align 4
+ tail call void @llvm.nvvm.bar.sync(i32 0)
+ %2 = load i32, i32* addrspacecast (i32 addrspace(3)* @s to i32*), align 4
+ ret i32 %2
+}
+
+declare void @llvm.nvvm.bar.sync(i32) #0
+
+; CHECK-LABEL: @barrier0
+; CHECK: store
+; CHECK: tail call void @llvm.nvvm.barrier0()
+; CHECK: load
+define dso_local i32 @barrier0(i32 %0) local_unnamed_addr {
+ store i32 %0, i32* addrspacecast (i32 addrspace(3)* @s to i32*), align 4
+ tail call void @llvm.nvvm.barrier0()
+ %2 = load i32, i32* addrspacecast (i32 addrspace(3)* @s to i32*), align 4
+ ret i32 %2
+}
+
+declare void @llvm.nvvm.barrier0() #0
+
+attributes #0 = { convergent nounwind }
Index: llvm/lib/Analysis/GlobalsModRef.cpp
===================================================================
--- llvm/lib/Analysis/GlobalsModRef.cpp
+++ llvm/lib/Analysis/GlobalsModRef.cpp
@@ -913,6 +913,10 @@
ModRefInfo ConservativeResult =
Call->onlyReadsMemory() ? ModRefInfo::Ref : ModRefInfo::ModRef;
+ if (Function *F = Call->getCalledFunction())
+ if (!F->hasNoSync())
+ return ConservativeResult;
+
// Iterate through all the arguments to the called function. If any argument
// is based on GV, return the conservative result.
for (auto &A : Call->args()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115302.392857.patch
Type: text/x-patch
Size: 1946 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211208/5ac49f3a/attachment.bin>
More information about the llvm-commits
mailing list