mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
c60ad3e1fe
Summary: This patch changes gc.statepoint intrinsic's return type to token type instead of i32 type. Using token types could prevent LLVM to merge different gc.statepoint nodes into PHI nodes and cause further problems with gc relocations. The patch also changes the way on how gc.relocate and gc.result look for their corresponding gc.statepoint on unwind path. The current implementation uses the selector value extracted from a { i8*, i32 } landingpad as a hook to find the gc.statepoint, while the patch directly uses a token type landingpad (http://reviews.llvm.org/D15405) to find the gc.statepoint. Reviewers: sanjoy, JosephTremoulet, pgavlin, igor-laevsky, mjacob Subscribers: reames, mjacob, sanjoy, llvm-commits Differential Revision: http://reviews.llvm.org/D15662 llvm-svn: 256443
53 lines
2.3 KiB
LLVM
53 lines
2.3 KiB
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
; These tests check the optimizations specific to
|
|
; pointers being relocated at a statepoint.
|
|
|
|
|
|
declare void @func()
|
|
|
|
define i1 @test_negative(i32 addrspace(1)* %p) gc "statepoint-example" {
|
|
entry:
|
|
%safepoint_token = tail call token (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @func, i32 0, i32 0, i32 0, i32 0, i32 addrspace(1)* %p)
|
|
%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7, i32 7)
|
|
%cmp = icmp eq i32 addrspace(1)* %pnew, null
|
|
ret i1 %cmp
|
|
; CHECK-LABEL: test_negative
|
|
; CHECK: %pnew = call i32 addrspace(1)*
|
|
; CHECK: ret i1 %cmp
|
|
}
|
|
|
|
define i1 @test_nonnull(i32 addrspace(1)* nonnull %p) gc "statepoint-example" {
|
|
entry:
|
|
%safepoint_token = tail call token (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @func, i32 0, i32 0, i32 0, i32 0, i32 addrspace(1)* %p)
|
|
%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7, i32 7)
|
|
%cmp = icmp eq i32 addrspace(1)* %pnew, null
|
|
ret i1 %cmp
|
|
; CHECK-LABEL: test_nonnull
|
|
; CHECK: ret i1 false
|
|
}
|
|
|
|
define i1 @test_null() gc "statepoint-example" {
|
|
entry:
|
|
%safepoint_token = tail call token (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @func, i32 0, i32 0, i32 0, i32 0, i32 addrspace(1)* null)
|
|
%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7, i32 7)
|
|
%cmp = icmp eq i32 addrspace(1)* %pnew, null
|
|
ret i1 %cmp
|
|
; CHECK-LABEL: test_null
|
|
; CHECK-NOT: %pnew
|
|
; CHECK: ret i1 true
|
|
}
|
|
|
|
define i1 @test_undef() gc "statepoint-example" {
|
|
entry:
|
|
%safepoint_token = tail call token (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @func, i32 0, i32 0, i32 0, i32 0, i32 addrspace(1)* undef)
|
|
%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7, i32 7)
|
|
%cmp = icmp eq i32 addrspace(1)* %pnew, null
|
|
ret i1 %cmp
|
|
; CHECK-LABEL: test_undef
|
|
; CHECK-NOT: %pnew
|
|
; CHECK: ret i1 undef
|
|
}
|
|
|
|
declare token @llvm.experimental.gc.statepoint.p0f_isVoidf(i64, i32, void ()*, i32, i32, ...)
|
|
declare i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token, i32, i32) #3
|