blob: a220fc96c109c00515685b65365625d7177825cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
; 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()
define void @test1() gc "statepoint-example" {
; CHECK-LABEL: test1
entry:
; CHECK-LABEL: entry
; CHECK: statepoint
br label %loop
loop:
; CHECK-LABEL: loop
; CHECK: @llvm.experimental.gc.statepoint.p0f_isVoidf(void ()* @foo
; 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
}
|