forked from OSchip/llvm-project
[Statepoints] Add test cases around vectors and stablize test
Unlike my comment in 257022 said, it turns out we do handle constant vectors in the statepoint lowering, but only because SelectionDAG doesn't actually produce constants for them. Add a couple of tests which show this working. Also, add a triple to the same test file to hopefully fix a failing bot. It turns out we do han llvm-svn: 257025
This commit is contained in:
parent
08b9462540
commit
afdbcc6a84
|
@ -461,7 +461,9 @@ static void lowerIncomingStatepointValue(SDValue Incoming,
|
|||
// If the original value was a constant, make sure it gets recorded as
|
||||
// such in the stackmap. This is required so that the consumer can
|
||||
// parse any internal format to the deopt state. It also handles null
|
||||
// pointers and other constant pointers in GC states
|
||||
// pointers and other constant pointers in GC states. Note the constant
|
||||
// vectors do not appear to actually hit this path and that anything larger
|
||||
// than an i64 value (not type!) will fail asserts here.
|
||||
pushStackMapConstant(Ops, Builder, C->getSExtValue());
|
||||
} else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Incoming)) {
|
||||
// This handles allocas as arguments to the statepoint (this is only
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
; RUN: llc -debug-only=stackmaps < %s | FileCheck %s
|
||||
|
||||
target triple = "x86_64-pc-linux-gnu"
|
||||
|
||||
; Can we lower a single vector?
|
||||
define <2 x i8 addrspace(1)*> @test(<2 x i8 addrspace(1)*> %obj) gc "statepoint-example" {
|
||||
entry:
|
||||
|
@ -72,6 +74,35 @@ merge: ; preds = %untaken, %taken
|
|||
ret <2 x i64 addrspace(1)*> %obj.relocated.casted
|
||||
}
|
||||
|
||||
; Can we handle vector constants? At the moment, we don't appear to actually
|
||||
; get selection dag nodes for these.
|
||||
define <2 x i8 addrspace(1)*> @test4() gc "statepoint-example" {
|
||||
entry:
|
||||
; CHECK-LABEL: @test4
|
||||
; CHECK: subq $24, %rsp
|
||||
; CHECK: xorps %xmm0, %xmm0
|
||||
; CHECK: movaps %xmm0, (%rsp)
|
||||
; CHECK: callq do_safepoint
|
||||
; CHECK: movaps (%rsp), %xmm0
|
||||
; CHECK: addq $24, %rsp
|
||||
%safepoint_token = call token (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @do_safepoint, i32 0, i32 0, i32 0, i32 0, <2 x i8 addrspace(1)*> zeroinitializer)
|
||||
%obj.relocated = call coldcc <2 x i8 addrspace(1)*> @llvm.experimental.gc.relocate.v2p1i8(token %safepoint_token, i32 7, i32 7) ; (%obj, %obj)
|
||||
ret <2 x i8 addrspace(1)*> %obj.relocated
|
||||
}
|
||||
|
||||
; Check that we can lower a constant typed as i128 correctly. Note that the
|
||||
; actual value is representable in 64 bits. We don't have a representation
|
||||
; of larger than 64 bit constant in the StackMap format.
|
||||
define void @test5() gc "statepoint-example" {
|
||||
entry:
|
||||
; CHECK-LABEL: @test5
|
||||
; CHECK: push
|
||||
; CHECK: callq do_safepoint
|
||||
; CHECK: pop
|
||||
%safepoint_token = call token (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @do_safepoint, i32 0, i32 0, i32 0, i32 1, i128 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: __LLVM_StackMaps:
|
||||
|
||||
; CHECK: .Ltmp1-test
|
||||
|
|
Loading…
Reference in New Issue