ed0f5cada52de68e64a4e8cefe73089e098ee481
[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 CompileToSpirv16Test = GlslangTest<::testing::TestWithParam<std::string>>;
73 using CompileOpenGLToSpirvTest = GlslangTest<::testing::TestWithParam<std::string>>;
74 using VulkanSemantics = GlslangTest<::testing::TestWithParam<std::string>>;
75 using OpenGLSemantics = GlslangTest<::testing::TestWithParam<std::string>>;
76 using VulkanAstSemantics = GlslangTest<::testing::TestWithParam<std::string>>;
77 using HlslIoMap = GlslangTest<::testing::TestWithParam<IoMapData>>;
78 using GlslIoMap = GlslangTest<::testing::TestWithParam<IoMapData>>;
79 using CompileVulkanToSpirvTestAMD = GlslangTest<::testing::TestWithParam<std::string>>;
80 using CompileVulkanToSpirvTestNV = GlslangTest<::testing::TestWithParam<std::string>>;
81 using CompileVulkanToSpirv14TestNV = GlslangTest<::testing::TestWithParam<std::string>>;
82 using CompileUpgradeTextureToSampledTextureAndDropSamplersTest = GlslangTest<::testing::TestWithParam<std::string>>;
83 using CompileVulkanToNonSemanticShaderDebugInfoTest = GlslangTest<::testing::TestWithParam<std::string>>;
84
85 // Compiling GLSL to SPIR-V under Vulkan semantics. Expected to successfully
86 // generate SPIR-V.
87 TEST_P(CompileVulkanToSpirvTest, FromFile)
88 {
89     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
90                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
91                             Target::Spv);
92 }
93
94 TEST_P(CompileVulkanToSpirvDeadCodeElimTest, FromFile)
95 {
96     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
97                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
98                             Target::Spv);
99 }
100
101 // Compiling GLSL to SPIR-V with debug info under Vulkan semantics. Expected
102 // to successfully generate SPIR-V.
103 TEST_P(CompileVulkanToDebugSpirvTest, FromFile)
104 {
105     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
106                             Source::GLSL, Semantics::Vulkan,
107                             glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
108                             Target::Spv, true, "",
109                             "/baseResults/", false, true);
110 }
111
112
113 TEST_P(CompileVulkan1_1ToSpirvTest, FromFile)
114 {
115     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
116                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_1, glslang::EShTargetSpv_1_3,
117                             Target::Spv);
118 }
119
120 TEST_P(CompileToSpirv14Test, FromFile)
121 {
122     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
123                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_1, glslang::EShTargetSpv_1_4,
124                             Target::Spv);
125 }
126
127 TEST_P(CompileToSpirv16Test, FromFile)
128 {
129     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
130                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_3, glslang::EShTargetSpv_1_6,
131                             Target::Spv);
132 }
133
134 // Compiling GLSL to SPIR-V under OpenGL semantics. Expected to successfully
135 // generate SPIR-V.
136 TEST_P(CompileOpenGLToSpirvTest, FromFile)
137 {
138     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
139                             Source::GLSL, Semantics::OpenGL, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
140                             Target::Spv);
141 }
142
143 // GLSL-level Vulkan semantics test. Expected to error out before generating
144 // SPIR-V.
145 TEST_P(VulkanSemantics, FromFile)
146 {
147     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
148                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
149                             Target::Spv, false);
150 }
151
152 // GLSL-level Vulkan semantics test. Expected to error out before generating
153 // SPIR-V.
154 TEST_P(OpenGLSemantics, FromFile)
155 {
156     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
157                             Source::GLSL, Semantics::OpenGL, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
158                             Target::Spv, false);
159 }
160
161 // GLSL-level Vulkan semantics test that need to see the AST for validation.
162 TEST_P(VulkanAstSemantics, FromFile)
163 {
164     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
165                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
166                             Target::AST);
167 }
168
169 // HLSL-level Vulkan semantics tests.
170 TEST_P(HlslIoMap, FromFile)
171 {
172     loadFileCompileIoMapAndCheck(GlobalTestSettings.testRoot, GetParam().fileName,
173                                  Source::HLSL, Semantics::Vulkan,
174                                  Target::Spv, GetParam().entryPoint,
175                                  GetParam().baseSamplerBinding,
176                                  GetParam().baseTextureBinding,
177                                  GetParam().baseImageBinding,
178                                  GetParam().baseUboBinding,
179                                  GetParam().baseSsboBinding,
180                                  GetParam().autoMapBindings,
181                                  GetParam().flattenUniforms);
182 }
183
184 // GLSL-level Vulkan semantics tests.
185 TEST_P(GlslIoMap, FromFile)
186 {
187     loadFileCompileIoMapAndCheck(GlobalTestSettings.testRoot, GetParam().fileName,
188                                  Source::GLSL, Semantics::Vulkan,
189                                  Target::Spv, GetParam().entryPoint,
190                                  GetParam().baseSamplerBinding,
191                                  GetParam().baseTextureBinding,
192                                  GetParam().baseImageBinding,
193                                  GetParam().baseUboBinding,
194                                  GetParam().baseSsboBinding,
195                                  GetParam().autoMapBindings,
196                                  GetParam().flattenUniforms);
197 }
198
199 // Compiling GLSL to SPIR-V under Vulkan semantics (AMD extensions enabled).
200 // Expected to successfully generate SPIR-V.
201 TEST_P(CompileVulkanToSpirvTestAMD, FromFile)
202 {
203     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
204                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
205                             Target::Spv);
206 }
207
208 // Compiling GLSL to SPIR-V under Vulkan semantics (NV extensions enabled).
209 // Expected to successfully generate SPIR-V.
210 TEST_P(CompileVulkanToSpirvTestNV, FromFile)
211 {
212     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
213                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
214                             Target::Spv);
215 }
216
217 TEST_P(CompileVulkanToSpirv14TestNV, FromFile)
218 {
219     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
220                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_1, glslang::EShTargetSpv_1_4,
221                             Target::Spv);
222 }
223
224 TEST_P(CompileUpgradeTextureToSampledTextureAndDropSamplersTest, FromFile)
225 {
226     loadCompileUpgradeTextureToSampledTextureAndDropSamplersAndCheck(GlobalTestSettings.testRoot,
227                                                                      GetParam(),
228                                                                      Source::GLSL,
229                                                                      Semantics::Vulkan,
230                                                                      Target::Spv);
231 }
232
233 TEST_P(CompileVulkanToNonSemanticShaderDebugInfoTest, FromFile)
234 {
235     loadFileCompileAndCheck(GlobalTestSettings.testRoot, GetParam(),
236                             Source::GLSL, Semantics::Vulkan, glslang::EShTargetVulkan_1_0, glslang::EShTargetSpv_1_0,
237                             Target::Spv, true, "", "/baseResults/", false, false, true);
238 }
239
240 // clang-format off
241 INSTANTIATE_TEST_SUITE_P(
242     Glsl, CompileVulkanToSpirvTest,
243     ::testing::ValuesIn(std::vector<std::string>({
244         // Test looping constructs.
245         // No tests yet for making sure break and continue from a nested loop
246         // goes to the innermost target.
247         "spv.barrier.vert",
248         "spv.do-simple.vert",
249         "spv.do-while-continue-break.vert",
250         "spv.for-complex-condition.vert",
251         "spv.for-continue-break.vert",
252         "spv.for-simple.vert",
253         "spv.for-notest.vert",
254         "spv.for-nobody.vert",
255         "spv.while-continue-break.vert",
256         "spv.while-simple.vert",
257         // vulkan-specific tests
258         "rayQuery.rgen",
259         "rayQuery-no-cse.rgen",
260         "rayQuery-initialize.rgen",
261         "rayQuery-allOps.rgen",
262         "rayQuery-allOps.Error.rgen",
263         "rayQuery-committed.Error.rgen",
264         "rayQuery-allOps.comp",
265         "rayQuery-allOps.frag",
266         "rayQuery-initialization.Error.comp",
267         "rayQuery-global.rgen",
268         "rayQuery-types.comp",
269         "rayQuery-OpConvertUToAccelerationStructureKHR.comp",
270         "spv.set.vert",
271         "spv.double.comp",
272         "spv.100ops.frag",
273         "spv.130.frag",
274         "spv.140.frag",
275         "spv.150.geom",
276         "spv.150.vert",
277         "spv.16bitstorage.frag",
278         "spv.16bitstorage_Error.frag",
279         "spv.16bitstorage-int.frag",
280         "spv.16bitstorage_Error-int.frag",
281         "spv.16bitstorage-uint.frag",
282         "spv.16bitstorage_Error-uint.frag",
283         "spv.300BuiltIns.vert",
284         "spv.300layout.frag",
285         "spv.300layout.vert",
286         "spv.300layoutp.vert",
287         "spv.310.comp",
288         "spv.310.bitcast.frag",
289         "spv.330.geom",
290         "spv.400.frag",
291         "spv.400.tesc",
292         "spv.400.tese",
293         "spv.420.geom",
294         "spv.430.frag",
295         "spv.430.vert",
296         "spv.450.tesc",
297         "spv.450.geom",
298         "spv.450.noRedecl.tesc",
299         "spv.8bitstorage-int.frag",
300         "spv.8bitstorage_Error-int.frag",
301         "spv.8bitstorage-uint.frag",
302         "spv.8bitstorage_Error-uint.frag",
303         "spv.8bitstorage-ubo.vert",
304         "spv.8bitstorage-ssbo.vert",
305         "spv.8bit-16bit-construction.frag",
306         "spv.accessChain.frag",
307         "spv.aggOps.frag",
308         "spv.always-discard.frag",
309         "spv.always-discard2.frag",
310         "spv.arbPostDepthCoverage.frag",
311         "spv.arbPostDepthCoverage_Error.frag",
312         "spv.atomicCounter.comp",
313         "spv.bitCast.frag",
314         "spv.bool.vert",
315         "spv.boolInBlock.frag",
316         "spv.branch-return.vert",
317         "spv.bufferhandle1.frag",
318         "spv.bufferhandle10.frag",
319         "spv.bufferhandle11.frag",
320         "spv.bufferhandle12.frag",
321         "spv.bufferhandle13.frag",
322         "spv.bufferhandle14.frag",
323         "spv.bufferhandle15.frag",
324         "spv.bufferhandle16.frag",
325         "spv.bufferhandle17_Errors.frag",
326         "spv.bufferhandle18.frag",
327         "spv.bufferhandle19_Errors.frag",
328         "spv.bufferhandle2.frag",
329         "spv.bufferhandle3.frag",
330         "spv.bufferhandle4.frag",
331         "spv.bufferhandle5.frag",
332         "spv.bufferhandle6.frag",
333         "spv.bufferhandle7.frag",
334         "spv.bufferhandle8.frag",
335         "spv.bufferhandle9.frag",
336         "spv.bufferhandleUvec2.frag",
337         "spv.bufferhandle_Error.frag",
338         "spv.builtInXFB.vert",
339         "spv.conditionalDemote.frag",
340         "spv.conditionalDiscard.frag",
341         "spv.constructComposite.comp",
342         "spv.constStruct.vert",
343         "spv.constConstruct.vert",
344         "spv.controlFlowAttributes.frag",
345         "spv.conversion.frag",
346         "spv.coopmat.comp",
347         "spv.coopmat_Error.comp",
348         "spv.dataOut.frag",
349         "spv.dataOutIndirect.frag",
350         "spv.dataOutIndirect.vert",
351         "spv.debugPrintf.frag",
352         "spv.debugPrintf_Error.frag",
353         "spv.demoteDisabled.frag",
354         "spv.deepRvalue.frag",
355         "spv.depthOut.frag",
356         "spv.depthUnchanged.frag",
357         "spv.discard-dce.frag",
358         "spv.doWhileLoop.frag",
359         "spv.earlyReturnDiscard.frag",
360         "spv.extPostDepthCoverage.frag",
361         "spv.extPostDepthCoverage_Error.frag",
362         "spv.float16convertonlyarith.comp",
363         "spv.float16convertonlystorage.comp",
364         "spv.flowControl.frag",
365         "spv.forLoop.frag",
366         "spv.forwardFun.frag",
367         "spv.fragmentDensity.frag",
368         "spv.fragmentDensity.vert",
369         "spv.fragmentDensity-es.frag",
370         "spv.fragmentDensity-neg.frag",
371         "spv.fsi.frag",
372         "spv.fsi_Error.frag",
373         "spv.fullyCovered.frag",
374         "spv.functionCall.frag",
375         "spv.functionNestedOpaque.vert",
376         "spv.functionSemantics.frag",
377         "spv.functionParameterTypes.frag",
378         "spv.GeometryShaderPassthrough.geom",
379         "spv.funcall.array.frag",
380         "spv.load.bool.array.interface.block.frag",
381         "spv.interpOps.frag",
382         "spv.int64.frag",
383         "spv.intcoopmat.comp",
384         "spv.intOps.vert",
385         "spv.intrinsicsSpirvByReference.vert",
386         "spv.intrinsicsSpirvDecorate.frag",
387         "spv.intrinsicsSpirvExecutionMode.frag",
388         "spv.intrinsicsSpirvInstruction.vert",
389         "spv.intrinsicsSpirvLiteral.vert",
390         "spv.intrinsicsSpirvStorageClass.rchit",
391         "spv.intrinsicsSpirvType.rgen",
392         "spv.intrinsicsSpirvTypeLocalVar.vert",
393         "spv.invariantAll.vert",
394         "spv.layer.tese",
395         "spv.layoutNested.vert",
396         "spv.length.frag",
397         "spv.localAggregates.frag",
398         "spv.loops.frag",
399         "spv.loopsArtificial.frag",
400         "spv.matFun.vert",
401         "spv.matrix.frag",
402         "spv.matrix2.frag",
403         "spv.memoryQualifier.frag",
404         "spv.merge-unreachable.frag",
405         "spv.multiStruct.comp",
406         "spv.multiStructFuncall.frag",
407         "spv.newTexture.frag",
408         "spv.noDeadDecorations.vert",
409         "spv.nonSquare.vert",
410         "spv.nonuniform.frag",
411         "spv.nonuniform2.frag",
412         "spv.nonuniform3.frag",
413         "spv.nonuniform4.frag",
414         "spv.nonuniform5.frag",
415         "spv.noWorkgroup.comp",
416         "spv.nullInit.comp",
417         "spv.offsets.frag",
418         "spv.Operations.frag",
419         "spv.paramMemory.frag",
420         "spv.paramMemory.420.frag",
421         "spv.precision.frag",
422         "spv.precisionArgs.frag",
423         "spv.precisionNonESSamp.frag",
424         "spv.precisionTexture.frag",
425         "spv.prepost.frag",
426         "spv.privateVariableTypes.frag",
427         "spv.qualifiers.vert",
428         "spv.sample.frag",
429         "spv.sampleId.frag",
430         "spv.samplePosition.frag",
431         "spv.sampleMaskOverrideCoverage.frag",
432         "spv.scalarlayout.frag",
433         "spv.scalarlayoutfloat16.frag",
434         "spv.shaderBallot.comp",
435         "spv.shaderDrawParams.vert",
436         "spv.shaderGroupVote.comp",
437         "spv.shaderStencilExport.frag",
438         "spv.shiftOps.frag",
439         "spv.simpleFunctionCall.frag",
440         "spv.simpleMat.vert",
441         "spv.sparseTexture.frag",
442         "spv.sparseTextureClamp.frag",
443         "spv.structAssignment.frag",
444         "spv.structDeref.frag",
445         "spv.structure.frag",
446         "spv.switch.frag",
447         "spv.swizzle.frag",
448         "spv.swizzleInversion.frag",
449         "spv.test.frag",
450         "spv.test.vert",
451         "spv.texture.frag",
452         "spv.texture.vert",
453         "spv.textureBuffer.vert",
454         "spv.image.frag",
455         "spv.imageAtomic64.frag",
456         "spv.imageAtomic64.comp",
457         "spv.types.frag",
458         "spv.uint.frag",
459         "spv.uniformArray.frag",
460         "spv.variableArrayIndex.frag",
461         "spv.varyingArray.frag",
462         "spv.varyingArrayIndirect.frag",
463         "spv.vecMatConstruct.frag",
464         "spv.voidFunction.frag",
465         "spv.whileLoop.frag",
466         "spv.AofA.frag",
467         "spv.queryL.frag",
468         "spv.separate.frag",
469         "spv.shortCircuit.frag",
470         "spv.pushConstant.vert",
471         "spv.pushConstantAnon.vert",
472         "spv.subpass.frag",
473         "spv.specConstant.vert",
474         "spv.specConstant.comp",
475         "spv.specConstantComposite.vert",
476         "spv.specConstantOperations.vert",
477         "spv.specConstant.float16.comp",
478         "spv.specConstant.int16.comp",
479         "spv.specConstant.int8.comp",
480         "spv.storageBuffer.vert",
481         "spv.terminate.frag",
482         "spv.subgroupUniformControlFlow.vert",
483         "spv.precise.tese",
484         "spv.precise.tesc",
485         "spv.viewportindex.tese",
486         "spv.volatileAtomic.comp",
487         "spv.vulkan100.subgroupArithmetic.comp",
488         "spv.vulkan100.subgroupPartitioned.comp",
489         "spv.xfb.vert",
490         "spv.xfb2.vert",
491         "spv.xfb3.vert",
492         "spv.samplerlessTextureFunctions.frag",
493         "spv.smBuiltins.vert",
494         "spv.smBuiltins.frag",
495         "spv.builtin.PrimitiveShadingRateEXT.vert",
496         "spv.builtin.ShadingRateEXT.frag",
497         "spv.atomicAdd.bufferReference.comp",
498         "spv.fragmentShaderBarycentric3.frag",
499         "spv.fragmentShaderBarycentric4.frag",
500     })),
501     FileNameAsCustomTestSuffix
502 );
503
504 // Cases with deliberately unreachable code.
505 // By default the compiler will aggressively eliminate
506 // unreachable merges and continues.
507 INSTANTIATE_TEST_SUITE_P(
508     GlslWithDeadCode, CompileVulkanToSpirvDeadCodeElimTest,
509     ::testing::ValuesIn(std::vector<std::string>({
510         "spv.dead-after-continue.vert",
511         "spv.dead-after-discard.frag",
512         "spv.dead-after-return.vert",
513         "spv.dead-after-loop-break.vert",
514         "spv.dead-after-switch-break.vert",
515         "spv.dead-complex-continue-after-return.vert",
516         "spv.dead-complex-merge-after-return.vert",
517     })),
518     FileNameAsCustomTestSuffix
519 );
520
521 // clang-format off
522 INSTANTIATE_TEST_SUITE_P(
523     Glsl, CompileVulkanToDebugSpirvTest,
524     ::testing::ValuesIn(std::vector<std::string>({
525         "spv.pp.line.frag",
526     })),
527     FileNameAsCustomTestSuffix
528 );
529
530 // clang-format off
531 INSTANTIATE_TEST_SUITE_P(
532     Glsl, CompileVulkan1_1ToSpirvTest,
533     ::testing::ValuesIn(std::vector<std::string>({
534         "spv.1.3.8bitstorage-ubo.vert",
535         "spv.1.3.8bitstorage-ssbo.vert",
536         "spv.1.3.coopmat.comp",
537         "spv.deviceGroup.frag",
538         "spv.drawParams.vert",
539         "spv.int8.frag",
540         "spv.vulkan110.int16.frag",
541         "spv.int32.frag",
542         "spv.explicittypes.frag",
543         "spv.float16NoRelaxed.vert",
544         "spv.float32.frag",
545         "spv.float64.frag",
546         "spv.memoryScopeSemantics.comp",
547         "spv.memoryScopeSemantics_Error.comp",
548         "spv.multiView.frag",
549         "spv.queueFamilyScope.comp",
550         "spv.RayGenShader11.rgen",
551         "spv.subgroup.frag",
552         "spv.subgroup.geom",
553         "spv.subgroup.tesc",
554         "spv.subgroup.tese",
555         "spv.subgroup.vert",
556         "spv.subgroupArithmetic.comp",
557         "spv.subgroupBasic.comp",
558         "spv.subgroupBallot.comp",
559         "spv.subgroupBallotNeg.comp",
560         "spv.subgroupClustered.comp",
561         "spv.subgroupClusteredNeg.comp",
562         "spv.subgroupPartitioned.comp",
563         "spv.subgroupShuffle.comp",
564         "spv.subgroupShuffleRelative.comp",
565         "spv.subgroupQuad.comp",
566         "spv.subgroupVote.comp",
567         "spv.subgroupExtendedTypesArithmetic.comp",
568         "spv.subgroupExtendedTypesArithmeticNeg.comp",
569         "spv.subgroupExtendedTypesBallot.comp",
570         "spv.subgroupExtendedTypesBallotNeg.comp",
571         "spv.subgroupExtendedTypesClustered.comp",
572         "spv.subgroupExtendedTypesClusteredNeg.comp",
573         "spv.subgroupExtendedTypesPartitioned.comp",
574         "spv.subgroupExtendedTypesPartitionedNeg.comp",
575         "spv.subgroupExtendedTypesShuffle.comp",
576         "spv.subgroupExtendedTypesShuffleNeg.comp",
577         "spv.subgroupExtendedTypesShuffleRelative.comp",
578         "spv.subgroupExtendedTypesShuffleRelativeNeg.comp",
579         "spv.subgroupExtendedTypesQuad.comp",
580         "spv.subgroupExtendedTypesQuadNeg.comp",
581         "spv.subgroupExtendedTypesVote.comp",
582         "spv.subgroupExtendedTypesVoteNeg.comp",
583         "spv.vulkan110.storageBuffer.vert",
584     })),
585     FileNameAsCustomTestSuffix
586 );
587
588 // clang-format off
589 INSTANTIATE_TEST_SUITE_P(
590     Glsl, CompileToSpirv14Test,
591     ::testing::ValuesIn(std::vector<std::string>({
592         "spv.1.4.LoopControl.frag",
593         "spv.1.4.NonWritable.frag",
594         "spv.1.4.OpEntryPoint.frag",
595         "spv.1.4.OpEntryPoint.opaqueParams.vert",
596         "spv.1.4.OpSelect.frag",
597         "spv.1.4.OpCopyLogical.comp",
598         "spv.1.4.OpCopyLogicalBool.comp",
599         "spv.1.4.OpCopyLogical.funcall.frag",
600         "spv.1.4.funcall.array.frag",
601         "spv.1.4.load.bool.array.interface.block.frag",
602         "spv.1.4.image.frag",
603         "spv.1.4.sparseTexture.frag",
604         "spv.1.4.texture.frag",
605         "spv.1.4.constructComposite.comp",
606         "spv.ext.AnyHitShader.rahit",
607         "spv.ext.AnyHitShader_Errors.rahit",
608         "spv.ext.ClosestHitShader.rchit",
609         "spv.ext.ClosestHitShader_Subgroup.rchit",
610         "spv.ext.ClosestHitShader_Errors.rchit",
611         "spv.ext.IntersectShader.rint",
612         "spv.ext.IntersectShader_Errors.rint",
613         "spv.ext.MissShader.rmiss",
614         "spv.ext.MissShader_Errors.rmiss",
615         "spv.ext.RayPrimCull_Errors.rgen",
616         "spv.ext.RayCallable.rcall",
617         "spv.ext.RayCallable_Errors.rcall",
618         "spv.ext.RayConstants.rgen",
619         "spv.ext.RayGenShader.rgen",
620         "spv.ext.RayGenShader_Errors.rgen",
621         "spv.ext.RayGenShader11.rgen",
622         "spv.ext.RayGenShaderArray.rgen",
623         "spv.ext.RayGenSBTlayout.rgen",
624         "spv.ext.RayGenSBTlayout140.rgen",
625         "spv.ext.RayGenSBTlayout430.rgen",
626         "spv.ext.RayGenSBTlayoutscalar.rgen",
627         "spv.ext.World3x4.rahit",
628         "spv.ext.AccelDecl.frag",
629         "spv.ext.RayQueryDecl.frag",
630
631         // SPV_KHR_workgroup_memory_explicit_layout depends on SPIR-V 1.4.
632         "spv.WorkgroupMemoryExplicitLayout.SingleBlock.comp",
633         "spv.WorkgroupMemoryExplicitLayout.MultiBlock.comp",
634         "spv.WorkgroupMemoryExplicitLayout.8BitAccess.comp",
635         "spv.WorkgroupMemoryExplicitLayout.16BitAccess.comp",
636         "spv.WorkgroupMemoryExplicitLayout.NonBlock.comp",
637         "spv.WorkgroupMemoryExplicitLayout.MixBlockNonBlock_Errors.comp",
638         "spv.WorkgroupMemoryExplicitLayout.std140.comp",
639         "spv.WorkgroupMemoryExplicitLayout.std430.comp",
640         "spv.WorkgroupMemoryExplicitLayout.scalar.comp",
641
642         // SPV_EXT_mesh_shader
643         "spv.ext.meshShaderBuiltins.mesh",
644         "spv.ext.meshShaderRedeclBuiltins.mesh",
645         "spv.ext.meshShaderTaskMem.mesh",
646         "spv.ext.meshShaderUserDefined.mesh",
647         "spv.ext.meshTaskShader.task",
648         "spv.atomiAddEXT.error.mesh",
649         "spv.atomiAddEXT.task",
650         "spv.460.subgroupEXT.task",
651         "spv.460.subgroupEXT.mesh",
652     })),
653     FileNameAsCustomTestSuffix
654 );
655
656 // clang-format off
657 INSTANTIATE_TEST_SUITE_P(
658     Glsl, CompileToSpirv16Test,
659     ::testing::ValuesIn(std::vector<std::string>({
660         "spv.1.6.conditionalDiscard.frag",
661         "spv.1.6.helperInvocation.frag",
662         "spv.1.6.specConstant.comp",
663         "spv.1.6.samplerBuffer.frag",
664         "spv.1.6.separate.frag",
665     })),
666     FileNameAsCustomTestSuffix
667 );
668
669
670 // clang-format off
671 INSTANTIATE_TEST_SUITE_P(
672     Hlsl, HlslIoMap,
673     ::testing::ValuesIn(std::vector<IoMapData>{
674         { "spv.register.autoassign.frag", "main_ep", 5, 10, 0, 20, 30, true, false },
675         { "spv.register.noautoassign.frag", "main_ep", 5, 10, 0, 15, 30, false, false },
676         { "spv.register.autoassign-2.frag", "main", 5, 10, 0, 15, 30, true, true },
677         { "spv.register.subpass.frag", "main", 0, 20, 0, 0, 0, true, true },
678         { "spv.buffer.autoassign.frag", "main", 5, 10, 0, 15, 30, true, true },
679         { "spv.ssbo.autoassign.frag", "main", 5, 10, 0, 15, 30, true, true },
680         { "spv.ssboAlias.frag", "main", 0, 0, 0, 0, 83, true, false },
681         { "spv.rw.autoassign.frag", "main", 5, 10, 20, 15, 30, true, true },
682         { "spv.register.autoassign.rangetest.frag", "main",
683                 glslang::TQualifier::layoutBindingEnd-2,
684                 glslang::TQualifier::layoutBindingEnd+5,
685                 20, 30, true, false },
686     }),
687     FileNameAsCustomTestSuffixIoMap
688 );
689
690 // clang-format off
691 INSTANTIATE_TEST_SUITE_P(
692     Hlsl, GlslIoMap,
693     ::testing::ValuesIn(std::vector<IoMapData>{
694         { "spv.glsl.register.autoassign.frag", "main", 5, 10, 0, 20, 30, true, false },
695         { "spv.glsl.register.noautoassign.frag", "main", 5, 10, 0, 15, 30, false, false },
696     }),
697     FileNameAsCustomTestSuffixIoMap
698 );
699
700 // clang-format off
701 INSTANTIATE_TEST_SUITE_P(
702     Glsl, CompileOpenGLToSpirvTest,
703     ::testing::ValuesIn(std::vector<std::string>({
704         "spv.460.frag",
705         "spv.460.vert",
706         "spv.460.comp",
707         "spv.atomic.comp",
708         "spv.atomicFloat.comp",
709         "spv.atomicFloat_Error.comp",
710         "spv.glFragColor.frag",
711         "spv.rankShift.comp",
712         "spv.specConst.vert",
713         "spv.specTexture.frag",
714         "spv.OVR_multiview.vert",
715         "spv.uniformInitializer.frag",
716         "spv.uniformInitializerSpecConstant.frag",
717         "spv.uniformInitializerStruct.frag",
718         "spv.xfbOffsetOnBlockMembersAssignment.vert",
719         "spv.xfbOffsetOnStructMembersAssignment.vert",
720         "spv.xfbOverlapOffsetCheckWithBlockAndMember.vert",
721         "spv.xfbStrideJustOnce.vert",
722     })),
723     FileNameAsCustomTestSuffix
724 );
725
726 INSTANTIATE_TEST_SUITE_P(
727     Glsl, VulkanSemantics,
728     ::testing::ValuesIn(std::vector<std::string>({
729         "vulkan.frag",
730         "vulkan.vert",
731         "vulkan.comp",
732         "samplerlessTextureFunctions.frag",
733         "spv.specConstArrayCheck.vert",
734     })),
735     FileNameAsCustomTestSuffix
736 );
737
738 INSTANTIATE_TEST_SUITE_P(
739     Glsl, OpenGLSemantics,
740     ::testing::ValuesIn(std::vector<std::string>({
741         "glspv.esversion.vert",
742         "glspv.version.frag",
743         "glspv.version.vert",
744         "glspv.frag",
745         "glspv.vert",
746     })),
747     FileNameAsCustomTestSuffix
748 );
749
750 INSTANTIATE_TEST_SUITE_P(
751     Glsl, VulkanAstSemantics,
752     ::testing::ValuesIn(std::vector<std::string>({
753         "vulkan.ast.vert",
754     })),
755     FileNameAsCustomTestSuffix
756 );
757
758 INSTANTIATE_TEST_SUITE_P(
759     Glsl, CompileVulkanToSpirvTestAMD,
760     ::testing::ValuesIn(std::vector<std::string>({
761         "spv.16bitxfb.vert",
762         "spv.float16.frag",
763         "spv.float16Fetch.frag",
764         "spv.imageLoadStoreLod.frag",
765         "spv.int16.frag",
766         "spv.int16.amd.frag",
767         "spv.shaderBallotAMD.comp",
768         "spv.shaderFragMaskAMD.frag",
769         "spv.textureGatherBiasLod.frag",
770     })),
771     FileNameAsCustomTestSuffix
772 );
773
774 INSTANTIATE_TEST_SUITE_P(
775     Glsl, CompileVulkanToSpirvTestNV,
776     ::testing::ValuesIn(std::vector<std::string>({
777     "spv.sampleMaskOverrideCoverage.frag",
778     "spv.GeometryShaderPassthrough.geom",
779     "spv.viewportArray2.vert",
780     "spv.viewportArray2.tesc",
781     "spv.stereoViewRendering.vert",
782     "spv.stereoViewRendering.tesc",
783     "spv.multiviewPerViewAttributes.vert",
784     "spv.multiviewPerViewAttributes.tesc",
785     "spv.atomicInt64.comp",
786     "spv.atomicStoreInt64.comp",
787     "spv.shadingRate.frag",
788     "spv.RayGenShader.rgen",
789     "spv.RayGenShaderArray.rgen",
790     "spv.RayGenShader_Errors.rgen",
791     "spv.RayConstants.rgen",
792     "spv.IntersectShader.rint",
793     "spv.IntersectShader_Errors.rint",
794     "spv.AnyHitShader.rahit",
795     "spv.AnyHitShader_Errors.rahit",
796     "spv.ClosestHitShader.rchit",
797     "spv.ClosestHitShader_Errors.rchit",
798     "spv.MissShader.rmiss",
799     "spv.MissShader_Errors.rmiss",
800     "spv.RayCallable.rcall",
801     "spv.RayCallable_Errors.rcall",
802     "spv.fragmentShaderBarycentric.frag",
803     "spv.fragmentShaderBarycentric2.frag",
804     "spv.computeShaderDerivatives.comp",
805     "spv.computeShaderDerivatives2.comp",
806     "spv.shaderImageFootprint.frag",
807     "spv.meshShaderBuiltins.mesh",
808     "spv.meshShaderUserDefined.mesh",
809     "spv.meshShaderPerViewBuiltins.mesh",
810     "spv.meshShaderPerViewUserDefined.mesh",
811     "spv.meshShaderPerView_Errors.mesh",
812     "spv.meshShaderSharedMem.mesh",
813     "spv.meshShaderTaskMem.mesh",
814     "spv.320.meshShaderUserDefined.mesh",
815     "spv.meshShaderRedeclBuiltins.mesh",
816     "spv.meshShaderRedeclPerViewBuiltins.mesh",
817     "spv.meshTaskShader.task",
818     "spv.perprimitiveNV.frag",
819 })),
820 FileNameAsCustomTestSuffix
821 );
822
823 INSTANTIATE_TEST_SUITE_P(
824     Glsl, CompileVulkanToSpirv14TestNV,
825     ::testing::ValuesIn(std::vector<std::string>({
826     "spv.RayGenShaderMotion.rgen",
827     "spv.IntersectShaderMotion.rint",
828     "spv.AnyHitShaderMotion.rahit",
829     "spv.ClosestHitShaderMotion.rchit",
830     "spv.MissShaderMotion.rmiss",
831 })),
832 FileNameAsCustomTestSuffix
833 );
834
835 INSTANTIATE_TEST_SUITE_P(
836     Glsl, CompileUpgradeTextureToSampledTextureAndDropSamplersTest,
837     ::testing::ValuesIn(std::vector<std::string>({
838       "spv.texture.sampler.transform.frag",
839     })),
840     FileNameAsCustomTestSuffix
841 );
842
843 INSTANTIATE_TEST_SUITE_P(
844     Glsl, CompileVulkanToNonSemanticShaderDebugInfoTest,
845     ::testing::ValuesIn(std::vector<std::string>({
846         "spv.debuginfo.glsl.vert",
847         "spv.debuginfo.glsl.frag",
848         "spv.debuginfo.glsl.comp",
849         "spv.debuginfo.glsl.geom",
850         "spv.debuginfo.glsl.tesc",
851         "spv.debuginfo.glsl.tese"
852     })),
853     FileNameAsCustomTestSuffix
854 );
855 // clang-format on
856
857 }  // anonymous namespace
858 }  // namespace glslangtest