dawn-cmake/test/unittest/reader/spirv
Stephen White d9b32c3178 GLSL: fix textureLoad() and textureStore(), depth textures, and more.
The CombineSamplers transform was incorrectly flagging StorageTexture
(which in GLSL ends up as image2D) as needing to be combined with a
sampler, or at least renamed. This is incorrect: StorageTexture never
has an associated sampler, so don't try to pair it up and just output
it as image* in GLSL.

In GLSL, textureLoad (aka texelFetch) of depth textures is not allowed.
The fix is to bind the depth texture as the corresponding f32 texture
instead (e.g., texture_depth_2d -> texture_2d<f32>,
texture_depth_cube -> texture_cube<f32>, etc). This requires changing
both the uniform globals and function parameter types. We're now going
to receive a vec4 instead of a float from texelFetch, so add a ".x"
member accessor to retrieve the first component. (Note that we don't
do this inside a CallStatement since this gives the CloneContext
indigestion, and CallStatement is going to ignore the result of the
call anyway.)

We were failing to find the dummy samplers that Dawn creates for the
calls that actually do require a dummy sampler, since the old Inspector
implementation of GetSamplerTextureUses() does not find them. The fix
is to implement a new Inspector call to return the texture/sampler
pairs the Resolver found during resolution. This will include the
dummy sampler as a null variable pointer.

In order to identify the placeholder sampler, we pass in a BindingPair
to represent it. When we discover a null sampler in the variable pair,
we return the passed-in placeholder binding point to the caller (Dawn).
(Dawn will use a group of kMaxBindGroups, to ensure that it never
collides with an existing sampler.)

