Link.FromFile.Vk.cpp 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. //
  2. // Copyright (C) 2016-2017 Google, Inc.
  3. //
  4. // All rights reserved.
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions
  8. // are met:
  9. //
  10. // Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. //
  13. // Redistributions in binary form must reproduce the above
  14. // copyright notice, this list of conditions and the following
  15. // disclaimer in the documentation and/or other materials provided
  16. // with the distribution.
  17. //
  18. // Neither the name of Google Inc. nor the names of its
  19. // contributors may be used to endorse or promote products derived
  20. // from this software without specific prior written permission.
  21. //
  22. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  25. // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  26. // COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  27. // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  28. // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  29. // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  30. // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31. // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  32. // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  33. // POSSIBILITY OF SUCH DAMAGE.
  34. #include <memory>
  35. #include <gtest/gtest.h>
  36. #include "TestFixture.h"
  37. namespace glslangtest {
  38. namespace {
  39. using LinkTestVulkan = GlslangTest<
  40. ::testing::TestWithParam<std::vector<std::string>>>;
  41. TEST_P(LinkTestVulkan, FromFile)
  42. {
  43. const auto& fileNames = GetParam();
  44. const size_t fileCount = fileNames.size();
  45. const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::Vulkan, Target::AST);
  46. GlslangResult result;
  47. result.validationResult = false;
  48. // Compile each input shader file.
  49. bool success = true;
  50. std::vector<std::unique_ptr<glslang::TShader>> shaders;
  51. for (size_t i = 0; i < fileCount; ++i) {
  52. std::string contents;
  53. tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i],
  54. "input", &contents);
  55. shaders.emplace_back(
  56. new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i]))));
  57. auto* shader = shaders.back().get();
  58. shader->setAutoMapLocations(true);
  59. success &= compile(shader, contents, "", controls);
  60. result.shaderResults.push_back(
  61. {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()});
  62. }
  63. // Link all of them.
  64. glslang::TProgram program;
  65. for (const auto& shader : shaders) program.addShader(shader.get());
  66. success &= program.link(controls);
  67. result.linkingOutput = program.getInfoLog();
  68. result.linkingError = program.getInfoDebugLog();
  69. #if !defined(GLSLANG_WEB) && !defined(GLSLANG_ANGLE)
  70. if (success)
  71. program.mapIO();
  72. #endif
  73. if (success && (controls & EShMsgSpvRules)) {
  74. spv::SpvBuildLogger logger;
  75. std::vector<uint32_t> spirv_binary;
  76. options().disableOptimizer = true;
  77. glslang::GlslangToSpv(*program.getIntermediate(shaders.front()->getStage()),
  78. spirv_binary, &logger, &options());
  79. std::ostringstream disassembly_stream;
  80. spv::Parameterize();
  81. spv::Disassemble(disassembly_stream, spirv_binary);
  82. result.spirvWarningsErrors = logger.getAllMessages();
  83. result.spirv = disassembly_stream.str();
  84. result.validationResult = !options().validate || logger.getAllMessages().empty();
  85. }
  86. std::ostringstream stream;
  87. outputResultToStream(&stream, result, controls);
  88. // Check with expected results.
  89. const std::string expectedOutputFname =
  90. GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out";
  91. std::string expectedOutput;
  92. tryLoadFile(expectedOutputFname, "expected output", &expectedOutput);
  93. checkEqAndUpdateIfRequested(expectedOutput, stream.str(), expectedOutputFname,
  94. result.spirvWarningsErrors);
  95. }
  96. // clang-format off
  97. INSTANTIATE_TEST_SUITE_P(
  98. Glsl, LinkTestVulkan,
  99. ::testing::ValuesIn(std::vector<std::vector<std::string>>({
  100. {"link1.vk.frag", "link2.vk.frag"},
  101. {"spv.unit1.frag", "spv.unit2.frag", "spv.unit3.frag"},
  102. {"link.vk.matchingPC.0.0.frag", "link.vk.matchingPC.0.1.frag",
  103. "link.vk.matchingPC.0.2.frag"},
  104. {"link.vk.differentPC.0.0.frag", "link.vk.differentPC.0.1.frag",
  105. "link.vk.differentPC.0.2.frag"},
  106. {"link.vk.differentPC.1.0.frag", "link.vk.differentPC.1.1.frag",
  107. "link.vk.differentPC.1.2.frag"},
  108. {"link.vk.pcNamingValid.0.0.vert", "link.vk.pcNamingValid.0.1.vert"},
  109. {"link.vk.pcNamingInvalid.0.0.vert", "link.vk.pcNamingInvalid.0.1.vert"},
  110. {"link.vk.multiBlocksValid.0.0.vert", "link.vk.multiBlocksValid.0.1.vert"},
  111. {"link.vk.multiBlocksValid.1.0.geom", "link.vk.multiBlocksValid.1.1.geom"},
  112. }))
  113. );
  114. // clang-format on
  115. } // anonymous namespace
  116. } // namespace glslangtest