diff --git a/src/tint/intrinsics.def b/src/tint/intrinsics.def index 226144c4d3..0a7fe52059 100644 --- a/src/tint/intrinsics.def +++ b/src/tint/intrinsics.def @@ -531,10 +531,10 @@ fn round(vec) -> vec @const("select_boolvec") fn select(vec, vec, vec) -> vec @const fn sign(T) -> T @const fn sign(vec) -> vec -fn sin(T) -> T -fn sin(vec) -> vec -fn sinh(T) -> T -fn sinh(vec) -> vec +@const fn sin(T) -> T +@const fn sin(vec) -> vec +@const fn sinh(T) -> T +@const fn sinh(vec) -> vec fn smoothstep(T, T, T) -> T fn smoothstep(vec, vec, vec) -> vec fn sqrt(T) -> T diff --git a/src/tint/resolver/const_eval.cc b/src/tint/resolver/const_eval.cc index c34915075a..504c64e54a 100644 --- a/src/tint/resolver/const_eval.cc +++ b/src/tint/resolver/const_eval.cc @@ -2285,6 +2285,32 @@ ConstEval::Result ConstEval::sign(const sem::Type* ty, return TransformElements(builder, ty, transform, args[0]); } +ConstEval::Result ConstEval::sin(const sem::Type* ty, + utils::VectorRef args, + const Source&) { + auto transform = [&](const sem::Constant* c0) { + auto create = [&](auto i) -> ImplResult { + using NumberT = decltype(i); + return CreateElement(builder, c0->Type(), NumberT(std::sin(i.value))); + }; + return Dispatch_fa_f32_f16(create, c0); + }; + return TransformElements(builder, ty, transform, args[0]); +} + +ConstEval::Result ConstEval::sinh(const sem::Type* ty, + utils::VectorRef args, + const Source&) { + auto transform = [&](const sem::Constant* c0) { + auto create = [&](auto i) -> ImplResult { + using NumberT = decltype(i); + return CreateElement(builder, c0->Type(), NumberT(std::sinh(i.value))); + }; + return Dispatch_fa_f32_f16(create, c0); + }; + return TransformElements(builder, ty, transform, args[0]); +} + ConstEval::Result ConstEval::step(const sem::Type* ty, utils::VectorRef args, const Source&) { diff --git a/src/tint/resolver/const_eval.h b/src/tint/resolver/const_eval.h index d1e53cfeee..1d1be15882 100644 --- a/src/tint/resolver/const_eval.h +++ b/src/tint/resolver/const_eval.h @@ -656,6 +656,24 @@ class ConstEval { utils::VectorRef args, const Source& source); + /// sin builtin + /// @param ty the expression type + /// @param args the input arguments + /// @param source the source location of the conversion + /// @return the result value, or null if the value cannot be calculated + Result sin(const sem::Type* ty, + utils::VectorRef args, + const Source& source); + + /// sinh builtin + /// @param ty the expression type + /// @param args the input arguments + /// @param source the source location of the conversion + /// @return the result value, or null if the value cannot be calculated + Result sinh(const sem::Type* ty, + utils::VectorRef args, + const Source& source); + /// step builtin /// @param ty the expression type /// @param args the input arguments diff --git a/src/tint/resolver/const_eval_builtin_test.cc b/src/tint/resolver/const_eval_builtin_test.cc index 491bc2ae28..10e1d6646a 100644 --- a/src/tint/resolver/const_eval_builtin_test.cc +++ b/src/tint/resolver/const_eval_builtin_test.cc @@ -1486,6 +1486,50 @@ INSTANTIATE_TEST_SUITE_P( // SignCases(), SignCases())))); +template +std::vector SinCases() { + std::vector cases = { + C({-T(0)}, -T(0)), + C({T(0)}, T(0)), + C({T(0.75)}, T(0.68163876)).FloatComp(), + C({-T(0.75)}, -T(0.68163876)).FloatComp(), + + // Vector test + C({Vec(T(0), -T(0), T(0.75))}, Vec(T(0), -T(0), T(0.68163876))).FloatComp(), + }; + + return cases; +} +INSTANTIATE_TEST_SUITE_P( // + Sin, + ResolverConstEvalBuiltinTest, + testing::Combine(testing::Values(sem::BuiltinType::kSin), + testing::ValuesIn(Concat(SinCases(), // + SinCases(), + SinCases())))); + +template +std::vector SinhCases() { + std::vector cases = { + C({T(0)}, T(0)), + C({-T(0)}, -T(0)), + C({T(1)}, T(1.1752012)).FloatComp(), + C({T(-1)}, -T(1.1752012)).FloatComp(), + + // Vector tests + C({Vec(T(0), -T(0), T(1))}, Vec(T(0), -T(0), T(1.1752012))).FloatComp(), + }; + + return cases; +} +INSTANTIATE_TEST_SUITE_P( // + Sinh, + ResolverConstEvalBuiltinTest, + testing::Combine(testing::Values(sem::BuiltinType::kSinh), + testing::ValuesIn(Concat(SinhCases(), // + SinhCases(), + SinhCases())))); + template std::vector StepCases() { return { diff --git a/src/tint/resolver/intrinsic_table.inl b/src/tint/resolver/intrinsic_table.inl index 1fe0d9e237..d6df7d58b0 100644 --- a/src/tint/resolver/intrinsic_table.inl +++ b/src/tint/resolver/intrinsic_table.inl @@ -12513,48 +12513,48 @@ constexpr OverloadInfo kOverloads[] = { /* num parameters */ 1, /* num template types */ 1, /* num template numbers */ 0, - /* template types */ &kTemplateTypes[25], + /* template types */ &kTemplateTypes[24], /* template numbers */ &kTemplateNumbers[10], /* parameters */ &kParameters[908], /* return matcher indices */ &kMatcherIndices[1], /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), - /* const eval */ nullptr, + /* const eval */ &ConstEval::sin, }, { /* [349] */ /* num parameters */ 1, /* num template types */ 1, /* num template numbers */ 1, - /* template types */ &kTemplateTypes[25], + /* template types */ &kTemplateTypes[24], /* template numbers */ &kTemplateNumbers[5], /* parameters */ &kParameters[909], /* return matcher indices */ &kMatcherIndices[30], /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), - /* const eval */ nullptr, + /* const eval */ &ConstEval::sin, }, { /* [350] */ /* num parameters */ 1, /* num template types */ 1, /* num template numbers */ 0, - /* template types */ &kTemplateTypes[25], + /* template types */ &kTemplateTypes[24], /* template numbers */ &kTemplateNumbers[10], /* parameters */ &kParameters[910], /* return matcher indices */ &kMatcherIndices[1], /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), - /* const eval */ nullptr, + /* const eval */ &ConstEval::sinh, }, { /* [351] */ /* num parameters */ 1, /* num template types */ 1, /* num template numbers */ 1, - /* template types */ &kTemplateTypes[25], + /* template types */ &kTemplateTypes[24], /* template numbers */ &kTemplateNumbers[5], /* parameters */ &kParameters[911], /* return matcher indices */ &kMatcherIndices[30], /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), - /* const eval */ nullptr, + /* const eval */ &ConstEval::sinh, }, { /* [352] */ @@ -14490,15 +14490,15 @@ constexpr IntrinsicInfo kBuiltins[] = { }, { /* [70] */ - /* fn sin(T) -> T */ - /* fn sin(vec) -> vec */ + /* fn sin(T) -> T */ + /* fn sin(vec) -> vec */ /* num overloads */ 2, /* overloads */ &kOverloads[348], }, { /* [71] */ - /* fn sinh(T) -> T */ - /* fn sinh(vec) -> vec */ + /* fn sinh(T) -> T */ + /* fn sinh(vec) -> vec */ /* num overloads */ 2, /* overloads */ &kOverloads[350], }, diff --git a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.dxc.hlsl index 7593cd8998..399d93486e 100644 --- a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_01f241() { - float3 res = sin((1.0f).xxx); + float3 res = (0.841470957f).xxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.fxc.hlsl index 7593cd8998..399d93486e 100644 --- a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sin_01f241() { - float3 res = sin((1.0f).xxx); + float3 res = (0.841470957f).xxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.glsl index 5fe78bf6f8..56aae66a1b 100644 --- a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sin_01f241() { - vec3 res = sin(vec3(1.0f)); + vec3 res = vec3(0.841470957f); } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sin_01f241() { - vec3 res = sin(vec3(1.0f)); + vec3 res = vec3(0.841470957f); } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sin_01f241() { - vec3 res = sin(vec3(1.0f)); + vec3 res = vec3(0.841470957f); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.msl index 197815bf8f..ac708b61b8 100644 --- a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_01f241() { - float3 res = sin(float3(1.0f)); + float3 res = float3(0.841470957f); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.spvasm index 284f417718..403f714a59 100644 --- a/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/01f241.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 34 +; Bound: 33 ; Schema: 0 OpCapability Shader - %15 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -32,37 +31,37 @@ %void = OpTypeVoid %9 = OpTypeFunction %void %v3float = OpTypeVector %float 3 - %float_1 = OpConstant %float 1 - %17 = OpConstantComposite %v3float %float_1 %float_1 %float_1 +%float_0_841470957 = OpConstant %float 0.841470957 + %15 = OpConstantComposite %v3float %float_0_841470957 %float_0_841470957 %float_0_841470957 %_ptr_Function_v3float = OpTypePointer Function %v3float - %20 = OpConstantNull %v3float - %21 = OpTypeFunction %v4float + %18 = OpConstantNull %v3float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sin_01f241 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v3float Function %20 - %13 = OpExtInst %v3float %15 Sin %17 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v3float Function %18 + OpStore %res %15 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %21 - %23 = OpLabel - %24 = OpFunctionCall %void %sin_01f241 +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sin_01f241 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %26 = OpLabel - %27 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %27 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sin_01f241 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_01f241 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %32 = OpLabel - %33 = OpFunctionCall %void %sin_01f241 + %31 = OpLabel + %32 = OpFunctionCall %void %sin_01f241 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl new file mode 100644 index 0000000000..999bfaa2b3 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(vec<4, fa>) -> vec<4, fa> +fn sin_15b2c6() { + var res = sin(vec4(1.)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_15b2c6(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_15b2c6(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_15b2c6(); +} diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..8b97a9db31 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_15b2c6() { + float4 res = (0.841470957f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_15b2c6(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_15b2c6(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_15b2c6(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..8b97a9db31 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_15b2c6() { + float4 res = (0.841470957f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_15b2c6(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_15b2c6(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_15b2c6(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.glsl new file mode 100644 index 0000000000..2ba8b10dbd --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_15b2c6() { + vec4 res = vec4(0.841470957f); +} + +vec4 vertex_main() { + sin_15b2c6(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_15b2c6() { + vec4 res = vec4(0.841470957f); +} + +void fragment_main() { + sin_15b2c6(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_15b2c6() { + vec4 res = vec4(0.841470957f); +} + +void compute_main() { + sin_15b2c6(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.msl new file mode 100644 index 0000000000..4f69b5b296 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_15b2c6() { + float4 res = float4(0.841470957f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_15b2c6(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_15b2c6(); + return; +} + +kernel void compute_main() { + sin_15b2c6(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.spvasm new file mode 100644 index 0000000000..7e73f04a67 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.spvasm @@ -0,0 +1,65 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 31 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_15b2c6 "sin_15b2c6" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_0_841470957 = OpConstant %float 0.841470957 + %14 = OpConstantComposite %v4float %float_0_841470957 %float_0_841470957 %float_0_841470957 %float_0_841470957 +%_ptr_Function_v4float = OpTypePointer Function %v4float + %17 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_15b2c6 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v4float Function %5 + OpStore %res %14 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %17 + %19 = OpLabel + %20 = OpFunctionCall %void %sin_15b2c6 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %22 = OpLabel + %23 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %23 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %26 = OpLabel + %27 = OpFunctionCall %void %sin_15b2c6 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %29 = OpLabel + %30 = OpFunctionCall %void %sin_15b2c6 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.wgsl new file mode 100644 index 0000000000..813a57962e --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/15b2c6.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sin_15b2c6() { + var res = sin(vec4(1.0)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_15b2c6(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_15b2c6(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_15b2c6(); +} diff --git a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.dxc.hlsl index be59f65eee..7992f1d65f 100644 --- a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_2c903b() { - vector res = sin((float16_t(1.0h)).xxx); + vector res = (float16_t(0.841308594h)).xxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.glsl index 73bd0a8ed4..88e3bc9959 100644 --- a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sin_2c903b() { - f16vec3 res = sin(f16vec3(1.0hf)); + f16vec3 res = f16vec3(0.841308594hf); } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sin_2c903b() { - f16vec3 res = sin(f16vec3(1.0hf)); + f16vec3 res = f16vec3(0.841308594hf); } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sin_2c903b() { - f16vec3 res = sin(f16vec3(1.0hf)); + f16vec3 res = f16vec3(0.841308594hf); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.msl index 908d21b6b4..ee6759b118 100644 --- a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_2c903b() { - half3 res = sin(half3(1.0h)); + half3 res = half3(0.841308594h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.spvasm index 1c2492399e..b33742ada6 100644 --- a/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/2c903b.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 36 +; Bound: 34 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %16 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -37,38 +36,37 @@ %9 = OpTypeFunction %void %half = OpTypeFloat 16 %v3half = OpTypeVector %half 3 -%half_0x1p_0 = OpConstant %half 0x1p+0 - %18 = OpConstantComposite %v3half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 +%half_0x1_aecpn1 = OpConstant %half 0x1.aecp-1 + %16 = OpConstantComposite %v3half %half_0x1_aecpn1 %half_0x1_aecpn1 %half_0x1_aecpn1 %_ptr_Function_v3half = OpTypePointer Function %v3half - %21 = OpConstantNull %v3half - %22 = OpTypeFunction %v4float + %19 = OpConstantNull %v3half + %20 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sin_2c903b = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v3half Function %21 - %13 = OpExtInst %v3half %16 Sin %18 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v3half Function %19 + OpStore %res %16 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %22 - %24 = OpLabel - %25 = OpFunctionCall %void %sin_2c903b +%vertex_main_inner = OpFunction %v4float None %20 + %22 = OpLabel + %23 = OpFunctionCall %void %sin_2c903b OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %28 + %25 = OpLabel + %26 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %26 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %31 = OpLabel - %32 = OpFunctionCall %void %sin_2c903b + %29 = OpLabel + %30 = OpFunctionCall %void %sin_2c903b OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %34 = OpLabel - %35 = OpFunctionCall %void %sin_2c903b + %32 = OpLabel + %33 = OpFunctionCall %void %sin_2c903b OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.dxc.hlsl index 63a1b74221..f203c729fd 100644 --- a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_3cca11() { - vector res = sin((float16_t(1.0h)).xx); + vector res = (float16_t(0.841308594h)).xx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.glsl index 9681333b90..b76cc11676 100644 --- a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sin_3cca11() { - f16vec2 res = sin(f16vec2(1.0hf)); + f16vec2 res = f16vec2(0.841308594hf); } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sin_3cca11() { - f16vec2 res = sin(f16vec2(1.0hf)); + f16vec2 res = f16vec2(0.841308594hf); } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sin_3cca11() { - f16vec2 res = sin(f16vec2(1.0hf)); + f16vec2 res = f16vec2(0.841308594hf); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.msl index 6606e7ee9c..ea8f224d06 100644 --- a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_3cca11() { - half2 res = sin(half2(1.0h)); + half2 res = half2(0.841308594h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.spvasm index 3b56d50e44..d048b86ed2 100644 --- a/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/3cca11.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 36 +; Bound: 34 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %16 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -37,38 +36,37 @@ %9 = OpTypeFunction %void %half = OpTypeFloat 16 %v2half = OpTypeVector %half 2 -%half_0x1p_0 = OpConstant %half 0x1p+0 - %18 = OpConstantComposite %v2half %half_0x1p_0 %half_0x1p_0 +%half_0x1_aecpn1 = OpConstant %half 0x1.aecp-1 + %16 = OpConstantComposite %v2half %half_0x1_aecpn1 %half_0x1_aecpn1 %_ptr_Function_v2half = OpTypePointer Function %v2half - %21 = OpConstantNull %v2half - %22 = OpTypeFunction %v4float + %19 = OpConstantNull %v2half + %20 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sin_3cca11 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v2half Function %21 - %13 = OpExtInst %v2half %16 Sin %18 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v2half Function %19 + OpStore %res %16 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %22 - %24 = OpLabel - %25 = OpFunctionCall %void %sin_3cca11 +%vertex_main_inner = OpFunction %v4float None %20 + %22 = OpLabel + %23 = OpFunctionCall %void %sin_3cca11 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %28 + %25 = OpLabel + %26 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %26 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %31 = OpLabel - %32 = OpFunctionCall %void %sin_3cca11 + %29 = OpLabel + %30 = OpFunctionCall %void %sin_3cca11 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %34 = OpLabel - %35 = OpFunctionCall %void %sin_3cca11 + %32 = OpLabel + %33 = OpFunctionCall %void %sin_3cca11 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.dxc.hlsl index 016064bed6..a047b7ea88 100644 --- a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_4e3979() { - float4 res = sin((1.0f).xxxx); + float4 res = (0.841470957f).xxxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.fxc.hlsl index 016064bed6..a047b7ea88 100644 --- a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sin_4e3979() { - float4 res = sin((1.0f).xxxx); + float4 res = (0.841470957f).xxxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.glsl index f5f794651f..18cdaba8e2 100644 --- a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sin_4e3979() { - vec4 res = sin(vec4(1.0f)); + vec4 res = vec4(0.841470957f); } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sin_4e3979() { - vec4 res = sin(vec4(1.0f)); + vec4 res = vec4(0.841470957f); } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sin_4e3979() { - vec4 res = sin(vec4(1.0f)); + vec4 res = vec4(0.841470957f); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.msl index 08239ea918..49514f3f5d 100644 --- a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_4e3979() { - float4 res = sin(float4(1.0f)); + float4 res = float4(0.841470957f); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.spvasm index a6eb84eb0e..dbb70fbd23 100644 --- a/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/4e3979.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 32 +; Bound: 31 ; Schema: 0 OpCapability Shader - %14 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -31,36 +30,36 @@ %vertex_point_size = OpVariable %_ptr_Output_float Output %8 %void = OpTypeVoid %9 = OpTypeFunction %void - %float_1 = OpConstant %float 1 - %16 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1 +%float_0_841470957 = OpConstant %float 0.841470957 + %14 = OpConstantComposite %v4float %float_0_841470957 %float_0_841470957 %float_0_841470957 %float_0_841470957 %_ptr_Function_v4float = OpTypePointer Function %v4float - %19 = OpTypeFunction %v4float + %17 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sin_4e3979 = OpFunction %void None %9 %12 = OpLabel %res = OpVariable %_ptr_Function_v4float Function %5 - %13 = OpExtInst %v4float %14 Sin %16 - OpStore %res %13 + OpStore %res %14 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %19 - %21 = OpLabel - %22 = OpFunctionCall %void %sin_4e3979 +%vertex_main_inner = OpFunction %v4float None %17 + %19 = OpLabel + %20 = OpFunctionCall %void %sin_4e3979 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %24 = OpLabel - %25 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %25 + %22 = OpLabel + %23 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %23 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %void %sin_4e3979 + %26 = OpLabel + %27 = OpFunctionCall %void %sin_4e3979 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %30 = OpLabel - %31 = OpFunctionCall %void %sin_4e3979 + %29 = OpLabel + %30 = OpFunctionCall %void %sin_4e3979 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.dxc.hlsl index d80cc2cb1b..157c610eae 100644 --- a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_5c0712() { - vector res = sin((float16_t(1.0h)).xxxx); + vector res = (float16_t(0.841308594h)).xxxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.glsl index 51b1238c06..f62212d712 100644 --- a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sin_5c0712() { - f16vec4 res = sin(f16vec4(1.0hf)); + f16vec4 res = f16vec4(0.841308594hf); } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sin_5c0712() { - f16vec4 res = sin(f16vec4(1.0hf)); + f16vec4 res = f16vec4(0.841308594hf); } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sin_5c0712() { - f16vec4 res = sin(f16vec4(1.0hf)); + f16vec4 res = f16vec4(0.841308594hf); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.msl index 2ca221f34f..5ba7f1e648 100644 --- a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_5c0712() { - half4 res = sin(half4(1.0h)); + half4 res = half4(0.841308594h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.spvasm index bb518bd9fb..c0f21df6a1 100644 --- a/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/5c0712.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 36 +; Bound: 34 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %16 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -37,38 +36,37 @@ %9 = OpTypeFunction %void %half = OpTypeFloat 16 %v4half = OpTypeVector %half 4 -%half_0x1p_0 = OpConstant %half 0x1p+0 - %18 = OpConstantComposite %v4half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 +%half_0x1_aecpn1 = OpConstant %half 0x1.aecp-1 + %16 = OpConstantComposite %v4half %half_0x1_aecpn1 %half_0x1_aecpn1 %half_0x1_aecpn1 %half_0x1_aecpn1 %_ptr_Function_v4half = OpTypePointer Function %v4half - %21 = OpConstantNull %v4half - %22 = OpTypeFunction %v4float + %19 = OpConstantNull %v4half + %20 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sin_5c0712 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v4half Function %21 - %13 = OpExtInst %v4half %16 Sin %18 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v4half Function %19 + OpStore %res %16 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %22 - %24 = OpLabel - %25 = OpFunctionCall %void %sin_5c0712 +%vertex_main_inner = OpFunction %v4float None %20 + %22 = OpLabel + %23 = OpFunctionCall %void %sin_5c0712 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %28 + %25 = OpLabel + %26 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %26 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %31 = OpLabel - %32 = OpFunctionCall %void %sin_5c0712 + %29 = OpLabel + %30 = OpFunctionCall %void %sin_5c0712 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %34 = OpLabel - %35 = OpFunctionCall %void %sin_5c0712 + %32 = OpLabel + %33 = OpFunctionCall %void %sin_5c0712 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.dxc.hlsl index 111f1b525e..4309c66507 100644 --- a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_66a59f() { - float16_t res = sin(float16_t(1.0h)); + float16_t res = float16_t(0.841308594h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.glsl index 68bffdd5e7..ab2032d916 100644 --- a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sin_66a59f() { - float16_t res = sin(1.0hf); + float16_t res = 0.841308594hf; } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sin_66a59f() { - float16_t res = sin(1.0hf); + float16_t res = 0.841308594hf; } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sin_66a59f() { - float16_t res = sin(1.0hf); + float16_t res = 0.841308594hf; } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.msl index 9c32a9498c..0eb26eb8e3 100644 --- a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_66a59f() { - half res = sin(1.0h); + half res = 0.841308594h; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.spvasm index 00d3618797..3084682ac0 100644 --- a/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/66a59f.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 34 +; Bound: 32 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %15 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -36,37 +35,36 @@ %void = OpTypeVoid %9 = OpTypeFunction %void %half = OpTypeFloat 16 -%half_0x1p_0 = OpConstant %half 0x1p+0 +%half_0x1_aecpn1 = OpConstant %half 0x1.aecp-1 %_ptr_Function_half = OpTypePointer Function %half - %19 = OpConstantNull %half - %20 = OpTypeFunction %v4float + %17 = OpConstantNull %half + %18 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sin_66a59f = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_half Function %19 - %13 = OpExtInst %half %15 Sin %half_0x1p_0 - OpStore %res %13 + %res = OpVariable %_ptr_Function_half Function %17 + OpStore %res %half_0x1_aecpn1 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %20 - %22 = OpLabel - %23 = OpFunctionCall %void %sin_66a59f +%vertex_main_inner = OpFunction %v4float None %18 + %20 = OpLabel + %21 = OpFunctionCall %void %sin_66a59f OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %25 = OpLabel - %26 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %26 + %23 = OpLabel + %24 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %24 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sin_66a59f + %27 = OpLabel + %28 = OpFunctionCall %void %sin_66a59f OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %32 = OpLabel - %33 = OpFunctionCall %void %sin_66a59f + %30 = OpLabel + %31 = OpFunctionCall %void %sin_66a59f OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl b/test/tint/builtins/gen/literal/sin/67b03c.wgsl new file mode 100644 index 0000000000..7d7a15a31a --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(vec<3, fa>) -> vec<3, fa> +fn sin_67b03c() { + var res = sin(vec3(1.)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_67b03c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_67b03c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_67b03c(); +} diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..90603d178f --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_67b03c() { + float3 res = (0.841470957f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_67b03c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_67b03c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_67b03c(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..90603d178f --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_67b03c() { + float3 res = (0.841470957f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_67b03c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_67b03c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_67b03c(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.glsl new file mode 100644 index 0000000000..aa3e311f89 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_67b03c() { + vec3 res = vec3(0.841470957f); +} + +vec4 vertex_main() { + sin_67b03c(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_67b03c() { + vec3 res = vec3(0.841470957f); +} + +void fragment_main() { + sin_67b03c(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_67b03c() { + vec3 res = vec3(0.841470957f); +} + +void compute_main() { + sin_67b03c(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.msl new file mode 100644 index 0000000000..8b83077dad --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_67b03c() { + float3 res = float3(0.841470957f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_67b03c(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_67b03c(); + return; +} + +kernel void compute_main() { + sin_67b03c(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.spvasm new file mode 100644 index 0000000000..78483fe1bf --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_67b03c "sin_67b03c" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v3float = OpTypeVector %float 3 +%float_0_841470957 = OpConstant %float 0.841470957 + %15 = OpConstantComposite %v3float %float_0_841470957 %float_0_841470957 %float_0_841470957 +%_ptr_Function_v3float = OpTypePointer Function %v3float + %18 = OpConstantNull %v3float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_67b03c = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v3float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sin_67b03c + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_67b03c + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sin_67b03c + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.wgsl new file mode 100644 index 0000000000..16abcc6fce --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/67b03c.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sin_67b03c() { + var res = sin(vec3(1.0)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_67b03c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_67b03c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_67b03c(); +} diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl new file mode 100644 index 0000000000..365edfe868 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(vec<2, fa>) -> vec<2, fa> +fn sin_68d3ab() { + var res = sin(vec2(1.)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_68d3ab(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_68d3ab(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_68d3ab(); +} diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..e6a7d5a825 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_68d3ab() { + float2 res = (0.841470957f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_68d3ab(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_68d3ab(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_68d3ab(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..e6a7d5a825 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_68d3ab() { + float2 res = (0.841470957f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_68d3ab(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_68d3ab(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_68d3ab(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.glsl new file mode 100644 index 0000000000..6735f51941 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_68d3ab() { + vec2 res = vec2(0.841470957f); +} + +vec4 vertex_main() { + sin_68d3ab(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_68d3ab() { + vec2 res = vec2(0.841470957f); +} + +void fragment_main() { + sin_68d3ab(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_68d3ab() { + vec2 res = vec2(0.841470957f); +} + +void compute_main() { + sin_68d3ab(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.msl new file mode 100644 index 0000000000..e10514f093 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_68d3ab() { + float2 res = float2(0.841470957f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_68d3ab(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_68d3ab(); + return; +} + +kernel void compute_main() { + sin_68d3ab(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.spvasm new file mode 100644 index 0000000000..32dd535a1f --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_68d3ab "sin_68d3ab" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v2float = OpTypeVector %float 2 +%float_0_841470957 = OpConstant %float 0.841470957 + %15 = OpConstantComposite %v2float %float_0_841470957 %float_0_841470957 +%_ptr_Function_v2float = OpTypePointer Function %v2float + %18 = OpConstantNull %v2float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_68d3ab = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v2float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sin_68d3ab + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_68d3ab + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sin_68d3ab + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.wgsl new file mode 100644 index 0000000000..2411b26b80 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/68d3ab.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sin_68d3ab() { + var res = sin(vec2(1.0)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_68d3ab(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_68d3ab(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_68d3ab(); +} diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl new file mode 100644 index 0000000000..029bb4830c --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(fa) -> fa +fn sin_a9ab19() { + var res = sin(1.); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_a9ab19(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_a9ab19(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_a9ab19(); +} diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..f36fe78a52 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_a9ab19() { + float res = 0.841470957f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_a9ab19(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_a9ab19(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_a9ab19(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..f36fe78a52 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_a9ab19() { + float res = 0.841470957f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_a9ab19(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_a9ab19(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_a9ab19(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.glsl new file mode 100644 index 0000000000..f6a5e5a376 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_a9ab19() { + float res = 0.841470957f; +} + +vec4 vertex_main() { + sin_a9ab19(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_a9ab19() { + float res = 0.841470957f; +} + +void fragment_main() { + sin_a9ab19(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_a9ab19() { + float res = 0.841470957f; +} + +void compute_main() { + sin_a9ab19(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.msl new file mode 100644 index 0000000000..3c5cb44dcf --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_a9ab19() { + float res = 0.841470957f; +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_a9ab19(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_a9ab19(); + return; +} + +kernel void compute_main() { + sin_a9ab19(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.spvasm new file mode 100644 index 0000000000..f34059772e --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.spvasm @@ -0,0 +1,64 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 30 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_a9ab19 "sin_a9ab19" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_0_841470957 = OpConstant %float 0.841470957 +%_ptr_Function_float = OpTypePointer Function %float + %16 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_a9ab19 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_float Function %8 + OpStore %res %float_0_841470957 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %16 + %18 = OpLabel + %19 = OpFunctionCall %void %sin_a9ab19 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %21 = OpLabel + %22 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %22 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %25 = OpLabel + %26 = OpFunctionCall %void %sin_a9ab19 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_a9ab19 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.wgsl new file mode 100644 index 0000000000..5e8b038f26 --- /dev/null +++ b/test/tint/builtins/gen/literal/sin/a9ab19.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sin_a9ab19() { + var res = sin(1.0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_a9ab19(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_a9ab19(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_a9ab19(); +} diff --git a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.dxc.hlsl index 830387c69a..e7d7d5bb4e 100644 --- a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_b78c91() { - float res = sin(1.0f); + float res = 0.841470957f; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.fxc.hlsl index 830387c69a..e7d7d5bb4e 100644 --- a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sin_b78c91() { - float res = sin(1.0f); + float res = 0.841470957f; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.glsl index e28e8877dc..f4b82c9db9 100644 --- a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sin_b78c91() { - float res = sin(1.0f); + float res = 0.841470957f; } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sin_b78c91() { - float res = sin(1.0f); + float res = 0.841470957f; } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sin_b78c91() { - float res = sin(1.0f); + float res = 0.841470957f; } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.msl index 7acd0e6308..6bfccd08a5 100644 --- a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_b78c91() { - float res = sin(1.0f); + float res = 0.841470957f; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.spvasm index 574e10ba93..354c0be2b6 100644 --- a/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/b78c91.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 31 +; Bound: 30 ; Schema: 0 OpCapability Shader - %14 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -31,35 +30,35 @@ %vertex_point_size = OpVariable %_ptr_Output_float Output %8 %void = OpTypeVoid %9 = OpTypeFunction %void - %float_1 = OpConstant %float 1 +%float_0_841470957 = OpConstant %float 0.841470957 %_ptr_Function_float = OpTypePointer Function %float - %18 = OpTypeFunction %v4float + %16 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sin_b78c91 = OpFunction %void None %9 %12 = OpLabel %res = OpVariable %_ptr_Function_float Function %8 - %13 = OpExtInst %float %14 Sin %float_1 - OpStore %res %13 + OpStore %res %float_0_841470957 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %18 - %20 = OpLabel - %21 = OpFunctionCall %void %sin_b78c91 +%vertex_main_inner = OpFunction %v4float None %16 + %18 = OpLabel + %19 = OpFunctionCall %void %sin_b78c91 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %23 = OpLabel - %24 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %24 + %21 = OpLabel + %22 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %22 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %26 = OpLabel - %27 = OpFunctionCall %void %sin_b78c91 + %25 = OpLabel + %26 = OpFunctionCall %void %sin_b78c91 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sin_b78c91 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_b78c91 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.dxc.hlsl index 6334dafc19..f3522fa503 100644 --- a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sin_fc8bc4() { - float2 res = sin((1.0f).xx); + float2 res = (0.841470957f).xx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.fxc.hlsl index 6334dafc19..f3522fa503 100644 --- a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sin_fc8bc4() { - float2 res = sin((1.0f).xx); + float2 res = (0.841470957f).xx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.glsl index 58c95b8287..07a0e81049 100644 --- a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sin_fc8bc4() { - vec2 res = sin(vec2(1.0f)); + vec2 res = vec2(0.841470957f); } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sin_fc8bc4() { - vec2 res = sin(vec2(1.0f)); + vec2 res = vec2(0.841470957f); } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sin_fc8bc4() { - vec2 res = sin(vec2(1.0f)); + vec2 res = vec2(0.841470957f); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.msl b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.msl index 82021b4de6..20e905e368 100644 --- a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sin_fc8bc4() { - float2 res = sin(float2(1.0f)); + float2 res = float2(0.841470957f); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.spvasm index fbed393fc4..abba39868c 100644 --- a/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sin/fc8bc4.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 34 +; Bound: 33 ; Schema: 0 OpCapability Shader - %15 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -32,37 +31,37 @@ %void = OpTypeVoid %9 = OpTypeFunction %void %v2float = OpTypeVector %float 2 - %float_1 = OpConstant %float 1 - %17 = OpConstantComposite %v2float %float_1 %float_1 +%float_0_841470957 = OpConstant %float 0.841470957 + %15 = OpConstantComposite %v2float %float_0_841470957 %float_0_841470957 %_ptr_Function_v2float = OpTypePointer Function %v2float - %20 = OpConstantNull %v2float - %21 = OpTypeFunction %v4float + %18 = OpConstantNull %v2float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sin_fc8bc4 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v2float Function %20 - %13 = OpExtInst %v2float %15 Sin %17 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v2float Function %18 + OpStore %res %15 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %21 - %23 = OpLabel - %24 = OpFunctionCall %void %sin_fc8bc4 +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sin_fc8bc4 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %26 = OpLabel - %27 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %27 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sin_fc8bc4 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_fc8bc4 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %32 = OpLabel - %33 = OpFunctionCall %void %sin_fc8bc4 + %31 = OpLabel + %32 = OpFunctionCall %void %sin_fc8bc4 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.dxc.hlsl index 1f06f77d0a..cba908919e 100644 --- a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_0908c1() { - vector res = sinh((float16_t(1.0h)).xxx); + vector res = (float16_t(1.174804688h)).xxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.glsl index 2c61420aea..637d66a2d5 100644 --- a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sinh_0908c1() { - f16vec3 res = sinh(f16vec3(1.0hf)); + f16vec3 res = f16vec3(1.174804688hf); } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sinh_0908c1() { - f16vec3 res = sinh(f16vec3(1.0hf)); + f16vec3 res = f16vec3(1.174804688hf); } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sinh_0908c1() { - f16vec3 res = sinh(f16vec3(1.0hf)); + f16vec3 res = f16vec3(1.174804688hf); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.msl index 54d1892725..ae2eac9bac 100644 --- a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_0908c1() { - half3 res = sinh(half3(1.0h)); + half3 res = half3(1.174804688h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.spvasm index 3a1f92ccd5..c50a8ff442 100644 --- a/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/0908c1.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 36 +; Bound: 34 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %16 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -37,38 +36,37 @@ %9 = OpTypeFunction %void %half = OpTypeFloat 16 %v3half = OpTypeVector %half 3 -%half_0x1p_0 = OpConstant %half 0x1p+0 - %18 = OpConstantComposite %v3half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 +%half_0x1_2ccp_0 = OpConstant %half 0x1.2ccp+0 + %16 = OpConstantComposite %v3half %half_0x1_2ccp_0 %half_0x1_2ccp_0 %half_0x1_2ccp_0 %_ptr_Function_v3half = OpTypePointer Function %v3half - %21 = OpConstantNull %v3half - %22 = OpTypeFunction %v4float + %19 = OpConstantNull %v3half + %20 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sinh_0908c1 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v3half Function %21 - %13 = OpExtInst %v3half %16 Sinh %18 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v3half Function %19 + OpStore %res %16 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %22 - %24 = OpLabel - %25 = OpFunctionCall %void %sinh_0908c1 +%vertex_main_inner = OpFunction %v4float None %20 + %22 = OpLabel + %23 = OpFunctionCall %void %sinh_0908c1 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %28 + %25 = OpLabel + %26 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %26 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %31 = OpLabel - %32 = OpFunctionCall %void %sinh_0908c1 + %29 = OpLabel + %30 = OpFunctionCall %void %sinh_0908c1 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %34 = OpLabel - %35 = OpFunctionCall %void %sinh_0908c1 + %32 = OpLabel + %33 = OpFunctionCall %void %sinh_0908c1 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.dxc.hlsl index 678cef4da9..2fffd3e7e6 100644 --- a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_445e33() { - float4 res = sinh((1.0f).xxxx); + float4 res = (1.175201178f).xxxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.fxc.hlsl index 678cef4da9..2fffd3e7e6 100644 --- a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sinh_445e33() { - float4 res = sinh((1.0f).xxxx); + float4 res = (1.175201178f).xxxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.glsl index 2d90f5019f..3dcdacd00b 100644 --- a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sinh_445e33() { - vec4 res = sinh(vec4(1.0f)); + vec4 res = vec4(1.175201178f); } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sinh_445e33() { - vec4 res = sinh(vec4(1.0f)); + vec4 res = vec4(1.175201178f); } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sinh_445e33() { - vec4 res = sinh(vec4(1.0f)); + vec4 res = vec4(1.175201178f); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.msl index 4f0fdbce53..412a0872f4 100644 --- a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_445e33() { - float4 res = sinh(float4(1.0f)); + float4 res = float4(1.175201178f); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.spvasm index 1d1c9f6aa3..bd640f7439 100644 --- a/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/445e33.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 32 +; Bound: 31 ; Schema: 0 OpCapability Shader - %14 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -31,36 +30,36 @@ %vertex_point_size = OpVariable %_ptr_Output_float Output %8 %void = OpTypeVoid %9 = OpTypeFunction %void - %float_1 = OpConstant %float 1 - %16 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1 +%float_1_17520118 = OpConstant %float 1.17520118 + %14 = OpConstantComposite %v4float %float_1_17520118 %float_1_17520118 %float_1_17520118 %float_1_17520118 %_ptr_Function_v4float = OpTypePointer Function %v4float - %19 = OpTypeFunction %v4float + %17 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sinh_445e33 = OpFunction %void None %9 %12 = OpLabel %res = OpVariable %_ptr_Function_v4float Function %5 - %13 = OpExtInst %v4float %14 Sinh %16 - OpStore %res %13 + OpStore %res %14 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %19 - %21 = OpLabel - %22 = OpFunctionCall %void %sinh_445e33 +%vertex_main_inner = OpFunction %v4float None %17 + %19 = OpLabel + %20 = OpFunctionCall %void %sinh_445e33 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %24 = OpLabel - %25 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %25 + %22 = OpLabel + %23 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %23 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %void %sinh_445e33 + %26 = OpLabel + %27 = OpFunctionCall %void %sinh_445e33 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %30 = OpLabel - %31 = OpFunctionCall %void %sinh_445e33 + %29 = OpLabel + %30 = OpFunctionCall %void %sinh_445e33 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.dxc.hlsl index 7b8e6ce91a..451e9cf56e 100644 --- a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_69cce2() { - float16_t res = sinh(float16_t(1.0h)); + float16_t res = float16_t(1.174804688h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.glsl index a64c8dd4c8..7e42f16b43 100644 --- a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sinh_69cce2() { - float16_t res = sinh(1.0hf); + float16_t res = 1.174804688hf; } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sinh_69cce2() { - float16_t res = sinh(1.0hf); + float16_t res = 1.174804688hf; } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sinh_69cce2() { - float16_t res = sinh(1.0hf); + float16_t res = 1.174804688hf; } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.msl index ae6c123624..61ee6d4fc3 100644 --- a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_69cce2() { - half res = sinh(1.0h); + half res = 1.174804688h; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.spvasm index af0bf6ffdf..27ce56b044 100644 --- a/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/69cce2.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 34 +; Bound: 32 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %15 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -36,37 +35,36 @@ %void = OpTypeVoid %9 = OpTypeFunction %void %half = OpTypeFloat 16 -%half_0x1p_0 = OpConstant %half 0x1p+0 +%half_0x1_2ccp_0 = OpConstant %half 0x1.2ccp+0 %_ptr_Function_half = OpTypePointer Function %half - %19 = OpConstantNull %half - %20 = OpTypeFunction %v4float + %17 = OpConstantNull %half + %18 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sinh_69cce2 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_half Function %19 - %13 = OpExtInst %half %15 Sinh %half_0x1p_0 - OpStore %res %13 + %res = OpVariable %_ptr_Function_half Function %17 + OpStore %res %half_0x1_2ccp_0 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %20 - %22 = OpLabel - %23 = OpFunctionCall %void %sinh_69cce2 +%vertex_main_inner = OpFunction %v4float None %18 + %20 = OpLabel + %21 = OpFunctionCall %void %sinh_69cce2 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %25 = OpLabel - %26 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %26 + %23 = OpLabel + %24 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %24 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sinh_69cce2 + %27 = OpLabel + %28 = OpFunctionCall %void %sinh_69cce2 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %32 = OpLabel - %33 = OpFunctionCall %void %sinh_69cce2 + %30 = OpLabel + %31 = OpFunctionCall %void %sinh_69cce2 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl new file mode 100644 index 0000000000..2d938bb172 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(vec<3, fa>) -> vec<3, fa> +fn sinh_77a2a3() { + var res = sinh(vec3(1.)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_77a2a3(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_77a2a3(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_77a2a3(); +} diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..cc0e402ed5 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_77a2a3() { + float3 res = (1.175201178f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_77a2a3(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_77a2a3(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_77a2a3(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..cc0e402ed5 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_77a2a3() { + float3 res = (1.175201178f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_77a2a3(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_77a2a3(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_77a2a3(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.glsl new file mode 100644 index 0000000000..485304650b --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_77a2a3() { + vec3 res = vec3(1.175201178f); +} + +vec4 vertex_main() { + sinh_77a2a3(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_77a2a3() { + vec3 res = vec3(1.175201178f); +} + +void fragment_main() { + sinh_77a2a3(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_77a2a3() { + vec3 res = vec3(1.175201178f); +} + +void compute_main() { + sinh_77a2a3(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.msl new file mode 100644 index 0000000000..2370cd24bc --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_77a2a3() { + float3 res = float3(1.175201178f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_77a2a3(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_77a2a3(); + return; +} + +kernel void compute_main() { + sinh_77a2a3(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.spvasm new file mode 100644 index 0000000000..b255da38ca --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_77a2a3 "sinh_77a2a3" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v3float = OpTypeVector %float 3 +%float_1_17520118 = OpConstant %float 1.17520118 + %15 = OpConstantComposite %v3float %float_1_17520118 %float_1_17520118 %float_1_17520118 +%_ptr_Function_v3float = OpTypePointer Function %v3float + %18 = OpConstantNull %v3float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_77a2a3 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v3float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sinh_77a2a3 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_77a2a3 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sinh_77a2a3 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.wgsl new file mode 100644 index 0000000000..af08099139 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/77a2a3.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sinh_77a2a3() { + var res = sinh(vec3(1.0)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_77a2a3(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_77a2a3(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_77a2a3(); +} diff --git a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.dxc.hlsl index ead48271e7..fc2f01c6af 100644 --- a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_7bb598() { - float res = sinh(1.0f); + float res = 1.175201178f; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.fxc.hlsl index ead48271e7..fc2f01c6af 100644 --- a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sinh_7bb598() { - float res = sinh(1.0f); + float res = 1.175201178f; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.glsl index a30194b910..cac34fc2f8 100644 --- a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sinh_7bb598() { - float res = sinh(1.0f); + float res = 1.175201178f; } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sinh_7bb598() { - float res = sinh(1.0f); + float res = 1.175201178f; } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sinh_7bb598() { - float res = sinh(1.0f); + float res = 1.175201178f; } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.msl index 208c381869..d52eeca0de 100644 --- a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_7bb598() { - float res = sinh(1.0f); + float res = 1.175201178f; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.spvasm index 746f01c8bb..f9828f1741 100644 --- a/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/7bb598.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 31 +; Bound: 30 ; Schema: 0 OpCapability Shader - %14 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -31,35 +30,35 @@ %vertex_point_size = OpVariable %_ptr_Output_float Output %8 %void = OpTypeVoid %9 = OpTypeFunction %void - %float_1 = OpConstant %float 1 +%float_1_17520118 = OpConstant %float 1.17520118 %_ptr_Function_float = OpTypePointer Function %float - %18 = OpTypeFunction %v4float + %16 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sinh_7bb598 = OpFunction %void None %9 %12 = OpLabel %res = OpVariable %_ptr_Function_float Function %8 - %13 = OpExtInst %float %14 Sinh %float_1 - OpStore %res %13 + OpStore %res %float_1_17520118 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %18 - %20 = OpLabel - %21 = OpFunctionCall %void %sinh_7bb598 +%vertex_main_inner = OpFunction %v4float None %16 + %18 = OpLabel + %19 = OpFunctionCall %void %sinh_7bb598 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %23 = OpLabel - %24 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %24 + %21 = OpLabel + %22 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %22 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %26 = OpLabel - %27 = OpFunctionCall %void %sinh_7bb598 + %25 = OpLabel + %26 = OpFunctionCall %void %sinh_7bb598 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sinh_7bb598 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_7bb598 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.dxc.hlsl index cdcc434fc7..051609ef15 100644 --- a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_924f19() { - vector res = sinh((float16_t(1.0h)).xx); + vector res = (float16_t(1.174804688h)).xx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.glsl index fd2eb90f54..c651991873 100644 --- a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sinh_924f19() { - f16vec2 res = sinh(f16vec2(1.0hf)); + f16vec2 res = f16vec2(1.174804688hf); } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sinh_924f19() { - f16vec2 res = sinh(f16vec2(1.0hf)); + f16vec2 res = f16vec2(1.174804688hf); } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sinh_924f19() { - f16vec2 res = sinh(f16vec2(1.0hf)); + f16vec2 res = f16vec2(1.174804688hf); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.msl index 64fe921593..db1590ee0d 100644 --- a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_924f19() { - half2 res = sinh(half2(1.0h)); + half2 res = half2(1.174804688h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.spvasm index 59e22b3ac4..d57f22eedc 100644 --- a/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/924f19.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 36 +; Bound: 34 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %16 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -37,38 +36,37 @@ %9 = OpTypeFunction %void %half = OpTypeFloat 16 %v2half = OpTypeVector %half 2 -%half_0x1p_0 = OpConstant %half 0x1p+0 - %18 = OpConstantComposite %v2half %half_0x1p_0 %half_0x1p_0 +%half_0x1_2ccp_0 = OpConstant %half 0x1.2ccp+0 + %16 = OpConstantComposite %v2half %half_0x1_2ccp_0 %half_0x1_2ccp_0 %_ptr_Function_v2half = OpTypePointer Function %v2half - %21 = OpConstantNull %v2half - %22 = OpTypeFunction %v4float + %19 = OpConstantNull %v2half + %20 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sinh_924f19 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v2half Function %21 - %13 = OpExtInst %v2half %16 Sinh %18 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v2half Function %19 + OpStore %res %16 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %22 - %24 = OpLabel - %25 = OpFunctionCall %void %sinh_924f19 +%vertex_main_inner = OpFunction %v4float None %20 + %22 = OpLabel + %23 = OpFunctionCall %void %sinh_924f19 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %28 + %25 = OpLabel + %26 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %26 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %31 = OpLabel - %32 = OpFunctionCall %void %sinh_924f19 + %29 = OpLabel + %30 = OpFunctionCall %void %sinh_924f19 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %34 = OpLabel - %35 = OpFunctionCall %void %sinh_924f19 + %32 = OpLabel + %33 = OpFunctionCall %void %sinh_924f19 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl new file mode 100644 index 0000000000..26faf82e12 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(vec<2, fa>) -> vec<2, fa> +fn sinh_9c1092() { + var res = sinh(vec2(1.)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_9c1092(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_9c1092(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_9c1092(); +} diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..9aef2e9ae0 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_9c1092() { + float2 res = (1.175201178f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_9c1092(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_9c1092(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_9c1092(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..9aef2e9ae0 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_9c1092() { + float2 res = (1.175201178f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_9c1092(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_9c1092(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_9c1092(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.glsl new file mode 100644 index 0000000000..f6a45bd337 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_9c1092() { + vec2 res = vec2(1.175201178f); +} + +vec4 vertex_main() { + sinh_9c1092(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_9c1092() { + vec2 res = vec2(1.175201178f); +} + +void fragment_main() { + sinh_9c1092(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_9c1092() { + vec2 res = vec2(1.175201178f); +} + +void compute_main() { + sinh_9c1092(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.msl new file mode 100644 index 0000000000..04d9187904 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_9c1092() { + float2 res = float2(1.175201178f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_9c1092(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_9c1092(); + return; +} + +kernel void compute_main() { + sinh_9c1092(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.spvasm new file mode 100644 index 0000000000..6ac0c69d6d --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_9c1092 "sinh_9c1092" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v2float = OpTypeVector %float 2 +%float_1_17520118 = OpConstant %float 1.17520118 + %15 = OpConstantComposite %v2float %float_1_17520118 %float_1_17520118 +%_ptr_Function_v2float = OpTypePointer Function %v2float + %18 = OpConstantNull %v2float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_9c1092 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v2float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sinh_9c1092 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_9c1092 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sinh_9c1092 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.wgsl new file mode 100644 index 0000000000..cee9cf6909 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/9c1092.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sinh_9c1092() { + var res = sinh(vec2(1.0)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_9c1092(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_9c1092(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_9c1092(); +} diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl new file mode 100644 index 0000000000..20558b853a --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(vec<4, fa>) -> vec<4, fa> +fn sinh_a3da7c() { + var res = sinh(vec4(1.)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_a3da7c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_a3da7c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_a3da7c(); +} diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..32eaad59ca --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_a3da7c() { + float4 res = (1.175201178f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_a3da7c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_a3da7c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_a3da7c(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..32eaad59ca --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_a3da7c() { + float4 res = (1.175201178f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_a3da7c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_a3da7c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_a3da7c(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.glsl new file mode 100644 index 0000000000..d0068d895b --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_a3da7c() { + vec4 res = vec4(1.175201178f); +} + +vec4 vertex_main() { + sinh_a3da7c(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_a3da7c() { + vec4 res = vec4(1.175201178f); +} + +void fragment_main() { + sinh_a3da7c(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_a3da7c() { + vec4 res = vec4(1.175201178f); +} + +void compute_main() { + sinh_a3da7c(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.msl new file mode 100644 index 0000000000..2e9d194aa1 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_a3da7c() { + float4 res = float4(1.175201178f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_a3da7c(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_a3da7c(); + return; +} + +kernel void compute_main() { + sinh_a3da7c(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.spvasm new file mode 100644 index 0000000000..0c80b67e9b --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.spvasm @@ -0,0 +1,65 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 31 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_a3da7c "sinh_a3da7c" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_1_17520118 = OpConstant %float 1.17520118 + %14 = OpConstantComposite %v4float %float_1_17520118 %float_1_17520118 %float_1_17520118 %float_1_17520118 +%_ptr_Function_v4float = OpTypePointer Function %v4float + %17 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_a3da7c = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v4float Function %5 + OpStore %res %14 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %17 + %19 = OpLabel + %20 = OpFunctionCall %void %sinh_a3da7c + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %22 = OpLabel + %23 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %23 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %26 = OpLabel + %27 = OpFunctionCall %void %sinh_a3da7c + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %29 = OpLabel + %30 = OpFunctionCall %void %sinh_a3da7c + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.wgsl new file mode 100644 index 0000000000..42da3ab6ab --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/a3da7c.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sinh_a3da7c() { + var res = sinh(vec4(1.0)); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_a3da7c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_a3da7c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_a3da7c(); +} diff --git a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.dxc.hlsl index 9961a6af41..2f9bb1736e 100644 --- a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_b9860e() { - float2 res = sinh((1.0f).xx); + float2 res = (1.175201178f).xx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.fxc.hlsl index 9961a6af41..2f9bb1736e 100644 --- a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sinh_b9860e() { - float2 res = sinh((1.0f).xx); + float2 res = (1.175201178f).xx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.glsl index 83d01b7f6f..b52b933316 100644 --- a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sinh_b9860e() { - vec2 res = sinh(vec2(1.0f)); + vec2 res = vec2(1.175201178f); } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sinh_b9860e() { - vec2 res = sinh(vec2(1.0f)); + vec2 res = vec2(1.175201178f); } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sinh_b9860e() { - vec2 res = sinh(vec2(1.0f)); + vec2 res = vec2(1.175201178f); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.msl index 0b99457355..3d4fb9b160 100644 --- a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_b9860e() { - float2 res = sinh(float2(1.0f)); + float2 res = float2(1.175201178f); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.spvasm index f09ce359eb..d8a3618251 100644 --- a/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/b9860e.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 34 +; Bound: 33 ; Schema: 0 OpCapability Shader - %15 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -32,37 +31,37 @@ %void = OpTypeVoid %9 = OpTypeFunction %void %v2float = OpTypeVector %float 2 - %float_1 = OpConstant %float 1 - %17 = OpConstantComposite %v2float %float_1 %float_1 +%float_1_17520118 = OpConstant %float 1.17520118 + %15 = OpConstantComposite %v2float %float_1_17520118 %float_1_17520118 %_ptr_Function_v2float = OpTypePointer Function %v2float - %20 = OpConstantNull %v2float - %21 = OpTypeFunction %v4float + %18 = OpConstantNull %v2float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sinh_b9860e = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v2float Function %20 - %13 = OpExtInst %v2float %15 Sinh %17 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v2float Function %18 + OpStore %res %15 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %21 - %23 = OpLabel - %24 = OpFunctionCall %void %sinh_b9860e +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sinh_b9860e OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %26 = OpLabel - %27 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %27 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sinh_b9860e + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_b9860e OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %32 = OpLabel - %33 = OpFunctionCall %void %sinh_b9860e + %31 = OpLabel + %32 = OpFunctionCall %void %sinh_b9860e OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.dxc.hlsl index a5b5e1cb6b..3e7ff806ff 100644 --- a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_ba7e25() { - vector res = sinh((float16_t(1.0h)).xxxx); + vector res = (float16_t(1.174804688h)).xxxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.glsl index f404443b3a..6a9a369f4b 100644 --- a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.glsl @@ -2,7 +2,7 @@ #extension GL_AMD_gpu_shader_half_float : require void sinh_ba7e25() { - f16vec4 res = sinh(f16vec4(1.0hf)); + f16vec4 res = f16vec4(1.174804688hf); } vec4 vertex_main() { @@ -23,7 +23,7 @@ void main() { precision mediump float; void sinh_ba7e25() { - f16vec4 res = sinh(f16vec4(1.0hf)); + f16vec4 res = f16vec4(1.174804688hf); } void fragment_main() { @@ -38,7 +38,7 @@ void main() { #extension GL_AMD_gpu_shader_half_float : require void sinh_ba7e25() { - f16vec4 res = sinh(f16vec4(1.0hf)); + f16vec4 res = f16vec4(1.174804688hf); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.msl index bd5ec4c811..897d183fe5 100644 --- a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_ba7e25() { - half4 res = sinh(half4(1.0h)); + half4 res = half4(1.174804688h); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.spvasm index 51403b1de6..647555df7e 100644 --- a/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/ba7e25.wgsl.expected.spvasm @@ -1,14 +1,13 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 36 +; Bound: 34 ; Schema: 0 OpCapability Shader OpCapability Float16 OpCapability UniformAndStorageBuffer16BitAccess OpCapability StorageBuffer16BitAccess OpCapability StorageInputOutput16 - %16 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -37,38 +36,37 @@ %9 = OpTypeFunction %void %half = OpTypeFloat 16 %v4half = OpTypeVector %half 4 -%half_0x1p_0 = OpConstant %half 0x1p+0 - %18 = OpConstantComposite %v4half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 +%half_0x1_2ccp_0 = OpConstant %half 0x1.2ccp+0 + %16 = OpConstantComposite %v4half %half_0x1_2ccp_0 %half_0x1_2ccp_0 %half_0x1_2ccp_0 %half_0x1_2ccp_0 %_ptr_Function_v4half = OpTypePointer Function %v4half - %21 = OpConstantNull %v4half - %22 = OpTypeFunction %v4float + %19 = OpConstantNull %v4half + %20 = OpTypeFunction %v4float %float_1 = OpConstant %float 1 %sinh_ba7e25 = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v4half Function %21 - %13 = OpExtInst %v4half %16 Sinh %18 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v4half Function %19 + OpStore %res %16 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %22 - %24 = OpLabel - %25 = OpFunctionCall %void %sinh_ba7e25 +%vertex_main_inner = OpFunction %v4float None %20 + %22 = OpLabel + %23 = OpFunctionCall %void %sinh_ba7e25 OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %27 = OpLabel - %28 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %28 + %25 = OpLabel + %26 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %26 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %31 = OpLabel - %32 = OpFunctionCall %void %sinh_ba7e25 + %29 = OpLabel + %30 = OpFunctionCall %void %sinh_ba7e25 OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %34 = OpLabel - %35 = OpFunctionCall %void %sinh_ba7e25 + %32 = OpLabel + %33 = OpFunctionCall %void %sinh_ba7e25 OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl new file mode 100644 index 0000000000..c91c0d60c2 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl @@ -0,0 +1,43 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(fa) -> fa +fn sinh_c4df74() { + var res = sinh(1.); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_c4df74(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_c4df74(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_c4df74(); +} diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..05a156111b --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_c4df74() { + float res = 1.175201178f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_c4df74(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_c4df74(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_c4df74(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..05a156111b --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_c4df74() { + float res = 1.175201178f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_c4df74(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_c4df74(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_c4df74(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.glsl new file mode 100644 index 0000000000..49d48790e5 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_c4df74() { + float res = 1.175201178f; +} + +vec4 vertex_main() { + sinh_c4df74(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_c4df74() { + float res = 1.175201178f; +} + +void fragment_main() { + sinh_c4df74(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_c4df74() { + float res = 1.175201178f; +} + +void compute_main() { + sinh_c4df74(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.msl new file mode 100644 index 0000000000..9cfbeae5b8 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_c4df74() { + float res = 1.175201178f; +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_c4df74(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_c4df74(); + return; +} + +kernel void compute_main() { + sinh_c4df74(); + return; +} + diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.spvasm new file mode 100644 index 0000000000..8eb5089885 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.spvasm @@ -0,0 +1,64 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 30 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_c4df74 "sinh_c4df74" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_1_17520118 = OpConstant %float 1.17520118 +%_ptr_Function_float = OpTypePointer Function %float + %16 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_c4df74 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_float Function %8 + OpStore %res %float_1_17520118 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %16 + %18 = OpLabel + %19 = OpFunctionCall %void %sinh_c4df74 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %21 = OpLabel + %22 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %22 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %25 = OpLabel + %26 = OpFunctionCall %void %sinh_c4df74 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_c4df74 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.wgsl new file mode 100644 index 0000000000..8475861da4 --- /dev/null +++ b/test/tint/builtins/gen/literal/sinh/c4df74.wgsl.expected.wgsl @@ -0,0 +1,19 @@ +fn sinh_c4df74() { + var res = sinh(1.0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_c4df74(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_c4df74(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_c4df74(); +} diff --git a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.dxc.hlsl index 201111f25a..d3d4751134 100644 --- a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.dxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.dxc.hlsl @@ -1,5 +1,5 @@ void sinh_c9a5eb() { - float3 res = sinh((1.0f).xxx); + float3 res = (1.175201178f).xxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.fxc.hlsl index 201111f25a..d3d4751134 100644 --- a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.fxc.hlsl +++ b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.fxc.hlsl @@ -1,5 +1,5 @@ void sinh_c9a5eb() { - float3 res = sinh((1.0f).xxx); + float3 res = (1.175201178f).xxx; } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.glsl index 36f42dcfdd..f497e71191 100644 --- a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.glsl +++ b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.glsl @@ -1,7 +1,7 @@ #version 310 es void sinh_c9a5eb() { - vec3 res = sinh(vec3(1.0f)); + vec3 res = vec3(1.175201178f); } vec4 vertex_main() { @@ -21,7 +21,7 @@ void main() { precision mediump float; void sinh_c9a5eb() { - vec3 res = sinh(vec3(1.0f)); + vec3 res = vec3(1.175201178f); } void fragment_main() { @@ -35,7 +35,7 @@ void main() { #version 310 es void sinh_c9a5eb() { - vec3 res = sinh(vec3(1.0f)); + vec3 res = vec3(1.175201178f); } void compute_main() { diff --git a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.msl b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.msl index de40db2062..4991e1352e 100644 --- a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.msl +++ b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.msl @@ -2,7 +2,7 @@ using namespace metal; void sinh_c9a5eb() { - float3 res = sinh(float3(1.0f)); + float3 res = float3(1.175201178f); } struct tint_symbol { diff --git a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.spvasm index 3e1041a975..bf1af9ef2e 100644 --- a/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.spvasm +++ b/test/tint/builtins/gen/literal/sinh/c9a5eb.wgsl.expected.spvasm @@ -1,10 +1,9 @@ ; SPIR-V ; Version: 1.3 ; Generator: Google Tint Compiler; 0 -; Bound: 34 +; Bound: 33 ; Schema: 0 OpCapability Shader - %15 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size OpEntryPoint Fragment %fragment_main "fragment_main" @@ -32,37 +31,37 @@ %void = OpTypeVoid %9 = OpTypeFunction %void %v3float = OpTypeVector %float 3 - %float_1 = OpConstant %float 1 - %17 = OpConstantComposite %v3float %float_1 %float_1 %float_1 +%float_1_17520118 = OpConstant %float 1.17520118 + %15 = OpConstantComposite %v3float %float_1_17520118 %float_1_17520118 %float_1_17520118 %_ptr_Function_v3float = OpTypePointer Function %v3float - %20 = OpConstantNull %v3float - %21 = OpTypeFunction %v4float + %18 = OpConstantNull %v3float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 %sinh_c9a5eb = OpFunction %void None %9 %12 = OpLabel - %res = OpVariable %_ptr_Function_v3float Function %20 - %13 = OpExtInst %v3float %15 Sinh %17 - OpStore %res %13 + %res = OpVariable %_ptr_Function_v3float Function %18 + OpStore %res %15 OpReturn OpFunctionEnd -%vertex_main_inner = OpFunction %v4float None %21 - %23 = OpLabel - %24 = OpFunctionCall %void %sinh_c9a5eb +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sinh_c9a5eb OpReturnValue %5 OpFunctionEnd %vertex_main = OpFunction %void None %9 - %26 = OpLabel - %27 = OpFunctionCall %v4float %vertex_main_inner - OpStore %value %27 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 OpStore %vertex_point_size %float_1 OpReturn OpFunctionEnd %fragment_main = OpFunction %void None %9 - %29 = OpLabel - %30 = OpFunctionCall %void %sinh_c9a5eb + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_c9a5eb OpReturn OpFunctionEnd %compute_main = OpFunction %void None %9 - %32 = OpLabel - %33 = OpFunctionCall %void %sinh_c9a5eb + %31 = OpLabel + %32 = OpFunctionCall %void %sinh_c9a5eb OpReturn OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl b/test/tint/builtins/gen/var/sin/15b2c6.wgsl new file mode 100644 index 0000000000..8d53440d62 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(vec<4, fa>) -> vec<4, fa> +fn sin_15b2c6() { + const arg_0 = vec4(1.); + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_15b2c6(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_15b2c6(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_15b2c6(); +} diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..8b97a9db31 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_15b2c6() { + float4 res = (0.841470957f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_15b2c6(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_15b2c6(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_15b2c6(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..8b97a9db31 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_15b2c6() { + float4 res = (0.841470957f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_15b2c6(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_15b2c6(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_15b2c6(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.glsl b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.glsl new file mode 100644 index 0000000000..2ba8b10dbd --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_15b2c6() { + vec4 res = vec4(0.841470957f); +} + +vec4 vertex_main() { + sin_15b2c6(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_15b2c6() { + vec4 res = vec4(0.841470957f); +} + +void fragment_main() { + sin_15b2c6(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_15b2c6() { + vec4 res = vec4(0.841470957f); +} + +void compute_main() { + sin_15b2c6(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.msl b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.msl new file mode 100644 index 0000000000..4f69b5b296 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_15b2c6() { + float4 res = float4(0.841470957f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_15b2c6(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_15b2c6(); + return; +} + +kernel void compute_main() { + sin_15b2c6(); + return; +} + diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.spvasm new file mode 100644 index 0000000000..7e73f04a67 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.spvasm @@ -0,0 +1,65 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 31 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_15b2c6 "sin_15b2c6" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_0_841470957 = OpConstant %float 0.841470957 + %14 = OpConstantComposite %v4float %float_0_841470957 %float_0_841470957 %float_0_841470957 %float_0_841470957 +%_ptr_Function_v4float = OpTypePointer Function %v4float + %17 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_15b2c6 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v4float Function %5 + OpStore %res %14 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %17 + %19 = OpLabel + %20 = OpFunctionCall %void %sin_15b2c6 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %22 = OpLabel + %23 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %23 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %26 = OpLabel + %27 = OpFunctionCall %void %sin_15b2c6 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %29 = OpLabel + %30 = OpFunctionCall %void %sin_15b2c6 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.wgsl new file mode 100644 index 0000000000..bf5e782f6f --- /dev/null +++ b/test/tint/builtins/gen/var/sin/15b2c6.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sin_15b2c6() { + const arg_0 = vec4(1.0); + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_15b2c6(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_15b2c6(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_15b2c6(); +} diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl b/test/tint/builtins/gen/var/sin/67b03c.wgsl new file mode 100644 index 0000000000..da705d333e --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(vec<3, fa>) -> vec<3, fa> +fn sin_67b03c() { + const arg_0 = vec3(1.); + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_67b03c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_67b03c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_67b03c(); +} diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..90603d178f --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_67b03c() { + float3 res = (0.841470957f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_67b03c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_67b03c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_67b03c(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..90603d178f --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_67b03c() { + float3 res = (0.841470957f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_67b03c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_67b03c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_67b03c(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.glsl b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.glsl new file mode 100644 index 0000000000..aa3e311f89 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_67b03c() { + vec3 res = vec3(0.841470957f); +} + +vec4 vertex_main() { + sin_67b03c(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_67b03c() { + vec3 res = vec3(0.841470957f); +} + +void fragment_main() { + sin_67b03c(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_67b03c() { + vec3 res = vec3(0.841470957f); +} + +void compute_main() { + sin_67b03c(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.msl b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.msl new file mode 100644 index 0000000000..8b83077dad --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_67b03c() { + float3 res = float3(0.841470957f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_67b03c(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_67b03c(); + return; +} + +kernel void compute_main() { + sin_67b03c(); + return; +} + diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.spvasm new file mode 100644 index 0000000000..78483fe1bf --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_67b03c "sin_67b03c" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v3float = OpTypeVector %float 3 +%float_0_841470957 = OpConstant %float 0.841470957 + %15 = OpConstantComposite %v3float %float_0_841470957 %float_0_841470957 %float_0_841470957 +%_ptr_Function_v3float = OpTypePointer Function %v3float + %18 = OpConstantNull %v3float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_67b03c = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v3float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sin_67b03c + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_67b03c + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sin_67b03c + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.wgsl new file mode 100644 index 0000000000..a7c2a90a86 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/67b03c.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sin_67b03c() { + const arg_0 = vec3(1.0); + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_67b03c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_67b03c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_67b03c(); +} diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl b/test/tint/builtins/gen/var/sin/68d3ab.wgsl new file mode 100644 index 0000000000..4c1ee6b9af --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(vec<2, fa>) -> vec<2, fa> +fn sin_68d3ab() { + const arg_0 = vec2(1.); + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_68d3ab(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_68d3ab(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_68d3ab(); +} diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..e6a7d5a825 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_68d3ab() { + float2 res = (0.841470957f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_68d3ab(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_68d3ab(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_68d3ab(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..e6a7d5a825 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_68d3ab() { + float2 res = (0.841470957f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_68d3ab(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_68d3ab(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_68d3ab(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.glsl b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.glsl new file mode 100644 index 0000000000..6735f51941 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_68d3ab() { + vec2 res = vec2(0.841470957f); +} + +vec4 vertex_main() { + sin_68d3ab(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_68d3ab() { + vec2 res = vec2(0.841470957f); +} + +void fragment_main() { + sin_68d3ab(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_68d3ab() { + vec2 res = vec2(0.841470957f); +} + +void compute_main() { + sin_68d3ab(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.msl b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.msl new file mode 100644 index 0000000000..e10514f093 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_68d3ab() { + float2 res = float2(0.841470957f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_68d3ab(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_68d3ab(); + return; +} + +kernel void compute_main() { + sin_68d3ab(); + return; +} + diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.spvasm new file mode 100644 index 0000000000..32dd535a1f --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_68d3ab "sin_68d3ab" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v2float = OpTypeVector %float 2 +%float_0_841470957 = OpConstant %float 0.841470957 + %15 = OpConstantComposite %v2float %float_0_841470957 %float_0_841470957 +%_ptr_Function_v2float = OpTypePointer Function %v2float + %18 = OpConstantNull %v2float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_68d3ab = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v2float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sin_68d3ab + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_68d3ab + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sin_68d3ab + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.wgsl new file mode 100644 index 0000000000..26fc3f9e9e --- /dev/null +++ b/test/tint/builtins/gen/var/sin/68d3ab.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sin_68d3ab() { + const arg_0 = vec2(1.0); + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_68d3ab(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_68d3ab(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_68d3ab(); +} diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl b/test/tint/builtins/gen/var/sin/a9ab19.wgsl new file mode 100644 index 0000000000..88e9aad270 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sin(fa) -> fa +fn sin_a9ab19() { + const arg_0 = 1.; + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_a9ab19(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_a9ab19(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_a9ab19(); +} diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..f36fe78a52 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sin_a9ab19() { + float res = 0.841470957f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_a9ab19(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_a9ab19(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_a9ab19(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..f36fe78a52 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sin_a9ab19() { + float res = 0.841470957f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sin_a9ab19(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sin_a9ab19(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sin_a9ab19(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.glsl b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.glsl new file mode 100644 index 0000000000..f6a5e5a376 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sin_a9ab19() { + float res = 0.841470957f; +} + +vec4 vertex_main() { + sin_a9ab19(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sin_a9ab19() { + float res = 0.841470957f; +} + +void fragment_main() { + sin_a9ab19(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sin_a9ab19() { + float res = 0.841470957f; +} + +void compute_main() { + sin_a9ab19(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.msl b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.msl new file mode 100644 index 0000000000..3c5cb44dcf --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sin_a9ab19() { + float res = 0.841470957f; +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sin_a9ab19(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sin_a9ab19(); + return; +} + +kernel void compute_main() { + sin_a9ab19(); + return; +} + diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.spvasm new file mode 100644 index 0000000000..f34059772e --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.spvasm @@ -0,0 +1,64 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 30 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sin_a9ab19 "sin_a9ab19" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_0_841470957 = OpConstant %float 0.841470957 +%_ptr_Function_float = OpTypePointer Function %float + %16 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 + %sin_a9ab19 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_float Function %8 + OpStore %res %float_0_841470957 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %16 + %18 = OpLabel + %19 = OpFunctionCall %void %sin_a9ab19 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %21 = OpLabel + %22 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %22 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %25 = OpLabel + %26 = OpFunctionCall %void %sin_a9ab19 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sin_a9ab19 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.wgsl new file mode 100644 index 0000000000..1bcc2808f6 --- /dev/null +++ b/test/tint/builtins/gen/var/sin/a9ab19.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sin_a9ab19() { + const arg_0 = 1.0; + var res = sin(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sin_a9ab19(); + return vec4(); +} + +@fragment +fn fragment_main() { + sin_a9ab19(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sin_a9ab19(); +} diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl new file mode 100644 index 0000000000..522bef7a18 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(vec<3, fa>) -> vec<3, fa> +fn sinh_77a2a3() { + const arg_0 = vec3(1.); + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_77a2a3(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_77a2a3(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_77a2a3(); +} diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..cc0e402ed5 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_77a2a3() { + float3 res = (1.175201178f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_77a2a3(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_77a2a3(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_77a2a3(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..cc0e402ed5 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_77a2a3() { + float3 res = (1.175201178f).xxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_77a2a3(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_77a2a3(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_77a2a3(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.glsl b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.glsl new file mode 100644 index 0000000000..485304650b --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_77a2a3() { + vec3 res = vec3(1.175201178f); +} + +vec4 vertex_main() { + sinh_77a2a3(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_77a2a3() { + vec3 res = vec3(1.175201178f); +} + +void fragment_main() { + sinh_77a2a3(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_77a2a3() { + vec3 res = vec3(1.175201178f); +} + +void compute_main() { + sinh_77a2a3(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.msl b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.msl new file mode 100644 index 0000000000..2370cd24bc --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_77a2a3() { + float3 res = float3(1.175201178f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_77a2a3(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_77a2a3(); + return; +} + +kernel void compute_main() { + sinh_77a2a3(); + return; +} + diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.spvasm new file mode 100644 index 0000000000..b255da38ca --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_77a2a3 "sinh_77a2a3" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v3float = OpTypeVector %float 3 +%float_1_17520118 = OpConstant %float 1.17520118 + %15 = OpConstantComposite %v3float %float_1_17520118 %float_1_17520118 %float_1_17520118 +%_ptr_Function_v3float = OpTypePointer Function %v3float + %18 = OpConstantNull %v3float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_77a2a3 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v3float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sinh_77a2a3 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_77a2a3 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sinh_77a2a3 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.wgsl new file mode 100644 index 0000000000..20f48bcfe4 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/77a2a3.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sinh_77a2a3() { + const arg_0 = vec3(1.0); + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_77a2a3(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_77a2a3(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_77a2a3(); +} diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl b/test/tint/builtins/gen/var/sinh/9c1092.wgsl new file mode 100644 index 0000000000..8de44c683c --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(vec<2, fa>) -> vec<2, fa> +fn sinh_9c1092() { + const arg_0 = vec2(1.); + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_9c1092(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_9c1092(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_9c1092(); +} diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..9aef2e9ae0 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_9c1092() { + float2 res = (1.175201178f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_9c1092(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_9c1092(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_9c1092(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..9aef2e9ae0 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_9c1092() { + float2 res = (1.175201178f).xx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_9c1092(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_9c1092(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_9c1092(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.glsl b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.glsl new file mode 100644 index 0000000000..f6a45bd337 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_9c1092() { + vec2 res = vec2(1.175201178f); +} + +vec4 vertex_main() { + sinh_9c1092(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_9c1092() { + vec2 res = vec2(1.175201178f); +} + +void fragment_main() { + sinh_9c1092(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_9c1092() { + vec2 res = vec2(1.175201178f); +} + +void compute_main() { + sinh_9c1092(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.msl b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.msl new file mode 100644 index 0000000000..04d9187904 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_9c1092() { + float2 res = float2(1.175201178f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_9c1092(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_9c1092(); + return; +} + +kernel void compute_main() { + sinh_9c1092(); + return; +} + diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.spvasm new file mode 100644 index 0000000000..6ac0c69d6d --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.spvasm @@ -0,0 +1,67 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 33 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_9c1092 "sinh_9c1092" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void + %v2float = OpTypeVector %float 2 +%float_1_17520118 = OpConstant %float 1.17520118 + %15 = OpConstantComposite %v2float %float_1_17520118 %float_1_17520118 +%_ptr_Function_v2float = OpTypePointer Function %v2float + %18 = OpConstantNull %v2float + %19 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_9c1092 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v2float Function %18 + OpStore %res %15 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %19 + %21 = OpLabel + %22 = OpFunctionCall %void %sinh_9c1092 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %24 = OpLabel + %25 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %25 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_9c1092 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %31 = OpLabel + %32 = OpFunctionCall %void %sinh_9c1092 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.wgsl new file mode 100644 index 0000000000..0cd233accb --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/9c1092.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sinh_9c1092() { + const arg_0 = vec2(1.0); + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_9c1092(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_9c1092(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_9c1092(); +} diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl new file mode 100644 index 0000000000..894a49420e --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(vec<4, fa>) -> vec<4, fa> +fn sinh_a3da7c() { + const arg_0 = vec4(1.); + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_a3da7c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_a3da7c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_a3da7c(); +} diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..32eaad59ca --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_a3da7c() { + float4 res = (1.175201178f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_a3da7c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_a3da7c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_a3da7c(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..32eaad59ca --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_a3da7c() { + float4 res = (1.175201178f).xxxx; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_a3da7c(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_a3da7c(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_a3da7c(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.glsl b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.glsl new file mode 100644 index 0000000000..d0068d895b --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_a3da7c() { + vec4 res = vec4(1.175201178f); +} + +vec4 vertex_main() { + sinh_a3da7c(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_a3da7c() { + vec4 res = vec4(1.175201178f); +} + +void fragment_main() { + sinh_a3da7c(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_a3da7c() { + vec4 res = vec4(1.175201178f); +} + +void compute_main() { + sinh_a3da7c(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.msl b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.msl new file mode 100644 index 0000000000..2e9d194aa1 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_a3da7c() { + float4 res = float4(1.175201178f); +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_a3da7c(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_a3da7c(); + return; +} + +kernel void compute_main() { + sinh_a3da7c(); + return; +} + diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.spvasm new file mode 100644 index 0000000000..0c80b67e9b --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.spvasm @@ -0,0 +1,65 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 31 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_a3da7c "sinh_a3da7c" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_1_17520118 = OpConstant %float 1.17520118 + %14 = OpConstantComposite %v4float %float_1_17520118 %float_1_17520118 %float_1_17520118 %float_1_17520118 +%_ptr_Function_v4float = OpTypePointer Function %v4float + %17 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_a3da7c = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_v4float Function %5 + OpStore %res %14 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %17 + %19 = OpLabel + %20 = OpFunctionCall %void %sinh_a3da7c + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %22 = OpLabel + %23 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %23 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %26 = OpLabel + %27 = OpFunctionCall %void %sinh_a3da7c + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %29 = OpLabel + %30 = OpFunctionCall %void %sinh_a3da7c + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.wgsl new file mode 100644 index 0000000000..d54c4bcc5b --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/a3da7c.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sinh_a3da7c() { + const arg_0 = vec4(1.0); + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_a3da7c(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_a3da7c(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_a3da7c(); +} diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl b/test/tint/builtins/gen/var/sinh/c4df74.wgsl new file mode 100644 index 0000000000..38d778935e --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl @@ -0,0 +1,44 @@ +// Copyright 2022 The Tint Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//////////////////////////////////////////////////////////////////////////////// +// File generated by tools/src/cmd/gen +// using the template: +// test/tint/builtins/gen/gen.wgsl.tmpl +// +// Do not modify this file directly +//////////////////////////////////////////////////////////////////////////////// + + +// fn sinh(fa) -> fa +fn sinh_c4df74() { + const arg_0 = 1.; + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_c4df74(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_c4df74(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_c4df74(); +} diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.dxc.hlsl new file mode 100644 index 0000000000..05a156111b --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.dxc.hlsl @@ -0,0 +1,30 @@ +void sinh_c4df74() { + float res = 1.175201178f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_c4df74(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_c4df74(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_c4df74(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.fxc.hlsl new file mode 100644 index 0000000000..05a156111b --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.fxc.hlsl @@ -0,0 +1,30 @@ +void sinh_c4df74() { + float res = 1.175201178f; +} + +struct tint_symbol { + float4 value : SV_Position; +}; + +float4 vertex_main_inner() { + sinh_c4df74(); + return (0.0f).xxxx; +} + +tint_symbol vertex_main() { + const float4 inner_result = vertex_main_inner(); + tint_symbol wrapper_result = (tint_symbol)0; + wrapper_result.value = inner_result; + return wrapper_result; +} + +void fragment_main() { + sinh_c4df74(); + return; +} + +[numthreads(1, 1, 1)] +void compute_main() { + sinh_c4df74(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.glsl b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.glsl new file mode 100644 index 0000000000..49d48790e5 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.glsl @@ -0,0 +1,49 @@ +#version 310 es + +void sinh_c4df74() { + float res = 1.175201178f; +} + +vec4 vertex_main() { + sinh_c4df74(); + return vec4(0.0f); +} + +void main() { + gl_PointSize = 1.0; + vec4 inner_result = vertex_main(); + gl_Position = inner_result; + gl_Position.y = -(gl_Position.y); + gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); + return; +} +#version 310 es +precision mediump float; + +void sinh_c4df74() { + float res = 1.175201178f; +} + +void fragment_main() { + sinh_c4df74(); +} + +void main() { + fragment_main(); + return; +} +#version 310 es + +void sinh_c4df74() { + float res = 1.175201178f; +} + +void compute_main() { + sinh_c4df74(); +} + +layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; +void main() { + compute_main(); + return; +} diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.msl b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.msl new file mode 100644 index 0000000000..9cfbeae5b8 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.msl @@ -0,0 +1,33 @@ +#include + +using namespace metal; +void sinh_c4df74() { + float res = 1.175201178f; +} + +struct tint_symbol { + float4 value [[position]]; +}; + +float4 vertex_main_inner() { + sinh_c4df74(); + return float4(0.0f); +} + +vertex tint_symbol vertex_main() { + float4 const inner_result = vertex_main_inner(); + tint_symbol wrapper_result = {}; + wrapper_result.value = inner_result; + return wrapper_result; +} + +fragment void fragment_main() { + sinh_c4df74(); + return; +} + +kernel void compute_main() { + sinh_c4df74(); + return; +} + diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.spvasm b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.spvasm new file mode 100644 index 0000000000..8eb5089885 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.spvasm @@ -0,0 +1,64 @@ +; SPIR-V +; Version: 1.3 +; Generator: Google Tint Compiler; 0 +; Bound: 30 +; Schema: 0 + OpCapability Shader + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size + OpEntryPoint Fragment %fragment_main "fragment_main" + OpEntryPoint GLCompute %compute_main "compute_main" + OpExecutionMode %fragment_main OriginUpperLeft + OpExecutionMode %compute_main LocalSize 1 1 1 + OpName %value "value" + OpName %vertex_point_size "vertex_point_size" + OpName %sinh_c4df74 "sinh_c4df74" + OpName %res "res" + OpName %vertex_main_inner "vertex_main_inner" + OpName %vertex_main "vertex_main" + OpName %fragment_main "fragment_main" + OpName %compute_main "compute_main" + OpDecorate %value BuiltIn Position + OpDecorate %vertex_point_size BuiltIn PointSize + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %5 = OpConstantNull %v4float + %value = OpVariable %_ptr_Output_v4float Output %5 +%_ptr_Output_float = OpTypePointer Output %float + %8 = OpConstantNull %float +%vertex_point_size = OpVariable %_ptr_Output_float Output %8 + %void = OpTypeVoid + %9 = OpTypeFunction %void +%float_1_17520118 = OpConstant %float 1.17520118 +%_ptr_Function_float = OpTypePointer Function %float + %16 = OpTypeFunction %v4float + %float_1 = OpConstant %float 1 +%sinh_c4df74 = OpFunction %void None %9 + %12 = OpLabel + %res = OpVariable %_ptr_Function_float Function %8 + OpStore %res %float_1_17520118 + OpReturn + OpFunctionEnd +%vertex_main_inner = OpFunction %v4float None %16 + %18 = OpLabel + %19 = OpFunctionCall %void %sinh_c4df74 + OpReturnValue %5 + OpFunctionEnd +%vertex_main = OpFunction %void None %9 + %21 = OpLabel + %22 = OpFunctionCall %v4float %vertex_main_inner + OpStore %value %22 + OpStore %vertex_point_size %float_1 + OpReturn + OpFunctionEnd +%fragment_main = OpFunction %void None %9 + %25 = OpLabel + %26 = OpFunctionCall %void %sinh_c4df74 + OpReturn + OpFunctionEnd +%compute_main = OpFunction %void None %9 + %28 = OpLabel + %29 = OpFunctionCall %void %sinh_c4df74 + OpReturn + OpFunctionEnd diff --git a/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.wgsl b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.wgsl new file mode 100644 index 0000000000..c0e5f50594 --- /dev/null +++ b/test/tint/builtins/gen/var/sinh/c4df74.wgsl.expected.wgsl @@ -0,0 +1,20 @@ +fn sinh_c4df74() { + const arg_0 = 1.0; + var res = sinh(arg_0); +} + +@vertex +fn vertex_main() -> @builtin(position) vec4 { + sinh_c4df74(); + return vec4(); +} + +@fragment +fn fragment_main() { + sinh_c4df74(); +} + +@compute @workgroup_size(1) +fn compute_main() { + sinh_c4df74(); +}