[tint][core] Highlight intrinsic table matches / mismatches.
Helps highlight what didn't match.
Also:
Reduce the line length, these can be very long and word-wrapping can make it very hard to read.
Point out that a call with more explicit template arguments than expected is the reason for a failed match. This can be confusing.
Fixed: tint:2158
Change-Id: Ibdafd1ad3be1c846bfae8b93e1ec7b1669a3a556
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/176100
Kokoro: Kokoro <noreply+kokoro@google.com>
Auto-Submit: Ben Clayton <bclayton@google.com>
Reviewed-by: dan sinclair <dsinclair@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
diff --git a/src/tint/lang/core/constant/eval_binary_op_test.cc b/src/tint/lang/core/constant/eval_binary_op_test.cc
index 7859908..fd4d890 100644
--- a/src/tint/lang/core/constant/eval_binary_op_test.cc
+++ b/src/tint/lang/core/constant/eval_binary_op_test.cc
@@ -1511,8 +1511,8 @@
EXPECT_EQ(r()->error(), R"(12:34 error: no matching overload for 'operator ! (abstract-int)'
2 candidate operators:
- 'operator ! (bool) -> bool'
- 'operator ! (vecN<bool>) -> vecN<bool>'
+ • 'operator ! (bool ✗ ) -> bool'
+ • 'operator ! (vecN<bool> ✗ ) -> vecN<bool>'
)");
}
@@ -1528,8 +1528,8 @@
EXPECT_EQ(r()->error(), R"(12:34 error: no matching overload for 'operator ! (abstract-int)'
2 candidate operators:
- 'operator ! (bool) -> bool'
- 'operator ! (vecN<bool>) -> vecN<bool>'
+ • 'operator ! (bool ✗ ) -> bool'
+ • 'operator ! (vecN<bool> ✗ ) -> vecN<bool>'
)");
}
@@ -1577,7 +1577,7 @@
R"(12:34 error: no matching overload for 'operator && (bool, abstract-int)'
1 candidate operator:
- 'operator && (bool, bool) -> bool'
+ • 'operator && (bool ✓ , bool ✗ ) -> bool'
)");
}
@@ -1621,7 +1621,7 @@
R"(12:34 error: no matching overload for 'operator || (bool, abstract-int)'
1 candidate operator:
- 'operator || (bool, bool) -> bool'
+ • 'operator || (bool ✓ , bool ✗ ) -> bool'
)");
}
@@ -1675,8 +1675,10 @@
R"(12:34 error: no matching overload for 'operator == (abstract-float, i32)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -1726,8 +1728,10 @@
R"(12:34 error: no matching overload for 'operator == (abstract-float, i32)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -1787,8 +1791,10 @@
R"(12:34 error: no matching overload for 'operator == (i32, f32)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -1844,8 +1850,10 @@
R"(12:34 error: no matching overload for 'operator == (i32, f32)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -1898,8 +1906,10 @@
EXPECT_EQ(r()->error(), R"(12:34 error: no matching overload for 'operator == (f32, i32)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -1948,8 +1958,10 @@
EXPECT_EQ(r()->error(), R"(12:34 error: no matching overload for 'operator == (f32, i32)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -1974,21 +1986,40 @@
R"(12:34 error: no matching constructor for 'vec2<f32>(abstract-float, bool)'
8 candidate constructors:
- 'vec2<T>(x: T, y: T) -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2<T>(T) -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2(T) -> vec2<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2<T>(vec2<T>) -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2(vec2<T>) -> vec2<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2() -> vec2<abstract-int>'
- 'vec2<T>() -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2(x: T, y: T) -> vec2<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >(x: T ✓ , y: T ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >(T ✓ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >(vec2<T> ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >() -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2(x: T ✓ , y: T ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2(T ✓ ) -> vec2<T>' where:
+ ✗ overload expects 0 template arguments
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2() -> vec2<abstract-int>' where:
+ ✗ overload expects 0 template arguments
+ • 'vec2(vec2<T> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'f32', 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'f16', 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'i32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'u32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'bool', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
+ • 'vec2<T ✓ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'i32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
)");
}
@@ -2006,21 +2037,40 @@
R"(12:34 error: no matching constructor for 'vec2<f32>(abstract-float, bool)'
8 candidate constructors:
- 'vec2<T>(x: T, y: T) -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2<T>(T) -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2(T) -> vec2<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2<T>(vec2<T>) -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2(vec2<T>) -> vec2<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2() -> vec2<abstract-int>'
- 'vec2<T>() -> vec2<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec2(x: T, y: T) -> vec2<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >(x: T ✓ , y: T ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >(T ✓ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >(vec2<T> ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✓ >() -> vec2<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2(x: T ✓ , y: T ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2(T ✓ ) -> vec2<T>' where:
+ ✗ overload expects 0 template arguments
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec2() -> vec2<abstract-int>' where:
+ ✗ overload expects 0 template arguments
+ • 'vec2(vec2<T> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'f32', 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'f16', 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'i32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'u32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
- 'vec2<T>(vec2<U>) -> vec2<T>' where: 'T' is 'bool', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
+ • 'vec2<T ✓ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✓ 'T' is 'f32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'i32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
+ • 'vec2<T ✗ >(vec2<U> ✗ ) -> vec2<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
)");
}
@@ -2083,8 +2133,10 @@
R"(error: no matching overload for 'operator == (array<abstract-int, 1>, abstract-int)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✗ , T ✗ ) -> bool' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -2102,8 +2154,10 @@
R"(error: no matching overload for 'operator == (array<abstract-int, 1>, abstract-int)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✗ , T ✗ ) -> bool' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -2152,8 +2206,10 @@
R"(12:34 error: no matching overload for 'operator == (i32, abstract-float)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -2198,8 +2254,10 @@
R"(12:34 error: no matching overload for 'operator == (i32, abstract-float)'
2 candidate operators:
- 'operator == (T, T) -> bool' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'operator == (vecN<T>, vecN<T>) -> vecN<bool>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (T ✓ , T ✗ ) -> bool' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'operator == (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<bool>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
diff --git a/src/tint/lang/core/intrinsic/table.cc b/src/tint/lang/core/intrinsic/table.cc
index 1a9dae9..8c986d2 100644
--- a/src/tint/lang/core/intrinsic/table.cc
+++ b/src/tint/lang/core/intrinsic/table.cc
@@ -34,8 +34,10 @@
#include "src/tint/lang/core/evaluation_stage.h"
#include "src/tint/lang/core/intrinsic/table_data.h"
+#include "src/tint/lang/core/type/invalid.h"
#include "src/tint/lang/core/type/manager.h"
#include "src/tint/lang/core/type/void.h"
+#include "src/tint/utils/containers/slice.h"
#include "src/tint/utils/ice/ice.h"
#include "src/tint/utils/macros/defer.h"
#include "src/tint/utils/text/string_stream.h"
@@ -65,26 +67,11 @@
namespace {
/// The Vector `N` template argument value for arrays of parameters.
-constexpr const size_t kNumFixedParams = decltype(Overload{}.parameters)::static_length;
+constexpr const size_t kNumFixedParameters = Overload::kNumFixedParameters;
/// The Vector `N` template argument value for arrays of overload candidates.
constexpr const size_t kNumFixedCandidates = 8;
-/// Candidate holds information about an overload evaluated for resolution.
-struct Candidate {
- /// The match-score of the candidate overload.
- /// A score of zero indicates an exact match.
- /// Non-zero scores are used for diagnostics when no overload matches.
- /// Lower scores are displayed first (top-most).
- size_t score = 0;
- /// The candidate overload
- const OverloadInfo* overload = nullptr;
- /// The template types and numbers
- TemplateState templates{};
- /// The parameter types for the candidate overload
- Vector<Overload::Parameter, kNumFixedParams> parameters{};
-};
-
/// A list of candidates
using Candidates = Vector<Candidate, kNumFixedCandidates>;
@@ -181,7 +168,9 @@
void PrintCandidates(StyledText& err,
Context& context,
VectorRef<Candidate> candidates,
- std::string_view intrinsic_name);
+ std::string_view intrinsic_name,
+ VectorRef<const core::type::Type*> template_args,
+ VectorRef<const core::type::Type*> args);
/// Raises an ICE when no overload is a clear winner of overload resolution
StyledText ErrAmbiguousOverload(Context& context,
@@ -314,36 +303,33 @@
std::min(num_parameters, num_arguments)));
}
- if (score == 0) {
- // Check that all of the template arguments provided are actually expected by the overload.
- const size_t expected_templates = overload.num_explicit_templates;
- const size_t provided_templates = template_args.Length();
- if (provided_templates != expected_templates) {
- MATCH_FAILURE(kMismatchedExplicitTemplateCountPenalty *
- (std::max(expected_templates, provided_templates) -
- std::min(expected_templates, provided_templates)));
- }
+ // Check that all of the template arguments provided are actually expected by the overload.
+ const size_t expected_templates = overload.num_explicit_templates;
+ const size_t provided_templates = template_args.Length();
+ if (provided_templates != expected_templates) {
+ MATCH_FAILURE(kMismatchedExplicitTemplateCountPenalty *
+ (std::max(expected_templates, provided_templates) -
+ std::min(expected_templates, provided_templates)));
}
TemplateState templates;
- if (score == 0) {
- // Check that the explicit template arguments match the constraint if specified, otherwise
- // just set the template type.
- for (size_t i = 0; i < overload.num_explicit_templates; ++i) {
- auto& tmpl = context.data[overload.templates + i];
- auto* type = template_args[i];
- if (auto* matcher_indices = context.data[tmpl.matcher_indices]) {
- // Ensure type matches the template's matcher.
- type = Match(context, templates, overload, matcher_indices, earliest_eval_stage)
- .Type(type);
- if (!type) {
- MATCH_FAILURE(kMismatchedExplicitTemplateTypePenalty);
- continue;
- }
+ // Check that the explicit template arguments match the constraint if specified, otherwise
+ // just set the template type.
+ auto num_tmpl_args = std::min<size_t>(overload.num_explicit_templates, template_args.Length());
+ for (size_t i = 0; i < num_tmpl_args; ++i) {
+ auto& tmpl = context.data[overload.templates + i];
+ auto* type = template_args[i];
+ if (auto* matcher_indices = context.data[tmpl.matcher_indices]) {
+ // Ensure type matches the template's matcher.
+ type = Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .Type(type);
+ if (!type) {
+ MATCH_FAILURE(kMismatchedExplicitTemplateTypePenalty);
+ continue;
}
- templates.SetType(i, type);
}
+ templates.SetType(i, type);
}
// Invoke the matchers for each parameter <-> argument pair.
@@ -364,64 +350,61 @@
}
}
- if (score == 0) {
- // Check each of the inferred types and numbers for the implicit templates match their
- // respective matcher.
- for (size_t i = overload.num_explicit_templates; i < overload.num_templates; i++) {
- auto& tmpl = context.data[overload.templates + i];
- auto* matcher_indices = context.data[tmpl.matcher_indices];
- if (!matcher_indices) {
- continue;
+ // Check each of the inferred types and numbers for the implicit templates match their
+ // respective matcher.
+ for (size_t i = overload.num_explicit_templates; i < overload.num_templates; i++) {
+ auto& tmpl = context.data[overload.templates + i];
+ auto* matcher_indices = context.data[tmpl.matcher_indices];
+ if (!matcher_indices) {
+ continue;
+ }
+
+ auto matcher = Match(context, templates, overload, matcher_indices, earliest_eval_stage);
+
+ switch (tmpl.kind) {
+ case TemplateInfo::Kind::kType: {
+ // Check all constrained template types matched their constraint matchers.
+ // If the template type *does not* match any of the types in the constraint
+ // matcher, then `score` is incremented and the template is assigned an invalid
+ // type. If the template type *does* match a type, then the template type is
+ // replaced with the first matching type. The order of types in the template matcher
+ // is important here, which can be controlled with the [[precedence(N)]] decorations
+ // on the types in the def file.
+ if (auto* type = templates.Type(i)) {
+ if (auto* ty = matcher.Type(type)) {
+ // Template type matched one of the types in the template type's
+ // matcher. Replace the template type with this type.
+ templates.SetType(i, ty);
+ continue;
+ }
+ }
+ templates.SetType(i, context.types.invalid());
+ MATCH_FAILURE(kMismatchedImplicitTemplateTypePenalty);
+ break;
}
- auto matcher =
- Match(context, templates, overload, matcher_indices, earliest_eval_stage);
-
- switch (tmpl.kind) {
- case TemplateInfo::Kind::kType: {
- // Check all constrained template types matched their constraint matchers.
- // If the template type *does not* match any of the types in the constraint
- // matcher, then `score` is incremented. If the template type *does* match a
- // type, then the template type is replaced with the first matching type.
- // The order of types in the template matcher is important here, which can
- // be controlled with the [[precedence(N)]] decorations on the types in the
- // def file.
- if (auto* type = templates.Type(i)) {
- if (auto* ty = matcher.Type(type)) {
- // Template type matched one of the types in the template type's
- // matcher. Replace the template type with this type.
- templates.SetType(i, ty);
- continue;
- }
- }
- MATCH_FAILURE(kMismatchedImplicitTemplateTypePenalty);
- break;
- }
-
- case TemplateInfo::Kind::kNumber: {
- // Checking that the inferred number matches the constraints on the
- // template. Increments `score` if the template numbers do not match their
- // constraint matchers.
- auto number = templates.Num(i);
- if (!number.IsValid() || !matcher.Num(number).IsValid()) {
- MATCH_FAILURE(kMismatchedImplicitTemplateNumberPenalty);
- }
+ case TemplateInfo::Kind::kNumber: {
+ // Checking that the inferred number matches the constraints on the
+ // template. Increments `score` and assigns the template an invalid number if the
+ // template numbers do not match their constraint matchers.
+ auto number = templates.Num(i);
+ if (!number.IsValid() || !matcher.Num(number).IsValid()) {
+ templates.SetNum(i, Number::invalid);
+ MATCH_FAILURE(kMismatchedImplicitTemplateNumberPenalty);
}
}
}
}
// Now that all the template types have been finalized, we can construct the parameters.
- Vector<Overload::Parameter, kNumFixedParams> parameters;
- if (score == 0) {
- parameters.Reserve(num_params);
- for (size_t p = 0; p < num_params; p++) {
- auto& parameter = context.data[overload.parameters + p];
- auto* matcher_indices = context.data[parameter.matcher_indices];
- auto* ty = Match(context, templates, overload, matcher_indices, earliest_eval_stage)
- .Type(args[p]);
- parameters.Emplace(ty, parameter.usage);
- }
+ Vector<Overload::Parameter, kNumFixedParameters> parameters;
+ parameters.Reserve(num_params);
+ for (size_t p = 0; p < num_params; p++) {
+ auto& parameter = context.data[overload.parameters + p];
+ auto* matcher_indices = context.data[parameter.matcher_indices];
+ auto* ty =
+ Match(context, templates, overload, matcher_indices, earliest_eval_stage).Type(args[p]);
+ parameters.Emplace(ty, parameter.usage);
}
return Candidate{score, &overload, templates, parameters};
@@ -433,7 +416,7 @@
std::string_view intrinsic_name,
VectorRef<const core::type::Type*> template_args,
VectorRef<const core::type::Type*> args) {
- Vector<uint32_t, kNumFixedParams> best_ranks;
+ Vector<uint32_t, kNumFixedParameters> best_ranks;
best_ranks.Resize(args.Length(), 0xffffffff);
size_t num_matched = 0;
Candidate* best = nullptr;
@@ -505,10 +488,12 @@
void PrintCandidates(StyledText& ss,
Context& context,
VectorRef<Candidate> candidates,
- std::string_view intrinsic_name) {
+ std::string_view intrinsic_name,
+ VectorRef<const core::type::Type*> template_args,
+ VectorRef<const core::type::Type*> args) {
for (auto& candidate : candidates) {
- ss << " ";
- PrintOverload(ss, context, *candidate.overload, intrinsic_name);
+ ss << " • ";
+ PrintCandidate(ss, context, candidate, intrinsic_name, template_args, args);
ss << "\n";
}
}
@@ -525,7 +510,7 @@
for (auto& candidate : candidates) {
if (candidate.score == 0) {
err << " ";
- PrintOverload(err, context, *candidate.overload, intrinsic_name);
+ PrintCandidate(err, context, candidate, intrinsic_name, template_args, args);
err << "\n";
}
}
@@ -535,15 +520,19 @@
} // namespace
-void PrintOverload(StyledText& ss,
- Context& context,
- const OverloadInfo& overload,
- std::string_view intrinsic_name) {
+void PrintCandidate(StyledText& ss,
+ Context& context,
+ const Candidate& candidate,
+ std::string_view intrinsic_name,
+ VectorRef<const core::type::Type*> template_args,
+ VectorRef<const core::type::Type*> args) {
// Restore old style before returning.
auto prev_style = ss.Style();
TINT_DEFER(ss << prev_style);
- TemplateState templates;
+ auto& overload = *candidate.overload;
+
+ TemplateState templates = candidate.templates;
// TODO(crbug.com/tint/1730): Use input evaluation stage to output only relevant overloads.
auto earliest_eval_stage = EvaluationStage::kConstant;
@@ -553,24 +542,57 @@
if (overload.num_explicit_templates > 0) {
ss << "<";
for (size_t i = 0; i < overload.num_explicit_templates; i++) {
+ const auto& tmpl = context.data[overload.templates + i];
+
+ bool matched = false;
+ if (i < template_args.Length()) {
+ auto* matcher_indices = context.data[tmpl.matcher_indices];
+ matched = !matcher_indices ||
+ Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .Type(template_args[i]);
+ }
+
if (i > 0) {
ss << ", ";
}
- ss << style::Type(context.data[overload.templates + i].name);
+ ss << style::Type(tmpl.name) << " ";
+ if (matched) {
+ ss << (style::Code + style::Match)(" ✓ ");
+ } else {
+ ss << (style::Code + style::Mismatch)(" ✗ ");
+ }
}
ss << ">";
}
+
+ bool all_params_match = true;
ss << "(";
- for (size_t p = 0; p < overload.num_parameters; p++) {
- auto& parameter = context.data[overload.parameters + p];
- if (p > 0) {
+ for (size_t i = 0; i < overload.num_parameters; i++) {
+ const auto& parameter = context.data[overload.parameters + i];
+ auto* matcher_indices = context.data[parameter.matcher_indices];
+
+ bool matched = false;
+ if (i < args.Length()) {
+ matched = Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .Type(args[i]);
+ }
+ all_params_match = all_params_match && matched;
+
+ if (i > 0) {
ss << ", ";
}
+
if (parameter.usage != ParameterUsage::kNone) {
ss << style::Variable(parameter.usage, ": ");
}
- auto* matcher_indices = context.data[parameter.matcher_indices];
Match(context, templates, overload, matcher_indices, earliest_eval_stage).PrintType(ss);
+
+ ss << style::Code << " ";
+ if (matched) {
+ ss << (style::Code + style::Match)(" ✓ ");
+ } else {
+ ss << (style::Code + style::Mismatch)(" ✗ ");
+ }
}
ss << ")";
if (overload.return_matcher_indices.IsValid()) {
@@ -581,22 +603,46 @@
bool first = true;
auto separator = [&] {
- ss << style::Plain(first ? " where: " : ", ");
+ ss << style::Plain(first ? " where:\n " : "\n ");
first = false;
};
+ if (all_params_match && template_args.Length() > overload.num_explicit_templates) {
+ separator();
+ ss << style::Mismatch(" ✗ ")
+ << style::Plain(" overload expects ", static_cast<int>(overload.num_explicit_templates),
+ " template argument", overload.num_explicit_templates != 1 ? "s" : "");
+ }
+
for (size_t i = 0; i < overload.num_templates; i++) {
auto& tmpl = context.data[overload.templates + i];
if (auto* matcher_indices = context.data[tmpl.matcher_indices]) {
- auto matcher =
- Match(context, templates, overload, matcher_indices, earliest_eval_stage);
-
separator();
+ bool matched = false;
+ if (tmpl.kind == TemplateInfo::Kind::kType) {
+ if (auto* ty = templates.Type(i)) {
+ matched =
+ Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .Type(ty);
+ }
+ } else {
+ matched = Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .Num(templates.Num(i))
+ .IsValid();
+ }
+ if (matched) {
+ ss << style::Match(" ✓ ") << style::Plain(" ");
+ } else {
+ ss << style::Mismatch(" ✗ ") << style::Plain(" ");
+ }
+
ss << style::Type(tmpl.name) << style::Plain(" is ");
if (tmpl.kind == TemplateInfo::Kind::kType) {
- matcher.PrintType(ss);
+ Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .PrintType(ss);
} else {
- matcher.PrintNum(ss);
+ Match(context, templates, overload, matcher_indices, earliest_eval_stage)
+ .PrintNum(ss);
}
}
}
@@ -616,7 +662,7 @@
err << "\n"
<< candidates.Length() << " candidate function"
<< (candidates.Length() > 1 ? "s:" : ":") << "\n";
- PrintCandidates(err, context, candidates, intrinsic_name);
+ PrintCandidates(err, context, candidates, intrinsic_name, template_args, args);
}
return err;
};
@@ -665,7 +711,7 @@
err << "\n"
<< candidates.Length() << " candidate operator"
<< (candidates.Length() > 1 ? "s:" : ":") << "\n";
- PrintCandidates(err, context, candidates, name);
+ PrintCandidates(err, context, candidates, name, Empty, Vector{arg});
}
return err;
};
@@ -768,7 +814,7 @@
err << "\n"
<< candidates.Length() << " candidate operator"
<< (candidates.Length() > 1 ? "s:" : ":") << "\n";
- PrintCandidates(err, context, candidates, name);
+ PrintCandidates(err, context, candidates, name, Empty, args);
}
return err;
};
@@ -801,13 +847,13 @@
err << "\n"
<< ctor.Length() << " candidate constructor" << (ctor.Length() > 1 ? "s:" : ":")
<< "\n";
- PrintCandidates(err, context, ctor, type_name);
+ PrintCandidates(err, context, ctor, type_name, template_args, args);
}
if (!conv.IsEmpty()) {
err << "\n"
<< conv.Length() << " candidate conversion" << (conv.Length() > 1 ? "s:" : ":")
<< "\n";
- PrintCandidates(err, context, conv, type_name);
+ PrintCandidates(err, context, conv, type_name, template_args, args);
}
return err;
};
diff --git a/src/tint/lang/core/intrinsic/table.h b/src/tint/lang/core/intrinsic/table.h
index 56f590a..9594c34 100644
--- a/src/tint/lang/core/intrinsic/table.h
+++ b/src/tint/lang/core/intrinsic/table.h
@@ -52,6 +52,8 @@
/// Overload describes a fully matched builtin function overload
struct Overload {
+ static constexpr size_t kNumFixedParameters = 8;
+
/// Parameter describes a single parameter
struct Parameter {
/// Parameter type
@@ -79,7 +81,7 @@
core::type::Type const* return_type = nullptr;
/// The resolved overload parameters
- Vector<Parameter, 8> parameters;
+ Vector<Parameter, kNumFixedParameters> parameters;
/// The constant evaluation function
constant::Eval::Function const_eval_fn = nullptr;
@@ -108,11 +110,28 @@
SymbolTable& symbols;
};
-// Prints the overload for emitting diagnostics
-void PrintOverload(StyledText& ss,
- Context& context,
- const OverloadInfo& overload,
- std::string_view intrinsic_name);
+/// Candidate holds information about an overload evaluated for resolution.
+struct Candidate {
+ /// The match-score of the candidate overload.
+ /// A score of zero indicates an exact match.
+ /// Non-zero scores are used for diagnostics when no overload matches.
+ /// Lower scores are displayed first (top-most).
+ size_t score = 0;
+ /// The candidate overload
+ const OverloadInfo* overload = nullptr;
+ /// The template types and numbers
+ TemplateState templates{};
+ /// The parameter types for the candidate overload
+ Vector<Overload::Parameter, Overload::kNumFixedParameters> parameters{};
+};
+
+// Prints the candidate overload for emitting diagnostics
+void PrintCandidate(StyledText& ss,
+ Context& context,
+ const Candidate& candidate,
+ std::string_view intrinsic_name,
+ VectorRef<const core::type::Type*> template_args,
+ VectorRef<const core::type::Type*> args);
/// Lookup looks for the builtin overload with the given signature, raising an error diagnostic
/// if the builtin was not found.
diff --git a/src/tint/lang/core/intrinsic/table_data.h b/src/tint/lang/core/intrinsic/table_data.h
index b5496a2..30fae36 100644
--- a/src/tint/lang/core/intrinsic/table_data.h
+++ b/src/tint/lang/core/intrinsic/table_data.h
@@ -311,10 +311,10 @@
/// @returns true on match or newly defined
bool Num(size_t idx, Number number) {
if (idx >= numbers_.Length()) {
- numbers_.Resize(idx + 1, Number::invalid);
+ numbers_.Resize(idx + 1, Number::any);
}
auto& n = numbers_[idx];
- if (!n.IsValid()) {
+ if (n.IsAny()) {
n = number.Value();
return true;
}
@@ -350,6 +350,16 @@
return numbers_[idx];
}
+ /// SetNum replaces the template number with index @p idx with number @p num.
+ /// @param idx the index of the template number
+ /// @param num the new number for the template
+ void SetNum(size_t idx, Number num) {
+ if (idx >= numbers_.Length()) {
+ numbers_.Resize(idx + 1, Number::any);
+ }
+ numbers_[idx] = num;
+ }
+
/// @return the total number of type and number templates
size_t Count() const { return types_.Length() + numbers_.Length(); }
diff --git a/src/tint/lang/core/intrinsic/table_test.cc b/src/tint/lang/core/intrinsic/table_test.cc
index 52b25f4..31fbc13 100644
--- a/src/tint/lang/core/intrinsic/table_test.cc
+++ b/src/tint/lang/core/intrinsic/table_test.cc
@@ -528,33 +528,56 @@
R"(no matching call to 'textureDimensions(bool, bool)'
27 candidate functions:
- 'textureDimensions(texture: texture_1d<T>, level: L) -> u32' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>, level: L) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_1d<T>) -> u32' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_multisampled_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_2d_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_multisampled_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_1d<F, A>) -> u32'
- 'textureDimensions(texture: texture_storage_2d<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_2d_array<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_3d<F, A>) -> vec3<u32>'
- 'textureDimensions(texture: texture_external) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_1d<T> ✗ , level: L ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ , level: L ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_multisampled_2d ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_1d<F, A> ✗ ) -> u32'
+ • 'textureDimensions(texture: texture_storage_2d<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_2d_array<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_3d<F, A> ✗ ) -> vec3<u32>'
+ • 'textureDimensions(texture: texture_external ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_1d<T> ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_multisampled_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
)");
}
@@ -568,33 +591,56 @@
R"(no matching call to 'textureDimensions(texture_depth_2d, bool)'
27 candidate functions:
- 'textureDimensions(texture: texture_depth_2d, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_1d<T>, level: L) -> u32' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>, level: L) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_1d<T>) -> u32' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_multisampled_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_multisampled_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_1d<F, A>) -> u32'
- 'textureDimensions(texture: texture_storage_2d<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_2d_array<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_3d<F, A>) -> vec3<u32>'
- 'textureDimensions(texture: texture_external) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d ✓ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d ✓ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_1d<T> ✗ , level: L ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ , level: L ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_multisampled_2d ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_1d<F, A> ✗ ) -> u32'
+ • 'textureDimensions(texture: texture_storage_2d<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_2d_array<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_3d<F, A> ✗ ) -> vec3<u32>'
+ • 'textureDimensions(texture: texture_external ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_1d<T> ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_multisampled_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
)");
}
@@ -613,8 +659,10 @@
EXPECT_EQ(result.Failure().Plain(), R"(no matching overload for 'operator - (bool)'
2 candidate operators:
- 'operator - (T) -> T' where: 'T' is 'f32', 'i32' or 'f16'
- 'operator - (vecN<T>) -> vecN<T>' where: 'T' is 'f32', 'i32' or 'f16'
+ • 'operator - (T ✗ ) -> T' where:
+ ✗ 'T' is 'f32', 'i32' or 'f16'
+ • 'operator - (vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'f32', 'i32' or 'f16'
)");
}
@@ -652,15 +700,24 @@
EXPECT_EQ(result.Failure().Plain(), R"(no matching overload for 'operator * (f32, bool)'
9 candidate operators:
- 'operator * (T, T) -> T' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator * (vecN<T>, T) -> vecN<T>' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator * (T, vecN<T>) -> vecN<T>' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator * (T, matNxM<T>) -> matNxM<T>' where: 'T' is 'f32' or 'f16'
- 'operator * (matNxM<T>, T) -> matNxM<T>' where: 'T' is 'f32' or 'f16'
- 'operator * (vecN<T>, vecN<T>) -> vecN<T>' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator * (matCxR<T>, vecC<T>) -> vecR<T>' where: 'T' is 'f32' or 'f16'
- 'operator * (vecR<T>, matCxR<T>) -> vecC<T>' where: 'T' is 'f32' or 'f16'
- 'operator * (matKxR<T>, matCxK<T>) -> matCxR<T>' where: 'T' is 'f32' or 'f16'
+ • 'operator * (T ✓ , T ✗ ) -> T' where:
+ ✓ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (T ✓ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✓ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (T ✓ , matNxM<T> ✗ ) -> matNxM<T>' where:
+ ✓ 'T' is 'f32' or 'f16'
+ • 'operator * (vecN<T> ✗ , T ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (matNxM<T> ✗ , T ✗ ) -> matNxM<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
+ • 'operator * (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (matCxR<T> ✗ , vecC<T> ✗ ) -> vecR<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
+ • 'operator * (vecR<T> ✗ , matCxR<T> ✗ ) -> vecC<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
+ • 'operator * (matKxR<T> ✗ , matCxK<T> ✗ ) -> matCxR<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
)");
}
@@ -684,15 +741,24 @@
EXPECT_EQ(result.Failure().Plain(), R"(no matching overload for 'operator *= (f32, bool)'
9 candidate operators:
- 'operator *= (T, T) -> T' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (vecN<T>, T) -> vecN<T>' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (T, vecN<T>) -> vecN<T>' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (T, matNxM<T>) -> matNxM<T>' where: 'T' is 'f32' or 'f16'
- 'operator *= (matNxM<T>, T) -> matNxM<T>' where: 'T' is 'f32' or 'f16'
- 'operator *= (vecN<T>, vecN<T>) -> vecN<T>' where: 'T' is 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (matCxR<T>, vecC<T>) -> vecR<T>' where: 'T' is 'f32' or 'f16'
- 'operator *= (vecR<T>, matCxR<T>) -> vecC<T>' where: 'T' is 'f32' or 'f16'
- 'operator *= (matKxR<T>, matCxK<T>) -> matCxR<T>' where: 'T' is 'f32' or 'f16'
+ • 'operator *= (T ✓ , T ✗ ) -> T' where:
+ ✓ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (T ✓ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✓ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (T ✓ , matNxM<T> ✗ ) -> matNxM<T>' where:
+ ✓ 'T' is 'f32' or 'f16'
+ • 'operator *= (vecN<T> ✗ , T ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (matNxM<T> ✗ , T ✗ ) -> matNxM<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
+ • 'operator *= (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (matCxR<T> ✗ , vecC<T> ✗ ) -> vecR<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
+ • 'operator *= (vecR<T> ✗ , matCxR<T> ✗ ) -> vecC<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
+ • 'operator *= (matKxR<T> ✗ , matCxK<T> ✗ ) -> matCxR<T>' where:
+ ✗ 'T' is 'f32' or 'f16'
)");
}
@@ -721,19 +787,35 @@
R"(no matching constructor for 'vec3<i32>(i32, f32, i32)'
6 candidate constructors:
- 'vec3<T>(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>() -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✓ , y: T ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✓ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(xy: vec2<T> ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(vec3<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >() -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f32', 'U' is 'i32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f16', 'U' is 'f32', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'i32', 'U' is 'f32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'u32', 'U' is 'f32', 'f16', 'i32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'bool', 'U' is 'f32', 'f16', 'i32' or 'u32'
+ • 'vec3<T ✓ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'i32'
+ ✗ 'U' is 'f32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f32'
+ ✗ 'U' is 'i32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'f32', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'f32', 'f16', 'i32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'f32', 'f16', 'i32' or 'u32'
)");
}
@@ -794,19 +876,35 @@
R"(no matching constructor for 'vec3<f32>(array<u32>)'
6 candidate constructors:
- 'vec3<T>(vec3<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>() -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(vec3<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >() -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(xy: vec2<T> ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✗ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✗ , y: T ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f32', 'U' is 'i32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f16', 'U' is 'f32', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'i32', 'U' is 'f32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'u32', 'U' is 'f32', 'f16', 'i32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'bool', 'U' is 'f32', 'f16', 'i32' or 'u32'
+ • 'vec3<T ✓ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32'
+ ✗ 'U' is 'i32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'f32', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'i32'
+ ✗ 'U' is 'f32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'f32', 'f16', 'i32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'f32', 'f16', 'i32' or 'u32'
)");
}
diff --git a/src/tint/lang/core/type/BUILD.bazel b/src/tint/lang/core/type/BUILD.bazel
index 485a4a8..35a5221 100644
--- a/src/tint/lang/core/type/BUILD.bazel
+++ b/src/tint/lang/core/type/BUILD.bazel
@@ -53,6 +53,7 @@
"f16.cc",
"f32.cc",
"i32.cc",
+ "invalid.cc",
"manager.cc",
"matrix.cc",
"memory_view.cc",
@@ -91,6 +92,7 @@
"f16.h",
"f32.h",
"i32.h",
+ "invalid.h",
"manager.h",
"matrix.h",
"memory_view.h",
diff --git a/src/tint/lang/core/type/BUILD.cmake b/src/tint/lang/core/type/BUILD.cmake
index 7c9b819..285a088 100644
--- a/src/tint/lang/core/type/BUILD.cmake
+++ b/src/tint/lang/core/type/BUILD.cmake
@@ -68,6 +68,8 @@
lang/core/type/f32.h
lang/core/type/i32.cc
lang/core/type/i32.h
+ lang/core/type/invalid.cc
+ lang/core/type/invalid.h
lang/core/type/manager.cc
lang/core/type/manager.h
lang/core/type/matrix.cc
diff --git a/src/tint/lang/core/type/BUILD.gn b/src/tint/lang/core/type/BUILD.gn
index 2f0568b..7f64802 100644
--- a/src/tint/lang/core/type/BUILD.gn
+++ b/src/tint/lang/core/type/BUILD.gn
@@ -73,6 +73,8 @@
"f32.h",
"i32.cc",
"i32.h",
+ "invalid.cc",
+ "invalid.h",
"manager.cc",
"manager.h",
"matrix.cc",
diff --git a/src/tint/lang/core/type/invalid.cc b/src/tint/lang/core/type/invalid.cc
new file mode 100644
index 0000000..cc929a8
--- /dev/null
+++ b/src/tint/lang/core/type/invalid.cc
@@ -0,0 +1,61 @@
+// Copyright 2024 The Dawn & Tint Authors
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+//
+// 1. Redistributions of source code must retain the above copyright notice, this
+// list of conditions and the following disclaimer.
+//
+// 2. Redistributions in binary form must reproduce the above copyright notice,
+// this list of conditions and the following disclaimer in the documentation
+// and/or other materials provided with the distribution.
+//
+// 3. Neither the name of the copyright holder nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#include "src/tint/lang/core/type/invalid.h"
+
+#include "src/tint/lang/core/type/manager.h"
+
+TINT_INSTANTIATE_TYPEINFO(tint::core::type::Invalid);
+
+namespace tint::core::type {
+
+Invalid::Invalid()
+ : Base(static_cast<size_t>(tint::TypeCode::Of<Invalid>().bits), core::type::Flags{}) {}
+
+Invalid::~Invalid() = default;
+
+std::string Invalid::FriendlyName() const {
+ return "<invalid-type>";
+}
+
+bool Invalid::Equals(const UniqueNode& other) const {
+ return other.Is<Invalid>();
+}
+
+uint32_t Invalid::Size() const {
+ return 0;
+}
+
+uint32_t Invalid::Align() const {
+ return 0;
+}
+
+Invalid* Invalid::Clone(CloneContext& ctx) const {
+ return ctx.dst.mgr->Get<Invalid>();
+}
+
+} // namespace tint::core::type
diff --git a/src/tint/lang/core/type/invalid.h b/src/tint/lang/core/type/invalid.h
new file mode 100644
index 0000000..4405bf7
--- /dev/null
+++ b/src/tint/lang/core/type/invalid.h
@@ -0,0 +1,67 @@
+// Copyright 2024 The Dawn & Tint Authors
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+//
+// 1. Redistributions of source code must retain the above copyright notice, this
+// list of conditions and the following disclaimer.
+//
+// 2. Redistributions in binary form must reproduce the above copyright notice,
+// this list of conditions and the following disclaimer in the documentation
+// and/or other materials provided with the distribution.
+//
+// 3. Neither the name of the copyright holder nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#ifndef SRC_TINT_LANG_CORE_TYPE_INVALID_H_
+#define SRC_TINT_LANG_CORE_TYPE_INVALID_H_
+
+#include <string>
+
+#include "src/tint/lang/core/type/type.h"
+
+namespace tint::core::type {
+
+/// An invalid type.
+class Invalid final : public Castable<Invalid, Type> {
+ public:
+ /// Constructor
+ Invalid();
+
+ /// Destructor
+ ~Invalid() override;
+
+ /// @returns the name for this type that closely resembles how it would be
+ /// declared in WGSL.
+ std::string FriendlyName() const override;
+
+ /// @param other the other node to compare against
+ /// @returns true if the this type is equal to @p other
+ bool Equals(const UniqueNode& other) const override;
+
+ /// @returns the size in bytes of the type.
+ uint32_t Size() const override;
+
+ /// @returns the alignment in bytes of the type.
+ uint32_t Align() const override;
+
+ /// @param ctx the clone context
+ /// @returns a clone of this type
+ Invalid* Clone(CloneContext& ctx) const override;
+};
+
+} // namespace tint::core::type
+
+#endif // SRC_TINT_LANG_CORE_TYPE_INVALID_H_
diff --git a/src/tint/lang/core/type/manager.cc b/src/tint/lang/core/type/manager.cc
index f158770..30d0d51 100644
--- a/src/tint/lang/core/type/manager.cc
+++ b/src/tint/lang/core/type/manager.cc
@@ -36,6 +36,7 @@
#include "src/tint/lang/core/type/f16.h"
#include "src/tint/lang/core/type/f32.h"
#include "src/tint/lang/core/type/i32.h"
+#include "src/tint/lang/core/type/invalid.h"
#include "src/tint/lang/core/type/matrix.h"
#include "src/tint/lang/core/type/pointer.h"
#include "src/tint/lang/core/type/type.h"
@@ -54,6 +55,10 @@
Manager::~Manager() = default;
+const core::type::Invalid* Manager::invalid() {
+ return Get<core::type::Invalid>();
+}
+
const core::type::Void* Manager::void_() {
return Get<core::type::Void>();
}
diff --git a/src/tint/lang/core/type/manager.h b/src/tint/lang/core/type/manager.h
index 0a9a201..8c22f3d 100644
--- a/src/tint/lang/core/type/manager.h
+++ b/src/tint/lang/core/type/manager.h
@@ -52,6 +52,7 @@
class F16;
class F32;
class I32;
+class Invalid;
class Matrix;
class Pointer;
class U32;
@@ -175,6 +176,9 @@
return types_.Find<TYPE>(std::forward<ARGS>(args)...);
}
+ /// @returns an invalid type
+ const core::type::Invalid* invalid();
+
/// @returns a void type
const core::type::Void* void_();
diff --git a/src/tint/lang/wgsl/intrinsic/data.cc b/src/tint/lang/wgsl/intrinsic/data.cc
index 3a84f91..77641d2 100644
--- a/src/tint/lang/wgsl/intrinsic/data.cc
+++ b/src/tint/lang/wgsl/intrinsic/data.cc
@@ -1892,234 +1892,175 @@
/* [88] */ MatcherIndex(0),
/* [89] */ MatcherIndex(1),
/* [90] */ MatcherIndex(42),
- /* [91] */ MatcherIndex(4),
- /* [92] */ MatcherIndex(10),
+ /* [91] */ MatcherIndex(1),
+ /* [92] */ MatcherIndex(2),
/* [93] */ MatcherIndex(43),
- /* [94] */ MatcherIndex(4),
- /* [95] */ MatcherIndex(10),
+ /* [94] */ MatcherIndex(1),
+ /* [95] */ MatcherIndex(2),
/* [96] */ MatcherIndex(44),
- /* [97] */ MatcherIndex(4),
- /* [98] */ MatcherIndex(10),
+ /* [97] */ MatcherIndex(1),
+ /* [98] */ MatcherIndex(2),
/* [99] */ MatcherIndex(45),
- /* [100] */ MatcherIndex(4),
- /* [101] */ MatcherIndex(10),
- /* [102] */ MatcherIndex(42),
- /* [103] */ MatcherIndex(5),
- /* [104] */ MatcherIndex(10),
- /* [105] */ MatcherIndex(43),
- /* [106] */ MatcherIndex(5),
- /* [107] */ MatcherIndex(10),
- /* [108] */ MatcherIndex(44),
- /* [109] */ MatcherIndex(5),
- /* [110] */ MatcherIndex(10),
- /* [111] */ MatcherIndex(45),
- /* [112] */ MatcherIndex(5),
+ /* [100] */ MatcherIndex(1),
+ /* [101] */ MatcherIndex(2),
+ /* [102] */ MatcherIndex(23),
+ /* [103] */ MatcherIndex(2),
+ /* [104] */ MatcherIndex(0),
+ /* [105] */ MatcherIndex(23),
+ /* [106] */ MatcherIndex(1),
+ /* [107] */ MatcherIndex(4),
+ /* [108] */ MatcherIndex(11),
+ /* [109] */ MatcherIndex(10),
+ /* [110] */ MatcherIndex(11),
+ /* [111] */ MatcherIndex(68),
+ /* [112] */ MatcherIndex(13),
/* [113] */ MatcherIndex(10),
- /* [114] */ MatcherIndex(42),
- /* [115] */ MatcherIndex(6),
- /* [116] */ MatcherIndex(10),
- /* [117] */ MatcherIndex(43),
- /* [118] */ MatcherIndex(6),
- /* [119] */ MatcherIndex(10),
- /* [120] */ MatcherIndex(44),
- /* [121] */ MatcherIndex(6),
- /* [122] */ MatcherIndex(10),
- /* [123] */ MatcherIndex(45),
- /* [124] */ MatcherIndex(6),
- /* [125] */ MatcherIndex(10),
- /* [126] */ MatcherIndex(42),
- /* [127] */ MatcherIndex(4),
- /* [128] */ MatcherIndex(9),
- /* [129] */ MatcherIndex(42),
- /* [130] */ MatcherIndex(5),
- /* [131] */ MatcherIndex(9),
- /* [132] */ MatcherIndex(42),
- /* [133] */ MatcherIndex(6),
- /* [134] */ MatcherIndex(9),
- /* [135] */ MatcherIndex(43),
- /* [136] */ MatcherIndex(4),
- /* [137] */ MatcherIndex(9),
- /* [138] */ MatcherIndex(43),
- /* [139] */ MatcherIndex(5),
- /* [140] */ MatcherIndex(9),
- /* [141] */ MatcherIndex(43),
- /* [142] */ MatcherIndex(6),
- /* [143] */ MatcherIndex(9),
- /* [144] */ MatcherIndex(44),
- /* [145] */ MatcherIndex(4),
- /* [146] */ MatcherIndex(9),
- /* [147] */ MatcherIndex(44),
- /* [148] */ MatcherIndex(5),
- /* [149] */ MatcherIndex(9),
- /* [150] */ MatcherIndex(44),
- /* [151] */ MatcherIndex(6),
- /* [152] */ MatcherIndex(9),
- /* [153] */ MatcherIndex(45),
- /* [154] */ MatcherIndex(4),
+ /* [114] */ MatcherIndex(11),
+ /* [115] */ MatcherIndex(1),
+ /* [116] */ MatcherIndex(12),
+ /* [117] */ MatcherIndex(0),
+ /* [118] */ MatcherIndex(50),
+ /* [119] */ MatcherIndex(0),
+ /* [120] */ MatcherIndex(48),
+ /* [121] */ MatcherIndex(0),
+ /* [122] */ MatcherIndex(11),
+ /* [123] */ MatcherIndex(9),
+ /* [124] */ MatcherIndex(13),
+ /* [125] */ MatcherIndex(9),
+ /* [126] */ MatcherIndex(13),
+ /* [127] */ MatcherIndex(7),
+ /* [128] */ MatcherIndex(13),
+ /* [129] */ MatcherIndex(8),
+ /* [130] */ MatcherIndex(30),
+ /* [131] */ MatcherIndex(0),
+ /* [132] */ MatcherIndex(11),
+ /* [133] */ MatcherIndex(8),
+ /* [134] */ MatcherIndex(31),
+ /* [135] */ MatcherIndex(0),
+ /* [136] */ MatcherIndex(32),
+ /* [137] */ MatcherIndex(0),
+ /* [138] */ MatcherIndex(12),
+ /* [139] */ MatcherIndex(8),
+ /* [140] */ MatcherIndex(33),
+ /* [141] */ MatcherIndex(0),
+ /* [142] */ MatcherIndex(34),
+ /* [143] */ MatcherIndex(0),
+ /* [144] */ MatcherIndex(35),
+ /* [145] */ MatcherIndex(0),
+ /* [146] */ MatcherIndex(36),
+ /* [147] */ MatcherIndex(0),
+ /* [148] */ MatcherIndex(13),
+ /* [149] */ MatcherIndex(0),
+ /* [150] */ MatcherIndex(11),
+ /* [151] */ MatcherIndex(7),
+ /* [152] */ MatcherIndex(12),
+ /* [153] */ MatcherIndex(9),
+ /* [154] */ MatcherIndex(30),
/* [155] */ MatcherIndex(9),
- /* [156] */ MatcherIndex(45),
- /* [157] */ MatcherIndex(5),
- /* [158] */ MatcherIndex(9),
- /* [159] */ MatcherIndex(45),
- /* [160] */ MatcherIndex(6),
+ /* [156] */ MatcherIndex(31),
+ /* [157] */ MatcherIndex(9),
+ /* [158] */ MatcherIndex(32),
+ /* [159] */ MatcherIndex(9),
+ /* [160] */ MatcherIndex(33),
/* [161] */ MatcherIndex(9),
- /* [162] */ MatcherIndex(23),
- /* [163] */ MatcherIndex(2),
- /* [164] */ MatcherIndex(0),
- /* [165] */ MatcherIndex(23),
- /* [166] */ MatcherIndex(1),
- /* [167] */ MatcherIndex(4),
+ /* [162] */ MatcherIndex(12),
+ /* [163] */ MatcherIndex(7),
+ /* [164] */ MatcherIndex(34),
+ /* [165] */ MatcherIndex(9),
+ /* [166] */ MatcherIndex(35),
+ /* [167] */ MatcherIndex(9),
/* [168] */ MatcherIndex(11),
- /* [169] */ MatcherIndex(10),
- /* [170] */ MatcherIndex(11),
- /* [171] */ MatcherIndex(68),
- /* [172] */ MatcherIndex(13),
- /* [173] */ MatcherIndex(10),
+ /* [169] */ MatcherIndex(0),
+ /* [170] */ MatcherIndex(12),
+ /* [171] */ MatcherIndex(1),
+ /* [172] */ MatcherIndex(52),
+ /* [173] */ MatcherIndex(0),
/* [174] */ MatcherIndex(11),
- /* [175] */ MatcherIndex(1),
+ /* [175] */ MatcherIndex(5),
/* [176] */ MatcherIndex(12),
- /* [177] */ MatcherIndex(0),
- /* [178] */ MatcherIndex(50),
- /* [179] */ MatcherIndex(0),
- /* [180] */ MatcherIndex(48),
- /* [181] */ MatcherIndex(0),
- /* [182] */ MatcherIndex(11),
+ /* [177] */ MatcherIndex(5),
+ /* [178] */ MatcherIndex(13),
+ /* [179] */ MatcherIndex(5),
+ /* [180] */ MatcherIndex(13),
+ /* [181] */ MatcherIndex(1),
+ /* [182] */ MatcherIndex(14),
/* [183] */ MatcherIndex(9),
- /* [184] */ MatcherIndex(13),
- /* [185] */ MatcherIndex(9),
- /* [186] */ MatcherIndex(13),
- /* [187] */ MatcherIndex(7),
- /* [188] */ MatcherIndex(13),
- /* [189] */ MatcherIndex(8),
- /* [190] */ MatcherIndex(30),
- /* [191] */ MatcherIndex(0),
- /* [192] */ MatcherIndex(11),
- /* [193] */ MatcherIndex(8),
- /* [194] */ MatcherIndex(31),
- /* [195] */ MatcherIndex(0),
- /* [196] */ MatcherIndex(32),
- /* [197] */ MatcherIndex(0),
- /* [198] */ MatcherIndex(12),
- /* [199] */ MatcherIndex(8),
- /* [200] */ MatcherIndex(33),
- /* [201] */ MatcherIndex(0),
- /* [202] */ MatcherIndex(34),
- /* [203] */ MatcherIndex(0),
- /* [204] */ MatcherIndex(35),
+ /* [184] */ MatcherIndex(14),
+ /* [185] */ MatcherIndex(10),
+ /* [186] */ MatcherIndex(15),
+ /* [187] */ MatcherIndex(0),
+ /* [188] */ MatcherIndex(15),
+ /* [189] */ MatcherIndex(9),
+ /* [190] */ MatcherIndex(15),
+ /* [191] */ MatcherIndex(10),
+ /* [192] */ MatcherIndex(16),
+ /* [193] */ MatcherIndex(0),
+ /* [194] */ MatcherIndex(16),
+ /* [195] */ MatcherIndex(9),
+ /* [196] */ MatcherIndex(16),
+ /* [197] */ MatcherIndex(10),
+ /* [198] */ MatcherIndex(17),
+ /* [199] */ MatcherIndex(0),
+ /* [200] */ MatcherIndex(17),
+ /* [201] */ MatcherIndex(9),
+ /* [202] */ MatcherIndex(17),
+ /* [203] */ MatcherIndex(10),
+ /* [204] */ MatcherIndex(18),
/* [205] */ MatcherIndex(0),
- /* [206] */ MatcherIndex(36),
- /* [207] */ MatcherIndex(0),
- /* [208] */ MatcherIndex(13),
- /* [209] */ MatcherIndex(0),
- /* [210] */ MatcherIndex(11),
- /* [211] */ MatcherIndex(7),
- /* [212] */ MatcherIndex(12),
+ /* [206] */ MatcherIndex(18),
+ /* [207] */ MatcherIndex(9),
+ /* [208] */ MatcherIndex(18),
+ /* [209] */ MatcherIndex(10),
+ /* [210] */ MatcherIndex(19),
+ /* [211] */ MatcherIndex(0),
+ /* [212] */ MatcherIndex(19),
/* [213] */ MatcherIndex(9),
- /* [214] */ MatcherIndex(30),
- /* [215] */ MatcherIndex(9),
- /* [216] */ MatcherIndex(31),
- /* [217] */ MatcherIndex(9),
- /* [218] */ MatcherIndex(32),
+ /* [214] */ MatcherIndex(19),
+ /* [215] */ MatcherIndex(10),
+ /* [216] */ MatcherIndex(20),
+ /* [217] */ MatcherIndex(0),
+ /* [218] */ MatcherIndex(20),
/* [219] */ MatcherIndex(9),
- /* [220] */ MatcherIndex(33),
- /* [221] */ MatcherIndex(9),
- /* [222] */ MatcherIndex(12),
- /* [223] */ MatcherIndex(7),
- /* [224] */ MatcherIndex(34),
+ /* [220] */ MatcherIndex(20),
+ /* [221] */ MatcherIndex(10),
+ /* [222] */ MatcherIndex(21),
+ /* [223] */ MatcherIndex(0),
+ /* [224] */ MatcherIndex(21),
/* [225] */ MatcherIndex(9),
- /* [226] */ MatcherIndex(35),
- /* [227] */ MatcherIndex(9),
- /* [228] */ MatcherIndex(11),
+ /* [226] */ MatcherIndex(21),
+ /* [227] */ MatcherIndex(10),
+ /* [228] */ MatcherIndex(22),
/* [229] */ MatcherIndex(0),
- /* [230] */ MatcherIndex(12),
- /* [231] */ MatcherIndex(1),
- /* [232] */ MatcherIndex(52),
- /* [233] */ MatcherIndex(0),
- /* [234] */ MatcherIndex(11),
- /* [235] */ MatcherIndex(5),
- /* [236] */ MatcherIndex(12),
- /* [237] */ MatcherIndex(5),
- /* [238] */ MatcherIndex(13),
- /* [239] */ MatcherIndex(5),
- /* [240] */ MatcherIndex(13),
- /* [241] */ MatcherIndex(1),
- /* [242] */ MatcherIndex(14),
- /* [243] */ MatcherIndex(9),
- /* [244] */ MatcherIndex(14),
- /* [245] */ MatcherIndex(10),
- /* [246] */ MatcherIndex(15),
- /* [247] */ MatcherIndex(0),
- /* [248] */ MatcherIndex(15),
- /* [249] */ MatcherIndex(9),
- /* [250] */ MatcherIndex(15),
- /* [251] */ MatcherIndex(10),
- /* [252] */ MatcherIndex(16),
- /* [253] */ MatcherIndex(0),
- /* [254] */ MatcherIndex(16),
- /* [255] */ MatcherIndex(9),
- /* [256] */ MatcherIndex(16),
- /* [257] */ MatcherIndex(10),
- /* [258] */ MatcherIndex(17),
- /* [259] */ MatcherIndex(0),
- /* [260] */ MatcherIndex(17),
- /* [261] */ MatcherIndex(9),
- /* [262] */ MatcherIndex(17),
- /* [263] */ MatcherIndex(10),
- /* [264] */ MatcherIndex(18),
- /* [265] */ MatcherIndex(0),
- /* [266] */ MatcherIndex(18),
- /* [267] */ MatcherIndex(9),
- /* [268] */ MatcherIndex(18),
- /* [269] */ MatcherIndex(10),
- /* [270] */ MatcherIndex(19),
- /* [271] */ MatcherIndex(0),
- /* [272] */ MatcherIndex(19),
- /* [273] */ MatcherIndex(9),
- /* [274] */ MatcherIndex(19),
- /* [275] */ MatcherIndex(10),
- /* [276] */ MatcherIndex(20),
- /* [277] */ MatcherIndex(0),
- /* [278] */ MatcherIndex(20),
- /* [279] */ MatcherIndex(9),
- /* [280] */ MatcherIndex(20),
- /* [281] */ MatcherIndex(10),
- /* [282] */ MatcherIndex(21),
- /* [283] */ MatcherIndex(0),
- /* [284] */ MatcherIndex(21),
- /* [285] */ MatcherIndex(9),
- /* [286] */ MatcherIndex(21),
- /* [287] */ MatcherIndex(10),
- /* [288] */ MatcherIndex(22),
- /* [289] */ MatcherIndex(0),
- /* [290] */ MatcherIndex(22),
- /* [291] */ MatcherIndex(9),
- /* [292] */ MatcherIndex(22),
- /* [293] */ MatcherIndex(10),
- /* [294] */ MatcherIndex(47),
- /* [295] */ MatcherIndex(0),
- /* [296] */ MatcherIndex(60),
- /* [297] */ MatcherIndex(64),
- /* [298] */ MatcherIndex(72),
- /* [299] */ MatcherIndex(66),
- /* [300] */ MatcherIndex(53),
- /* [301] */ MatcherIndex(61),
- /* [302] */ MatcherIndex(37),
- /* [303] */ MatcherIndex(38),
- /* [304] */ MatcherIndex(39),
- /* [305] */ MatcherIndex(40),
- /* [306] */ MatcherIndex(41),
- /* [307] */ MatcherIndex(46),
- /* [308] */ MatcherIndex(28),
- /* [309] */ MatcherIndex(29),
- /* [310] */ MatcherIndex(67),
- /* [311] */ MatcherIndex(65),
- /* [312] */ MatcherIndex(57),
- /* [313] */ MatcherIndex(58),
- /* [314] */ MatcherIndex(55),
- /* [315] */ MatcherIndex(56),
- /* [316] */ MatcherIndex(59),
- /* [317] */ MatcherIndex(54),
- /* [318] */ MatcherIndex(71),
+ /* [230] */ MatcherIndex(22),
+ /* [231] */ MatcherIndex(9),
+ /* [232] */ MatcherIndex(22),
+ /* [233] */ MatcherIndex(10),
+ /* [234] */ MatcherIndex(47),
+ /* [235] */ MatcherIndex(0),
+ /* [236] */ MatcherIndex(60),
+ /* [237] */ MatcherIndex(64),
+ /* [238] */ MatcherIndex(72),
+ /* [239] */ MatcherIndex(66),
+ /* [240] */ MatcherIndex(53),
+ /* [241] */ MatcherIndex(61),
+ /* [242] */ MatcherIndex(37),
+ /* [243] */ MatcherIndex(38),
+ /* [244] */ MatcherIndex(39),
+ /* [245] */ MatcherIndex(40),
+ /* [246] */ MatcherIndex(41),
+ /* [247] */ MatcherIndex(46),
+ /* [248] */ MatcherIndex(28),
+ /* [249] */ MatcherIndex(29),
+ /* [250] */ MatcherIndex(6),
+ /* [251] */ MatcherIndex(67),
+ /* [252] */ MatcherIndex(65),
+ /* [253] */ MatcherIndex(57),
+ /* [254] */ MatcherIndex(58),
+ /* [255] */ MatcherIndex(55),
+ /* [256] */ MatcherIndex(56),
+ /* [257] */ MatcherIndex(59),
+ /* [258] */ MatcherIndex(54),
+ /* [259] */ MatcherIndex(71),
};
static_assert(MatcherIndicesIndex::CanIndex(kMatcherIndices),
@@ -2224,17 +2165,17 @@
{
/* [19] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(218),
+ /* matcher_indices */ MatcherIndicesIndex(158),
},
{
/* [20] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [21] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [22] */
@@ -2244,17 +2185,17 @@
{
/* [23] */
/* usage */ core::ParameterUsage::kDdx,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [24] */
/* usage */ core::ParameterUsage::kDdy,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [25] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [26] */
@@ -2264,17 +2205,17 @@
{
/* [27] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(196),
+ /* matcher_indices */ MatcherIndicesIndex(136),
},
{
/* [28] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [29] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [30] */
@@ -2284,22 +2225,22 @@
{
/* [31] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [32] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(303),
+ /* matcher_indices */ MatcherIndicesIndex(243),
},
{
/* [33] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(309),
+ /* matcher_indices */ MatcherIndicesIndex(249),
},
{
/* [34] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [35] */
@@ -2314,22 +2255,22 @@
{
/* [37] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [38] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(218),
+ /* matcher_indices */ MatcherIndicesIndex(158),
},
{
/* [39] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [40] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [41] */
@@ -2344,82 +2285,82 @@
{
/* [43] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [44] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(216),
+ /* matcher_indices */ MatcherIndicesIndex(156),
},
{
/* [45] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [46] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [47] */
/* usage */ core::ParameterUsage::kDdx,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [48] */
/* usage */ core::ParameterUsage::kDdy,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [49] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [50] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(220),
+ /* matcher_indices */ MatcherIndicesIndex(160),
},
{
/* [51] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [52] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [53] */
/* usage */ core::ParameterUsage::kDdx,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [54] */
/* usage */ core::ParameterUsage::kDdy,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [55] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(222),
+ /* matcher_indices */ MatcherIndicesIndex(162),
},
{
/* [56] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(226),
+ /* matcher_indices */ MatcherIndicesIndex(166),
},
{
/* [57] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [58] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [59] */
@@ -2429,27 +2370,27 @@
{
/* [60] */
/* usage */ core::ParameterUsage::kDdx,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [61] */
/* usage */ core::ParameterUsage::kDdy,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [62] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(218),
+ /* matcher_indices */ MatcherIndicesIndex(158),
},
{
/* [63] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [64] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [65] */
@@ -2464,22 +2405,22 @@
{
/* [67] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [68] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(303),
+ /* matcher_indices */ MatcherIndicesIndex(243),
},
{
/* [69] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [70] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [71] */
@@ -2494,7 +2435,7 @@
{
/* [73] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [74] */
@@ -2504,22 +2445,22 @@
{
/* [75] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(194),
+ /* matcher_indices */ MatcherIndicesIndex(134),
},
{
/* [76] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [77] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [78] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [79] */
@@ -2529,17 +2470,17 @@
{
/* [80] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(204),
+ /* matcher_indices */ MatcherIndicesIndex(144),
},
{
/* [81] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [82] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [83] */
@@ -2549,17 +2490,17 @@
{
/* [84] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(303),
+ /* matcher_indices */ MatcherIndicesIndex(243),
},
{
/* [85] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [86] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [87] */
@@ -2569,22 +2510,22 @@
{
/* [88] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [89] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(302),
+ /* matcher_indices */ MatcherIndicesIndex(242),
},
{
/* [90] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(309),
+ /* matcher_indices */ MatcherIndicesIndex(249),
},
{
/* [91] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [92] */
@@ -2594,22 +2535,22 @@
{
/* [93] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [94] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(305),
+ /* matcher_indices */ MatcherIndicesIndex(245),
},
{
/* [95] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(309),
+ /* matcher_indices */ MatcherIndicesIndex(249),
},
{
/* [96] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [97] */
@@ -2624,17 +2565,17 @@
{
/* [99] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(218),
+ /* matcher_indices */ MatcherIndicesIndex(158),
},
{
/* [100] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [101] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [102] */
@@ -2644,22 +2585,22 @@
{
/* [103] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [104] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(216),
+ /* matcher_indices */ MatcherIndicesIndex(156),
},
{
/* [105] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [106] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [107] */
@@ -2669,22 +2610,22 @@
{
/* [108] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [109] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(220),
+ /* matcher_indices */ MatcherIndicesIndex(160),
},
{
/* [110] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [111] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [112] */
@@ -2694,22 +2635,22 @@
{
/* [113] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(222),
+ /* matcher_indices */ MatcherIndicesIndex(162),
},
{
/* [114] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(226),
+ /* matcher_indices */ MatcherIndicesIndex(166),
},
{
/* [115] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [116] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [117] */
@@ -2724,42 +2665,42 @@
{
/* [119] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(224),
+ /* matcher_indices */ MatcherIndicesIndex(164),
},
{
/* [120] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [121] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [122] */
/* usage */ core::ParameterUsage::kDdx,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [123] */
/* usage */ core::ParameterUsage::kDdy,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [124] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(216),
+ /* matcher_indices */ MatcherIndicesIndex(156),
},
{
/* [125] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [126] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [127] */
@@ -2769,22 +2710,22 @@
{
/* [128] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [129] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(220),
+ /* matcher_indices */ MatcherIndicesIndex(160),
},
{
/* [130] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [131] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [132] */
@@ -2794,22 +2735,22 @@
{
/* [133] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(222),
+ /* matcher_indices */ MatcherIndicesIndex(162),
},
{
/* [134] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(226),
+ /* matcher_indices */ MatcherIndicesIndex(166),
},
{
/* [135] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [136] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [137] */
@@ -2824,17 +2765,17 @@
{
/* [139] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(302),
+ /* matcher_indices */ MatcherIndicesIndex(242),
},
{
/* [140] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [141] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [142] */
@@ -2844,22 +2785,22 @@
{
/* [143] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [144] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(305),
+ /* matcher_indices */ MatcherIndicesIndex(245),
},
{
/* [145] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [146] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [147] */
@@ -2899,52 +2840,52 @@
{
/* [154] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(202),
+ /* matcher_indices */ MatcherIndicesIndex(142),
},
{
/* [155] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [156] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [157] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(302),
+ /* matcher_indices */ MatcherIndicesIndex(242),
},
{
/* [158] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [159] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [160] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [161] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(304),
+ /* matcher_indices */ MatcherIndicesIndex(244),
},
{
/* [162] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(309),
+ /* matcher_indices */ MatcherIndicesIndex(249),
},
{
/* [163] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [164] */
@@ -2954,57 +2895,57 @@
{
/* [165] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(216),
+ /* matcher_indices */ MatcherIndicesIndex(156),
},
{
/* [166] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [167] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [168] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(210),
+ /* matcher_indices */ MatcherIndicesIndex(150),
},
{
/* [169] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(220),
+ /* matcher_indices */ MatcherIndicesIndex(160),
},
{
/* [170] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [171] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [172] */
/* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(222),
+ /* matcher_indices */ MatcherIndicesIndex(162),
},
{
/* [173] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(224),
+ /* matcher_indices */ MatcherIndicesIndex(164),
},
{
/* [174] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [175] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [176] */
@@ -3014,17 +2955,17 @@
{
/* [177] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(224),
+ /* matcher_indices */ MatcherIndicesIndex(164),
},
{
/* [178] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [179] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [180] */
@@ -3034,17 +2975,17 @@
{
/* [181] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(304),
+ /* matcher_indices */ MatcherIndicesIndex(244),
},
{
/* [182] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [183] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(212),
+ /* matcher_indices */ MatcherIndicesIndex(152),
},
{
/* [184] */
@@ -3059,67 +3000,67 @@
{
/* [186] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [187] */
/* usage */ core::ParameterUsage::kArrayIndex,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* matcher_indices */ MatcherIndicesIndex(32),
},
{
/* [188] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(124),
},
{
/* [189] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(108),
+ /* matcher_indices */ MatcherIndicesIndex(96),
},
{
/* [190] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [191] */
/* usage */ core::ParameterUsage::kArrayIndex,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* matcher_indices */ MatcherIndicesIndex(32),
},
{
/* [192] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(186),
+ /* matcher_indices */ MatcherIndicesIndex(126),
},
{
/* [193] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(120),
+ /* matcher_indices */ MatcherIndicesIndex(96),
},
{
/* [194] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [195] */
/* usage */ core::ParameterUsage::kArrayIndex,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* matcher_indices */ MatcherIndicesIndex(32),
},
{
/* [196] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(188),
+ /* matcher_indices */ MatcherIndicesIndex(128),
},
{
/* [197] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(196),
+ /* matcher_indices */ MatcherIndicesIndex(136),
},
{
/* [198] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(174),
+ /* matcher_indices */ MatcherIndicesIndex(114),
},
{
/* [199] */
@@ -3134,12 +3075,12 @@
{
/* [201] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(303),
+ /* matcher_indices */ MatcherIndicesIndex(243),
},
{
/* [202] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [203] */
@@ -3174,62 +3115,62 @@
{
/* [209] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [210] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [211] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [212] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [213] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [214] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [215] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [216] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [217] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(208),
+ /* matcher_indices */ MatcherIndicesIndex(148),
},
{
/* [218] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(208),
+ /* matcher_indices */ MatcherIndicesIndex(148),
},
{
/* [219] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(208),
+ /* matcher_indices */ MatcherIndicesIndex(148),
},
{
/* [220] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(208),
+ /* matcher_indices */ MatcherIndicesIndex(148),
},
{
/* [221] */
@@ -3314,12 +3255,12 @@
{
/* [237] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(214),
+ /* matcher_indices */ MatcherIndicesIndex(154),
},
{
/* [238] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [239] */
@@ -3329,17 +3270,17 @@
{
/* [240] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(307),
+ /* matcher_indices */ MatcherIndicesIndex(247),
},
{
/* [241] */
/* usage */ core::ParameterUsage::kSampler,
- /* matcher_indices */ MatcherIndicesIndex(308),
+ /* matcher_indices */ MatcherIndicesIndex(248),
},
{
/* [242] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
/* [243] */
@@ -3354,7 +3295,7 @@
{
/* [245] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(124),
},
{
/* [246] */
@@ -3364,12 +3305,12 @@
{
/* [247] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [248] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(124),
},
{
/* [249] */
@@ -3379,17 +3320,17 @@
{
/* [250] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [251] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(124),
},
{
/* [252] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(102),
+ /* matcher_indices */ MatcherIndicesIndex(90),
},
{
/* [253] */
@@ -3399,42 +3340,42 @@
{
/* [254] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(186),
+ /* matcher_indices */ MatcherIndicesIndex(126),
},
{
/* [255] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(105),
+ /* matcher_indices */ MatcherIndicesIndex(93),
},
{
/* [256] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [257] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(186),
+ /* matcher_indices */ MatcherIndicesIndex(126),
},
{
/* [258] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(111),
+ /* matcher_indices */ MatcherIndicesIndex(99),
},
{
/* [259] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [260] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(186),
+ /* matcher_indices */ MatcherIndicesIndex(126),
},
{
/* [261] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(114),
+ /* matcher_indices */ MatcherIndicesIndex(90),
},
{
/* [262] */
@@ -3444,42 +3385,42 @@
{
/* [263] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(188),
+ /* matcher_indices */ MatcherIndicesIndex(128),
},
{
/* [264] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(117),
+ /* matcher_indices */ MatcherIndicesIndex(93),
},
{
/* [265] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [266] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(188),
+ /* matcher_indices */ MatcherIndicesIndex(128),
},
{
/* [267] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(123),
+ /* matcher_indices */ MatcherIndicesIndex(99),
},
{
/* [268] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
/* [269] */
/* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(188),
+ /* matcher_indices */ MatcherIndicesIndex(128),
},
{
/* [270] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(190),
+ /* matcher_indices */ MatcherIndicesIndex(130),
},
{
/* [271] */
@@ -3494,12 +3435,12 @@
{
/* [273] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(194),
+ /* matcher_indices */ MatcherIndicesIndex(134),
},
{
/* [274] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(174),
+ /* matcher_indices */ MatcherIndicesIndex(114),
},
{
/* [275] */
@@ -3509,12 +3450,12 @@
{
/* [276] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(200),
+ /* matcher_indices */ MatcherIndicesIndex(140),
},
{
/* [277] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(230),
+ /* matcher_indices */ MatcherIndicesIndex(170),
},
{
/* [278] */
@@ -3524,12 +3465,12 @@
{
/* [279] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(206),
+ /* matcher_indices */ MatcherIndicesIndex(146),
},
{
/* [280] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(174),
+ /* matcher_indices */ MatcherIndicesIndex(114),
},
{
/* [281] */
@@ -3539,12 +3480,12 @@
{
/* [282] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(302),
+ /* matcher_indices */ MatcherIndicesIndex(242),
},
{
/* [283] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [284] */
@@ -3554,12 +3495,12 @@
{
/* [285] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(306),
+ /* matcher_indices */ MatcherIndicesIndex(246),
},
{
/* [286] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [287] */
@@ -3568,543 +3509,543 @@
},
{
/* [288] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(144),
+ /* usage */ core::ParameterUsage::kXy,
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [289] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [290] */
- /* usage */ core::ParameterUsage::kArrayIndex,
- /* matcher_indices */ MatcherIndicesIndex(4),
- },
- {
- /* [291] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(147),
- },
- {
- /* [292] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [293] */
- /* usage */ core::ParameterUsage::kArrayIndex,
- /* matcher_indices */ MatcherIndicesIndex(4),
- },
- {
- /* [294] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(150),
- },
- {
- /* [295] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [296] */
- /* usage */ core::ParameterUsage::kArrayIndex,
- /* matcher_indices */ MatcherIndicesIndex(4),
- },
- {
- /* [297] */
- /* usage */ core::ParameterUsage::kXy,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [298] */
/* usage */ core::ParameterUsage::kZ,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [299] */
+ /* [290] */
/* usage */ core::ParameterUsage::kW,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [300] */
+ /* [291] */
/* usage */ core::ParameterUsage::kX,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [301] */
+ /* [292] */
/* usage */ core::ParameterUsage::kYz,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
- /* [302] */
+ /* [293] */
/* usage */ core::ParameterUsage::kW,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [303] */
+ /* [294] */
/* usage */ core::ParameterUsage::kX,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [304] */
+ /* [295] */
/* usage */ core::ParameterUsage::kY,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [305] */
+ /* [296] */
/* usage */ core::ParameterUsage::kZw,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
- /* [306] */
+ /* [297] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [307] */
+ /* [298] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
- /* [308] */
+ /* [299] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(42),
},
{
- /* [309] */
+ /* [300] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(72),
},
{
- /* [310] */
+ /* [301] */
/* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(190),
+ /* matcher_indices */ MatcherIndicesIndex(130),
+ },
+ {
+ /* [302] */
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(4),
+ },
+ {
+ /* [303] */
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(134),
+ },
+ {
+ /* [304] */
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(4),
+ },
+ {
+ /* [305] */
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(136),
+ },
+ {
+ /* [306] */
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(4),
+ },
+ {
+ /* [307] */
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(140),
+ },
+ {
+ /* [308] */
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(4),
+ },
+ {
+ /* [309] */
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(142),
+ },
+ {
+ /* [310] */
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [311] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(144),
},
{
/* [312] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(194),
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [313] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(242),
},
{
/* [314] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(196),
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [315] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(243),
},
{
/* [316] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(200),
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [317] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(244),
},
{
/* [318] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(202),
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [319] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(245),
},
{
/* [320] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(204),
+ /* usage */ core::ParameterUsage::kLevel,
+ /* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [321] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(4),
+ /* usage */ core::ParameterUsage::kTexture,
+ /* matcher_indices */ MatcherIndicesIndex(247),
},
{
/* [322] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(302),
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
/* [323] */
- /* usage */ core::ParameterUsage::kLevel,
+ /* usage */ core::ParameterUsage::kValue,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [324] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(303),
- },
- {
- /* [325] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [326] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(304),
- },
- {
- /* [327] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [328] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(305),
- },
- {
- /* [329] */
- /* usage */ core::ParameterUsage::kLevel,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [330] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(307),
- },
- {
- /* [331] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [332] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(126),
- },
- {
- /* [333] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [334] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(129),
- },
- {
- /* [335] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [336] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(132),
- },
- {
- /* [337] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [338] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(135),
- },
- {
- /* [339] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [340] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(138),
- },
- {
- /* [341] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [342] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(141),
- },
- {
- /* [343] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(228),
- },
- {
- /* [344] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(153),
- },
- {
- /* [345] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(176),
- },
- {
- /* [346] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(156),
- },
- {
- /* [347] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(176),
- },
- {
- /* [348] */
- /* usage */ core::ParameterUsage::kTexture,
- /* matcher_indices */ MatcherIndicesIndex(159),
- },
- {
- /* [349] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(176),
- },
- {
- /* [350] */
- /* usage */ core::ParameterUsage::kValue,
- /* matcher_indices */ MatcherIndicesIndex(3),
- },
- {
- /* [351] */
/* usage */ core::ParameterUsage::kSourceLaneIndex,
/* matcher_indices */ MatcherIndicesIndex(9),
},
{
- /* [352] */
+ /* [325] */
/* usage */ core::ParameterUsage::kValue,
/* matcher_indices */ MatcherIndicesIndex(42),
},
{
- /* [353] */
+ /* [326] */
/* usage */ core::ParameterUsage::kSourceLaneIndex,
/* matcher_indices */ MatcherIndicesIndex(9),
},
{
- /* [354] */
+ /* [327] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(48),
},
{
- /* [355] */
+ /* [328] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [356] */
+ /* [329] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(48),
},
{
- /* [357] */
+ /* [330] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(60),
},
{
- /* [358] */
+ /* [331] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(26),
},
{
- /* [359] */
+ /* [332] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(26),
},
{
- /* [360] */
+ /* [333] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [361] */
+ /* [334] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(26),
},
{
- /* [362] */
+ /* [335] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(48),
},
{
- /* [363] */
+ /* [336] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(162),
+ /* matcher_indices */ MatcherIndicesIndex(102),
},
{
- /* [364] */
+ /* [337] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(26),
},
{
- /* [365] */
+ /* [338] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(34),
},
{
- /* [366] */
+ /* [339] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(38),
},
{
- /* [367] */
+ /* [340] */
/* usage */ core::ParameterUsage::kXy,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
- /* [368] */
+ /* [341] */
/* usage */ core::ParameterUsage::kZw,
- /* matcher_indices */ MatcherIndicesIndex(228),
+ /* matcher_indices */ MatcherIndicesIndex(168),
},
{
- /* [369] */
+ /* [342] */
/* usage */ core::ParameterUsage::kXyz,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
- /* [370] */
+ /* [343] */
/* usage */ core::ParameterUsage::kW,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [371] */
+ /* [344] */
/* usage */ core::ParameterUsage::kX,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
- /* [372] */
+ /* [345] */
/* usage */ core::ParameterUsage::kZyw,
- /* matcher_indices */ MatcherIndicesIndex(176),
+ /* matcher_indices */ MatcherIndicesIndex(116),
},
{
- /* [373] */
+ /* [346] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(0),
},
{
- /* [374] */
+ /* [347] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(59),
},
{
- /* [375] */
+ /* [348] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(54),
},
{
- /* [376] */
+ /* [349] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(57),
},
{
- /* [377] */
+ /* [350] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(65),
},
{
- /* [378] */
+ /* [351] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(63),
},
{
- /* [379] */
+ /* [352] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(168),
+ /* matcher_indices */ MatcherIndicesIndex(108),
},
{
- /* [380] */
+ /* [353] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(172),
+ /* matcher_indices */ MatcherIndicesIndex(112),
},
{
- /* [381] */
+ /* [354] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(174),
+ /* matcher_indices */ MatcherIndicesIndex(114),
},
{
- /* [382] */
+ /* [355] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(10),
},
{
- /* [383] */
+ /* [356] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(68),
},
{
- /* [384] */
+ /* [357] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(66),
},
{
- /* [385] */
+ /* [358] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(182),
+ /* matcher_indices */ MatcherIndicesIndex(122),
},
{
- /* [386] */
+ /* [359] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(124),
},
{
- /* [387] */
+ /* [360] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(186),
+ /* matcher_indices */ MatcherIndicesIndex(126),
},
{
- /* [388] */
+ /* [361] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(188),
+ /* matcher_indices */ MatcherIndicesIndex(128),
},
{
- /* [389] */
+ /* [362] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(18),
},
{
- /* [390] */
+ /* [363] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(22),
},
{
- /* [391] */
+ /* [364] */
/* usage */ core::ParameterUsage::kTexture,
/* matcher_indices */ MatcherIndicesIndex(78),
},
{
- /* [392] */
+ /* [365] */
/* usage */ core::ParameterUsage::kTexture,
/* matcher_indices */ MatcherIndicesIndex(81),
},
{
- /* [393] */
+ /* [366] */
/* usage */ core::ParameterUsage::kTexture,
/* matcher_indices */ MatcherIndicesIndex(84),
},
{
- /* [394] */
+ /* [367] */
/* usage */ core::ParameterUsage::kTexture,
/* matcher_indices */ MatcherIndicesIndex(87),
},
{
+ /* [368] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(127),
+ },
+ {
+ /* [369] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(170),
+ },
+ {
+ /* [370] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(180),
+ },
+ {
+ /* [371] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(23),
+ },
+ {
+ /* [372] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(182),
+ },
+ {
+ /* [373] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(184),
+ },
+ {
+ /* [374] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(186),
+ },
+ {
+ /* [375] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(188),
+ },
+ {
+ /* [376] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(190),
+ },
+ {
+ /* [377] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(192),
+ },
+ {
+ /* [378] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(194),
+ },
+ {
+ /* [379] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(196),
+ },
+ {
+ /* [380] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(198),
+ },
+ {
+ /* [381] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(200),
+ },
+ {
+ /* [382] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(202),
+ },
+ {
+ /* [383] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(204),
+ },
+ {
+ /* [384] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(206),
+ },
+ {
+ /* [385] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(208),
+ },
+ {
+ /* [386] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(210),
+ },
+ {
+ /* [387] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(212),
+ },
+ {
+ /* [388] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(214),
+ },
+ {
+ /* [389] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(216),
+ },
+ {
+ /* [390] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(218),
+ },
+ {
+ /* [391] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(220),
+ },
+ {
+ /* [392] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(222),
+ },
+ {
+ /* [393] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(224),
+ },
+ {
+ /* [394] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(226),
+ },
+ {
/* [395] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(187),
+ /* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [396] */
@@ -4114,142 +4055,7 @@
{
/* [397] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(240),
- },
- {
- /* [398] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(23),
- },
- {
- /* [399] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(242),
- },
- {
- /* [400] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(244),
- },
- {
- /* [401] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(246),
- },
- {
- /* [402] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(248),
- },
- {
- /* [403] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(250),
- },
- {
- /* [404] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(252),
- },
- {
- /* [405] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(254),
- },
- {
- /* [406] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(256),
- },
- {
- /* [407] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(258),
- },
- {
- /* [408] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(260),
- },
- {
- /* [409] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(262),
- },
- {
- /* [410] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(264),
- },
- {
- /* [411] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(266),
- },
- {
- /* [412] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(268),
- },
- {
- /* [413] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(270),
- },
- {
- /* [414] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(272),
- },
- {
- /* [415] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(274),
- },
- {
- /* [416] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(276),
- },
- {
- /* [417] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(278),
- },
- {
- /* [418] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
- },
- {
- /* [419] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(282),
- },
- {
- /* [420] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(284),
- },
- {
- /* [421] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(286),
- },
- {
- /* [422] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(288),
- },
- {
- /* [423] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(290),
- },
- {
- /* [424] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(292),
+ /* matcher_indices */ MatcherIndicesIndex(232),
},
};
@@ -4266,212 +4072,212 @@
{
/* [1] */
/* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(298),
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [2] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(298),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(47),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [3] */
- /* name */ "L",
- /* matcher_indices */ MatcherIndicesIndex(298),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "W",
+ /* matcher_indices */ MatcherIndicesIndex(59),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [4] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(297),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [5] */
- /* name */ "K",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "L",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [6] */
/* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [7] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(65),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [8] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(51),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [9] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* name */ "W",
+ /* matcher_indices */ MatcherIndicesIndex(59),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [9] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
/* [10] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(53),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [11] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(250),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [12] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(297),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "W",
+ /* matcher_indices */ MatcherIndicesIndex(59),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [13] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(299),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [14] */
- /* name */ "M",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(53),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [15] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [16] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(297),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [17] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "L",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [18] */
- /* name */ "M",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [19] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(53),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(47),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [20] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(298),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(68),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [21] */
- /* name */ "L",
- /* matcher_indices */ MatcherIndicesIndex(298),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [22] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(53),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [23] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(298),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(65),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [24] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(298),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(68),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [25] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(297),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [26] */
/* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [27] */
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(250),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [28] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(68),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [29] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [30] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(237),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [31] */
+ /* name */ "K",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [27] */
+ /* [32] */
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [33] */
/* name */ "R",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [28] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [29] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(296),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [30] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [31] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(298),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [32] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(176),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [33] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
/* [34] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(51),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [35] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(53),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [36] */
@@ -4481,224 +4287,380 @@
},
{
/* [37] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(57),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [38] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [39] */
+ /* [38] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(300),
+ /* matcher_indices */ MatcherIndicesIndex(237),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [39] */
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(239),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [40] */
- /* name */ "N",
+ /* name */ "M",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [41] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(301),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [42] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(237),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [43] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(310),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [44] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(60),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [45] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [46] */
+ /* [44] */
+ /* name */ "M",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [45] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(168),
+ /* matcher_indices */ MatcherIndicesIndex(53),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [46] */
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [47] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(53),
+ /* name */ "L",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [48] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(172),
+ /* matcher_indices */ MatcherIndicesIndex(53),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [49] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(53),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [50] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(53),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [51] */
- /* name */ "L",
- /* matcher_indices */ MatcherIndicesIndex(298),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(237),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [52] */
- /* name */ "F",
+ /* name */ "C",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [53] */
- /* name */ "A",
+ /* name */ "R",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [54] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(311),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [55] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [56] */
+ /* [55] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(68),
+ /* matcher_indices */ MatcherIndicesIndex(236),
/* kind */ TemplateInfo::Kind::kType,
},
{
+ /* [56] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
/* [57] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(314),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(238),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [58] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(59),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(116),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [59] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(315),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [60] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(187),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [61] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(312),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(53),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [62] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(53),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [63] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(313),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(57),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [64] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(47),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [65] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(316),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(240),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [66] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(170),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [67] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(312),
+ /* matcher_indices */ MatcherIndicesIndex(241),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [68] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(313),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [69] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(314),
+ /* matcher_indices */ MatcherIndicesIndex(251),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [70] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(315),
+ /* matcher_indices */ MatcherIndicesIndex(60),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [71] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(316),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [72] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(317),
+ /* matcher_indices */ MatcherIndicesIndex(108),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [73] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(53),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [74] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(318),
+ /* matcher_indices */ MatcherIndicesIndex(112),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [75] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(53),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [76] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(53),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [77] */
+ /* name */ "L",
+ /* matcher_indices */ MatcherIndicesIndex(238),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [78] */
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [79] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [80] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(252),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [81] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [82] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(68),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [83] */
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(255),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [84] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(59),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [85] */
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(256),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [86] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(127),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [87] */
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(253),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [88] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(9),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [89] */
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(254),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [90] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(47),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [91] */
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(257),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [92] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(110),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [93] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(253),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [94] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(254),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [95] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(255),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [96] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(256),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [97] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(257),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [98] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(258),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [99] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(259),
/* kind */ TemplateInfo::Kind::kType,
},
};
@@ -4844,8 +4806,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(50),
- /* parameters */ ParameterIndex(310),
+ /* templates */ TemplateIndex(76),
+ /* parameters */ ParameterIndex(301),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -4857,7 +4819,7 @@
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(75),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4866,9 +4828,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(50),
- /* parameters */ ParameterIndex(312),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(76),
+ /* parameters */ ParameterIndex(303),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4879,7 +4841,7 @@
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(27),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4888,9 +4850,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(50),
- /* parameters */ ParameterIndex(314),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(76),
+ /* parameters */ ParameterIndex(305),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4901,7 +4863,7 @@
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(276),
- /* return_matcher_indices */ MatcherIndicesIndex(198),
+ /* return_matcher_indices */ MatcherIndicesIndex(138),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4910,9 +4872,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(50),
- /* parameters */ ParameterIndex(316),
- /* return_matcher_indices */ MatcherIndicesIndex(198),
+ /* templates */ TemplateIndex(76),
+ /* parameters */ ParameterIndex(307),
+ /* return_matcher_indices */ MatcherIndicesIndex(138),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4923,7 +4885,7 @@
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(154),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4932,9 +4894,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(50),
- /* parameters */ ParameterIndex(318),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(76),
+ /* parameters */ ParameterIndex(309),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4945,7 +4907,7 @@
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(80),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4954,9 +4916,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(50),
- /* parameters */ ParameterIndex(320),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(76),
+ /* parameters */ ParameterIndex(311),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4967,7 +4929,7 @@
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(279),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4978,7 +4940,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(89),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -4987,9 +4949,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
- /* parameters */ ParameterIndex(322),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(5),
+ /* parameters */ ParameterIndex(313),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5000,7 +4962,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(32),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5009,9 +4971,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
- /* parameters */ ParameterIndex(324),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(5),
+ /* parameters */ ParameterIndex(315),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5022,7 +4984,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(161),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5031,9 +4993,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
- /* parameters */ ParameterIndex(326),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(5),
+ /* parameters */ ParameterIndex(317),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5044,7 +5006,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(94),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5053,9 +5015,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
- /* parameters */ ParameterIndex(328),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(5),
+ /* parameters */ ParameterIndex(319),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5066,7 +5028,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(285),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5075,8 +5037,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(52),
- /* parameters */ ParameterIndex(391),
+ /* templates */ TemplateIndex(78),
+ /* parameters */ ParameterIndex(364),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5086,9 +5048,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(52),
- /* parameters */ ParameterIndex(392),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(78),
+ /* parameters */ ParameterIndex(365),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5097,9 +5059,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(52),
- /* parameters */ ParameterIndex(393),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* templates */ TemplateIndex(78),
+ /* parameters */ ParameterIndex(366),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5108,9 +5070,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(52),
- /* parameters */ ParameterIndex(394),
- /* return_matcher_indices */ MatcherIndicesIndex(198),
+ /* templates */ TemplateIndex(78),
+ /* parameters */ ParameterIndex(367),
+ /* return_matcher_indices */ MatcherIndicesIndex(138),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5121,7 +5083,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(240),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* return_matcher_indices */ MatcherIndicesIndex(132),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5132,7 +5094,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(238),
+ /* return_matcher_indices */ MatcherIndicesIndex(178),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -5141,9 +5103,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -5152,9 +5114,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -5163,9 +5125,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -5174,9 +5136,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(109),
},
{
@@ -5185,9 +5147,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(109),
},
{
@@ -5196,9 +5158,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(205),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(110),
},
{
@@ -5207,9 +5169,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(205),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(110),
},
{
@@ -5218,9 +5180,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(297),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5229,9 +5191,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(297),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5240,9 +5202,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(300),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(291),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5251,9 +5213,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(300),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(291),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5262,9 +5224,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(303),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(294),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5273,9 +5235,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(303),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(294),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5284,9 +5246,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(367),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(340),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5295,9 +5257,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(367),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(340),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5306,9 +5268,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(369),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(342),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5317,9 +5279,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(369),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(342),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5328,9 +5290,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(371),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(344),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5339,9 +5301,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(371),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(344),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5350,9 +5312,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(397),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(370),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5361,9 +5323,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(397),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(370),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5372,9 +5334,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(60),
- /* parameters */ ParameterIndex(397),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(86),
+ /* parameters */ ParameterIndex(370),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5383,9 +5345,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(62),
- /* parameters */ ParameterIndex(397),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(88),
+ /* parameters */ ParameterIndex(370),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5394,9 +5356,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(64),
- /* parameters */ ParameterIndex(397),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* templates */ TemplateIndex(90),
+ /* parameters */ ParameterIndex(370),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5405,9 +5367,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(19),
+ /* templates */ TemplateIndex(45),
/* parameters */ ParameterIndex(270),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5416,9 +5378,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(19),
+ /* templates */ TemplateIndex(45),
/* parameters */ ParameterIndex(273),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5427,9 +5389,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(0),
+ /* templates */ TemplateIndex(14),
/* parameters */ ParameterIndex(197),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5438,9 +5400,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(19),
+ /* templates */ TemplateIndex(45),
/* parameters */ ParameterIndex(276),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5449,9 +5411,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(22),
+ /* templates */ TemplateIndex(48),
/* parameters */ ParameterIndex(279),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5460,7 +5422,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(20),
+ /* templates */ TemplateIndex(46),
/* parameters */ ParameterIndex(282),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -5471,7 +5433,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(1),
+ /* templates */ TemplateIndex(15),
/* parameters */ ParameterIndex(201),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -5482,7 +5444,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(23),
+ /* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(285),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -5494,8 +5456,8 @@
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(330),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* parameters */ ParameterIndex(321),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5503,10 +5465,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(332),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(18),
+ /* parameters */ ParameterIndex(243),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5514,10 +5476,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(334),
- /* return_matcher_indices */ MatcherIndicesIndex(186),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(22),
+ /* parameters */ ParameterIndex(243),
+ /* return_matcher_indices */ MatcherIndicesIndex(126),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5525,10 +5487,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(336),
- /* return_matcher_indices */ MatcherIndicesIndex(188),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(26),
+ /* parameters */ ParameterIndex(243),
+ /* return_matcher_indices */ MatcherIndicesIndex(128),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5536,10 +5498,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(338),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(18),
+ /* parameters */ ParameterIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5547,10 +5509,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(340),
- /* return_matcher_indices */ MatcherIndicesIndex(186),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(22),
+ /* parameters */ ParameterIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(126),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5558,10 +5520,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(342),
- /* return_matcher_indices */ MatcherIndicesIndex(188),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(26),
+ /* parameters */ ParameterIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(128),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5569,10 +5531,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(288),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(18),
+ /* parameters */ ParameterIndex(185),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5580,10 +5542,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(291),
- /* return_matcher_indices */ MatcherIndicesIndex(186),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(22),
+ /* parameters */ ParameterIndex(185),
+ /* return_matcher_indices */ MatcherIndicesIndex(126),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5591,10 +5553,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(294),
- /* return_matcher_indices */ MatcherIndicesIndex(188),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(26),
+ /* parameters */ ParameterIndex(185),
+ /* return_matcher_indices */ MatcherIndicesIndex(128),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5602,10 +5564,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(344),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(18),
+ /* parameters */ ParameterIndex(249),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5613,10 +5575,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(346),
- /* return_matcher_indices */ MatcherIndicesIndex(186),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(22),
+ /* parameters */ ParameterIndex(249),
+ /* return_matcher_indices */ MatcherIndicesIndex(126),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5624,10 +5586,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
- /* parameters */ ParameterIndex(348),
- /* return_matcher_indices */ MatcherIndicesIndex(188),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(26),
+ /* parameters */ ParameterIndex(249),
+ /* return_matcher_indices */ MatcherIndicesIndex(128),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5638,7 +5600,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(236),
+ /* return_matcher_indices */ MatcherIndicesIndex(176),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -5647,9 +5609,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -5658,9 +5620,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -5669,9 +5631,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -5680,9 +5642,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(109),
},
{
@@ -5691,9 +5653,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(109),
},
{
@@ -5702,9 +5664,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(205),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(110),
},
{
@@ -5713,9 +5675,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(205),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(110),
},
{
@@ -5724,9 +5686,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(297),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5735,9 +5697,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(297),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5746,9 +5708,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
- /* parameters */ ParameterIndex(300),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(291),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5757,9 +5719,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(300),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(65),
+ /* parameters */ ParameterIndex(291),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(111),
},
{
@@ -5768,9 +5730,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(396),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(369),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5779,9 +5741,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(396),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(369),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5790,9 +5752,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(60),
- /* parameters */ ParameterIndex(396),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(86),
+ /* parameters */ ParameterIndex(369),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5801,9 +5763,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(62),
- /* parameters */ ParameterIndex(396),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(88),
+ /* parameters */ ParameterIndex(369),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5812,9 +5774,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(64),
- /* parameters */ ParameterIndex(396),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* templates */ TemplateIndex(90),
+ /* parameters */ ParameterIndex(369),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -5825,7 +5787,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(237),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5836,7 +5798,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(44),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5847,7 +5809,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(165),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5856,9 +5818,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(19),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5867,9 +5829,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(99),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5880,7 +5842,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(50),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5891,7 +5853,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(169),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5902,7 +5864,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(119),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5911,9 +5873,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(56),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -5944,7 +5906,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(68),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -5955,7 +5917,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(84),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -5977,7 +5939,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(144),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -5990,7 +5952,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(124),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6001,7 +5963,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(124),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6010,9 +5972,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(62),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6021,9 +5983,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(62),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6034,7 +5996,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(129),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6045,7 +6007,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(129),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6056,7 +6018,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(177),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6065,9 +6027,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(134),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6076,7 +6038,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
+ /* templates */ TemplateIndex(5),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6087,7 +6049,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
+ /* templates */ TemplateIndex(5),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6098,7 +6060,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(68),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6109,7 +6071,7 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(68),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6120,7 +6082,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(3),
+ /* templates */ TemplateIndex(5),
/* parameters */ ParameterIndex(181),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6131,7 +6093,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(144),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6144,7 +6106,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(234),
+ /* return_matcher_indices */ MatcherIndicesIndex(174),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -6153,9 +6115,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -6164,9 +6126,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(209),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -6175,9 +6137,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(209),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -6186,9 +6148,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(109),
},
{
@@ -6197,9 +6159,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(109),
},
{
@@ -6208,9 +6170,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(205),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(110),
},
{
@@ -6219,9 +6181,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(205),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(110),
},
{
@@ -6230,9 +6192,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(381),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(354),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -6241,9 +6203,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(381),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(354),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -6252,9 +6214,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(60),
- /* parameters */ ParameterIndex(381),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* templates */ TemplateIndex(86),
+ /* parameters */ ParameterIndex(354),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -6263,9 +6225,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(62),
- /* parameters */ ParameterIndex(381),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* templates */ TemplateIndex(88),
+ /* parameters */ ParameterIndex(354),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -6274,9 +6236,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(64),
- /* parameters */ ParameterIndex(381),
- /* return_matcher_indices */ MatcherIndicesIndex(228),
+ /* templates */ TemplateIndex(90),
+ /* parameters */ ParameterIndex(354),
+ /* return_matcher_indices */ MatcherIndicesIndex(168),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -6287,7 +6249,7 @@
/* num_templates */ 2,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(74),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6298,7 +6260,7 @@
/* num_templates */ 2,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(74),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6307,9 +6269,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(0),
+ /* templates */ TemplateIndex(14),
/* parameters */ ParameterIndex(26),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6318,9 +6280,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(0),
+ /* templates */ TemplateIndex(14),
/* parameters */ ParameterIndex(26),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6331,7 +6293,7 @@
/* num_templates */ 2,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(153),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6340,9 +6302,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(0),
+ /* templates */ TemplateIndex(14),
/* parameters */ ParameterIndex(79),
- /* return_matcher_indices */ MatcherIndicesIndex(208),
+ /* return_matcher_indices */ MatcherIndicesIndex(148),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6353,7 +6315,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(139),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6364,7 +6326,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(157),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6373,9 +6335,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(68),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6384,9 +6346,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(84),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6397,7 +6359,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(181),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6406,9 +6368,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(144),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6416,7 +6378,7 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
+ /* num_templates */ 3,
/* templates */ TemplateIndex(1),
/* parameters */ ParameterIndex(243),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
@@ -6427,7 +6389,7 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
+ /* num_templates */ 3,
/* templates */ TemplateIndex(1),
/* parameters */ ParameterIndex(246),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
@@ -6438,7 +6400,7 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
+ /* num_templates */ 4,
/* templates */ TemplateIndex(1),
/* parameters */ ParameterIndex(185),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
@@ -6449,7 +6411,7 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
+ /* num_templates */ 3,
/* templates */ TemplateIndex(1),
/* parameters */ ParameterIndex(249),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
@@ -6460,8 +6422,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(252),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6471,8 +6433,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(255),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6482,8 +6444,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(189),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6493,8 +6455,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(258),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6504,8 +6466,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(261),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6515,8 +6477,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(264),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6526,8 +6488,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(193),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6537,8 +6499,8 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(1),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(267),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -6549,7 +6511,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(35),
+ /* templates */ TemplateIndex(61),
/* parameters */ ParameterIndex(229),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
@@ -6560,8 +6522,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(374),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(347),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6571,8 +6533,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 3,
- /* templates */ TemplateIndex(8),
- /* parameters */ ParameterIndex(375),
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(348),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6582,8 +6544,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(37),
- /* parameters */ ParameterIndex(376),
+ /* templates */ TemplateIndex(63),
+ /* parameters */ ParameterIndex(349),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6593,8 +6555,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(62),
- /* parameters */ ParameterIndex(377),
+ /* templates */ TemplateIndex(88),
+ /* parameters */ ParameterIndex(350),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6604,8 +6566,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(44),
- /* parameters */ ParameterIndex(378),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(351),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6616,7 +6578,7 @@
/* num_explicit_templates */ 1,
/* num_templates */ 1,
/* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(379),
+ /* parameters */ ParameterIndex(352),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6626,8 +6588,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(66),
- /* parameters */ ParameterIndex(380),
+ /* templates */ TemplateIndex(92),
+ /* parameters */ ParameterIndex(353),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6637,7 +6599,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(46),
+ /* templates */ TemplateIndex(72),
/* parameters */ ParameterIndex(229),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
@@ -6648,8 +6610,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(381),
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(354),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(10),
},
@@ -6769,7 +6731,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(88),
@@ -6780,7 +6742,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(88),
@@ -6791,8 +6753,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(354),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(327),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(88),
},
@@ -6802,8 +6764,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(355),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(328),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(88),
},
@@ -6813,8 +6775,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(16),
- /* parameters */ ParameterIndex(360),
+ /* templates */ TemplateIndex(42),
+ /* parameters */ ParameterIndex(333),
/* return_matcher_indices */ MatcherIndicesIndex(26),
/* const_eval_fn */ ConstEvalFunctionIndex(88),
},
@@ -6824,8 +6786,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(16),
- /* parameters */ ParameterIndex(359),
+ /* templates */ TemplateIndex(42),
+ /* parameters */ ParameterIndex(332),
/* return_matcher_indices */ MatcherIndicesIndex(26),
/* const_eval_fn */ ConstEvalFunctionIndex(88),
},
@@ -6835,9 +6797,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(25),
- /* parameters */ ParameterIndex(361),
- /* return_matcher_indices */ MatcherIndicesIndex(162),
+ /* templates */ TemplateIndex(51),
+ /* parameters */ ParameterIndex(334),
+ /* return_matcher_indices */ MatcherIndicesIndex(102),
/* const_eval_fn */ ConstEvalFunctionIndex(89),
},
{
@@ -6846,8 +6808,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(25),
- /* parameters */ ParameterIndex(363),
+ /* templates */ TemplateIndex(51),
+ /* parameters */ ParameterIndex(336),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(90),
},
@@ -6857,8 +6819,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(365),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(338),
/* return_matcher_indices */ MatcherIndicesIndex(30),
/* const_eval_fn */ ConstEvalFunctionIndex(91),
},
@@ -6868,7 +6830,7 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
@@ -6879,8 +6841,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(398),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(371),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
@@ -6890,8 +6852,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(398),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(371),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
@@ -6901,7 +6863,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
@@ -6912,7 +6874,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
@@ -6923,7 +6885,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(209),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
@@ -6934,7 +6896,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(209),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
@@ -6945,8 +6907,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(399),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(372),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
@@ -6956,8 +6918,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(400),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(373),
/* return_matcher_indices */ MatcherIndicesIndex(23),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
@@ -6967,9 +6929,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -6978,9 +6940,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(401),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(374),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -6989,9 +6951,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(401),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(374),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7000,9 +6962,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7011,9 +6973,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7022,9 +6984,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7033,9 +6995,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7044,9 +7006,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(402),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(375),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7055,9 +7017,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(403),
- /* return_matcher_indices */ MatcherIndicesIndex(246),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(376),
+ /* return_matcher_indices */ MatcherIndicesIndex(186),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7066,9 +7028,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7077,9 +7039,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(404),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(377),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7088,9 +7050,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(404),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(377),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7099,9 +7061,9 @@
/* num_parameters */ 8,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7110,9 +7072,9 @@
/* num_parameters */ 8,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7121,9 +7083,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7132,9 +7094,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7143,9 +7105,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(405),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(378),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7154,9 +7116,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(406),
- /* return_matcher_indices */ MatcherIndicesIndex(252),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(379),
+ /* return_matcher_indices */ MatcherIndicesIndex(192),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7165,9 +7127,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7176,9 +7138,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(407),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(380),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7187,9 +7149,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(407),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(380),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7198,9 +7160,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7209,9 +7171,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7220,9 +7182,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(209),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7231,9 +7193,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(209),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7242,9 +7204,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(408),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(381),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7253,9 +7215,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(409),
- /* return_matcher_indices */ MatcherIndicesIndex(258),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(382),
+ /* return_matcher_indices */ MatcherIndicesIndex(198),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7264,9 +7226,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7275,9 +7237,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(410),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(383),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7286,9 +7248,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(410),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(383),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7297,9 +7259,9 @@
/* num_parameters */ 9,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7308,9 +7270,9 @@
/* num_parameters */ 9,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7319,9 +7281,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7330,9 +7292,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7341,9 +7303,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(411),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(384),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7352,9 +7314,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(412),
- /* return_matcher_indices */ MatcherIndicesIndex(264),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(385),
+ /* return_matcher_indices */ MatcherIndicesIndex(204),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7363,9 +7325,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7374,9 +7336,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(413),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(386),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7385,9 +7347,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(413),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(386),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7396,9 +7358,9 @@
/* num_parameters */ 12,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7407,9 +7369,9 @@
/* num_parameters */ 12,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7418,9 +7380,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7429,9 +7391,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7440,9 +7402,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(414),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(387),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7451,9 +7413,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(415),
- /* return_matcher_indices */ MatcherIndicesIndex(270),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(388),
+ /* return_matcher_indices */ MatcherIndicesIndex(210),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7462,9 +7424,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7473,9 +7435,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(416),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(389),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7484,9 +7446,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(416),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(389),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7495,9 +7457,9 @@
/* num_parameters */ 8,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7506,9 +7468,9 @@
/* num_parameters */ 8,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7517,9 +7479,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(209),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7528,9 +7490,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(209),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7539,9 +7501,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(417),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(390),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7550,9 +7512,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(418),
- /* return_matcher_indices */ MatcherIndicesIndex(276),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(391),
+ /* return_matcher_indices */ MatcherIndicesIndex(216),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7561,9 +7523,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7572,9 +7534,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(419),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(392),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7583,9 +7545,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(419),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(392),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7594,9 +7556,9 @@
/* num_parameters */ 12,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7605,9 +7567,9 @@
/* num_parameters */ 12,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7616,9 +7578,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7627,9 +7589,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7638,9 +7600,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(420),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(393),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7649,9 +7611,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(421),
- /* return_matcher_indices */ MatcherIndicesIndex(282),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(394),
+ /* return_matcher_indices */ MatcherIndicesIndex(222),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7660,9 +7622,9 @@
/* num_parameters */ 0,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
+ /* templates */ TemplateIndex(99),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -7671,9 +7633,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(73),
- /* parameters */ ParameterIndex(422),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* templates */ TemplateIndex(99),
+ /* parameters */ ParameterIndex(395),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7682,9 +7644,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
- /* parameters */ ParameterIndex(422),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(395),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -7693,9 +7655,9 @@
/* num_parameters */ 16,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7704,9 +7666,9 @@
/* num_parameters */ 16,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(112),
},
{
@@ -7715,9 +7677,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7726,9 +7688,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(217),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(113),
},
{
@@ -7737,9 +7699,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(58),
- /* parameters */ ParameterIndex(423),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* templates */ TemplateIndex(84),
+ /* parameters */ ParameterIndex(396),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7748,9 +7710,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(56),
- /* parameters */ ParameterIndex(424),
- /* return_matcher_indices */ MatcherIndicesIndex(288),
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(397),
+ /* return_matcher_indices */ MatcherIndicesIndex(228),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -7761,7 +7723,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(104),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7772,7 +7734,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(104),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7781,9 +7743,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(38),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7792,9 +7754,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(38),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7805,7 +7767,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(109),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7816,7 +7778,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(109),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7827,7 +7789,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(173),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7836,9 +7798,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(114),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7849,7 +7811,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(44),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7860,7 +7822,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(44),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7869,9 +7831,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(19),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7880,9 +7842,9 @@
/* num_parameters */ 7,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(19),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7893,7 +7855,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(50),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7904,7 +7866,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(50),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7915,7 +7877,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(119),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7924,9 +7886,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(56),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7937,7 +7899,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(89),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7948,7 +7910,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(89),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7957,9 +7919,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(32),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7968,9 +7930,9 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(32),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7981,7 +7943,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(161),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7990,9 +7952,9 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(94),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -8023,7 +7985,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(32),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -8034,7 +7996,7 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(32),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -8056,7 +8018,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(94),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -8089,7 +8051,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(32),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -8100,7 +8062,7 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(32),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -8122,7 +8084,7 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(2),
+ /* templates */ TemplateIndex(4),
/* parameters */ ParameterIndex(94),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -8177,8 +8139,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(52),
- /* parameters */ ParameterIndex(393),
+ /* templates */ TemplateIndex(78),
+ /* parameters */ ParameterIndex(366),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -8188,7 +8150,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(86),
@@ -8199,7 +8161,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(86),
@@ -8210,8 +8172,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(354),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(327),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(86),
},
@@ -8221,8 +8183,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(355),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(328),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(86),
},
@@ -8232,8 +8194,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(16),
- /* parameters */ ParameterIndex(358),
+ /* templates */ TemplateIndex(42),
+ /* parameters */ ParameterIndex(331),
/* return_matcher_indices */ MatcherIndicesIndex(26),
/* const_eval_fn */ ConstEvalFunctionIndex(86),
},
@@ -8243,7 +8205,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(87),
@@ -8254,7 +8216,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(87),
@@ -8265,8 +8227,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(354),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(327),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(87),
},
@@ -8276,8 +8238,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(355),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(328),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(87),
},
@@ -8287,8 +8249,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(16),
- /* parameters */ ParameterIndex(358),
+ /* templates */ TemplateIndex(42),
+ /* parameters */ ParameterIndex(331),
/* return_matcher_indices */ MatcherIndicesIndex(26),
/* const_eval_fn */ ConstEvalFunctionIndex(87),
},
@@ -8298,7 +8260,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(92),
@@ -8309,7 +8271,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(92),
@@ -8320,8 +8282,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(354),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(327),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(92),
},
@@ -8331,8 +8293,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(355),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(328),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(92),
},
@@ -8342,7 +8304,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(93),
@@ -8353,7 +8315,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(93),
@@ -8364,8 +8326,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(354),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(327),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(93),
},
@@ -8375,8 +8337,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
- /* parameters */ ParameterIndex(355),
+ /* templates */ TemplateIndex(55),
+ /* parameters */ ParameterIndex(328),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(93),
},
@@ -8397,7 +8359,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
+ /* templates */ TemplateIndex(35),
/* parameters */ ParameterIndex(235),
/* return_matcher_indices */ MatcherIndicesIndex(45),
/* const_eval_fn */ ConstEvalFunctionIndex(95),
@@ -8408,7 +8370,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(95),
@@ -8419,7 +8381,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(95),
@@ -8441,7 +8403,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
+ /* templates */ TemplateIndex(35),
/* parameters */ ParameterIndex(235),
/* return_matcher_indices */ MatcherIndicesIndex(45),
/* const_eval_fn */ ConstEvalFunctionIndex(96),
@@ -8452,7 +8414,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(96),
@@ -8463,7 +8425,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(96),
@@ -8474,7 +8436,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(43),
@@ -8485,7 +8447,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(226),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(43),
@@ -8496,7 +8458,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(227),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(43),
@@ -8507,7 +8469,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(230),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(63),
@@ -8518,7 +8480,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(222),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(63),
@@ -8529,7 +8491,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(38),
+ /* templates */ TemplateIndex(64),
/* parameters */ ParameterIndex(233),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(64),
@@ -8542,7 +8504,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(187),
+ /* return_matcher_indices */ MatcherIndicesIndex(127),
/* const_eval_fn */ ConstEvalFunctionIndex(107),
},
{
@@ -8552,8 +8514,8 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(395),
- /* return_matcher_indices */ MatcherIndicesIndex(187),
+ /* parameters */ ParameterIndex(368),
+ /* return_matcher_indices */ MatcherIndicesIndex(127),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
{
@@ -8562,9 +8524,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(67),
+ /* templates */ TemplateIndex(93),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(187),
+ /* return_matcher_indices */ MatcherIndicesIndex(127),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -8595,7 +8557,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(68),
+ /* templates */ TemplateIndex(94),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
@@ -8618,7 +8580,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(383),
+ /* parameters */ ParameterIndex(356),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
@@ -8628,7 +8590,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(69),
+ /* templates */ TemplateIndex(95),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
@@ -8651,7 +8613,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(374),
+ /* parameters */ ParameterIndex(347),
/* return_matcher_indices */ MatcherIndicesIndex(59),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
},
@@ -8661,7 +8623,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(70),
+ /* templates */ TemplateIndex(96),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(59),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
@@ -8694,7 +8656,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(71),
+ /* templates */ TemplateIndex(97),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
@@ -8705,7 +8667,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(0),
@@ -8716,7 +8678,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(28),
+ /* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(0),
@@ -8727,7 +8689,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(1),
@@ -8738,7 +8700,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(1),
@@ -8749,7 +8711,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(2),
@@ -8760,7 +8722,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(2),
@@ -8782,7 +8744,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
+ /* templates */ TemplateIndex(35),
/* parameters */ ParameterIndex(235),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(3),
@@ -8804,7 +8766,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
+ /* templates */ TemplateIndex(35),
/* parameters */ ParameterIndex(235),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(4),
@@ -8815,7 +8777,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(5),
@@ -8826,7 +8788,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(5),
@@ -8837,7 +8799,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(6),
@@ -8848,7 +8810,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(6),
@@ -8859,7 +8821,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(7),
@@ -8870,7 +8832,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(7),
@@ -8881,7 +8843,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(8),
@@ -8892,7 +8854,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(16),
+ /* templates */ TemplateIndex(42),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(8),
@@ -8903,7 +8865,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(9),
@@ -8914,7 +8876,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(9),
@@ -8925,7 +8887,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(11),
@@ -8936,7 +8898,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(11),
@@ -8947,7 +8909,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(12),
@@ -8958,7 +8920,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(12),
@@ -8969,7 +8931,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(13),
@@ -8980,7 +8942,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(13),
@@ -8991,7 +8953,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(14),
@@ -9002,7 +8964,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(14),
@@ -9013,7 +8975,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(15),
@@ -9024,7 +8986,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(15),
@@ -9035,7 +8997,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(16),
@@ -9046,7 +9008,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(16),
@@ -9057,7 +9019,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(17),
@@ -9068,7 +9030,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(17),
@@ -9079,7 +9041,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(19),
@@ -9090,7 +9052,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(19),
@@ -9101,7 +9063,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(21),
@@ -9112,7 +9074,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(21),
@@ -9124,7 +9086,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(383),
+ /* parameters */ ParameterIndex(356),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -9134,8 +9096,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
- /* parameters */ ParameterIndex(384),
+ /* templates */ TemplateIndex(35),
+ /* parameters */ ParameterIndex(357),
/* return_matcher_indices */ MatcherIndicesIndex(66),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -9145,7 +9107,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(25),
@@ -9156,7 +9118,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(25),
@@ -9167,7 +9129,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(26),
@@ -9178,7 +9140,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(26),
@@ -9189,7 +9151,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(16),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(27),
@@ -9200,7 +9162,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(150),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(27),
@@ -9211,7 +9173,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(29),
@@ -9222,7 +9184,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(29),
@@ -9233,7 +9195,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(30),
@@ -9244,7 +9206,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(30),
@@ -9255,7 +9217,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(31),
@@ -9266,7 +9228,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(31),
@@ -9277,7 +9239,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(32),
@@ -9288,7 +9250,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(226),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(32),
@@ -9299,7 +9261,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(33),
@@ -9310,7 +9272,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(33),
@@ -9321,9 +9283,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(178),
+ /* return_matcher_indices */ MatcherIndicesIndex(118),
/* const_eval_fn */ ConstEvalFunctionIndex(34),
},
{
@@ -9332,7 +9294,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(69),
/* const_eval_fn */ ConstEvalFunctionIndex(34),
@@ -9343,7 +9305,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(15),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(35),
@@ -9354,7 +9316,7 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(35),
@@ -9365,7 +9327,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(36),
@@ -9376,7 +9338,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(36),
@@ -9387,8 +9349,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(12),
- /* parameters */ ParameterIndex(306),
+ /* templates */ TemplateIndex(38),
+ /* parameters */ ParameterIndex(297),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(37),
},
@@ -9398,8 +9360,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(11),
- /* parameters */ ParameterIndex(308),
+ /* templates */ TemplateIndex(37),
+ /* parameters */ ParameterIndex(299),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(37),
},
@@ -9409,7 +9371,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(38),
@@ -9420,7 +9382,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(38),
@@ -9431,7 +9393,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(39),
@@ -9442,7 +9404,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(39),
@@ -9453,7 +9415,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(40),
@@ -9464,7 +9426,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(40),
@@ -9475,7 +9437,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(41),
@@ -9486,7 +9448,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(28),
+ /* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(41),
@@ -9497,7 +9459,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(42),
@@ -9508,7 +9470,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(28),
+ /* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(42),
@@ -9519,9 +9481,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(180),
+ /* return_matcher_indices */ MatcherIndicesIndex(120),
/* const_eval_fn */ ConstEvalFunctionIndex(44),
},
{
@@ -9530,7 +9492,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(75),
/* const_eval_fn */ ConstEvalFunctionIndex(44),
@@ -9541,7 +9503,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(55),
@@ -9552,7 +9514,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(55),
@@ -9564,7 +9526,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(383),
+ /* parameters */ ParameterIndex(356),
/* return_matcher_indices */ MatcherIndicesIndex(68),
/* const_eval_fn */ ConstEvalFunctionIndex(56),
},
@@ -9574,8 +9536,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
- /* parameters */ ParameterIndex(384),
+ /* templates */ TemplateIndex(35),
+ /* parameters */ ParameterIndex(357),
/* return_matcher_indices */ MatcherIndicesIndex(66),
/* const_eval_fn */ ConstEvalFunctionIndex(56),
},
@@ -9585,7 +9547,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(57),
@@ -9596,7 +9558,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(57),
@@ -9607,7 +9569,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(60),
@@ -9618,7 +9580,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(30),
+ /* templates */ TemplateIndex(56),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(60),
@@ -9629,7 +9591,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(61),
@@ -9640,7 +9602,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(61),
@@ -9651,7 +9613,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(62),
@@ -9662,7 +9624,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(16),
+ /* templates */ TemplateIndex(42),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(62),
@@ -9673,7 +9635,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(41),
+ /* templates */ TemplateIndex(67),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(65),
@@ -9684,7 +9646,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(40),
+ /* templates */ TemplateIndex(66),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(65),
@@ -9695,7 +9657,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(66),
@@ -9706,7 +9668,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(66),
@@ -9717,7 +9679,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(67),
@@ -9728,7 +9690,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(67),
@@ -9739,7 +9701,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(68),
@@ -9750,7 +9712,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(226),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(68),
@@ -9761,7 +9723,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(69),
@@ -9772,7 +9734,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(69),
@@ -9783,7 +9745,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(70),
@@ -9794,7 +9756,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(70),
@@ -9805,7 +9767,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(71),
@@ -9816,7 +9778,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(71),
@@ -9827,7 +9789,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(72),
@@ -9838,7 +9800,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(72),
@@ -9849,7 +9811,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(74),
@@ -9860,7 +9822,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(74),
@@ -9895,7 +9857,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(44),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -9906,7 +9868,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(240),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -9915,8 +9877,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(43),
- /* parameters */ ParameterIndex(350),
+ /* templates */ TemplateIndex(69),
+ /* parameters */ ParameterIndex(323),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -9926,8 +9888,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(42),
- /* parameters */ ParameterIndex(352),
+ /* templates */ TemplateIndex(68),
+ /* parameters */ ParameterIndex(325),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -9948,7 +9910,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(9),
+ /* templates */ TemplateIndex(35),
/* parameters */ ParameterIndex(235),
/* return_matcher_indices */ MatcherIndicesIndex(45),
/* const_eval_fn */ ConstEvalFunctionIndex(83),
@@ -9959,7 +9921,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(84),
@@ -9970,7 +9932,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(84),
@@ -9981,7 +9943,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(41),
+ /* templates */ TemplateIndex(67),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(85),
@@ -9992,7 +9954,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(41),
+ /* templates */ TemplateIndex(67),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(85),
@@ -10003,7 +9965,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(94),
@@ -10014,7 +9976,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(94),
@@ -10025,7 +9987,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(99),
@@ -10036,9 +9998,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(221),
- /* return_matcher_indices */ MatcherIndicesIndex(165),
+ /* return_matcher_indices */ MatcherIndicesIndex(105),
/* const_eval_fn */ ConstEvalFunctionIndex(99),
},
{
@@ -10047,7 +10009,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(100),
@@ -10058,9 +10020,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(39),
+ /* templates */ TemplateIndex(65),
/* parameters */ ParameterIndex(221),
- /* return_matcher_indices */ MatcherIndicesIndex(165),
+ /* return_matcher_indices */ MatcherIndicesIndex(105),
/* const_eval_fn */ ConstEvalFunctionIndex(100),
},
{
@@ -10069,7 +10031,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(101),
@@ -10080,9 +10042,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
- /* return_matcher_indices */ MatcherIndicesIndex(165),
+ /* return_matcher_indices */ MatcherIndicesIndex(105),
/* const_eval_fn */ ConstEvalFunctionIndex(101),
},
{
@@ -10091,7 +10053,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(102),
@@ -10102,9 +10064,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
- /* return_matcher_indices */ MatcherIndicesIndex(165),
+ /* return_matcher_indices */ MatcherIndicesIndex(105),
/* const_eval_fn */ ConstEvalFunctionIndex(102),
},
{
@@ -10113,7 +10075,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(103),
@@ -10124,9 +10086,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
- /* return_matcher_indices */ MatcherIndicesIndex(165),
+ /* return_matcher_indices */ MatcherIndicesIndex(105),
/* const_eval_fn */ ConstEvalFunctionIndex(103),
},
{
@@ -10135,7 +10097,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(47),
/* const_eval_fn */ ConstEvalFunctionIndex(104),
@@ -10146,9 +10108,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(29),
+ /* templates */ TemplateIndex(55),
/* parameters */ ParameterIndex(221),
- /* return_matcher_indices */ MatcherIndicesIndex(165),
+ /* return_matcher_indices */ MatcherIndicesIndex(105),
/* const_eval_fn */ ConstEvalFunctionIndex(104),
},
{
@@ -10157,7 +10119,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(16),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(105),
@@ -10168,8 +10130,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(54),
- /* parameters */ ParameterIndex(356),
+ /* templates */ TemplateIndex(80),
+ /* parameters */ ParameterIndex(329),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(105),
},
@@ -10179,7 +10141,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(54),
+ /* templates */ TemplateIndex(80),
/* parameters */ ParameterIndex(16),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(106),
@@ -10190,8 +10152,8 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(54),
- /* parameters */ ParameterIndex(356),
+ /* templates */ TemplateIndex(80),
+ /* parameters */ ParameterIndex(329),
/* return_matcher_indices */ MatcherIndicesIndex(48),
/* const_eval_fn */ ConstEvalFunctionIndex(106),
},
@@ -10201,9 +10163,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(294),
+ /* return_matcher_indices */ MatcherIndicesIndex(234),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -10212,9 +10174,9 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(72),
+ /* templates */ TemplateIndex(98),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(294),
+ /* return_matcher_indices */ MatcherIndicesIndex(234),
/* const_eval_fn */ ConstEvalFunctionIndex(108),
},
{
@@ -10223,8 +10185,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(33),
- /* parameters */ ParameterIndex(373),
+ /* templates */ TemplateIndex(59),
+ /* parameters */ ParameterIndex(346),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -10234,9 +10196,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(4),
+ /* templates */ TemplateIndex(30),
/* parameters */ ParameterIndex(213),
- /* return_matcher_indices */ MatcherIndicesIndex(176),
+ /* return_matcher_indices */ MatcherIndicesIndex(116),
/* const_eval_fn */ ConstEvalFunctionIndex(18),
},
{
@@ -10245,8 +10207,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
- /* parameters */ ParameterIndex(382),
+ /* templates */ TemplateIndex(37),
+ /* parameters */ ParameterIndex(355),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(20),
},
@@ -10256,7 +10218,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(28),
+ /* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(22),
@@ -10269,7 +10231,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(187),
+ /* return_matcher_indices */ MatcherIndicesIndex(127),
/* const_eval_fn */ ConstEvalFunctionIndex(23),
},
{
@@ -10289,7 +10251,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(226),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(28),
@@ -10300,7 +10262,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(45),
@@ -10312,7 +10274,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(385),
+ /* parameters */ ParameterIndex(358),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(46),
},
@@ -10323,7 +10285,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(385),
+ /* parameters */ ParameterIndex(358),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(47),
},
@@ -10334,7 +10296,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(385),
+ /* parameters */ ParameterIndex(358),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(48),
},
@@ -10345,7 +10307,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(386),
+ /* parameters */ ParameterIndex(359),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(49),
},
@@ -10356,7 +10318,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(386),
+ /* parameters */ ParameterIndex(359),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(50),
},
@@ -10367,7 +10329,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(387),
+ /* parameters */ ParameterIndex(360),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(51),
},
@@ -10378,7 +10340,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(388),
+ /* parameters */ ParameterIndex(361),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(52),
},
@@ -10389,7 +10351,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(387),
+ /* parameters */ ParameterIndex(360),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(53),
},
@@ -10400,7 +10362,7 @@
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(388),
+ /* parameters */ ParameterIndex(361),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(54),
},
@@ -10410,7 +10372,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(149),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(58),
@@ -10421,7 +10383,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(11),
+ /* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(227),
/* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(59),
@@ -10443,8 +10405,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(14),
- /* parameters */ ParameterIndex(389),
+ /* templates */ TemplateIndex(40),
+ /* parameters */ ParameterIndex(362),
/* return_matcher_indices */ MatcherIndicesIndex(14),
/* const_eval_fn */ ConstEvalFunctionIndex(73),
},
@@ -10456,7 +10418,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(182),
+ /* return_matcher_indices */ MatcherIndicesIndex(122),
/* const_eval_fn */ ConstEvalFunctionIndex(75),
},
{
@@ -10467,7 +10429,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(182),
+ /* return_matcher_indices */ MatcherIndicesIndex(122),
/* const_eval_fn */ ConstEvalFunctionIndex(76),
},
{
@@ -10478,7 +10440,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(182),
+ /* return_matcher_indices */ MatcherIndicesIndex(122),
/* const_eval_fn */ ConstEvalFunctionIndex(77),
},
{
@@ -10489,7 +10451,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(78),
},
{
@@ -10500,7 +10462,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(184),
+ /* return_matcher_indices */ MatcherIndicesIndex(124),
/* const_eval_fn */ ConstEvalFunctionIndex(79),
},
{
@@ -10511,7 +10473,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(186),
+ /* return_matcher_indices */ MatcherIndicesIndex(126),
/* const_eval_fn */ ConstEvalFunctionIndex(80),
},
{
@@ -10522,7 +10484,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(17),
- /* return_matcher_indices */ MatcherIndicesIndex(188),
+ /* return_matcher_indices */ MatcherIndicesIndex(128),
/* const_eval_fn */ ConstEvalFunctionIndex(81),
},
{
@@ -10531,8 +10493,8 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(33),
- /* parameters */ ParameterIndex(390),
+ /* templates */ TemplateIndex(59),
+ /* parameters */ ParameterIndex(363),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -10542,7 +10504,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -10553,7 +10515,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -10564,7 +10526,7 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -10575,9 +10537,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(31),
+ /* templates */ TemplateIndex(57),
/* parameters */ ParameterIndex(0),
- /* return_matcher_indices */ MatcherIndicesIndex(232),
+ /* return_matcher_indices */ MatcherIndicesIndex(172),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -10588,7 +10550,7 @@
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(/* invalid */),
- /* return_matcher_indices */ MatcherIndicesIndex(188),
+ /* return_matcher_indices */ MatcherIndicesIndex(128),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -10597,7 +10559,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(33),
+ /* templates */ TemplateIndex(59),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(82),
@@ -11462,18 +11424,18 @@
},
{
/* [108] */
- /* fn textureStore[C : iu32](texture: texture_storage_1d<f32_texel_format, writable>, coords: C, value: vec4<f32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_2d<f32_texel_format, writable>, coords: vec2<C>, value: vec4<f32>) */
- /* fn textureStore[C : iu32, A : iu32](texture: texture_storage_2d_array<f32_texel_format, writable>, coords: vec2<C>, array_index: A, value: vec4<f32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_3d<f32_texel_format, writable>, coords: vec3<C>, value: vec4<f32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_1d<i32_texel_format, writable>, coords: C, value: vec4<i32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_2d<i32_texel_format, writable>, coords: vec2<C>, value: vec4<i32>) */
- /* fn textureStore[C : iu32, A : iu32](texture: texture_storage_2d_array<i32_texel_format, writable>, coords: vec2<C>, array_index: A, value: vec4<i32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_3d<i32_texel_format, writable>, coords: vec3<C>, value: vec4<i32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_1d<u32_texel_format, writable>, coords: C, value: vec4<u32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_2d<u32_texel_format, writable>, coords: vec2<C>, value: vec4<u32>) */
- /* fn textureStore[C : iu32, A : iu32](texture: texture_storage_2d_array<u32_texel_format, writable>, coords: vec2<C>, array_index: A, value: vec4<u32>) */
- /* fn textureStore[C : iu32](texture: texture_storage_3d<u32_texel_format, writable>, coords: vec3<C>, value: vec4<u32>) */
+ /* fn textureStore[C : iu32, F : f32_texel_format, W : writable](texture: texture_storage_1d<F, W>, coords: C, value: vec4<f32>) */
+ /* fn textureStore[C : iu32, F : f32_texel_format, W : writable](texture: texture_storage_2d<F, W>, coords: vec2<C>, value: vec4<f32>) */
+ /* fn textureStore[C : iu32, F : f32_texel_format, W : writable, A : iu32](texture: texture_storage_2d_array<F, W>, coords: vec2<C>, array_index: A, value: vec4<f32>) */
+ /* fn textureStore[C : iu32, F : f32_texel_format, W : writable](texture: texture_storage_3d<F, W>, coords: vec3<C>, value: vec4<f32>) */
+ /* fn textureStore[C : iu32, F : i32_texel_format, W : writable](texture: texture_storage_1d<F, W>, coords: C, value: vec4<i32>) */
+ /* fn textureStore[C : iu32, F : i32_texel_format, W : writable](texture: texture_storage_2d<F, W>, coords: vec2<C>, value: vec4<i32>) */
+ /* fn textureStore[C : iu32, F : i32_texel_format, W : writable, A : iu32](texture: texture_storage_2d_array<F, W>, coords: vec2<C>, array_index: A, value: vec4<i32>) */
+ /* fn textureStore[C : iu32, F : i32_texel_format, W : writable](texture: texture_storage_3d<F, W>, coords: vec3<C>, value: vec4<i32>) */
+ /* fn textureStore[C : iu32, F : u32_texel_format, W : writable](texture: texture_storage_1d<F, W>, coords: C, value: vec4<u32>) */
+ /* fn textureStore[C : iu32, F : u32_texel_format, W : writable](texture: texture_storage_2d<F, W>, coords: vec2<C>, value: vec4<u32>) */
+ /* fn textureStore[C : iu32, F : u32_texel_format, W : writable, A : iu32](texture: texture_storage_2d_array<F, W>, coords: vec2<C>, array_index: A, value: vec4<u32>) */
+ /* fn textureStore[C : iu32, F : u32_texel_format, W : writable](texture: texture_storage_3d<F, W>, coords: vec3<C>, value: vec4<u32>) */
/* num overloads */ 12,
/* overloads */ OverloadIndex(144),
},
@@ -11488,18 +11450,18 @@
/* fn textureLoad[C : iu32, A : iu32, L : iu32](texture: texture_depth_2d_array, coords: vec2<C>, array_index: A, level: L) -> f32 */
/* fn textureLoad[C : iu32, S : iu32](texture: texture_depth_multisampled_2d, coords: vec2<C>, sample_index: S) -> f32 */
/* fn textureLoad[C : iu32](texture: texture_external, coords: vec2<C>) -> vec4<f32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_1d<f32_texel_format, readable>, coords: C) -> vec4<f32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_1d<i32_texel_format, readable>, coords: C) -> vec4<i32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_1d<u32_texel_format, readable>, coords: C) -> vec4<u32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_2d<f32_texel_format, readable>, coords: vec2<C>) -> vec4<f32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_2d<i32_texel_format, readable>, coords: vec2<C>) -> vec4<i32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_2d<u32_texel_format, readable>, coords: vec2<C>) -> vec4<u32> */
- /* fn textureLoad[C : iu32, A : iu32](texture: texture_storage_2d_array<f32_texel_format, readable>, coords: vec2<C>, array_index: A) -> vec4<f32> */
- /* fn textureLoad[C : iu32, A : iu32](texture: texture_storage_2d_array<i32_texel_format, readable>, coords: vec2<C>, array_index: A) -> vec4<i32> */
- /* fn textureLoad[C : iu32, A : iu32](texture: texture_storage_2d_array<u32_texel_format, readable>, coords: vec2<C>, array_index: A) -> vec4<u32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_3d<f32_texel_format, readable>, coords: vec3<C>) -> vec4<f32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_3d<i32_texel_format, readable>, coords: vec3<C>) -> vec4<i32> */
- /* fn textureLoad[C : iu32](texture: texture_storage_3d<u32_texel_format, readable>, coords: vec3<C>) -> vec4<u32> */
+ /* fn textureLoad[C : iu32, F : f32_texel_format, R : readable](texture: texture_storage_1d<F, R>, coords: C) -> vec4<f32> */
+ /* fn textureLoad[C : iu32, F : i32_texel_format, R : readable](texture: texture_storage_1d<F, R>, coords: C) -> vec4<i32> */
+ /* fn textureLoad[C : iu32, F : u32_texel_format, R : readable](texture: texture_storage_1d<F, R>, coords: C) -> vec4<u32> */
+ /* fn textureLoad[C : iu32, F : f32_texel_format, R : readable](texture: texture_storage_2d<F, R>, coords: vec2<C>) -> vec4<f32> */
+ /* fn textureLoad[C : iu32, F : i32_texel_format, R : readable](texture: texture_storage_2d<F, R>, coords: vec2<C>) -> vec4<i32> */
+ /* fn textureLoad[C : iu32, F : u32_texel_format, R : readable](texture: texture_storage_2d<F, R>, coords: vec2<C>) -> vec4<u32> */
+ /* fn textureLoad[C : iu32, F : f32_texel_format, R : readable, A : iu32](texture: texture_storage_2d_array<F, R>, coords: vec2<C>, array_index: A) -> vec4<f32> */
+ /* fn textureLoad[C : iu32, F : i32_texel_format, R : readable, A : iu32](texture: texture_storage_2d_array<F, R>, coords: vec2<C>, array_index: A) -> vec4<i32> */
+ /* fn textureLoad[C : iu32, F : u32_texel_format, R : readable, A : iu32](texture: texture_storage_2d_array<F, R>, coords: vec2<C>, array_index: A) -> vec4<u32> */
+ /* fn textureLoad[C : iu32, F : f32_texel_format, R : readable](texture: texture_storage_3d<F, R>, coords: vec3<C>) -> vec4<f32> */
+ /* fn textureLoad[C : iu32, F : i32_texel_format, R : readable](texture: texture_storage_3d<F, R>, coords: vec3<C>) -> vec4<i32> */
+ /* fn textureLoad[C : iu32, F : u32_texel_format, R : readable](texture: texture_storage_3d<F, R>, coords: vec3<C>) -> vec4<u32> */
/* num overloads */ 21,
/* overloads */ OverloadIndex(52),
},
diff --git a/src/tint/lang/wgsl/intrinsic/table_test.cc b/src/tint/lang/wgsl/intrinsic/table_test.cc
index cbbeeda..4912c68 100644
--- a/src/tint/lang/wgsl/intrinsic/table_test.cc
+++ b/src/tint/lang/wgsl/intrinsic/table_test.cc
@@ -548,33 +548,56 @@
R"(no matching call to 'textureDimensions(bool, bool)'
27 candidate functions:
- 'textureDimensions(texture: texture_1d<T>, level: L) -> u32' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>, level: L) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_1d<T>) -> u32' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_multisampled_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_2d_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_multisampled_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_1d<F, A>) -> u32'
- 'textureDimensions(texture: texture_storage_2d<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_2d_array<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_3d<F, A>) -> vec3<u32>'
- 'textureDimensions(texture: texture_external) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_1d<T> ✗ , level: L ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ , level: L ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_multisampled_2d ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_1d<F, A> ✗ ) -> u32'
+ • 'textureDimensions(texture: texture_storage_2d<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_2d_array<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_3d<F, A> ✗ ) -> vec3<u32>'
+ • 'textureDimensions(texture: texture_external ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_1d<T> ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_multisampled_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
)");
}
@@ -588,33 +611,56 @@
R"(no matching call to 'textureDimensions(texture_depth_2d, bool)'
27 candidate functions:
- 'textureDimensions(texture: texture_depth_2d, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_1d<T>, level: L) -> u32' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>, level: L) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>, level: L) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32', 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_cube_array, level: L) -> vec2<u32>' where: 'L' is 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_1d<T>) -> u32' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_2d_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_3d<T>) -> vec3<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_cube_array<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_multisampled_2d<T>) -> vec2<u32>' where: 'T' is 'f32', 'i32' or 'u32'
- 'textureDimensions(texture: texture_depth_2d_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_cube_array) -> vec2<u32>'
- 'textureDimensions(texture: texture_depth_multisampled_2d) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_1d<F, A>) -> u32'
- 'textureDimensions(texture: texture_storage_2d<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_2d_array<F, A>) -> vec2<u32>'
- 'textureDimensions(texture: texture_storage_3d<F, A>) -> vec3<u32>'
- 'textureDimensions(texture: texture_external) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d ✓ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d ✓ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_1d<T> ✗ , level: L ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ , level: L ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ , level: L ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ ✗ 'L' is 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_depth_2d_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_cube_array ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_depth_multisampled_2d ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_1d<F, A> ✗ ) -> u32'
+ • 'textureDimensions(texture: texture_storage_2d<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_2d_array<F, A> ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_storage_3d<F, A> ✗ ) -> vec3<u32>'
+ • 'textureDimensions(texture: texture_external ✗ ) -> vec2<u32>'
+ • 'textureDimensions(texture: texture_1d<T> ✗ ) -> u32' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_2d_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_3d<T> ✗ ) -> vec3<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_cube_array<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
+ • 'textureDimensions(texture: texture_multisampled_2d<T> ✗ ) -> vec2<u32>' where:
+ ✗ 'T' is 'f32', 'i32' or 'u32'
)");
}
@@ -633,8 +679,10 @@
EXPECT_EQ(result.Failure().Plain(), R"(no matching overload for 'operator - (bool)'
2 candidate operators:
- 'operator - (T) -> T' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32' or 'f16'
- 'operator - (vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32' or 'f16'
+ • 'operator - (T ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32' or 'f16'
+ • 'operator - (vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32' or 'f16'
)");
}
@@ -675,15 +723,24 @@
EXPECT_EQ(result.Failure().Plain(), R"(no matching overload for 'operator * (f32, bool)'
9 candidate operators:
- 'operator * (T, T) -> T' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator * (vecN<T>, T) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator * (T, vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator * (T, matNxM<T>) -> matNxM<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator * (matNxM<T>, T) -> matNxM<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator * (vecN<T>, vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator * (matCxR<T>, vecC<T>) -> vecR<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator * (vecR<T>, matCxR<T>) -> vecC<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator * (matKxR<T>, matCxK<T>) -> matCxR<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator * (T ✓ , T ✗ ) -> T' where:
+ ✓ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (T ✓ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✓ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (T ✓ , matNxM<T> ✗ ) -> matNxM<T>' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator * (vecN<T> ✗ , T ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (matNxM<T> ✗ , T ✗ ) -> matNxM<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator * (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator * (matCxR<T> ✗ , vecC<T> ✗ ) -> vecR<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator * (vecR<T> ✗ , matCxR<T> ✗ ) -> vecC<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator * (matKxR<T> ✗ , matCxK<T> ✗ ) -> matCxR<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -709,15 +766,24 @@
EXPECT_EQ(result.Failure().Plain(), R"(no matching overload for 'operator *= (f32, bool)'
9 candidate operators:
- 'operator *= (T, T) -> T' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (vecN<T>, T) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (T, vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (T, matNxM<T>) -> matNxM<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator *= (matNxM<T>, T) -> matNxM<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator *= (vecN<T>, vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'operator *= (matCxR<T>, vecC<T>) -> vecR<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator *= (vecR<T>, matCxR<T>) -> vecC<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'operator *= (matKxR<T>, matCxK<T>) -> matCxR<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator *= (T ✓ , T ✗ ) -> T' where:
+ ✓ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (T ✓ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✓ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (T ✓ , matNxM<T> ✗ ) -> matNxM<T>' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator *= (vecN<T> ✗ , T ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (matNxM<T> ✗ , T ✗ ) -> matNxM<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator *= (vecN<T> ✗ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'operator *= (matCxR<T> ✗ , vecC<T> ✗ ) -> vecR<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator *= (vecR<T> ✗ , matCxR<T> ✗ ) -> vecC<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'operator *= (matKxR<T> ✗ , matCxK<T> ✗ ) -> matCxR<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -761,25 +827,46 @@
R"(no matching constructor for 'vec3(i32, f32, i32)'
12 candidate constructors:
- 'vec3(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(vec3<T>) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3() -> vec3<abstract-int>'
- 'vec3<T>() -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(x: T ✓ , y: T ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(xy: vec2<T> ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(x: T ✓ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3() -> vec3<abstract-int>'
+ • 'vec3(vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(x: T ✓ , y: T ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(xy: vec2<T> ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(x: T ✓ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >() -> vec3<T>' where:
+ ✗ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f32', 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f16', 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'i32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'u32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'bool', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'i32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
)");
}
@@ -793,25 +880,48 @@
R"(no matching constructor for 'vec3<i32>(i32, f32, i32)'
12 candidate constructors:
- 'vec3<T>(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(vec3<T>) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3() -> vec3<abstract-int>'
- 'vec3<T>() -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✓ , y: T ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✓ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(xy: vec2<T> ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(vec3<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >() -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(x: T ✓ , y: T ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(xy: vec2<T> ✗ , z: T ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(x: T ✓ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(T ✓ ) -> vec3<T>' where:
+ ✗ overload expects 0 template arguments
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3() -> vec3<abstract-int>' where:
+ ✗ overload expects 0 template arguments
+ • 'vec3(vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f32', 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f16', 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'i32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'u32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'bool', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
+ • 'vec3<T ✓ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'i32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
)");
}
@@ -902,25 +1012,47 @@
R"(no matching constructor for 'vec3<f32>(array<u32>)'
12 candidate constructors:
- 'vec3<T>(vec3<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3() -> vec3<abstract-int>'
- 'vec3<T>() -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(x: T, yz: vec2<T>) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(xy: vec2<T>, z: T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3<T>(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(x: T, y: T, z: T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(T) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'vec3(vec3<T>) -> vec3<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(vec3<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >() -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(xy: vec2<T> ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✗ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✓ >(x: T ✗ , y: T ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(T ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3() -> vec3<abstract-int>' where:
+ ✗ overload expects 0 template arguments
+ • 'vec3(vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(x: T ✗ , yz: vec2<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(xy: vec2<T> ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'vec3(x: T ✗ , y: T ✗ , z: T ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
5 candidate conversions:
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f32', 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'f16', 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'i32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'u32', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
- 'vec3<T>(vec3<U>) -> vec3<T>' where: 'T' is 'bool', 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
+ • 'vec3<T ✓ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✓ 'T' is 'f32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'i32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'f16'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'i32', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'i32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'u32'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'bool'
+ • 'vec3<T ✗ >(vec3<U> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'bool'
+ ✗ 'U' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32' or 'u32'
)");
}
diff --git a/src/tint/lang/wgsl/resolver/builtin_test.cc b/src/tint/lang/wgsl/resolver/builtin_test.cc
index 7dfdf9f..b29c901 100644
--- a/src/tint/lang/wgsl/resolver/builtin_test.cc
+++ b/src/tint/lang/wgsl/resolver/builtin_test.cc
@@ -166,9 +166,12 @@
R"(error: no matching call to 'select()'
3 candidate functions:
- 'select(T, T, bool) -> T' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, bool) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, vecN<bool>) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(T ✗ , T ✗ , bool ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✗ , bool ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✗ , vecN<bool> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -182,9 +185,12 @@
R"(error: no matching call to 'select(i32, i32, i32)'
3 candidate functions:
- 'select(T, T, bool) -> T' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, bool) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, vecN<bool>) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(T ✓ , T ✓ , bool ✗ ) -> T' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✗ , bool ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✗ , vecN<bool> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -200,9 +206,12 @@
R"(error: no matching call to 'select(mat2x2<f32>, mat2x2<f32>, bool)'
3 candidate functions:
- 'select(T, T, bool) -> T' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, bool) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, vecN<bool>) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(T ✗ , T ✗ , bool ✓ ) -> T' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✗ , bool ✓ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✗ , vecN<bool> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -216,9 +225,12 @@
R"(error: no matching call to 'select(f32, vec2<f32>, bool)'
3 candidate functions:
- 'select(T, T, bool) -> T' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, bool) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, vecN<bool>) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(T ✓ , T ✗ , bool ✓ ) -> T' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✓ , bool ✓ ) -> vecN<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✗ , vecN<T> ✓ , vecN<bool> ✗ ) -> vecN<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -232,9 +244,12 @@
R"(error: no matching call to 'select(vec2<f32>, vec3<f32>, bool)'
3 candidate functions:
- 'select(T, T, bool) -> T' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, bool) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
- 'select(vecN<T>, vecN<T>, vecN<bool>) -> vecN<T>' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✓ , vecN<T> ✗ , bool ✓ ) -> vecN<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(T ✗ , T ✗ , bool ✓ ) -> T' where:
+ ✗ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
+ • 'select(vecN<T> ✓ , vecN<T> ✗ , vecN<bool> ✗ ) -> vecN<T>' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'i32', 'u32' or 'bool'
)");
}
@@ -271,7 +286,7 @@
R"(error: no matching call to 'arrayLength(ptr<private, array<i32, 4>, read_write>)'
1 candidate function:
- 'arrayLength(ptr<storage, array<T>, A>) -> u32'
+ • 'arrayLength(ptr<storage, array<T>, A> ✗ ) -> u32'
)");
}
@@ -800,7 +815,8 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'cross()'
1 candidate function:
- 'cross(vec3<T>, vec3<T>) -> vec3<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'cross(vec3<T> ✗ , vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -813,7 +829,8 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'cross(f32, f32)'
1 candidate function:
- 'cross(vec3<T>, vec3<T>) -> vec3<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'cross(vec3<T> ✗ , vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -827,7 +844,8 @@
R"(error: no matching call to 'cross(vec3<i32>, vec3<i32>)'
1 candidate function:
- 'cross(vec3<T>, vec3<T>) -> vec3<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'cross(vec3<T> ✗ , vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -843,7 +861,8 @@
R"(error: no matching call to 'cross(vec4<f32>, vec4<f32>)'
1 candidate function:
- 'cross(vec3<T>, vec3<T>) -> vec3<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'cross(vec3<T> ✗ , vec3<T> ✗ ) -> vec3<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -859,7 +878,8 @@
R"(error: no matching call to 'cross(vec3<f32>, vec3<f32>, vec3<f32>)'
1 candidate function:
- 'cross(vec3<T>, vec3<T>) -> vec3<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'cross(vec3<T> ✓ , vec3<T> ✓ ) -> vec3<T>' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -919,8 +939,10 @@
R"(error: no matching call to 'distance(vec3<f32>, vec3<f32>, vec3<f32>)'
2 candidate functions:
- 'distance(T, T) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'distance(vecN<T>, vecN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'distance(vecN<T> ✓ , vecN<T> ✓ ) -> T' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'distance(T ✗ , T ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -933,8 +955,10 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'distance(vec3<f32>)'
2 candidate functions:
- 'distance(T, T) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'distance(vecN<T>, vecN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'distance(vecN<T> ✓ , vecN<T> ✗ ) -> T' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'distance(T ✗ , T ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -947,8 +971,10 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'distance()'
2 candidate functions:
- 'distance(T, T) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'distance(vecN<T>, vecN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'distance(T ✗ , T ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'distance(vecN<T> ✗ , vecN<T> ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1093,8 +1119,10 @@
R"(error: no matching call to 'frexp(i32, ptr<workgroup, i32, read_write>)'
2 candidate functions:
- 'frexp(T) -> __frexp_result_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'frexp(vecN<T>) -> __frexp_result_vecN_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'frexp(T ✗ ) -> __frexp_result_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'frexp(vecN<T> ✗ ) -> __frexp_result_vecN_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1152,8 +1180,10 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'length()'
2 candidate functions:
- 'length(T) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'length(vecN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'length(T ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'length(vecN<T> ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1166,8 +1196,10 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'length(f32, f32)'
2 candidate functions:
- 'length(T) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'length(vecN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'length(T ✓ ) -> T' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'length(vecN<T> ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1342,8 +1374,10 @@
R"(error: no matching call to 'modf(i32, ptr<workgroup, f32, read_write>)'
2 candidate functions:
- 'modf(T) -> __modf_result_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'modf(vecN<T>) -> __modf_result_vecN_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(T ✗ ) -> __modf_result_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(vecN<T> ✗ ) -> __modf_result_vecN_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1358,8 +1392,10 @@
R"(error: no matching call to 'modf(f32, ptr<workgroup, i32, read_write>)'
2 candidate functions:
- 'modf(T) -> __modf_result_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'modf(vecN<T>) -> __modf_result_vecN_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(T ✓ ) -> __modf_result_T' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(vecN<T> ✗ ) -> __modf_result_vecN_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1372,8 +1408,10 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'modf(f32, f32)'
2 candidate functions:
- 'modf(T) -> __modf_result_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'modf(vecN<T>) -> __modf_result_vecN_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(T ✓ ) -> __modf_result_T' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(vecN<T> ✗ ) -> __modf_result_vecN_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1388,8 +1426,10 @@
R"(error: no matching call to 'modf(vec2<f32>, ptr<workgroup, vec4<f32>, read_write>)'
2 candidate functions:
- 'modf(T) -> __modf_result_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
- 'modf(vecN<T>) -> __modf_result_vecN_T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(vecN<T> ✓ ) -> __modf_result_vecN_T' where:
+ ✓ 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'modf(T ✗ ) -> __modf_result_T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1429,7 +1469,8 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'normalize()'
1 candidate function:
- 'normalize(vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'normalize(vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1946,7 +1987,8 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'determinant(mat2x3<f32>)'
1 candidate function:
- 'determinant(matNxN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'determinant(matNxN<T> ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -1961,7 +2003,8 @@
EXPECT_EQ(r()->error(), R"(error: no matching call to 'determinant(f32)'
1 candidate function:
- 'determinant(matNxN<T>) -> T' where: 'T' is 'abstract-float', 'f32' or 'f16'
+ • 'determinant(matNxN<T> ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'f32' or 'f16'
)");
}
@@ -2030,7 +2073,8 @@
R"(error: no matching call to 'dot(f32, f32)'
1 candidate function:
- 'dot(vecN<T>, vecN<T>) -> T' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'dot(vecN<T> ✗ , vecN<T> ✗ ) -> T' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
)");
}
@@ -2082,8 +2126,12 @@
EXPECT_EQ(r()->error(), "error: no matching call to '" + name +
"()'\n\n"
- "2 candidate functions:\n '" +
- name + "(f32) -> f32'\n '" + name + "(vecN<f32>) -> vecN<f32>'\n");
+ "2 candidate functions:\n"
+ " • '" +
+ name +
+ "(f32 ✗ ) -> f32'\n"
+ " • '" +
+ name + "(vecN<f32> ✗ ) -> vecN<f32>'\n");
}
INSTANTIATE_TEST_SUITE_P(ResolverTest,
diff --git a/src/tint/lang/wgsl/resolver/builtin_validation_test.cc b/src/tint/lang/wgsl/resolver/builtin_validation_test.cc
index 0c063d8..6b55f36 100644
--- a/src/tint/lang/wgsl/resolver/builtin_validation_test.cc
+++ b/src/tint/lang/wgsl/resolver/builtin_validation_test.cc
@@ -167,11 +167,12 @@
EXPECT_EQ(r()->error(), R"(56:78 error: no matching constructor for 'i32(f32, f32, f32)'
2 candidate constructors:
- 'i32(i32) -> i32'
- 'i32() -> i32'
+ • 'i32(i32 ✗ ) -> i32'
+ • 'i32() -> i32'
1 candidate conversion:
- 'i32(T) -> i32' where: 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
+ • 'i32(T ✓ ) -> i32' where:
+ ✓ 'T' is 'abstract-int', 'abstract-float', 'f32', 'f16', 'u32' or 'bool'
)");
}
@@ -781,7 +782,7 @@
R"(error: no matching call to 'workgroupUniformLoad(ptr<storage, i32, read_write>)'
1 candidate function:
- 'workgroupUniformLoad(ptr<workgroup, T, read_write>) -> T'
+ • 'workgroupUniformLoad(ptr<workgroup, T, read_write> ✗ ) -> T'
)");
}
diff --git a/src/tint/lang/wgsl/resolver/call_validation_test.cc b/src/tint/lang/wgsl/resolver/call_validation_test.cc
index 001fb4e..b10f3fc 100644
--- a/src/tint/lang/wgsl/resolver/call_validation_test.cc
+++ b/src/tint/lang/wgsl/resolver/call_validation_test.cc
@@ -522,8 +522,11 @@
R"(12:34 error: no matching call to 'min<i32>(abstract-int, abstract-int)'
2 candidate functions:
- 'min(T, T) -> T' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
- 'min(vecN<T>, vecN<T>) -> vecN<T>' where: 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'min(T ✓ , T ✓ ) -> T' where:
+ ✗ overload expects 0 template arguments
+ ✓ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
+ • 'min(vecN<T> ✗ , vecN<T> ✗ ) -> vecN<T>' where:
+ ✗ 'T' is 'abstract-float', 'abstract-int', 'f32', 'i32', 'u32' or 'f16'
)");
}
diff --git a/src/tint/lang/wgsl/wgsl.def b/src/tint/lang/wgsl/wgsl.def
index e61ab87..8a1740b 100644
--- a/src/tint/lang/wgsl/wgsl.def
+++ b/src/tint/lang/wgsl/wgsl.def
@@ -542,18 +542,18 @@
@must_use fn textureSampleLevel[A: iu32, L: iu32](texture: texture_depth_cube_array,sampler: sampler, coords: vec3<f32>, array_index: A, level: L) -> f32
@must_use fn textureSampleBaseClampToEdge(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>) -> vec4<f32>
@must_use fn textureSampleBaseClampToEdge(texture: texture_external, sampler: sampler, coords: vec2<f32>) -> vec4<f32>
-fn textureStore[C: iu32](texture: texture_storage_1d<f32_texel_format, writable>, coords: C, value: vec4<f32>)
-fn textureStore[C: iu32](texture: texture_storage_2d<f32_texel_format, writable>, coords: vec2<C>, value: vec4<f32>)
-fn textureStore[C: iu32, A: iu32](texture: texture_storage_2d_array<f32_texel_format, writable>, coords: vec2<C>, array_index: A, value: vec4<f32>)
-fn textureStore[C: iu32](texture: texture_storage_3d<f32_texel_format, writable>, coords: vec3<C>, value: vec4<f32>)
-fn textureStore[C: iu32](texture: texture_storage_1d<i32_texel_format, writable>, coords: C, value: vec4<i32>)
-fn textureStore[C: iu32](texture: texture_storage_2d<i32_texel_format, writable>, coords: vec2<C>, value: vec4<i32>)
-fn textureStore[C: iu32, A: iu32](texture: texture_storage_2d_array<i32_texel_format, writable>, coords: vec2<C>, array_index: A, value: vec4<i32>)
-fn textureStore[C: iu32](texture: texture_storage_3d<i32_texel_format, writable>, coords: vec3<C>, value: vec4<i32>)
-fn textureStore[C: iu32](texture: texture_storage_1d<u32_texel_format, writable>, coords: C, value: vec4<u32>)
-fn textureStore[C: iu32](texture: texture_storage_2d<u32_texel_format, writable>, coords: vec2<C>, value: vec4<u32>)
-fn textureStore[C: iu32, A: iu32](texture: texture_storage_2d_array<u32_texel_format, writable>, coords: vec2<C>, array_index: A, value: vec4<u32>)
-fn textureStore[C: iu32](texture: texture_storage_3d<u32_texel_format, writable>, coords: vec3<C>, value: vec4<u32>)
+fn textureStore[C: iu32, F: f32_texel_format, W: writable](texture: texture_storage_1d<F, W>, coords: C, value: vec4<f32>)
+fn textureStore[C: iu32, F: f32_texel_format, W: writable](texture: texture_storage_2d<F, W>, coords: vec2<C>, value: vec4<f32>)
+fn textureStore[C: iu32, F: f32_texel_format, W: writable, A: iu32](texture: texture_storage_2d_array<F, W>, coords: vec2<C>, array_index: A, value: vec4<f32>)
+fn textureStore[C: iu32, F: f32_texel_format, W: writable](texture: texture_storage_3d<F, W>, coords: vec3<C>, value: vec4<f32>)
+fn textureStore[C: iu32, F: i32_texel_format, W: writable](texture: texture_storage_1d<F, W>, coords: C, value: vec4<i32>)
+fn textureStore[C: iu32, F: i32_texel_format, W: writable](texture: texture_storage_2d<F, W>, coords: vec2<C>, value: vec4<i32>)
+fn textureStore[C: iu32, F: i32_texel_format, W: writable, A: iu32](texture: texture_storage_2d_array<F, W>, coords: vec2<C>, array_index: A, value: vec4<i32>)
+fn textureStore[C: iu32, F: i32_texel_format, W: writable](texture: texture_storage_3d<F, W>, coords: vec3<C>, value: vec4<i32>)
+fn textureStore[C: iu32, F: u32_texel_format, W: writable](texture: texture_storage_1d<F, W>, coords: C, value: vec4<u32>)
+fn textureStore[C: iu32, F: u32_texel_format, W: writable](texture: texture_storage_2d<F, W>, coords: vec2<C>, value: vec4<u32>)
+fn textureStore[C: iu32, F: u32_texel_format, W: writable, A: iu32](texture: texture_storage_2d_array<F, W>, coords: vec2<C>, array_index: A, value: vec4<u32>)
+fn textureStore[C: iu32, F: u32_texel_format, W: writable](texture: texture_storage_3d<F, W>, coords: vec3<C>, value: vec4<u32>)
@must_use fn textureLoad[T: fiu32, C: iu32, L: iu32](texture: texture_1d<T>, coords: C, level: L) -> vec4<T>
@must_use fn textureLoad[T: fiu32, C: iu32, L: iu32](texture: texture_2d<T>, coords: vec2<C>, level: L) -> vec4<T>
@must_use fn textureLoad[T: fiu32, C: iu32, A: iu32, L: iu32](texture: texture_2d_array<T>, coords: vec2<C>, array_index: A, level: L) -> vec4<T>
@@ -563,18 +563,18 @@
@must_use fn textureLoad[C: iu32, A: iu32, L: iu32](texture: texture_depth_2d_array, coords: vec2<C>, array_index: A, level: L) -> f32
@must_use fn textureLoad[C: iu32, S: iu32](texture: texture_depth_multisampled_2d, coords: vec2<C>, sample_index: S) -> f32
@must_use fn textureLoad[C: iu32](texture: texture_external, coords: vec2<C>) -> vec4<f32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_1d<f32_texel_format, readable>, coords: C) -> vec4<f32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_1d<i32_texel_format, readable>, coords: C) -> vec4<i32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_1d<u32_texel_format, readable>, coords: C) -> vec4<u32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_2d<f32_texel_format, readable>, coords: vec2<C>) -> vec4<f32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_2d<i32_texel_format, readable>, coords: vec2<C>) -> vec4<i32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_2d<u32_texel_format, readable>, coords: vec2<C>) -> vec4<u32>
-@must_use fn textureLoad[C: iu32, A: iu32](texture: texture_storage_2d_array<f32_texel_format, readable>, coords: vec2<C>, array_index: A) -> vec4<f32>
-@must_use fn textureLoad[C: iu32, A: iu32](texture: texture_storage_2d_array<i32_texel_format, readable>, coords: vec2<C>, array_index: A) -> vec4<i32>
-@must_use fn textureLoad[C: iu32, A: iu32](texture: texture_storage_2d_array<u32_texel_format, readable>, coords: vec2<C>, array_index: A) -> vec4<u32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_3d<f32_texel_format, readable>, coords: vec3<C>) -> vec4<f32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_3d<i32_texel_format, readable>, coords: vec3<C>) -> vec4<i32>
-@must_use fn textureLoad[C: iu32](texture: texture_storage_3d<u32_texel_format, readable>, coords: vec3<C>) -> vec4<u32>
+@must_use fn textureLoad[C: iu32, F: f32_texel_format, R: readable](texture: texture_storage_1d<F, R>, coords: C) -> vec4<f32>
+@must_use fn textureLoad[C: iu32, F: i32_texel_format, R: readable](texture: texture_storage_1d<F, R>, coords: C) -> vec4<i32>
+@must_use fn textureLoad[C: iu32, F: u32_texel_format, R: readable](texture: texture_storage_1d<F, R>, coords: C) -> vec4<u32>
+@must_use fn textureLoad[C: iu32, F: f32_texel_format, R: readable](texture: texture_storage_2d<F, R>, coords: vec2<C>) -> vec4<f32>
+@must_use fn textureLoad[C: iu32, F: i32_texel_format, R: readable](texture: texture_storage_2d<F, R>, coords: vec2<C>) -> vec4<i32>
+@must_use fn textureLoad[C: iu32, F: u32_texel_format, R: readable](texture: texture_storage_2d<F, R>, coords: vec2<C>) -> vec4<u32>
+@must_use fn textureLoad[C: iu32, F: f32_texel_format, R: readable, A: iu32](texture: texture_storage_2d_array<F, R>, coords: vec2<C>, array_index: A) -> vec4<f32>
+@must_use fn textureLoad[C: iu32, F: i32_texel_format, R: readable, A: iu32](texture: texture_storage_2d_array<F, R>, coords: vec2<C>, array_index: A) -> vec4<i32>
+@must_use fn textureLoad[C: iu32, F: u32_texel_format, R: readable, A: iu32](texture: texture_storage_2d_array<F, R>, coords: vec2<C>, array_index: A) -> vec4<u32>
+@must_use fn textureLoad[C: iu32, F: f32_texel_format, R: readable](texture: texture_storage_3d<F, R>, coords: vec3<C>) -> vec4<f32>
+@must_use fn textureLoad[C: iu32, F: i32_texel_format, R: readable](texture: texture_storage_3d<F, R>, coords: vec3<C>) -> vec4<i32>
+@must_use fn textureLoad[C: iu32, F: u32_texel_format, R: readable](texture: texture_storage_3d<F, R>, coords: vec3<C>) -> vec4<u32>
@stage("fragment", "compute") fn atomicLoad[T: iu32, S: workgroup_or_storage](ptr<S, atomic<T>, read_write>) -> T
@stage("fragment", "compute") fn atomicStore[T: iu32, S: workgroup_or_storage](ptr<S, atomic<T>, read_write>, T)
diff --git a/src/tint/utils/text/styled_text_printer_windows.cc b/src/tint/utils/text/styled_text_printer_windows.cc
index eb5b32b..ee9373b 100644
--- a/src/tint/utils/text/styled_text_printer_windows.cc
+++ b/src/tint/utils/text/styled_text_printer_windows.cc
@@ -59,6 +59,7 @@
std::unique_ptr<StyledTextPrinter> StyledTextPrinter::Create(FILE* out,
const StyledTextTheme& theme) {
if (HANDLE handle = ConsoleHandleFrom(out); handle != INVALID_HANDLE_VALUE) {
+ SetConsoleOutputCP(CP_UTF8);
if (SetConsoleMode(handle, ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING)) {
return CreateANSI(out, theme);
}