2015-02-10 06:10:15 +08:00
|
|
|
; If there's a call in the loop which dominates the backedge, we
|
|
|
|
; don't need a safepoint poll (since the callee must contain a
|
|
|
|
; poll test).
|
|
|
|
;; RUN: opt %s -place-safepoints -S | FileCheck %s
|
|
|
|
|
|
|
|
declare void @foo()
|
|
|
|
|
2015-02-21 08:09:09 +08:00
|
|
|
define void @test1() gc "statepoint-example" {
|
2015-02-10 06:10:15 +08:00
|
|
|
; CHECK-LABEL: test1
|
|
|
|
|
|
|
|
entry:
|
|
|
|
; CHECK-LABEL: entry
|
|
|
|
; CHECK: statepoint
|
|
|
|
br label %loop
|
|
|
|
|
|
|
|
loop:
|
|
|
|
; CHECK-LABEL: loop
|
2015-05-13 07:52:24 +08:00
|
|
|
; CHECK: @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 2882400000, i32 0, void ()* @foo
|
2015-02-10 06:10:15 +08:00
|
|
|
; CHECK-NOT: statepoint
|
|
|
|
call void @foo()
|
|
|
|
br label %loop
|
|
|
|
}
|
|
|
|
|
|
|
|
; 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
|
|
|
|
}
|