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

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 01:52:55 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)
----------------
nikic wrote:

Done. We don't really expect to see provenance without address in practice, but it's not illegal, so it makes sense to test it...

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


More information about the llvm-commits mailing list