Use cl_uint in some SPIR-V tests to avoid UB (#2159)

The following tests under `spirv_new`:
* `op_branch_conditional`
* `op_phi`
* `op_selection_merge`

were using randomly generated `cl_int` values, and storing the
difference between them as a `cl_int`. If one of the generated values is
negative and large enough, while the other is positive and large enough,
the difference then becomes a larger value that cannot be represented
using `cl_int`.

Switch the tests to use `cl_uint` instead, and update the relevant
spvasm{32,64} files to use `OpULessThan` instead of `OpSLessThan`.

Signed-off-by: Ahmed Hesham <ahmed.hesham@arm.com>
This commit is contained in:
Ahmed Hesham
2024-11-26 17:29:27 +00:00
committed by GitHub
parent 96e3d7e669
commit 5d85fb3e3b
19 changed files with 84 additions and 82 deletions

View File

@@ -39,7 +39,7 @@
%21 = OpLoad %uint %20 Aligned 4
%22 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %19
%23 = OpLoad %uint %22 Aligned 4
%24 = OpSLessThan %bool %21 %23
%24 = OpULessThan %bool %21 %23
OpBranchConditional %24 %25 %26
%25 = OpLabel
%27 = OpISub %uint %23 %21

View File

@@ -45,7 +45,7 @@
%26 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %23
%27 = OpLoad %uint %26 Aligned 4
OpStore %19 %uint_0
%28 = OpSLessThan %bool %25 %27
%28 = OpULessThan %bool %25 %27
OpBranchConditional %28 %29 %30
%29 = OpLabel
%31 = OpISub %uint %27 %25

View File

@@ -39,7 +39,7 @@
%21 = OpLoad %uint %20 Aligned 4
%22 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %19
%23 = OpLoad %uint %22 Aligned 4
%24 = OpSLessThan %bool %21 %23
%24 = OpULessThan %bool %21 %23
OpBranchConditional %24 %25 %26 4 6
%25 = OpLabel
%27 = OpISub %uint %23 %21

View File

@@ -45,7 +45,7 @@
%26 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %23
%27 = OpLoad %uint %26 Aligned 4
OpStore %19 %uint_0
%28 = OpSLessThan %bool %25 %27
%28 = OpULessThan %bool %25 %27
OpBranchConditional %28 %29 %30 4 6
%29 = OpLabel
%31 = OpISub %uint %27 %25

View File

@@ -36,7 +36,7 @@
%18 = OpLoad %uint %17 Aligned 4
%19 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %16
%20 = OpLoad %uint %19 Aligned 4
%21 = OpSLessThan %bool %18 %20
%21 = OpULessThan %bool %18 %20
OpBranchConditional %21 %22 %23
%22 = OpLabel
%24 = OpISub %uint %20 %18

View File

@@ -41,7 +41,7 @@
%22 = OpLoad %uint %21 Aligned 4
%23 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %20
%24 = OpLoad %uint %23 Aligned 4
%25 = OpSLessThan %bool %22 %24
%25 = OpULessThan %bool %22 %24
OpBranchConditional %25 %26 %27
%26 = OpLabel
%28 = OpISub %uint %24 %22

View File

@@ -23,6 +23,7 @@
%bool = OpTypeBool
%void = OpTypeVoid
%uint_0 = OpConstant %uint 0
%uint_65535 = OpConstant %uint 65535
%_ptr_CrossWorkgroup_uint = OpTypePointer CrossWorkgroup %uint
%14 = OpTypeFunction %void %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint
%gl_GlobalInvocationID = OpVariable %_ptr_Input_v3uint Input
@@ -37,10 +38,10 @@
%19 = OpLoad %uint %18 Aligned 4
%20 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %17
%21 = OpLoad %uint %20 Aligned 4
%22 = OpSLessThan %bool %19 %21
%22 = OpULessThan %bool %19 %21
OpBranchConditional %22 %23 %24
%23 = OpLabel
%25 = OpSLessThan %bool %19 %uint_0
%25 = OpULessThan %bool %19 %uint_65535
OpBranchConditional %25 %26 %27
%26 = OpLabel
%28 = OpISub %uint %uint_0 %19

View File

@@ -26,6 +26,7 @@
%void = OpTypeVoid
%uint = OpTypeInt 32 0
%uint_0 = OpConstant %uint 0
%uint_65535 = OpConstant %uint 65535
%_ptr_CrossWorkgroup_uint = OpTypePointer CrossWorkgroup %uint
%16 = OpTypeFunction %void %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint
%gl_GlobalInvocationID = OpVariable %_ptr_Input_v3ulong Input
@@ -42,10 +43,10 @@
%23 = OpLoad %uint %22 Aligned 4
%24 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %21
%25 = OpLoad %uint %24 Aligned 4
%26 = OpSLessThan %bool %23 %25
%26 = OpULessThan %bool %23 %25
OpBranchConditional %26 %27 %28
%27 = OpLabel
%29 = OpSLessThan %bool %23 %uint_0
%29 = OpULessThan %bool %23 %uint_65535
OpBranchConditional %29 %30 %31
%30 = OpLabel
%32 = OpISub %uint %uint_0 %23

View File

@@ -23,6 +23,7 @@
%bool = OpTypeBool
%void = OpTypeVoid
%uint_0 = OpConstant %uint 0
%uint_65535 = OpConstant %uint 65535
%_ptr_CrossWorkgroup_uint = OpTypePointer CrossWorkgroup %uint
%14 = OpTypeFunction %void %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint
%gl_GlobalInvocationID = OpVariable %_ptr_Input_v3uint Input
@@ -37,10 +38,10 @@
%19 = OpLoad %uint %18 Aligned 4
%20 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %17
%21 = OpLoad %uint %20 Aligned 4
%22 = OpSLessThan %bool %19 %21
%22 = OpULessThan %bool %19 %21
OpBranchConditional %22 %23 %24
%23 = OpLabel
%25 = OpSLessThan %bool %19 %uint_0
%25 = OpULessThan %bool %19 %uint_65535
OpBranchConditional %25 %26 %27
%26 = OpLabel
%28 = OpISub %uint %uint_0 %19
@@ -49,7 +50,7 @@
%30 = OpISub %uint %19 %uint_0
OpBranch %29
%24 = OpLabel
%31 = OpSLessThan %bool %21 %uint_0
%31 = OpULessThan %bool %21 %uint_65535
OpBranchConditional %31 %32 %33
%32 = OpLabel
%34 = OpISub %uint %uint_0 %21

View File

@@ -26,6 +26,7 @@
%void = OpTypeVoid
%uint = OpTypeInt 32 0
%uint_0 = OpConstant %uint 0
%uint_65535 = OpConstant %uint 65535
%_ptr_CrossWorkgroup_uint = OpTypePointer CrossWorkgroup %uint
%16 = OpTypeFunction %void %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint %_ptr_CrossWorkgroup_uint
%gl_GlobalInvocationID = OpVariable %_ptr_Input_v3ulong Input
@@ -42,10 +43,10 @@
%23 = OpLoad %uint %22 Aligned 4
%24 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %21
%25 = OpLoad %uint %24 Aligned 4
%26 = OpSLessThan %bool %23 %25
%26 = OpULessThan %bool %23 %25
OpBranchConditional %26 %27 %28
%27 = OpLabel
%29 = OpSLessThan %bool %23 %uint_0
%29 = OpULessThan %bool %23 %uint_65535
OpBranchConditional %29 %30 %31
%30 = OpLabel
%32 = OpISub %uint %uint_0 %23
@@ -54,7 +55,7 @@
%34 = OpISub %uint %23 %uint_0
OpBranch %33
%28 = OpLabel
%35 = OpSLessThan %bool %25 %uint_0
%35 = OpULessThan %bool %25 %uint_65535
OpBranchConditional %35 %36 %37
%36 = OpLabel
%38 = OpISub %uint %uint_0 %25

View File

@@ -39,7 +39,7 @@
%21 = OpLoad %uint %20 Aligned 4
%22 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %19
%23 = OpLoad %uint %22 Aligned 4
%24 = OpSLessThan %bool %21 %23
%24 = OpULessThan %bool %21 %23
OpSelectionMerge %25 DontFlatten
OpBranchConditional %24 %26 %27
%26 = OpLabel

View File

@@ -45,7 +45,7 @@
%26 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %23
%27 = OpLoad %uint %26 Aligned 4
OpStore %19 %uint_0
%28 = OpSLessThan %bool %25 %27
%28 = OpULessThan %bool %25 %27
OpSelectionMerge %29 DontFlatten
OpBranchConditional %28 %30 %31
%30 = OpLabel

View File

@@ -39,7 +39,7 @@
%21 = OpLoad %uint %20 Aligned 4
%22 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %19
%23 = OpLoad %uint %22 Aligned 4
%24 = OpSLessThan %bool %21 %23
%24 = OpULessThan %bool %21 %23
OpSelectionMerge %25 Flatten
OpBranchConditional %24 %26 %27
%26 = OpLabel

View File

@@ -45,7 +45,7 @@
%26 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %23
%27 = OpLoad %uint %26 Aligned 4
OpStore %19 %uint_0
%28 = OpSLessThan %bool %25 %27
%28 = OpULessThan %bool %25 %27
OpSelectionMerge %29 Flatten
OpBranchConditional %28 %30 %31
%30 = OpLabel

View File

@@ -39,7 +39,7 @@
%21 = OpLoad %uint %20 Aligned 4
%22 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %19
%23 = OpLoad %uint %22 Aligned 4
%24 = OpSLessThan %bool %21 %23
%24 = OpULessThan %bool %21 %23
OpSelectionMerge %25 None
OpBranchConditional %24 %26 %27
%26 = OpLabel

View File

@@ -45,7 +45,7 @@
%26 = OpInBoundsPtrAccessChain %_ptr_CrossWorkgroup_uint %rhs %23
%27 = OpLoad %uint %26 Aligned 4
OpStore %19 %uint_0
%28 = OpSLessThan %bool %25 %27
%28 = OpULessThan %bool %25 %27
OpSelectionMerge %29 None
OpBranchConditional %28 %30 %31
%30 = OpLabel