tint: polyfill remainder to handle negative operands

Bug: tint:1802
Change-Id: Ie9baa045feda08523e5ca4f5ce94b6db7d4477e5
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/119100
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
Antonio Maiorano
2023-02-10 15:01:02 +00:00
committed by Dawn LUCI CQ
parent 78583a14e6
commit ec20758675
103 changed files with 1660 additions and 554 deletions

View File

@@ -1,5 +1,10 @@
int3 tint_mod(int3 lhs, int3 rhs) {
return (lhs % (((rhs == (0).xxx) | ((lhs == (-2147483648).xxx) & (rhs == (-1).xxx))) ? (1).xxx : rhs));
const int3 rhs_or_one = (((rhs == (0).xxx) | ((lhs == (-2147483648).xxx) & (rhs == (-1).xxx))) ? (1).xxx : rhs);
if (any(((uint3((lhs | rhs_or_one)) & (2147483648u).xxx) != (0u).xxx))) {
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
} else {
return (lhs % rhs_or_one);
}
}
[numthreads(1, 1, 1)]

View File

@@ -1,5 +1,10 @@
int3 tint_mod(int3 lhs, int3 rhs) {
return (lhs % (((rhs == (0).xxx) | ((lhs == (-2147483648).xxx) & (rhs == (-1).xxx))) ? (1).xxx : rhs));
const int3 rhs_or_one = (((rhs == (0).xxx) | ((lhs == (-2147483648).xxx) & (rhs == (-1).xxx))) ? (1).xxx : rhs);
if (any(((uint3((lhs | rhs_or_one)) & (2147483648u).xxx) != (0u).xxx))) {
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
} else {
return (lhs % rhs_or_one);
}
}
[numthreads(1, 1, 1)]

View File

