mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
d3f3d5f0d7
These tests the two optimizations for backedge insertion currently implemented and the split backedge flag which is currently off by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228617 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
680 B
LLVM
32 lines
680 B
LLVM
; 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() {
|
|
; 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
|
|
}
|