mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
955318d58d
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256443 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
954 B
LLVM
25 lines
954 B
LLVM
; RUN: opt < %s -simplifycfg -S | FileCheck %s
|
|
; Test that statepoint intrinsic is marked with Throwable attribute and it is
|
|
; not optimized into call
|
|
|
|
declare i64 addrspace(1)* @gc_call()
|
|
declare token @llvm.experimental.gc.statepoint.p0f_p1i64f(i64, i32, i64 addrspace(1)* ()*, i32, i32, ...)
|
|
declare i32* @fake_personality_function()
|
|
|
|
define i32 @test() gc "statepoint-example" personality i32* ()* @fake_personality_function {
|
|
; CHECK-LABEL: test
|
|
entry:
|
|
; CHECK-LABEL: entry:
|
|
; CHECK-NEXT: %sp = invoke token (i64, i32, i64 addrspace(1)* ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_p1i64f
|
|
%sp = invoke token (i64, i32, i64 addrspace(1)* ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_p1i64f(i64 0, i32 0, i64 addrspace(1)* ()* @gc_call, i32 0, i32 0, i32 0, i32 0)
|
|
to label %normal unwind label %exception
|
|
|
|
exception:
|
|
%lpad = landingpad { i8*, i32 }
|
|
cleanup
|
|
ret i32 0
|
|
|
|
normal:
|
|
ret i32 1
|
|
}
|