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
64 lines
2.0 KiB
LLVM
64 lines
2.0 KiB
LLVM
; RUN: opt -rewrite-statepoints-for-gc -S < %s | FileCheck %s
|
|
; RUN: opt -passes=rewrite-statepoints-for-gc -S < %s | FileCheck %s
|
|
|
|
; Test to make sure we destroy LCSSA's single entry phi nodes before
|
|
; running liveness
|
|
|
|
declare void @consume(...) "gc-leaf-function"
|
|
|
|
define void @test6(i64 addrspace(1)* %obj) gc "statepoint-example" {
|
|
; CHECK-LABEL: @test6
|
|
entry:
|
|
br label %next
|
|
|
|
next: ; preds = %entry
|
|
; CHECK-LABEL: next:
|
|
; CHECK-NEXT: gc.statepoint
|
|
; CHECK-NEXT: gc.relocate
|
|
; CHECK-NEXT: bitcast
|
|
; CHECK-NEXT: @consume(i64 addrspace(1)* %obj.relocated.casted)
|
|
; CHECK-NEXT: @consume(i64 addrspace(1)* %obj.relocated.casted)
|
|
; Need to delete unreachable gc.statepoint call
|
|
%obj2 = phi i64 addrspace(1)* [ %obj, %entry ]
|
|
call void @foo() [ "deopt"() ]
|
|
call void (...) @consume(i64 addrspace(1)* %obj2)
|
|
call void (...) @consume(i64 addrspace(1)* %obj)
|
|
ret void
|
|
}
|
|
|
|
define void @test7() gc "statepoint-example" {
|
|
; CHECK-LABEL: test7
|
|
; CHECK-NOT: gc.statepoint
|
|
; Need to delete unreachable gc.statepoint invoke - tested seperately given
|
|
; a correct implementation could only remove the instructions, not the block
|
|
ret void
|
|
|
|
unreached: ; preds = %unreached
|
|
%obj = phi i64 addrspace(1)* [ null, %unreached ]
|
|
call void @foo() [ "deopt"() ]
|
|
call void (...) @consume(i64 addrspace(1)* %obj)
|
|
br label %unreached
|
|
}
|
|
|
|
define void @test8() gc "statepoint-example" personality i32 ()* undef {
|
|
; CHECK-LABEL: test8
|
|
; CHECK-NOT: gc.statepoint
|
|
; Bound the last check-not
|
|
ret void
|
|
|
|
unreached: ; No predecessors!
|
|
invoke void @foo() [ "deopt"() ]
|
|
; CHECK-LABEL: @foo
|
|
to label %normal_return unwind label %exceptional_return
|
|
|
|
normal_return: ; preds = %unreached
|
|
ret void
|
|
|
|
exceptional_return: ; preds = %unreached
|
|
%landing_pad4 = landingpad { i8*, i32 }
|
|
cleanup
|
|
ret void
|
|
}
|
|
|
|
declare void @foo()
|