mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 00:09:02 +00:00
add SPIR-V 1.4 testing for OpPtrEqual, OpPtrNotEqual, OpPtrDiff (#2054)
This PR adds targeted testing for the SPIR-V 1.4 instructions OpPtrEqual, OpPtrNotEqual, and OpPtrDiff.
This commit is contained in:
34
test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm32
Normal file
34
test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm32
Normal file
@@ -0,0 +1,34 @@
|
||||
; SPIR-V
|
||||
; Version: 1.0
|
||||
; Generator: Khronos LLVM/SPIR-V Translator; 14
|
||||
; Bound: 61
|
||||
; Schema: 0
|
||||
OpCapability Addresses
|
||||
OpCapability Kernel
|
||||
OpMemoryModel Physical32 OpenCL
|
||||
OpEntryPoint Kernel %kernel "ptrops_test"
|
||||
%uint = OpTypeInt 32 0
|
||||
%uint_0 = OpConstant %uint 0
|
||||
%uint_1 = OpConstant %uint 1
|
||||
%uint_2 = OpConstant %uint 2
|
||||
%void = OpTypeVoid
|
||||
%ptr_uint = OpTypePointer CrossWorkgroup %uint
|
||||
%kernel_sig = OpTypeFunction %void %ptr_uint %ptr_uint
|
||||
%bool = OpTypeBool
|
||||
%kernel = OpFunction %void None %kernel_sig
|
||||
%dst = OpFunctionParameter %ptr_uint
|
||||
%tst = OpFunctionParameter %ptr_uint
|
||||
%entry = OpLabel
|
||||
%cmp = OpPtrEqual %bool %dst %tst
|
||||
%bool0 = OpSelect %uint %cmp %uint_1 %uint_0
|
||||
%dst0 = OpInBoundsPtrAccessChain %ptr_uint %dst %uint_0
|
||||
OpStore %dst0 %bool0 Aligned 4
|
||||
%cmp1 = OpPtrNotEqual %bool %dst %tst
|
||||
%bool1 = OpSelect %uint %cmp1 %uint_1 %uint_0
|
||||
%dst1 = OpInBoundsPtrAccessChain %ptr_uint %dst %uint_1
|
||||
OpStore %dst1 %bool1 Aligned 4
|
||||
%delta = OpPtrDiff %uint %dst %tst
|
||||
%dst2 = OpInBoundsPtrAccessChain %ptr_uint %dst %uint_2
|
||||
OpStore %dst2 %delta Aligned 4
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
39
test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm64
Normal file
39
test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm64
Normal file
@@ -0,0 +1,39 @@
|
||||
; SPIR-V
|
||||
; Version: 1.0
|
||||
; Generator: Khronos LLVM/SPIR-V Translator; 14
|
||||
; Bound: 61
|
||||
; Schema: 0
|
||||
OpCapability Addresses
|
||||
OpCapability Kernel
|
||||
OpCapability Int64
|
||||
OpMemoryModel Physical64 OpenCL
|
||||
OpEntryPoint Kernel %kernel "ptrops_test"
|
||||
%uint = OpTypeInt 32 0
|
||||
%ulong = OpTypeInt 64 0
|
||||
%uint_0 = OpConstant %uint 0
|
||||
%uint_1 = OpConstant %uint 1
|
||||
%ulong_0 = OpConstant %ulong 0
|
||||
%ulong_1 = OpConstant %ulong 1
|
||||
%ulong_2 = OpConstant %ulong 2
|
||||
%void = OpTypeVoid
|
||||
%ptr_uint = OpTypePointer CrossWorkgroup %uint
|
||||
%kernel_sig = OpTypeFunction %void %ptr_uint %ptr_uint
|
||||
%bool = OpTypeBool
|
||||
%kernel = OpFunction %void None %kernel_sig
|
||||
%dst = OpFunctionParameter %ptr_uint
|
||||
%tst = OpFunctionParameter %ptr_uint
|
||||
%entry = OpLabel
|
||||
%cmp = OpPtrEqual %bool %dst %tst
|
||||
%bool0 = OpSelect %uint %cmp %uint_1 %uint_0
|
||||
%dst0 = OpInBoundsPtrAccessChain %ptr_uint %dst %ulong_0
|
||||
OpStore %dst0 %bool0 Aligned 4
|
||||
%cmp1 = OpPtrNotEqual %bool %dst %tst
|
||||
%bool1 = OpSelect %uint %cmp1 %uint_1 %uint_0
|
||||
%dst1 = OpInBoundsPtrAccessChain %ptr_uint %dst %ulong_1
|
||||
OpStore %dst1 %bool1 Aligned 4
|
||||
%delta = OpPtrDiff %ulong %dst %tst
|
||||
%deltaui = OpUConvert %uint %delta
|
||||
%dst2 = OpInBoundsPtrAccessChain %ptr_uint %dst %ulong_2
|
||||
OpStore %dst2 %deltaui Aligned 4
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
Reference in New Issue
Block a user