brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 0aa4a67 Raw
24 lines · plain
1; RUN: opt -safepoint-ir-verifier-print-only -verify-safepoint-ir -S %s 2>&1 | FileCheck %s2 3; This test checks that if a value is used immediately after a4; safepoint without using the relocated value that the verifier5; catches this.6 7%jObject = type { [8 x i8] }8 9; Function Attrs: nounwind10define ptr addrspace(1) @test(ptr addrspace(1) %arg) gc "statepoint-example" {11bci_0:12  %safepoint_token3 = tail call token (i64, i32, ptr, i32, i32, ...) @llvm.experimental.gc.statepoint.p0(i64 0, i32 0, ptr elementtype(double (double)) undef, i32 1, i32 0, double undef, i32 0, i32 0) ["gc-live"(ptr addrspace(1) %arg)]13  %arg2.relocated4 = call coldcc ptr addrspace(1) @llvm.experimental.gc.relocate.p1(token %safepoint_token3, i32 0, i32 0)14  ret ptr addrspace(1) %arg15; CHECK: Illegal use of unrelocated value found!16; CHECK-NEXT: Def: ptr addrspace(1) %arg17; CHECK-NEXT: Use:   ret ptr addrspace(1) %arg18}19 20; Function Attrs: nounwind21declare ptr addrspace(1) @llvm.experimental.gc.relocate.p1(token, i32, i32) #322 23declare token @llvm.experimental.gc.statepoint.p0(i64, i32, ptr, i32, i32, ...)24