-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
3 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 changes: 39 additions & 0 deletions
39
test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters