[llvm] [SROA] Allow load-only promotion with read-only captures (PR #130735)

David Green via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 13:04:36 PDT 2025


================
@@ -406,4 +406,36 @@ define i32 @simple_byval() {
   ret i32 %l1
 }
 
+declare void @callee_address_only_capture(ptr readonly captures(address) %p)
+
+define i32 @address_only_capture() {
+; CHECK-LABEL: @address_only_capture(
+; CHECK-NEXT:    [[A:%.*]] = alloca i32, align 4
+; CHECK-NEXT:    store i32 0, ptr [[A]], align 4
+; CHECK-NEXT:    call void @callee_address_only_capture(ptr [[A]])
+; CHECK-NEXT:    ret i32 0
+;
+  %a = alloca i32
+  store i32 0, ptr %a
+  call void @callee_address_only_capture(ptr %a)
+  %l1 = load i32, ptr %a
+  ret i32 %l1
+}
+
+declare void @callee_read_only_capture(ptr readonly captures(address, read_provenance) %p)
----------------
davemgreen wrote:

Is it worth adding a test with `captures(provenance)`?

https://github.com/llvm/llvm-project/pull/130735


More information about the llvm-commits mailing list