llvm-project/llvm/test/CodeGen/PowerPC/mergeable-string-pool-pr92991.ll
Nikita Popov 9f85bc834b
[PPCMergeStringPool] Only replace constant once (#92996)
In #88846 I changed this code to use RAUW to perform the replacement
instead of manual updates -- but kept the outer loop, which means we try
to perform RAUW once per user. However, some of the users might be freed
by the RAUW operation, resulting in use-after-free.

The case where this happens is constant users where the replacement
might result in the destruction of the original constant.

Fixes https://github.com/llvm/llvm-project/issues/92991.
2024-05-27 08:54:11 +02:00

21 lines
791 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
@g = private constant [4 x i32] [i32 122, i32 67, i32 35, i32 56]
@g2 = private constant [1 x i64] [i64 1], align 8
define void @test(ptr %p, ptr %p2) {
; CHECK-LABEL: test:
; CHECK: # %bb.0:
; CHECK-NEXT: addis 5, 2, .L__ModuleStringPool@toc@ha
; CHECK-NEXT: addi 5, 5, .L__ModuleStringPool@toc@l
; CHECK-NEXT: addi 6, 5, 12
; CHECK-NEXT: std 6, 0(3)
; CHECK-NEXT: addi 3, 5, 16
; CHECK-NEXT: std 3, 0(4)
; CHECK-NEXT: blr
store ptr getelementptr inbounds ([4 x i32], ptr @g, i64 0, i64 1), ptr %p
store ptr getelementptr inbounds ([4 x i32], ptr @g, i64 0, i64 2), ptr %p2
ret void
}