Implement const-eval for `acos`

This CL adds const-eval for the `acos` builtin.

Bug: tint:1581
Change-Id: I01c0f48e73eedf87cf9c912715487f8eea44f64e
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/108341
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
diff --git a/src/tint/intrinsics.def b/src/tint/intrinsics.def
index 72a537f..8744257 100644
--- a/src/tint/intrinsics.def
+++ b/src/tint/intrinsics.def
@@ -406,8 +406,8 @@
 // https://gpuweb.github.io/gpuweb/wgsl/#builtin-functions
 @const fn abs<T: fia_fiu32_f16>(T) -> T
 @const fn abs<N: num, T: fia_fiu32_f16>(vec<N, T>) -> vec<N, T>
-fn acos<T: f32_f16>(T) -> T
-fn acos<N: num, T: f32_f16>(vec<N, T>) -> vec<N, T>
+@const fn acos<T: fa_f32_f16>(@test_value(0.87758256189) T) -> T
+@const fn acos<N: num, T: fa_f32_f16>(@test_value(0.87758256189) vec<N, T>) -> vec<N, T>
 fn acosh<T: f32_f16>(T) -> T
 fn acosh<N: num, T: f32_f16>(vec<N, T>) -> vec<N, T>
 @const fn all(bool) -> bool
diff --git a/src/tint/resolver/const_eval.cc b/src/tint/resolver/const_eval.cc
index 2795517..9681961 100644
--- a/src/tint/resolver/const_eval.cc
+++ b/src/tint/resolver/const_eval.cc
@@ -1595,6 +1595,23 @@
     return TransformElements(builder, ty, transform, args[0]);
 }
 
+ConstEval::Result ConstEval::acos(const sem::Type* ty,
+                                  utils::VectorRef<const sem::Constant*> args,
+                                  const Source& source) {
+    auto transform = [&](const sem::Constant* c0) {
+        auto create = [&](auto i) -> ImplResult {
+            using NumberT = decltype(i);
+            if (i < NumberT(-1.0) || i > NumberT(1.0)) {
+                AddError("acos must be called with a value in the range [-1, 1]", source);
+                return utils::Failure;
+            }
+            return CreateElement(builder, c0->Type(), NumberT(std::acos(i.value)));
+        };
+        return Dispatch_fa_f32_f16(create, c0);
+    };
+    return TransformElements(builder, ty, transform, args[0]);
+}
+
 ConstEval::Result ConstEval::all(const sem::Type* ty,
                                  utils::VectorRef<const sem::Constant*> args,
                                  const Source&) {
@@ -1613,11 +1630,11 @@
     auto transform = [&](const sem::Constant* c0) {
         auto create = [&](auto i) -> ImplResult {
             using NumberT = decltype(i);
-            if (i.value < NumberT(-1.0) || i.value > NumberT(1.0)) {
+            if (i < NumberT(-1.0) || i > NumberT(1.0)) {
                 AddError("asin must be called with a value in the range [-1, 1]", source);
                 return utils::Failure;
             }
-            return CreateElement(builder, c0->Type(), decltype(i)(std::asin(i.value)));
+            return CreateElement(builder, c0->Type(), NumberT(std::asin(i.value)));
         };
         return Dispatch_fa_f32_f16(create, c0);
     };
@@ -1659,11 +1676,11 @@
     auto transform = [&](const sem::Constant* c0) {
         auto create = [&](auto i) -> ImplResult {
             using NumberT = decltype(i);
-            if (i.value <= NumberT(-1.0) || i.value >= NumberT(1.0)) {
+            if (i <= NumberT(-1.0) || i >= NumberT(1.0)) {
                 AddError("atanh must be called with a value in the range (-1, 1)", source);
                 return utils::Failure;
             }
-            return CreateElement(builder, c0->Type(), decltype(i)(std::atanh(i.value)));
+            return CreateElement(builder, c0->Type(), NumberT(std::atanh(i.value)));
         };
         return Dispatch_fa_f32_f16(create, c0);
     };
diff --git a/src/tint/resolver/const_eval.h b/src/tint/resolver/const_eval.h
index 6337988..943f0ad 100644
--- a/src/tint/resolver/const_eval.h
+++ b/src/tint/resolver/const_eval.h
@@ -395,6 +395,15 @@
                utils::VectorRef<const sem::Constant*> args,
                const Source& source);
 
+    /// acos 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 acos(const sem::Type* ty,
+                utils::VectorRef<const sem::Constant*> args,
+                const Source& source);
+
     /// any 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 26ab4fa..0a8978f 100644
--- a/src/tint/resolver/const_eval_builtin_test.cc
+++ b/src/tint/resolver/const_eval_builtin_test.cc
@@ -426,6 +426,70 @@
 }
 
 template <typename T, bool finite_only>