@@ -1,7 +1,12 @@
#version 310 es
ivec3 tint_mod(ivec3 lhs, ivec3 rhs) {
return (lhs % mix(rhs, ivec3(1), bvec3(uvec3(equal(rhs, ivec3(0))) | uvec3(bvec3(uvec3(equal(lhs, ivec3(-2147483648))) & uvec3(equal(rhs, ivec3(-1))))))));
ivec3 rhs_or_one = mix(rhs, ivec3(1), bvec3(uvec3(equal(rhs, ivec3(0))) | uvec3(bvec3(uvec3(equal(lhs, ivec3(-2147483648))) & uvec3(equal(rhs, ivec3(-1)))))));
if (any(notEqual((uvec3((lhs | rhs_or_one)) & uvec3(2147483648u)), uvec3(0u)))) {
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
} else {
return (lhs % rhs_or_one);
}
}
void f() {

View File

@@ -2,7 +2,12 @@
using namespace metal;
int3 tint_mod(int3 lhs, int3 rhs) {
return (lhs % select(rhs, int3(1), ((rhs == int3(0)) | ((lhs == int3((-2147483647 - 1))) & (rhs == int3(-1))))));
int3 const rhs_or_one = select(rhs, int3(1), ((rhs == int3(0)) | ((lhs == int3((-2147483647 - 1))) & (rhs == int3(-1)))));
if (any(((uint3((lhs | rhs_or_one)) & uint3(2147483648u)) != uint3(0u)))) {
return as_type<int3>((as_type<uint3>(lhs) - as_type<uint3>(as_type<int3>((as_type<uint3>((lhs / rhs_or_one)) * as_type<uint3>(rhs_or_one))))));
} else {
return (lhs % rhs_or_one);
}
}
kernel void f() {

View File

@@ -1,7 +1,7 @@
; SPIR-V
; Version: 1.3
; Generator: Google Tint Compiler; 0
; Bound: 36
; Bound: 59
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
@@ -10,43 +10,76 @@
OpName %tint_mod "tint_mod"
OpName %lhs "lhs"
OpName %rhs "rhs"
OpName %tint_return_flag "tint_return_flag"
OpName %tint_return_value "tint_return_value"
OpName %f "f"
%int = OpTypeInt 32 1
%v3int = OpTypeVector %int 3
%1 = OpTypeFunction %v3int %v3int %v3int
%9 = OpConstantNull %v3int
%bool = OpTypeBool
%_ptr_Function_bool = OpTypePointer Function %bool
%11 = OpConstantNull %bool
%_ptr_Function_v3int = OpTypePointer Function %v3int
%14 = OpConstantNull %v3int
%v3bool = OpTypeVector %bool 3
%int_n2147483648 = OpConstant %int -2147483648
%14 = OpConstantComposite %v3int %int_n2147483648 %int_n2147483648 %int_n2147483648
%19 = OpConstantComposite %v3int %int_n2147483648 %int_n2147483648 %int_n2147483648
%int_n1 = OpConstant %int -1
%17 = OpConstantComposite %v3int %int_n1 %int_n1 %int_n1
%22 = OpConstantComposite %v3int %int_n1 %int_n1 %int_n1
%int_1 = OpConstant %int 1
%22 = OpConstantComposite %v3int %int_1 %int_1 %int_1
%27 = OpConstantComposite %v3int %int_1 %int_1 %int_1
%uint = OpTypeInt 32 0
%v3uint = OpTypeVector %uint 3
%uint_2147483648 = OpConstant %uint 2147483648
%34 = OpConstantComposite %v3uint %uint_2147483648 %uint_2147483648 %uint_2147483648
%36 = OpConstantNull %v3uint
%true = OpConstantTrue %bool
%void = OpTypeVoid
%24 = OpTypeFunction %void
%47 = OpTypeFunction %void
%int_2 = OpConstant %int 2
%int_3 = OpConstant %int 3
%30 = OpConstantComposite %v3int %int_1 %int_2 %int_3
%53 = OpConstantComposite %v3int %int_1 %int_2 %int_3
%int_4 = OpConstant %int 4
%int_5 = OpConstant %int 5
%int_6 = OpConstant %int 6
%34 = OpConstantComposite %v3int %int_4 %int_5 %int_6
%57 = OpConstantComposite %v3int %int_4 %int_5 %int_6
%tint_mod = OpFunction %v3int None %1
%lhs = OpFunctionParameter %v3int
%rhs = OpFunctionParameter %v3int
%7 = OpLabel
%10 = OpIEqual %v3bool %rhs %9
%15 = OpIEqual %v3bool %lhs %14
%18 = OpIEqual %v3bool %rhs %17
%19 = OpLogicalAnd %v3bool %15 %18
%20 = OpLogicalOr %v3bool %10 %19
%8 = OpSelect %v3int %20 %22 %rhs
%23 = OpSRem %v3int %lhs %8
OpReturnValue %23
%tint_return_flag = OpVariable %_ptr_Function_bool Function %11
%tint_return_value = OpVariable %_ptr_Function_v3int Function %14
%16 = OpIEqual %v3bool %rhs %14
%20 = OpIEqual %v3bool %lhs %19
%23 = OpIEqual %v3bool %rhs %22
%24 = OpLogicalAnd %v3bool %20 %23
%25 = OpLogicalOr %v3bool %16 %24
%15 = OpSelect %v3int %25 %27 %rhs
%32 = OpBitwiseOr %v3int %lhs %15
%29 = OpBitcast %v3uint %32
%35 = OpBitwiseAnd %v3uint %29 %34
%37 = OpINotEqual %v3bool %35 %36
%28 = OpAny %bool %37
OpSelectionMerge %38 None
OpBranchConditional %28 %39 %40
%39 = OpLabel
OpStore %tint_return_flag %true
%42 = OpSDiv %v3int %lhs %15
%43 = OpIMul %v3int %42 %15
%44 = OpISub %v3int %lhs %43
OpStore %tint_return_value %44
OpBranch %38
%40 = OpLabel
OpStore %tint_return_flag %true
%45 = OpSRem %v3int %lhs %15
OpStore %tint_return_value %45
OpBranch %38
%38 = OpLabel
%46 = OpLoad %v3int %tint_return_value
OpReturnValue %46
OpFunctionEnd
%f = OpFunction %void None %24
%27 = OpLabel
%35 = OpFunctionCall %v3int %tint_mod %30 %34
%f = OpFunction %void None %47
%50 = OpLabel
%58 = OpFunctionCall %v3int %tint_mod %53 %57
OpReturn
OpFunctionEnd