Merge branch 'KhronosGroup:master' into master
[platform/upstream/glslang.git] / gtests / Spv.FromFile.cpp
1  //
2 // Copyright (C) 2016 Google, Inc.
3 // Copyright (C) 2019 ARM Limited.
4 // Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved.
5 //
6 // All rights reserved.
7 //
8 // Redistribution and use in source and binary forms, with or without
9 // modification, are permitted provided that the following conditions
10 // are met:
11 //
12 //    Redistributions of source code must retain the above copyright
13 //    notice, this list of conditions and the following disclaimer.
14 //
15 //    Redistributions in binary form must reproduce the above
16 //    copyright notice, this list of conditions and the following
17 //    disclaimer in the documentation and/or other materials provided
18 //    with the distribution.
19 //
20 //    Neither the name of Google Inc. nor the names of its
21 //    contributors may be used to endorse or promote products derived
22 //    from this software without specific prior written permission.
23 //
24 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28 // COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 // POSSIBILITY OF SUCH DAMAGE.
36
37 #include <algorithm>
38
39 #include <gtest/gtest.h>
40
41 #include "TestFixture.h"
42
43 namespace glslangtest {
44 namespace {
45
46 struct IoMapData {
47     const char* fileName;
48     const char* entryPoint;
49     int baseSamplerBinding;
50     int baseTextureBinding;
51     int baseImageBinding;
52     int baseUboBinding;
53     int baseSsboBinding;
54     bool autoMapBindings;
55     bool flattenUniforms;
56 };
57
58 std::string FileNameAsCustomTestSuffixIoMap(
59     const ::testing::TestParamInfo<IoMapData>& info) {
60     std::string name = info.param.fileName;
61     // A valid test case suffix cannot have '.' and '-' inside.
62     std::replace(name.begin(), name.end(), '.', '_');
63     std::replace(name.begin(), name.end(), '-', '_');
64     return name;
65 }
66
67 using CompileVulkanToSpirvTest = GlslangTest<::testing::TestWithParam<std::string>>;
68 using CompileVulkanToSpirvDeadCodeElimTest = GlslangTest<::testing::TestWithParam<std::string>>;
69 using CompileVulkanToDebugSpirvTest = GlslangTest<::testing::TestWithParam<std::string>>;
70 using CompileVulkan1_1ToSpirvTest = GlslangTest<::testing::TestWithParam<std::string>>;
71 using CompileToSpirv14Test = GlslangTest<::testing::TestWithParam<std::string>>;
72 using CompileOpenGLToSpirvTest = GlslangTest<::testing::TestWithParam<std::string>>;
73 using VulkanSemantics = GlslangTest<::testing::TestWithParam<std::string>>;
74 using OpenGLSemantics = GlslangTest<::testing::TestWithParam<std::string>>;
75 using VulkanAstSemantics = GlslangTest<::testing::TestWithParam<std::string>>;
76 using HlslIoMap = GlslangTest<::testing::TestWithParam<IoMapData>>;
77 using GlslIoMap = GlslangTest<::testing::TestWithParam<IoMapData>>;
78 using CompileVulkanToSpirvTestAMD = GlslangTest<::testing::TestWithParam<std::string>>;
79 using CompileVulkanToSpirvTestNV = GlslangTest<::testing::TestWithParam<std::string>>;
80 using CompileUpgradeTextureToSampledTextureAndDropSamplersTest = GlslangTest<::testing::TestWithParam<std::string>>;
81
82 // Compiling GLSL to SPIR-V under Vulkan semantics. Expected to successfully
83 // generate SPIR-V.
84 TEST_P(CompileVulkanToSpirvTest, FromFile)
85 {
86     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
87                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
88                             Target::Spv);
89 }
90
91 TEST_P(CompileVulkanToSpirvDeadCodeElimTest, FromFile)
92 {
93     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
94                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
95                             Target::Spv);
96 }
97
98 // Compiling GLSL to SPIR-V with debug info under Vulkan semantics. Expected
99 // to successfully generate SPIR-V.
100 TEST_P(CompileVulkanToDebugSpirvTest, FromFile)
101 {
102     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
103                             Source::GLSL, Semantics::Vulkan,
104                             glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
105                             Target::Spv, true, "",
106                             "/baseResults/", false, true);
107 }
108
109
110 TEST_P(CompileVulkan1_1ToSpirvTest, FromFile)
111 {
112     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
113                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_1, glslang::EShTargetSpv_1_3,
114                             Target::Spv);
115 }
116
117 TEST_P(CompileToSpirv14Test, FromFile)
118 {
119     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
120                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_1, glslang::EShTargetSpv_1_4,
121                             Target::Spv);
122 }
123
124 // Compiling GLSL to SPIR-V under OpenGL semantics. Expected to successfully
125 // generate SPIR-V.
126 TEST_P(CompileOpenGLToSpirvTest, FromFile)
127 {
128     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
129                             Source::GLSL, Semantics::OpenGL, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
130                             Target::Spv);
131 }
132
133 // GLSL-level Vulkan semantics test. Expected to error out before generating
134 // SPIR-V.
135 TEST_P(VulkanSemantics, FromFile)
136 {
137     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
138                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
139                             Target::Spv, false);
140 }
141
142 // GLSL-level Vulkan semantics test. Expected to error out before generating
143 // SPIR-V.
144 TEST_P(OpenGLSemantics, FromFile)
145 {
146     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
147                             Source::GLSL, Semantics::OpenGL, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
148                             Target::Spv, false);
149 }
150
151 // GLSL-level Vulkan semantics test that need to see the AST for validation.
152 TEST_P(VulkanAstSemantics, FromFile)
153 {
154     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
155                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
156                             Target::AST);
157 }
158
159 // HLSL-level Vulkan semantics tests.
160 TEST_P(HlslIoMap, FromFile)
161 {
162     loadFileCompileIoMapAndCheck(GlobalTestSettings.testRoot, GetParam().fileName,
163                                  Source::HLSL, Semantics::Vulkan,
164                                  Target::Spv, GetParam().entryPoint,
165                                  GetParam().baseSamplerBinding,
166                                  GetParam().baseTextureBinding,
167                                  GetParam().baseImageBinding,
168                                  GetParam().baseUboBinding,
169                                  GetParam().baseSsboBinding,
170                                  GetParam().autoMapBindings,
171                                  GetParam().flattenUniforms);
172 }
173
174 // GLSL-level Vulkan semantics tests.
175 TEST_P(GlslIoMap, FromFile)
176 {
177     loadFileCompileIoMapAndCheck(GlobalTestSettings.testRoot, GetParam().fileName,
178                                  Source::GLSL, Semantics::Vulkan,
179                                  Target::Spv, GetParam().entryPoint,
180                                  GetParam().baseSamplerBinding,
181                                  GetParam().baseTextureBinding,
182                                  GetParam().baseImageBinding,
183                                  GetParam().baseUboBinding,
184                                  GetParam().baseSsboBinding,
185                                  GetParam().autoMapBindings,
186                                  GetParam().flattenUniforms);
187 }
188
189 // Compiling GLSL to SPIR-V under Vulkan semantics (AMD extensions enabled).
190 // Expected to successfully generate SPIR-V.
191 TEST_P(CompileVulkanToSpirvTestAMD, FromFile)
192 {
193     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
194                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
195                             Target::Spv);
196 }
197
198 // Compiling GLSL to SPIR-V under Vulkan semantics (NV extensions enabled).
199 // Expected to successfully generate SPIR-V.
200 TEST_P(CompileVulkanToSpirvTestNV, FromFile)
201 {
202     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
203                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
204                             Target::Spv);
205 }
206
207 TEST_P(CompileUpgradeTextureToSampledTextureAndDropSamplersTest, FromFile)
208 {
209     loadCompileUpgradeTextureToSampledTextureAndDropSamplersAndCheck(GlobalTestSettings.testRoot,
210                                                                      GetParam(),
211                                                                      Source::GLSL,
212                                                                      Semantics::Vulkan,
213                                                                      Target::Spv);
214 }
215
216 // clang-format off
217 INSTANTIATE_TEST_SUITE_P(
218     Glsl, CompileVulkanToSpirvTest,
219     ::testing::ValuesIn(std::vector<std::string>({
220         // Test looping constructs.
221         // No tests yet for making sure break and continue from a nested loop
222         // goes to the innermost target.
223         "spv.barrier.vert",
224         "spv.do-simple.vert",
225         "spv.do-while-continue-break.vert",
226         "spv.for-complex-condition.vert",
227         "spv.for-continue-break.vert",
228         "spv.for-simple.vert",
229         "spv.for-notest.vert",
230         "spv.for-nobody.vert",
231         "spv.while-continue-break.vert",
232         "spv.while-simple.vert",
233         // vulkan-specific tests
234         "rayQuery.rgen",
235         "rayQuery-no-cse.rgen",
236         "rayQuery-initialize.rgen",
237         "rayQuery-allOps.rgen",
238         "rayQuery-allOps.Error.rgen",
239         "rayQuery-committed.Error.rgen",
240         "rayQuery-allOps.comp",
241         "rayQuery-allOps.frag",
242         "rayQuery-initialization.Error.comp",
243         "rayQuery-global.rgen",
244         "rayQuery-types.comp",
245         "spv.set.vert",
246         "spv.double.comp",
247         "spv.100ops.frag",
248         "spv.130.frag",
249         "spv.140.frag",
250         "spv.150.geom",
251         "spv.150.vert",
252         "spv.16bitstorage.frag",
253         "spv.16bitstorage_Error.frag",
254         "spv.16bitstorage-int.frag",
255         "spv.16bitstorage_Error-int.frag",
256         "spv.16bitstorage-uint.frag",
257         "spv.16bitstorage_Error-uint.frag",
258         "spv.300BuiltIns.vert",
259         "spv.300layout.frag",
260         "spv.300layout.vert",
261         "spv.300layoutp.vert",
262         "spv.310.comp",
263         "spv.310.bitcast.frag",
264         "spv.330.geom",
265         "spv.400.frag",
266         "spv.400.tesc",
267         "spv.400.tese",
268         "spv.420.geom",
269         "spv.430.frag",
270         "spv.430.vert",
271         "spv.450.tesc",
272         "spv.450.geom",
273         "spv.450.noRedecl.tesc",
274         "spv.8bitstorage-int.frag",
275         "spv.8bitstorage_Error-int.frag",
276         "spv.8bitstorage-uint.frag",
277         "spv.8bitstorage_Error-uint.frag",
278         "spv.8bitstorage-ubo.vert",
279         "spv.8bitstorage-ssbo.vert",
280         "spv.8bit-16bit-construction.frag",
281         "spv.accessChain.frag",
282         "spv.aggOps.frag",
283         "spv.always-discard.frag",
284         "spv.always-discard2.frag",
285         "spv.arbPostDepthCoverage.frag",
286         "spv.arbPostDepthCoverage_Error.frag",
287         "spv.atomicCounter.comp",
288         "spv.bitCast.frag",
289         "spv.bool.vert",
290         "spv.boolInBlock.frag",
291         "spv.branch-return.vert",
292         "spv.bufferhandle1.frag",
293         "spv.bufferhandle10.frag",
294         "spv.bufferhandle11.frag",
295         "spv.bufferhandle12.frag",
296         "spv.bufferhandle13.frag",
297         "spv.bufferhandle14.frag",
298         "spv.bufferhandle15.frag",
299         "spv.bufferhandle16.frag",
300         "spv.bufferhandle17_Errors.frag",
301         "spv.bufferhandle18.frag",
302         "spv.bufferhandle19_Errors.frag",
303         "spv.bufferhandle2.frag",
304         "spv.bufferhandle3.frag",
305         "spv.bufferhandle4.frag",
306         "spv.bufferhandle5.frag",
307         "spv.bufferhandle6.frag",
308         "spv.bufferhandle7.frag",
309         "spv.bufferhandle8.frag",
310         "spv.bufferhandle9.frag",
311         "spv.bufferhandleUvec2.frag",
312         "spv.bufferhandle_Error.frag",
313         "spv.builtInXFB.vert",
314         "spv.conditionalDemote.frag",
315         "spv.conditionalDiscard.frag",
316         "spv.constructComposite.comp",
317         "spv.constStruct.vert",
318         "spv.constConstruct.vert",
319         "spv.controlFlowAttributes.frag",
320         "spv.conversion.frag",
321         "spv.coopmat.comp",
322         "spv.coopmat_Error.comp",
323         "spv.dataOut.frag",
324         "spv.dataOutIndirect.frag",
325         "spv.dataOutIndirect.vert",
326         "spv.debugPrintf.frag",
327         "spv.debugPrintf_Error.frag",
328         "spv.demoteDisabled.frag",
329         "spv.deepRvalue.frag",
330         "spv.depthOut.frag",
331         "spv.depthUnchanged.frag",
332         "spv.discard-dce.frag",
333         "spv.doWhileLoop.frag",
334         "spv.earlyReturnDiscard.frag",
335         "spv.extPostDepthCoverage.frag",
336         "spv.extPostDepthCoverage_Error.frag",
337         "spv.float16convertonlyarith.comp",
338         "spv.float16convertonlystorage.comp",
339         "spv.flowControl.frag",
340         "spv.forLoop.frag",
341         "spv.forwardFun.frag",
342         "spv.fragmentDensity.frag",
343         "spv.fragmentDensity.vert",
344         "spv.fragmentDensity-es.frag",
345         "spv.fragmentDensity-neg.frag",
346         "spv.fsi.frag",
347         "spv.fsi_Error.frag",
348         "spv.fullyCovered.frag",
349         "spv.functionCall.frag",
350         "spv.functionNestedOpaque.vert",
351         "spv.functionSemantics.frag",
352         "spv.functionParameterTypes.frag",
353         "spv.GeometryShaderPassthrough.geom",
354         "spv.funcall.array.frag",
355         "spv.interpOps.frag",
356         "spv.int64.frag",
357         "spv.intcoopmat.comp",
358         "spv.intOps.vert",
359         "spv.intrinsicsSpirvByReference.vert",
360         "spv.intrinsicsSpirvDecorate.frag",
361         "spv.intrinsicsSpirvExecutionMode.frag",
362         "spv.intrinsicsSpirvInstruction.vert",
363         "spv.intrinsicsSpirvLiteral.vert",
364         "spv.intrinsicsSpirvStorageClass.rchit",
365         "spv.intrinsicsSpirvType.rgen",
366         "spv.layer.tese",
367         "spv.layoutNested.vert",
368         "spv.length.frag",
369         "spv.localAggregates.frag",
370         "spv.loops.frag",
371         "spv.loopsArtificial.frag",
372         "spv.matFun.vert",
373         "spv.matrix.frag",
374         "spv.matrix2.frag",
375         "spv.memoryQualifier.frag",
376         "spv.merge-unreachable.frag",
377         "spv.multiStruct.comp",
378         "spv.multiStructFuncall.frag",
379         "spv.newTexture.frag",
380         "spv.noDeadDecorations.vert",
381         "spv.nonSquare.vert",
382         "spv.nonuniform.frag",
383         "spv.nonuniform2.frag",
384         "spv.nonuniform3.frag",
385         "spv.nonuniform4.frag",
386         "spv.nonuniform5.frag",
387         "spv.noWorkgroup.comp",
388         "spv.nullInit.comp",
389         "spv.offsets.frag",
390         "spv.Operations.frag",
391         "spv.paramMemory.frag",
392         "spv.paramMemory.420.frag",
393         "spv.precision.frag",
394         "spv.precisionArgs.frag",
395         "spv.precisionNonESSamp.frag",
396         "spv.precisionTexture.frag",
397         "spv.prepost.frag",
398         "spv.privateVariableTypes.frag",
399         "spv.qualifiers.vert",
400         "spv.sample.frag",
401         "spv.sampleId.frag",
402         "spv.samplePosition.frag",
403         "spv.sampleMaskOverrideCoverage.frag",
404         "spv.scalarlayout.frag",
405         "spv.scalarlayoutfloat16.frag",
406         "spv.shaderBallot.comp",
407         "spv.shaderDrawParams.vert",
408         "spv.shaderGroupVote.comp",
409         "spv.shaderStencilExport.frag",
410         "spv.shiftOps.frag",
411         "spv.simpleFunctionCall.frag",
412         "spv.simpleMat.vert",
413         "spv.sparseTexture.frag",
414         "spv.sparseTextureClamp.frag",
415         "spv.structAssignment.frag",
416         "spv.structDeref.frag",
417         "spv.structure.frag",
418         "spv.switch.frag",
419         "spv.swizzle.frag",
420         "spv.swizzleInversion.frag",
421         "spv.test.frag",
422         "spv.test.vert",
423         "spv.texture.frag",
424         "spv.texture.vert",
425         "spv.textureBuffer.vert",
426         "spv.image.frag",
427         "spv.imageAtomic64.frag",
428         "spv.types.frag",
429         "spv.uint.frag",
430         "spv.uniformArray.frag",
431         "spv.variableArrayIndex.frag",
432         "spv.varyingArray.frag",
433         "spv.varyingArrayIndirect.frag",
434         "spv.vecMatConstruct.frag",
435         "spv.voidFunction.frag",
436         "spv.whileLoop.frag",
437         "spv.AofA.frag",
438         "spv.queryL.frag",
439         "spv.separate.frag",
440         "spv.shortCircuit.frag",
441         "spv.pushConstant.vert",
442         "spv.pushConstantAnon.vert",
443         "spv.subpass.frag",
444         "spv.specConstant.vert",
445         "spv.specConstant.comp",
446         "spv.specConstantComposite.vert",
447         "spv.specConstantOperations.vert",
448         "spv.specConstant.float16.comp",
449         "spv.specConstant.int16.comp",
450         "spv.specConstant.int8.comp",
451         "spv.storageBuffer.vert",
452         "spv.terminate.frag",
453         "spv.subgroupUniformControlFlow.vert",
454         "spv.precise.tese",
455         "spv.precise.tesc",
456         "spv.viewportindex.tese",
457         "spv.volatileAtomic.comp",
458         "spv.vulkan100.subgroupArithmetic.comp",
459         "spv.vulkan100.subgroupPartitioned.comp",
460         "spv.xfb.vert",
461         "spv.xfb2.vert",
462         "spv.xfb3.vert",
463         "spv.samplerlessTextureFunctions.frag",
464         "spv.smBuiltins.vert",
465         "spv.smBuiltins.frag",
466         "spv.builtin.PrimitiveShadingRateEXT.vert",
467         "spv.builtin.ShadingRateEXT.frag",
468     })),
469     FileNameAsCustomTestSuffix
470 );
471
472 // Cases with deliberately unreachable code.
473 // By default the compiler will aggressively eliminate
474 // unreachable merges and continues.
475 INSTANTIATE_TEST_SUITE_P(
476     GlslWithDeadCode, CompileVulkanToSpirvDeadCodeElimTest,
477     ::testing::ValuesIn(std::vector<std::string>({
478         "spv.dead-after-continue.vert",
479         "spv.dead-after-discard.frag",
480         "spv.dead-after-return.vert",
481         "spv.dead-after-loop-break.vert",
482         "spv.dead-after-switch-break.vert",
483         "spv.dead-complex-continue-after-return.vert",
484         "spv.dead-complex-merge-after-return.vert",
485     })),
486     FileNameAsCustomTestSuffix
487 );
488
489 // clang-format off
490 INSTANTIATE_TEST_SUITE_P(
491     Glsl, CompileVulkanToDebugSpirvTest,
492     ::testing::ValuesIn(std::vector<std::string>({
493         "spv.pp.line.frag",
494     })),
495     FileNameAsCustomTestSuffix
496 );
497
498 // clang-format off
499 INSTANTIATE_TEST_SUITE_P(
500     Glsl, CompileVulkan1_1ToSpirvTest,
501     ::testing::ValuesIn(std::vector<std::string>({
502         "spv.1.3.8bitstorage-ubo.vert",
503         "spv.1.3.8bitstorage-ssbo.vert",
504         "spv.1.3.coopmat.comp",
505         "spv.deviceGroup.frag",
506         "spv.drawParams.vert",
507         "spv.int8.frag",
508         "spv.vulkan110.int16.frag",
509         "spv.int32.frag",
510         "spv.explicittypes.frag",
511         "spv.float32.frag",
512         "spv.float64.frag",
513         "spv.memoryScopeSemantics.comp",
514         "spv.memoryScopeSemantics_Error.comp",
515         "spv.multiView.frag",
516         "spv.queueFamilyScope.comp",
517         "spv.RayGenShader11.rgen",
518         "spv.subgroup.frag",
519         "spv.subgroup.geom",
520         "spv.subgroup.tesc",
521         "spv.subgroup.tese",
522         "spv.subgroup.vert",
523         "spv.subgroupArithmetic.comp",
524         "spv.subgroupBasic.comp",
525         "spv.subgroupBallot.comp",
526         "spv.subgroupBallotNeg.comp",
527         "spv.subgroupClustered.comp",
528         "spv.subgroupClusteredNeg.comp",
529         "spv.subgroupPartitioned.comp",
530         "spv.subgroupShuffle.comp",
531         "spv.subgroupShuffleRelative.comp",
532         "spv.subgroupQuad.comp",
533         "spv.subgroupVote.comp",
534         "spv.subgroupExtendedTypesArithmetic.comp",
535         "spv.subgroupExtendedTypesArithmeticNeg.comp",
536         "spv.subgroupExtendedTypesBallot.comp",
537         "spv.subgroupExtendedTypesBallotNeg.comp",
538         "spv.subgroupExtendedTypesClustered.comp",
539         "spv.subgroupExtendedTypesClusteredNeg.comp",
540         "spv.subgroupExtendedTypesPartitioned.comp",
541         "spv.subgroupExtendedTypesPartitionedNeg.comp",
542         "spv.subgroupExtendedTypesShuffle.comp",
543         "spv.subgroupExtendedTypesShuffleNeg.comp",
544         "spv.subgroupExtendedTypesShuffleRelative.comp",
545         "spv.subgroupExtendedTypesShuffleRelativeNeg.comp",
546         "spv.subgroupExtendedTypesQuad.comp",
547         "spv.subgroupExtendedTypesQuadNeg.comp",
548         "spv.subgroupExtendedTypesVote.comp",
549         "spv.subgroupExtendedTypesVoteNeg.comp",
550         "spv.vulkan110.storageBuffer.vert",
551     })),
552     FileNameAsCustomTestSuffix
553 );
554
555 // clang-format off
556 INSTANTIATE_TEST_SUITE_P(
557     Glsl, CompileToSpirv14Test,
558     ::testing::ValuesIn(std::vector<std::string>({
559         "spv.1.4.LoopControl.frag",
560         "spv.1.4.NonWritable.frag",
561         "spv.1.4.OpEntryPoint.frag",
562         "spv.1.4.OpEntryPoint.opaqueParams.vert",
563         "spv.1.4.OpSelect.frag",
564         "spv.1.4.OpCopyLogical.comp",
565         "spv.1.4.OpCopyLogicalBool.comp",
566         "spv.1.4.OpCopyLogical.funcall.frag",
567         "spv.1.4.funcall.array.frag",
568         "spv.1.4.image.frag",
569         "spv.1.4.sparseTexture.frag",
570         "spv.1.4.texture.frag",
571         "spv.1.4.constructComposite.comp",
572         "spv.ext.AnyHitShader.rahit",
573         "spv.ext.AnyHitShader_Errors.rahit",
574         "spv.ext.ClosestHitShader.rchit",
575         "spv.ext.ClosestHitShader_Subgroup.rchit",
576         "spv.ext.ClosestHitShader_Errors.rchit",
577         "spv.ext.IntersectShader.rint",
578         "spv.ext.IntersectShader_Errors.rint",
579         "spv.ext.MissShader.rmiss",
580         "spv.ext.MissShader_Errors.rmiss",
581         "spv.ext.RayPrimCull_Errors.rgen",
582         "spv.ext.RayCallable.rcall",
583         "spv.ext.RayCallable_Errors.rcall",
584         "spv.ext.RayConstants.rgen",
585         "spv.ext.RayGenShader.rgen",
586         "spv.ext.RayGenShader_Errors.rgen",
587         "spv.ext.RayGenShader11.rgen",
588         "spv.ext.RayGenShaderArray.rgen",
589         "spv.ext.RayGenSBTlayout.rgen",
590         "spv.ext.RayGenSBTlayout140.rgen",
591         "spv.ext.RayGenSBTlayout430.rgen",
592         "spv.ext.RayGenSBTlayoutscalar.rgen",
593         "spv.ext.World3x4.rahit",
594         "spv.ext.AccelDecl.frag",
595         "spv.ext.RayQueryDecl.frag",
596
597         // SPV_KHR_workgroup_memory_explicit_layout depends on SPIR-V 1.4.
598         "spv.WorkgroupMemoryExplicitLayout.SingleBlock.comp",
599         "spv.WorkgroupMemoryExplicitLayout.MultiBlock.comp",
600         "spv.WorkgroupMemoryExplicitLayout.8BitAccess.comp",
601         "spv.WorkgroupMemoryExplicitLayout.16BitAccess.comp",
602         "spv.WorkgroupMemoryExplicitLayout.NonBlock.comp",
603         "spv.WorkgroupMemoryExplicitLayout.MixBlockNonBlock_Errors.comp",
604         "spv.WorkgroupMemoryExplicitLayout.std140.comp",
605         "spv.WorkgroupMemoryExplicitLayout.std430.comp",
606         "spv.WorkgroupMemoryExplicitLayout.scalar.comp",
607     })),
608     FileNameAsCustomTestSuffix
609 );
610
611 // clang-format off
612 INSTANTIATE_TEST_SUITE_P(
613     Hlsl, HlslIoMap,
614     ::testing::ValuesIn(std::vector<IoMapData>{
615         { "spv.register.autoassign.frag", "main_ep", 5, 10, 0, 20, 30, true, false },
616         { "spv.register.noautoassign.frag", "main_ep", 5, 10, 0, 15, 30, false, false },
617         { "spv.register.autoassign-2.frag", "main", 5, 10, 0, 15, 30, true, true },
618         { "spv.register.subpass.frag", "main", 0, 20, 0, 0, 0, true, true },
619         { "spv.buffer.autoassign.frag", "main", 5, 10, 0, 15, 30, true, true },
620         { "spv.ssbo.autoassign.frag", "main", 5, 10, 0, 15, 30, true, true },
621         { "spv.ssboAlias.frag", "main", 0, 0, 0, 0, 83, true, false },
622         { "spv.rw.autoassign.frag", "main", 5, 10, 20, 15, 30, true, true },
623         { "spv.register.autoassign.rangetest.frag", "main",
624                 glslang::TQualifier::layoutBindingEnd-2,
625                 glslang::TQualifier::layoutBindingEnd+5,
626                 20, 30, true, false },
627     }),
628     FileNameAsCustomTestSuffixIoMap
629 );
630
631 // clang-format off
632 INSTANTIATE_TEST_SUITE_P(
633     Hlsl, GlslIoMap,
634     ::testing::ValuesIn(std::vector<IoMapData>{
635         { "spv.glsl.register.autoassign.frag", "main", 5, 10, 0, 20, 30, true, false },
636         { "spv.glsl.register.noautoassign.frag", "main", 5, 10, 0, 15, 30, false, false },
637     }),
638     FileNameAsCustomTestSuffixIoMap
639 );
640
641 // clang-format off
642 INSTANTIATE_TEST_SUITE_P(
643     Glsl, CompileOpenGLToSpirvTest,
644     ::testing::ValuesIn(std::vector<std::string>({
645         "spv.460.frag",
646         "spv.460.vert",
647         "spv.460.comp",
648         "spv.atomic.comp",
649         "spv.atomicFloat.comp",
650         "spv.atomicFloat_Error.comp",
651         "spv.glFragColor.frag",
652         "spv.rankShift.comp",
653         "spv.specConst.vert",
654         "spv.specTexture.frag",
655         "spv.OVR_multiview.vert",
656         "spv.uniformInitializer.frag",
657         "spv.uniformInitializerSpecConstant.frag",
658         "spv.uniformInitializerStruct.frag",
659         "spv.xfbOffsetOnBlockMembersAssignment.vert",
660         "spv.xfbOffsetOnStructMembersAssignment.vert",
661         "spv.xfbOverlapOffsetCheckWithBlockAndMember.vert",
662         "spv.xfbStrideJustOnce.vert",
663     })),
664     FileNameAsCustomTestSuffix
665 );
666
667 INSTANTIATE_TEST_SUITE_P(
668     Glsl, VulkanSemantics,
669     ::testing::ValuesIn(std::vector<std::string>({
670         "vulkan.frag",
671         "vulkan.vert",
672         "vulkan.comp",
673         "samplerlessTextureFunctions.frag",
674         "spv.specConstArrayCheck.vert",
675     })),
676     FileNameAsCustomTestSuffix
677 );
678
679 INSTANTIATE_TEST_SUITE_P(
680     Glsl, OpenGLSemantics,
681     ::testing::ValuesIn(std::vector<std::string>({
682         "glspv.esversion.vert",
683         "glspv.version.frag",
684         "glspv.version.vert",
685         "glspv.frag",
686         "glspv.vert",
687     })),
688     FileNameAsCustomTestSuffix
689 );
690
691 INSTANTIATE_TEST_SUITE_P(
692     Glsl, VulkanAstSemantics,
693     ::testing::ValuesIn(std::vector<std::string>({
694         "vulkan.ast.vert",
695     })),
696     FileNameAsCustomTestSuffix
697 );
698
699 INSTANTIATE_TEST_SUITE_P(
700     Glsl, CompileVulkanToSpirvTestAMD,
701     ::testing::ValuesIn(std::vector<std::string>({
702         "spv.16bitxfb.vert",
703         "spv.float16.frag",
704         "spv.float16Fetch.frag",
705         "spv.imageLoadStoreLod.frag",
706         "spv.int16.frag",
707         "spv.int16.amd.frag",
708         "spv.shaderBallotAMD.comp",
709         "spv.shaderFragMaskAMD.frag",
710         "spv.textureGatherBiasLod.frag",
711     })),
712     FileNameAsCustomTestSuffix
713 );
714
715 INSTANTIATE_TEST_SUITE_P(
716     Glsl, CompileVulkanToSpirvTestNV,
717     ::testing::ValuesIn(std::vector<std::string>({
718     "spv.sampleMaskOverrideCoverage.frag",
719     "spv.GeometryShaderPassthrough.geom",
720     "spv.viewportArray2.vert",
721     "spv.viewportArray2.tesc",
722     "spv.stereoViewRendering.vert",
723     "spv.stereoViewRendering.tesc",
724     "spv.multiviewPerViewAttributes.vert",
725     "spv.multiviewPerViewAttributes.tesc",
726     "spv.atomicInt64.comp",
727     "spv.atomicStoreInt64.comp",
728     "spv.shadingRate.frag",
729     "spv.RayGenShader.rgen",
730     "spv.RayGenShaderArray.rgen",
731     "spv.RayGenShader_Errors.rgen",
732     "spv.RayConstants.rgen",
733     "spv.IntersectShader.rint",
734     "spv.IntersectShader_Errors.rint",
735     "spv.AnyHitShader.rahit",
736     "spv.AnyHitShader_Errors.rahit",
737     "spv.ClosestHitShader.rchit",
738     "spv.ClosestHitShader_Errors.rchit",
739     "spv.MissShader.rmiss",
740     "spv.MissShader_Errors.rmiss",
741     "spv.RayCallable.rcall",
742     "spv.RayCallable_Errors.rcall",
743     "spv.fragmentShaderBarycentric.frag",
744     "spv.fragmentShaderBarycentric2.frag",
745     "spv.computeShaderDerivatives.comp",
746     "spv.computeShaderDerivatives2.comp",
747     "spv.shaderImageFootprint.frag",
748     "spv.meshShaderBuiltins.mesh",
749     "spv.meshShaderUserDefined.mesh",
750     "spv.meshShaderPerViewBuiltins.mesh",
751     "spv.meshShaderPerViewUserDefined.mesh",
752     "spv.meshShaderPerView_Errors.mesh",
753     "spv.meshShaderSharedMem.mesh",
754     "spv.meshShaderTaskMem.mesh",
755     "spv.320.meshShaderUserDefined.mesh",
756     "spv.meshShaderRedeclBuiltins.mesh",
757     "spv.meshShaderRedeclPerViewBuiltins.mesh",
758     "spv.meshTaskShader.task",
759     "spv.perprimitiveNV.frag",
760 })),
761 FileNameAsCustomTestSuffix
762 );
763
764 INSTANTIATE_TEST_SUITE_P(
765     Glsl, CompileUpgradeTextureToSampledTextureAndDropSamplersTest,
766     ::testing::ValuesIn(std::vector<std::string>({
767       "spv.texture.sampler.transform.frag",
768     })),
769     FileNameAsCustomTestSuffix
770 );
771 // clang-format on
772
773 }  // anonymous namespace
774 }  // namespace glslangtest