+std::vector<Case> AcosCases() {
+    std::vector<Case> cases = {
+        // If i is +/-0, +/-0 is returned
+        C({T(0.87758256189)}, T(0.5)).FloatComp(),
+
+        C({T(1.0)}, T(0.0)),
+        C({-T(1.0)}, kPi<T>).FloatComp(),
+
+        // Vector tests
+        C({Vec(T(1.0), -T(1.0))}, Vec(T(0), kPi<T>)).FloatComp(),
+    };
+
+    ConcatIntoIf<!finite_only>(  //
+        cases, std::vector<Case>{
+                   // If i is NaN, NaN is returned
+                   C({T::NaN()}, T::NaN()),
+
+                   // Vector tests
+                   C({Vec(T::NaN(), T::NaN())}, Vec(T::NaN(), T::NaN())),
+               });
+
+    return cases;
+}
+INSTANTIATE_TEST_SUITE_P(  //
+    Acos,
+    ResolverConstEvalBuiltinTest,
+    testing::Combine(testing::Values(sem::BuiltinType::kAcos),
+                     testing::ValuesIn(Concat(AcosCases<AFloat, true>(),  //
+                                              AcosCases<f32, false>(),
+                                              AcosCases<f16, false>()))));
+
+TEST_F(ResolverConstEvalBuiltinTest, Acos_OutsideRange_Positive) {
+    auto* expr = Call(Source{{12, 24}}, "acos", Expr(1.1_a));
+
+    GlobalConst("C", expr);
+    EXPECT_FALSE(r()->Resolve());
+    EXPECT_EQ(r()->error(), "12:24 error: acos must be called with a value in the range [-1, 1]");
+}
+
+TEST_F(ResolverConstEvalBuiltinTest, Acos_OutsideRange_Negative) {
+    auto* expr = Call(Source{{12, 24}}, "acos", Negation(1.1_a));
+
+    GlobalConst("C", expr);
+    EXPECT_FALSE(r()->Resolve());
+    EXPECT_EQ(r()->error(), "12:24 error: acos must be called with a value in the range [-1, 1]");
+}
+
+TEST_F(ResolverConstEvalBuiltinTest, Acos_OutsideRange_Positive_INF) {
+    auto* expr = Call(Source{{12, 24}}, "acos", Expr(f32::Inf()));
+
+    GlobalConst("C", expr);
+    EXPECT_FALSE(r()->Resolve());
+    EXPECT_EQ(r()->error(), "12:24 error: acos must be called with a value in the range [-1, 1]");
+}
+
+TEST_F(ResolverConstEvalBuiltinTest, Acos_OutsideRange_Negative_INF) {
+    auto* expr = Call(Source{{12, 24}}, "acos", Negation(f32::Inf()));
+
+    GlobalConst("C", expr);
+    EXPECT_FALSE(r()->Resolve());
+    EXPECT_EQ(r()->error(), "12:24 error: acos must be called with a value in the range [-1, 1]");
+}
+
+template <typename T, bool finite_only>
 std::vector<Case> AsinCases() {
     std::vector<Case> cases = {
         // If i is +/-0, +/-0 is returned
diff --git a/src/tint/resolver/intrinsic_table.inl b/src/tint/resolver/intrinsic_table.inl
index 2109cf4..c270b5b 100644
--- a/src/tint/resolver/intrinsic_table.inl
+++ b/src/tint/resolver/intrinsic_table.inl
@@ -13473,24 +13473,24 @@
     /* num parameters */ 1,
     /* num template types */ 1,
     /* num template numbers */ 0,
-    /* template types */ &kTemplateTypes[22],
+    /* template types */ &kTemplateTypes[23],
     /* template numbers */ &kTemplateNumbers[10],
     /* parameters */ &kParameters[934],
     /* return matcher indices */ &kMatcherIndices[1],
     /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
-    /* const eval */ nullptr,
+    /* const eval */ &ConstEval::acos,
   },
   {
     /* [429] */
     /* num parameters */ 1,
     /* num template types */ 1,
     /* num template numbers */ 1,
-    /* template types */ &kTemplateTypes[22],
+    /* template types */ &kTemplateTypes[23],
     /* template numbers */ &kTemplateNumbers[6],
     /* parameters */ &kParameters[946],
     /* return matcher indices */ &kMatcherIndices[30],
     /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
-    /* const eval */ nullptr,
+    /* const eval */ &ConstEval::acos,
   },
   {
     /* [430] */
@@ -14020,8 +14020,8 @@
   },
   {
     /* [1] */
-    /* fn acos<T : f32_f16>(T) -> T */
-    /* fn acos<N : num, T : f32_f16>(vec<N, T>) -> vec<N, T> */
+    /* fn acos<T : fa_f32_f16>(@test_value(0.87758256189) T) -> T */
+    /* fn acos<N : num, T : fa_f32_f16>(@test_value(0.87758256189) vec<N, T>) -> vec<N, T> */
     /* num overloads */ 2,
     /* overloads */ &kOverloads[428],
   },
diff --git a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.dxc.hlsl
index 92b5765..4b568a1 100644
--- a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_004aff() {
-  vector<float16_t, 2> res = acos((float16_t(0.0h)).xx);
+  vector<float16_t, 2> res = (float16_t(1.5703125h)).xx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.glsl
index c4dd057..4fc4516 100644
--- a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.glsl
@@ -2,7 +2,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_004aff() {
-  f16vec2 res = acos(f16vec2(0.0hf));
+  f16vec2 res = f16vec2(1.5703125hf);
 }
 
 vec4 vertex_main() {
@@ -23,7 +23,7 @@
 precision mediump float;
 
 void acos_004aff() {
-  f16vec2 res = acos(f16vec2(0.0hf));
+  f16vec2 res = f16vec2(1.5703125hf);
 }
 
 void fragment_main() {
@@ -38,7 +38,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_004aff() {
-  f16vec2 res = acos(f16vec2(0.0hf));
+  f16vec2 res = f16vec2(1.5703125hf);
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.msl
index 4d9f5a2..4f26080 100644
--- a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_004aff() {
-  half2 res = acos(half2(0.0h));
+  half2 res = half2(1.5703125h);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.spvasm
index cbde032..3f2143c 100644
--- a/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/004aff.wgsl.expected.spvasm
@@ -8,7 +8,6 @@
                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,15 +36,16 @@
           %9 = OpTypeFunction %void
        %half = OpTypeFloat 16
      %v2half = OpTypeVector %half 2
-         %17 = OpConstantNull %v2half
+%half_0x1_92p_0 = OpConstant %half 0x1.92p+0
+         %16 = OpConstantComposite %v2half %half_0x1_92p_0 %half_0x1_92p_0
 %_ptr_Function_v2half = OpTypePointer Function %v2half
+         %19 = OpConstantNull %v2half
          %20 = OpTypeFunction %v4float
     %float_1 = OpConstant %float 1
 %acos_004aff = OpFunction %void None %9
          %12 = OpLabel
-        %res = OpVariable %_ptr_Function_v2half Function %17
-         %13 = OpExtInst %v2half %16 Acos %17
-               OpStore %res %13
+        %res = OpVariable %_ptr_Function_v2half Function %19
+               OpStore %res %16
                OpReturn
                OpFunctionEnd
 %vertex_main_inner = OpFunction %v4float None %20
diff --git a/test/tint/builtins/gen/literal/acos/069188.wgsl b/test/tint/builtins/gen/literal/acos/069188.wgsl
new file mode 100644
index 0000000..cfb7eb5
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.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 acos(vec<3, fa>) -> vec<3, fa>
+fn acos_069188() {
+  var res = acos(vec3(0.87758256189));
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_069188();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_069188();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_069188();
+}
diff --git a/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..6f38850
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_069188() {
+  float3 res = (0.5f).xxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_069188();
+  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() {
+  acos_069188();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_069188();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..6f38850
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_069188() {
+  float3 res = (0.5f).xxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_069188();
+  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() {
+  acos_069188();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_069188();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.glsl
new file mode 100644
index 0000000..52b4b92
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_069188() {
+  vec3 res = vec3(0.5f);
+}
+
+vec4 vertex_main() {
+  acos_069188();
+  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 acos_069188() {
+  vec3 res = vec3(0.5f);
+}
+
+void fragment_main() {
+  acos_069188();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_069188() {
+  vec3 res = vec3(0.5f);
+}
+
+void compute_main() {
+  acos_069188();
+}
+
+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/acos/069188.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.msl
new file mode 100644
index 0000000..89c1855
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_069188() {
+  float3 res = float3(0.5f);
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_069188();
+  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() {
+  acos_069188();
+  return;
+}
+
+kernel void compute_main() {
+  acos_069188();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.spvasm
new file mode 100644
index 0000000..276705b
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.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 %acos_069188 "acos_069188"
+               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_5 = OpConstant %float 0.5
+         %15 = OpConstantComposite %v3float %float_0_5 %float_0_5 %float_0_5
+%_ptr_Function_v3float = OpTypePointer Function %v3float
+         %18 = OpConstantNull %v3float
+         %19 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_069188 = 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 %acos_069188
+               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 %acos_069188
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %31 = OpLabel
+         %32 = OpFunctionCall %void %acos_069188
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.wgsl
new file mode 100644
index 0000000..bc2d242
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/069188.wgsl.expected.wgsl
@@ -0,0 +1,19 @@
+fn acos_069188() {
+  var res = acos(vec3(0.87758256188999995));
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_069188();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_069188();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_069188();
+}
diff --git a/test/tint/builtins/gen/literal/acos/15d35b.wgsl b/test/tint/builtins/gen/literal/acos/15d35b.wgsl
new file mode 100644
index 0000000..11d754d
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.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 acos(vec<2, fa>) -> vec<2, fa>
+fn acos_15d35b() {
+  var res = acos(vec2(0.87758256189));
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_15d35b();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_15d35b();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_15d35b();
+}
diff --git a/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..520cea3
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_15d35b() {
+  float2 res = (0.5f).xx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_15d35b();
+  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() {
+  acos_15d35b();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_15d35b();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..520cea3
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_15d35b() {
+  float2 res = (0.5f).xx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_15d35b();
+  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() {
+  acos_15d35b();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_15d35b();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.glsl
new file mode 100644
index 0000000..62efb04
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_15d35b() {
+  vec2 res = vec2(0.5f);
+}
+
+vec4 vertex_main() {
+  acos_15d35b();
+  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 acos_15d35b() {
+  vec2 res = vec2(0.5f);
+}
+
+void fragment_main() {
+  acos_15d35b();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_15d35b() {
+  vec2 res = vec2(0.5f);
+}
+
+void compute_main() {
+  acos_15d35b();
+}
+
+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/acos/15d35b.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.msl
new file mode 100644
index 0000000..7d0f60f
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_15d35b() {
+  float2 res = float2(0.5f);
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_15d35b();
+  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() {
+  acos_15d35b();
+  return;
+}
+
+kernel void compute_main() {
+  acos_15d35b();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.spvasm
new file mode 100644
index 0000000..f7cb110
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.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 %acos_15d35b "acos_15d35b"
+               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_5 = OpConstant %float 0.5
+         %15 = OpConstantComposite %v2float %float_0_5 %float_0_5
+%_ptr_Function_v2float = OpTypePointer Function %v2float
+         %18 = OpConstantNull %v2float
+         %19 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_15d35b = 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 %acos_15d35b
+               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 %acos_15d35b
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %31 = OpLabel
+         %32 = OpFunctionCall %void %acos_15d35b
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.wgsl
new file mode 100644
index 0000000..6c0f2e7
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/15d35b.wgsl.expected.wgsl
@@ -0,0 +1,19 @@
+fn acos_15d35b() {
+  var res = acos(vec2(0.87758256188999995));
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_15d35b();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_15d35b();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_15d35b();
+}
diff --git a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.dxc.hlsl
index 886ea95..5e05dc0 100644
--- a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_203628() {
-  vector<float16_t, 4> res = acos((float16_t(0.0h)).xxxx);
+  vector<float16_t, 4> res = (float16_t(1.5703125h)).xxxx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.glsl
index 0dbc198..d46fc9b 100644
--- a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.glsl
@@ -2,7 +2,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_203628() {
-  f16vec4 res = acos(f16vec4(0.0hf));
+  f16vec4 res = f16vec4(1.5703125hf);
 }
 
 vec4 vertex_main() {
@@ -23,7 +23,7 @@
 precision mediump float;
 
 void acos_203628() {
-  f16vec4 res = acos(f16vec4(0.0hf));
+  f16vec4 res = f16vec4(1.5703125hf);
 }
 
 void fragment_main() {
@@ -38,7 +38,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_203628() {
-  f16vec4 res = acos(f16vec4(0.0hf));
+  f16vec4 res = f16vec4(1.5703125hf);
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.msl
index 4aeebba..b8aaeab 100644
--- a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_203628() {
-  half4 res = acos(half4(0.0h));
+  half4 res = half4(1.5703125h);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.spvasm
index 7807c72..396ce5a 100644
--- a/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/203628.wgsl.expected.spvasm
@@ -8,7 +8,6 @@
                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,15 +36,16 @@
           %9 = OpTypeFunction %void
        %half = OpTypeFloat 16
      %v4half = OpTypeVector %half 4
-         %17 = OpConstantNull %v4half
+%half_0x1_92p_0 = OpConstant %half 0x1.92p+0
+         %16 = OpConstantComposite %v4half %half_0x1_92p_0 %half_0x1_92p_0 %half_0x1_92p_0 %half_0x1_92p_0
 %_ptr_Function_v4half = OpTypePointer Function %v4half
+         %19 = OpConstantNull %v4half
          %20 = OpTypeFunction %v4float
     %float_1 = OpConstant %float 1
 %acos_203628 = OpFunction %void None %9
          %12 = OpLabel
-        %res = OpVariable %_ptr_Function_v4half Function %17
-         %13 = OpExtInst %v4half %16 Acos %17
-               OpStore %res %13
+        %res = OpVariable %_ptr_Function_v4half Function %19
+               OpStore %res %16
                OpReturn
                OpFunctionEnd
 %vertex_main_inner = OpFunction %v4float None %20
diff --git a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.dxc.hlsl
index 87a3b3a..15b68db 100644
--- a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_303e3d() {
-  float16_t res = acos(float16_t(0.0h));
+  float16_t res = float16_t(1.5703125h);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.glsl
index 757f182..0ff0856 100644
--- a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.glsl
@@ -2,7 +2,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_303e3d() {
-  float16_t res = acos(0.0hf);
+  float16_t res = 1.5703125hf;
 }
 
 vec4 vertex_main() {
@@ -23,7 +23,7 @@
 precision mediump float;
 
 void acos_303e3d() {
-  float16_t res = acos(0.0hf);
+  float16_t res = 1.5703125hf;
 }
 
 void fragment_main() {
@@ -38,7 +38,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_303e3d() {
-  float16_t res = acos(0.0hf);
+  float16_t res = 1.5703125hf;
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.msl
index 913e3fd..d605822 100644
--- a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_303e3d() {
-  half res = acos(0.0h);
+  half res = 1.5703125h;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.spvasm
index 9df9a98..15253c4 100644
--- a/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/303e3d.wgsl.expected.spvasm
@@ -1,14 +1,13 @@
 ; SPIR-V
 ; Version: 1.3
 ; Generator: Google Tint Compiler; 0
-; Bound: 33
+; 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,36 +35,36 @@
        %void = OpTypeVoid
           %9 = OpTypeFunction %void
        %half = OpTypeFloat 16
-         %16 = OpConstantNull %half
+%half_0x1_92p_0 = OpConstant %half 0x1.92p+0
 %_ptr_Function_half = OpTypePointer Function %half
-         %19 = OpTypeFunction %v4float
+         %17 = OpConstantNull %half
+         %18 = OpTypeFunction %v4float
     %float_1 = OpConstant %float 1
 %acos_303e3d = OpFunction %void None %9
          %12 = OpLabel
-        %res = OpVariable %_ptr_Function_half Function %16
-         %13 = OpExtInst %half %15 Acos %16
-               OpStore %res %13
+        %res = OpVariable %_ptr_Function_half Function %17
+               OpStore %res %half_0x1_92p_0
                OpReturn
                OpFunctionEnd
-%vertex_main_inner = OpFunction %v4float None %19
-         %21 = OpLabel
-         %22 = OpFunctionCall %void %acos_303e3d
+%vertex_main_inner = OpFunction %v4float None %18
+         %20 = OpLabel
+         %21 = OpFunctionCall %void %acos_303e3d
                OpReturnValue %5
                OpFunctionEnd
 %vertex_main = OpFunction %void None %9
-         %24 = OpLabel
-         %25 = OpFunctionCall %v4float %vertex_main_inner
-               OpStore %value %25
+         %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
-         %28 = OpLabel
-         %29 = OpFunctionCall %void %acos_303e3d
+         %27 = OpLabel
+         %28 = OpFunctionCall %void %acos_303e3d
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %31 = OpLabel
-         %32 = OpFunctionCall %void %acos_303e3d
+         %30 = OpLabel
+         %31 = OpFunctionCall %void %acos_303e3d
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl b/test/tint/builtins/gen/literal/acos/489247.wgsl
index cc3e74b9..90a3c51 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl
+++ b/test/tint/builtins/gen/literal/acos/489247.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(f32) -> f32
 fn acos_489247() {
-  var res: f32 = acos(1.f);
+  var res: f32 = acos(0.87758256189f);
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.dxc.hlsl
index d370fc4..7106272 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_489247() {
-  float res = acos(1.0f);
+  float res = 0.5f;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.fxc.hlsl
index d370fc4..7106272 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_489247() {
-  float res = acos(1.0f);
+  float res = 0.5f;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.glsl
index 92c7481..620369c 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_489247() {
-  float res = acos(1.0f);
+  float res = 0.5f;
 }
 
 vec4 vertex_main() {
@@ -21,7 +21,7 @@
 precision mediump float;
 
 void acos_489247() {
-  float res = acos(1.0f);
+  float res = 0.5f;
 }
 
 void fragment_main() {
@@ -35,7 +35,7 @@
 #version 310 es
 
 void acos_489247() {
-  float res = acos(1.0f);
+  float res = 0.5f;
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.msl
index a7bb168..4e862ab 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_489247() {
-  float res = acos(1.0f);
+  float res = 0.5f;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.spvasm
index 5a49920..979b1a2 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/489247.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_5 = OpConstant %float 0.5
 %_ptr_Function_float = OpTypePointer Function %float
-         %18 = OpTypeFunction %v4float
+         %16 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_489247 = OpFunction %void None %9
          %12 = OpLabel
         %res = OpVariable %_ptr_Function_float Function %8
-         %13 = OpExtInst %float %14 Acos %float_1
-               OpStore %res %13
+               OpStore %res %float_0_5
                OpReturn
                OpFunctionEnd
-%vertex_main_inner = OpFunction %v4float None %18
-         %20 = OpLabel
-         %21 = OpFunctionCall %void %acos_489247
+%vertex_main_inner = OpFunction %v4float None %16
+         %18 = OpLabel
+         %19 = OpFunctionCall %void %acos_489247
                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 %acos_489247
+         %25 = OpLabel
+         %26 = OpFunctionCall %void %acos_489247
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %29 = OpLabel
-         %30 = OpFunctionCall %void %acos_489247
+         %28 = OpLabel
+         %29 = OpFunctionCall %void %acos_489247
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.wgsl
index 3a8d400..824739c 100644
--- a/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/literal/acos/489247.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_489247() {
-  var res : f32 = acos(1.0f);
+  var res : f32 = acos(0.87758255f);
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/4dac75.wgsl b/test/tint/builtins/gen/literal/acos/4dac75.wgsl
new file mode 100644
index 0000000..ead2d67
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.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 acos(vec<4, fa>) -> vec<4, fa>
+fn acos_4dac75() {
+  var res = acos(vec4(0.87758256189));
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_4dac75();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_4dac75();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_4dac75();
+}
diff --git a/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..a579567
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_4dac75() {
+  float4 res = (0.5f).xxxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_4dac75();
+  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() {
+  acos_4dac75();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_4dac75();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..a579567
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_4dac75() {
+  float4 res = (0.5f).xxxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_4dac75();
+  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() {
+  acos_4dac75();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_4dac75();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.glsl
new file mode 100644
index 0000000..e9cbbf7
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_4dac75() {
+  vec4 res = vec4(0.5f);
+}
+
+vec4 vertex_main() {
+  acos_4dac75();
+  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 acos_4dac75() {
+  vec4 res = vec4(0.5f);
+}
+
+void fragment_main() {
+  acos_4dac75();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_4dac75() {
+  vec4 res = vec4(0.5f);
+}
+
+void compute_main() {
+  acos_4dac75();
+}
+
+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/acos/4dac75.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.msl
new file mode 100644
index 0000000..0047a7a
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_4dac75() {
+  float4 res = float4(0.5f);
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_4dac75();
+  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() {
+  acos_4dac75();
+  return;
+}
+
+kernel void compute_main() {
+  acos_4dac75();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.spvasm
new file mode 100644
index 0000000..c7c08cb
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.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 %acos_4dac75 "acos_4dac75"
+               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_5 = OpConstant %float 0.5
+         %14 = OpConstantComposite %v4float %float_0_5 %float_0_5 %float_0_5 %float_0_5
+%_ptr_Function_v4float = OpTypePointer Function %v4float
+         %17 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_4dac75 = 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 %acos_4dac75
+               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 %acos_4dac75
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %29 = OpLabel
+         %30 = OpFunctionCall %void %acos_4dac75
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.wgsl
new file mode 100644
index 0000000..60ecbc1
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/4dac75.wgsl.expected.wgsl
@@ -0,0 +1,19 @@
+fn acos_4dac75() {
+  var res = acos(vec4(0.87758256188999995));
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_4dac75();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_4dac75();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_4dac75();
+}
diff --git a/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl
new file mode 100644
index 0000000..9a82368
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.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 acos(fa) -> fa
+fn acos_5e9ad2() {
+  var res = acos(0.87758256189);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_5e9ad2();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_5e9ad2();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_5e9ad2();
+}
diff --git a/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..a3b97e5
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_5e9ad2();
+  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() {
+  acos_5e9ad2();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_5e9ad2();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..a3b97e5
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_5e9ad2();
+  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() {
+  acos_5e9ad2();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_5e9ad2();
+  return;
+}
diff --git a/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.glsl
new file mode 100644
index 0000000..38a7985
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+vec4 vertex_main() {
+  acos_5e9ad2();
+  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 acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+void fragment_main() {
+  acos_5e9ad2();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+void compute_main() {
+  acos_5e9ad2();
+}
+
+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/acos/5e9ad2.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.msl
new file mode 100644
index 0000000..4200020
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_5e9ad2();
+  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() {
+  acos_5e9ad2();
+  return;
+}
+
+kernel void compute_main() {
+  acos_5e9ad2();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.spvasm
new file mode 100644
index 0000000..18d5166
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.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 %acos_5e9ad2 "acos_5e9ad2"
+               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_5 = OpConstant %float 0.5
+%_ptr_Function_float = OpTypePointer Function %float
+         %16 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_5e9ad2 = OpFunction %void None %9
+         %12 = OpLabel
+        %res = OpVariable %_ptr_Function_float Function %8
+               OpStore %res %float_0_5
+               OpReturn
+               OpFunctionEnd
+%vertex_main_inner = OpFunction %v4float None %16
+         %18 = OpLabel
+         %19 = OpFunctionCall %void %acos_5e9ad2
+               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 %acos_5e9ad2
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %28 = OpLabel
+         %29 = OpFunctionCall %void %acos_5e9ad2
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.wgsl
new file mode 100644
index 0000000..352caf2
--- /dev/null
+++ b/test/tint/builtins/gen/literal/acos/5e9ad2.wgsl.expected.wgsl
@@ -0,0 +1,19 @@
+fn acos_5e9ad2() {
+  var res = acos(0.87758256188999995);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_5e9ad2();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_5e9ad2();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_5e9ad2();
+}
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl
index b820523..2f33780 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(vec<4, f32>) -> vec<4, f32>
 fn acos_8e2acf() {
-  var res: vec4<f32> = acos(vec4<f32>(1.f));
+  var res: vec4<f32> = acos(vec4<f32>(0.87758256189f));
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.dxc.hlsl
index 7877019c..0bbec64 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_8e2acf() {
-  float4 res = acos((1.0f).xxxx);
+  float4 res = (0.5f).xxxx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.fxc.hlsl
index 7877019c..0bbec64 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_8e2acf() {
-  float4 res = acos((1.0f).xxxx);
+  float4 res = (0.5f).xxxx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.glsl
index d411a31..6ea6e20 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_8e2acf() {
-  vec4 res = acos(vec4(1.0f));
+  vec4 res = vec4(0.5f);
 }
 
 vec4 vertex_main() {
@@ -21,7 +21,7 @@
 precision mediump float;
 
 void acos_8e2acf() {
-  vec4 res = acos(vec4(1.0f));
+  vec4 res = vec4(0.5f);
 }
 
 void fragment_main() {
@@ -35,7 +35,7 @@
 #version 310 es
 
 void acos_8e2acf() {
-  vec4 res = acos(vec4(1.0f));
+  vec4 res = vec4(0.5f);
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.msl
index 4dfc1a7..2f43d40 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_8e2acf() {
-  float4 res = acos(float4(1.0f));
+  float4 res = float4(0.5f);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.spvasm
index d0c94e0..7932b7a 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.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_5 = OpConstant %float 0.5
+         %14 = OpConstantComposite %v4float %float_0_5 %float_0_5 %float_0_5 %float_0_5
 %_ptr_Function_v4float = OpTypePointer Function %v4float
-         %19 = OpTypeFunction %v4float
+         %17 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_8e2acf = OpFunction %void None %9
          %12 = OpLabel
         %res = OpVariable %_ptr_Function_v4float Function %5
-         %13 = OpExtInst %v4float %14 Acos %16
-               OpStore %res %13
+               OpStore %res %14
                OpReturn
                OpFunctionEnd
-%vertex_main_inner = OpFunction %v4float None %19
-         %21 = OpLabel
-         %22 = OpFunctionCall %void %acos_8e2acf
+%vertex_main_inner = OpFunction %v4float None %17
+         %19 = OpLabel
+         %20 = OpFunctionCall %void %acos_8e2acf
                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 %acos_8e2acf
+         %26 = OpLabel
+         %27 = OpFunctionCall %void %acos_8e2acf
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %30 = OpLabel
-         %31 = OpFunctionCall %void %acos_8e2acf
+         %29 = OpLabel
+         %30 = OpFunctionCall %void %acos_8e2acf
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.wgsl
index 8f38b08..ec5ec4f 100644
--- a/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/literal/acos/8e2acf.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_8e2acf() {
-  var res : vec4<f32> = acos(vec4<f32>(1.0f));
+  var res : vec4<f32> = acos(vec4<f32>(0.87758255f));
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl b/test/tint/builtins/gen/literal/acos/a610c4.wgsl
index 2d80fb3..ffdc0d5 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl
+++ b/test/tint/builtins/gen/literal/acos/a610c4.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(vec<3, f32>) -> vec<3, f32>
 fn acos_a610c4() {
-  var res: vec3<f32> = acos(vec3<f32>(1.f));
+  var res: vec3<f32> = acos(vec3<f32>(0.87758256189f));
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.dxc.hlsl
index ff28d83..8397494 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_a610c4() {
-  float3 res = acos((1.0f).xxx);
+  float3 res = (0.5f).xxx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.fxc.hlsl
index ff28d83..8397494 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_a610c4() {
-  float3 res = acos((1.0f).xxx);
+  float3 res = (0.5f).xxx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.glsl
index 4b34d38..72df7ad 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_a610c4() {
-  vec3 res = acos(vec3(1.0f));
+  vec3 res = vec3(0.5f);
 }
 
 vec4 vertex_main() {
@@ -21,7 +21,7 @@
 precision mediump float;
 
 void acos_a610c4() {
-  vec3 res = acos(vec3(1.0f));
+  vec3 res = vec3(0.5f);
 }
 
 void fragment_main() {
@@ -35,7 +35,7 @@
 #version 310 es
 
 void acos_a610c4() {
-  vec3 res = acos(vec3(1.0f));
+  vec3 res = vec3(0.5f);
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.msl
index 4af410f..01c9eb3 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_a610c4() {
-  float3 res = acos(float3(1.0f));
+  float3 res = float3(0.5f);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.spvasm
index 6ddef0d..5e8e49c 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/a610c4.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_5 = OpConstant %float 0.5
+         %15 = OpConstantComposite %v3float %float_0_5 %float_0_5 %float_0_5
 %_ptr_Function_v3float = OpTypePointer Function %v3float
-         %20 = OpConstantNull %v3float
-         %21 = OpTypeFunction %v4float
+         %18 = OpConstantNull %v3float
+         %19 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_a610c4 = OpFunction %void None %9
          %12 = OpLabel
-        %res = OpVariable %_ptr_Function_v3float Function %20
-         %13 = OpExtInst %v3float %15 Acos %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 %acos_a610c4
+%vertex_main_inner = OpFunction %v4float None %19
+         %21 = OpLabel
+         %22 = OpFunctionCall %void %acos_a610c4
                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 %acos_a610c4
+         %28 = OpLabel
+         %29 = OpFunctionCall %void %acos_a610c4
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %32 = OpLabel
-         %33 = OpFunctionCall %void %acos_a610c4
+         %31 = OpLabel
+         %32 = OpFunctionCall %void %acos_a610c4
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.wgsl
index 14105fe..5a0efef 100644
--- a/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/literal/acos/a610c4.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_a610c4() {
-  var res : vec3<f32> = acos(vec3<f32>(1.0f));
+  var res : vec3<f32> = acos(vec3<f32>(0.87758255f));
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl b/test/tint/builtins/gen/literal/acos/dfc915.wgsl
index 929653a..476ee1f 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl
+++ b/test/tint/builtins/gen/literal/acos/dfc915.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(vec<2, f32>) -> vec<2, f32>
 fn acos_dfc915() {
-  var res: vec2<f32> = acos(vec2<f32>(1.f));
+  var res: vec2<f32> = acos(vec2<f32>(0.87758256189f));
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.dxc.hlsl
index fe14cb4..df45b98 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_dfc915() {
-  float2 res = acos((1.0f).xx);
+  float2 res = (0.5f).xx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.fxc.hlsl
index fe14cb4..df45b98 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_dfc915() {
-  float2 res = acos((1.0f).xx);
+  float2 res = (0.5f).xx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.glsl
index a2119fc..b903811 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_dfc915() {
-  vec2 res = acos(vec2(1.0f));
+  vec2 res = vec2(0.5f);
 }
 
 vec4 vertex_main() {
@@ -21,7 +21,7 @@
 precision mediump float;
 
 void acos_dfc915() {
-  vec2 res = acos(vec2(1.0f));
+  vec2 res = vec2(0.5f);
 }
 
 void fragment_main() {
@@ -35,7 +35,7 @@
 #version 310 es
 
 void acos_dfc915() {
-  vec2 res = acos(vec2(1.0f));
+  vec2 res = vec2(0.5f);
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.msl
index 7673132..39e0c61 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_dfc915() {
-  float2 res = acos(float2(1.0f));
+  float2 res = float2(0.5f);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.spvasm
index 983a055..cbdba38 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/dfc915.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_5 = OpConstant %float 0.5
+         %15 = OpConstantComposite %v2float %float_0_5 %float_0_5
 %_ptr_Function_v2float = OpTypePointer Function %v2float
-         %20 = OpConstantNull %v2float
-         %21 = OpTypeFunction %v4float
+         %18 = OpConstantNull %v2float
+         %19 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_dfc915 = OpFunction %void None %9
          %12 = OpLabel
-        %res = OpVariable %_ptr_Function_v2float Function %20
-         %13 = OpExtInst %v2float %15 Acos %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 %acos_dfc915
+%vertex_main_inner = OpFunction %v4float None %19
+         %21 = OpLabel
+         %22 = OpFunctionCall %void %acos_dfc915
                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 %acos_dfc915
+         %28 = OpLabel
+         %29 = OpFunctionCall %void %acos_dfc915
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %32 = OpLabel
-         %33 = OpFunctionCall %void %acos_dfc915
+         %31 = OpLabel
+         %32 = OpFunctionCall %void %acos_dfc915
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.wgsl b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.wgsl
index fcc29cf..d49c05b 100644
--- a/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/literal/acos/dfc915.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_dfc915() {
-  var res : vec2<f32> = acos(vec2<f32>(1.0f));
+  var res : vec2<f32> = acos(vec2<f32>(0.87758255f));
 }
 
 @vertex
diff --git a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.dxc.hlsl
index 7cf8ba2..87a5f7d 100644
--- a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_f47057() {
-  vector<float16_t, 3> res = acos((float16_t(0.0h)).xxx);
+  vector<float16_t, 3> res = (float16_t(1.5703125h)).xxx;
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.glsl b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.glsl
index 4e2cbd0..60d4629 100644
--- a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.glsl
@@ -2,7 +2,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_f47057() {
-  f16vec3 res = acos(f16vec3(0.0hf));
+  f16vec3 res = f16vec3(1.5703125hf);
 }
 
 vec4 vertex_main() {
@@ -23,7 +23,7 @@
 precision mediump float;
 
 void acos_f47057() {
-  f16vec3 res = acos(f16vec3(0.0hf));
+  f16vec3 res = f16vec3(1.5703125hf);
 }
 
 void fragment_main() {
@@ -38,7 +38,7 @@
 #extension GL_AMD_gpu_shader_half_float : require
 
 void acos_f47057() {
-  f16vec3 res = acos(f16vec3(0.0hf));
+  f16vec3 res = f16vec3(1.5703125hf);
 }
 
 void compute_main() {
diff --git a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.msl b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.msl
index e74d29b..568f757 100644
--- a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.msl
+++ b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_f47057() {
-  half3 res = acos(half3(0.0h));
+  half3 res = half3(1.5703125h);
 }
 
 struct tint_symbol {
diff --git a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.spvasm b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.spvasm
index 00895bf..3d7723b 100644
--- a/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/literal/acos/f47057.wgsl.expected.spvasm
@@ -8,7 +8,6 @@
                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,15 +36,16 @@
           %9 = OpTypeFunction %void
        %half = OpTypeFloat 16
      %v3half = OpTypeVector %half 3
-         %17 = OpConstantNull %v3half
+%half_0x1_92p_0 = OpConstant %half 0x1.92p+0
+         %16 = OpConstantComposite %v3half %half_0x1_92p_0 %half_0x1_92p_0 %half_0x1_92p_0
 %_ptr_Function_v3half = OpTypePointer Function %v3half
+         %19 = OpConstantNull %v3half
          %20 = OpTypeFunction %v4float
     %float_1 = OpConstant %float 1
 %acos_f47057 = OpFunction %void None %9
          %12 = OpLabel
-        %res = OpVariable %_ptr_Function_v3half Function %17
-         %13 = OpExtInst %v3half %16 Acos %17
-               OpStore %res %13
+        %res = OpVariable %_ptr_Function_v3half Function %19
+               OpStore %res %16
                OpReturn
                OpFunctionEnd
 %vertex_main_inner = OpFunction %v4float None %20
diff --git a/test/tint/builtins/gen/var/acos/069188.wgsl b/test/tint/builtins/gen/var/acos/069188.wgsl
new file mode 100644
index 0000000..9aeaa3c
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.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 acos(vec<3, fa>) -> vec<3, fa>
+fn acos_069188() {
+  const arg_0 = vec3(0.87758256189);
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_069188();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_069188();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_069188();
+}
diff --git a/test/tint/builtins/gen/var/acos/069188.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..6f38850
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_069188() {
+  float3 res = (0.5f).xxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_069188();
+  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() {
+  acos_069188();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_069188();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/069188.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..6f38850
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_069188() {
+  float3 res = (0.5f).xxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_069188();
+  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() {
+  acos_069188();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_069188();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/069188.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.glsl
new file mode 100644
index 0000000..52b4b92
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_069188() {
+  vec3 res = vec3(0.5f);
+}
+
+vec4 vertex_main() {
+  acos_069188();
+  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 acos_069188() {
+  vec3 res = vec3(0.5f);
+}
+
+void fragment_main() {
+  acos_069188();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_069188() {
+  vec3 res = vec3(0.5f);
+}
+
+void compute_main() {
+  acos_069188();
+}
+
+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/acos/069188.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.msl
new file mode 100644
index 0000000..89c1855
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_069188() {
+  float3 res = float3(0.5f);
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_069188();
+  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() {
+  acos_069188();
+  return;
+}
+
+kernel void compute_main() {
+  acos_069188();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/var/acos/069188.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.spvasm
new file mode 100644
index 0000000..276705b
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.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 %acos_069188 "acos_069188"
+               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_5 = OpConstant %float 0.5
+         %15 = OpConstantComposite %v3float %float_0_5 %float_0_5 %float_0_5
+%_ptr_Function_v3float = OpTypePointer Function %v3float
+         %18 = OpConstantNull %v3float
+         %19 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_069188 = 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 %acos_069188
+               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 %acos_069188
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %31 = OpLabel
+         %32 = OpFunctionCall %void %acos_069188
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/069188.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.wgsl
new file mode 100644
index 0000000..d9a2628
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/069188.wgsl.expected.wgsl
@@ -0,0 +1,20 @@
+fn acos_069188() {
+  const arg_0 = vec3(0.87758256188999995);
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_069188();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_069188();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_069188();
+}
diff --git a/test/tint/builtins/gen/var/acos/15d35b.wgsl b/test/tint/builtins/gen/var/acos/15d35b.wgsl
new file mode 100644
index 0000000..eba7fb2
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.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 acos(vec<2, fa>) -> vec<2, fa>
+fn acos_15d35b() {
+  const arg_0 = vec2(0.87758256189);
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_15d35b();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_15d35b();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_15d35b();
+}
diff --git a/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..520cea3
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_15d35b() {
+  float2 res = (0.5f).xx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_15d35b();
+  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() {
+  acos_15d35b();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_15d35b();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..520cea3
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_15d35b() {
+  float2 res = (0.5f).xx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_15d35b();
+  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() {
+  acos_15d35b();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_15d35b();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.glsl
new file mode 100644
index 0000000..62efb04
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_15d35b() {
+  vec2 res = vec2(0.5f);
+}
+
+vec4 vertex_main() {
+  acos_15d35b();
+  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 acos_15d35b() {
+  vec2 res = vec2(0.5f);
+}
+
+void fragment_main() {
+  acos_15d35b();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_15d35b() {
+  vec2 res = vec2(0.5f);
+}
+
+void compute_main() {
+  acos_15d35b();
+}
+
+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/acos/15d35b.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.msl
new file mode 100644
index 0000000..7d0f60f
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_15d35b() {
+  float2 res = float2(0.5f);
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_15d35b();
+  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() {
+  acos_15d35b();
+  return;
+}
+
+kernel void compute_main() {
+  acos_15d35b();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.spvasm
new file mode 100644
index 0000000..f7cb110
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.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 %acos_15d35b "acos_15d35b"
+               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_5 = OpConstant %float 0.5
+         %15 = OpConstantComposite %v2float %float_0_5 %float_0_5
+%_ptr_Function_v2float = OpTypePointer Function %v2float
+         %18 = OpConstantNull %v2float
+         %19 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_15d35b = 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 %acos_15d35b
+               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 %acos_15d35b
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %31 = OpLabel
+         %32 = OpFunctionCall %void %acos_15d35b
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.wgsl
new file mode 100644
index 0000000..0f0ef02
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/15d35b.wgsl.expected.wgsl
@@ -0,0 +1,20 @@
+fn acos_15d35b() {
+  const arg_0 = vec2(0.87758256188999995);
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_15d35b();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_15d35b();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_15d35b();
+}
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl b/test/tint/builtins/gen/var/acos/489247.wgsl
index 5cfbdc1..9135e80 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(f32) -> f32
 fn acos_489247() {
-  var arg_0 = 1.f;
+  var arg_0 = 0.87758256189f;
   var res: f32 = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.dxc.hlsl
index 9f53955..ee0727e 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_489247() {
-  float arg_0 = 1.0f;
+  float arg_0 = 0.87758255f;
   float res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.fxc.hlsl
index 9f53955..ee0727e 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_489247() {
-  float arg_0 = 1.0f;
+  float arg_0 = 0.87758255f;
   float res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.glsl
index bd507c7..c531807 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_489247() {
-  float arg_0 = 1.0f;
+  float arg_0 = 0.87758255f;
   float res = acos(arg_0);
 }
 
@@ -22,7 +22,7 @@
 precision mediump float;
 
 void acos_489247() {
-  float arg_0 = 1.0f;
+  float arg_0 = 0.87758255f;
   float res = acos(arg_0);
 }
 
@@ -37,7 +37,7 @@
 #version 310 es
 
 void acos_489247() {
-  float arg_0 = 1.0f;
+  float arg_0 = 0.87758255f;
   float res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.msl
index 273a93f..6b0025a 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.msl
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_489247() {
-  float arg_0 = 1.0f;
+  float arg_0 = 0.87758255f;
   float res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.spvasm
index 854923b..24db5a4 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.spvasm
@@ -1,7 +1,7 @@
 ; SPIR-V
 ; Version: 1.3
 ; Generator: Google Tint Compiler; 0
-; Bound: 33
+; Bound: 34
 ; Schema: 0
                OpCapability Shader
          %17 = OpExtInstImport "GLSL.std.450"
@@ -32,14 +32,15 @@
 %vertex_point_size = OpVariable %_ptr_Output_float Output %8
        %void = OpTypeVoid
           %9 = OpTypeFunction %void
-    %float_1 = OpConstant %float 1
+%float_0_87758255 = OpConstant %float 0.87758255
 %_ptr_Function_float = OpTypePointer Function %float
          %20 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_489247 = OpFunction %void None %9
          %12 = OpLabel
       %arg_0 = OpVariable %_ptr_Function_float Function %8
         %res = OpVariable %_ptr_Function_float Function %8
-               OpStore %arg_0 %float_1
+               OpStore %arg_0 %float_0_87758255
          %18 = OpLoad %float %arg_0
          %16 = OpExtInst %float %17 Acos %18
                OpStore %res %16
@@ -58,12 +59,12 @@
                OpReturn
                OpFunctionEnd
 %fragment_main = OpFunction %void None %9
-         %28 = OpLabel
-         %29 = OpFunctionCall %void %acos_489247
+         %29 = OpLabel
+         %30 = OpFunctionCall %void %acos_489247
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %31 = OpLabel
-         %32 = OpFunctionCall %void %acos_489247
+         %32 = OpLabel
+         %33 = OpFunctionCall %void %acos_489247
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.wgsl
index 9ec8e7a..aecbafa 100644
--- a/test/tint/builtins/gen/var/acos/489247.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/var/acos/489247.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_489247() {
-  var arg_0 = 1.0f;
+  var arg_0 = 0.87758255f;
   var res : f32 = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/4dac75.wgsl b/test/tint/builtins/gen/var/acos/4dac75.wgsl
new file mode 100644
index 0000000..fd5d689
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.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 acos(vec<4, fa>) -> vec<4, fa>
+fn acos_4dac75() {
+  const arg_0 = vec4(0.87758256189);
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_4dac75();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_4dac75();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_4dac75();
+}
diff --git a/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..a579567
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_4dac75() {
+  float4 res = (0.5f).xxxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_4dac75();
+  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() {
+  acos_4dac75();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_4dac75();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..a579567
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_4dac75() {
+  float4 res = (0.5f).xxxx;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_4dac75();
+  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() {
+  acos_4dac75();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_4dac75();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.glsl
new file mode 100644
index 0000000..e9cbbf7
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_4dac75() {
+  vec4 res = vec4(0.5f);
+}
+
+vec4 vertex_main() {
+  acos_4dac75();
+  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 acos_4dac75() {
+  vec4 res = vec4(0.5f);
+}
+
+void fragment_main() {
+  acos_4dac75();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_4dac75() {
+  vec4 res = vec4(0.5f);
+}
+
+void compute_main() {
+  acos_4dac75();
+}
+
+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/acos/4dac75.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.msl
new file mode 100644
index 0000000..0047a7a
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_4dac75() {
+  float4 res = float4(0.5f);
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_4dac75();
+  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() {
+  acos_4dac75();
+  return;
+}
+
+kernel void compute_main() {
+  acos_4dac75();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.spvasm
new file mode 100644
index 0000000..c7c08cb
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.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 %acos_4dac75 "acos_4dac75"
+               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_5 = OpConstant %float 0.5
+         %14 = OpConstantComposite %v4float %float_0_5 %float_0_5 %float_0_5 %float_0_5
+%_ptr_Function_v4float = OpTypePointer Function %v4float
+         %17 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_4dac75 = 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 %acos_4dac75
+               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 %acos_4dac75
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %29 = OpLabel
+         %30 = OpFunctionCall %void %acos_4dac75
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.wgsl
new file mode 100644
index 0000000..2609097
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/4dac75.wgsl.expected.wgsl
@@ -0,0 +1,20 @@
+fn acos_4dac75() {
+  const arg_0 = vec4(0.87758256188999995);
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_4dac75();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_4dac75();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_4dac75();
+}
diff --git a/test/tint/builtins/gen/var/acos/5e9ad2.wgsl b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl
new file mode 100644
index 0000000..1d6a853
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.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 acos(fa) -> fa
+fn acos_5e9ad2() {
+  const arg_0 = 0.87758256189;
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_5e9ad2();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_5e9ad2();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_5e9ad2();
+}
diff --git a/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.dxc.hlsl
new file mode 100644
index 0000000..a3b97e5
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.dxc.hlsl
@@ -0,0 +1,30 @@
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_5e9ad2();
+  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() {
+  acos_5e9ad2();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_5e9ad2();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.fxc.hlsl
new file mode 100644
index 0000000..a3b97e5
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.fxc.hlsl
@@ -0,0 +1,30 @@
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+struct tint_symbol {
+  float4 value : SV_Position;
+};
+
+float4 vertex_main_inner() {
+  acos_5e9ad2();
+  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() {
+  acos_5e9ad2();
+  return;
+}
+
+[numthreads(1, 1, 1)]
+void compute_main() {
+  acos_5e9ad2();
+  return;
+}
diff --git a/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.glsl
new file mode 100644
index 0000000..38a7985
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.glsl
@@ -0,0 +1,49 @@
+#version 310 es
+
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+vec4 vertex_main() {
+  acos_5e9ad2();
+  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 acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+void fragment_main() {
+  acos_5e9ad2();
+}
+
+void main() {
+  fragment_main();
+  return;
+}
+#version 310 es
+
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+void compute_main() {
+  acos_5e9ad2();
+}
+
+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/acos/5e9ad2.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.msl
new file mode 100644
index 0000000..4200020
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.msl
@@ -0,0 +1,33 @@
+#include <metal_stdlib>
+
+using namespace metal;
+void acos_5e9ad2() {
+  float res = 0.5f;
+}
+
+struct tint_symbol {
+  float4 value [[position]];
+};
+
+float4 vertex_main_inner() {
+  acos_5e9ad2();
+  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() {
+  acos_5e9ad2();
+  return;
+}
+
+kernel void compute_main() {
+  acos_5e9ad2();
+  return;
+}
+
diff --git a/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.spvasm
new file mode 100644
index 0000000..18d5166
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.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 %acos_5e9ad2 "acos_5e9ad2"
+               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_5 = OpConstant %float 0.5
+%_ptr_Function_float = OpTypePointer Function %float
+         %16 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
+%acos_5e9ad2 = OpFunction %void None %9
+         %12 = OpLabel
+        %res = OpVariable %_ptr_Function_float Function %8
+               OpStore %res %float_0_5
+               OpReturn
+               OpFunctionEnd
+%vertex_main_inner = OpFunction %v4float None %16
+         %18 = OpLabel
+         %19 = OpFunctionCall %void %acos_5e9ad2
+               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 %acos_5e9ad2
+               OpReturn
+               OpFunctionEnd
+%compute_main = OpFunction %void None %9
+         %28 = OpLabel
+         %29 = OpFunctionCall %void %acos_5e9ad2
+               OpReturn
+               OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.wgsl
new file mode 100644
index 0000000..1999db3
--- /dev/null
+++ b/test/tint/builtins/gen/var/acos/5e9ad2.wgsl.expected.wgsl
@@ -0,0 +1,20 @@
+fn acos_5e9ad2() {
+  const arg_0 = 0.87758256188999995;
+  var res = acos(arg_0);
+}
+
+@vertex
+fn vertex_main() -> @builtin(position) vec4<f32> {
+  acos_5e9ad2();
+  return vec4<f32>();
+}
+
+@fragment
+fn fragment_main() {
+  acos_5e9ad2();
+}
+
+@compute @workgroup_size(1)
+fn compute_main() {
+  acos_5e9ad2();
+}
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl b/test/tint/builtins/gen/var/acos/8e2acf.wgsl
index d5b67ce..2d351e5 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(vec<4, f32>) -> vec<4, f32>
 fn acos_8e2acf() {
-  var arg_0 = vec4<f32>(1.f);
+  var arg_0 = vec4<f32>(0.87758256189f);
   var res: vec4<f32> = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.dxc.hlsl
index 390e655..faad89b 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_8e2acf() {
-  float4 arg_0 = (1.0f).xxxx;
+  float4 arg_0 = (0.87758255f).xxxx;
   float4 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.fxc.hlsl
index 390e655..faad89b 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_8e2acf() {
-  float4 arg_0 = (1.0f).xxxx;
+  float4 arg_0 = (0.87758255f).xxxx;
   float4 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.glsl
index b8d3472..8356e90 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_8e2acf() {
-  vec4 arg_0 = vec4(1.0f);
+  vec4 arg_0 = vec4(0.87758255f);
   vec4 res = acos(arg_0);
 }
 
@@ -22,7 +22,7 @@
 precision mediump float;
 
 void acos_8e2acf() {
-  vec4 arg_0 = vec4(1.0f);
+  vec4 arg_0 = vec4(0.87758255f);
   vec4 res = acos(arg_0);
 }
 
@@ -37,7 +37,7 @@
 #version 310 es
 
 void acos_8e2acf() {
-  vec4 arg_0 = vec4(1.0f);
+  vec4 arg_0 = vec4(0.87758255f);
   vec4 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.msl
index 4014603..c5d2091 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.msl
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_8e2acf() {
-  float4 arg_0 = float4(1.0f);
+  float4 arg_0 = float4(0.87758255f);
   float4 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.spvasm
index 3e380b6..7ce4918 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.spvasm
@@ -1,7 +1,7 @@
 ; SPIR-V
 ; Version: 1.3
 ; Generator: Google Tint Compiler; 0
-; Bound: 34
+; Bound: 35
 ; Schema: 0
                OpCapability Shader
          %18 = OpExtInstImport "GLSL.std.450"
@@ -32,10 +32,11 @@
 %vertex_point_size = OpVariable %_ptr_Output_float Output %8
        %void = OpTypeVoid
           %9 = OpTypeFunction %void
-    %float_1 = OpConstant %float 1
-         %14 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1
+%float_0_87758255 = OpConstant %float 0.87758255
+         %14 = OpConstantComposite %v4float %float_0_87758255 %float_0_87758255 %float_0_87758255 %float_0_87758255
 %_ptr_Function_v4float = OpTypePointer Function %v4float
          %21 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_8e2acf = OpFunction %void None %9
          %12 = OpLabel
       %arg_0 = OpVariable %_ptr_Function_v4float Function %5
@@ -59,12 +60,12 @@
                OpReturn
                OpFunctionEnd
 %fragment_main = OpFunction %void None %9
-         %29 = OpLabel
-         %30 = OpFunctionCall %void %acos_8e2acf
+         %30 = OpLabel
+         %31 = OpFunctionCall %void %acos_8e2acf
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %32 = OpLabel
-         %33 = OpFunctionCall %void %acos_8e2acf
+         %33 = OpLabel
+         %34 = OpFunctionCall %void %acos_8e2acf
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.wgsl
index 85e5e12..9872109 100644
--- a/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/var/acos/8e2acf.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_8e2acf() {
-  var arg_0 = vec4<f32>(1.0f);
+  var arg_0 = vec4<f32>(0.87758255f);
   var res : vec4<f32> = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl b/test/tint/builtins/gen/var/acos/a610c4.wgsl
index aa5a3ac..ea73283 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(vec<3, f32>) -> vec<3, f32>
 fn acos_a610c4() {
-  var arg_0 = vec3<f32>(1.f);
+  var arg_0 = vec3<f32>(0.87758256189f);
   var res: vec3<f32> = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.dxc.hlsl
index fb6c37b..be1af97 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_a610c4() {
-  float3 arg_0 = (1.0f).xxx;
+  float3 arg_0 = (0.87758255f).xxx;
   float3 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.fxc.hlsl
index fb6c37b..be1af97 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_a610c4() {
-  float3 arg_0 = (1.0f).xxx;
+  float3 arg_0 = (0.87758255f).xxx;
   float3 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.glsl
index 05d24a3..bb9ce66 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_a610c4() {
-  vec3 arg_0 = vec3(1.0f);
+  vec3 arg_0 = vec3(0.87758255f);
   vec3 res = acos(arg_0);
 }
 
@@ -22,7 +22,7 @@
 precision mediump float;
 
 void acos_a610c4() {
-  vec3 arg_0 = vec3(1.0f);
+  vec3 arg_0 = vec3(0.87758255f);
   vec3 res = acos(arg_0);
 }
 
@@ -37,7 +37,7 @@
 #version 310 es
 
 void acos_a610c4() {
-  vec3 arg_0 = vec3(1.0f);
+  vec3 arg_0 = vec3(0.87758255f);
   vec3 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.msl
index 1b5fdf1..f4fa62c 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.msl
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_a610c4() {
-  float3 arg_0 = float3(1.0f);
+  float3 arg_0 = float3(0.87758255f);
   float3 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.spvasm
index 185c9a4..016523a 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.spvasm
@@ -1,7 +1,7 @@
 ; SPIR-V
 ; Version: 1.3
 ; Generator: Google Tint Compiler; 0
-; Bound: 36
+; Bound: 37
 ; Schema: 0
                OpCapability Shader
          %20 = OpExtInstImport "GLSL.std.450"
@@ -33,11 +33,12 @@
        %void = OpTypeVoid
           %9 = OpTypeFunction %void
     %v3float = OpTypeVector %float 3
-    %float_1 = OpConstant %float 1
-         %15 = OpConstantComposite %v3float %float_1 %float_1 %float_1
+%float_0_87758255 = OpConstant %float 0.87758255
+         %15 = OpConstantComposite %v3float %float_0_87758255 %float_0_87758255 %float_0_87758255
 %_ptr_Function_v3float = OpTypePointer Function %v3float
          %18 = OpConstantNull %v3float
          %23 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_a610c4 = OpFunction %void None %9
          %12 = OpLabel
       %arg_0 = OpVariable %_ptr_Function_v3float Function %18
@@ -61,12 +62,12 @@
                OpReturn
                OpFunctionEnd
 %fragment_main = OpFunction %void None %9
-         %31 = OpLabel
-         %32 = OpFunctionCall %void %acos_a610c4
+         %32 = OpLabel
+         %33 = OpFunctionCall %void %acos_a610c4
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %34 = OpLabel
-         %35 = OpFunctionCall %void %acos_a610c4
+         %35 = OpLabel
+         %36 = OpFunctionCall %void %acos_a610c4
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.wgsl
index 1d5d1f9..fd615c8 100644
--- a/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/var/acos/a610c4.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_a610c4() {
-  var arg_0 = vec3<f32>(1.0f);
+  var arg_0 = vec3<f32>(0.87758255f);
   var res : vec3<f32> = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl b/test/tint/builtins/gen/var/acos/dfc915.wgsl
index ca261a0..ff333a1 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl
@@ -23,7 +23,7 @@
 
 // fn acos(vec<2, f32>) -> vec<2, f32>
 fn acos_dfc915() {
-  var arg_0 = vec2<f32>(1.f);
+  var arg_0 = vec2<f32>(0.87758256189f);
   var res: vec2<f32> = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.dxc.hlsl b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.dxc.hlsl
index 872e9e2..3a54574 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.dxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.dxc.hlsl
@@ -1,5 +1,5 @@
 void acos_dfc915() {
-  float2 arg_0 = (1.0f).xx;
+  float2 arg_0 = (0.87758255f).xx;
   float2 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.fxc.hlsl b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.fxc.hlsl
index 872e9e2..3a54574 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.fxc.hlsl
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.fxc.hlsl
@@ -1,5 +1,5 @@
 void acos_dfc915() {
-  float2 arg_0 = (1.0f).xx;
+  float2 arg_0 = (0.87758255f).xx;
   float2 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.glsl b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.glsl
index af4464e..f86c6b4 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.glsl
@@ -1,7 +1,7 @@
 #version 310 es
 
 void acos_dfc915() {
-  vec2 arg_0 = vec2(1.0f);
+  vec2 arg_0 = vec2(0.87758255f);
   vec2 res = acos(arg_0);
 }
 
@@ -22,7 +22,7 @@
 precision mediump float;
 
 void acos_dfc915() {
-  vec2 arg_0 = vec2(1.0f);
+  vec2 arg_0 = vec2(0.87758255f);
   vec2 res = acos(arg_0);
 }
 
@@ -37,7 +37,7 @@
 #version 310 es
 
 void acos_dfc915() {
-  vec2 arg_0 = vec2(1.0f);
+  vec2 arg_0 = vec2(0.87758255f);
   vec2 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.msl b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.msl
index ffc436f..9eb3e34 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.msl
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.msl
@@ -2,7 +2,7 @@
 
 using namespace metal;
 void acos_dfc915() {
-  float2 arg_0 = float2(1.0f);
+  float2 arg_0 = float2(0.87758255f);
   float2 res = acos(arg_0);
 }
 
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.spvasm b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.spvasm
index 2165f6e..ce995ac 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.spvasm
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.spvasm
@@ -1,7 +1,7 @@
 ; SPIR-V
 ; Version: 1.3
 ; Generator: Google Tint Compiler; 0
-; Bound: 36
+; Bound: 37
 ; Schema: 0
                OpCapability Shader
          %20 = OpExtInstImport "GLSL.std.450"
@@ -33,11 +33,12 @@
        %void = OpTypeVoid
           %9 = OpTypeFunction %void
     %v2float = OpTypeVector %float 2
-    %float_1 = OpConstant %float 1
-         %15 = OpConstantComposite %v2float %float_1 %float_1
+%float_0_87758255 = OpConstant %float 0.87758255
+         %15 = OpConstantComposite %v2float %float_0_87758255 %float_0_87758255
 %_ptr_Function_v2float = OpTypePointer Function %v2float
          %18 = OpConstantNull %v2float
          %23 = OpTypeFunction %v4float
+    %float_1 = OpConstant %float 1
 %acos_dfc915 = OpFunction %void None %9
          %12 = OpLabel
       %arg_0 = OpVariable %_ptr_Function_v2float Function %18
@@ -61,12 +62,12 @@
                OpReturn
                OpFunctionEnd
 %fragment_main = OpFunction %void None %9
-         %31 = OpLabel
-         %32 = OpFunctionCall %void %acos_dfc915
+         %32 = OpLabel
+         %33 = OpFunctionCall %void %acos_dfc915
                OpReturn
                OpFunctionEnd
 %compute_main = OpFunction %void None %9
-         %34 = OpLabel
-         %35 = OpFunctionCall %void %acos_dfc915
+         %35 = OpLabel
+         %36 = OpFunctionCall %void %acos_dfc915
                OpReturn
                OpFunctionEnd
diff --git a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.wgsl b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.wgsl
index 1d627ff..5c9ac9f 100644
--- a/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.wgsl
+++ b/test/tint/builtins/gen/var/acos/dfc915.wgsl.expected.wgsl
@@ -1,5 +1,5 @@
 fn acos_dfc915() {
-  var arg_0 = vec2<f32>(1.0f);
+  var arg_0 = vec2<f32>(0.87758255f);
   var res : vec2<f32> = acos(arg_0);
 }