mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
9146e8f676
Summary: The port is nearly straightforward. The only complication is related to the analyses handling, since one of the analyses used in this module pass is domtree, which is a function analysis. That requires asking for the results of each function and disallows a single interface for run-on-module pass action. Decided to copy-paste the main body of this pass. Most of its code is requesting analyses anyway, so not that much of a copy-paste. The rest of the code movement is to transform all the implementation helper functions like stripNonValidData into non-member statics. Extended all the related LLVM tests with new-pass-manager use. No failures. Reviewers: sanjoy, anna, reames Reviewed By: anna Subscribers: skatkov, llvm-commits Differential Revision: https://reviews.llvm.org/D41162 llvm-svn: 320796
40 lines
1.2 KiB
LLVM
40 lines
1.2 KiB
LLVM
;; RUN: opt < %s -rewrite-statepoints-for-gc -S | FileCheck %s
|
|
;; RUN: opt < %s -passes=rewrite-statepoints-for-gc -S | FileCheck %s
|
|
|
|
;; This test is to verify that gc_result from a call statepoint
|
|
;; can have preceding phis in its parent basic block. Unlike
|
|
;; invoke statepoint, call statepoint does not terminate the
|
|
;; block, and thus its gc_result is in the same block with the
|
|
;; call statepoint.
|
|
|
|
declare i32 @foo()
|
|
|
|
define i32 @test1(i1 %cond, i32 %a) gc "statepoint-example" {
|
|
entry:
|
|
br i1 %cond, label %branch1, label %branch2
|
|
|
|
branch1:
|
|
%b = add i32 %a, 1
|
|
br label %merge
|
|
|
|
branch2:
|
|
br label %merge
|
|
|
|
merge:
|
|
;; CHECK: %phi = phi i32 [ %a, %branch2 ], [ %b, %branch1 ]
|
|
;; CHECK-NEXT: [[TOKEN:%[^ ]+]] = call token (i64, i32, i32 ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_i32f(i64 2882400000, i32 0, i32 ()* @foo, i32 0, i32 0, i32 0, i32 0
|
|
;; CHECK-NEXT: call i32 @llvm.experimental.gc.result.i32(token [[TOKEN]])
|
|
%phi = phi i32 [ %a, %branch2 ], [ %b, %branch1 ]
|
|
%ret = call i32 @foo()
|
|
ret i32 %ret
|
|
}
|
|
|
|
; This function is inlined when inserting a poll.
|
|
declare void @do_safepoint()
|
|
define void @gc.safepoint_poll() {
|
|
; CHECK-LABEL: gc.safepoint_poll
|
|
entry:
|
|
call void @do_safepoint()
|
|
ret void
|
|
}
|