Files
OpenCL-CTS/test_conformance/spirv_new/spirv_asm/spv1.4/ptrops.spvasm64
Ben Ashbaugh bc5f6cdfe8 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.
2024-10-29 09:36:26 -07:00

40 lines
1.5 KiB
Plaintext

; 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