Bug: tint:1298
Change-Id: I82e142c2b4318608c27a9fa9521c27f15a6214cd
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/78820
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Stephen White <senorblanco@chromium.org>
2022-02-03 22:39:13 +00:00
..
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertResultSignedness_SpvParserHandleTest_SampledImageAccessTest_Variable_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertUintCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm writer: avoid type breakage during AppendVector 2021-07-28 16:31:36 +00:00
ConvertUintCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm writer: avoid type breakage during AppendVector 2021-07-28 16:31:36 +00:00
ConvertUintCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm writer: avoid type breakage during AppendVector 2021-07-28 16:31:36 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ConvertUintCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_1D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_3.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Good_2DArray_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_2DArray_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_2D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_2D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_2D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_3D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_3D_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_CubeArray_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_CubeArray_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Good_Cube_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Good_Cube_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_DepthMultisampled_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end2end tests for recent SPIR-V reader updates 2021-08-03 17:38:49 +00:00
ImageFetch_Depth_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_Multisampled_ConvertSampleOperand_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_Multisampled_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_OptionalParams_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_OptionalParams_SpvParserHandleTest_ImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_OptionalParams_SpvParserHandleTest_ImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageFetch_OptionalParams_SpvParserHandleTest_ImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_6.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_7.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_8.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_8.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageQueryLevels_UnsignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQueryLevels_UnsignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQuerySamples_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySamples_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQuerySamples_UnsignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySamples_UnsignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_Arrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageQuerySizeLod_NonArrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_NonArrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_NonArrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_NonArrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySizeLod_NonArrayed_SignedResult_SignedLevel_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySize_Arrayed_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySize_Arrayed_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageQuerySize_NonArrayed_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySize_NonArrayed_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageQuerySize_NonArrayed_SignedResult_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageRead_OptionalParams_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm.expected.glsl GLSL: fix shadow samplers, and textures generally. 2022-02-02 15:25:42 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefExplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm.expected.glsl GLSL: fix shadow samplers, and textures generally. 2022-02-02 15:25:42 +00:00
ImageSampleDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm.expected.glsl GLSL: fix shadow samplers, and textures generally. 2022-02-02 15:25:42 +00:00
ImageSampleExplicitLod_DepthTexture_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_DepthTexture_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_DepthTexture_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm.expected.glsl GLSL: fix shadow samplers, and textures generally. 2022-02-02 15:25:42 +00:00
ImageSampleExplicitLod_UsingGrad_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingGrad_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingGrad_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingGrad_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingGrad_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingGrad_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingLod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingLod_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleExplicitLod_UsingLod_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_BothDrefAndNonDref_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_8.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageSampleProjDrefExplicitLod_CheckForLod0_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjDrefExplicitLod_CheckForLod0_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjDrefImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjExplicitLod_Grad_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjExplicitLod_Grad_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjExplicitLod_Lod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjExplicitLod_Lod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_Bias_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_Bias_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_Bias_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_DepthTexture_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ImageSampleProjImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_1.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_2.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageSampleProjImplicitLod_SpvParserHandleTest_SampledImageAccessTest_Variable_3.spvasm Add OpImageSampeProj* unit tests to end-to-end list 2021-09-27 19:21:43 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_4.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_5.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_6.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
ImageWrite_ConvertTexelOperand_Arity_SpvParserHandleTest_ImageAccessTest_Variable_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_SameSignedness_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_SameSignedness_SpvParserHandleTest_ImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Signedness_AndWidening_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_ConvertTexelOperand_Signedness_AndWidening_SpvParserHandleTest_ImageAccessTest_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ImageWrite_OptionalParams_SpvParserHandleTest_ImageAccessTest_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Images_SpvParserHandleTest_DeclUnderspecifiedHandle_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Images_SpvParserHandleTest_DeclUnderspecifiedHandle_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Images_SpvParserHandleTest_DeclUnderspecifiedHandle_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Multisampled_Only2DNonArrayedIsValid_SpvParserHandleTest_ImageDeclTest_DeclareAndUseHandle_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Multisampled_Only2DNonArrayedIsValid_SpvParserHandleTest_ImageDeclTest_DeclareAndUseHandle_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
PreserveFloatCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveFloatCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveFloatCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveFloatCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveFloatCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
PreserveFloatCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveFloatCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveFloatCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_Arrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_2.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
PreserveIntCoords_NonArrayed_SpvParserHandleTest_ImageCoordsTest_MakeCoordinateOperandsForImageAccess_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samplers_SpvParserHandleTest_DeclUnderspecifiedHandle_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_AccessChain_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_CopyObject_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvModuleScopeVarParserTest_ComputeBuiltin_Load_Direct_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_1.spvasm.expected.glsl GLSL: fix textureLoad() and textureStore(), depth textures, and more. 2022-02-03 22:39:13 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_5.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_RawImage_Variable_6.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_6.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_7.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_8.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
Samples_SpvParserHandleTest_RegisterHandleUsage_SampledImage_Variable_9.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_3.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataPacking_Valid_4.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_3.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_DataUnpacking_Valid_4.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Float3_Float3Float3_Samples_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Float_FloatingFloating_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Float_FloatingFloating_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Float_Floating_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Float_Floating_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Scalar_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Scalar_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Scalar_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Scalar_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Scalar_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Vector_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Vector_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Vector_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Vector_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloatingFloating_Vector_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Scalar_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingFloating_Vector_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingInting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingInting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingUinting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_FloatingUinting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_8.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_9.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_10.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_11.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_11.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_12.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_12.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_13.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_14.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_15.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_16.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_17.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_18.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_19.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_20.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_21.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Scalar_22.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_8.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_9.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_10.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_11.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_11.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_12.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_12.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_13.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_14.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_15.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_16.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_17.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_18.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_19.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_20.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_21.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Floating_Floating_Vector_22.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_IntingIntingInting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_IntingIntingInting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_IntingInting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_IntingInting_Scalar_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_IntingInting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_IntingInting_Vector_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_Inting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Inting_Inting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Uinting_UintingUintingUinting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Uinting_UintingUintingUinting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Uinting_UintingUinting_Scalar_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Uinting_UintingUinting_Scalar_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Uinting_UintingUinting_Vector_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
Samples_SpvParserTest_GlslStd450_Uinting_UintingUinting_Vector_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_Dot.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_FMod_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_FMod_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_MatrixTimesMatrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_MatrixTimesScalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_MatrixTimesVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_OuterProduct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_SDiv_Scalar_UnsignedResult.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_SDiv_Vector_UnsignedResult.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_SMod_Scalar_UnsignedResult.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_SMod_Vector_UnsignedResult.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_VectorTimesMatrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryArithTestBasic_VectorTimesScalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_2.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_3.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_4.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_5.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_6.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_7.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_8.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_9.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_9.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_10.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_10.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_11.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_11.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_12.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_12.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_13.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_13.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_14.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_14.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_15.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_16.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_17.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_18.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_18.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_19.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_19.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_20.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_20.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_21.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_21.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_22.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_22.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_23.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_23.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_24.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_25.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvBinaryDerivativeTest_SpvBinaryDerivativeTest_Derivatives_26.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordEqual_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordEqual_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordEqual_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvFUnordTest_FUnordGreaterThanEqual_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordGreaterThanEqual_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordGreaterThanEqual_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvFUnordTest_FUnordGreaterThan_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordGreaterThan_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordGreaterThan_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvFUnordTest_FUnordLessThanEqual_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordLessThanEqual_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordLessThanEqual_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvFUnordTest_FUnordLessThan_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordLessThan_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordLessThan_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvFUnordTest_FUnordNotEqual_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordNotEqual_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvFUnordTest_FUnordNotEqual_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvLogicalTest_All.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_Any.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_IsInf_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_IsInf_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_IsNan_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_IsNan_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_IsNan_Vector.spvasm.expected.hlsl Rename 'intrinsic' to 'builtin' 2022-02-02 23:07:11 +00:00
SpvLogicalTest_Select_BoolCond_BoolParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_Select_BoolCond_FloatScalarParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_Select_BoolCond_IntScalarParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_Select_VecBoolCond_VectorParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvLogicalTest_Select_VecBoolCond_VectorParams.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_AnonWorkgroupVar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ArrayInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ArrayNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_BindingDecoration_Valid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_Loose_ReadReplaced_Vertex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_Loose_Write1_IsErased.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_Loose_WriteViaCopyObjectPostAccessChainErased.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_Loose_WriteViaCopyObjectPriorAccess_Erased.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_ReadReplaced.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_Write1_IsErased.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPointSize_WriteViaCopyObjectPostAccessChainErased.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPosition_BuiltIn_Position.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPosition_BuiltIn_Position_Initializer.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPosition_StorePosition.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPosition_StorePositionMember_OneAccessChain.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPosition_StorePositionMember_TwoAccessChain.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinPosition_StorePosition_PerVertexStructOutOfOrderDecl.spvasm Roll SPIRV-Tools and SPIRV-Headers, fix spvasm 2021-12-17 20:45:22 +00:00
SpvModuleScopeVarParserTest_BuiltinVertexIndex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Builtin_Input_OppositeSignednessAsWGSL.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Builtin_Input_SameSignednessAsWGSL.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Builtin_Output_Initializer_OppositeSignednessAsWGSL.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Builtin_Output_Initializer_SameSignednessAsWGSL.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ColMajorDecoration_Dropped.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_DescriptorGroupDecoration_Valid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_FragDepth_Out_Initializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_Input_OppositeSignedness.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_Input_SameSignedness.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_In_Signed.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_In_Signed.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_In_Unsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_In_Unsigned.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_Out_Signed_Initializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_Out_Signed_Initializer.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_Out_Unsigned_Initializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_BuiltinVar_SampleMask_Out_Unsigned_Initializer.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Flatten_Interpolation_Flat_Fragment_In.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Flatten_Interpolation_Floating_Fragment_In.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Flatten_Interpolation_Floating_Fragment_Out.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_IOLocations.spvasm Add end2end tests for recent SPIR-V reader updates 2021-08-03 17:38:49 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Interpolation_Flat_Vertex_In.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Interpolation_Flat_Vertex_In.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Interpolation_Flat_Vertex_Output.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Interpolation_Floating_Fragment_In.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_EntryPointWrapping_Interpolation_Floating_Fragment_Out.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_FlattenStruct_LocOnMembers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InputVarsConvertedToPrivate.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Input_FlattenArray_OneLevel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Input_FlattenMatrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Input_FlattenNested.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Input_FlattenStruct_LocOnVariable.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InstanceIndex_I32_Load_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InstanceIndex_I32_Load_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InstanceIndex_I32_Load_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InstanceIndex_U32_Load_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InstanceIndex_U32_Load_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_InstanceIndex_U32_Load_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_MatrixInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_MatrixNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_MatrixStrideDecoration.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvModuleScopeVarParserTest_MatrixStrideDecoration_Dropped.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_MatrixStrideDecoration_Natural_Dropped.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvModuleScopeVarParserTest_NamedWorkgroupVar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_NoVar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_OutputVarsConvertedToPrivate.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_OutputVarsConvertedToPrivate_WithInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Output_FlattenArray_OneLevel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Output_FlattenMatrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_Output_FlattenStruct_LocOnVariable.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_PrivateVar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_I32_Load_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_I32_Load_AccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleId_I32_Load_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_I32_Load_CopyObject.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleId_I32_Load_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_I32_Load_Direct.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleId_U32_Load_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_U32_Load_AccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleId_U32_Load_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_U32_Load_CopyObject.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleId_U32_Load_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleId_U32_Load_Direct.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_I32_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_I32_AccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_I32_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_I32_CopyObject.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_I32_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_I32_Direct.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_U32_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_U32_AccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_U32_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_U32_CopyObject.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_U32_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_U32_Direct.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_WithStride.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_In_WithStride.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_I32_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_I32_AccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_I32_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_I32_CopyObject.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_I32_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_I32_Direct.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_U32_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_U32_AccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_U32_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_U32_CopyObject.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_U32_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_U32_Direct.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_WithStride.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_SampleMask_Out_WithStride.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvModuleScopeVarParserTest_ScalarInitializers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarNullInitializers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_F32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_F32_WithoutSpecId.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_False.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_I32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_Id_MaxValid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_True.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_DeclareConst_U32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_ScalarSpecConstant_UsedInFunction.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_StorageBuffer_NonWritable_AllMembers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_StorageBuffer_NonWritable_NotAllMembers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_StorageBuffer_NonWritable_NotAllMembers_DuplicatedOnSameMember.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_StructInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_StructMember_NonReadableDecoration_Dropped.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_StructNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VectorBoolNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VectorFloatNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VectorInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VectorIntNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VectorUintNullInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VertexIndex_I32_Load_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VertexIndex_I32_Load_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VertexIndex_I32_Load_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VertexIndex_U32_Load_AccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VertexIndex_U32_Load_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvModuleScopeVarParserTest_VertexIndex_U32_Load_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_BackEdge_MultiBlockLoop_MultiBlockContinueConstruct_ContinueIsHeader.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_BackEdge_MultiBlockLoop_MultiBlockContinueConstruct_ContinueIsNotHeader.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_BackEdge_MultiBlockLoop_SingleBlockContinueConstruct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_BackEdge_SingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Fallthrough_CaseTailToCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Fallthrough_CaseTailToDefaultNotMerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Fallthrough_DefaultToCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Forward_IfToElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Forward_IfToThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Forward_LoopHeadToBody.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Forward_SwitchToCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Forward_SwitchToDefaultNotMerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_IfBreak_FromElse_ForwardWithinElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_IfBreak_FromIfHeader.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_IfBreak_FromIfThenElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_IfBreak_FromThen_ForwardWithinThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromContinueConstructHeader.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromContinueConstructTail.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopBody.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopBodyDirect.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopBodyDirect.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopBodyNestedSelection_Conditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopBodyNestedSelection_Unconditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopHeader_MultiBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopHeader_SingleBlockLoop_FalseBranch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopHeader_SingleBlockLoop_TrueBranch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopBreak_FromLoopHeader_SingleBlockLoop_TrueBranch.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopContinue_ConditionalFromNestedIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopContinue_FromNestedIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopContinue_FromNestedSwitchCaseBody_Unconditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopContinue_FromNestedSwitchDefaultBody_Conditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopContinue_FromNestedSwitchDefaultBody_Unconditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_LoopContinue_LoopBodyToContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Pathological_Forward_LoopHeadSplitBody.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Pathological_Forward_Premerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_Pathological_Forward_Regardless.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_SwitchBreak_FromNestedIf_Conditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_SwitchBreak_FromNestedIf_Unconditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_SwitchBreak_FromSwitchCaseBody.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_SwitchBreak_FromSwitchCaseDirect.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_SwitchBreak_FromSwitchDefaultBody.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ClassifyCFGEdges_SwitchBreak_FromSwitchDefaultIsMerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_DupConditionalBranch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_FalseOnlyBranch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_IgnoreStaticalyUnreachable.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_KillIsDeadEnd.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_BodyHasBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_BodyHasBreak.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_BodyHasBreakIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_BodyHasBreakUnless.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_BodyHasContinueIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_BodyHasContinueUnless.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Body_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Body_If_Break.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Body_If_Continue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Body_Switch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Body_Switch_CaseContinues.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Continue_ContainsIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Continue_HasBreakIf.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Continue_HasBreakUnless.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Continue_Sequence.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_HeaderHasBreakIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_HeaderHasBreakUnless.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_HeaderHasBreakUnless.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Loop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Loop_InnerBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Loop_InnerContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_Loop_InnerContinueBreaks.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Loop_SingleBlock_Simple.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Nest_IfBreak_In_SwitchCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Nest_IfFallthrough_In_SwitchCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Nest_If_Contains_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Nest_If_In_SwitchCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_OneBlock.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_ReorderSequence.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_RespectConditionalBranchOrder.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_RespectSwitchCaseFallthrough.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_RespectSwitchCaseFallthrough_FromCaseToDefaultToCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_RespectSwitchCaseFallthrough_FromDefault.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_RespectSwitchCaseFallthrough_Interleaved.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_SwitchOrderNaturallyReversed.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_SwitchWithDefaultOrderNaturallyReversed.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_Switch_DefaultSameAsACase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_TrueOnlyBranch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_ComputeBlockOrder_UnreachableIsDeadEnd.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_MultiBlock_LoopBreak_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_MultiBlock_LoopBreak_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_MultiBlock_LoopBreak_OnTrue.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_Back.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_Back.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_Back.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_Back.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_Back.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_Back.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_LoopBreak_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_LoopBreak_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Back_SingleBlock_LoopBreak_OnTrue.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional_EmptyContinuing.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional_EmptyContinuing.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional_EmptyContinuing.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional_EmptyContinuing.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional_EmptyContinuing.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Conditional_EmptyContinuing.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Unconditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Unconditional.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Unconditional.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Unconditional.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Unconditional.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_AfterHeader_Unconditional.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_FromHeader.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_FromHeader.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_FromHeader.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_FromHeader.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_FromHeader.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Continue_FromHeader.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnFalse.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnFalse.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnFalse.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnFalse.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnFalse.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnTrue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnTrue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnTrue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnTrue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Fallthrough_OnTrue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnFalse.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnFalse.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnFalse.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnFalse.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnFalse.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnTrue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnTrue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnTrue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnTrue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_Forward_OnTrue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnFalse.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnFalse.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnFalse.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnFalse.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnFalse.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnTrue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnTrue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnTrue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnTrue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Continue_IfBreak_OnTrue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Fallthrough_Fallthrough_Same.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_Forward_Forward_Same.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_IfBreak_IfBreak_Same.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_Continue_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_Continue_OnFalse.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_Continue_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_Forward_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_Forward_OnFalse.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_Forward_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_MultiBlock_LoopBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopBreak_SingleBlock_LoopBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopContinue_FromSwitch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopContinue_FromSwitch.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopContinue_FromSwitch.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopContinue_FromSwitch.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopContinue_FromSwitch.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_LoopContinue_FromSwitch.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnFalse.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnFalse.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnFalse.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnFalse.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnFalse.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnTrue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnTrue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnTrue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnTrue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Continue_OnTrue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Fallthrough_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Fallthrough_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Forward_OnFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_Forward_OnTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_SwitchBreak_LastInCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_BranchConditional_SwitchBreak_SwitchBreak_NotLastInCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_MultiBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_MultiBlockLoop.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_MultiBlockLoop.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_MultiBlockLoop.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_MultiBlockLoop.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_MultiBlockLoop.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_SingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_SingleBlockLoop.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_SingleBlockLoop.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_SingleBlockLoop.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_SingleBlockLoop.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_BackEdge_SingleBlockLoop.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_Fallthrough.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_Forward.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_IfBreak_FromElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_IfBreak_FromThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopBreak_MultiBlockLoop_FromBody.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopBreak_MultiBlockLoop_FromContinueConstructEnd_Conditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_BeforeLast.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_BeforeLast.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_BeforeLast.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_BeforeLast.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_BeforeLast.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_BeforeLast.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_FromSwitch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_FromSwitch.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_FromSwitch.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_FromSwitch.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_FromSwitch.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_FromSwitch.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_LastInLoopConstruct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_LastInLoopConstruct.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_LastInLoopConstruct.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_LastInLoopConstruct.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_LastInLoopConstruct.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_LoopContinue_LastInLoopConstruct.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Branch_SwitchBreak_LastInCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Branch_SwitchBreak_NotLastInCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopContinue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopContinue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopContinue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopContinue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_LoopContinue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_FalseBranch_SwitchBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_IfBreak_FromElse_ForwardWithinElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_IfBreak_FromThenWithForward_FromElseWithForward_AlsoPremerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_IfBreak_FromThen_ForwardWithinThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_IfSelection_TrueBranch_LoopBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_IfSelection_TrueBranch_LoopBreak.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_If_Else_Premerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_Empty.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_Nest_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_NoThen_Else.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_Then_Else.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_Then_Else_Premerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_Then_NoElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_If_Then_Premerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Kill_InsideIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Kill_InsideLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Kill_InsideLoop.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_Kill_TopLevel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_LoopInternallyDiverge_Simple.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_LoopInternallyDiverge_Simple.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_LoopInternallyDiverge_Simple.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_LoopInternallyDiverge_Simple.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_LoopInternallyDiverge_Simple.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_LoopInternallyDiverge_Simple.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyAlwaysBreaks.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyConditionallyBreaks_FromFalse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyConditionallyBreaks_FromFalse_Early.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyConditionallyBreaks_FromTrue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyConditionallyBreaks_FromTrue.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyConditionallyBreaks_FromTrue_Early.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_BodyConditionallyBreaks_FromTrue_Early.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_Loop_FalseToBody_TrueBreaks.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_MultiBlockContinueIsEntireLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_MultiBlockContinueIsEntireLoop.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_Loop_NestedIfContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_NestedIfContinue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Loop_NestedIfContinue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_NestedIfContinue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_NestedIfContinue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_NestedIfContinue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Never.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_BothBackedge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_BothBackedge.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_BothBackedge.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_BothBackedge.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_BothBackedge.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_BothBackedge.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_FalseBackedge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_FalseBackedge.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_TrueBackedge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_UnconditionalBackege.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_UnconditionalBackege.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_UnconditionalBackege.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_UnconditionalBackege.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_UnconditionalBackege.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_SingleBlock_UnconditionalBackege.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_TrueToBody_FalseBreaks.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_ContinueNestIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_ContinueNestIf.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_ContinueNestIf.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_ContinueNestIf.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_ContinueNestIf.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_ContinueNestIf.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_MultiBlockContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_MultiBlockContinue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_MultiBlockContinue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_MultiBlockContinue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_MultiBlockContinue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_MultiBlockContinue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_SingleBlockContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_SingleBlockContinue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_SingleBlockContinue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_SingleBlockContinue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_SingleBlockContinue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_Loop_Unconditional_Body_SingleBlockContinue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_ReturnValue_InsideIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_ReturnValue_Loop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_ReturnValue_TopLevel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Return_InsideIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Return_InsideLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Return_TopLevel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_Case_SintValue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_Case_UintValue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_DefaultIsCase_NoDupCases.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_DefaultIsCase_WithDupCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_DefaultIsMerge_CasesWithDup.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_DefaultIsMerge_NoCases.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_DefaultIsMerge_OneCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Switch_DefaultIsMerge_TwoCases.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_LoopContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_LoopContinue.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_LoopContinue.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_LoopContinue.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_LoopContinue.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_LoopContinue.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_EmitBody_TrueBranch_SwitchBreak.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Unreachable_InNonVoidFunction.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Unreachable_InsideIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Unreachable_InsideLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_EmitBody_Unreachable_TopLevel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_ElseOnly.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopBreak_Ok.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopContinue_Ok.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopContinue_Ok.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopContinue_Ok.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopContinue_Ok.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopContinue_Ok.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_LoopContinue_Ok.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_FalseBranch_SwitchBreak_Ok.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_IfOnly.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_NoIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_Premerge_ElseDirectToThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_Premerge_Simple.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_Premerge_ThenDirectToElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_Regardless.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_ThenElse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopBreak_Ok.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopBreak_Ok.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopContinue_Ok.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopContinue_Ok.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopContinue_Ok.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopContinue_Ok.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopContinue_Ok.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_LoopContinue_Ok.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_FindIfSelectionInternalHeaders_TrueBranch_SwitchBreak_Ok.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindSwitchCaseHeaders_CaseIsDefault.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindSwitchCaseHeaders_CaseIsNotDefault.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindSwitchCaseHeaders_DefaultIsMerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindSwitchCaseHeaders_DefaultIsNotMerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindSwitchCaseHeaders_ManyValuesWithSameCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_FindSwitchCaseHeaders_NoSwitch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_FunctionIsOnlyIfSelectionAndItsMerge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_LoopInterallyDiverge.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_LoopInterallyDiverge.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_LoopInterallyDiverge.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_LoopInterallyDiverge.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_LoopInterallyDiverge.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_LoopInterallyDiverge.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_MergeBlockIsAlsoMultiBlockLoopHeader.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_MergeBlockIsAlsoSingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_MultiBlockLoop_HeaderIsContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_MultiBlockLoop_HeaderIsNotContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_If_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_If_MultiBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_If_SingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_If_Switch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_LoopContinue_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_Loop_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_Loop_Loop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_Nest_Switch_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_OuterConstructIsFunction_MultiBlock.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_OuterConstructIsFunction_SingleBlock.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_PaddingBlocksBeforeAndAfterStructuredConstruct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_SingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_LabelControlFlowConstructs_SwitchSelection.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsHeader.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsHeader.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsHeader.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsHeader.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsHeader.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsHeader.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsNotHeader_Branch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_MultiBlockLoop_ContinueIsNotHeader_BranchConditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_GoodLoopMerge_SingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_GoodSelectionMerge_BranchConditional.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_GoodSelectionMerge_Switch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_RegisterMerges_NoMerges.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_SiblingLoopConstruct_ContinueIsWholeMultiBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_SiblingLoopConstruct_HasSiblingLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_SiblingLoopConstruct_NotAContinue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_SiblingLoopConstruct_Null.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_SiblingLoopConstruct_SingleBlockLoop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_If.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_Kill.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_Loop_Simple.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_Loop_SingleBlock.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_Sequence.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_SingleBlock.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_Switch.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_TerminatorsAreValid_Unreachable.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_VerifyHeaderContinueMergeOrder_MultiBlockLoop_Good.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_VerifyHeaderContinueMergeOrder_Selection_Good.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserCFGTest_VerifyHeaderContinueMergeOrder_SingleBlockLoop_Good.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_AnonymousVars.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_ArrayInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_ArrayInitializer_Alias.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_ArrayInitializer_Alias_Null.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_ArrayInitializer_Null.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_Decorate_RelaxedPrecision.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_MatrixInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_MemberDecorate_RelaxedPrecision.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_MixedTypes.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_NamedVars.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_ScalarInitializers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_ScalarNullInitializers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_StructDifferOnlyInMemberName.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_StructInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_StructInitializer_Null.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitFunctionVariables_VectorInitializer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialNonPointer_DefConstruct_DoesNotEncloseAllUses.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialNonPointer_DefConstruct_DoesNotEncloseAllUses.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialNonPointer_Hoisting_DefAndUseFirstBlockIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialNonPointer_Hoisting_DefFirstBlockIf_InFunction.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialNonPointer_Hoisting_DefFirstBlockIf_InIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialNonPointer_Hoisting_DefFirstBlockSwitch_InIf.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Defer_UsedOnceSameConstruct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedOnceDifferentConstruct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedOnceDifferentConstruct.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedOnceDifferentConstruct.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedOnceDifferentConstruct.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedOnceDifferentConstruct.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedOnceDifferentConstruct.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_CombinatorialValue_Immediate_UsedTwice.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Hoist_CompositeInsert.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Hoist_UsedAsNonPtrArg.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Hoist_VectorInsertDynamic.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_FromElseAndThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_FromElseAndThen.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_FromHeaderAndThen.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_FromHeaderAndThen.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_InMerge_PredecessorsDominatdByNestedSwitchCase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_MultiBlockLoopIndex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_MultiBlockLoopIndex.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_SingleBlockLoopIndex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_SingleBlockLoopIndex.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromBlockNotInBlockOrderIgnored.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromLoopBodyAndContinuing.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromLoopBodyAndContinuing.spvasm.expected.glsl Run all of the backends in the test runner. 2022-01-25 00:35:20 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromLoopBodyAndContinuing.spvasm.expected.hlsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromLoopBodyAndContinuing.spvasm.expected.msl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromLoopBodyAndContinuing.spvasm.expected.spvasm wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_Phi_ValueFromLoopBodyAndContinuing.spvasm.expected.wgsl wgsl: Replace [[decoration]] with @decoration 2022-01-19 22:46:57 +00:00
SpvParserFunctionVarTest_EmitStatement_UseInPhiCountsAsUse.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserFunctionVarTest_EmitStatement_UseInPhiCountsAsUse.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserHandleTest_GetMemoryObjectDeclarationForHandle_Variable_CopyObject.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserHandleTest_GetMemoryObjectDeclarationForHandle_Variable_Direct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserHandleTest_GetMemoryObjectDeclarationForHandle_Variable_Image.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserHandleTest_GetMemoryObjectDeclarationForHandle_Variable_Load.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserHandleTest_GetMemoryObjectDeclarationForHandle_Variable_SampledImage.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserHandleTest_NeverGenerateConstDeclForHandle_UseVariableDirectly.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_ArrayLength_FromAccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_ArrayLength_FromAccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserMemoryTest_ArrayLength_FromVar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_ArrayLength_FromVar.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Array.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Compound_Matrix_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_DereferenceBase.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_InferFunctionStorageClass.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Matrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Struct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Struct_DifferOnlyMemberName.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Struct_RuntimeArray.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_Struct_RuntimeArray.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_VectorNonConstIndex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_AccessChain_VectorSwizzle.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_CopyMemory_Scalar_Function_To_Private.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_LoadBool.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_LoadScalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_StoreBoolConst.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_StoreFloatConst.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_StoreIntConst.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_StoreToModuleScopeVar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_StoreUintConst.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_EmitStatement_UseLoadedScalarTwice.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_RemapStorageBuffer_ThroughAccessChain_Cascaded.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_RemapStorageBuffer_ThroughAccessChain_Cascaded.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserMemoryTest_RemapStorageBuffer_ThroughAccessChain_NonCascaded.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_RemapStorageBuffer_ThroughAccessChain_NonCascaded.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserMemoryTest_RemapStorageBuffer_ThroughAccessChain_NonCascaded_InBoundsAccessChain.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_RemapStorageBuffer_ThroughAccessChain_NonCascaded_InBoundsAccessChain.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserMemoryTest_RemapStorageBuffer_TypesAndVarDeclarations.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserMemoryTest_RemapStorageBuffer_TypesAndVarDeclarations.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTestMiscInstruction_OpNop.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_BeforeFunction_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_BeforeFunction_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_InFunction_Array.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_InFunction_Matrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_InFunction_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_InFunction_Struct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTestMiscInstruction_OpUndef_InFunction_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_SpvBinaryBitTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_SpvBinaryBitTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_SpvBinaryBitTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseAnd_SpvBinaryBitTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_SpvBinaryBitTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_SpvBinaryBitTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_SpvBinaryBitTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseOr_SpvBinaryBitTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_MixedSignedness_SpvBinaryBitGeneralTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_SpvBinaryBitTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_SpvBinaryBitTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_SpvBinaryBitTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_BitwiseXor_SpvBinaryBitTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeExtract_Array.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeExtract_Matrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeExtract_Matrix_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeExtract_Struct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeExtract_Struct_Array_Matrix_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeExtract_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Array.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Matrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Matrix_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Struct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Struct_Array_Matrix_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Struct_DifferOnlyInMemberName.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CompositeInsert_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Composite_Construct_Array.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Composite_Construct_ConstantComposite_Struct_NoDeduplication.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserTest_Composite_Construct_Matrix.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Composite_Construct_Struct.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Composite_Construct_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_Array.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_ArrayStride_Valid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_Array_NoDeduplication.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserTest_ConvertType_Bool.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_F32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_I32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_Image_PretendVoid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_MatrixOverF32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerFunction.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerInput.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerOutput.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerPrivate.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerStorageBuffer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerToPointer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerUniform.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerUniformConstant.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_PointerWorkgroup.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_RuntimeArray.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_RuntimeArray_ArrayStride_Valid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_RuntimeArray_NoDeduplication.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserTest_ConvertType_SampledImage_PretendVoid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_Sampler_PretendVoid.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_StructTwoMembers.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_StructWithBlockDecoration.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_StructWithMemberDecorations.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_Struct_NoDeduplication.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserTest_ConvertType_U32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_VecOverF32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_VecOverI32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_VecOverU32.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ConvertType_Void.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CopyObject_Pointer.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_CopyObject_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_CalleePrecedesCaller.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_Fragment.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_GLCompute.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_GLCompute_LocalSize_Only.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_LocalSize_And_WGSBuiltin_SpecConstant.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_MultipleEntryPoints.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_Vertex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_WorkgroupSizeBuiltin_Constant_Only.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_WorkgroupSizeBuiltin_SpecConstant_Only.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_Function_EntryPoint_WorkgroupSize_MixedConstantSpecConstant.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_GenerateParamNames.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_MixedParamTypes.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_NonVoidResultType.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitFunctions_VoidFunctionWithoutParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitStatement_CallWithParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitStatement_ScalarCallNoParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitStatement_ScalarCallNoParamsUsedTwice.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_EmitStatement_VoidCallNoParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Emit_GenerateParamNames.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Emit_MixedParamTypes.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Emit_NonVoidResultType.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Emit_VoidFunctionWithoutParams.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FAdd_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FAdd_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FDiv_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FDiv_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FMul_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FMul_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdGreaterThan_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdGreaterThan_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdLessThanEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdLessThanEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdLessThan_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdLessThan_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdNotEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FOrdNotEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FRem_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FRem_SpvBinaryArithTest_EmitExpression_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTest_FRem_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FRem_SpvBinaryArithTest_EmitExpression_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTest_FSub_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_FSub_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Degrees_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Degrees_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_FaceForward_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_FaceForward_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Ldexp_Scalar_Float_Uint.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserTest_GlslStd450_Ldexp_Vector_Floatvec_Uintvec.spvasm Add more SPIR-V reader unit test samples 2021-09-27 20:55:53 +00:00
SpvParserTest_GlslStd450_Radians_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Radians_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Reflect_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Reflect_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Refract_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_GlslStd450_Refract_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_SpvBinaryArithTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IAdd_SpvBinaryArithTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IEqual_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IEqual_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IEqual_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IEqual_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_SpvBinaryArithTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_IMul_SpvBinaryArithTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_INotEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_INotEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_INotEqual_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_INotEqual_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_INotEqual_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_INotEqual_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_MixedSignedness_SpvBinaryArithGeneralTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_SpvBinaryArithTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ISub_SpvBinaryArithTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Impl_GenericVulkanShader_GLSL450MemoryModel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Impl_GenericVulkanShader_SimpleMemoryModel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Impl_GenericVulkanShader_VulkanMemoryModel.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Impl_Source_InvalidId.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Impl_Source_NoOpLine.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Impl_Source_WithOpLine_WithOpNoLine.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalAnd_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalAnd_SpvBinaryLogicalTest_EmitExpression_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTest_LogicalAnd_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalAnd_SpvBinaryLogicalTest_EmitExpression_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTest_LogicalEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalNotEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalNotEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalOr_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalOr_SpvBinaryLogicalTest_EmitExpression_0.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTest_LogicalOr_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_LogicalOr_SpvBinaryLogicalTest_EmitExpression_1.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvParserTest_Normalize_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Normalize_Vector2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Normalize_Vector3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_Normalize_Vector4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_SAbs.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_SClamp.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_SMax.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_SMin.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_UClamp.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_UMax.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_RectifyOperandsAndResult_UMin.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SDiv_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SDiv_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SDiv_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SDiv_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SDiv_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SDiv_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThan_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThan_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThan_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThan_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThan_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SGreaterThan_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThanEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThanEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThanEqual_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThanEqual_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThanEqual_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThanEqual_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThan_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThan_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThan_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThan_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThan_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SLessThan_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SMod_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SMod_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SMod_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SMod_MixedSignednessOperands_SpvBinaryArithTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SMod_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_SMod_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Unsigned_SpvBinaryBitTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Unsigned_SpvBinaryBitTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Unsigned_SpvBinaryBitTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_Arg2Unsigned_SpvBinaryBitTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_BitcastResult_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftLeftLogical_BitcastResult_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_BitcastResult_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightArithmetic_BitcastResult_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Signed_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_Arg2Unsigned_SpvBinaryBitGeneralTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_BitcastResult_SpvBinaryBitGeneralTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ShiftRightLogical_BitcastResult_SpvBinaryBitGeneralTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UDiv_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UDiv_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThanEqual_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThan_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThan_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThan_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThan_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThan_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UGreaterThan_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThanEqual_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThanEqual_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThanEqual_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThanEqual_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThanEqual_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThanEqual_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThan_SpvBinaryLogicalTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThan_SpvBinaryLogicalTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThan_SpvBinaryLogicalTest_EmitExpression_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThan_SpvBinaryLogicalTest_EmitExpression_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThan_SpvBinaryLogicalTest_EmitExpression_4.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ULessThan_SpvBinaryLogicalTest_EmitExpression_5.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UMod_SpvBinaryArithTest_EmitExpression_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_UMod_SpvBinaryArithTest_EmitExpression_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_ValueFromBlockNotInBlockOrder.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_VectorExtractDynamic_SignedIndex.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_VectorExtractDynamic_UnsignedIndex.spvasm Re-allow dynamic indexing of 'let' arrays and matrices 2022-01-06 18:11:01 +00:00
SpvParserTest_VectorExtractDynamic_UnsignedIndex.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvParserTest_VectorInsertDynamic_Sample.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_VectorShuffle_ConstantOperands_AllOnesMapToNull.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_VectorShuffle_ConstantOperands_UseBoth.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvParserTest_VectorShuffle_FunctionScopeOperands_UseBoth.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_FNegate_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_FNegate_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_Int_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_Int_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_SignedVec_SignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_SignedVec_UnsignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_Uint_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_Uint_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_UnsignedVec_SignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_SNegate_UnsignedVec_UnsignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_Transpose_2x2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_Transpose_2x3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryArithTest_Transpose_3x2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_IntVector_IntVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_IntVector_IntVector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_IntVector_UintVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_IntVector_UintVector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_Int_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_Int_Int.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_Int_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_Int_Uint.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_UintVector_IntVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_UintVector_IntVector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_UintVector_UintVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_UintVector_UintVector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_Uint_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_Uint_Int.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitCount_Uint_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitCount_Uint_Uint.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitReverse_IntVector_IntVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitReverse_IntVector_IntVector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitReverse_Int_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitReverse_Int_Int.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitReverse_UintVector_UintVector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitReverse_UintVector_UintVector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_BitReverse_Uint_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_BitReverse_Uint_Uint.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
SpvUnaryBitTest_Not_Int_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_Int_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_SignedVec_SignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_SignedVec_UnsignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_Uint_Int.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_Uint_Uint.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_UnsignedVec_SignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryBitTest_Not_UnsignedVec_UnsignedVec.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_Bitcast_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_Bitcast_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToS_Scalar_ToSigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToS_Scalar_ToUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToS_Vector_ToSigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToS_Vector_ToUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToU_HoistedValue.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToU_HoistedValue.spvasm.expected.hlsl validation: Error on obviously infinite loops 2022-01-14 17:16:32 +00:00
SpvUnaryConversionTest_ConvertFToU_Scalar_ToUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertFToU_Vector_ToUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertSToF_Scalar_FromSigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertSToF_Scalar_FromUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertSToF_Vector_FromSigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertSToF_Vector_FromUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertUToF_Scalar_FromSigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertUToF_Scalar_FromUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertUToF_Vector_FromSigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryConversionTest_ConvertUToF_Vector_FromUnsigned.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryLogicalTest_LogicalNot_Scalar.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryLogicalTest_LogicalNot_Vector.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
SpvUnaryLogicalTest_LogicalNot_Vector.spvasm.expected.glsl GLSL: move entry point handling to CanonicalizeEntryPointIO transform. 2022-01-28 22:36:58 +00:00
ValidIndex_SpvParserSwizzleTest_Sample_0.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ValidIndex_SpvParserSwizzleTest_Sample_1.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ValidIndex_SpvParserSwizzleTest_Sample_2.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00
ValidIndex_SpvParserSwizzleTest_Sample_3.spvasm Add end-to-end corpus from Tint SPIR-V Reader 2021-07-30 16:03:06 +00:00