[spirv][ir] Convert all textures to images.
Convert all the `core::type::Texture` objects to `spirv::type::Image`
objects during the builtin polyfill conversion.
Bug: 343218073
Change-Id: Ie18805721c888883e91792f09624601cd647b4f8
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/233695
Reviewed-by: James Price <jrprice@google.com>
Commit-Queue: dan sinclair <dsinclair@chromium.org>
diff --git a/src/tint/lang/core/type/type.h b/src/tint/lang/core/type/type.h
index 391bfa5..daa98f9 100644
--- a/src/tint/lang/core/type/type.h
+++ b/src/tint/lang/core/type/type.h
@@ -168,7 +168,7 @@
/// @returns true if this type is a numeric scale or vector
bool IsNumericScalarOrVector() const;
/// @returns true if this type is a handle type
- bool IsHandle() const;
+ virtual bool IsHandle() const;
/// @returns true if this type is an abstract type. It could be a numeric directly or an
/// abstract container which holds an abstract numeric
bool IsAbstract() const;
diff --git a/src/tint/lang/spirv/builtin_fn.cc b/src/tint/lang/spirv/builtin_fn.cc
index fde80f6..d9f9c1a 100644
--- a/src/tint/lang/spirv/builtin_fn.cc
+++ b/src/tint/lang/spirv/builtin_fn.cc
@@ -86,6 +86,10 @@
return "image_query_size";
case BuiltinFn::kImageQuerySizeLod:
return "image_query_size_lod";
+ case BuiltinFn::kImageQueryLevels:
+ return "image_query_levels";
+ case BuiltinFn::kImageQuerySamples:
+ return "image_query_samples";
case BuiltinFn::kImageRead:
return "image_read";
case BuiltinFn::kImageSampleImplicitLod:
@@ -270,6 +274,8 @@
case BuiltinFn::kDot:
case BuiltinFn::kImageQuerySize:
case BuiltinFn::kImageQuerySizeLod:
+ case BuiltinFn::kImageQueryLevels:
+ case BuiltinFn::kImageQuerySamples:
case BuiltinFn::kMatrixTimesMatrix:
case BuiltinFn::kMatrixTimesScalar:
case BuiltinFn::kMatrixTimesVector:
diff --git a/src/tint/lang/spirv/builtin_fn.cc.tmpl b/src/tint/lang/spirv/builtin_fn.cc.tmpl
index 1f39b83..d2f147f 100644
--- a/src/tint/lang/spirv/builtin_fn.cc.tmpl
+++ b/src/tint/lang/spirv/builtin_fn.cc.tmpl
@@ -69,6 +69,8 @@
case BuiltinFn::kDot:
case BuiltinFn::kImageQuerySize:
case BuiltinFn::kImageQuerySizeLod:
+ case BuiltinFn::kImageQueryLevels:
+ case BuiltinFn::kImageQuerySamples:
case BuiltinFn::kMatrixTimesMatrix:
case BuiltinFn::kMatrixTimesScalar:
case BuiltinFn::kMatrixTimesVector:
diff --git a/src/tint/lang/spirv/builtin_fn.h b/src/tint/lang/spirv/builtin_fn.h
index 653a833..9e41fbb 100644
--- a/src/tint/lang/spirv/builtin_fn.h
+++ b/src/tint/lang/spirv/builtin_fn.h
@@ -70,6 +70,8 @@
kImageGather,
kImageQuerySize,
kImageQuerySizeLod,
+ kImageQueryLevels,
+ kImageQuerySamples,
kImageRead,
kImageSampleImplicitLod,
kImageSampleExplicitLod,
diff --git a/src/tint/lang/spirv/intrinsic/data.cc b/src/tint/lang/spirv/intrinsic/data.cc
index 886df72..ef9181c 100644
--- a/src/tint/lang/spirv/intrinsic/data.cc
+++ b/src/tint/lang/spirv/intrinsic/data.cc
@@ -491,320 +491,6 @@
};
-/// TypeMatcher for 'type texture_1d'
-constexpr TypeMatcher kTexture1DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTexture1D(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTexture1D(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_1d", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_2d'
-constexpr TypeMatcher kTexture2DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTexture2D(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTexture2D(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_2d", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_2d_array'
-constexpr TypeMatcher kTexture2DArrayMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTexture2DArray(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTexture2DArray(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_2d_array", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_3d'
-constexpr TypeMatcher kTexture3DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTexture3D(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTexture3D(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_3d", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_cube'
-constexpr TypeMatcher kTextureCubeMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTextureCube(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTextureCube(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_cube", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_cube_array'
-constexpr TypeMatcher kTextureCubeArrayMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTextureCubeArray(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTextureCubeArray(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_cube_array", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_multisampled_2d'
-constexpr TypeMatcher kTextureMultisampled2DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchTextureMultisampled2D(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildTextureMultisampled2D(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("texture_multisampled_2d", "<", T, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_depth_2d'
-constexpr TypeMatcher kTextureDepth2DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- if (!MatchTextureDepth2D(state, ty)) {
- return nullptr;
- }
- return BuildTextureDepth2D(state, ty);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
- out << style::Type("texture_depth_2d");
- }
-};
-
-
-/// TypeMatcher for 'type texture_depth_2d_array'
-constexpr TypeMatcher kTextureDepth2DArrayMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- if (!MatchTextureDepth2DArray(state, ty)) {
- return nullptr;
- }
- return BuildTextureDepth2DArray(state, ty);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
- out << style::Type("texture_depth_2d_array");
- }
-};
-
-
-/// TypeMatcher for 'type texture_depth_cube'
-constexpr TypeMatcher kTextureDepthCubeMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- if (!MatchTextureDepthCube(state, ty)) {
- return nullptr;
- }
- return BuildTextureDepthCube(state, ty);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
- out << style::Type("texture_depth_cube");
- }
-};
-
-
-/// TypeMatcher for 'type texture_depth_cube_array'
-constexpr TypeMatcher kTextureDepthCubeArrayMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- if (!MatchTextureDepthCubeArray(state, ty)) {
- return nullptr;
- }
- return BuildTextureDepthCubeArray(state, ty);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
- out << style::Type("texture_depth_cube_array");
- }
-};
-
-
-/// TypeMatcher for 'type texture_depth_multisampled_2d'
-constexpr TypeMatcher kTextureDepthMultisampled2DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- if (!MatchTextureDepthMultisampled2D(state, ty)) {
- return nullptr;
- }
- return BuildTextureDepthMultisampled2D(state, ty);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
- out << style::Type("texture_depth_multisampled_2d");
- }
-};
-
-
-/// TypeMatcher for 'type texture_storage_1d'
-constexpr TypeMatcher kTextureStorage1DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- Number F = Number::invalid;
- Number A = Number::invalid;
- if (!MatchTextureStorage1D(state, ty, F, A)) {
- return nullptr;
- }
- F = state.Num(F);
- if (!F.IsValid()) {
- return nullptr;
- }
- A = state.Num(A);
- if (!A.IsValid()) {
- return nullptr;
- }
- return BuildTextureStorage1D(state, ty, F, A);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
- state->PrintNum(F);StyledText A;
- state->PrintNum(A);
- out << style::Type("texture_storage_1d", "<", F, ", ", A, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_storage_2d'
-constexpr TypeMatcher kTextureStorage2DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- Number F = Number::invalid;
- Number A = Number::invalid;
- if (!MatchTextureStorage2D(state, ty, F, A)) {
- return nullptr;
- }
- F = state.Num(F);
- if (!F.IsValid()) {
- return nullptr;
- }
- A = state.Num(A);
- if (!A.IsValid()) {
- return nullptr;
- }
- return BuildTextureStorage2D(state, ty, F, A);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
- state->PrintNum(F);StyledText A;
- state->PrintNum(A);
- out << style::Type("texture_storage_2d", "<", F, ", ", A, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_storage_2d_array'
-constexpr TypeMatcher kTextureStorage2DArrayMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- Number F = Number::invalid;
- Number A = Number::invalid;
- if (!MatchTextureStorage2DArray(state, ty, F, A)) {
- return nullptr;
- }
- F = state.Num(F);
- if (!F.IsValid()) {
- return nullptr;
- }
- A = state.Num(A);
- if (!A.IsValid()) {
- return nullptr;
- }
- return BuildTextureStorage2DArray(state, ty, F, A);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
- state->PrintNum(F);StyledText A;
- state->PrintNum(A);
- out << style::Type("texture_storage_2d_array", "<", F, ", ", A, ">");
- }
-};
-
-
-/// TypeMatcher for 'type texture_storage_3d'
-constexpr TypeMatcher kTextureStorage3DMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- Number F = Number::invalid;
- Number A = Number::invalid;
- if (!MatchTextureStorage3D(state, ty, F, A)) {
- return nullptr;
- }
- F = state.Num(F);
- if (!F.IsValid()) {
- return nullptr;
- }
- A = state.Num(A);
- if (!A.IsValid()) {
- return nullptr;
- }
- return BuildTextureStorage3D(state, ty, F, A);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
- state->PrintNum(F);StyledText A;
- state->PrintNum(A);
- out << style::Type("texture_storage_3d", "<", F, ", ", A, ">");
- }
-};
-
-
/// TypeMatcher for 'type ptr'
constexpr TypeMatcher kPtrMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
@@ -837,26 +523,6 @@
};
-/// TypeMatcher for 'type input_attachment'
-constexpr TypeMatcher kInputAttachmentMatcher {
-/* match */ [](MatchState& state, const Type* ty) -> const Type* {
- const Type* T = nullptr;
- if (!MatchInputAttachment(state, ty, T)) {
- return nullptr;
- }
- T = state.Type(T);
- if (T == nullptr) {
- return nullptr;
- }
- return BuildInputAttachment(state, ty, T);
- },
-/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
- state->PrintType(T);
- out << style::Type("input_attachment", "<", T, ">");
- }
-};
-
-
/// TypeMatcher for 'type struct_with_runtime_array'
constexpr TypeMatcher kStructWithRuntimeArrayMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
@@ -1338,6 +1004,37 @@
}
};
+/// EnumMatcher for 'match dim_subpass'
+constexpr NumberMatcher kDimSubpassMatcher {
+/* match */ [](MatchState&, Number number) -> Number {
+ if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Dim::kSubpassData)) {
+ return Number(static_cast<uint32_t>(spirv::type::Dim::kSubpassData));
+ }
+ return Number::invalid;
+ },
+/* print */ [](MatchState*, StyledText& out) {
+ out<< style::Enum("SubpassData");
+ }
+};
+
+/// EnumMatcher for 'match dim_1d_2d_3d_or_cube'
+constexpr NumberMatcher kDim1D2D3DOrCubeMatcher {
+/* match */ [](MatchState&, Number number) -> Number {
+ switch (static_cast<spirv::type::Dim>(number.Value())) {
+ case spirv::type::Dim::kD1:
+ case spirv::type::Dim::kD2:
+ case spirv::type::Dim::kD3:
+ case spirv::type::Dim::kCube:
+ return number;
+ default:
+ return Number::invalid;
+ }
+ },
+/* print */ [](MatchState*, StyledText& out) {
+ out<< style::Enum("d1")<< style::Plain(", ") << style::Enum("d2")<< style::Plain(", ") << style::Enum("d3")<< style::Plain(" or ") << style::Enum("Cube");
+ }
+};
+
/// EnumMatcher for 'match single_sampled'
constexpr NumberMatcher kSingleSampledMatcher {
/* match */ [](MatchState&, Number number) -> Number {
@@ -1351,16 +1048,16 @@
}
};
-/// EnumMatcher for 'match sampling_compatible'
-constexpr NumberMatcher kSamplingCompatibleMatcher {
+/// EnumMatcher for 'match multi_sampled'
+constexpr NumberMatcher kMultiSampledMatcher {
/* match */ [](MatchState&, Number number) -> Number {
- if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Sampled::kSamplingCompatible)) {
- return Number(static_cast<uint32_t>(spirv::type::Sampled::kSamplingCompatible));
+ if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Multisampled::kMultisampled)) {
+ return Number(static_cast<uint32_t>(spirv::type::Multisampled::kMultisampled));
}
return Number::invalid;
},
/* print */ [](MatchState*, StyledText& out) {
- out<< style::Enum("SamplingCompatible");
+ out<< style::Enum("Multisampled");
}
};
@@ -1419,6 +1116,32 @@
}
};
+/// EnumMatcher for 'match sampling_compatible'
+constexpr NumberMatcher kSamplingCompatibleMatcher {
+/* match */ [](MatchState&, Number number) -> Number {
+ if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Sampled::kSamplingCompatible)) {
+ return Number(static_cast<uint32_t>(spirv::type::Sampled::kSamplingCompatible));
+ }
+ return Number::invalid;
+ },
+/* print */ [](MatchState*, StyledText& out) {
+ out<< style::Enum("SamplingCompatible");
+ }
+};
+
+/// EnumMatcher for 'match rw_op_compatible'
+constexpr NumberMatcher kRwOpCompatibleMatcher {
+/* match */ [](MatchState&, Number number) -> Number {
+ if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Sampled::kReadWriteOpCompatible)) {
+ return Number(static_cast<uint32_t>(spirv::type::Sampled::kReadWriteOpCompatible));
+ }
+ return Number::invalid;
+ },
+/* print */ [](MatchState*, StyledText& out) {
+ out<< style::Enum("ReadWriteOpCompatible");
+ }
+};
+
/// EnumMatcher for 'match subgroup_matrix_kind_left'
constexpr NumberMatcher kSubgroupMatrixKindLeftMatcher {
/* match */ [](MatchState&, Number number) -> Number {
@@ -1467,57 +1190,42 @@
/* [2] */ TemplateTypeMatcher<2>::matcher,
/* [3] */ TemplateTypeMatcher<3>::matcher,
/* [4] */ TemplateTypeMatcher<4>::matcher,
- /* [5] */ kBoolMatcher,
- /* [6] */ kF32Matcher,
- /* [7] */ kF16Matcher,
- /* [8] */ kI32Matcher,
- /* [9] */ kU32Matcher,
- /* [10] */ kVec2Matcher,
- /* [11] */ kVec3Matcher,
- /* [12] */ kVec4Matcher,
- /* [13] */ kMat2X2Matcher,
- /* [14] */ kMat2X3Matcher,
- /* [15] */ kMat2X4Matcher,
- /* [16] */ kMat3X2Matcher,
- /* [17] */ kMat3X3Matcher,
- /* [18] */ kMat3X4Matcher,
- /* [19] */ kMat4X2Matcher,
- /* [20] */ kMat4X3Matcher,
- /* [21] */ kMat4X4Matcher,
- /* [22] */ kVecMatcher,
- /* [23] */ kMatMatcher,
- /* [24] */ kAtomicMatcher,
- /* [25] */ kSamplerMatcher,
- /* [26] */ kSamplerComparisonMatcher,
- /* [27] */ kTexture1DMatcher,
- /* [28] */ kTexture2DMatcher,
- /* [29] */ kTexture2DArrayMatcher,
- /* [30] */ kTexture3DMatcher,
- /* [31] */ kTextureCubeMatcher,
- /* [32] */ kTextureCubeArrayMatcher,
- /* [33] */ kTextureMultisampled2DMatcher,
- /* [34] */ kTextureDepth2DMatcher,
- /* [35] */ kTextureDepth2DArrayMatcher,
- /* [36] */ kTextureDepthCubeMatcher,
- /* [37] */ kTextureDepthCubeArrayMatcher,
- /* [38] */ kTextureDepthMultisampled2DMatcher,
- /* [39] */ kTextureStorage1DMatcher,
- /* [40] */ kTextureStorage2DMatcher,
- /* [41] */ kTextureStorage2DArrayMatcher,
- /* [42] */ kTextureStorage3DMatcher,
- /* [43] */ kPtrMatcher,
- /* [44] */ kInputAttachmentMatcher,
- /* [45] */ kStructWithRuntimeArrayMatcher,
- /* [46] */ kImageMatcher,
- /* [47] */ kSampledImageMatcher,
- /* [48] */ kSubgroupMatrixMatcher,
- /* [49] */ kF32F16Matcher,
- /* [50] */ kIu32Matcher,
- /* [51] */ kFiu32Matcher,
- /* [52] */ kFiu32F16Matcher,
- /* [53] */ kScalarMatcher,
- /* [54] */ kSamplersMatcher,
- /* [55] */ kSubgroupMatrixElementsMatcher,
+ /* [5] */ TemplateTypeMatcher<5>::matcher,
+ /* [6] */ TemplateTypeMatcher<6>::matcher,
+ /* [7] */ kBoolMatcher,
+ /* [8] */ kF32Matcher,
+ /* [9] */ kF16Matcher,
+ /* [10] */ kI32Matcher,
+ /* [11] */ kU32Matcher,
+ /* [12] */ kVec2Matcher,
+ /* [13] */ kVec3Matcher,
+ /* [14] */ kVec4Matcher,
+ /* [15] */ kMat2X2Matcher,
+ /* [16] */ kMat2X3Matcher,
+ /* [17] */ kMat2X4Matcher,
+ /* [18] */ kMat3X2Matcher,
+ /* [19] */ kMat3X3Matcher,
+ /* [20] */ kMat3X4Matcher,
+ /* [21] */ kMat4X2Matcher,
+ /* [22] */ kMat4X3Matcher,
+ /* [23] */ kMat4X4Matcher,
+ /* [24] */ kVecMatcher,
+ /* [25] */ kMatMatcher,
+ /* [26] */ kAtomicMatcher,
+ /* [27] */ kSamplerMatcher,
+ /* [28] */ kSamplerComparisonMatcher,
+ /* [29] */ kPtrMatcher,
+ /* [30] */ kStructWithRuntimeArrayMatcher,
+ /* [31] */ kImageMatcher,
+ /* [32] */ kSampledImageMatcher,
+ /* [33] */ kSubgroupMatrixMatcher,
+ /* [34] */ kF32F16Matcher,
+ /* [35] */ kIu32Matcher,
+ /* [36] */ kFiu32Matcher,
+ /* [37] */ kFiu32F16Matcher,
+ /* [38] */ kScalarMatcher,
+ /* [39] */ kSamplersMatcher,
+ /* [40] */ kSubgroupMatrixElementsMatcher,
};
/// The template numbers, and number matchers
@@ -1527,552 +1235,962 @@
/* [2] */ TemplateNumberMatcher<2>::matcher,
/* [3] */ TemplateNumberMatcher<3>::matcher,
/* [4] */ TemplateNumberMatcher<4>::matcher,
- /* [5] */ kStorageMatcher,
- /* [6] */ kWorkgroupOrStorageMatcher,
- /* [7] */ kFunctionPrivateWorkgroupStorageMatcher,
- /* [8] */ kF32TexelFormatMatcher,
- /* [9] */ kI32TexelFormatMatcher,
- /* [10] */ kU32TexelFormatMatcher,
- /* [11] */ kReadWriteMatcher,
- /* [12] */ kReadableMatcher,
- /* [13] */ kWritableMatcher,
- /* [14] */ kDim1DMatcher,
- /* [15] */ kDim2DMatcher,
- /* [16] */ kDim3DMatcher,
- /* [17] */ kDimCubeMatcher,
- /* [18] */ kSingleSampledMatcher,
- /* [19] */ kSamplingCompatibleMatcher,
- /* [20] */ kIsDepthMatcher,
- /* [21] */ kNonDepthMatcher,
- /* [22] */ kIsArrayedMatcher,
- /* [23] */ kNonArrayedMatcher,
- /* [24] */ kSubgroupMatrixKindLeftMatcher,
- /* [25] */ kSubgroupMatrixKindRightMatcher,
- /* [26] */ kSubgroupMatrixKindResultMatcher,
+ /* [5] */ TemplateNumberMatcher<5>::matcher,
+ /* [6] */ TemplateNumberMatcher<6>::matcher,
+ /* [7] */ kStorageMatcher,
+ /* [8] */ kWorkgroupOrStorageMatcher,
+ /* [9] */ kFunctionPrivateWorkgroupStorageMatcher,
+ /* [10] */ kF32TexelFormatMatcher,
+ /* [11] */ kI32TexelFormatMatcher,
+ /* [12] */ kU32TexelFormatMatcher,
+ /* [13] */ kReadWriteMatcher,
+ /* [14] */ kReadableMatcher,
+ /* [15] */ kWritableMatcher,
+ /* [16] */ kDim1DMatcher,
+ /* [17] */ kDim2DMatcher,
+ /* [18] */ kDim3DMatcher,
+ /* [19] */ kDimCubeMatcher,
+ /* [20] */ kDimSubpassMatcher,
+ /* [21] */ kDim1D2D3DOrCubeMatcher,
+ /* [22] */ kSingleSampledMatcher,
+ /* [23] */ kMultiSampledMatcher,
+ /* [24] */ kIsDepthMatcher,
+ /* [25] */ kNonDepthMatcher,
+ /* [26] */ kIsArrayedMatcher,
+ /* [27] */ kNonArrayedMatcher,
+ /* [28] */ kSamplingCompatibleMatcher,
+ /* [29] */ kRwOpCompatibleMatcher,
+ /* [30] */ kSubgroupMatrixKindLeftMatcher,
+ /* [31] */ kSubgroupMatrixKindRightMatcher,
+ /* [32] */ kSubgroupMatrixKindResultMatcher,
};
constexpr MatcherIndex kMatcherIndices[] = {
- /* [0] */ MatcherIndex(47),
- /* [1] */ MatcherIndex(46),
- /* [2] */ MatcherIndex(6),
- /* [3] */ MatcherIndex(15),
- /* [4] */ MatcherIndex(20),
- /* [5] */ MatcherIndex(23),
- /* [6] */ MatcherIndex(18),
- /* [7] */ MatcherIndex(19),
+ /* [0] */ MatcherIndex(32),
+ /* [1] */ MatcherIndex(31),
+ /* [2] */ MatcherIndex(8),
+ /* [3] */ MatcherIndex(17),
+ /* [4] */ MatcherIndex(24),
+ /* [5] */ MatcherIndex(27),
+ /* [6] */ MatcherIndex(22),
+ /* [7] */ MatcherIndex(28),
/* [8] */ MatcherIndex(2),
- /* [9] */ MatcherIndex(12),
- /* [10] */ MatcherIndex(6),
- /* [11] */ MatcherIndex(47),
- /* [12] */ MatcherIndex(46),
- /* [13] */ MatcherIndex(6),
- /* [14] */ MatcherIndex(15),
- /* [15] */ MatcherIndex(20),
- /* [16] */ MatcherIndex(22),
- /* [17] */ MatcherIndex(18),
- /* [18] */ MatcherIndex(19),
+ /* [9] */ MatcherIndex(14),
+ /* [10] */ MatcherIndex(8),
+ /* [11] */ MatcherIndex(32),
+ /* [12] */ MatcherIndex(31),
+ /* [13] */ MatcherIndex(8),
+ /* [14] */ MatcherIndex(17),
+ /* [15] */ MatcherIndex(24),
+ /* [16] */ MatcherIndex(26),
+ /* [17] */ MatcherIndex(22),
+ /* [18] */ MatcherIndex(28),
/* [19] */ MatcherIndex(2),
- /* [20] */ MatcherIndex(12),
+ /* [20] */ MatcherIndex(14),
/* [21] */ MatcherIndex(0),
- /* [22] */ MatcherIndex(47),
- /* [23] */ MatcherIndex(46),
- /* [24] */ MatcherIndex(6),
- /* [25] */ MatcherIndex(17),
- /* [26] */ MatcherIndex(20),
- /* [27] */ MatcherIndex(23),
- /* [28] */ MatcherIndex(18),
- /* [29] */ MatcherIndex(19),
+ /* [22] */ MatcherIndex(32),
+ /* [23] */ MatcherIndex(31),
+ /* [24] */ MatcherIndex(8),
+ /* [25] */ MatcherIndex(19),
+ /* [26] */ MatcherIndex(24),
+ /* [27] */ MatcherIndex(27),
+ /* [28] */ MatcherIndex(22),
+ /* [29] */ MatcherIndex(28),
/* [30] */ MatcherIndex(2),
- /* [31] */ MatcherIndex(12),
- /* [32] */ MatcherIndex(8),
- /* [33] */ MatcherIndex(47),
- /* [34] */ MatcherIndex(46),
- /* [35] */ MatcherIndex(6),
- /* [36] */ MatcherIndex(17),
- /* [37] */ MatcherIndex(20),
- /* [38] */ MatcherIndex(22),
- /* [39] */ MatcherIndex(18),
- /* [40] */ MatcherIndex(19),
+ /* [31] */ MatcherIndex(14),
+ /* [32] */ MatcherIndex(10),
+ /* [33] */ MatcherIndex(32),
+ /* [34] */ MatcherIndex(31),
+ /* [35] */ MatcherIndex(8),
+ /* [36] */ MatcherIndex(19),
+ /* [37] */ MatcherIndex(24),
+ /* [38] */ MatcherIndex(26),
+ /* [39] */ MatcherIndex(22),
+ /* [40] */ MatcherIndex(28),
/* [41] */ MatcherIndex(2),
- /* [42] */ MatcherIndex(12),
- /* [43] */ MatcherIndex(9),
- /* [44] */ MatcherIndex(47),
- /* [45] */ MatcherIndex(46),
+ /* [42] */ MatcherIndex(14),
+ /* [43] */ MatcherIndex(11),
+ /* [44] */ MatcherIndex(32),
+ /* [45] */ MatcherIndex(31),
/* [46] */ MatcherIndex(0),
- /* [47] */ MatcherIndex(15),
- /* [48] */ MatcherIndex(21),
- /* [49] */ MatcherIndex(23),
- /* [50] */ MatcherIndex(18),
- /* [51] */ MatcherIndex(19),
+ /* [47] */ MatcherIndex(17),
+ /* [48] */ MatcherIndex(25),
+ /* [49] */ MatcherIndex(27),
+ /* [50] */ MatcherIndex(22),
+ /* [51] */ MatcherIndex(28),
/* [52] */ MatcherIndex(3),
- /* [53] */ MatcherIndex(12),
- /* [54] */ MatcherIndex(47),
- /* [55] */ MatcherIndex(46),
- /* [56] */ MatcherIndex(0),
- /* [57] */ MatcherIndex(15),
- /* [58] */ MatcherIndex(21),
- /* [59] */ MatcherIndex(22),
- /* [60] */ MatcherIndex(18),
- /* [61] */ MatcherIndex(19),
- /* [62] */ MatcherIndex(3),
- /* [63] */ MatcherIndex(12),
- /* [64] */ MatcherIndex(47),
- /* [65] */ MatcherIndex(46),
- /* [66] */ MatcherIndex(0),
- /* [67] */ MatcherIndex(15),
- /* [68] */ MatcherIndex(21),
- /* [69] */ MatcherIndex(22),
- /* [70] */ MatcherIndex(18),
- /* [71] */ MatcherIndex(19),
- /* [72] */ MatcherIndex(4),
- /* [73] */ MatcherIndex(12),
- /* [74] */ MatcherIndex(47),
- /* [75] */ MatcherIndex(46),
- /* [76] */ MatcherIndex(0),
- /* [77] */ MatcherIndex(17),
- /* [78] */ MatcherIndex(21),
- /* [79] */ MatcherIndex(23),
- /* [80] */ MatcherIndex(18),
- /* [81] */ MatcherIndex(19),
- /* [82] */ MatcherIndex(3),
- /* [83] */ MatcherIndex(12),
- /* [84] */ MatcherIndex(47),
- /* [85] */ MatcherIndex(46),
- /* [86] */ MatcherIndex(0),
- /* [87] */ MatcherIndex(17),
- /* [88] */ MatcherIndex(21),
- /* [89] */ MatcherIndex(22),
- /* [90] */ MatcherIndex(18),
- /* [91] */ MatcherIndex(19),
- /* [92] */ MatcherIndex(3),
- /* [93] */ MatcherIndex(12),
- /* [94] */ MatcherIndex(47),
- /* [95] */ MatcherIndex(46),
- /* [96] */ MatcherIndex(6),
- /* [97] */ MatcherIndex(15),
- /* [98] */ MatcherIndex(20),
- /* [99] */ MatcherIndex(23),
- /* [100] */ MatcherIndex(18),
- /* [101] */ MatcherIndex(19),
- /* [102] */ MatcherIndex(3),
- /* [103] */ MatcherIndex(12),
- /* [104] */ MatcherIndex(47),
- /* [105] */ MatcherIndex(46),
- /* [106] */ MatcherIndex(6),
- /* [107] */ MatcherIndex(15),
- /* [108] */ MatcherIndex(20),
- /* [109] */ MatcherIndex(22),
- /* [110] */ MatcherIndex(18),
- /* [111] */ MatcherIndex(19),
- /* [112] */ MatcherIndex(3),
- /* [113] */ MatcherIndex(12),
- /* [114] */ MatcherIndex(47),
- /* [115] */ MatcherIndex(46),
- /* [116] */ MatcherIndex(0),
- /* [117] */ MatcherIndex(14),
- /* [118] */ MatcherIndex(21),
- /* [119] */ MatcherIndex(23),
- /* [120] */ MatcherIndex(18),
- /* [121] */ MatcherIndex(19),
- /* [122] */ MatcherIndex(2),
- /* [123] */ MatcherIndex(12),
- /* [124] */ MatcherIndex(47),
- /* [125] */ MatcherIndex(46),
- /* [126] */ MatcherIndex(0),
- /* [127] */ MatcherIndex(15),
- /* [128] */ MatcherIndex(21),
- /* [129] */ MatcherIndex(23),
- /* [130] */ MatcherIndex(18),
- /* [131] */ MatcherIndex(19),
- /* [132] */ MatcherIndex(2),
- /* [133] */ MatcherIndex(12),
- /* [134] */ MatcherIndex(47),
- /* [135] */ MatcherIndex(46),
- /* [136] */ MatcherIndex(0),
- /* [137] */ MatcherIndex(15),
- /* [138] */ MatcherIndex(21),
- /* [139] */ MatcherIndex(22),
- /* [140] */ MatcherIndex(18),
- /* [141] */ MatcherIndex(19),
- /* [142] */ MatcherIndex(2),
- /* [143] */ MatcherIndex(12),
- /* [144] */ MatcherIndex(47),
- /* [145] */ MatcherIndex(46),
- /* [146] */ MatcherIndex(0),
- /* [147] */ MatcherIndex(16),
- /* [148] */ MatcherIndex(21),
- /* [149] */ MatcherIndex(23),
- /* [150] */ MatcherIndex(18),
- /* [151] */ MatcherIndex(19),
- /* [152] */ MatcherIndex(2),
- /* [153] */ MatcherIndex(12),
- /* [154] */ MatcherIndex(47),
- /* [155] */ MatcherIndex(46),
- /* [156] */ MatcherIndex(0),
- /* [157] */ MatcherIndex(16),
- /* [158] */ MatcherIndex(21),
- /* [159] */ MatcherIndex(23),
- /* [160] */ MatcherIndex(18),
- /* [161] */ MatcherIndex(19),
- /* [162] */ MatcherIndex(3),
- /* [163] */ MatcherIndex(12),
- /* [164] */ MatcherIndex(47),
- /* [165] */ MatcherIndex(46),
- /* [166] */ MatcherIndex(0),
- /* [167] */ MatcherIndex(17),
- /* [168] */ MatcherIndex(21),
- /* [169] */ MatcherIndex(23),
- /* [170] */ MatcherIndex(18),
- /* [171] */ MatcherIndex(19),
- /* [172] */ MatcherIndex(2),
- /* [173] */ MatcherIndex(12),
- /* [174] */ MatcherIndex(47),
- /* [175] */ MatcherIndex(46),
- /* [176] */ MatcherIndex(0),
- /* [177] */ MatcherIndex(17),
- /* [178] */ MatcherIndex(21),
- /* [179] */ MatcherIndex(22),
- /* [180] */ MatcherIndex(18),
- /* [181] */ MatcherIndex(19),
- /* [182] */ MatcherIndex(2),
- /* [183] */ MatcherIndex(12),
- /* [184] */ MatcherIndex(47),
- /* [185] */ MatcherIndex(46),
- /* [186] */ MatcherIndex(6),
- /* [187] */ MatcherIndex(15),
- /* [188] */ MatcherIndex(20),
- /* [189] */ MatcherIndex(23),
- /* [190] */ MatcherIndex(18),
- /* [191] */ MatcherIndex(19),
- /* [192] */ MatcherIndex(1),
- /* [193] */ MatcherIndex(12),
- /* [194] */ MatcherIndex(47),
- /* [195] */ MatcherIndex(46),
- /* [196] */ MatcherIndex(6),
- /* [197] */ MatcherIndex(17),
- /* [198] */ MatcherIndex(20),
- /* [199] */ MatcherIndex(23),
- /* [200] */ MatcherIndex(18),
- /* [201] */ MatcherIndex(19),
- /* [202] */ MatcherIndex(1),
- /* [203] */ MatcherIndex(12),
- /* [204] */ MatcherIndex(47),
- /* [205] */ MatcherIndex(46),
- /* [206] */ MatcherIndex(6),
- /* [207] */ MatcherIndex(15),
- /* [208] */ MatcherIndex(20),
- /* [209] */ MatcherIndex(22),
- /* [210] */ MatcherIndex(18),
- /* [211] */ MatcherIndex(19),
- /* [212] */ MatcherIndex(1),
- /* [213] */ MatcherIndex(12),
- /* [214] */ MatcherIndex(47),
- /* [215] */ MatcherIndex(46),
- /* [216] */ MatcherIndex(6),
- /* [217] */ MatcherIndex(17),
- /* [218] */ MatcherIndex(20),
- /* [219] */ MatcherIndex(22),
- /* [220] */ MatcherIndex(18),
- /* [221] */ MatcherIndex(19),
- /* [222] */ MatcherIndex(1),
- /* [223] */ MatcherIndex(12),
- /* [224] */ MatcherIndex(46),
- /* [225] */ MatcherIndex(1),
- /* [226] */ MatcherIndex(14),
- /* [227] */ MatcherIndex(21),
- /* [228] */ MatcherIndex(23),
- /* [229] */ MatcherIndex(18),
- /* [230] */ MatcherIndex(19),
- /* [231] */ MatcherIndex(3),
- /* [232] */ MatcherIndex(12),
- /* [233] */ MatcherIndex(46),
- /* [234] */ MatcherIndex(1),
- /* [235] */ MatcherIndex(15),
- /* [236] */ MatcherIndex(21),
- /* [237] */ MatcherIndex(23),
- /* [238] */ MatcherIndex(18),
- /* [239] */ MatcherIndex(19),
- /* [240] */ MatcherIndex(3),
- /* [241] */ MatcherIndex(12),
- /* [242] */ MatcherIndex(46),
- /* [243] */ MatcherIndex(1),
- /* [244] */ MatcherIndex(15),
- /* [245] */ MatcherIndex(21),
- /* [246] */ MatcherIndex(22),
- /* [247] */ MatcherIndex(18),
- /* [248] */ MatcherIndex(19),
- /* [249] */ MatcherIndex(3),
- /* [250] */ MatcherIndex(12),
- /* [251] */ MatcherIndex(46),
- /* [252] */ MatcherIndex(1),
- /* [253] */ MatcherIndex(16),
- /* [254] */ MatcherIndex(21),
- /* [255] */ MatcherIndex(23),
- /* [256] */ MatcherIndex(18),
- /* [257] */ MatcherIndex(19),
- /* [258] */ MatcherIndex(3),
- /* [259] */ MatcherIndex(12),
- /* [260] */ MatcherIndex(46),
- /* [261] */ MatcherIndex(1),
- /* [262] */ MatcherIndex(17),
- /* [263] */ MatcherIndex(21),
- /* [264] */ MatcherIndex(23),
- /* [265] */ MatcherIndex(18),
- /* [266] */ MatcherIndex(19),
- /* [267] */ MatcherIndex(3),
- /* [268] */ MatcherIndex(12),
- /* [269] */ MatcherIndex(46),
- /* [270] */ MatcherIndex(1),
- /* [271] */ MatcherIndex(17),
- /* [272] */ MatcherIndex(21),
- /* [273] */ MatcherIndex(22),
- /* [274] */ MatcherIndex(18),
- /* [275] */ MatcherIndex(19),
- /* [276] */ MatcherIndex(3),
- /* [277] */ MatcherIndex(12),
- /* [278] */ MatcherIndex(43),
- /* [279] */ MatcherIndex(2),
- /* [280] */ MatcherIndex(22),
- /* [281] */ MatcherIndex(1),
- /* [282] */ MatcherIndex(0),
- /* [283] */ MatcherIndex(13),
- /* [284] */ MatcherIndex(0),
- /* [285] */ MatcherIndex(43),
- /* [286] */ MatcherIndex(3),
- /* [287] */ MatcherIndex(22),
- /* [288] */ MatcherIndex(2),
- /* [289] */ MatcherIndex(1),
- /* [290] */ MatcherIndex(13),
- /* [291] */ MatcherIndex(43),
- /* [292] */ MatcherIndex(2),
- /* [293] */ MatcherIndex(24),
- /* [294] */ MatcherIndex(0),
- /* [295] */ MatcherIndex(11),
- /* [296] */ MatcherIndex(6),
- /* [297] */ MatcherIndex(48),
- /* [298] */ MatcherIndex(1),
- /* [299] */ MatcherIndex(2),
- /* [300] */ MatcherIndex(3),
- /* [301] */ MatcherIndex(4),
- /* [302] */ MatcherIndex(48),
- /* [303] */ MatcherIndex(0),
+ /* [53] */ MatcherIndex(14),
+ /* [54] */ MatcherIndex(1),
+ /* [55] */ MatcherIndex(32),
+ /* [56] */ MatcherIndex(31),
+ /* [57] */ MatcherIndex(0),
+ /* [58] */ MatcherIndex(17),
+ /* [59] */ MatcherIndex(25),
+ /* [60] */ MatcherIndex(26),
+ /* [61] */ MatcherIndex(22),
+ /* [62] */ MatcherIndex(28),
+ /* [63] */ MatcherIndex(3),
+ /* [64] */ MatcherIndex(14),
+ /* [65] */ MatcherIndex(32),
+ /* [66] */ MatcherIndex(31),
+ /* [67] */ MatcherIndex(0),
+ /* [68] */ MatcherIndex(17),
+ /* [69] */ MatcherIndex(25),
+ /* [70] */ MatcherIndex(26),
+ /* [71] */ MatcherIndex(22),
+ /* [72] */ MatcherIndex(28),
+ /* [73] */ MatcherIndex(4),
+ /* [74] */ MatcherIndex(14),
+ /* [75] */ MatcherIndex(32),
+ /* [76] */ MatcherIndex(31),
+ /* [77] */ MatcherIndex(0),
+ /* [78] */ MatcherIndex(19),
+ /* [79] */ MatcherIndex(25),
+ /* [80] */ MatcherIndex(27),
+ /* [81] */ MatcherIndex(22),
+ /* [82] */ MatcherIndex(28),
+ /* [83] */ MatcherIndex(3),
+ /* [84] */ MatcherIndex(14),
+ /* [85] */ MatcherIndex(32),
+ /* [86] */ MatcherIndex(31),
+ /* [87] */ MatcherIndex(0),
+ /* [88] */ MatcherIndex(19),
+ /* [89] */ MatcherIndex(25),
+ /* [90] */ MatcherIndex(26),
+ /* [91] */ MatcherIndex(22),
+ /* [92] */ MatcherIndex(28),
+ /* [93] */ MatcherIndex(3),
+ /* [94] */ MatcherIndex(14),
+ /* [95] */ MatcherIndex(32),
+ /* [96] */ MatcherIndex(31),
+ /* [97] */ MatcherIndex(8),
+ /* [98] */ MatcherIndex(17),
+ /* [99] */ MatcherIndex(24),
+ /* [100] */ MatcherIndex(27),
+ /* [101] */ MatcherIndex(22),
+ /* [102] */ MatcherIndex(28),
+ /* [103] */ MatcherIndex(3),
+ /* [104] */ MatcherIndex(14),
+ /* [105] */ MatcherIndex(32),
+ /* [106] */ MatcherIndex(31),
+ /* [107] */ MatcherIndex(8),
+ /* [108] */ MatcherIndex(17),
+ /* [109] */ MatcherIndex(24),
+ /* [110] */ MatcherIndex(26),
+ /* [111] */ MatcherIndex(22),
+ /* [112] */ MatcherIndex(28),
+ /* [113] */ MatcherIndex(3),
+ /* [114] */ MatcherIndex(14),
+ /* [115] */ MatcherIndex(32),
+ /* [116] */ MatcherIndex(31),
+ /* [117] */ MatcherIndex(0),
+ /* [118] */ MatcherIndex(16),
+ /* [119] */ MatcherIndex(25),
+ /* [120] */ MatcherIndex(27),
+ /* [121] */ MatcherIndex(22),
+ /* [122] */ MatcherIndex(28),
+ /* [123] */ MatcherIndex(2),
+ /* [124] */ MatcherIndex(14),
+ /* [125] */ MatcherIndex(32),
+ /* [126] */ MatcherIndex(31),
+ /* [127] */ MatcherIndex(0),
+ /* [128] */ MatcherIndex(17),
+ /* [129] */ MatcherIndex(25),
+ /* [130] */ MatcherIndex(27),
+ /* [131] */ MatcherIndex(22),
+ /* [132] */ MatcherIndex(28),
+ /* [133] */ MatcherIndex(2),
+ /* [134] */ MatcherIndex(14),
+ /* [135] */ MatcherIndex(32),
+ /* [136] */ MatcherIndex(31),
+ /* [137] */ MatcherIndex(0),
+ /* [138] */ MatcherIndex(17),
+ /* [139] */ MatcherIndex(25),
+ /* [140] */ MatcherIndex(26),
+ /* [141] */ MatcherIndex(22),
+ /* [142] */ MatcherIndex(28),
+ /* [143] */ MatcherIndex(2),
+ /* [144] */ MatcherIndex(14),
+ /* [145] */ MatcherIndex(32),
+ /* [146] */ MatcherIndex(31),
+ /* [147] */ MatcherIndex(0),
+ /* [148] */ MatcherIndex(18),
+ /* [149] */ MatcherIndex(25),
+ /* [150] */ MatcherIndex(27),
+ /* [151] */ MatcherIndex(22),
+ /* [152] */ MatcherIndex(28),
+ /* [153] */ MatcherIndex(2),
+ /* [154] */ MatcherIndex(14),
+ /* [155] */ MatcherIndex(32),
+ /* [156] */ MatcherIndex(31),
+ /* [157] */ MatcherIndex(0),
+ /* [158] */ MatcherIndex(18),
+ /* [159] */ MatcherIndex(25),
+ /* [160] */ MatcherIndex(27),
+ /* [161] */ MatcherIndex(22),
+ /* [162] */ MatcherIndex(28),
+ /* [163] */ MatcherIndex(3),
+ /* [164] */ MatcherIndex(14),
+ /* [165] */ MatcherIndex(32),
+ /* [166] */ MatcherIndex(31),
+ /* [167] */ MatcherIndex(0),
+ /* [168] */ MatcherIndex(19),
+ /* [169] */ MatcherIndex(25),
+ /* [170] */ MatcherIndex(27),
+ /* [171] */ MatcherIndex(22),
+ /* [172] */ MatcherIndex(28),
+ /* [173] */ MatcherIndex(2),
+ /* [174] */ MatcherIndex(14),
+ /* [175] */ MatcherIndex(32),
+ /* [176] */ MatcherIndex(31),
+ /* [177] */ MatcherIndex(0),
+ /* [178] */ MatcherIndex(19),
+ /* [179] */ MatcherIndex(25),
+ /* [180] */ MatcherIndex(26),
+ /* [181] */ MatcherIndex(22),
+ /* [182] */ MatcherIndex(28),
+ /* [183] */ MatcherIndex(2),
+ /* [184] */ MatcherIndex(14),
+ /* [185] */ MatcherIndex(32),
+ /* [186] */ MatcherIndex(31),
+ /* [187] */ MatcherIndex(8),
+ /* [188] */ MatcherIndex(17),
+ /* [189] */ MatcherIndex(24),
+ /* [190] */ MatcherIndex(27),
+ /* [191] */ MatcherIndex(22),
+ /* [192] */ MatcherIndex(28),
+ /* [193] */ MatcherIndex(1),
+ /* [194] */ MatcherIndex(14),
+ /* [195] */ MatcherIndex(32),
+ /* [196] */ MatcherIndex(31),
+ /* [197] */ MatcherIndex(8),
+ /* [198] */ MatcherIndex(19),
+ /* [199] */ MatcherIndex(24),
+ /* [200] */ MatcherIndex(27),
+ /* [201] */ MatcherIndex(22),
+ /* [202] */ MatcherIndex(28),
+ /* [203] */ MatcherIndex(1),
+ /* [204] */ MatcherIndex(14),
+ /* [205] */ MatcherIndex(32),
+ /* [206] */ MatcherIndex(31),
+ /* [207] */ MatcherIndex(8),
+ /* [208] */ MatcherIndex(17),
+ /* [209] */ MatcherIndex(24),
+ /* [210] */ MatcherIndex(26),
+ /* [211] */ MatcherIndex(22),
+ /* [212] */ MatcherIndex(28),
+ /* [213] */ MatcherIndex(1),
+ /* [214] */ MatcherIndex(14),
+ /* [215] */ MatcherIndex(32),
+ /* [216] */ MatcherIndex(31),
+ /* [217] */ MatcherIndex(8),
+ /* [218] */ MatcherIndex(19),
+ /* [219] */ MatcherIndex(24),
+ /* [220] */ MatcherIndex(26),
+ /* [221] */ MatcherIndex(22),
+ /* [222] */ MatcherIndex(28),
+ /* [223] */ MatcherIndex(1),
+ /* [224] */ MatcherIndex(14),
+ /* [225] */ MatcherIndex(31),
+ /* [226] */ MatcherIndex(0),
+ /* [227] */ MatcherIndex(16),
+ /* [228] */ MatcherIndex(25),
+ /* [229] */ MatcherIndex(27),
+ /* [230] */ MatcherIndex(22),
+ /* [231] */ MatcherIndex(28),
+ /* [232] */ MatcherIndex(4),
+ /* [233] */ MatcherIndex(14),
+ /* [234] */ MatcherIndex(31),
+ /* [235] */ MatcherIndex(0),
+ /* [236] */ MatcherIndex(17),
+ /* [237] */ MatcherIndex(25),
+ /* [238] */ MatcherIndex(27),
+ /* [239] */ MatcherIndex(22),
+ /* [240] */ MatcherIndex(28),
+ /* [241] */ MatcherIndex(4),
+ /* [242] */ MatcherIndex(14),
+ /* [243] */ MatcherIndex(31),
+ /* [244] */ MatcherIndex(0),
+ /* [245] */ MatcherIndex(18),
+ /* [246] */ MatcherIndex(25),
+ /* [247] */ MatcherIndex(27),
+ /* [248] */ MatcherIndex(22),
+ /* [249] */ MatcherIndex(28),
+ /* [250] */ MatcherIndex(4),
+ /* [251] */ MatcherIndex(14),
+ /* [252] */ MatcherIndex(31),
+ /* [253] */ MatcherIndex(0),
+ /* [254] */ MatcherIndex(17),
+ /* [255] */ MatcherIndex(25),
+ /* [256] */ MatcherIndex(27),
+ /* [257] */ MatcherIndex(23),
+ /* [258] */ MatcherIndex(28),
+ /* [259] */ MatcherIndex(4),
+ /* [260] */ MatcherIndex(14),
+ /* [261] */ MatcherIndex(31),
+ /* [262] */ MatcherIndex(8),
+ /* [263] */ MatcherIndex(17),
+ /* [264] */ MatcherIndex(24),
+ /* [265] */ MatcherIndex(27),
+ /* [266] */ MatcherIndex(23),
+ /* [267] */ MatcherIndex(28),
+ /* [268] */ MatcherIndex(3),
+ /* [269] */ MatcherIndex(14),
+ /* [270] */ MatcherIndex(31),
+ /* [271] */ MatcherIndex(0),
+ /* [272] */ MatcherIndex(16),
+ /* [273] */ MatcherIndex(25),
+ /* [274] */ MatcherIndex(27),
+ /* [275] */ MatcherIndex(22),
+ /* [276] */ MatcherIndex(29),
+ /* [277] */ MatcherIndex(1),
+ /* [278] */ MatcherIndex(2),
+ /* [279] */ MatcherIndex(31),
+ /* [280] */ MatcherIndex(0),
+ /* [281] */ MatcherIndex(17),
+ /* [282] */ MatcherIndex(25),
+ /* [283] */ MatcherIndex(27),
+ /* [284] */ MatcherIndex(22),
+ /* [285] */ MatcherIndex(29),
+ /* [286] */ MatcherIndex(1),
+ /* [287] */ MatcherIndex(2),
+ /* [288] */ MatcherIndex(31),
+ /* [289] */ MatcherIndex(0),
+ /* [290] */ MatcherIndex(17),
+ /* [291] */ MatcherIndex(25),
+ /* [292] */ MatcherIndex(26),
+ /* [293] */ MatcherIndex(22),
+ /* [294] */ MatcherIndex(29),
+ /* [295] */ MatcherIndex(1),
+ /* [296] */ MatcherIndex(2),
+ /* [297] */ MatcherIndex(31),
+ /* [298] */ MatcherIndex(0),
+ /* [299] */ MatcherIndex(18),
+ /* [300] */ MatcherIndex(25),
+ /* [301] */ MatcherIndex(27),
+ /* [302] */ MatcherIndex(22),
+ /* [303] */ MatcherIndex(29),
/* [304] */ MatcherIndex(1),
/* [305] */ MatcherIndex(2),
- /* [306] */ MatcherIndex(3),
- /* [307] */ MatcherIndex(48),
- /* [308] */ MatcherIndex(26),
- /* [309] */ MatcherIndex(1),
- /* [310] */ MatcherIndex(2),
- /* [311] */ MatcherIndex(3),
- /* [312] */ MatcherIndex(48),
- /* [313] */ MatcherIndex(24),
- /* [314] */ MatcherIndex(0),
- /* [315] */ MatcherIndex(4),
- /* [316] */ MatcherIndex(3),
- /* [317] */ MatcherIndex(48),
+ /* [306] */ MatcherIndex(31),
+ /* [307] */ MatcherIndex(0),
+ /* [308] */ MatcherIndex(19),
+ /* [309] */ MatcherIndex(25),
+ /* [310] */ MatcherIndex(27),
+ /* [311] */ MatcherIndex(22),
+ /* [312] */ MatcherIndex(29),
+ /* [313] */ MatcherIndex(1),
+ /* [314] */ MatcherIndex(2),
+ /* [315] */ MatcherIndex(31),
+ /* [316] */ MatcherIndex(0),
+ /* [317] */ MatcherIndex(19),
/* [318] */ MatcherIndex(25),
- /* [319] */ MatcherIndex(0),
- /* [320] */ MatcherIndex(2),
- /* [321] */ MatcherIndex(4),
- /* [322] */ MatcherIndex(43),
- /* [323] */ MatcherIndex(5),
- /* [324] */ MatcherIndex(45),
- /* [325] */ MatcherIndex(1),
- /* [326] */ MatcherIndex(43),
- /* [327] */ MatcherIndex(2),
- /* [328] */ MatcherIndex(0),
- /* [329] */ MatcherIndex(12),
- /* [330] */ MatcherIndex(43),
+ /* [319] */ MatcherIndex(26),
+ /* [320] */ MatcherIndex(22),
+ /* [321] */ MatcherIndex(29),
+ /* [322] */ MatcherIndex(1),
+ /* [323] */ MatcherIndex(2),
+ /* [324] */ MatcherIndex(31),
+ /* [325] */ MatcherIndex(0),
+ /* [326] */ MatcherIndex(17),
+ /* [327] */ MatcherIndex(25),
+ /* [328] */ MatcherIndex(27),
+ /* [329] */ MatcherIndex(23),
+ /* [330] */ MatcherIndex(1),
/* [331] */ MatcherIndex(2),
- /* [332] */ MatcherIndex(0),
- /* [333] */ MatcherIndex(13),
- /* [334] */ MatcherIndex(23),
- /* [335] */ MatcherIndex(2),
- /* [336] */ MatcherIndex(3),
- /* [337] */ MatcherIndex(0),
- /* [338] */ MatcherIndex(23),
- /* [339] */ MatcherIndex(1),
- /* [340] */ MatcherIndex(3),
- /* [341] */ MatcherIndex(0),
- /* [342] */ MatcherIndex(23),
- /* [343] */ MatcherIndex(2),
- /* [344] */ MatcherIndex(1),
- /* [345] */ MatcherIndex(0),
- /* [346] */ MatcherIndex(23),
- /* [347] */ MatcherIndex(1),
- /* [348] */ MatcherIndex(2),
+ /* [332] */ MatcherIndex(3),
+ /* [333] */ MatcherIndex(31),
+ /* [334] */ MatcherIndex(8),
+ /* [335] */ MatcherIndex(17),
+ /* [336] */ MatcherIndex(24),
+ /* [337] */ MatcherIndex(27),
+ /* [338] */ MatcherIndex(22),
+ /* [339] */ MatcherIndex(29),
+ /* [340] */ MatcherIndex(0),
+ /* [341] */ MatcherIndex(1),
+ /* [342] */ MatcherIndex(31),
+ /* [343] */ MatcherIndex(8),
+ /* [344] */ MatcherIndex(17),
+ /* [345] */ MatcherIndex(24),
+ /* [346] */ MatcherIndex(26),
+ /* [347] */ MatcherIndex(22),
+ /* [348] */ MatcherIndex(29),
/* [349] */ MatcherIndex(0),
- /* [350] */ MatcherIndex(43),
- /* [351] */ MatcherIndex(1),
- /* [352] */ MatcherIndex(0),
- /* [353] */ MatcherIndex(13),
- /* [354] */ MatcherIndex(43),
- /* [355] */ MatcherIndex(2),
- /* [356] */ MatcherIndex(1),
- /* [357] */ MatcherIndex(13),
- /* [358] */ MatcherIndex(43),
- /* [359] */ MatcherIndex(6),
- /* [360] */ MatcherIndex(2),
- /* [361] */ MatcherIndex(12),
- /* [362] */ MatcherIndex(43),
- /* [363] */ MatcherIndex(6),
- /* [364] */ MatcherIndex(1),
- /* [365] */ MatcherIndex(13),
- /* [366] */ MatcherIndex(22),
+ /* [350] */ MatcherIndex(1),
+ /* [351] */ MatcherIndex(31),
+ /* [352] */ MatcherIndex(8),
+ /* [353] */ MatcherIndex(19),
+ /* [354] */ MatcherIndex(24),
+ /* [355] */ MatcherIndex(27),
+ /* [356] */ MatcherIndex(22),
+ /* [357] */ MatcherIndex(29),
+ /* [358] */ MatcherIndex(0),
+ /* [359] */ MatcherIndex(1),
+ /* [360] */ MatcherIndex(31),
+ /* [361] */ MatcherIndex(8),
+ /* [362] */ MatcherIndex(19),
+ /* [363] */ MatcherIndex(24),
+ /* [364] */ MatcherIndex(26),
+ /* [365] */ MatcherIndex(22),
+ /* [366] */ MatcherIndex(29),
/* [367] */ MatcherIndex(0),
/* [368] */ MatcherIndex(1),
- /* [369] */ MatcherIndex(39),
- /* [370] */ MatcherIndex(0),
- /* [371] */ MatcherIndex(1),
- /* [372] */ MatcherIndex(40),
- /* [373] */ MatcherIndex(0),
- /* [374] */ MatcherIndex(1),
- /* [375] */ MatcherIndex(41),
- /* [376] */ MatcherIndex(0),
- /* [377] */ MatcherIndex(1),
- /* [378] */ MatcherIndex(42),
+ /* [369] */ MatcherIndex(31),
+ /* [370] */ MatcherIndex(8),
+ /* [371] */ MatcherIndex(17),
+ /* [372] */ MatcherIndex(24),
+ /* [373] */ MatcherIndex(27),
+ /* [374] */ MatcherIndex(23),
+ /* [375] */ MatcherIndex(0),
+ /* [376] */ MatcherIndex(1),
+ /* [377] */ MatcherIndex(2),
+ /* [378] */ MatcherIndex(31),
/* [379] */ MatcherIndex(0),
- /* [380] */ MatcherIndex(1),
- /* [381] */ MatcherIndex(39),
- /* [382] */ MatcherIndex(8),
- /* [383] */ MatcherIndex(13),
- /* [384] */ MatcherIndex(39),
- /* [385] */ MatcherIndex(9),
- /* [386] */ MatcherIndex(13),
- /* [387] */ MatcherIndex(39),
- /* [388] */ MatcherIndex(10),
- /* [389] */ MatcherIndex(13),
- /* [390] */ MatcherIndex(40),
- /* [391] */ MatcherIndex(8),
- /* [392] */ MatcherIndex(13),
- /* [393] */ MatcherIndex(40),
- /* [394] */ MatcherIndex(9),
- /* [395] */ MatcherIndex(13),
- /* [396] */ MatcherIndex(40),
- /* [397] */ MatcherIndex(10),
- /* [398] */ MatcherIndex(13),
- /* [399] */ MatcherIndex(41),
- /* [400] */ MatcherIndex(8),
- /* [401] */ MatcherIndex(13),
- /* [402] */ MatcherIndex(41),
- /* [403] */ MatcherIndex(9),
- /* [404] */ MatcherIndex(13),
- /* [405] */ MatcherIndex(41),
- /* [406] */ MatcherIndex(10),
- /* [407] */ MatcherIndex(13),
- /* [408] */ MatcherIndex(42),
- /* [409] */ MatcherIndex(8),
- /* [410] */ MatcherIndex(13),
- /* [411] */ MatcherIndex(42),
- /* [412] */ MatcherIndex(9),
- /* [413] */ MatcherIndex(13),
- /* [414] */ MatcherIndex(42),
- /* [415] */ MatcherIndex(10),
- /* [416] */ MatcherIndex(13),
- /* [417] */ MatcherIndex(22),
- /* [418] */ MatcherIndex(2),
- /* [419] */ MatcherIndex(0),
- /* [420] */ MatcherIndex(22),
- /* [421] */ MatcherIndex(0),
- /* [422] */ MatcherIndex(5),
- /* [423] */ MatcherIndex(22),
- /* [424] */ MatcherIndex(3),
- /* [425] */ MatcherIndex(0),
- /* [426] */ MatcherIndex(22),
- /* [427] */ MatcherIndex(3),
- /* [428] */ MatcherIndex(1),
- /* [429] */ MatcherIndex(22),
+ /* [380] */ MatcherIndex(16),
+ /* [381] */ MatcherIndex(25),
+ /* [382] */ MatcherIndex(27),
+ /* [383] */ MatcherIndex(22),
+ /* [384] */ MatcherIndex(2),
+ /* [385] */ MatcherIndex(3),
+ /* [386] */ MatcherIndex(4),
+ /* [387] */ MatcherIndex(31),
+ /* [388] */ MatcherIndex(0),
+ /* [389] */ MatcherIndex(17),
+ /* [390] */ MatcherIndex(25),
+ /* [391] */ MatcherIndex(27),
+ /* [392] */ MatcherIndex(22),
+ /* [393] */ MatcherIndex(2),
+ /* [394] */ MatcherIndex(3),
+ /* [395] */ MatcherIndex(4),
+ /* [396] */ MatcherIndex(31),
+ /* [397] */ MatcherIndex(0),
+ /* [398] */ MatcherIndex(17),
+ /* [399] */ MatcherIndex(25),
+ /* [400] */ MatcherIndex(26),
+ /* [401] */ MatcherIndex(22),
+ /* [402] */ MatcherIndex(2),
+ /* [403] */ MatcherIndex(3),
+ /* [404] */ MatcherIndex(4),
+ /* [405] */ MatcherIndex(31),
+ /* [406] */ MatcherIndex(0),
+ /* [407] */ MatcherIndex(18),
+ /* [408] */ MatcherIndex(25),
+ /* [409] */ MatcherIndex(27),
+ /* [410] */ MatcherIndex(22),
+ /* [411] */ MatcherIndex(2),
+ /* [412] */ MatcherIndex(3),
+ /* [413] */ MatcherIndex(4),
+ /* [414] */ MatcherIndex(31),
+ /* [415] */ MatcherIndex(0),
+ /* [416] */ MatcherIndex(19),
+ /* [417] */ MatcherIndex(25),
+ /* [418] */ MatcherIndex(27),
+ /* [419] */ MatcherIndex(22),
+ /* [420] */ MatcherIndex(2),
+ /* [421] */ MatcherIndex(3),
+ /* [422] */ MatcherIndex(4),
+ /* [423] */ MatcherIndex(31),
+ /* [424] */ MatcherIndex(0),
+ /* [425] */ MatcherIndex(19),
+ /* [426] */ MatcherIndex(25),
+ /* [427] */ MatcherIndex(26),
+ /* [428] */ MatcherIndex(22),
+ /* [429] */ MatcherIndex(2),
/* [430] */ MatcherIndex(3),
- /* [431] */ MatcherIndex(2),
- /* [432] */ MatcherIndex(22),
- /* [433] */ MatcherIndex(4),
- /* [434] */ MatcherIndex(0),
- /* [435] */ MatcherIndex(22),
- /* [436] */ MatcherIndex(4),
- /* [437] */ MatcherIndex(1),
- /* [438] */ MatcherIndex(22),
- /* [439] */ MatcherIndex(4),
- /* [440] */ MatcherIndex(2),
- /* [441] */ MatcherIndex(22),
- /* [442] */ MatcherIndex(4),
- /* [443] */ MatcherIndex(3),
- /* [444] */ MatcherIndex(22),
- /* [445] */ MatcherIndex(0),
- /* [446] */ MatcherIndex(2),
- /* [447] */ MatcherIndex(22),
+ /* [431] */ MatcherIndex(4),
+ /* [432] */ MatcherIndex(31),
+ /* [433] */ MatcherIndex(8),
+ /* [434] */ MatcherIndex(17),
+ /* [435] */ MatcherIndex(24),
+ /* [436] */ MatcherIndex(27),
+ /* [437] */ MatcherIndex(22),
+ /* [438] */ MatcherIndex(1),
+ /* [439] */ MatcherIndex(2),
+ /* [440] */ MatcherIndex(3),
+ /* [441] */ MatcherIndex(31),
+ /* [442] */ MatcherIndex(8),
+ /* [443] */ MatcherIndex(17),
+ /* [444] */ MatcherIndex(24),
+ /* [445] */ MatcherIndex(26),
+ /* [446] */ MatcherIndex(22),
+ /* [447] */ MatcherIndex(1),
/* [448] */ MatcherIndex(2),
- /* [449] */ MatcherIndex(5),
- /* [450] */ MatcherIndex(10),
- /* [451] */ MatcherIndex(6),
- /* [452] */ MatcherIndex(10),
- /* [453] */ MatcherIndex(4),
+ /* [449] */ MatcherIndex(3),
+ /* [450] */ MatcherIndex(31),
+ /* [451] */ MatcherIndex(8),
+ /* [452] */ MatcherIndex(19),
+ /* [453] */ MatcherIndex(24),
/* [454] */ MatcherIndex(27),
- /* [455] */ MatcherIndex(0),
- /* [456] */ MatcherIndex(28),
- /* [457] */ MatcherIndex(0),
- /* [458] */ MatcherIndex(10),
- /* [459] */ MatcherIndex(1),
- /* [460] */ MatcherIndex(29),
- /* [461] */ MatcherIndex(0),
- /* [462] */ MatcherIndex(11),
- /* [463] */ MatcherIndex(1),
- /* [464] */ MatcherIndex(30),
- /* [465] */ MatcherIndex(0),
- /* [466] */ MatcherIndex(33),
- /* [467] */ MatcherIndex(0),
- /* [468] */ MatcherIndex(10),
- /* [469] */ MatcherIndex(8),
- /* [470] */ MatcherIndex(10),
- /* [471] */ MatcherIndex(3),
- /* [472] */ MatcherIndex(10),
- /* [473] */ MatcherIndex(2),
- /* [474] */ MatcherIndex(10),
- /* [475] */ MatcherIndex(9),
- /* [476] */ MatcherIndex(11),
- /* [477] */ MatcherIndex(9),
- /* [478] */ MatcherIndex(31),
- /* [479] */ MatcherIndex(0),
- /* [480] */ MatcherIndex(32),
- /* [481] */ MatcherIndex(0),
- /* [482] */ MatcherIndex(11),
- /* [483] */ MatcherIndex(2),
- /* [484] */ MatcherIndex(44),
- /* [485] */ MatcherIndex(0),
- /* [486] */ MatcherIndex(10),
- /* [487] */ MatcherIndex(0),
- /* [488] */ MatcherIndex(11),
- /* [489] */ MatcherIndex(0),
- /* [490] */ MatcherIndex(47),
- /* [491] */ MatcherIndex(0),
- /* [492] */ MatcherIndex(27),
- /* [493] */ MatcherIndex(1),
- /* [494] */ MatcherIndex(28),
- /* [495] */ MatcherIndex(1),
- /* [496] */ MatcherIndex(29),
- /* [497] */ MatcherIndex(1),
- /* [498] */ MatcherIndex(30),
- /* [499] */ MatcherIndex(1),
- /* [500] */ MatcherIndex(31),
- /* [501] */ MatcherIndex(1),
- /* [502] */ MatcherIndex(32),
+ /* [455] */ MatcherIndex(22),
+ /* [456] */ MatcherIndex(1),
+ /* [457] */ MatcherIndex(2),
+ /* [458] */ MatcherIndex(3),
+ /* [459] */ MatcherIndex(31),
+ /* [460] */ MatcherIndex(8),
+ /* [461] */ MatcherIndex(19),
+ /* [462] */ MatcherIndex(24),
+ /* [463] */ MatcherIndex(26),
+ /* [464] */ MatcherIndex(22),
+ /* [465] */ MatcherIndex(1),
+ /* [466] */ MatcherIndex(2),
+ /* [467] */ MatcherIndex(3),
+ /* [468] */ MatcherIndex(31),
+ /* [469] */ MatcherIndex(1),
+ /* [470] */ MatcherIndex(21),
+ /* [471] */ MatcherIndex(2),
+ /* [472] */ MatcherIndex(3),
+ /* [473] */ MatcherIndex(22),
+ /* [474] */ MatcherIndex(4),
+ /* [475] */ MatcherIndex(5),
+ /* [476] */ MatcherIndex(6),
+ /* [477] */ MatcherIndex(31),
+ /* [478] */ MatcherIndex(1),
+ /* [479] */ MatcherIndex(17),
+ /* [480] */ MatcherIndex(2),
+ /* [481] */ MatcherIndex(3),
+ /* [482] */ MatcherIndex(23),
+ /* [483] */ MatcherIndex(4),
+ /* [484] */ MatcherIndex(5),
+ /* [485] */ MatcherIndex(6),
+ /* [486] */ MatcherIndex(31),
+ /* [487] */ MatcherIndex(8),
+ /* [488] */ MatcherIndex(16),
+ /* [489] */ MatcherIndex(25),
+ /* [490] */ MatcherIndex(27),
+ /* [491] */ MatcherIndex(22),
+ /* [492] */ MatcherIndex(29),
+ /* [493] */ MatcherIndex(0),
+ /* [494] */ MatcherIndex(1),
+ /* [495] */ MatcherIndex(31),
+ /* [496] */ MatcherIndex(10),
+ /* [497] */ MatcherIndex(16),
+ /* [498] */ MatcherIndex(25),
+ /* [499] */ MatcherIndex(27),
+ /* [500] */ MatcherIndex(22),
+ /* [501] */ MatcherIndex(29),
+ /* [502] */ MatcherIndex(0),
/* [503] */ MatcherIndex(1),
- /* [504] */ MatcherIndex(17),
- /* [505] */ MatcherIndex(0),
- /* [506] */ MatcherIndex(21),
- /* [507] */ MatcherIndex(0),
- /* [508] */ MatcherIndex(50),
- /* [509] */ MatcherIndex(49),
- /* [510] */ MatcherIndex(51),
- /* [511] */ MatcherIndex(34),
- /* [512] */ MatcherIndex(35),
- /* [513] */ MatcherIndex(38),
- /* [514] */ MatcherIndex(36),
- /* [515] */ MatcherIndex(37),
- /* [516] */ MatcherIndex(54),
- /* [517] */ MatcherIndex(53),
- /* [518] */ MatcherIndex(7),
- /* [519] */ MatcherIndex(52),
- /* [520] */ MatcherIndex(55),
+ /* [504] */ MatcherIndex(31),
+ /* [505] */ MatcherIndex(11),
+ /* [506] */ MatcherIndex(16),
+ /* [507] */ MatcherIndex(25),
+ /* [508] */ MatcherIndex(27),
+ /* [509] */ MatcherIndex(22),
+ /* [510] */ MatcherIndex(29),
+ /* [511] */ MatcherIndex(0),
+ /* [512] */ MatcherIndex(1),
+ /* [513] */ MatcherIndex(31),
+ /* [514] */ MatcherIndex(8),
+ /* [515] */ MatcherIndex(17),
+ /* [516] */ MatcherIndex(25),
+ /* [517] */ MatcherIndex(27),
+ /* [518] */ MatcherIndex(22),
+ /* [519] */ MatcherIndex(29),
+ /* [520] */ MatcherIndex(0),
+ /* [521] */ MatcherIndex(1),
+ /* [522] */ MatcherIndex(31),
+ /* [523] */ MatcherIndex(10),
+ /* [524] */ MatcherIndex(17),
+ /* [525] */ MatcherIndex(25),
+ /* [526] */ MatcherIndex(27),
+ /* [527] */ MatcherIndex(22),
+ /* [528] */ MatcherIndex(29),
+ /* [529] */ MatcherIndex(0),
+ /* [530] */ MatcherIndex(1),
+ /* [531] */ MatcherIndex(31),
+ /* [532] */ MatcherIndex(11),
+ /* [533] */ MatcherIndex(17),
+ /* [534] */ MatcherIndex(25),
+ /* [535] */ MatcherIndex(27),
+ /* [536] */ MatcherIndex(22),
+ /* [537] */ MatcherIndex(29),
+ /* [538] */ MatcherIndex(0),
+ /* [539] */ MatcherIndex(1),
+ /* [540] */ MatcherIndex(31),
+ /* [541] */ MatcherIndex(8),
+ /* [542] */ MatcherIndex(17),
+ /* [543] */ MatcherIndex(25),
+ /* [544] */ MatcherIndex(26),
+ /* [545] */ MatcherIndex(22),
+ /* [546] */ MatcherIndex(29),
+ /* [547] */ MatcherIndex(0),
+ /* [548] */ MatcherIndex(1),
+ /* [549] */ MatcherIndex(31),
+ /* [550] */ MatcherIndex(10),
+ /* [551] */ MatcherIndex(17),
+ /* [552] */ MatcherIndex(25),
+ /* [553] */ MatcherIndex(26),
+ /* [554] */ MatcherIndex(22),
+ /* [555] */ MatcherIndex(29),
+ /* [556] */ MatcherIndex(0),
+ /* [557] */ MatcherIndex(1),
+ /* [558] */ MatcherIndex(31),
+ /* [559] */ MatcherIndex(11),
+ /* [560] */ MatcherIndex(17),
+ /* [561] */ MatcherIndex(25),
+ /* [562] */ MatcherIndex(26),
+ /* [563] */ MatcherIndex(22),
+ /* [564] */ MatcherIndex(29),
+ /* [565] */ MatcherIndex(0),
+ /* [566] */ MatcherIndex(1),
+ /* [567] */ MatcherIndex(31),
+ /* [568] */ MatcherIndex(8),
+ /* [569] */ MatcherIndex(18),
+ /* [570] */ MatcherIndex(25),
+ /* [571] */ MatcherIndex(27),
+ /* [572] */ MatcherIndex(22),
+ /* [573] */ MatcherIndex(29),
+ /* [574] */ MatcherIndex(0),
+ /* [575] */ MatcherIndex(1),
+ /* [576] */ MatcherIndex(31),
+ /* [577] */ MatcherIndex(10),
+ /* [578] */ MatcherIndex(18),
+ /* [579] */ MatcherIndex(25),
+ /* [580] */ MatcherIndex(27),
+ /* [581] */ MatcherIndex(22),
+ /* [582] */ MatcherIndex(29),
+ /* [583] */ MatcherIndex(0),
+ /* [584] */ MatcherIndex(1),
+ /* [585] */ MatcherIndex(31),
+ /* [586] */ MatcherIndex(11),
+ /* [587] */ MatcherIndex(18),
+ /* [588] */ MatcherIndex(25),
+ /* [589] */ MatcherIndex(27),
+ /* [590] */ MatcherIndex(22),
+ /* [591] */ MatcherIndex(29),
+ /* [592] */ MatcherIndex(0),
+ /* [593] */ MatcherIndex(1),
+ /* [594] */ MatcherIndex(31),
+ /* [595] */ MatcherIndex(1),
+ /* [596] */ MatcherIndex(20),
+ /* [597] */ MatcherIndex(25),
+ /* [598] */ MatcherIndex(27),
+ /* [599] */ MatcherIndex(22),
+ /* [600] */ MatcherIndex(29),
+ /* [601] */ MatcherIndex(0),
+ /* [602] */ MatcherIndex(3),
+ /* [603] */ MatcherIndex(31),
+ /* [604] */ MatcherIndex(8),
+ /* [605] */ MatcherIndex(16),
+ /* [606] */ MatcherIndex(25),
+ /* [607] */ MatcherIndex(27),
+ /* [608] */ MatcherIndex(22),
+ /* [609] */ MatcherIndex(29),
+ /* [610] */ MatcherIndex(10),
+ /* [611] */ MatcherIndex(15),
+ /* [612] */ MatcherIndex(0),
+ /* [613] */ MatcherIndex(31),
+ /* [614] */ MatcherIndex(10),
+ /* [615] */ MatcherIndex(16),
+ /* [616] */ MatcherIndex(25),
+ /* [617] */ MatcherIndex(27),
+ /* [618] */ MatcherIndex(22),
+ /* [619] */ MatcherIndex(29),
+ /* [620] */ MatcherIndex(11),
+ /* [621] */ MatcherIndex(15),
+ /* [622] */ MatcherIndex(31),
+ /* [623] */ MatcherIndex(11),
+ /* [624] */ MatcherIndex(16),
+ /* [625] */ MatcherIndex(25),
+ /* [626] */ MatcherIndex(27),
+ /* [627] */ MatcherIndex(22),
+ /* [628] */ MatcherIndex(29),
+ /* [629] */ MatcherIndex(12),
+ /* [630] */ MatcherIndex(15),
+ /* [631] */ MatcherIndex(31),
+ /* [632] */ MatcherIndex(8),
+ /* [633] */ MatcherIndex(17),
+ /* [634] */ MatcherIndex(25),
+ /* [635] */ MatcherIndex(27),
+ /* [636] */ MatcherIndex(22),
+ /* [637] */ MatcherIndex(29),
+ /* [638] */ MatcherIndex(10),
+ /* [639] */ MatcherIndex(15),
+ /* [640] */ MatcherIndex(31),
+ /* [641] */ MatcherIndex(10),
+ /* [642] */ MatcherIndex(17),
+ /* [643] */ MatcherIndex(25),
+ /* [644] */ MatcherIndex(27),
+ /* [645] */ MatcherIndex(22),
+ /* [646] */ MatcherIndex(29),
+ /* [647] */ MatcherIndex(11),
+ /* [648] */ MatcherIndex(15),
+ /* [649] */ MatcherIndex(31),
+ /* [650] */ MatcherIndex(11),
+ /* [651] */ MatcherIndex(17),
+ /* [652] */ MatcherIndex(25),
+ /* [653] */ MatcherIndex(27),
+ /* [654] */ MatcherIndex(22),
+ /* [655] */ MatcherIndex(29),
+ /* [656] */ MatcherIndex(12),
+ /* [657] */ MatcherIndex(15),
+ /* [658] */ MatcherIndex(31),
+ /* [659] */ MatcherIndex(8),
+ /* [660] */ MatcherIndex(17),
+ /* [661] */ MatcherIndex(25),
+ /* [662] */ MatcherIndex(26),
+ /* [663] */ MatcherIndex(22),
+ /* [664] */ MatcherIndex(29),
+ /* [665] */ MatcherIndex(10),
+ /* [666] */ MatcherIndex(15),
+ /* [667] */ MatcherIndex(31),
+ /* [668] */ MatcherIndex(10),
+ /* [669] */ MatcherIndex(17),
+ /* [670] */ MatcherIndex(25),
+ /* [671] */ MatcherIndex(26),
+ /* [672] */ MatcherIndex(22),
+ /* [673] */ MatcherIndex(29),
+ /* [674] */ MatcherIndex(11),
+ /* [675] */ MatcherIndex(15),
+ /* [676] */ MatcherIndex(31),
+ /* [677] */ MatcherIndex(11),
+ /* [678] */ MatcherIndex(17),
+ /* [679] */ MatcherIndex(25),
+ /* [680] */ MatcherIndex(26),
+ /* [681] */ MatcherIndex(22),
+ /* [682] */ MatcherIndex(29),
+ /* [683] */ MatcherIndex(12),
+ /* [684] */ MatcherIndex(15),
+ /* [685] */ MatcherIndex(31),
+ /* [686] */ MatcherIndex(8),
+ /* [687] */ MatcherIndex(18),
+ /* [688] */ MatcherIndex(25),
+ /* [689] */ MatcherIndex(27),
+ /* [690] */ MatcherIndex(22),
+ /* [691] */ MatcherIndex(29),
+ /* [692] */ MatcherIndex(10),
+ /* [693] */ MatcherIndex(15),
+ /* [694] */ MatcherIndex(31),
+ /* [695] */ MatcherIndex(10),
+ /* [696] */ MatcherIndex(18),
+ /* [697] */ MatcherIndex(25),
+ /* [698] */ MatcherIndex(27),
+ /* [699] */ MatcherIndex(22),
+ /* [700] */ MatcherIndex(29),
+ /* [701] */ MatcherIndex(11),
+ /* [702] */ MatcherIndex(15),
+ /* [703] */ MatcherIndex(31),
+ /* [704] */ MatcherIndex(11),
+ /* [705] */ MatcherIndex(18),
+ /* [706] */ MatcherIndex(25),
+ /* [707] */ MatcherIndex(27),
+ /* [708] */ MatcherIndex(22),
+ /* [709] */ MatcherIndex(29),
+ /* [710] */ MatcherIndex(12),
+ /* [711] */ MatcherIndex(15),
+ /* [712] */ MatcherIndex(31),
+ /* [713] */ MatcherIndex(1),
+ /* [714] */ MatcherIndex(16),
+ /* [715] */ MatcherIndex(25),
+ /* [716] */ MatcherIndex(27),
+ /* [717] */ MatcherIndex(22),
+ /* [718] */ MatcherIndex(28),
+ /* [719] */ MatcherIndex(3),
+ /* [720] */ MatcherIndex(14),
+ /* [721] */ MatcherIndex(31),
+ /* [722] */ MatcherIndex(1),
+ /* [723] */ MatcherIndex(17),
+ /* [724] */ MatcherIndex(25),
+ /* [725] */ MatcherIndex(27),
+ /* [726] */ MatcherIndex(22),
+ /* [727] */ MatcherIndex(28),
+ /* [728] */ MatcherIndex(3),
+ /* [729] */ MatcherIndex(14),
+ /* [730] */ MatcherIndex(31),
+ /* [731] */ MatcherIndex(1),
+ /* [732] */ MatcherIndex(17),
+ /* [733] */ MatcherIndex(25),
+ /* [734] */ MatcherIndex(26),
+ /* [735] */ MatcherIndex(22),
+ /* [736] */ MatcherIndex(28),
+ /* [737] */ MatcherIndex(3),
+ /* [738] */ MatcherIndex(14),
+ /* [739] */ MatcherIndex(31),
+ /* [740] */ MatcherIndex(1),
+ /* [741] */ MatcherIndex(18),
+ /* [742] */ MatcherIndex(25),
+ /* [743] */ MatcherIndex(27),
+ /* [744] */ MatcherIndex(22),
+ /* [745] */ MatcherIndex(28),
+ /* [746] */ MatcherIndex(3),
+ /* [747] */ MatcherIndex(14),
+ /* [748] */ MatcherIndex(31),
+ /* [749] */ MatcherIndex(1),
+ /* [750] */ MatcherIndex(19),
+ /* [751] */ MatcherIndex(25),
+ /* [752] */ MatcherIndex(27),
+ /* [753] */ MatcherIndex(22),
+ /* [754] */ MatcherIndex(28),
+ /* [755] */ MatcherIndex(3),
+ /* [756] */ MatcherIndex(14),
+ /* [757] */ MatcherIndex(31),
+ /* [758] */ MatcherIndex(1),
+ /* [759] */ MatcherIndex(19),
+ /* [760] */ MatcherIndex(25),
+ /* [761] */ MatcherIndex(26),
+ /* [762] */ MatcherIndex(22),
+ /* [763] */ MatcherIndex(28),
+ /* [764] */ MatcherIndex(3),
+ /* [765] */ MatcherIndex(14),
+ /* [766] */ MatcherIndex(29),
+ /* [767] */ MatcherIndex(2),
+ /* [768] */ MatcherIndex(24),
+ /* [769] */ MatcherIndex(1),
+ /* [770] */ MatcherIndex(0),
+ /* [771] */ MatcherIndex(15),
+ /* [772] */ MatcherIndex(29),
+ /* [773] */ MatcherIndex(3),
+ /* [774] */ MatcherIndex(24),
+ /* [775] */ MatcherIndex(2),
+ /* [776] */ MatcherIndex(1),
+ /* [777] */ MatcherIndex(15),
+ /* [778] */ MatcherIndex(29),
+ /* [779] */ MatcherIndex(2),
+ /* [780] */ MatcherIndex(26),
+ /* [781] */ MatcherIndex(0),
+ /* [782] */ MatcherIndex(13),
+ /* [783] */ MatcherIndex(8),
+ /* [784] */ MatcherIndex(33),
+ /* [785] */ MatcherIndex(1),
+ /* [786] */ MatcherIndex(2),
+ /* [787] */ MatcherIndex(3),
+ /* [788] */ MatcherIndex(4),
+ /* [789] */ MatcherIndex(33),
+ /* [790] */ MatcherIndex(0),
+ /* [791] */ MatcherIndex(1),
+ /* [792] */ MatcherIndex(2),
+ /* [793] */ MatcherIndex(3),
+ /* [794] */ MatcherIndex(33),
+ /* [795] */ MatcherIndex(32),
+ /* [796] */ MatcherIndex(1),
+ /* [797] */ MatcherIndex(2),
+ /* [798] */ MatcherIndex(3),
+ /* [799] */ MatcherIndex(33),
+ /* [800] */ MatcherIndex(30),
+ /* [801] */ MatcherIndex(0),
+ /* [802] */ MatcherIndex(4),
+ /* [803] */ MatcherIndex(3),
+ /* [804] */ MatcherIndex(33),
+ /* [805] */ MatcherIndex(31),
+ /* [806] */ MatcherIndex(0),
+ /* [807] */ MatcherIndex(2),
+ /* [808] */ MatcherIndex(4),
+ /* [809] */ MatcherIndex(29),
+ /* [810] */ MatcherIndex(7),
+ /* [811] */ MatcherIndex(30),
+ /* [812] */ MatcherIndex(1),
+ /* [813] */ MatcherIndex(29),
+ /* [814] */ MatcherIndex(2),
+ /* [815] */ MatcherIndex(0),
+ /* [816] */ MatcherIndex(14),
+ /* [817] */ MatcherIndex(29),
+ /* [818] */ MatcherIndex(2),
+ /* [819] */ MatcherIndex(0),
+ /* [820] */ MatcherIndex(15),
+ /* [821] */ MatcherIndex(25),
+ /* [822] */ MatcherIndex(2),
+ /* [823] */ MatcherIndex(3),
+ /* [824] */ MatcherIndex(0),
+ /* [825] */ MatcherIndex(25),
+ /* [826] */ MatcherIndex(1),
+ /* [827] */ MatcherIndex(3),
+ /* [828] */ MatcherIndex(0),
+ /* [829] */ MatcherIndex(25),
+ /* [830] */ MatcherIndex(2),
+ /* [831] */ MatcherIndex(1),
+ /* [832] */ MatcherIndex(0),
+ /* [833] */ MatcherIndex(25),
+ /* [834] */ MatcherIndex(1),
+ /* [835] */ MatcherIndex(2),
+ /* [836] */ MatcherIndex(0),
+ /* [837] */ MatcherIndex(29),
+ /* [838] */ MatcherIndex(1),
+ /* [839] */ MatcherIndex(0),
+ /* [840] */ MatcherIndex(15),
+ /* [841] */ MatcherIndex(29),
+ /* [842] */ MatcherIndex(2),
+ /* [843] */ MatcherIndex(1),
+ /* [844] */ MatcherIndex(15),
+ /* [845] */ MatcherIndex(29),
+ /* [846] */ MatcherIndex(8),
+ /* [847] */ MatcherIndex(2),
+ /* [848] */ MatcherIndex(14),
+ /* [849] */ MatcherIndex(29),
+ /* [850] */ MatcherIndex(8),
+ /* [851] */ MatcherIndex(1),
+ /* [852] */ MatcherIndex(15),
+ /* [853] */ MatcherIndex(24),
+ /* [854] */ MatcherIndex(0),
+ /* [855] */ MatcherIndex(1),
+ /* [856] */ MatcherIndex(24),
+ /* [857] */ MatcherIndex(2),
+ /* [858] */ MatcherIndex(0),
+ /* [859] */ MatcherIndex(24),
+ /* [860] */ MatcherIndex(0),
+ /* [861] */ MatcherIndex(7),
+ /* [862] */ MatcherIndex(24),
+ /* [863] */ MatcherIndex(3),
+ /* [864] */ MatcherIndex(0),
+ /* [865] */ MatcherIndex(24),
+ /* [866] */ MatcherIndex(3),
+ /* [867] */ MatcherIndex(1),
+ /* [868] */ MatcherIndex(24),
+ /* [869] */ MatcherIndex(3),
+ /* [870] */ MatcherIndex(2),
+ /* [871] */ MatcherIndex(24),
+ /* [872] */ MatcherIndex(4),
+ /* [873] */ MatcherIndex(0),
+ /* [874] */ MatcherIndex(24),
+ /* [875] */ MatcherIndex(4),
+ /* [876] */ MatcherIndex(1),
+ /* [877] */ MatcherIndex(24),
+ /* [878] */ MatcherIndex(4),
+ /* [879] */ MatcherIndex(2),
+ /* [880] */ MatcherIndex(24),
+ /* [881] */ MatcherIndex(4),
+ /* [882] */ MatcherIndex(3),
+ /* [883] */ MatcherIndex(24),
+ /* [884] */ MatcherIndex(0),
+ /* [885] */ MatcherIndex(2),
+ /* [886] */ MatcherIndex(24),
+ /* [887] */ MatcherIndex(2),
+ /* [888] */ MatcherIndex(7),
+ /* [889] */ MatcherIndex(12),
+ /* [890] */ MatcherIndex(8),
+ /* [891] */ MatcherIndex(12),
+ /* [892] */ MatcherIndex(4),
+ /* [893] */ MatcherIndex(12),
+ /* [894] */ MatcherIndex(1),
+ /* [895] */ MatcherIndex(13),
+ /* [896] */ MatcherIndex(1),
+ /* [897] */ MatcherIndex(12),
+ /* [898] */ MatcherIndex(10),
+ /* [899] */ MatcherIndex(12),
+ /* [900] */ MatcherIndex(3),
+ /* [901] */ MatcherIndex(12),
+ /* [902] */ MatcherIndex(2),
+ /* [903] */ MatcherIndex(12),
+ /* [904] */ MatcherIndex(11),
+ /* [905] */ MatcherIndex(13),
+ /* [906] */ MatcherIndex(11),
+ /* [907] */ MatcherIndex(13),
+ /* [908] */ MatcherIndex(2),
+ /* [909] */ MatcherIndex(12),
+ /* [910] */ MatcherIndex(0),
+ /* [911] */ MatcherIndex(13),
+ /* [912] */ MatcherIndex(0),
+ /* [913] */ MatcherIndex(32),
+ /* [914] */ MatcherIndex(0),
+ /* [915] */ MatcherIndex(19),
+ /* [916] */ MatcherIndex(0),
+ /* [917] */ MatcherIndex(35),
+ /* [918] */ MatcherIndex(34),
+ /* [919] */ MatcherIndex(36),
+ /* [920] */ MatcherIndex(39),
+ /* [921] */ MatcherIndex(38),
+ /* [922] */ MatcherIndex(9),
+ /* [923] */ MatcherIndex(37),
+ /* [924] */ MatcherIndex(40),
};
static_assert(MatcherIndicesIndex::CanIndex(kMatcherIndices),
@@ -2082,22 +2200,22 @@
{
/* [0] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(291),
+ /* matcher_indices */ MatcherIndicesIndex(778),
},
{
/* [1] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [2] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [3] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [4] */
@@ -2117,787 +2235,787 @@
{
/* [7] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [8] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(817),
},
{
/* [9] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [10] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(330),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [11] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [12] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [13] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [14] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [15] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [16] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(44),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [17] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(44),
},
{
/* [18] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [19] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [20] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [21] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [22] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(54),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [23] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(55),
},
{
/* [24] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [25] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [26] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [27] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [28] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(154),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [29] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(155),
},
{
/* [30] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [31] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [32] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [33] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(482),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [34] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(0),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [35] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [36] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [37] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [38] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [39] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [40] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(11),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [41] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [42] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [43] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [44] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [45] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [46] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(0),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [47] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [48] */
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(889),
+ },
+ {
+ /* [49] */
/* usage */ core::ParameterUsage::kDref,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [49] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
/* [50] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(452),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [51] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(11),
+ /* matcher_indices */ MatcherIndicesIndex(891),
},
{
/* [52] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [53] */
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(782),
+ },
+ {
+ /* [54] */
/* usage */ core::ParameterUsage::kDref,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [54] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
/* [55] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(452),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [56] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(44),
+ /* matcher_indices */ MatcherIndicesIndex(891),
},
{
/* [57] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(44),
},
{
/* [58] */
- /* usage */ core::ParameterUsage::kComponent,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [59] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* usage */ core::ParameterUsage::kComponent,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [60] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(468),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [61] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(64),
+ /* matcher_indices */ MatcherIndicesIndex(897),
},
{
/* [62] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(65),
},
{
/* [63] */
- /* usage */ core::ParameterUsage::kComponent,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [64] */
+ /* usage */ core::ParameterUsage::kComponent,
+ /* matcher_indices */ MatcherIndicesIndex(54),
+ },
+ {
+ /* [65] */
/* usage */ core::ParameterUsage::kImageOperands,
/* matcher_indices */ MatcherIndicesIndex(8),
},
{
- /* [65] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(470),
- },
- {
/* [66] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(94),
+ /* matcher_indices */ MatcherIndicesIndex(899),
},
{
/* [67] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(95),
},
{
/* [68] */
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(889),
+ },
+ {
+ /* [69] */
/* usage */ core::ParameterUsage::kComponent,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [69] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
/* [70] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [71] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(104),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [72] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(105),
},
{
/* [73] */
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(782),
+ },
+ {
+ /* [74] */
/* usage */ core::ParameterUsage::kComponent,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [74] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
/* [75] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [76] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(44),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [77] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(44),
},
{
/* [78] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [79] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [80] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [81] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(54),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [82] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(55),
},
{
/* [83] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [84] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [85] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [86] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(154),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [87] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(155),
},
{
/* [88] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [89] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [90] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(482),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [91] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(124),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [92] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(125),
},
{
/* [93] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [94] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [95] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [96] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(44),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [97] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(44),
},
{
/* [98] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [99] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [100] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [101] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(134),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [102] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(135),
},
{
/* [103] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [104] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [105] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [106] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(144),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [107] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(145),
},
{
/* [108] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [109] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [110] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [111] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(164),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [112] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(165),
},
{
/* [113] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [114] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [115] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [116] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(174),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [117] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(175),
},
{
/* [118] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [119] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [120] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [121] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(0),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [122] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [123] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [124] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [125] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [126] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(11),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [127] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [128] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [129] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [130] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [131] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(0),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [132] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [133] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [134] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [135] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [136] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(11),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [137] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [138] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [139] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [140] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [141] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [142] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(185),
},
{
/* [143] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [144] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [145] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [146] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(204),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [147] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(205),
},
{
/* [148] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [149] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [150] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [151] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(194),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [152] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(195),
},
{
/* [153] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [154] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [155] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [156] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(214),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [157] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(215),
},
{
/* [158] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [159] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [160] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [161] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(362),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [162] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(302),
+ /* matcher_indices */ MatcherIndicesIndex(849),
},
{
/* [163] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(43),
+ /* matcher_indices */ MatcherIndicesIndex(789),
},
{
/* [164] */
@@ -2912,952 +3030,952 @@
{
/* [166] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(291),
+ /* matcher_indices */ MatcherIndicesIndex(43),
},
{
/* [167] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(778),
},
{
/* [168] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [169] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [170] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(330),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [171] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(817),
},
{
/* [172] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [173] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [174] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(22),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [175] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(22),
},
{
/* [176] */
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(782),
+ },
+ {
+ /* [177] */
/* usage */ core::ParameterUsage::kDref,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [177] */
+ /* [178] */
/* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
- /* [178] */
+ /* [179] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(33),
},
{
- /* [179] */
+ /* [180] */
/* usage */ core::ParameterUsage::kCoords,
/* matcher_indices */ MatcherIndicesIndex(9),
},
{
- /* [180] */
+ /* [181] */
/* usage */ core::ParameterUsage::kDref,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [181] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
/* [182] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(454),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [183] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(225),
},
{
/* [184] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [185] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [186] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(456),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [187] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(234),
},
{
/* [188] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [189] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [190] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(460),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [191] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(462),
+ /* matcher_indices */ MatcherIndicesIndex(66),
},
{
/* [192] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(895),
},
{
/* [193] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [194] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(464),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [195] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(462),
+ /* matcher_indices */ MatcherIndicesIndex(243),
},
{
/* [196] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(895),
},
{
/* [197] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [198] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(466),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [199] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(252),
},
{
/* [200] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [201] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [202] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(511),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [203] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(96),
},
{
/* [204] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [205] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [206] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(512),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [207] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(462),
+ /* matcher_indices */ MatcherIndicesIndex(106),
},
{
/* [208] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(895),
},
{
/* [209] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [210] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(513),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [211] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(261),
},
{
/* [212] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [213] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [214] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(54),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [215] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(55),
},
{
/* [216] */
- /* usage */ core::ParameterUsage::kComponent,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [217] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* usage */ core::ParameterUsage::kComponent,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [218] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(74),
- },
- {
- /* [219] */
- /* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
- },
- {
- /* [220] */
- /* usage */ core::ParameterUsage::kComponent,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
- /* [221] */
/* usage */ core::ParameterUsage::kImageOperands,
/* matcher_indices */ MatcherIndicesIndex(8),
},
{
- /* [222] */
+ /* [219] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(84),
+ /* matcher_indices */ MatcherIndicesIndex(75),
+ },
+ {
+ /* [220] */
+ /* usage */ core::ParameterUsage::kCoords,
+ /* matcher_indices */ MatcherIndicesIndex(782),
+ },
+ {
+ /* [221] */
+ /* usage */ core::ParameterUsage::kComponent,
+ /* matcher_indices */ MatcherIndicesIndex(54),
+ },
+ {
+ /* [222] */
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [223] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(85),
+ },
+ {
+ /* [224] */
/* usage */ core::ParameterUsage::kCoords,
/* matcher_indices */ MatcherIndicesIndex(9),
},
{
- /* [224] */
+ /* [225] */
/* usage */ core::ParameterUsage::kComponent,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
- /* [225] */
+ /* [226] */
/* usage */ core::ParameterUsage::kImageOperands,
/* matcher_indices */ MatcherIndicesIndex(8),
},
{
- /* [226] */
+ /* [227] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(0),
},
{
- /* [227] */
+ /* [228] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
- /* [228] */
+ /* [229] */
/* usage */ core::ParameterUsage::kComponent,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [229] */
+ /* [230] */
/* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
- /* [230] */
+ /* [231] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
- /* [231] */
+ /* [232] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
- /* [232] */
+ /* [233] */
/* usage */ core::ParameterUsage::kComponent,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [233] */
+ /* [234] */
/* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
- /* [234] */
+ /* [235] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(22),
},
{
- /* [235] */
+ /* [236] */
/* usage */ core::ParameterUsage::kCoords,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
- /* [236] */
+ /* [237] */
/* usage */ core::ParameterUsage::kComponent,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [237] */
+ /* [238] */
/* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
- /* [238] */
+ /* [239] */
/* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(33),
},
{
- /* [239] */
+ /* [240] */
/* usage */ core::ParameterUsage::kCoords,
/* matcher_indices */ MatcherIndicesIndex(9),
},
{
- /* [240] */
+ /* [241] */
/* usage */ core::ParameterUsage::kComponent,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [241] */
- /* usage */ core::ParameterUsage::kImageOperands,
- /* matcher_indices */ MatcherIndicesIndex(192),
- },
- {
/* [242] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(124),
+ /* usage */ core::ParameterUsage::kImageOperands,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [243] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(125),
},
{
/* [244] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [245] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [246] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(44),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [247] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(44),
},
{
/* [248] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [249] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [250] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(134),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [251] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(135),
},
{
/* [252] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [253] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [254] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(54),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [255] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(55),
},
{
/* [256] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [257] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [258] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(144),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [259] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(145),
},
{
/* [260] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [261] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [262] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(154),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [263] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(155),
},
{
/* [264] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [265] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(482),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [266] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(164),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [267] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(165),
},
{
/* [268] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [269] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [270] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(174),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [271] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(175),
},
{
/* [272] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [273] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [274] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(0),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [275] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [276] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [277] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [278] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(11),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [279] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [280] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [281] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [282] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(184),
+ /* matcher_indices */ MatcherIndicesIndex(893),
},
{
/* [283] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(450),
+ /* matcher_indices */ MatcherIndicesIndex(185),
},
{
/* [284] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(889),
},
{
/* [285] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [286] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(204),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [287] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(205),
},
{
/* [288] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [289] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [290] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(194),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [291] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(295),
+ /* matcher_indices */ MatcherIndicesIndex(195),
},
{
/* [292] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(782),
},
{
/* [293] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [294] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(214),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [295] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(215),
},
{
/* [296] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [297] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [298] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(381),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [299] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(603),
},
{
/* [300] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [301] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [302] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(384),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [303] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(613),
},
{
/* [304] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(31),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [305] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(31),
},
{
/* [306] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(387),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [307] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(622),
},
{
/* [308] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(42),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [309] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(42),
},
{
/* [310] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(390),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [311] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(486),
+ /* matcher_indices */ MatcherIndicesIndex(631),
},
{
/* [312] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(909),
},
{
/* [313] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [314] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(393),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [315] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(486),
+ /* matcher_indices */ MatcherIndicesIndex(640),
},
{
/* [316] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(31),
+ /* matcher_indices */ MatcherIndicesIndex(909),
},
{
/* [317] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(31),
},
{
/* [318] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(396),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [319] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(486),
+ /* matcher_indices */ MatcherIndicesIndex(649),
},
{
/* [320] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(42),
+ /* matcher_indices */ MatcherIndicesIndex(909),
},
{
/* [321] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(42),
},
{
/* [322] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(399),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [323] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(488),
+ /* matcher_indices */ MatcherIndicesIndex(658),
},
{
/* [324] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(911),
},
{
/* [325] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [326] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(402),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [327] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(488),
+ /* matcher_indices */ MatcherIndicesIndex(667),
},
{
/* [328] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(31),
+ /* matcher_indices */ MatcherIndicesIndex(911),
},
{
/* [329] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(31),
},
{
/* [330] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(405),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [331] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(488),
+ /* matcher_indices */ MatcherIndicesIndex(676),
},
{
/* [332] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(42),
+ /* matcher_indices */ MatcherIndicesIndex(911),
},
{
/* [333] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(42),
},
{
/* [334] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(408),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [335] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(488),
+ /* matcher_indices */ MatcherIndicesIndex(685),
},
{
/* [336] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(9),
+ /* matcher_indices */ MatcherIndicesIndex(911),
},
{
/* [337] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(9),
},
{
/* [338] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(411),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [339] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(488),
+ /* matcher_indices */ MatcherIndicesIndex(694),
},
{
/* [340] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(31),
+ /* matcher_indices */ MatcherIndicesIndex(911),
},
{
/* [341] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(31),
},
{
/* [342] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(414),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [343] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(488),
+ /* matcher_indices */ MatcherIndicesIndex(703),
},
{
/* [344] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(42),
+ /* matcher_indices */ MatcherIndicesIndex(911),
},
{
/* [345] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(42),
},
{
/* [346] */
- /* usage */ core::ParameterUsage::kBase,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [347] */
- /* usage */ core::ParameterUsage::kInsert,
+ /* usage */ core::ParameterUsage::kBase,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [348] */
- /* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kInsert,
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [349] */
- /* usage */ core::ParameterUsage::kCount,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kOffset,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [350] */
- /* usage */ core::ParameterUsage::kBase,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* usage */ core::ParameterUsage::kCount,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [351] */
- /* usage */ core::ParameterUsage::kInsert,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* usage */ core::ParameterUsage::kBase,
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [352] */
- /* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kInsert,
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [353] */
- /* usage */ core::ParameterUsage::kCount,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kOffset,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [354] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(358),
+ /* usage */ core::ParameterUsage::kCount,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [355] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(43),
+ /* matcher_indices */ MatcherIndicesIndex(845),
},
{
/* [356] */
@@ -3872,542 +3990,647 @@
{
/* [358] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(312),
+ /* matcher_indices */ MatcherIndicesIndex(43),
},
{
/* [359] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(317),
+ /* matcher_indices */ MatcherIndicesIndex(799),
},
{
/* [360] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(307),
+ /* matcher_indices */ MatcherIndicesIndex(804),
},
{
/* [361] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(43),
+ /* matcher_indices */ MatcherIndicesIndex(794),
},
{
/* [362] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(326),
+ /* matcher_indices */ MatcherIndicesIndex(43),
},
{
/* [363] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(813),
},
{
/* [364] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [365] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(369),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [366] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(486),
},
{
/* [367] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [368] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(372),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [369] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(472),
+ /* matcher_indices */ MatcherIndicesIndex(495),
},
{
/* [370] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [371] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(375),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [372] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(482),
+ /* matcher_indices */ MatcherIndicesIndex(504),
},
{
/* [373] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [374] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(378),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [375] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(482),
+ /* matcher_indices */ MatcherIndicesIndex(513),
},
{
/* [376] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(52),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [377] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(114),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [378] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* matcher_indices */ MatcherIndicesIndex(522),
},
{
/* [379] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [380] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(323),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [381] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(531),
},
{
/* [382] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [383] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(420),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [384] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(366),
+ /* matcher_indices */ MatcherIndicesIndex(540),
},
{
/* [385] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(366),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [386] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(444),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [387] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(435),
+ /* matcher_indices */ MatcherIndicesIndex(549),
},
{
/* [388] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(438),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [389] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(441),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [390] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* matcher_indices */ MatcherIndicesIndex(558),
},
{
/* [391] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [392] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [393] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* matcher_indices */ MatcherIndicesIndex(567),
},
{
/* [394] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [395] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [396] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(342),
+ /* matcher_indices */ MatcherIndicesIndex(576),
},
{
/* [397] */
- /* usage */ core::ParameterUsage::kBase,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [398] */
- /* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [399] */
- /* usage */ core::ParameterUsage::kCount,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(585),
},
{
/* [400] */
- /* usage */ core::ParameterUsage::kBase,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(907),
},
{
/* [401] */
- /* usage */ core::ParameterUsage::kOffset,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(52),
},
{
/* [402] */
- /* usage */ core::ParameterUsage::kCount,
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(115),
},
{
/* [403] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(322),
+ /* matcher_indices */ MatcherIndicesIndex(2),
},
{
/* [404] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [405] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(456),
+ /* matcher_indices */ MatcherIndicesIndex(810),
},
{
/* [406] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [407] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(460),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [408] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(859),
},
{
/* [409] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(464),
+ /* matcher_indices */ MatcherIndicesIndex(853),
},
{
/* [410] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(853),
},
{
/* [411] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(478),
+ /* matcher_indices */ MatcherIndicesIndex(883),
},
{
/* [412] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(874),
},
{
/* [413] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(480),
+ /* matcher_indices */ MatcherIndicesIndex(877),
},
{
/* [414] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(880),
},
{
/* [415] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(511),
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [416] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [417] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(512),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [418] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [419] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(514),
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [420] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [421] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(515),
+ /* matcher_indices */ MatcherIndicesIndex(829),
},
{
/* [422] */
- /* usage */ core::ParameterUsage::kNone,
+ /* usage */ core::ParameterUsage::kBase,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [423] */
- /* usage */ core::ParameterUsage::kInputAttachment,
- /* matcher_indices */ MatcherIndicesIndex(484),
+ /* usage */ core::ParameterUsage::kOffset,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [424] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(458),
+ /* usage */ core::ParameterUsage::kCount,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [425] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(338),
+ /* usage */ core::ParameterUsage::kBase,
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [426] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(342),
+ /* usage */ core::ParameterUsage::kOffset,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [427] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(346),
+ /* usage */ core::ParameterUsage::kCount,
+ /* matcher_indices */ MatcherIndicesIndex(917),
},
{
/* [428] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(21),
+ /* matcher_indices */ MatcherIndicesIndex(809),
},
{
/* [429] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(346),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [430] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* matcher_indices */ MatcherIndicesIndex(378),
},
{
/* [431] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(417),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [432] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(287),
+ /* matcher_indices */ MatcherIndicesIndex(387),
},
{
/* [433] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(492),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [434] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(396),
},
{
/* [435] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(494),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [436] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(405),
},
{
/* [437] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(496),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [438] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(414),
},
{
/* [439] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(498),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [440] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(423),
},
{
/* [441] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(500),
+ /* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [442] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(432),
},
{
/* [443] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(502),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [444] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(8),
+ /* matcher_indices */ MatcherIndicesIndex(441),
},
{
/* [445] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(511),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [446] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(450),
},
{
/* [447] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(512),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [448] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(459),
},
{
/* [449] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(514),
+ /* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [450] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(594),
},
{
/* [451] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(515),
+ /* matcher_indices */ MatcherIndicesIndex(901),
},
{
/* [452] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(192),
+ /* matcher_indices */ MatcherIndicesIndex(825),
},
{
/* [453] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(426),
+ /* matcher_indices */ MatcherIndicesIndex(829),
},
{
/* [454] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(429),
+ /* matcher_indices */ MatcherIndicesIndex(833),
},
{
/* [455] */
- /* usage */ core::ParameterUsage::kX,
+ /* usage */ core::ParameterUsage::kNone,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [456] */
- /* usage */ core::ParameterUsage::kI,
- /* matcher_indices */ MatcherIndicesIndex(350),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(833),
},
{
/* [457] */
- /* usage */ core::ParameterUsage::kX,
- /* matcher_indices */ MatcherIndicesIndex(280),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [458] */
- /* usage */ core::ParameterUsage::kI,
- /* matcher_indices */ MatcherIndicesIndex(278),
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(856),
},
{
/* [459] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(774),
+ },
+ {
+ /* [460] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(865),
+ },
+ {
+ /* [461] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(868),
+ },
+ {
+ /* [462] */
/* usage */ core::ParameterUsage::kX,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
- /* [460] */
- /* usage */ core::ParameterUsage::kI,
- /* matcher_indices */ MatcherIndicesIndex(354),
- },
- {
- /* [461] */
- /* usage */ core::ParameterUsage::kX,
- /* matcher_indices */ MatcherIndicesIndex(417),
- },
- {
- /* [462] */
- /* usage */ core::ParameterUsage::kI,
- /* matcher_indices */ MatcherIndicesIndex(285),
- },
- {
/* [463] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(283),
+ /* usage */ core::ParameterUsage::kI,
+ /* matcher_indices */ MatcherIndicesIndex(837),
},
{
/* [464] */
- /* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(504),
+ /* usage */ core::ParameterUsage::kX,
+ /* matcher_indices */ MatcherIndicesIndex(768),
},
{
/* [465] */
+ /* usage */ core::ParameterUsage::kI,
+ /* matcher_indices */ MatcherIndicesIndex(766),
+ },
+ {
+ /* [466] */
+ /* usage */ core::ParameterUsage::kX,
+ /* matcher_indices */ MatcherIndicesIndex(21),
+ },
+ {
+ /* [467] */
+ /* usage */ core::ParameterUsage::kI,
+ /* matcher_indices */ MatcherIndicesIndex(841),
+ },
+ {
+ /* [468] */
+ /* usage */ core::ParameterUsage::kX,
+ /* matcher_indices */ MatcherIndicesIndex(856),
+ },
+ {
+ /* [469] */
+ /* usage */ core::ParameterUsage::kI,
+ /* matcher_indices */ MatcherIndicesIndex(772),
+ },
+ {
+ /* [470] */
/* usage */ core::ParameterUsage::kNone,
- /* matcher_indices */ MatcherIndicesIndex(506),
+ /* matcher_indices */ MatcherIndicesIndex(270),
+ },
+ {
+ /* [471] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(279),
+ },
+ {
+ /* [472] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(288),
+ },
+ {
+ /* [473] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(297),
+ },
+ {
+ /* [474] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(306),
+ },
+ {
+ /* [475] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(315),
+ },
+ {
+ /* [476] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(324),
+ },
+ {
+ /* [477] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(333),
+ },
+ {
+ /* [478] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(342),
+ },
+ {
+ /* [479] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(351),
+ },
+ {
+ /* [480] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(360),
+ },
+ {
+ /* [481] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(369),
+ },
+ {
+ /* [482] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(468),
+ },
+ {
+ /* [483] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(477),
+ },
+ {
+ /* [484] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(611),
+ },
+ {
+ /* [485] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(915),
+ },
+ {
+ /* [486] */
+ /* usage */ core::ParameterUsage::kNone,
+ /* matcher_indices */ MatcherIndicesIndex(374),
},
};
@@ -4424,7 +4647,7 @@
{
/* [1] */
/* name */ "B",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
@@ -4442,32 +4665,32 @@
{
/* [4] */
/* name */ "Z",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [5] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [6] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "D",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [7] */
- /* name */ "B",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [8] */
- /* name */ "Z",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [9] */
@@ -4477,650 +4700,650 @@
},
{
/* [10] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [11] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [12] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [13] */
- /* name */ "V",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [14] */
- /* name */ "N",
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [15] */
+ /* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [15] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
/* [16] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [17] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(297),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [18] */
- /* name */ "K",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(9),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [19] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(519),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [20] */
/* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [21] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "B",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [22] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(520),
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [23] */
- /* name */ "TR",
- /* matcher_indices */ MatcherIndicesIndex(520),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [24] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [25] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "L",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [26] */
- /* name */ "K",
+ /* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [27] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [28] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [29] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [30] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [31] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [32] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "V",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [33] */
- /* name */ "B",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [34] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [35] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(32),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [36] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(9),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(784),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [37] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [38] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [39] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(43),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [40] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(9),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [41] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [42] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [43] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(388),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [44] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(9),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [45] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [46] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [47] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [48] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [49] */
- /* name */ "Z",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [50] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
- /* [51] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [52] */
/* name */ "K",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [53] */
+ /* [38] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(923),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [39] */
/* name */ "C",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [40] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [41] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(924),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [42] */
+ /* name */ "TR",
+ /* matcher_indices */ MatcherIndicesIndex(924),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [43] */
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [44] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [45] */
+ /* name */ "K",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [46] */
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [47] */
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [48] */
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [49] */
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [50] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [51] */
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [52] */
+ /* name */ "B",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [53] */
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
/* [54] */
- /* name */ "R",
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [55] */
+ /* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [55] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(224),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
/* [56] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [57] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [58] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [57] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [58] */
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(32),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
/* [59] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(233),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(9),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [60] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [61] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [62] */
/* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* matcher_indices */ MatcherIndicesIndex(43),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [63] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(242),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(9),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [64] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [65] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [66] */
/* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* matcher_indices */ MatcherIndicesIndex(629),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [67] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(251),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(9),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [68] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [69] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [70] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [71] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(260),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [72] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* name */ "Z",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [73] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [74] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [74] */
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
/* [75] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(269),
+ /* name */ "D",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [76] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [77] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [78] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [79] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* [77] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [78] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
/* kind */ TemplateInfo::Kind::kType,
},
{
+ /* [79] */
+ /* name */ "K",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
/* [80] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [81] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [82] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(712),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [83] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(517),
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [84] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [85] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [86] */
- /* name */ "N",
+ /* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [86] */
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(721),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
/* [87] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(518),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [88] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [89] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [90] */
- /* name */ "B",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(730),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [91] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [92] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [93] */
- /* name */ "U",
- /* matcher_indices */ MatcherIndicesIndex(43),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [94] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(2),
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [95] */
+ /* [94] */
/* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* matcher_indices */ MatcherIndicesIndex(739),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [95] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [96] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [97] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [98] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(748),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [99] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [100] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [101] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [101] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* [102] */
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(757),
/* kind */ TemplateInfo::Kind::kType,
},
{
- /* [102] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
- },
- {
/* [103] */
- /* name */ "M",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [104] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(1),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [105] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [106] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [106] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
/* [107] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(12),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [108] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [109] */
- /* name */ "F",
+ /* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [110] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(23),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(921),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [111] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [112] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [113] */
- /* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(34),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [114] */
/* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(516),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [115] */
- /* name */ "F",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* matcher_indices */ MatcherIndicesIndex(922),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [116] */
+ /* [115] */
/* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [116] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [117] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "B",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
@@ -5132,139 +5355,277 @@
{
/* [119] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [120] */
- /* name */ "N",
- /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* kind */ TemplateInfo::Kind::kNumber,
+ /* name */ "U",
+ /* matcher_indices */ MatcherIndicesIndex(43),
+ /* kind */ TemplateInfo::Kind::kType,
},
{
/* [121] */
/* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(518),
+ /* matcher_indices */ MatcherIndicesIndex(2),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [122] */
/* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [123] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [124] */
- /* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(518),
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [125] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(919),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [126] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* name */ "C",
+ /* matcher_indices */ MatcherIndicesIndex(917),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [127] */
- /* name */ "N",
+ /* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [128] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [129] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
- /* [130] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
+ /* [130] */
+ /* name */ "M",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
/* [131] */
- /* name */ "R",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(1),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [132] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [133] */
- /* name */ "N",
+ /* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [134] */
/* name */ "I",
- /* matcher_indices */ MatcherIndicesIndex(43),
+ /* matcher_indices */ MatcherIndicesIndex(12),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [135] */
- /* name */ "A",
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [136] */
+ /* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
- /* [136] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(510),
- /* kind */ TemplateInfo::Kind::kType,
- },
- {
/* [137] */
- /* name */ "A",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(23),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [138] */
- /* name */ "C",
- /* matcher_indices */ MatcherIndicesIndex(508),
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(920),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [139] */
- /* name */ "D",
- /* matcher_indices */ MatcherIndicesIndex(508),
- /* kind */ TemplateInfo::Kind::kType,
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [140] */
- /* name */ "T",
- /* matcher_indices */ MatcherIndicesIndex(509),
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(34),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [141] */
/* name */ "S",
- /* matcher_indices */ MatcherIndicesIndex(518),
+ /* matcher_indices */ MatcherIndicesIndex(920),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [142] */
+ /* name */ "F",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [143] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [144] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [145] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [146] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [147] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [148] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(922),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [149] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [150] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [151] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(922),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [152] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [153] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [154] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [155] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(918),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [156] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [157] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [158] */
+ /* name */ "R",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [159] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(917),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [160] */
+ /* name */ "N",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [161] */
+ /* name */ "I",
+ /* matcher_indices */ MatcherIndicesIndex(43),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [162] */
+ /* name */ "A",
+ /* matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* kind */ TemplateInfo::Kind::kNumber,
+ },
+ {
+ /* [163] */
+ /* name */ "T",
+ /* matcher_indices */ MatcherIndicesIndex(918),
+ /* kind */ TemplateInfo::Kind::kType,
+ },
+ {
+ /* [164] */
+ /* name */ "S",
+ /* matcher_indices */ MatcherIndicesIndex(922),
/* kind */ TemplateInfo::Kind::kNumber,
},
};
@@ -5279,8 +5640,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(377),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(402),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5290,8 +5651,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(91),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(92),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5301,8 +5662,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(242),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(243),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5312,8 +5673,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(76),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(77),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5323,8 +5684,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(246),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(247),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5334,8 +5695,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(101),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(102),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5345,8 +5706,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(250),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(251),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5356,8 +5717,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(254),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(255),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5367,8 +5728,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(81),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(82),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5378,8 +5739,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(106),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(107),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5389,8 +5750,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(258),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(259),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5400,8 +5761,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(86),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(87),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5411,8 +5772,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(262),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(263),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5422,8 +5783,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(111),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(112),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5433,8 +5794,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(266),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(267),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5444,8 +5805,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(116),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(117),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5455,8 +5816,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(270),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(271),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5466,8 +5827,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(282),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(283),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5477,8 +5838,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(274),
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(275),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5488,8 +5849,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(290),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(291),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5499,8 +5860,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(286),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(287),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5510,8 +5871,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(278),
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(279),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5521,8 +5882,8 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(294),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(295),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5532,8 +5893,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(242),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(243),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5543,8 +5904,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(91),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(92),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5554,8 +5915,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(76),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(77),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5565,8 +5926,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(96),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(97),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5576,8 +5937,8 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(16),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(17),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5587,8 +5948,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(250),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(251),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5598,8 +5959,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(101),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(102),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5609,8 +5970,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(81),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(82),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5620,8 +5981,8 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(22),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(23),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5631,8 +5992,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(258),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(259),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5642,8 +6003,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(106),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(107),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5653,8 +6014,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(86),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(87),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5664,8 +6025,8 @@
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(47),
- /* parameters */ ParameterIndex(28),
+ /* templates */ TemplateIndex(70),
+ /* parameters */ ParameterIndex(29),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5675,8 +6036,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(266),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(267),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5686,8 +6047,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(111),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(112),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5697,8 +6058,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(270),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(271),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5708,8 +6069,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(98),
- /* parameters */ ParameterIndex(116),
+ /* templates */ TemplateIndex(125),
+ /* parameters */ ParameterIndex(117),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5719,8 +6080,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(282),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(283),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5730,8 +6091,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(121),
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(122),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5741,8 +6102,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(286),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(287),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5752,8 +6113,8 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(126),
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(127),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5763,8 +6124,8 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(290),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(291),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -5774,416 +6135,416 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(294),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(295),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [46] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(182),
- /* return_matcher_indices */ MatcherIndicesIndex(43),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(58),
+ /* parameters */ ParameterIndex(366),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [47] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(186),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(62),
+ /* parameters */ ParameterIndex(369),
+ /* return_matcher_indices */ MatcherIndicesIndex(31),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [48] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(190),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(66),
+ /* parameters */ ParameterIndex(372),
+ /* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [49] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(194),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(58),
+ /* parameters */ ParameterIndex(375),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [50] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(411),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(62),
+ /* parameters */ ParameterIndex(378),
+ /* return_matcher_indices */ MatcherIndicesIndex(31),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [51] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(413),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(66),
+ /* parameters */ ParameterIndex(381),
+ /* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [52] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(198),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(58),
+ /* parameters */ ParameterIndex(384),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [53] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 0,
- /* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(202),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(62),
+ /* parameters */ ParameterIndex(387),
+ /* return_matcher_indices */ MatcherIndicesIndex(31),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [54] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 0,
- /* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(206),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(66),
+ /* parameters */ ParameterIndex(390),
+ /* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [55] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 0,
- /* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(419),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(58),
+ /* parameters */ ParameterIndex(393),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [56] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 0,
- /* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(421),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(62),
+ /* parameters */ ParameterIndex(396),
+ /* return_matcher_indices */ MatcherIndicesIndex(31),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [57] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 0,
- /* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(210),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(66),
+ /* parameters */ ParameterIndex(399),
+ /* return_matcher_indices */ MatcherIndicesIndex(42),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [58] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(2),
- /* parameters */ ParameterIndex(365),
- /* return_matcher_indices */ MatcherIndicesIndex(43),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(15),
+ /* parameters */ ParameterIndex(450),
+ /* return_matcher_indices */ MatcherIndicesIndex(53),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [59] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(2),
- /* parameters */ ParameterIndex(368),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(50),
+ /* parameters */ ParameterIndex(57),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [60] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(2),
- /* parameters */ ParameterIndex(371),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(50),
+ /* parameters */ ParameterIndex(57),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [61] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(2),
- /* parameters */ ParameterIndex(374),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(50),
+ /* parameters */ ParameterIndex(215),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [62] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(35),
- /* parameters */ ParameterIndex(365),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(19),
+ /* parameters */ ParameterIndex(62),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [63] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(365),
- /* return_matcher_indices */ MatcherIndicesIndex(31),
+ /* templates */ TemplateIndex(50),
+ /* parameters */ ParameterIndex(219),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [64] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(43),
- /* parameters */ ParameterIndex(365),
- /* return_matcher_indices */ MatcherIndicesIndex(42),
+ /* templates */ TemplateIndex(50),
+ /* parameters */ ParameterIndex(223),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [65] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(35),
- /* parameters */ ParameterIndex(368),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(51),
+ /* parameters */ ParameterIndex(227),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [66] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(368),
- /* return_matcher_indices */ MatcherIndicesIndex(31),
+ /* templates */ TemplateIndex(20),
+ /* parameters */ ParameterIndex(67),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [67] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(43),
- /* parameters */ ParameterIndex(368),
- /* return_matcher_indices */ MatcherIndicesIndex(42),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(51),
+ /* parameters */ ParameterIndex(231),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [68] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(35),
- /* parameters */ ParameterIndex(371),
+ /* templates */ TemplateIndex(20),
+ /* parameters */ ParameterIndex(72),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [69] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(371),
- /* return_matcher_indices */ MatcherIndicesIndex(31),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(51),
+ /* parameters */ ParameterIndex(235),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [70] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(43),
- /* parameters */ ParameterIndex(371),
- /* return_matcher_indices */ MatcherIndicesIndex(42),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(51),
+ /* parameters */ ParameterIndex(239),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [71] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(35),
- /* parameters */ ParameterIndex(374),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(122),
+ /* parameters */ ParameterIndex(470),
+ /* return_matcher_indices */ MatcherIndicesIndex(43),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [72] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(39),
- /* parameters */ ParameterIndex(374),
- /* return_matcher_indices */ MatcherIndicesIndex(31),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(122),
+ /* parameters */ ParameterIndex(471),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [73] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(43),
- /* parameters */ ParameterIndex(374),
- /* return_matcher_indices */ MatcherIndicesIndex(42),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(122),
+ /* parameters */ ParameterIndex(472),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [74] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(423),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(122),
+ /* parameters */ ParameterIndex(473),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [75] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(31),
- /* parameters */ ParameterIndex(56),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(122),
+ /* parameters */ ParameterIndex(474),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [76] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(31),
- /* parameters */ ParameterIndex(56),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(122),
+ /* parameters */ ParameterIndex(475),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [77] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(31),
- /* parameters */ ParameterIndex(214),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* templates */ TemplateIndex(54),
+ /* parameters */ ParameterIndex(476),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [78] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 5,
- /* templates */ TemplateIndex(5),
- /* parameters */ ParameterIndex(61),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(9),
+ /* parameters */ ParameterIndex(477),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [79] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(31),
- /* parameters */ ParameterIndex(218),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(9),
+ /* parameters */ ParameterIndex(478),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [80] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(31),
- /* parameters */ ParameterIndex(222),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(9),
+ /* parameters */ ParameterIndex(479),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [81] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(32),
- /* parameters */ ParameterIndex(226),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(9),
+ /* parameters */ ParameterIndex(480),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [82] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(6),
- /* parameters */ ParameterIndex(66),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(8),
+ /* parameters */ ParameterIndex(481),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6191,21 +6552,21 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(32),
- /* parameters */ ParameterIndex(230),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(299),
+ /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [84] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(6),
- /* parameters */ ParameterIndex(71),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(303),
+ /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6213,10 +6574,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(32),
- /* parameters */ ParameterIndex(234),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(307),
+ /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6224,10 +6585,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(32),
- /* parameters */ ParameterIndex(238),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(311),
+ /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6235,9 +6596,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(298),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(315),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6246,9 +6607,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(302),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(319),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6257,9 +6618,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(306),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(323),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6268,9 +6629,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(310),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(327),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6279,9 +6640,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(314),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(331),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6290,9 +6651,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(318),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(335),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6301,9 +6662,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(322),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(339),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6312,54 +6673,54 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(326),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(74),
+ /* parameters */ ParameterIndex(343),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [95] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(330),
- /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(24),
+ /* parameters */ ParameterIndex(430),
+ /* return_matcher_indices */ MatcherIndicesIndex(43),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [96] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(334),
- /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(24),
+ /* parameters */ ParameterIndex(432),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [97] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(338),
- /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(24),
+ /* parameters */ ParameterIndex(434),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [98] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(138),
- /* parameters */ ParameterIndex(342),
- /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(24),
+ /* parameters */ ParameterIndex(436),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6367,10 +6728,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(136),
- /* parameters */ ParameterIndex(182),
- /* return_matcher_indices */ MatcherIndicesIndex(43),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(24),
+ /* parameters */ ParameterIndex(438),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6378,10 +6739,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(136),
- /* parameters */ ParameterIndex(405),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(24),
+ /* parameters */ ParameterIndex(440),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6389,10 +6750,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(136),
- /* parameters */ ParameterIndex(407),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(25),
+ /* parameters */ ParameterIndex(442),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6400,10 +6761,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(136),
- /* parameters */ ParameterIndex(409),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(25),
+ /* parameters */ ParameterIndex(444),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6411,10 +6772,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(136),
- /* parameters */ ParameterIndex(411),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(25),
+ /* parameters */ ParameterIndex(446),
+ /* return_matcher_indices */ MatcherIndicesIndex(903),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6422,54 +6783,54 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(136),
- /* parameters */ ParameterIndex(413),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(25),
+ /* parameters */ ParameterIndex(448),
+ /* return_matcher_indices */ MatcherIndicesIndex(905),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [105] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(89),
- /* parameters */ ParameterIndex(415),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(82),
+ /* parameters */ ParameterIndex(6),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [106] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(89),
- /* parameters */ ParameterIndex(417),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(86),
+ /* parameters */ ParameterIndex(6),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [107] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(89),
- /* parameters */ ParameterIndex(419),
- /* return_matcher_indices */ MatcherIndicesIndex(474),
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(90),
+ /* parameters */ ParameterIndex(6),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [108] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(89),
- /* parameters */ ParameterIndex(421),
- /* return_matcher_indices */ MatcherIndicesIndex(476),
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(94),
+ /* parameters */ ParameterIndex(6),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6478,9 +6839,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
- /* templates */ TemplateIndex(55),
- /* parameters */ ParameterIndex(433),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* templates */ TemplateIndex(98),
+ /* parameters */ ParameterIndex(6),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6489,9 +6850,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
- /* templates */ TemplateIndex(59),
- /* parameters */ ParameterIndex(435),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* templates */ TemplateIndex(102),
+ /* parameters */ ParameterIndex(6),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6499,10 +6860,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(63),
- /* parameters */ ParameterIndex(437),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(131),
+ /* parameters */ ParameterIndex(13),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6510,10 +6871,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(67),
- /* parameters */ ParameterIndex(439),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(134),
+ /* parameters */ ParameterIndex(13),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6521,10 +6882,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(71),
- /* parameters */ ParameterIndex(441),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(137),
+ /* parameters */ ParameterIndex(13),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6532,54 +6893,54 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(75),
- /* parameters */ ParameterIndex(443),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(140),
+ /* parameters */ ParameterIndex(13),
+ /* return_matcher_indices */ MatcherIndicesIndex(913),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [115] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(104),
- /* parameters */ ParameterIndex(445),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_parameters */ 4,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(11),
+ /* parameters */ ParameterIndex(183),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [116] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(107),
- /* parameters */ ParameterIndex(447),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_parameters */ 4,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(11),
+ /* parameters */ ParameterIndex(187),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [117] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(110),
- /* parameters */ ParameterIndex(449),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_parameters */ 4,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(11),
+ /* parameters */ ParameterIndex(191),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [118] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(113),
- /* parameters */ ParameterIndex(451),
- /* return_matcher_indices */ MatcherIndicesIndex(490),
+ /* num_parameters */ 4,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(11),
+ /* parameters */ ParameterIndex(195),
+ /* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6587,9 +6948,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(27),
- /* parameters */ ParameterIndex(182),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(11),
+ /* parameters */ ParameterIndex(199),
/* return_matcher_indices */ MatcherIndicesIndex(20),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6599,9 +6960,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(27),
- /* parameters */ ParameterIndex(186),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* templates */ TemplateIndex(46),
+ /* parameters */ ParameterIndex(203),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6610,9 +6971,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(27),
- /* parameters */ ParameterIndex(190),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* templates */ TemplateIndex(46),
+ /* parameters */ ParameterIndex(207),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6621,9 +6982,9 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(27),
- /* parameters */ ParameterIndex(194),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* templates */ TemplateIndex(46),
+ /* parameters */ ParameterIndex(211),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6631,20 +6992,20 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(27),
- /* parameters */ ParameterIndex(198),
- /* return_matcher_indices */ MatcherIndicesIndex(20),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(0),
+ /* parameters */ ParameterIndex(47),
+ /* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [124] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(95),
- /* parameters */ ParameterIndex(202),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(0),
+ /* parameters */ ParameterIndex(47),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6654,19 +7015,19 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(95),
- /* parameters */ ParameterIndex(206),
+ /* templates */ TemplateIndex(0),
+ /* parameters */ ParameterIndex(52),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [126] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(95),
- /* parameters */ ParameterIndex(210),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(0),
+ /* parameters */ ParameterIndex(52),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6677,18 +7038,18 @@
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(46),
+ /* parameters */ ParameterIndex(175),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [128] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 5,
+ /* num_templates */ 3,
/* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(46),
+ /* parameters */ ParameterIndex(179),
/* return_matcher_indices */ MatcherIndicesIndex(9),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6697,10 +7058,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(51),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(142),
+ /* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6708,10 +7069,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
- /* num_templates */ 5,
- /* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(51),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(132),
+ /* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6719,21 +7080,21 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(174),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(147),
+ /* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [132] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(0),
- /* parameters */ ParameterIndex(178),
- /* return_matcher_indices */ MatcherIndicesIndex(9),
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(137),
+ /* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -6742,63 +7103,63 @@
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(141),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(152),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [134] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(131),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(157),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [135] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(146),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(142),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [136] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(136),
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(35),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [137] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(151),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(147),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [138] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
+ /* num_parameters */ 6,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(156),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(47),
+ /* parameters */ ParameterIndex(41),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -6808,295 +7169,295 @@
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(141),
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(152),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [140] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 6,
+ /* num_parameters */ 5,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(34),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(126),
+ /* parameters */ ParameterIndex(157),
/* return_matcher_indices */ MatcherIndicesIndex(2),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [141] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(146),
- /* return_matcher_indices */ MatcherIndicesIndex(2),
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(484),
+ /* return_matcher_indices */ MatcherIndicesIndex(611),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [142] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 6,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(48),
- /* parameters */ ParameterIndex(40),
- /* return_matcher_indices */ MatcherIndicesIndex(2),
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(485),
+ /* return_matcher_indices */ MatcherIndicesIndex(915),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [143] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(151),
- /* return_matcher_indices */ MatcherIndicesIndex(2),
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(486),
+ /* return_matcher_indices */ MatcherIndicesIndex(374),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [144] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 5,
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(99),
- /* parameters */ ParameterIndex(156),
- /* return_matcher_indices */ MatcherIndicesIndex(2),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(0),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [145] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(463),
- /* return_matcher_indices */ MatcherIndicesIndex(283),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(363),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [146] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(464),
- /* return_matcher_indices */ MatcherIndicesIndex(504),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(167),
+ /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [147] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(465),
- /* return_matcher_indices */ MatcherIndicesIndex(506),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(171),
+ /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [148] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(0),
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(167),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [149] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(362),
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(171),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [150] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
- /* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(166),
- /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
- },
- {
- /* [151] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
- /* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(170),
- /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
- /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
- },
- {
- /* [152] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
- /* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(166),
- /* return_matcher_indices */ MatcherIndicesIndex(21),
- /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
- },
- {
- /* [153] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
- /* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(170),
- /* return_matcher_indices */ MatcherIndicesIndex(21),
- /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
- },
- {
- /* [154] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(92),
+ /* templates */ TemplateIndex(119),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
- /* [155] */
+ /* [151] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(10),
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(8),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
+ /* [152] */
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 3,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(110),
+ /* parameters */ ParameterIndex(405),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
+ /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
+ },
+ {
+ /* [153] */
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 3,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(109),
+ /* parameters */ ParameterIndex(408),
+ /* return_matcher_indices */ MatcherIndicesIndex(853),
+ /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
+ },
+ {
+ /* [154] */
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(4),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
+ /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
+ },
+ {
+ /* [155] */
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(33),
+ /* parameters */ ParameterIndex(409),
+ /* return_matcher_indices */ MatcherIndicesIndex(853),
+ /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
+ },
+ {
/* [156] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(83),
- /* parameters */ ParameterIndex(380),
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(29),
+ /* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [157] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
- /* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(82),
- /* parameters */ ParameterIndex(383),
- /* return_matcher_indices */ MatcherIndicesIndex(366),
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(143),
+ /* parameters */ ParameterIndex(459),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [158] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(4),
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(29),
+ /* parameters */ ParameterIndex(14),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [159] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
- /* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(14),
- /* parameters */ ParameterIndex(384),
- /* return_matcher_indices */ MatcherIndicesIndex(366),
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(106),
+ /* parameters */ ParameterIndex(460),
+ /* return_matcher_indices */ MatcherIndicesIndex(862),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [160] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 1,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(10),
- /* parameters */ ParameterIndex(1),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(29),
+ /* parameters */ ParameterIndex(14),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [161] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(116),
- /* parameters */ ParameterIndex(432),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* num_templates */ 5,
+ /* templates */ TemplateIndex(29),
+ /* parameters */ ParameterIndex(412),
+ /* return_matcher_indices */ MatcherIndicesIndex(871),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [162] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(10),
- /* parameters */ ParameterIndex(7),
+ /* num_parameters */ 3,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(4),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [163] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(79),
- /* parameters */ ParameterIndex(453),
- /* return_matcher_indices */ MatcherIndicesIndex(423),
+ /* num_parameters */ 3,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(415),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [164] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
- /* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(10),
- /* parameters */ ParameterIndex(7),
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(4),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [165] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
- /* num_explicit_templates */ 1,
- /* num_templates */ 5,
- /* templates */ TemplateIndex(10),
- /* parameters */ ParameterIndex(387),
- /* return_matcher_indices */ MatcherIndicesIndex(432),
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 0,
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(415),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7105,7 +7466,7 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
- /* templates */ TemplateIndex(15),
+ /* templates */ TemplateIndex(34),
/* parameters */ ParameterIndex(4),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -7116,9 +7477,9 @@
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(390),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(418),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7126,9 +7487,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(4),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(34),
+ /* parameters */ ParameterIndex(13),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -7137,32 +7498,32 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(390),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(33),
+ /* parameters */ ParameterIndex(410),
+ /* return_matcher_indices */ MatcherIndicesIndex(853),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [170] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(4),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(163),
+ /* parameters */ ParameterIndex(462),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [171] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(393),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(146),
+ /* parameters */ ParameterIndex(464),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7170,9 +7531,9 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(15),
- /* parameters */ ParameterIndex(6),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(149),
+ /* parameters */ ParameterIndex(466),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
@@ -7181,142 +7542,142 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(14),
- /* parameters */ ParameterIndex(385),
- /* return_matcher_indices */ MatcherIndicesIndex(366),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(111),
+ /* parameters */ ParameterIndex(468),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [174] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(140),
- /* parameters */ ParameterIndex(455),
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(347),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [175] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 4,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(119),
- /* parameters */ ParameterIndex(457),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(144),
+ /* parameters */ ParameterIndex(351),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [176] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(122),
- /* parameters */ ParameterIndex(459),
+ /* num_templates */ 1,
+ /* templates */ TemplateIndex(30),
+ /* parameters */ ParameterIndex(422),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [177] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(84),
- /* parameters */ ParameterIndex(461),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(144),
+ /* parameters */ ParameterIndex(425),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [178] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
- /* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(11),
- /* parameters */ ParameterIndex(346),
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(115),
+ /* parameters */ ParameterIndex(14),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [179] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 4,
- /* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(117),
- /* parameters */ ParameterIndex(350),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(115),
+ /* parameters */ ParameterIndex(460),
+ /* return_matcher_indices */ MatcherIndicesIndex(862),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [180] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 1,
- /* templates */ TemplateIndex(11),
- /* parameters */ ParameterIndex(397),
- /* return_matcher_indices */ MatcherIndicesIndex(21),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(116),
+ /* parameters */ ParameterIndex(13),
+ /* return_matcher_indices */ MatcherIndicesIndex(810),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [181] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(117),
- /* parameters */ ParameterIndex(400),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(116),
+ /* parameters */ ParameterIndex(458),
+ /* return_matcher_indices */ MatcherIndicesIndex(886),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [182] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(88),
- /* parameters */ ParameterIndex(7),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(152),
+ /* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [183] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 1,
/* num_explicit_templates */ 1,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(88),
- /* parameters */ ParameterIndex(453),
- /* return_matcher_indices */ MatcherIndicesIndex(423),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(152),
+ /* parameters */ ParameterIndex(459),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [184] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 0,
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(89),
- /* parameters */ ParameterIndex(6),
- /* return_matcher_indices */ MatcherIndicesIndex(323),
+ /* templates */ TemplateIndex(155),
+ /* parameters */ ParameterIndex(1),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [185] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 0,
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 1,
/* num_templates */ 3,
- /* templates */ TemplateIndex(89),
- /* parameters */ ParameterIndex(431),
- /* return_matcher_indices */ MatcherIndicesIndex(447),
+ /* templates */ TemplateIndex(155),
+ /* parameters */ ParameterIndex(459),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7325,7 +7686,7 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 2,
- /* templates */ TemplateIndex(125),
+ /* templates */ TemplateIndex(115),
/* parameters */ ParameterIndex(1),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
@@ -7336,42 +7697,42 @@
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 3,
- /* templates */ TemplateIndex(125),
- /* parameters */ ParameterIndex(432),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* templates */ TemplateIndex(158),
+ /* parameters */ ParameterIndex(459),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [188] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
- /* num_explicit_templates */ 1,
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(128),
- /* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(21),
+ /* templates */ TemplateIndex(161),
+ /* parameters */ ParameterIndex(428),
+ /* return_matcher_indices */ MatcherIndicesIndex(43),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [189] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
- /* num_explicit_templates */ 1,
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 3,
+ /* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(128),
- /* parameters */ ParameterIndex(432),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* templates */ TemplateIndex(119),
+ /* parameters */ ParameterIndex(8),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [190] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 1,
- /* num_explicit_templates */ 1,
+ /* num_parameters */ 2,
+ /* num_explicit_templates */ 0,
/* num_templates */ 2,
- /* templates */ TemplateIndex(88),
- /* parameters */ ParameterIndex(1),
- /* return_matcher_indices */ MatcherIndicesIndex(21),
+ /* templates */ TemplateIndex(33),
+ /* parameters */ ParameterIndex(409),
+ /* return_matcher_indices */ MatcherIndicesIndex(54),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7379,32 +7740,32 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(131),
- /* parameters */ ParameterIndex(432),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* num_templates */ 7,
+ /* templates */ TemplateIndex(4),
+ /* parameters */ ParameterIndex(482),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [192] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(134),
- /* parameters */ ParameterIndex(403),
- /* return_matcher_indices */ MatcherIndicesIndex(43),
+ /* num_parameters */ 1,
+ /* num_explicit_templates */ 1,
+ /* num_templates */ 7,
+ /* templates */ TemplateIndex(4),
+ /* parameters */ ParameterIndex(483),
+ /* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [193] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
+ /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
+ /* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(92),
- /* parameters */ ParameterIndex(10),
- /* return_matcher_indices */ MatcherIndicesIndex(21),
+ /* num_templates */ 4,
+ /* templates */ TemplateIndex(78),
+ /* parameters */ ParameterIndex(452),
+ /* return_matcher_indices */ MatcherIndicesIndex(821),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7412,10 +7773,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(14),
- /* parameters */ ParameterIndex(384),
- /* return_matcher_indices */ MatcherIndicesIndex(192),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(454),
+ /* return_matcher_indices */ MatcherIndicesIndex(833),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7423,10 +7784,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 4,
- /* templates */ TemplateIndex(51),
- /* parameters */ ParameterIndex(425),
- /* return_matcher_indices */ MatcherIndicesIndex(334),
+ /* num_templates */ 3,
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(456),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7435,9 +7796,9 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(427),
- /* return_matcher_indices */ MatcherIndicesIndex(346),
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(420),
+ /* return_matcher_indices */ MatcherIndicesIndex(856),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7445,10 +7806,10 @@
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(429),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* num_templates */ 2,
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(416),
+ /* return_matcher_indices */ MatcherIndicesIndex(768),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
@@ -7457,86 +7818,64 @@
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(395),
- /* return_matcher_indices */ MatcherIndicesIndex(417),
+ /* templates */ TemplateIndex(128),
+ /* parameters */ ParameterIndex(457),
+ /* return_matcher_indices */ MatcherIndicesIndex(829),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [199] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
+ /* num_parameters */ 3,
/* num_explicit_templates */ 0,
- /* num_templates */ 2,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(391),
- /* return_matcher_indices */ MatcherIndicesIndex(280),
+ /* num_templates */ 0,
+ /* templates */ TemplateIndex(/* invalid */),
+ /* parameters */ ParameterIndex(164),
+ /* return_matcher_indices */ MatcherIndicesIndex(32),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [200] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 2,
- /* num_explicit_templates */ 0,
- /* num_templates */ 3,
- /* templates */ TemplateIndex(101),
- /* parameters */ ParameterIndex(430),
- /* return_matcher_indices */ MatcherIndicesIndex(342),
- /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
- },
- {
- /* [201] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(163),
- /* return_matcher_indices */ MatcherIndicesIndex(32),
- /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
- },
- {
- /* [202] */
- /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
- /* num_parameters */ 3,
- /* num_explicit_templates */ 0,
- /* num_templates */ 0,
- /* templates */ TemplateIndex(/* invalid */),
- /* parameters */ ParameterIndex(163),
+ /* parameters */ ParameterIndex(164),
/* return_matcher_indices */ MatcherIndicesIndex(43),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
- /* [203] */
+ /* [201] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 1,
/* num_templates */ 5,
- /* templates */ TemplateIndex(17),
- /* parameters */ ParameterIndex(354),
+ /* templates */ TemplateIndex(36),
+ /* parameters */ ParameterIndex(355),
/* return_matcher_indices */ MatcherIndicesIndex(21),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
- /* [204] */
+ /* [202] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
- /* templates */ TemplateIndex(18),
- /* parameters */ ParameterIndex(161),
+ /* templates */ TemplateIndex(37),
+ /* parameters */ ParameterIndex(162),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
- /* [205] */
+ /* [203] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 5,
- /* templates */ TemplateIndex(22),
- /* parameters */ ParameterIndex(358),
- /* return_matcher_indices */ MatcherIndicesIndex(307),
+ /* templates */ TemplateIndex(41),
+ /* parameters */ ParameterIndex(359),
+ /* return_matcher_indices */ MatcherIndicesIndex(794),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
};
@@ -7549,116 +7888,116 @@
/* [0] */
/* fn array_length[I : u32, A : access](ptr<storage, struct_with_runtime_array, A>, I) -> u32 */
/* num overloads */ 1,
- /* overloads */ OverloadIndex(192),
+ /* overloads */ OverloadIndex(188),
},
{
/* [1] */
/* fn atomic_load[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U) -> T */
/* fn atomic_load[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, readable>, U, U) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(148),
+ /* overloads */ OverloadIndex(144),
},
{
/* [2] */
/* fn atomic_store[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) */
/* fn atomic_store[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(150),
+ /* overloads */ OverloadIndex(146),
},
{
/* [3] */
/* fn atomic_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [4] */
/* fn atomic_compare_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, U, T, T) -> T */
/* fn atomic_compare_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, U, T, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(154),
+ /* overloads */ OverloadIndex(150),
},
{
/* [5] */
/* fn atomic_i_add[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_i_add[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [6] */
/* fn atomic_i_sub[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_i_sub[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [7] */
/* fn atomic_s_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_s_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [8] */
/* fn atomic_s_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_s_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [9] */
/* fn atomic_u_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_u_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [10] */
/* fn atomic_u_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_u_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [11] */
/* fn atomic_and[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_and[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [12] */
/* fn atomic_or[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_or[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [13] */
/* fn atomic_xor[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */
/* fn atomic_xor[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(152),
+ /* overloads */ OverloadIndex(148),
},
{
/* [14] */
/* fn atomic_i_increment[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U) -> T */
/* num overloads */ 1,
- /* overloads */ OverloadIndex(193),
+ /* overloads */ OverloadIndex(189),
},
{
/* [15] */
/* fn atomic_i_decrement[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U) -> T */
/* num overloads */ 1,
- /* overloads */ OverloadIndex(193),
+ /* overloads */ OverloadIndex(189),
},
{
/* [16] */
/* fn dot[N : num, T : f32_f16](vec<N, T>, vec<N, T>) -> T */
/* num overloads */ 1,
- /* overloads */ OverloadIndex(194),
+ /* overloads */ OverloadIndex(190),
},
{
/* [17] */
@@ -7669,20 +8008,20 @@
/* fn image_dref_gather[D : f32, B : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: D, image_operands: B) -> vec4<f32> */
/* fn image_dref_gather[D : f32, B : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, dref: D, image_operands: B) -> vec4<f32> */
/* num overloads */ 6,
- /* overloads */ OverloadIndex(127),
+ /* overloads */ OverloadIndex(123),
},
{
/* [18] */
- /* fn image_fetch[T : fiu32, C : iu32, I : iu32, S : iu32](texture_1d<T>, C, I, S) -> vec4<T> */
- /* fn image_fetch[T : fiu32, C : iu32, I : iu32, S : iu32](texture_2d<T>, vec2<C>, I, S) -> vec4<T> */
- /* fn image_fetch[T : fiu32, C : iu32, I : iu32, S : iu32](texture_2d_array<T>, vec3<C>, I, S) -> vec4<T> */
- /* fn image_fetch[T : fiu32, C : iu32, I : iu32, S : iu32](texture_3d<T>, vec3<C>, I, S) -> vec4<T> */
- /* fn image_fetch[T : fiu32, C : iu32, I : iu32, S : iu32](texture_multisampled_2d<T>, vec2<C>, I, S) -> vec4<T> */
- /* fn image_fetch[I : iu32, C : iu32, S : iu32](texture_depth_2d, vec2<C>, I, S) -> vec4<f32> */
- /* fn image_fetch[I : iu32, C : iu32, S : iu32](texture_depth_2d_array, vec3<C>, I, S) -> vec4<f32> */
- /* fn image_fetch[I : iu32, C : iu32, S : iu32](texture_depth_multisampled_2d, vec2<C>, I, S) -> vec4<f32> */
+ /* fn image_fetch[T : fiu32, C : iu32, I : iu32, Z : iu32, F : texel_format](image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, C, I, Z) -> vec4<T> */
+ /* fn image_fetch[T : fiu32, C : iu32, I : iu32, Z : iu32, F : texel_format](image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<T> */
+ /* fn image_fetch[T : fiu32, C : iu32, I : iu32, Z : iu32, F : texel_format](image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>, vec3<C>, I, Z) -> vec4<T> */
+ /* fn image_fetch[T : fiu32, C : iu32, I : iu32, Z : iu32, F : texel_format](image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, vec3<C>, I, Z) -> vec4<T> */
+ /* fn image_fetch[T : fiu32, C : iu32, I : iu32, Z : iu32, F : texel_format](image<T, dim_2d, non_depth, non_arrayed, multi_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<T> */
+ /* fn image_fetch[I : iu32, C : iu32, Z : iu32, F : texel_format](image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<f32> */
+ /* fn image_fetch[I : iu32, C : iu32, Z : iu32, F : texel_format](image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>, vec3<C>, I, Z) -> vec4<f32> */
+ /* fn image_fetch[I : iu32, C : iu32, Z : iu32, F : texel_format](image<f32, dim_2d, is_depth, non_arrayed, multi_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<f32> */
/* num overloads */ 8,
- /* overloads */ OverloadIndex(119),
+ /* overloads */ OverloadIndex(115),
},
{
/* [19] */
@@ -7699,64 +8038,72 @@
/* fn image_gather[C : iu32, B : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: B) -> vec4<f32> */
/* fn image_gather[C : iu32, B : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, component: C, image_operands: B) -> vec4<f32> */
/* num overloads */ 12,
- /* overloads */ OverloadIndex(75),
+ /* overloads */ OverloadIndex(59),
},
{
/* [20] */
- /* fn image_query_size[T : fiu32](texture_1d<T>) -> u32 */
- /* fn image_query_size[T : fiu32](texture_2d<T>) -> vec2<u32> */
- /* fn image_query_size[T : fiu32](texture_2d_array<T>) -> vec3<u32> */
- /* fn image_query_size[T : fiu32](texture_3d<T>) -> vec3<u32> */
- /* fn image_query_size[T : fiu32](texture_cube<T>) -> vec2<u32> */
- /* fn image_query_size[T : fiu32](texture_cube_array<T>) -> vec3<u32> */
- /* fn image_query_size[T : fiu32](texture_multisampled_2d<T>) -> vec2<u32> */
- /* fn image_query_size(texture_depth_2d) -> vec2<u32> */
- /* fn image_query_size(texture_depth_2d_array) -> vec3<u32> */
- /* fn image_query_size(texture_depth_cube) -> vec2<u32> */
- /* fn image_query_size(texture_depth_cube_array) -> vec3<u32> */
- /* fn image_query_size(texture_depth_multisampled_2d) -> vec2<u32> */
- /* fn image_query_size[F : texel_format, A : access](texture_storage_1d<F, A>) -> u32 */
- /* fn image_query_size[F : texel_format, A : access](texture_storage_2d<F, A>) -> vec2<u32> */
- /* fn image_query_size[F : texel_format, A : access](texture_storage_2d_array<F, A>) -> vec3<u32> */
- /* fn image_query_size[F : texel_format, A : access](texture_storage_3d<F, A>) -> vec3<u32> */
- /* num overloads */ 16,
- /* overloads */ OverloadIndex(46),
+ /* fn image_query_size[T : fiu32, F : texel_format, A : access](image<T, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> u32 */
+ /* fn image_query_size[T : fiu32, F : texel_format, A : access](image<T, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32> */
+ /* fn image_query_size[T : fiu32, F : texel_format, A : access](image<T, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32> */
+ /* fn image_query_size[T : fiu32, F : texel_format, A : access](image<T, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32> */
+ /* fn image_query_size[T : fiu32, F : texel_format, A : access](image<T, dim_cube, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32> */
+ /* fn image_query_size[T : fiu32, F : texel_format, A : access](image<T, dim_cube, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32> */
+ /* fn image_query_size[T : fiu32, S : sampled, F : texel_format, A : access](image<T, dim_2d, non_depth, non_arrayed, multi_sampled, S, F, A>) -> vec2<u32> */
+ /* fn image_query_size[F : texel_format, A : access](image<f32, dim_2d, is_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32> */
+ /* fn image_query_size[F : texel_format, A : access](image<f32, dim_2d, is_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32> */
+ /* fn image_query_size[F : texel_format, A : access](image<f32, dim_cube, is_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32> */
+ /* fn image_query_size[F : texel_format, A : access](image<f32, dim_cube, is_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32> */
+ /* fn image_query_size[S : sampled, F : texel_format, A : access](image<f32, dim_2d, is_depth, non_arrayed, multi_sampled, S, F, A>) -> vec2<u32> */
+ /* num overloads */ 12,
+ /* overloads */ OverloadIndex(71),
},
{
/* [21] */
- /* fn image_query_size_lod[T : fiu32, A : iu32](texture_1d<T>, A) -> u32 */
- /* fn image_query_size_lod[T : fiu32, A : iu32](texture_2d<T>, A) -> vec2<u32> */
- /* fn image_query_size_lod[T : fiu32, A : iu32](texture_2d_array<T>, A) -> vec3<u32> */
- /* fn image_query_size_lod[T : fiu32, A : iu32](texture_3d<T>, A) -> vec3<u32> */
- /* fn image_query_size_lod[T : fiu32, A : iu32](texture_cube<T>, A) -> vec2<u32> */
- /* fn image_query_size_lod[T : fiu32, A : iu32](texture_cube_array<T>, A) -> vec3<u32> */
- /* fn image_query_size_lod[A : iu32](texture_depth_2d, A) -> vec2<u32> */
- /* fn image_query_size_lod[A : iu32](texture_depth_2d_array, A) -> vec3<u32> */
- /* fn image_query_size_lod[A : iu32](texture_depth_cube, A) -> vec2<u32> */
- /* fn image_query_size_lod[A : iu32](texture_depth_cube_array, A) -> vec3<u32> */
+ /* fn image_query_size_lod[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image<T, dim_1d, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> u32 */
+ /* fn image_query_size_lod[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image<T, dim_2d, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32> */
+ /* fn image_query_size_lod[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image<T, dim_2d, non_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32> */
+ /* fn image_query_size_lod[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image<T, dim_3d, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec3<u32> */
+ /* fn image_query_size_lod[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image<T, dim_cube, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32> */
+ /* fn image_query_size_lod[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image<T, dim_cube, non_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32> */
+ /* fn image_query_size_lod[L : iu32, S : sampled, F : texel_format, A : access](image<f32, dim_2d, is_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32> */
+ /* fn image_query_size_lod[L : iu32, S : sampled, F : texel_format, A : access](image<f32, dim_2d, is_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32> */
+ /* fn image_query_size_lod[L : iu32, S : sampled, F : texel_format, A : access](image<f32, dim_cube, is_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32> */
+ /* fn image_query_size_lod[L : iu32, S : sampled, F : texel_format, A : access](image<f32, dim_cube, is_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32> */
/* num overloads */ 10,
- /* overloads */ OverloadIndex(99),
+ /* overloads */ OverloadIndex(95),
},
{
/* [22] */
- /* fn image_read[F : f32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_1d<F, A>, C, S) -> vec4<f32> */
- /* fn image_read[F : i32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_1d<F, A>, C, S) -> vec4<i32> */
- /* fn image_read[F : u32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_1d<F, A>, C, S) -> vec4<u32> */
- /* fn image_read[F : f32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_2d<F, A>, vec2<C>, S) -> vec4<f32> */
- /* fn image_read[F : i32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_2d<F, A>, vec2<C>, S) -> vec4<i32> */
- /* fn image_read[F : u32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_2d<F, A>, vec2<C>, S) -> vec4<u32> */
- /* fn image_read[F : f32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_2d_array<F, A>, vec3<C>, S) -> vec4<f32> */
- /* fn image_read[F : i32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_2d_array<F, A>, vec3<C>, S) -> vec4<i32> */
- /* fn image_read[F : u32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_2d_array<F, A>, vec3<C>, S) -> vec4<u32> */
- /* fn image_read[F : f32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_3d<F, A>, vec3<C>, S) -> vec4<f32> */
- /* fn image_read[F : i32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_3d<F, A>, vec3<C>, S) -> vec4<i32> */
- /* fn image_read[F : u32_texel_format, A : readable, C : iu32, S : iu32](texture_storage_3d<F, A>, vec3<C>, S) -> vec4<u32> */
- /* fn image_read[T : fiu32, C : iu32](input_attachment: input_attachment<T>, vec2<C>) -> vec4<T> */
- /* num overloads */ 13,
- /* overloads */ OverloadIndex(62),
+ /* fn image_query_levels<Z : iu32>[T : fiu32, D : depth, R : arrayed, S : sampled, F : texel_format, A : access](image<T, dim_1d_2d_3d_or_cube, D, R, single_sampled, S, F, A>) -> Z */
+ /* num overloads */ 1,
+ /* overloads */ OverloadIndex(191),
},
{
/* [23] */
+ /* fn image_query_samples<Z : iu32>[T : fiu32, D : depth, R : arrayed, S : sampled, F : texel_format, A : access](image<T, dim_2d, D, R, multi_sampled, S, F, A>) -> Z */
+ /* num overloads */ 1,
+ /* overloads */ OverloadIndex(192),
+ },
+ {
+ /* [24] */
+ /* fn image_read[F : f32_texel_format, A : readable, C : iu32, Z : iu32](image<f32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, C, Z) -> vec4<f32> */
+ /* fn image_read[F : i32_texel_format, A : readable, C : iu32, Z : iu32](image<i32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, C, Z) -> vec4<i32> */
+ /* fn image_read[F : u32_texel_format, A : readable, C : iu32, Z : iu32](image<u32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, C, Z) -> vec4<u32> */
+ /* fn image_read[F : f32_texel_format, A : readable, C : iu32, Z : iu32](image<f32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>, Z) -> vec4<f32> */
+ /* fn image_read[F : i32_texel_format, A : readable, C : iu32, Z : iu32](image<i32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>, Z) -> vec4<i32> */
+ /* fn image_read[F : u32_texel_format, A : readable, C : iu32, Z : iu32](image<u32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>, Z) -> vec4<u32> */
+ /* fn image_read[F : f32_texel_format, A : readable, C : iu32, Z : iu32](image<f32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<f32> */
+ /* fn image_read[F : i32_texel_format, A : readable, C : iu32, Z : iu32](image<i32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<i32> */
+ /* fn image_read[F : u32_texel_format, A : readable, C : iu32, Z : iu32](image<u32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<u32> */
+ /* fn image_read[F : f32_texel_format, A : readable, C : iu32, Z : iu32](image<f32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<f32> */
+ /* fn image_read[F : i32_texel_format, A : readable, C : iu32, Z : iu32](image<i32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<i32> */
+ /* fn image_read[F : u32_texel_format, A : readable, C : iu32, Z : iu32](image<u32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<u32> */
+ /* fn image_read[F : texel_format, T : fiu32, C : iu32, A : readable](image<T, dim_subpass, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>) -> vec4<T> */
+ /* num overloads */ 13,
+ /* overloads */ OverloadIndex(46),
+ },
+ {
+ /* [25] */
/* fn image_sample_implicit_lod[T : fiu32, C : iu32, F : texel_format](sampled_image<image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, f32, C) -> vec4<f32> */
/* fn image_sample_implicit_lod[T : fiu32, C : iu32, F : texel_format](sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, C) -> vec4<f32> */
/* fn image_sample_implicit_lod[T : fiu32, C : iu32, F : texel_format](sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, C, f32) -> vec4<f32> */
@@ -7784,7 +8131,7 @@
/* overloads */ OverloadIndex(0),
},
{
- /* [24] */
+ /* [26] */
/* fn image_sample_explicit_lod[T : fiu32, C : iu32, F : texel_format](sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, C, f32) -> vec4<f32> */
/* fn image_sample_explicit_lod[T : fiu32, C : iu32, F : texel_format](sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, C, vec2<f32>, vec2<f32>) -> vec4<f32> */
/* fn image_sample_explicit_lod[T : fiu32, C : iu32, Z : iu32, F : texel_format](sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, C, f32, vec2<Z>) -> vec4<f32> */
@@ -7812,7 +8159,7 @@
/* overloads */ OverloadIndex(23),
},
{
- /* [25] */
+ /* [27] */
/* fn image_sample_dref_implicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, f32, C) -> f32 */
/* fn image_sample_dref_implicit_lod[C : iu32, Z : iu32, F : texel_format](sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, f32, C, vec2<Z>) -> f32 */
/* fn image_sample_dref_implicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, vec3<f32>, f32, C) -> f32 */
@@ -7820,10 +8167,10 @@
/* fn image_sample_dref_implicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec3<f32>, f32, C) -> f32 */
/* fn image_sample_dref_implicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, vec4<f32>, f32, C) -> f32 */
/* num overloads */ 6,
- /* overloads */ OverloadIndex(133),
+ /* overloads */ OverloadIndex(129),
},
{
- /* [26] */
+ /* [28] */
/* fn image_sample_dref_explicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, f32, C, f32) -> f32 */
/* fn image_sample_dref_explicit_lod[C : iu32, Z : iu32, F : texel_format](sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec2<f32>, f32, C, f32, vec2<Z>) -> f32 */
/* fn image_sample_dref_explicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, vec3<f32>, f32, C, f32) -> f32 */
@@ -7831,463 +8178,463 @@
/* fn image_sample_dref_explicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, vec3<f32>, f32, C, f32) -> f32 */
/* fn image_sample_dref_explicit_lod[C : iu32, F : texel_format](sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, vec4<f32>, f32, C, f32) -> f32 */
/* num overloads */ 6,
- /* overloads */ OverloadIndex(139),
+ /* overloads */ OverloadIndex(135),
},
{
- /* [27] */
- /* fn image_write[C : iu32, D : iu32](texture_storage_1d<f32_texel_format, writable>, C, vec4<f32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_1d<i32_texel_format, writable>, C, vec4<i32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_1d<u32_texel_format, writable>, C, vec4<u32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_2d<f32_texel_format, writable>, vec2<C>, vec4<f32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_2d<i32_texel_format, writable>, vec2<C>, vec4<i32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_2d<u32_texel_format, writable>, vec2<C>, vec4<u32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_2d_array<f32_texel_format, writable>, vec3<C>, vec4<f32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_2d_array<i32_texel_format, writable>, vec3<C>, vec4<i32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_2d_array<u32_texel_format, writable>, vec3<C>, vec4<u32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_3d<f32_texel_format, writable>, vec3<C>, vec4<f32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_3d<i32_texel_format, writable>, vec3<C>, vec4<i32>, D) */
- /* fn image_write[C : iu32, D : iu32](texture_storage_3d<u32_texel_format, writable>, vec3<C>, vec4<u32>, D) */
+ /* [29] */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<f32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, C, vec4<f32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<i32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, C, vec4<i32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<u32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, C, vec4<u32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<f32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, vec2<C>, vec4<f32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<i32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, vec2<C>, vec4<i32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<u32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, vec2<C>, vec4<u32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<f32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, vec3<C>, vec4<f32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<i32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, vec3<C>, vec4<i32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<u32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, vec3<C>, vec4<u32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<f32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, vec3<C>, vec4<f32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<i32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, vec3<C>, vec4<i32>, D) */
+ /* fn image_write[C : iu32, D : iu32, F : texel_format, A : access](image<u32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, vec3<C>, vec4<u32>, D) */
/* num overloads */ 12,
- /* overloads */ OverloadIndex(87),
+ /* overloads */ OverloadIndex(83),
},
{
- /* [28] */
+ /* [30] */
/* fn matrix_times_matrix[T : f32_f16, K : num, C : num, R : num](mat<K, R, T>, mat<C, K, T>) -> mat<C, R, T> */
/* num overloads */ 1,
+ /* overloads */ OverloadIndex(193),
+ },
+ {
+ /* [31] */
+ /* fn matrix_times_scalar[T : f32_f16, N : num, M : num](mat<N, M, T>, T) -> mat<N, M, T> */
+ /* num overloads */ 1,
+ /* overloads */ OverloadIndex(194),
+ },
+ {
+ /* [32] */
+ /* fn matrix_times_vector[T : f32_f16, N : num, M : num](mat<N, M, T>, vec<N, T>) -> vec<M, T> */
+ /* num overloads */ 1,
/* overloads */ OverloadIndex(195),
},
{
- /* [29] */
- /* fn matrix_times_scalar[T : f32_f16, N : num, M : num](mat<N, M, T>, T) -> mat<N, M, T> */
+ /* [33] */
+ /* fn sampled_image<I : image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* fn sampled_image<I : image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */
+ /* num overloads */ 10,
+ /* overloads */ OverloadIndex(105),
+ },
+ {
+ /* [34] */
+ /* fn select[T : scalar](bool, T, T) -> T */
+ /* fn select[N : num, T : scalar](vec<N, bool>, vec<N, T>, vec<N, T>) -> vec<N, T> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(152),
+ },
+ {
+ /* [35] */
+ /* fn vector_times_matrix[T : f32_f16, N : num, M : num](vec<N, T>, mat<M, N, T>) -> vec<M, T> */
/* num overloads */ 1,
/* overloads */ OverloadIndex(196),
},
{
- /* [30] */
- /* fn matrix_times_vector[T : f32_f16, N : num, M : num](mat<N, M, T>, vec<N, T>) -> vec<M, T> */
+ /* [36] */
+ /* fn vector_times_scalar[T : f32_f16, N : num](vec<N, T>, T) -> vec<N, T> */
/* num overloads */ 1,
/* overloads */ OverloadIndex(197),
},
{
- /* [31] */
- /* fn sampled_image<I : image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](texture_1d<T>, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](texture_2d<T>, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](texture_2d_array<T>, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](texture_3d<T>, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](texture_cube<T>, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](texture_cube_array<T>, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](texture_depth_2d, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](texture_depth_2d_array, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](texture_depth_cube, S) -> sampled_image<I> */
- /* fn sampled_image<I : image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](texture_depth_cube_array, S) -> sampled_image<I> */
- /* num overloads */ 10,
- /* overloads */ OverloadIndex(109),
- },
- {
- /* [32] */
- /* fn select[T : scalar](bool, T, T) -> T */
- /* fn select[N : num, T : scalar](vec<N, bool>, vec<N, T>, vec<N, T>) -> vec<N, T> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(156),
- },
- {
- /* [33] */
- /* fn vector_times_matrix[T : f32_f16, N : num, M : num](vec<N, T>, mat<M, N, T>) -> vec<M, T> */
- /* num overloads */ 1,
- /* overloads */ OverloadIndex(198),
- },
- {
- /* [34] */
- /* fn vector_times_scalar[T : f32_f16, N : num](vec<N, T>, T) -> vec<N, T> */
- /* num overloads */ 1,
- /* overloads */ OverloadIndex(199),
- },
- {
- /* [35] */
+ /* [37] */
/* fn normalize[T : f32_f16](T) -> T */
/* fn normalize[N : num, T : f32_f16](vec<N, T>) -> vec<N, T> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(158),
+ /* overloads */ OverloadIndex(154),
},
{
- /* [36] */
+ /* [38] */
/* fn inverse[T : f32_f16](mat2x2<T>) -> mat2x2<T> */
/* fn inverse[T : f32_f16](mat3x3<T>) -> mat3x3<T> */
/* fn inverse[T : f32_f16](mat4x4<T>) -> mat4x4<T> */
/* num overloads */ 3,
- /* overloads */ OverloadIndex(145),
- },
- {
- /* [37] */
- /* fn sign<R : iu32>[T : iu32](T) -> R */
- /* fn sign<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(160),
- },
- {
- /* [38] */
- /* fn abs<R : iu32>[T : iu32](T) -> R */
- /* fn abs<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(160),
+ /* overloads */ OverloadIndex(141),
},
{
/* [39] */
- /* fn s_max<R : iu32>[T : iu32, U : iu32](T, U) -> R */
- /* fn s_max<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
+ /* fn sign<R : iu32>[T : iu32](T) -> R */
+ /* fn sign<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(162),
+ /* overloads */ OverloadIndex(156),
},
{
/* [40] */
- /* fn s_min<R : iu32>[T : iu32, U : iu32](T, U) -> R */
- /* fn s_min<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
+ /* fn abs<R : iu32>[T : iu32](T) -> R */
+ /* fn abs<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(162),
+ /* overloads */ OverloadIndex(156),
},
{
/* [41] */
- /* fn s_clamp<R : iu32>[T : iu32, U : iu32, V : iu32](T, U, V) -> R */
- /* fn s_clamp<R : iu32>[T : iu32, U : iu32, V : iu32, N : num](vec<N, T>, vec<N, U>, vec<N, V>) -> vec<N, R> */
+ /* fn s_max<R : iu32>[T : iu32, U : iu32](T, U) -> R */
+ /* fn s_max<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(164),
+ /* overloads */ OverloadIndex(158),
},
{
/* [42] */
- /* fn u_max<R : iu32>[T : iu32, U : iu32](T, U) -> R */
- /* fn u_max<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
+ /* fn s_min<R : iu32>[T : iu32, U : iu32](T, U) -> R */
+ /* fn s_min<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(162),
+ /* overloads */ OverloadIndex(158),
},
{
/* [43] */
- /* fn u_min<R : iu32>[T : iu32, U : iu32](T, U) -> R */
- /* fn u_min<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(162),
- },
- {
- /* [44] */
- /* fn u_clamp<R : iu32>[T : iu32, U : iu32, V : iu32](T, U, V) -> R */
- /* fn u_clamp<R : iu32>[T : iu32, U : iu32, V : iu32, N : num](vec<N, T>, vec<N, U>, vec<N, V>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(164),
- },
- {
- /* [45] */
- /* fn find_i_lsb<R : iu32>[T : iu32](T) -> R */
- /* fn find_i_lsb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* fn s_clamp<R : iu32>[T : iu32, U : iu32, V : iu32](T, U, V) -> R */
+ /* fn s_clamp<R : iu32>[T : iu32, U : iu32, V : iu32, N : num](vec<N, T>, vec<N, U>, vec<N, V>) -> vec<N, R> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(160),
},
{
+ /* [44] */
+ /* fn u_max<R : iu32>[T : iu32, U : iu32](T, U) -> R */
+ /* fn u_max<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(158),
+ },
+ {
+ /* [45] */
+ /* fn u_min<R : iu32>[T : iu32, U : iu32](T, U) -> R */
+ /* fn u_min<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(158),
+ },
+ {
/* [46] */
- /* fn find_s_msb<R : iu32>[T : iu32](T) -> R */
- /* fn find_s_msb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* fn u_clamp<R : iu32>[T : iu32, U : iu32, V : iu32](T, U, V) -> R */
+ /* fn u_clamp<R : iu32>[T : iu32, U : iu32, V : iu32, N : num](vec<N, T>, vec<N, U>, vec<N, V>) -> vec<N, R> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(160),
},
{
/* [47] */
- /* fn find_u_msb<R : iu32>[T : iu32](T) -> R */
- /* fn find_u_msb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* fn find_i_lsb<R : iu32>[T : iu32](T) -> R */
+ /* fn find_i_lsb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(160),
+ /* overloads */ OverloadIndex(156),
},
{
/* [48] */
+ /* fn find_s_msb<R : iu32>[T : iu32](T) -> R */
+ /* fn find_s_msb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(156),
+ },
+ {
+ /* [49] */
+ /* fn find_u_msb<R : iu32>[T : iu32](T) -> R */
+ /* fn find_u_msb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(156),
+ },
+ {
+ /* [50] */
/* fn refract[T : f32_f16](T, T, T) -> T */
/* fn refract[T : f32_f16, N : num](vec<N, T>, vec<N, T>, T) -> vec<N, T> */
/* num overloads */ 2,
+ /* overloads */ OverloadIndex(162),
+ },
+ {
+ /* [51] */
+ /* fn reflect[T : f32_f16](T, T) -> T */
+ /* fn reflect[T : f32_f16, N : num](vec<N, T>, vec<N, T>) -> vec<N, T> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(164),
+ },
+ {
+ /* [52] */
+ /* fn face_forward[T : f32_f16](T, T, T) -> T */
+ /* fn face_forward[T : f32_f16, N : num](vec<N, T>, vec<N, T>, vec<N, T>) -> vec<N, T> */
+ /* num overloads */ 2,
/* overloads */ OverloadIndex(166),
},
{
- /* [49] */
- /* fn reflect[T : f32_f16](T, T) -> T */
- /* fn reflect[T : f32_f16, N : num](vec<N, T>, vec<N, T>) -> vec<N, T> */
+ /* [53] */
+ /* fn ldexp[T : f32_f16, U : iu32](T, U) -> T */
+ /* fn ldexp[N : num, T : f32_f16, U : iu32](vec<N, T>, vec<N, U>) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(168),
},
{
- /* [50] */
- /* fn face_forward[T : f32_f16](T, T, T) -> T */
- /* fn face_forward[T : f32_f16, N : num](vec<N, T>, vec<N, T>, vec<N, T>) -> vec<N, T> */
+ /* [54] */
+ /* fn modf[T : f32_f16, S : function_private_workgroup_storage](x: T, i: ptr<S, T, writable>) -> T */
+ /* fn modf[T : f32_f16, N : num, S : function_private_workgroup_storage](x: vec<N, T>, i: ptr<S, vec<N, T>, writable>) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(170),
},
{
- /* [51] */
- /* fn ldexp[T : f32_f16, U : iu32](T, U) -> T */
- /* fn ldexp[N : num, T : f32_f16, U : iu32](vec<N, T>, vec<N, U>) -> vec<N, T> */
+ /* [55] */
+ /* fn frexp[T : f32_f16, R : iu32, S : function_private_workgroup_storage](x: T, i: ptr<S, R, writable>) -> T */
+ /* fn frexp[T : f32_f16, R : iu32, N : num, S : function_private_workgroup_storage](x: vec<N, T>, i: ptr<S, vec<N, R>, writable>) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(172),
},
{
- /* [52] */
- /* fn modf[T : f32_f16, S : function_private_workgroup_storage](x: T, i: ptr<S, T, writable>) -> T */
- /* fn modf[T : f32_f16, N : num, S : function_private_workgroup_storage](x: vec<N, T>, i: ptr<S, vec<N, T>, writable>) -> vec<N, T> */
+ /* [56] */
+ /* fn bit_count<R : iu32>[T : iu32](T) -> R */
+ /* fn bit_count<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(156),
+ },
+ {
+ /* [57] */
+ /* fn bit_field_insert[T : iu32](base: T, insert: T, offset: iu32, count: iu32) -> T */
+ /* fn bit_field_insert[T : iu32, N : num](base: vec<N, T>, insert: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(174),
},
{
- /* [53] */
- /* fn frexp[T : f32_f16, R : iu32, S : function_private_workgroup_storage](x: T, i: ptr<S, R, writable>) -> T */
- /* fn frexp[T : f32_f16, R : iu32, N : num, S : function_private_workgroup_storage](x: vec<N, T>, i: ptr<S, vec<N, R>, writable>) -> vec<N, T> */
+ /* [58] */
+ /* fn bit_field_s_extract[T : iu32](base: T, offset: iu32, count: iu32) -> T */
+ /* fn bit_field_s_extract[T : iu32, N : num](base: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(176),
},
{
- /* [54] */
- /* fn bit_count<R : iu32>[T : iu32](T) -> R */
- /* fn bit_count<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
+ /* [59] */
+ /* fn bit_field_u_extract[T : iu32](base: T, offset: iu32, count: iu32) -> T */
+ /* fn bit_field_u_extract[T : iu32, N : num](base: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(160),
+ /* overloads */ OverloadIndex(176),
},
{
- /* [55] */
- /* fn bit_field_insert[T : iu32](base: T, insert: T, offset: iu32, count: iu32) -> T */
- /* fn bit_field_insert[T : iu32, N : num](base: vec<N, T>, insert: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */
+ /* [60] */
+ /* fn add<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn add<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(178),
},
{
- /* [56] */
- /* fn bit_field_s_extract[T : iu32](base: T, offset: iu32, count: iu32) -> T */
- /* fn bit_field_s_extract[T : iu32, N : num](base: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(180),
- },
- {
- /* [57] */
- /* fn bit_field_u_extract[T : iu32](base: T, offset: iu32, count: iu32) -> T */
- /* fn bit_field_u_extract[T : iu32, N : num](base: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(180),
- },
- {
- /* [58] */
- /* fn add<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn add<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [59] */
+ /* [61] */
/* fn sub<R : iu32>[A : iu32, B : iu32](A, B) -> R */
/* fn sub<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [60] */
- /* fn mul<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn mul<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [61] */
- /* fn s_div<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn s_div<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
+ /* overloads */ OverloadIndex(178),
},
{
/* [62] */
+ /* fn mul<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn mul<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(178),
+ },
+ {
+ /* [63] */
+ /* fn s_div<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn s_div<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(178),
+ },
+ {
+ /* [64] */
/* fn s_mod<R : iu32>[A : iu32, B : iu32](A, B) -> R */
/* fn s_mod<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
+ /* overloads */ OverloadIndex(178),
+ },
+ {
+ /* [65] */
+ /* fn s_greater_than[A : iu32, B : iu32](A, B) -> bool */
+ /* fn s_greater_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [66] */
+ /* fn s_greater_than_equal[A : iu32, B : iu32](A, B) -> bool */
+ /* fn s_greater_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [67] */
+ /* fn s_less_than[A : iu32, B : iu32](A, B) -> bool */
+ /* fn s_less_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [68] */
+ /* fn s_less_than_equal[A : iu32, B : iu32](A, B) -> bool */
+ /* fn s_less_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [69] */
+ /* fn u_greater_than[A : iu32, B : iu32](A, B) -> bool */
+ /* fn u_greater_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [70] */
+ /* fn u_greater_than_equal[A : iu32, B : iu32](A, B) -> bool */
+ /* fn u_greater_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [71] */
+ /* fn u_less_than[A : iu32, B : iu32](A, B) -> bool */
+ /* fn u_less_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [72] */
+ /* fn u_less_than_equal[A : iu32, B : iu32](A, B) -> bool */
+ /* fn u_less_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(180),
+ },
+ {
+ /* [73] */
+ /* fn convert_f_to_s<R : iu32>[T : f32_f16](T) -> R */
+ /* fn convert_f_to_s<R : iu32>[T : f32_f16, N : num](vec<N, T>) -> vec<N, R> */
+ /* num overloads */ 2,
/* overloads */ OverloadIndex(182),
},
{
- /* [63] */
- /* fn s_greater_than[A : iu32, B : iu32](A, B) -> bool */
- /* fn s_greater_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [74] */
+ /* fn convert_s_to_f<R : f32_f16>[T : iu32](T) -> R */
+ /* fn convert_s_to_f<R : f32_f16>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(184),
},
{
- /* [64] */
- /* fn s_greater_than_equal[A : iu32, B : iu32](A, B) -> bool */
- /* fn s_greater_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [75] */
+ /* fn convert_u_to_f<R : f32_f16>[T : iu32](T) -> R */
+ /* fn convert_u_to_f<R : f32_f16>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(184),
},
{
- /* [65] */
- /* fn s_less_than[A : iu32, B : iu32](A, B) -> bool */
- /* fn s_less_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [76] */
+ /* fn bitwise_and<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn bitwise_and<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
+ /* overloads */ OverloadIndex(178),
},
{
- /* [66] */
- /* fn s_less_than_equal[A : iu32, B : iu32](A, B) -> bool */
- /* fn s_less_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [77] */
+ /* fn bitwise_or<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn bitwise_or<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
+ /* overloads */ OverloadIndex(178),
},
{
- /* [67] */
- /* fn u_greater_than[A : iu32, B : iu32](A, B) -> bool */
- /* fn u_greater_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [78] */
+ /* fn bitwise_xor<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn bitwise_xor<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
+ /* overloads */ OverloadIndex(178),
},
{
- /* [68] */
- /* fn u_greater_than_equal[A : iu32, B : iu32](A, B) -> bool */
- /* fn u_greater_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [79] */
+ /* fn equal[A : iu32, B : iu32](A, B) -> bool */
+ /* fn equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
+ /* overloads */ OverloadIndex(180),
},
{
- /* [69] */
- /* fn u_less_than[A : iu32, B : iu32](A, B) -> bool */
- /* fn u_less_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [80] */
+ /* fn not_equal[A : iu32, B : iu32](A, B) -> bool */
+ /* fn not_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
+ /* overloads */ OverloadIndex(180),
},
{
- /* [70] */
- /* fn u_less_than_equal[A : iu32, B : iu32](A, B) -> bool */
- /* fn u_less_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
+ /* [81] */
+ /* fn shift_left_logical<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn shift_left_logical<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
+ /* overloads */ OverloadIndex(178),
},
{
- /* [71] */
- /* fn convert_f_to_s<R : iu32>[T : f32_f16](T) -> R */
- /* fn convert_f_to_s<R : iu32>[T : f32_f16, N : num](vec<N, T>) -> vec<N, R> */
+ /* [82] */
+ /* fn shift_right_logical<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn shift_right_logical<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(178),
+ },
+ {
+ /* [83] */
+ /* fn shift_right_arithmetic<R : iu32>[A : iu32, B : iu32](A, B) -> R */
+ /* fn shift_right_arithmetic<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
+ /* num overloads */ 2,
+ /* overloads */ OverloadIndex(178),
+ },
+ {
+ /* [84] */
+ /* fn not<R : iu32>[A : iu32](A) -> R */
+ /* fn not<R : iu32>[A : iu32, N : num](vec<N, A>) -> vec<N, R> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(186),
},
{
- /* [72] */
- /* fn convert_s_to_f<R : f32_f16>[T : iu32](T) -> R */
- /* fn convert_s_to_f<R : f32_f16>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(188),
- },
- {
- /* [73] */
- /* fn convert_u_to_f<R : f32_f16>[T : iu32](T) -> R */
- /* fn convert_u_to_f<R : f32_f16>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(188),
- },
- {
- /* [74] */
- /* fn bitwise_and<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn bitwise_and<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [75] */
- /* fn bitwise_or<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn bitwise_or<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [76] */
- /* fn bitwise_xor<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn bitwise_xor<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [77] */
- /* fn equal[A : iu32, B : iu32](A, B) -> bool */
- /* fn equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
- },
- {
- /* [78] */
- /* fn not_equal[A : iu32, B : iu32](A, B) -> bool */
- /* fn not_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(184),
- },
- {
- /* [79] */
- /* fn shift_left_logical<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn shift_left_logical<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [80] */
- /* fn shift_right_logical<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn shift_right_logical<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [81] */
- /* fn shift_right_arithmetic<R : iu32>[A : iu32, B : iu32](A, B) -> R */
- /* fn shift_right_arithmetic<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(182),
- },
- {
- /* [82] */
- /* fn not<R : iu32>[A : iu32](A) -> R */
- /* fn not<R : iu32>[A : iu32, N : num](vec<N, A>) -> vec<N, R> */
- /* num overloads */ 2,
- /* overloads */ OverloadIndex(190),
- },
- {
- /* [83] */
+ /* [85] */
/* fn s_negate<R : iu32>[A : iu32](A) -> R */
/* fn s_negate<R : iu32>[A : iu32, N : num](vec<N, A>) -> vec<N, R> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(190),
+ /* overloads */ OverloadIndex(186),
},
{
- /* [84] */
+ /* [86] */
/* fn f_mod[T : f32_f16](T, T) -> T */
/* fn f_mod[T : f32_f16, N : num](vec<N, T>, vec<N, T>) -> vec<N, T> */
/* num overloads */ 2,
- /* overloads */ OverloadIndex(168),
+ /* overloads */ OverloadIndex(164),
},
{
- /* [85] */
+ /* [87] */
/* fn outer_product[T : f32_f16, N : num, M : num](vec<N, T>, vec<M, T>) -> mat<M, N, T> */
/* num overloads */ 1,
+ /* overloads */ OverloadIndex(198),
+ },
+ {
+ /* [88] */
+ /* fn s_dot(u32, u32, u32) -> i32 */
+ /* num overloads */ 1,
+ /* overloads */ OverloadIndex(199),
+ },
+ {
+ /* [89] */
+ /* fn u_dot(u32, u32, u32) -> u32 */
+ /* num overloads */ 1,
/* overloads */ OverloadIndex(200),
},
{
- /* [86] */
- /* fn s_dot(u32, u32, u32) -> i32 */
+ /* [90] */
+ /* fn cooperative_matrix_load<T : subgroup_matrix<K, S, C, R>>[K : subgroup_matrix_kind, S : fiu32_f16, C : num, R : num](ptr<workgroup_or_storage, S, readable>, u32, u32, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(201),
},
{
- /* [87] */
- /* fn u_dot(u32, u32, u32) -> u32 */
+ /* [91] */
+ /* fn cooperative_matrix_store[K : subgroup_matrix_kind, S : fiu32_f16, C : num, R : num](ptr<workgroup_or_storage, S, writable>, subgroup_matrix<K, S, C, R>, u32, u32, u32) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(202),
},
{
- /* [88] */
- /* fn cooperative_matrix_load<T : subgroup_matrix<K, S, C, R>>[K : subgroup_matrix_kind, S : fiu32_f16, C : num, R : num](ptr<workgroup_or_storage, S, readable>, u32, u32, u32) -> T */
- /* num overloads */ 1,
- /* overloads */ OverloadIndex(203),
- },
- {
- /* [89] */
- /* fn cooperative_matrix_store[K : subgroup_matrix_kind, S : fiu32_f16, C : num, R : num](ptr<workgroup_or_storage, S, writable>, subgroup_matrix<K, S, C, R>, u32, u32, u32) */
- /* num overloads */ 1,
- /* overloads */ OverloadIndex(204),
- },
- {
- /* [90] */
+ /* [92] */
/* fn cooperative_matrix_mul_add[T : subgroup_matrix_elements, TR : subgroup_matrix_elements, C : num, R : num, K : num](subgroup_matrix<subgroup_matrix_kind_left, T, K, R>, subgroup_matrix<subgroup_matrix_kind_right, T, C, K>, subgroup_matrix<subgroup_matrix_kind_result, TR, C, R>, u32) -> subgroup_matrix<subgroup_matrix_kind_result, TR, C, R> */
/* num overloads */ 1,
- /* overloads */ OverloadIndex(205),
+ /* overloads */ OverloadIndex(203),
},
};
diff --git a/src/tint/lang/spirv/ir/image_from_texture.cc b/src/tint/lang/spirv/ir/image_from_texture.cc
index dc158c9..806647e 100644
--- a/src/tint/lang/spirv/ir/image_from_texture.cc
+++ b/src/tint/lang/spirv/ir/image_from_texture.cc
@@ -93,6 +93,7 @@
sampled = type::Sampled::kReadWriteOpCompatible;
fmt = st->TexelFormat();
sample_ty = st->Type();
+ access = st->Access();
},
[&](const core::type::InputAttachment* ia) {
dim = type::Dim::kSubpassData;
diff --git a/src/tint/lang/spirv/spirv.def b/src/tint/lang/spirv/spirv.def
index 93e730b..bd0900a 100644
--- a/src/tint/lang/spirv/spirv.def
+++ b/src/tint/lang/spirv/spirv.def
@@ -62,24 +62,7 @@
type atomic<T>
type sampler
type sampler_comparison
-type texture_1d<T>
-type texture_2d<T>
-type texture_2d_array<T>
-type texture_3d<T>
-type texture_cube<T>
-type texture_cube_array<T>
-type texture_multisampled_2d<T>
-type texture_depth_2d
-type texture_depth_2d_array
-type texture_depth_cube
-type texture_depth_cube_array
-type texture_depth_multisampled_2d
-type texture_storage_1d<F: texel_format, A: access>
-type texture_storage_2d<F: texel_format, A: access>
-type texture_storage_2d_array<F: texel_format, A: access>
-type texture_storage_3d<F: texel_format, A: access>
type ptr<S: address_space, T, A: access>
-type input_attachment<T>
type struct_with_runtime_array
@@ -106,7 +89,7 @@
@ns("spirv::type") enum multisampled {
SingleSampled
- MultiSampled
+ Multisampled
}
@ns("spirv::type") enum sampled {
@@ -177,16 +160,25 @@
match dim_2d : dim.d2
match dim_3d : dim.d3
match dim_cube : dim.Cube
+match dim_subpass : dim.SubpassData
+match dim_1d_2d_3d_or_cube
+ : dim.d1
+ | dim.d2
+ | dim.d3
+ | dim.Cube
match single_sampled : multisampled.SingleSampled
-
-match sampling_compatible : sampled.SamplingCompatible
+match multi_sampled : multisampled.Multisampled
match is_depth : depth.Depth
match non_depth : depth.NotDepth | depth.Unknown
+
match is_arrayed: arrayed.Arrayed
match non_arrayed: arrayed.NonArrayed
+match sampling_compatible: sampled.SamplingCompatible
+match rw_op_compatible : sampled.ReadWriteOpCompatible
+
match subgroup_matrix_elements: f32 | f16 | u32 | i32
match subgroup_matrix_kind_left : subgroup_matrix_kind.left
match subgroup_matrix_kind_right : subgroup_matrix_kind.right
@@ -252,14 +244,22 @@
coords: vec4<f32>, dref: D, image_operands: B) -> vec4<f32>
/// TextureFetch
-implicit(T: fiu32, C: iu32, I: iu32, S: iu32) fn image_fetch(texture_1d<T>, C, I, S) -> vec4<T>
-implicit(T: fiu32, C: iu32, I: iu32, S: iu32) fn image_fetch(texture_2d<T>, vec2<C>, I, S) -> vec4<T>
-implicit(T: fiu32, C: iu32, I: iu32, S: iu32) fn image_fetch(texture_2d_array<T>, vec3<C>, I, S) -> vec4<T>
-implicit(T: fiu32, C: iu32, I: iu32, S: iu32) fn image_fetch(texture_3d<T>, vec3<C>, I, S) -> vec4<T>
-implicit(T: fiu32, C: iu32, I: iu32, S: iu32) fn image_fetch(texture_multisampled_2d<T>, vec2<C>, I, S) -> vec4<T>
-implicit(I: iu32, C: iu32, S: iu32) fn image_fetch(texture_depth_2d, vec2<C>, I, S) -> vec4<f32>
-implicit(I: iu32, C: iu32, S: iu32) fn image_fetch(texture_depth_2d_array, vec3<C>, I, S) -> vec4<f32>
-implicit(I: iu32, C: iu32, S: iu32) fn image_fetch(texture_depth_multisampled_2d, vec2<C>, I, S) -> vec4<f32>
+implicit(T: fiu32, C: iu32, I: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, C, I, Z) -> vec4<T>
+implicit(T: fiu32, C: iu32, I: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<T>
+implicit(T: fiu32, C: iu32, I: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>, vec3<C>, I, Z) -> vec4<T>
+implicit(T: fiu32, C: iu32, I: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, vec3<C>, I, Z) -> vec4<T>
+implicit(T: fiu32, C: iu32, I: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<T, dim_2d, non_depth, non_arrayed, multi_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<T>
+implicit(I: iu32, C: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<f32>
+implicit(I: iu32, C: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>, vec3<C>, I, Z) -> vec4<f32>
+implicit(I: iu32, C: iu32, Z: iu32, F: texel_format)
+fn image_fetch(image<f32, dim_2d, is_depth, non_arrayed, multi_sampled, sampling_compatible, F, readable>, vec2<C>, I, Z) -> vec4<f32>
/// TextureGather
implicit(T: fiu32, C: iu32, B: iu32, F: texel_format)
@@ -299,47 +299,84 @@
fn image_gather(sampled_image< image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >,
coords: vec4<f32>, component: C, image_operands: B) -> vec4<f32>
-implicit(T: fiu32) fn image_query_size(texture_1d<T>) -> u32
-implicit(T: fiu32) fn image_query_size(texture_2d<T>) -> vec2<u32>
-implicit(T: fiu32) fn image_query_size(texture_2d_array<T>) -> vec3<u32>
-implicit(T: fiu32) fn image_query_size(texture_3d<T>) -> vec3<u32>
-implicit(T: fiu32) fn image_query_size(texture_cube<T>) -> vec2<u32>
-implicit(T: fiu32) fn image_query_size(texture_cube_array<T>) -> vec3<u32>
-implicit(T: fiu32) fn image_query_size(texture_multisampled_2d<T>) -> vec2<u32>
-fn image_query_size(texture_depth_2d) -> vec2<u32>
-fn image_query_size(texture_depth_2d_array) -> vec3<u32>
-fn image_query_size(texture_depth_cube) -> vec2<u32>
-fn image_query_size(texture_depth_cube_array) -> vec3<u32>
-fn image_query_size(texture_depth_multisampled_2d) -> vec2<u32>
-implicit(F: texel_format, A: access) fn image_query_size(texture_storage_1d<F, A>) -> u32
-implicit(F: texel_format, A: access) fn image_query_size(texture_storage_2d<F, A>) -> vec2<u32>
-implicit(F: texel_format, A: access) fn image_query_size(texture_storage_2d_array<F, A>) -> vec3<u32>
-implicit(F: texel_format, A: access) fn image_query_size(texture_storage_3d<F, A>) -> vec3<u32>
+implicit(T: fiu32, F: texel_format, A: access)
+fn image_query_size(image<T, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> u32
+implicit(T: fiu32, F: texel_format, A: access)
+fn image_query_size(image<T, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32>
+implicit(T: fiu32, F: texel_format, A: access)
+fn image_query_size(image<T, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32>
+implicit(T: fiu32, F: texel_format, A: access)
+fn image_query_size(image<T, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32>
+implicit(T: fiu32, F: texel_format, A: access)
+fn image_query_size(image<T, dim_cube, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32>
+implicit(T: fiu32, F: texel_format, A: access)
+fn image_query_size(image<T, dim_cube, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32>
+implicit(T: fiu32, S: sampled, F: texel_format, A: access)
+fn image_query_size(image<T, dim_2d, non_depth, non_arrayed, multi_sampled, S, F, A>) -> vec2<u32>
+implicit(F: texel_format, A: access)
+fn image_query_size(image<f32, dim_2d, is_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32>
+implicit(F: texel_format, A: access)
+fn image_query_size(image<f32, dim_2d, is_depth, is_arrayed, single_sampled, rw_op_compatible, F, A> ) -> vec3<u32>
+implicit(F: texel_format, A: access)
+fn image_query_size(image<f32, dim_cube, is_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<u32>
+implicit(F: texel_format, A: access)
+fn image_query_size(image<f32, dim_cube, is_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<u32>
+implicit(S: sampled, F: texel_format, A: access)
+fn image_query_size(image<f32, dim_2d, is_depth, non_arrayed, multi_sampled, S, F, A>) -> vec2<u32>
-implicit(T: fiu32, A: iu32) fn image_query_size_lod(texture_1d<T>, A) -> u32
-implicit(T: fiu32, A: iu32) fn image_query_size_lod(texture_2d<T>, A) -> vec2<u32>
-implicit(T: fiu32, A: iu32) fn image_query_size_lod(texture_2d_array<T>, A) -> vec3<u32>
-implicit(T: fiu32, A: iu32) fn image_query_size_lod(texture_3d<T>, A) -> vec3<u32>
-implicit(T: fiu32, A: iu32) fn image_query_size_lod(texture_cube<T>, A) -> vec2<u32>
-implicit(T: fiu32, A: iu32) fn image_query_size_lod(texture_cube_array<T>, A) -> vec3<u32>
-implicit(A: iu32) fn image_query_size_lod(texture_depth_2d, A) -> vec2<u32>
-implicit(A: iu32) fn image_query_size_lod(texture_depth_2d_array, A) -> vec3<u32>
-implicit(A: iu32) fn image_query_size_lod(texture_depth_cube, A) -> vec2<u32>
-implicit(A: iu32) fn image_query_size_lod(texture_depth_cube_array, A) -> vec3<u32>
+implicit(T: fiu32, L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<T, dim_1d, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> u32
+implicit(T: fiu32, L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<T, dim_2d, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32>
+implicit(T: fiu32, L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<T, dim_2d, non_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32>
+implicit(T: fiu32, L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<T, dim_3d, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec3<u32>
+implicit(T: fiu32, L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<T, dim_cube, non_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32>
+implicit(T: fiu32, L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<T, dim_cube, non_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32>
+implicit(L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<f32, dim_2d, is_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32>
+implicit(L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<f32, dim_2d, is_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32>
+implicit(L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<f32, dim_cube, is_depth, non_arrayed, single_sampled, S, F, A>, L) -> vec2<u32>
+implicit(L: iu32, S: sampled, F: texel_format, A: access)
+fn image_query_size_lod(image<f32, dim_cube, is_depth, is_arrayed, single_sampled, S, F, A>, L) -> vec3<u32>
-implicit(F: f32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_1d<F, A>, C, S) -> vec4<f32>
-implicit(F: i32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_1d<F, A>, C, S) -> vec4<i32>
-implicit(F: u32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_1d<F, A>, C, S) -> vec4<u32>
-implicit(F: f32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_2d<F, A>, vec2<C>, S) -> vec4<f32>
-implicit(F: i32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_2d<F, A>, vec2<C>, S) -> vec4<i32>
-implicit(F: u32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_2d<F, A>, vec2<C>, S) -> vec4<u32>
-implicit(F: f32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_2d_array<F, A>, vec3<C>, S) -> vec4<f32>
-implicit(F: i32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_2d_array<F, A>, vec3<C>, S) -> vec4<i32>
-implicit(F: u32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_2d_array<F, A>, vec3<C>, S) -> vec4<u32>
-implicit(F: f32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_3d<F, A>, vec3<C>, S) -> vec4<f32>
-implicit(F: i32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_3d<F, A>, vec3<C>, S) -> vec4<i32>
-implicit(F: u32_texel_format, A: readable, C: iu32, S: iu32) fn image_read(texture_storage_3d<F, A>, vec3<C>, S) -> vec4<u32>
-implicit(T: fiu32, C: iu32) fn image_read(input_attachment: input_attachment<T>, vec2<C>) -> vec4<T>
+implicit(T: fiu32, D: depth, R: arrayed, S: sampled, F: texel_format, A: access)
+fn image_query_levels<Z: iu32>(image<T, dim_1d_2d_3d_or_cube, D, R, single_sampled, S, F, A>) -> Z
+
+implicit(T: fiu32, D: depth, R: arrayed, S: sampled, F: texel_format, A: access)
+fn image_query_samples<Z: iu32>(image<T, dim_2d, D, R, multi_sampled, S, F, A>) -> Z
+
+implicit(F: f32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<f32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, C, Z) -> vec4<f32>
+implicit(F: i32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<i32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, C, Z) -> vec4<i32>
+implicit(F: u32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<u32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, C, Z) -> vec4<u32>
+implicit(F: f32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<f32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>, Z) -> vec4<f32>
+implicit(F: i32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<i32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>, Z) -> vec4<i32>
+implicit(F: u32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<u32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>, Z) -> vec4<u32>
+implicit(F: f32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<f32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<f32>
+implicit(F: i32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<i32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<i32>
+implicit(F: u32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<u32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<u32>
+implicit(F: f32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<f32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<f32>
+implicit(F: i32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<i32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<i32>
+implicit(F: u32_texel_format, A: readable, C: iu32, Z: iu32)
+fn image_read(image<u32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec3<C>, Z) -> vec4<u32>
+implicit(F: texel_format, T: fiu32, C: iu32, A: readable)
+fn image_read(image<T, dim_subpass, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, vec2<C>) -> vec4<T>
implicit(T: fiu32, C: iu32, F: texel_format)
fn image_sample_implicit_lod(sampled_image< image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >,
@@ -519,43 +556,55 @@
fn image_sample_dref_explicit_lod(sampled_image< image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >,
vec4<f32>, f32, C, f32) -> f32
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_1d<f32_texel_format, writable>, C, vec4<f32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_1d<i32_texel_format, writable>, C, vec4<i32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_1d<u32_texel_format, writable>, C, vec4<u32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_2d<f32_texel_format, writable>, vec2<C>, vec4<f32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_2d<i32_texel_format, writable>, vec2<C>, vec4<i32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_2d<u32_texel_format, writable>, vec2<C>, vec4<u32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_2d_array<f32_texel_format, writable>, vec3<C>, vec4<f32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_2d_array<i32_texel_format, writable>, vec3<C>, vec4<i32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_2d_array<u32_texel_format, writable>, vec3<C>, vec4<u32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_3d<f32_texel_format, writable>, vec3<C>, vec4<f32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_3d<i32_texel_format, writable>, vec3<C>, vec4<i32>, D)
-implicit(C: iu32, D: iu32) fn image_write(texture_storage_3d<u32_texel_format, writable>, vec3<C>, vec4<u32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<f32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, C, vec4<f32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<i32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, C, vec4<i32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<u32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, C, vec4<u32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<f32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, vec2<C>, vec4<f32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<i32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, vec2<C>, vec4<i32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<u32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, vec2<C>, vec4<u32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<f32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, vec3<C>, vec4<f32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<i32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, vec3<C>, vec4<i32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<u32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, vec3<C>, vec4<u32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<f32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, vec3<C>, vec4<f32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<i32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, vec3<C>, vec4<i32>, D)
+implicit(C: iu32, D: iu32, F: texel_format, A: access)
+fn image_write(image<u32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, vec3<C>, vec4<u32>, D)
implicit(T: f32_f16, K: num, C: num, R: num) fn matrix_times_matrix(mat<K, R, T>, mat<C, K, T>) -> mat<C, R, T>
implicit(T: f32_f16, N: num, M: num) fn matrix_times_scalar(mat<N, M, T>, T) -> mat<N, M, T>
implicit(T: f32_f16, N: num, M: num) fn matrix_times_vector(mat<N, M, T>, vec<N, T>) -> vec<M, T>
implicit(T: fiu32, S: samplers, F: texel_format)
-fn sampled_image<I: image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_1d<T>, S) -> sampled_image<I>
+fn sampled_image<I: image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(T: fiu32, S: samplers, F: texel_format)
-fn sampled_image<I: image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_2d<T>, S) -> sampled_image<I>
+fn sampled_image<I: image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(T: fiu32, S: samplers, F: texel_format)
-fn sampled_image<I: image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_2d_array<T>, S) -> sampled_image<I>
+fn sampled_image<I: image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(T: fiu32, S: samplers, F: texel_format)
-fn sampled_image<I: image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_3d<T>, S) -> sampled_image<I>
+fn sampled_image<I: image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(T: fiu32, S: samplers, F: texel_format)
-fn sampled_image<I: image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_cube<T>, S) -> sampled_image<I>
+fn sampled_image<I: image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(T: fiu32, S: samplers, F: texel_format)
-fn sampled_image<I: image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_cube_array<T>, S) -> sampled_image<I>
+fn sampled_image<I: image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(S: samplers, F: texel_format)
-fn sampled_image<I: image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_depth_2d, S) -> sampled_image<I>
+fn sampled_image<I: image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(S: samplers, F: texel_format)
-fn sampled_image<I: image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_depth_2d_array, S) -> sampled_image<I>
+fn sampled_image<I: image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(S: samplers, F: texel_format)
-fn sampled_image<I: image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_depth_cube, S) -> sampled_image<I>
+fn sampled_image<I: image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(S: samplers, F: texel_format)
-fn sampled_image<I: image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(texture_depth_cube_array, S) -> sampled_image<I>
+fn sampled_image<I: image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable> >(I, S) -> sampled_image<I>
implicit(T: scalar) fn select(bool, T, T) -> T
implicit(N: num, T: scalar) fn select(vec<N, bool>, vec<N, T>, vec<N, T>) -> vec<N, T>
diff --git a/src/tint/lang/spirv/type/image.h b/src/tint/lang/spirv/type/image.h
index 931f69c..ca473b8 100644
--- a/src/tint/lang/spirv/type/image.h
+++ b/src/tint/lang/spirv/type/image.h
@@ -105,6 +105,8 @@
/// @returns the friendly name for this type
std::string FriendlyName() const override;
+ bool IsHandle() const override { return true; }
+
/// @param ctx the clone context
/// @returns a clone of this type
Image* Clone(core::type::CloneContext& ctx) const override;
diff --git a/src/tint/lang/spirv/writer/printer/printer.cc b/src/tint/lang/spirv/writer/printer/printer.cc
index aa169c4..205615a 100644
--- a/src/tint/lang/spirv/writer/printer/printer.cc
+++ b/src/tint/lang/spirv/writer/printer/printer.cc
@@ -76,21 +76,14 @@
#include "src/tint/lang/core/type/array.h"
#include "src/tint/lang/core/type/atomic.h"
#include "src/tint/lang/core/type/bool.h"
-#include "src/tint/lang/core/type/depth_multisampled_texture.h"
-#include "src/tint/lang/core/type/depth_texture.h"
#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/input_attachment.h"
#include "src/tint/lang/core/type/matrix.h"
-#include "src/tint/lang/core/type/multisampled_texture.h"
#include "src/tint/lang/core/type/pointer.h"
-#include "src/tint/lang/core/type/sampled_texture.h"
#include "src/tint/lang/core/type/sampler.h"
-#include "src/tint/lang/core/type/storage_texture.h"
#include "src/tint/lang/core/type/struct.h"
#include "src/tint/lang/core/type/subgroup_matrix.h"
-#include "src/tint/lang/core/type/texture.h"
#include "src/tint/lang/core/type/type.h"
#include "src/tint/lang/core/type/u32.h"
#include "src/tint/lang/core/type/vector.h"
@@ -152,18 +145,6 @@
// Atomics are not a distinct type in SPIR-V.
[&](const core::type::Atomic* atomic) { return atomic->Type(); },
- // Depth textures are always declared as sampled textures.
- [&](const core::type::DepthTexture* depth) {
- return types.Get<core::type::SampledTexture>(depth->Dim(), types.f32());
- },
- [&](const core::type::DepthMultisampledTexture* depth) {
- return types.Get<core::type::MultisampledTexture>(depth->Dim(), types.f32());
- },
- [&](const core::type::StorageTexture* st) -> const core::type::Type* {
- return types.Get<core::type::StorageTexture>(st->Dim(), st->TexelFormat(),
- core::Access::kRead, st->Type());
- },
-
// Both sampler types are the same in SPIR-V.
[&](const core::type::Sampler* s) -> const core::type::Type* {
if (s->IsComparison()) {
@@ -176,12 +157,16 @@
// In SPIRV, 0 means not depth, 1 means depth, and 2 means unknown.
// Using anything other than 0 is problematic on various Vulkan drivers.
[&](const type::Image* img) -> const core::type::Type* {
- if (img->GetDepth() == type::Depth::kNotDepth) {
- return img;
+ // Set storage textures to access `read`
+ auto access = img->GetAccess();
+ if (img->GetTexelFormat() != core::TexelFormat::kUndefined) {
+ access = core::Access::kRead;
}
+
+ // Depth textures are always declared as sampled textures.
return types.Get<type::Image>(
img->GetSampledType(), img->GetDim(), type::Depth::kNotDepth, img->GetArrayed(),
- img->GetMultisampled(), img->GetSampled(), img->GetTexelFormat(), img->GetAccess());
+ img->GetMultisampled(), img->GetSampled(), img->GetTexelFormat(), access);
},
// Dedup a SampledImage if its underlying image will be deduped.
@@ -511,13 +496,6 @@
/// @param ty the type to get the ID for
/// @returns the result ID of the type
uint32_t Type(const core::type::Type* ty) {
- // Convert textures to spirv::type::Image
- // TODO(https://crbug.com/dawn/343218073): This conversion should happen in a transform so
- // no textures exist by this point.
- if (auto* texture = ty->As<core::type::Texture>()) {
- ty = ir::ImageFromTexture(ir_.Types(), texture);
- }
-
ty = DedupType(ty, ir_.Types());
return types_.GetOrAdd(ty, [&] {
auto id = module_.NextId();
@@ -1374,6 +1352,14 @@
module_.PushCapability(SpvCapabilityImageQuery);
op = spv::Op::OpImageQuerySizeLod;
break;
+ case spirv::BuiltinFn::kImageQueryLevels:
+ module_.PushCapability(SpvCapabilityImageQuery);
+ op = spv::Op::OpImageQueryLevels;
+ break;
+ case spirv::BuiltinFn::kImageQuerySamples:
+ module_.PushCapability(SpvCapabilityImageQuery);
+ op = spv::Op::OpImageQuerySamples;
+ break;
case spirv::BuiltinFn::kImageRead:
op = spv::Op::OpImageRead;
break;
@@ -2068,14 +2054,6 @@
operands.push_back(Constant(b_.ConstantValue(u32(memory_mask))));
break;
}
- case core::BuiltinFn::kTextureNumLevels:
- module_.PushCapability(SpvCapabilityImageQuery);
- op = spv::Op::OpImageQueryLevels;
- break;
- case core::BuiltinFn::kTextureNumSamples:
- module_.PushCapability(SpvCapabilityImageQuery);
- op = spv::Op::OpImageQuerySamples;
- break;
case core::BuiltinFn::kTranspose:
op = spv::Op::OpTranspose;
break;
@@ -2577,9 +2555,12 @@
{id, U32Operand(SpvDecorationBinding), bp.binding});
// Add NonReadable and NonWritable decorations to storage textures and buffers.
- auto* st = store_ty->As<core::type::StorageTexture>();
- auto access = st ? st->Access() : ptr->Access();
- if (st || ptr->AddressSpace() != core::AddressSpace::kHandle) {
+ auto* st = store_ty->As<spirv::type::Image>();
+ bool is_storage_texture =
+ st && st->GetTexelFormat() != core::TexelFormat::kUndefined;
+ auto access = is_storage_texture ? st->GetAccess() : ptr->Access();
+
+ if (is_storage_texture || ptr->AddressSpace() != core::AddressSpace::kHandle) {
if (access == core::Access::kRead) {
module_.PushAnnot(spv::Op::OpDecorate,
{id, U32Operand(SpvDecorationNonWritable)});
@@ -2594,7 +2575,7 @@
auto iidx = var->InputAttachmentIndex();
if (iidx) {
- TINT_ASSERT(store_ty->Is<core::type::InputAttachment>());
+ TINT_ASSERT(st->GetDim() == type::Dim::kSubpassData);
module_.PushAnnot(
spv::Op::OpDecorate,
{id, U32Operand(SpvDecorationInputAttachmentIndex), iidx.value()});
diff --git a/src/tint/lang/spirv/writer/raise/builtin_polyfill.cc b/src/tint/lang/spirv/writer/raise/builtin_polyfill.cc
index 786c629..d63ffd0 100644
--- a/src/tint/lang/spirv/writer/raise/builtin_polyfill.cc
+++ b/src/tint/lang/spirv/writer/raise/builtin_polyfill.cc
@@ -73,7 +73,32 @@
void Process() {
// Find the builtins that need replacing.
Vector<core::ir::CoreBuiltinCall*, 4> worklist;
+
+ // Convert function parameters to `spirv::type::Image` if necessary
+ for (auto fn : ir.functions) {
+ for (auto* param : fn->Params()) {
+ if (auto* tex = param->Type()->As<core::type::Texture>()) {
+ param->SetType(ir::ImageFromTexture(ty, tex));
+ }
+ }
+ }
+
for (auto* inst : ir.Instructions()) {
+ // Convert instruction results to `spirv::type::Image` if necessary
+ if (!inst->Results().IsEmpty()) {
+ if (auto* res = inst->Result(0)->As<core::ir::InstructionResult>()) {
+ // Watch for pointers, which would be wrapping any texture on a `var`
+ if (auto* tex = res->Type()->UnwrapPtr()->As<core::type::Texture>()) {
+ auto* tex_ty = ir::ImageFromTexture(ty, tex);
+ const core::type::Type* res_ty = tex_ty;
+ if (auto* orig_ptr = res->Type()->As<core::type::Pointer>()) {
+ res_ty = ty.ptr(orig_ptr->AddressSpace(), res_ty, orig_ptr->Access());
+ }
+ res->SetType(res_ty);
+ }
+ }
+ }
+
if (auto* builtin = inst->As<core::ir::CoreBuiltinCall>()) {
switch (builtin->Func()) {
case core::BuiltinFn::kArrayLength:
@@ -100,6 +125,8 @@
case core::BuiltinFn::kTextureGatherCompare:
case core::BuiltinFn::kTextureLoad:
case core::BuiltinFn::kTextureNumLayers:
+ case core::BuiltinFn::kTextureNumLevels:
+ case core::BuiltinFn::kTextureNumSamples:
case core::BuiltinFn::kTextureSample:
case core::BuiltinFn::kTextureSampleBias:
case core::BuiltinFn::kTextureSampleCompare:
@@ -176,6 +203,12 @@
case core::BuiltinFn::kTextureNumLayers:
TextureNumLayers(builtin);
break;
+ case core::BuiltinFn::kTextureNumLevels:
+ TextureNumLevels(builtin);
+ break;
+ case core::BuiltinFn::kTextureNumSamples:
+ TextureNumSamples(builtin);
+ break;
case core::BuiltinFn::kTextureSample:
case core::BuiltinFn::kTextureSampleBias:
case core::BuiltinFn::kTextureSampleCompare:
@@ -464,9 +497,9 @@
if (use_vulkan_memory_model) {
if (insertion_point->Func() == core::BuiltinFn::kTextureLoad ||
insertion_point->Func() == core::BuiltinFn::kTextureStore) {
- if (auto* st =
- insertion_point->Args()[0]->Type()->As<core::type::StorageTexture>()) {
- if (st->Access() == core::Access::kReadWrite) {
+ if (auto* st = insertion_point->Args()[0]->Type()->As<spirv::type::Image>()) {
+ if (st->GetTexelFormat() != core::TexelFormat::kUndefined &&
+ st->GetAccess() == core::Access::kReadWrite) {
image_operand_mask |= SpvImageOperandsNonPrivateTexelMask;
}
}
@@ -543,17 +576,17 @@
auto* texture = next_arg();
auto* sampler = next_arg();
auto* coords = next_arg();
- auto* texture_ty = texture->Type()->As<core::type::Texture>();
- auto* img_ty = ir::ImageFromTexture(ty, texture_ty);
+ auto* texture_ty = texture->Type()->As<spirv::type::Image>();
// Use OpSampledImage to create an OpTypeSampledImage object.
auto* sampled_image = b.CallExplicit<spirv::ir::BuiltinCall>(
- ty.Get<type::SampledImage>(img_ty), spirv::BuiltinFn::kSampledImage, Vector{img_ty},
- Vector{texture, sampler});
+ ty.Get<type::SampledImage>(texture_ty), spirv::BuiltinFn::kSampledImage,
+ Vector{texture_ty}, Vector{texture, sampler});
sampled_image->InsertBefore(builtin);
// Append the array index to the coordinates if provided.
- auto* array_idx = IsTextureArray(texture_ty->Dim()) ? next_arg() : nullptr;
+ auto* array_idx =
+ texture_ty->GetArrayed() == type::Arrayed::kArrayed ? next_arg() : nullptr;
if (array_idx) {
coords = AppendArrayIndex(coords, array_idx, builtin);
}
@@ -620,8 +653,7 @@
// If this is not a depth comparison but we are sampling a depth texture, extract the first
// component to get the scalar f32 that SPIR-V expects.
- if (!depth &&
- texture_ty->IsAnyOf<core::type::DepthTexture, core::type::DepthMultisampledTexture>()) {
+ if (!depth && texture_ty->GetDepth() == type::Depth::kDepth) {
result = b.Access(ty.f32(), result, 0_u);
result->InsertBefore(builtin);
}
@@ -649,17 +681,17 @@
auto* texture = next_arg();
auto* sampler = next_arg();
auto* coords = next_arg();
- auto* texture_ty = texture->Type()->As<core::type::Texture>();
- auto* img_ty = ir::ImageFromTexture(ty, texture_ty);
+ auto* texture_ty = texture->Type()->As<spirv::type::Image>();
// Use OpSampledImage to create an OpTypeSampledImage object.
auto* sampled_image = b.CallExplicit<spirv::ir::BuiltinCall>(
- ty.Get<type::SampledImage>(img_ty), spirv::BuiltinFn::kSampledImage, Vector{img_ty},
- Vector{texture, sampler});
+ ty.Get<type::SampledImage>(texture_ty), spirv::BuiltinFn::kSampledImage,
+ Vector{texture_ty}, Vector{texture, sampler});
sampled_image->InsertBefore(builtin);
// Append the array index to the coordinates if provided.
- auto* array_idx = IsTextureArray(texture_ty->Dim()) ? next_arg() : nullptr;
+ auto* array_idx =
+ texture_ty->GetArrayed() == type::Arrayed::kArrayed ? next_arg() : nullptr;
if (array_idx) {
coords = AppendArrayIndex(coords, array_idx, builtin);
}
@@ -715,10 +747,11 @@
auto* texture = next_arg();
auto* coords = next_arg();
- auto* texture_ty = texture->Type()->As<core::type::Texture>();
+ auto* texture_ty = texture->Type()->As<spirv::type::Image>();
// Append the array index to the coordinates if provided.
- auto* array_idx = IsTextureArray(texture_ty->Dim()) ? next_arg() : nullptr;
+ auto* array_idx =
+ texture_ty->GetArrayed() == type::Arrayed::kArrayed ? next_arg() : nullptr;
if (array_idx) {
coords = AppendArrayIndex(coords, array_idx, builtin);
}
@@ -731,8 +764,7 @@
// Add the optional image operands, if any.
ImageOperands operands;
- if (texture_ty->IsAnyOf<core::type::MultisampledTexture,
- core::type::DepthMultisampledTexture>()) {
+ if (texture_ty->GetMultisampled() == type::Multisampled::kMultisampled) {
operands.sample = next_arg();
} else {
operands.lod = next_arg();
@@ -746,8 +778,9 @@
if (expects_scalar_result) {
result_ty = ty.vec4(result_ty);
}
- auto kind = texture_ty->Is<core::type::StorageTexture>() ? spirv::BuiltinFn::kImageRead
- : spirv::BuiltinFn::kImageFetch;
+ auto kind = texture_ty->GetSampled() == type::Sampled::kSamplingCompatible
+ ? spirv::BuiltinFn::kImageFetch
+ : spirv::BuiltinFn::kImageRead;
core::ir::Instruction* result =
b.Call<spirv::ir::BuiltinCall>(result_ty, kind, std::move(builtin_args));
result->InsertBefore(builtin);
@@ -773,10 +806,11 @@
auto* texture = next_arg();
auto* coords = next_arg();
- auto* texture_ty = texture->Type()->As<core::type::Texture>();
+ auto* texture_ty = texture->Type()->As<spirv::type::Image>();
// Append the array index to the coordinates if provided.
- auto* array_idx = IsTextureArray(texture_ty->Dim()) ? next_arg() : nullptr;
+ auto* array_idx =
+ texture_ty->GetArrayed() == type::Arrayed::kArrayed ? next_arg() : nullptr;
if (array_idx) {
coords = AppendArrayIndex(coords, array_idx, builtin);
}
@@ -810,16 +844,15 @@
};
auto* texture = next_arg();
- auto* texture_ty = texture->Type()->As<core::type::Texture>();
+ auto* texture_ty = texture->Type()->As<spirv::type::Image>();
Vector<core::ir::Value*, 8> function_args;
function_args.Push(texture);
// Determine which SPIR-V function to use, and add the Lod argument if needed.
enum spirv::BuiltinFn function;
- if (texture_ty
- ->IsAnyOf<core::type::MultisampledTexture, core::type::DepthMultisampledTexture,
- core::type::StorageTexture>()) {
+ if (texture_ty->GetMultisampled() == type::Multisampled::kMultisampled ||
+ texture_ty->GetTexelFormat() != core::TexelFormat::kUndefined) {
function = spirv::BuiltinFn::kImageQuerySize;
} else {
function = spirv::BuiltinFn::kImageQuerySizeLod;
@@ -833,7 +866,8 @@
// Add an extra component to the result vector for arrayed textures.
auto* result_ty = builtin->Result(0)->Type();
- if (core::type::IsTextureArray(texture_ty->Dim())) {
+ bool is_arrayed = texture_ty->GetArrayed() == type::Arrayed::kArrayed;
+ if (is_arrayed) {
auto* vec = result_ty->As<core::type::Vector>();
result_ty = ty.vec(vec->Type(), vec->Width() + 1);
}
@@ -844,7 +878,7 @@
result->InsertBefore(builtin);
// Swizzle the first two components from the result for arrayed textures.
- if (core::type::IsTextureArray(texture_ty->Dim())) {
+ if (is_arrayed) {
result = b.Swizzle(builtin->Result(0)->Type(), result, {0, 1});
result->InsertBefore(builtin);
}
@@ -853,20 +887,49 @@
builtin->Destroy();
}
+ /// Handle a textureNumLevels() builtin.
+ /// @param builtin the builtin call instruction
+ void TextureNumLevels(core::ir::CoreBuiltinCall* builtin) {
+ auto args = builtin->Args();
+
+ b.InsertBefore(builtin, [&] {
+ // Call the function.
+ auto* res_ty = builtin->Result(0)->Type();
+ b.CallExplicitWithResult<spirv::ir::BuiltinCall>(builtin->DetachResult(),
+ spirv::BuiltinFn::kImageQueryLevels,
+ Vector{res_ty}, Vector{args[0]});
+ });
+ builtin->Destroy();
+ }
+
+ /// Handle a textureNumSamples() builtin.
+ /// @param builtin the builtin call instruction
+ void TextureNumSamples(core::ir::CoreBuiltinCall* builtin) {
+ auto args = builtin->Args();
+
+ b.InsertBefore(builtin, [&] {
+ // Call the function.
+ auto* res_ty = builtin->Result(0)->Type();
+ b.CallExplicitWithResult<spirv::ir::BuiltinCall>(builtin->DetachResult(),
+ spirv::BuiltinFn::kImageQuerySamples,
+ Vector{res_ty}, Vector{args[0]});
+ });
+ builtin->Destroy();
+ }
+
/// Handle a textureNumLayers() builtin.
/// @param builtin the builtin call instruction
void TextureNumLayers(core::ir::CoreBuiltinCall* builtin) {
auto* texture = builtin->Args()[0];
- auto* texture_ty = texture->Type()->As<core::type::Texture>();
+ auto* texture_ty = texture->Type()->As<spirv::type::Image>();
Vector<core::ir::Value*, 2> function_args;
function_args.Push(texture);
// Determine which SPIR-V function to use, and add the Lod argument if needed.
enum spirv::BuiltinFn function;
- if (texture_ty
- ->IsAnyOf<core::type::MultisampledTexture, core::type::DepthMultisampledTexture,
- core::type::StorageTexture>()) {
+ if (texture_ty->GetMultisampled() == type::Multisampled::kMultisampled ||
+ texture_ty->GetTexelFormat() != core::TexelFormat::kUndefined) {
function = spirv::BuiltinFn::kImageQuerySize;
} else {
function = spirv::BuiltinFn::kImageQuerySizeLod;
diff --git a/src/tint/lang/spirv/writer/raise/builtin_polyfill_test.cc b/src/tint/lang/spirv/writer/raise/builtin_polyfill_test.cc
index c8bc25e..cd70365 100644
--- a/src/tint/lang/spirv/writer/raise/builtin_polyfill_test.cc
+++ b/src/tint/lang/spirv/writer/raise/builtin_polyfill_test.cc
@@ -1211,7 +1211,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %coords:vec2<i32>, %lod:i32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %coords:vec2<i32>, %lod:i32):vec4<f32> {
$B1: {
%5:vec4<f32> = spirv.image_fetch %t, %coords, 2u, %lod
ret %5
@@ -1250,7 +1250,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %coords:vec2<i32>, %array_idx:i32, %lod:i32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %coords:vec2<i32>, %array_idx:i32, %lod:i32):vec4<f32> {
$B1: {
%6:vec3<i32> = construct %coords, %array_idx
%7:vec4<f32> = spirv.image_fetch %t, %6, 2u, %lod
@@ -1290,7 +1290,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %coords:vec2<i32>, %array_idx:u32, %lod:i32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %coords:vec2<i32>, %array_idx:u32, %lod:i32):vec4<f32> {
$B1: {
%6:i32 = convert %array_idx
%7:vec3<i32> = construct %coords, %6
@@ -1329,7 +1329,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_multisampled_2d<f32>, %coords:vec2<i32>, %sample_idx:i32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, multi_sampled, sampling_compatible, undefined, read_write>, %coords:vec2<i32>, %sample_idx:i32):vec4<f32> {
$B1: {
%5:vec4<f32> = spirv.image_fetch %t, %coords, 64u, %sample_idx
ret %5
@@ -1366,7 +1366,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %coords:vec2<i32>, %lod:i32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %coords:vec2<i32>, %lod:i32):f32 {
$B1: {
%5:vec4<f32> = spirv.image_fetch %t, %coords, 2u, %lod
%6:f32 = access %5, 0u
@@ -1404,7 +1404,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d<r32uint, read_write>, %coords:vec2<i32>):vec4<u32> {
+%foo = func(%t:spirv.image<u32, 2d, not_depth, non_arrayed, single_sampled, rw_op_compatible, r32uint, read_write>, %coords:vec2<i32>):vec4<u32> {
$B1: {
%4:vec4<u32> = spirv.image_read %t, %coords, 0u
ret %4
@@ -1441,7 +1441,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d<r32uint, read_write>, %coords:vec2<i32>):vec4<u32> {
+%foo = func(%t:spirv.image<u32, 2d, not_depth, non_arrayed, single_sampled, rw_op_compatible, r32uint, read_write>, %coords:vec2<i32>):vec4<u32> {
$B1: {
%4:vec4<u32> = spirv.image_read %t, %coords, 1024u
ret %4
@@ -1477,7 +1477,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_1d<f32>, %s:sampler, %coords:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 1d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:f32):vec4<f32> {
$B1: {
%5:spirv.sampled_image<spirv.image<f32, 1d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 1d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%6:vec4<f32> = spirv.image_sample_implicit_lod %5, %coords, 0u
@@ -1514,7 +1514,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
$B1: {
%5:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%6:vec4<f32> = spirv.image_sample_implicit_lod %5, %coords, 0u
@@ -1552,7 +1552,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
$B1: {
%5:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%6:vec4<f32> = spirv.image_sample_implicit_lod %5, %coords, 8u, vec2<i32>(1i)
@@ -1592,7 +1592,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %s:sampler, %coords:vec2<f32>, %array_idx:i32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %array_idx:i32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:f32 = convert %array_idx
@@ -1633,7 +1633,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>, %bias:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %bias:f32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_sample_implicit_lod %6, %coords, 1u, %bias
@@ -1672,7 +1672,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>, %bias:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %bias:f32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_sample_implicit_lod %6, %coords, 9u, %bias, vec2<i32>(1i)
@@ -1713,7 +1713,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %s:sampler, %coords:vec2<f32>, %array_idx:i32, %bias:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %array_idx:i32, %bias:f32):vec4<f32> {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:f32 = convert %array_idx
@@ -1754,7 +1754,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:f32 = spirv.image_sample_dref_implicit_lod %6, %coords, %dref, 0u
@@ -1794,7 +1794,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:f32 = spirv.image_sample_dref_implicit_lod %6, %coords, %dref, 8u, vec2<i32>(1i)
@@ -1835,7 +1835,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d_array, %s:sampler_comparison, %coords:vec2<f32>, %array_idx:i32, %bias:f32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %array_idx:i32, %bias:f32):f32 {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:f32 = convert %array_idx
@@ -1877,7 +1877,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:f32 = spirv.image_sample_dref_explicit_lod %6, %coords, %dref, 2u, 0.0f
@@ -1917,7 +1917,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %dref:f32):f32 {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:f32 = spirv.image_sample_dref_explicit_lod %6, %coords, %dref, 10u, 0.0f, vec2<i32>(1i)
@@ -1958,7 +1958,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d_array, %s:sampler_comparison, %coords:vec2<f32>, %array_idx:i32, %bias:f32):f32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %array_idx:i32, %bias:f32):f32 {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:f32 = convert %array_idx
@@ -2000,7 +2000,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>, %ddx:vec2<f32>, %ddy:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %ddx:vec2<f32>, %ddy:vec2<f32>):vec4<f32> {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:vec4<f32> = spirv.image_sample_explicit_lod %7, %coords, 4u, %ddx, %ddy
@@ -2040,7 +2040,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>, %ddx:vec2<f32>, %ddy:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %ddx:vec2<f32>, %ddy:vec2<f32>):vec4<f32> {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:vec4<f32> = spirv.image_sample_explicit_lod %7, %coords, 12u, %ddx, %ddy, vec2<i32>(1i)
@@ -2082,7 +2082,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %s:sampler, %coords:vec2<f32>, %array_idx:i32, %ddx:vec2<f32>, %ddy:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %array_idx:i32, %ddx:vec2<f32>, %ddy:vec2<f32>):vec4<f32> {
$B1: {
%8:spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%9:f32 = convert %array_idx
@@ -2123,7 +2123,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>, %lod:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %lod:f32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_sample_explicit_lod %6, %coords, 2u, %lod
@@ -2162,7 +2162,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>, %lod:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %lod:f32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_sample_explicit_lod %6, %coords, 10u, %lod, vec2<i32>(1i)
@@ -2203,7 +2203,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %s:sampler, %coords:vec2<f32>, %array_idx:i32, %lod:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>, %array_idx:i32, %lod:f32):vec4<f32> {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:f32 = convert %array_idx
@@ -2244,7 +2244,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%component:i32, %t:texture_2d<f32>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
+%foo = func(%component:i32, %t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_gather %6, %coords, %component, 0u
@@ -2283,7 +2283,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %s:sampler, %component:i32, %coords:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %component:i32, %coords:vec2<f32>):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_gather %6, %coords, %component, 8u, vec2<i32>(1i)
@@ -2324,7 +2324,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>, %s:sampler, %component:i32, %coords:vec2<f32>, %array_idx:i32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %component:i32, %coords:vec2<f32>, %array_idx:i32):vec4<f32> {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:f32 = convert %array_idx
@@ -2364,7 +2364,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler, %coords:vec2<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler, %coords:vec2<f32>):vec4<f32> {
$B1: {
%5:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%6:vec4<f32> = spirv.image_gather %5, %coords, 0u, 0u
@@ -2404,7 +2404,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler_comparison, %coords:vec2<f32>, %depth:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %depth:f32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_dref_gather %6, %coords, %depth, 0u
@@ -2444,7 +2444,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d, %s:sampler_comparison, %coords:vec2<f32>, %depth:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %depth:f32):vec4<f32> {
$B1: {
%6:spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%7:vec4<f32> = spirv.image_dref_gather %6, %coords, %depth, 8u, vec2<i32>(1i)
@@ -2485,7 +2485,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d_array, %s:sampler_comparison, %coords:vec2<f32>, %array_idx:u32, %depth:f32):vec4<f32> {
+%foo = func(%t:spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>, %s:sampler_comparison, %coords:vec2<f32>, %array_idx:u32, %depth:f32):vec4<f32> {
$B1: {
%7:spirv.sampled_image<spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> = spirv.sampled_image<spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>> %t, %s
%8:f32 = convert %array_idx
@@ -2526,7 +2526,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d<r32uint, write>, %coords:vec2<i32>, %texel:vec4<u32>):void {
+%foo = func(%t:spirv.image<u32, 2d, not_depth, non_arrayed, single_sampled, rw_op_compatible, r32uint, write>, %coords:vec2<i32>, %texel:vec4<u32>):void {
$B1: {
%5:void = spirv.image_write %t, %coords, %texel, 0u
ret
@@ -2564,7 +2564,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d<r32uint, read_write>, %coords:vec2<i32>, %texel:vec4<u32>):void {
+%foo = func(%t:spirv.image<u32, 2d, not_depth, non_arrayed, single_sampled, rw_op_compatible, r32uint, read_write>, %coords:vec2<i32>, %texel:vec4<u32>):void {
$B1: {
%5:void = spirv.image_write %t, %coords, %texel, 1024u
ret
@@ -2603,7 +2603,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d_array<rgba8sint, write>, %coords:vec2<i32>, %array_idx:i32, %texel:vec4<i32>):void {
+%foo = func(%t:spirv.image<i32, 2d, not_depth, arrayed, single_sampled, rw_op_compatible, rgba8sint, write>, %coords:vec2<i32>, %array_idx:i32, %texel:vec4<i32>):void {
$B1: {
%6:vec3<i32> = construct %coords, %array_idx
%7:void = spirv.image_write %t, %6, %texel, 0u
@@ -2643,7 +2643,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d_array<rgba32uint, write>, %coords:vec2<i32>, %array_idx:u32, %texel:vec4<u32>):void {
+%foo = func(%t:spirv.image<u32, 2d, not_depth, arrayed, single_sampled, rw_op_compatible, rgba32uint, write>, %coords:vec2<i32>, %array_idx:u32, %texel:vec4<u32>):void {
$B1: {
%6:i32 = convert %array_idx
%7:vec3<i32> = construct %coords, %6
@@ -2679,7 +2679,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>):vec2<u32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):vec2<u32> {
$B1: {
%3:vec2<u32> = spirv.image_query_size_lod %t, 0u
ret %3
@@ -2714,7 +2714,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d<f32>, %lod:i32):vec2<u32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>, %lod:i32):vec2<u32> {
$B1: {
%4:vec2<u32> = spirv.image_query_size_lod %t, %lod
ret %4
@@ -2749,7 +2749,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>):vec2<u32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):vec2<u32> {
$B1: {
%3:vec3<u32> = spirv.image_query_size_lod %t, 0u
%4:vec2<u32> = swizzle %3, xy
@@ -2785,7 +2785,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_multisampled_2d<f32>):vec2<u32> {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, multi_sampled, sampling_compatible, undefined, read_write>):vec2<u32> {
$B1: {
%3:vec2<u32> = spirv.image_query_size %t
ret %3
@@ -2798,6 +2798,423 @@
EXPECT_EQ(expect, str());
}
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_1d) {
+ auto* t = b.FunctionParam("t", ty.sampled_texture(core::type::TextureDimension::k1d, ty.f32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_1d<f32>):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 1d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_2d) {
+ auto* t = b.FunctionParam("t", ty.sampled_texture(core::type::TextureDimension::k2d, ty.f32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_2d<f32>):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 2d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_2d_array) {
+ auto* t =
+ b.FunctionParam("t", ty.sampled_texture(core::type::TextureDimension::k2dArray, ty.f32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_2d_array<f32>):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_3d) {
+ auto* t = b.FunctionParam("t", ty.sampled_texture(core::type::TextureDimension::k3d, ty.f32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_3d<f32>):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 3d, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_cube) {
+ auto* t =
+ b.FunctionParam("t", ty.sampled_texture(core::type::TextureDimension::kCube, ty.f32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_cube<f32>):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, cube, not_depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_CubeArray) {
+ auto* t = b.FunctionParam(
+ "t", ty.sampled_texture(core::type::TextureDimension::kCubeArray, ty.f32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_cube_array<f32>):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, cube, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_depth_2d) {
+ auto* t =
+ b.FunctionParam("t", ty.Get<core::type::DepthTexture>(core::type::TextureDimension::k2d));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_depth_2d):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_depth_2dArray) {
+ auto* t = b.FunctionParam(
+ "t", ty.Get<core::type::DepthTexture>(core::type::TextureDimension::k2dArray));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_depth_2d_array):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_depth_cube) {
+ auto* t =
+ b.FunctionParam("t", ty.Get<core::type::DepthTexture>(core::type::TextureDimension::kCube));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_depth_cube):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, cube, depth, non_arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLevels_depth_CubeArray) {
+ auto* t = b.FunctionParam(
+ "t", ty.Get<core::type::DepthTexture>(core::type::TextureDimension::kCubeArray));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumLevels, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_depth_cube_array):u32 {
+ $B1: {
+ %3:u32 = textureNumLevels %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, cube, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_levels<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumSamples_ms_2d) {
+ auto* t = b.FunctionParam(
+ "t", ty.Get<core::type::MultisampledTexture>(core::type::TextureDimension::k2d, ty.i32()));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumSamples, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_multisampled_2d<i32>):u32 {
+ $B1: {
+ %3:u32 = textureNumSamples %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<i32, 2d, not_depth, non_arrayed, multi_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_samples<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumSamples_depth_ms_2d) {
+ auto* t = b.FunctionParam(
+ "t", ty.Get<core::type::DepthMultisampledTexture>(core::type::TextureDimension::k2d));
+ auto* func = b.Function("foo", ty.u32());
+ func->SetParams({t});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.u32(), core::BuiltinFn::kTextureNumSamples, t);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%t:texture_depth_multisampled_2d):u32 {
+ $B1: {
+ %3:u32 = textureNumSamples %t
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%t:spirv.image<f32, 2d, depth, non_arrayed, multi_sampled, sampling_compatible, undefined, read_write>):u32 {
+ $B1: {
+ %3:u32 = spirv.image_query_samples<u32> %t
+ ret %3
+ }
+}
+)";
+
+ Run(BuiltinPolyfill, false);
+
+ EXPECT_EQ(expect, str());
+}
+
TEST_F(SpirvWriter_BuiltinPolyfillTest, TextureNumLayers_2DArray) {
auto* t =
b.FunctionParam("t", ty.sampled_texture(core::type::TextureDimension::k2dArray, ty.f32()));
@@ -2820,7 +3237,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_2d_array<f32>):u32 {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
$B1: {
%3:vec3<u32> = spirv.image_query_size_lod %t, 0u
%4:u32 = access %3, 2u
@@ -2856,7 +3273,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_cube_array<f32>):u32 {
+%foo = func(%t:spirv.image<f32, cube, not_depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
$B1: {
%3:vec3<u32> = spirv.image_query_size_lod %t, 0u
%4:u32 = access %3, 2u
@@ -2892,7 +3309,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_2d_array):u32 {
+%foo = func(%t:spirv.image<f32, 2d, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
$B1: {
%3:vec3<u32> = spirv.image_query_size_lod %t, 0u
%4:u32 = access %3, 2u
@@ -2928,7 +3345,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_depth_cube_array):u32 {
+%foo = func(%t:spirv.image<f32, cube, depth, arrayed, single_sampled, sampling_compatible, undefined, read_write>):u32 {
$B1: {
%3:vec3<u32> = spirv.image_query_size_lod %t, 0u
%4:u32 = access %3, 2u
@@ -2965,7 +3382,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:texture_storage_2d_array<r32float, write>):u32 {
+%foo = func(%t:spirv.image<f32, 2d, not_depth, arrayed, single_sampled, rw_op_compatible, r32float, write>):u32 {
$B1: {
%3:vec3<u32> = spirv.image_query_size %t
%4:u32 = access %3, 2u
@@ -3069,7 +3486,7 @@
EXPECT_EQ(src, str());
auto* expect = R"(
-%foo = func(%t:input_attachment<f32>):vec4<f32> {
+%foo = func(%t:spirv.image<f32, subpass_data, not_depth, non_arrayed, single_sampled, rw_op_compatible, undefined, read_write>):vec4<f32> {
$B1: {
%3:vec4<f32> = spirv.image_read %t, vec2<i32>(0i)
ret %3