blob: cf04afd3645f0097bd1f8e1e94cfea3dba6e1cb1 [file] [log] [blame]
John Kessenicha0af4732012-12-12 21:15:54 +00001//
John Kessenich927608b2017-01-06 12:34:14 -07002// Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
3// Copyright (C) 2013-2016 LunarG, Inc.
John Kessenichbd0747d2013-02-17 06:01:50 +00004//
John Kessenich927608b2017-01-06 12:34:14 -07005// All rights reserved.
John Kessenicha0af4732012-12-12 21:15:54 +00006//
John Kessenich927608b2017-01-06 12:34:14 -07007// Redistribution and use in source and binary forms, with or without
8// modification, are permitted provided that the following conditions
9// are met:
John Kessenicha0af4732012-12-12 21:15:54 +000010//
11// Redistributions of source code must retain the above copyright
12// notice, this list of conditions and the following disclaimer.
13//
14// Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following
16// disclaimer in the documentation and/or other materials provided
17// with the distribution.
18//
19// Neither the name of 3Dlabs Inc. Ltd. nor the names of its
20// contributors may be used to endorse or promote products derived
21// from this software without specific prior written permission.
22//
John Kessenich927608b2017-01-06 12:34:14 -070023// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34// POSSIBILITY OF SUCH DAMAGE.
John Kessenicha0af4732012-12-12 21:15:54 +000035//
John Kessenich05a70632013-09-17 19:26:08 +000036
37// this only applies to the standalone wrapper, not the front end in general
38#define _CRT_SECURE_NO_WARNINGS
39
Lei Zhang8a9b1ee2016-05-19 13:31:43 -040040#include "ResourceLimits.h"
John Kessenich2b07c7e2013-07-31 18:44:13 +000041#include "Worklist.h"
John Kessenicha0af4732012-12-12 21:15:54 +000042#include "./../glslang/Include/ShHandle.h"
John Kessenich0da9eaa2015-08-01 17:10:02 -060043#include "./../glslang/Include/revision.h"
John Kessenicha0af4732012-12-12 21:15:54 +000044#include "./../glslang/Public/ShaderLang.h"
John Kessenich0df0cde2015-03-03 17:09:43 +000045#include "../SPIRV/GlslangToSpv.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060046#include "../SPIRV/GLSL.std.450.h"
John Kessenichacba7722015-03-04 03:48:38 +000047#include "../SPIRV/doc.h"
48#include "../SPIRV/disassemble.h"
John Kessenich66ec80e2016-08-05 14:04:23 -060049#include <cstring>
50#include <cstdlib>
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060051#include <cctype>
John Kessenich66ec80e2016-08-05 14:04:23 -060052#include <cmath>
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060053#include <array>
John Kessenicha0af4732012-12-12 21:15:54 +000054
baldurk876a0e32015-11-16 18:03:28 +010055#include "../glslang/OSDependent/osinclude.h"
John Kessenicha0af4732012-12-12 21:15:54 +000056
57extern "C" {
58 SH_IMPORT_EXPORT void ShOutputHtml();
59}
60
John Kessenich94a81fb2013-08-31 02:41:30 +000061// Command-line options
62enum TOptions {
John Kessenich906cc212016-12-09 19:22:20 -070063 EOptionNone = 0,
64 EOptionIntermediate = (1 << 0),
65 EOptionSuppressInfolog = (1 << 1),
66 EOptionMemoryLeakMode = (1 << 2),
67 EOptionRelaxedErrors = (1 << 3),
68 EOptionGiveWarnings = (1 << 4),
69 EOptionLinkProgram = (1 << 5),
70 EOptionMultiThreaded = (1 << 6),
71 EOptionDumpConfig = (1 << 7),
72 EOptionDumpReflection = (1 << 8),
73 EOptionSuppressWarnings = (1 << 9),
74 EOptionDumpVersions = (1 << 10),
75 EOptionSpv = (1 << 11),
76 EOptionHumanReadableSpv = (1 << 12),
77 EOptionVulkanRules = (1 << 13),
78 EOptionDefaultDesktop = (1 << 14),
79 EOptionOutputPreprocessed = (1 << 15),
80 EOptionOutputHexadecimal = (1 << 16),
81 EOptionReadHlsl = (1 << 17),
82 EOptionCascadingErrors = (1 << 18),
83 EOptionAutoMapBindings = (1 << 19),
steve-lunarge0b9deb2016-09-16 13:26:37 -060084 EOptionFlattenUniformArrays = (1 << 20),
John Kessenich906cc212016-12-09 19:22:20 -070085 EOptionNoStorageFormat = (1 << 21),
John Kessenich20f01e72016-12-12 11:41:43 -070086 EOptionKeepUncalled = (1 << 22),
John Kessenich94a81fb2013-08-31 02:41:30 +000087};
88
John Kessenicha0af4732012-12-12 21:15:54 +000089//
John Kessenich68d78fd2015-07-12 19:28:10 -060090// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +000091//
92enum TFailCode {
93 ESuccess = 0,
94 EFailUsage,
95 EFailCompile,
96 EFailLink,
97 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +000098 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +000099 EFailLinkerCreate
100};
101
102//
John Kessenich68d78fd2015-07-12 19:28:10 -0600103// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000104//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600105EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000106void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000107void usage();
John Kessenichea869fb2013-10-28 18:12:06 +0000108void FreeFileData(char** data);
109char** ReadFileData(const char* fileName);
John Kessenich54d8cda2013-02-11 22:36:01 +0000110void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000111
John Kessenichc999ba22013-11-07 23:33:24 +0000112// Globally track if any compile or link failure.
113bool CompileFailed = false;
114bool LinkFailed = false;
115
John Kessenich05a70632013-09-17 19:26:08 +0000116// Use to test breaking up a single shader file into multiple strings.
John Kessenich68d78fd2015-07-12 19:28:10 -0600117// Set in ReadFileData().
John Kessenichea869fb2013-10-28 18:12:06 +0000118int NumShaderStrings;
John Kessenicha0af4732012-12-12 21:15:54 +0000119
John Kessenich05a70632013-09-17 19:26:08 +0000120TBuiltInResource Resources;
121std::string ConfigFile;
122
John Kessenicha0af4732012-12-12 21:15:54 +0000123//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600124// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000125//
126void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000127{
John Kessenich05a70632013-09-17 19:26:08 +0000128 char** configStrings = 0;
John Kessenich51cdd902014-02-18 23:37:57 +0000129 char* config = 0;
John Kessenich05a70632013-09-17 19:26:08 +0000130 if (ConfigFile.size() > 0) {
John Kessenichea869fb2013-10-28 18:12:06 +0000131 configStrings = ReadFileData(ConfigFile.c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000132 if (configStrings)
133 config = *configStrings;
134 else {
135 printf("Error opening configuration file; will instead use the default configuration\n");
136 usage();
137 }
138 }
139
140 if (config == 0) {
Lei Zhang414eb602016-03-04 16:22:34 -0500141 Resources = glslang::DefaultTBuiltInResource;
142 return;
John Kessenich05a70632013-09-17 19:26:08 +0000143 }
144
Lei Zhang1b141722016-05-19 13:50:49 -0400145 glslang::DecodeResourceLimits(&Resources, config);
John Kessenich05a70632013-09-17 19:26:08 +0000146
John Kessenich05a70632013-09-17 19:26:08 +0000147 if (configStrings)
148 FreeFileData(configStrings);
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500149 else
150 delete[] config;
John Kessenicha0af4732012-12-12 21:15:54 +0000151}
152
John Kessenich38f3b892013-09-06 19:52:57 +0000153// thread-safe list of shaders to asynchronously grab and compile
John Kessenich2b07c7e2013-07-31 18:44:13 +0000154glslang::TWorklist Worklist;
John Kessenich38f3b892013-09-06 19:52:57 +0000155
156// array of unique places to leave the shader names and infologs for the asynchronous compiles
John Kessenichfd305422014-06-05 16:30:53 +0000157glslang::TWorkItem** Work = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000158int NumWorkItems = 0;
159
John Kessenich94a81fb2013-08-31 02:41:30 +0000160int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600161const char* ExecutableName = nullptr;
162const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700163const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600164const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400165const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800166const char* variableName = nullptr;
John Kessenich68d78fd2015-07-12 19:28:10 -0600167
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600168std::array<unsigned int, EShLangCount> baseSamplerBinding;
169std::array<unsigned int, EShLangCount> baseTextureBinding;
steve-lunarg9088be42016-11-01 10:31:42 -0600170std::array<unsigned int, EShLangCount> baseImageBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600171std::array<unsigned int, EShLangCount> baseUboBinding;
172
John Kessenich68d78fd2015-07-12 19:28:10 -0600173//
174// Create the default name for saving a binary if -o is not provided.
175//
176const char* GetBinaryName(EShLanguage stage)
177{
178 const char* name;
179 if (binaryFileName == nullptr) {
180 switch (stage) {
181 case EShLangVertex: name = "vert.spv"; break;
182 case EShLangTessControl: name = "tesc.spv"; break;
183 case EShLangTessEvaluation: name = "tese.spv"; break;
184 case EShLangGeometry: name = "geom.spv"; break;
185 case EShLangFragment: name = "frag.spv"; break;
186 case EShLangCompute: name = "comp.spv"; break;
187 default: name = "unknown"; break;
188 }
189 } else
190 name = binaryFileName;
191
192 return name;
193}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000194
John Kessenich05a70632013-09-17 19:26:08 +0000195//
196// *.conf => this is a config file that can set limits/resources
197//
198bool SetConfigFile(const std::string& name)
199{
200 if (name.size() < 5)
201 return false;
202
John Kessenich4c706852013-10-11 16:28:43 +0000203 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000204 ConfigFile = name;
205 return true;
206 }
207
208 return false;
209}
210
John Kessenich68d78fd2015-07-12 19:28:10 -0600211//
212// Give error and exit with failure code.
213//
214void Error(const char* message)
215{
216 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
217 exit(EFailUsage);
218}
219
220//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600221// Process an optional binding base of the form:
222// --argname [stage] base
223// Where stage is one of the forms accepted by FindLanguage, and base is an integer
224//
225void ProcessBindingBase(int& argc, char**& argv, std::array<unsigned int, EShLangCount>& base)
226{
227 if (argc < 2)
228 usage();
229
230 if (!isdigit(argv[1][0])) {
231 if (argc < 3) // this form needs one more argument
232 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700233
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600234 // Parse form: --argname stage base
235 const EShLanguage lang = FindLanguage(argv[1], false);
236 base[lang] = atoi(argv[2]);
237 argc-= 2;
238 argv+= 2;
239 } else {
240 // Parse form: --argname base
241 for (int lang=0; lang<EShLangCount; ++lang)
242 base[lang] = atoi(argv[1]);
243
244 argc--;
245 argv++;
246 }
247}
248
249//
John Kessenich68d78fd2015-07-12 19:28:10 -0600250// Do all command-line argument parsing. This includes building up the work-items
251// to be processed later, and saving all the command-line options.
252//
253// Does not return (it exits) if command-line is fatally flawed.
254//
255void ProcessArguments(int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000256{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600257 baseSamplerBinding.fill(0);
258 baseTextureBinding.fill(0);
steve-lunarg9088be42016-11-01 10:31:42 -0600259 baseImageBinding.fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600260 baseUboBinding.fill(0);
261
John Kessenich38f3b892013-09-06 19:52:57 +0000262 ExecutableName = argv[0];
263 NumWorkItems = argc; // will include some empties where the '-' options were, but it doesn't matter, they'll be 0
John Kessenichfd305422014-06-05 16:30:53 +0000264 Work = new glslang::TWorkItem*[NumWorkItems];
John Kessenich68d78fd2015-07-12 19:28:10 -0600265 for (int w = 0; w < NumWorkItems; ++w)
266 Work[w] = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000267
John Kessenich2b07c7e2013-07-31 18:44:13 +0000268 argc--;
John Kessenichecba76f2017-01-06 00:34:48 -0700269 argv++;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000270 for (; argc >= 1; argc--, argv++) {
271 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000272 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600273 case '-':
274 {
275 std::string lowerword(argv[0]+2);
276 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
277
278 // handle --word style options
279 if (lowerword == "shift-sampler-bindings" || // synonyms
280 lowerword == "shift-sampler-binding" ||
281 lowerword == "ssb") {
282 ProcessBindingBase(argc, argv, baseSamplerBinding);
283 } else if (lowerword == "shift-texture-bindings" || // synonyms
284 lowerword == "shift-texture-binding" ||
285 lowerword == "stb") {
286 ProcessBindingBase(argc, argv, baseTextureBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600287 } else if (lowerword == "shift-image-bindings" || // synonyms
288 lowerword == "shift-image-binding" ||
289 lowerword == "sib") {
290 ProcessBindingBase(argc, argv, baseImageBinding);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600291 } else if (lowerword == "shift-ubo-bindings" || // synonyms
292 lowerword == "shift-ubo-binding" ||
293 lowerword == "sub") {
294 ProcessBindingBase(argc, argv, baseUboBinding);
295 } else if (lowerword == "auto-map-bindings" || // synonyms
John Kessenichecba76f2017-01-06 00:34:48 -0700296 lowerword == "auto-map-binding" ||
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600297 lowerword == "amb") {
298 Options |= EOptionAutoMapBindings;
steve-lunarge0b9deb2016-09-16 13:26:37 -0600299 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
300 lowerword == "flatten-uniform-array" ||
301 lowerword == "fua") {
302 Options |= EOptionFlattenUniformArrays;
steve-lunargcce8d482016-10-14 18:36:42 -0600303 } else if (lowerword == "no-storage-format" || // synonyms
304 lowerword == "nsf") {
305 Options |= EOptionNoStorageFormat;
Flavio15017db2017-02-15 14:29:33 -0800306 } else if (lowerword == "variable-name" || // synonyms
307 lowerword == "vn") {
308 Options |= EOptionOutputHexadecimal;
309 variableName = argv[1];
310 if (argc > 0) {
311 argc--;
312 argv++;
313 } else
314 Error("no <C-variable-name> provided for --variable-name");
315 break;
316 }
317 else if (lowerword == "source-entrypoint" || // synonyms
steve-lunargf1e0c872016-10-31 15:13:43 -0600318 lowerword == "sep") {
319 sourceEntryPointName = argv[1];
320 if (argc > 0) {
321 argc--;
322 argv++;
323 } else
324 Error("no <entry-point> provided for --source-entrypoint");
325 break;
John Kessenich906cc212016-12-09 19:22:20 -0700326 } else if (lowerword == "keep-uncalled" || // synonyms
327 lowerword == "ku") {
328 Options |= EOptionKeepUncalled;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600329 } else {
330 usage();
331 }
332 }
333 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000334 case 'H':
335 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600336 if ((Options & EOptionSpv) == 0) {
337 // default to Vulkan
338 Options |= EOptionSpv;
339 Options |= EOptionVulkanRules;
340 Options |= EOptionLinkProgram;
341 }
342 break;
John Kessenich0df0cde2015-03-03 17:09:43 +0000343 case 'V':
344 Options |= EOptionSpv;
John Kessenich68d78fd2015-07-12 19:28:10 -0600345 Options |= EOptionVulkanRules;
346 Options |= EOptionLinkProgram;
347 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400348 case 'S':
Dan Bakerc6ede892016-08-11 14:06:06 -0400349 shaderStageName = argv[1];
dankbaker45d49bc2016-08-08 21:43:07 -0400350 if (argc > 0) {
351 argc--;
352 argv++;
353 }
354 else
Dan Baker5afdd782016-08-11 17:53:57 -0400355 Error("no <stage> specified for -S");
dankbaker45d49bc2016-08-08 21:43:07 -0400356 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600357 case 'G':
358 Options |= EOptionSpv;
John Kessenichd78e3512014-08-25 20:07:55 +0000359 Options |= EOptionLinkProgram;
John Kessenich91e4aa52016-07-07 17:46:42 -0600360 // undo a -H default to Vulkan
361 Options &= ~EOptionVulkanRules;
John Kessenich92f90382014-07-28 04:21:04 +0000362 break;
John Kessenichc555ddd2015-06-17 02:38:44 +0000363 case 'E':
364 Options |= EOptionOutputPreprocessed;
365 break;
John Kessenich05a70632013-09-17 19:26:08 +0000366 case 'c':
367 Options |= EOptionDumpConfig;
368 break;
John Kessenicha86836e2016-07-09 14:50:57 -0600369 case 'C':
370 Options |= EOptionCascadingErrors;
371 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000372 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000373 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000374 break;
John Kessenich66e2faf2016-03-12 18:34:36 -0700375 case 'D':
376 Options |= EOptionReadHlsl;
377 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700378 case 'e':
379 // HLSL todo: entry point handle needs much more sophistication.
380 // This is okay for one compilation unit with one entry point.
381 entryPointName = argv[1];
382 if (argc > 0) {
383 argc--;
384 argv++;
385 } else
386 Error("no <entry-point> provided for -e");
387 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600388 case 'h':
389 usage();
390 break;
John Kessenich05a70632013-09-17 19:26:08 +0000391 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000392 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000393 break;
394 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000395 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000396 break;
397 case 'm':
398 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000399 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600400 case 'o':
401 binaryFileName = argv[1];
402 if (argc > 0) {
403 argc--;
404 argv++;
405 } else
406 Error("no <file> provided for -o");
407 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000408 case 'q':
409 Options |= EOptionDumpReflection;
410 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000411 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000412 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000413 break;
414 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000415 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000416 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000417 case 't':
418 #ifdef _WIN32
John Kessenichb0a7eb52013-11-07 17:44:20 +0000419 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000420 #endif
421 break;
John Kessenich319de232013-12-04 04:43:40 +0000422 case 'v':
423 Options |= EOptionDumpVersions;
424 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000425 case 'w':
426 Options |= EOptionSuppressWarnings;
427 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500428 case 'x':
429 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500430 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000431 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600432 usage();
433 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000434 }
John Kessenich38f3b892013-09-06 19:52:57 +0000435 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000436 std::string name(argv[0]);
437 if (! SetConfigFile(name)) {
438 Work[argc] = new glslang::TWorkItem(name);
439 Worklist.add(Work[argc]);
440 }
John Kessenich38f3b892013-09-06 19:52:57 +0000441 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000442 }
443
John Kessenich68d78fd2015-07-12 19:28:10 -0600444 // Make sure that -E is not specified alongside linking (which includes SPV generation)
445 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
446 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000447
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500448 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600449 if (binaryFileName && (Options & EOptionSpv) == 0)
450 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600451
452 if ((Options & EOptionFlattenUniformArrays) != 0 &&
453 (Options & EOptionReadHlsl) == 0)
454 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000455}
456
John Kessenich68d78fd2015-07-12 19:28:10 -0600457//
458// Translate the meaningful subset of command-line options to parser-behavior options.
459//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000460void SetMessageOptions(EShMessages& messages)
461{
462 if (Options & EOptionRelaxedErrors)
463 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
464 if (Options & EOptionIntermediate)
465 messages = (EShMessages)(messages | EShMsgAST);
466 if (Options & EOptionSuppressWarnings)
467 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600468 if (Options & EOptionSpv)
469 messages = (EShMessages)(messages | EShMsgSpvRules);
470 if (Options & EOptionVulkanRules)
471 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400472 if (Options & EOptionOutputPreprocessed)
473 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700474 if (Options & EOptionReadHlsl)
475 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600476 if (Options & EOptionCascadingErrors)
477 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700478 if (Options & EOptionKeepUncalled)
479 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000480}
481
John Kessenich68d78fd2015-07-12 19:28:10 -0600482//
John Kessenich69f4b512013-09-04 21:19:27 +0000483// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000484//
485// Return 0 for failure, 1 for success.
486//
Pyry Haulos5f6892e2015-12-01 12:59:53 -0800487unsigned int CompileShaders(void*)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000488{
John Kessenich38f3b892013-09-06 19:52:57 +0000489 glslang::TWorkItem* workItem;
490 while (Worklist.remove(workItem)) {
491 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000492 if (compiler == 0)
John Kessenichc999ba22013-11-07 23:33:24 +0000493 return 0;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000494
John Kessenichb0a7eb52013-11-07 17:44:20 +0000495 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000496
John Kessenich94a81fb2013-08-31 02:41:30 +0000497 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000498 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000499
500 ShDestruct(compiler);
501 }
502
503 return 0;
504}
505
John Kessenich6626cad2015-06-19 05:14:19 +0000506// Outputs the given string, but only if it is non-null and non-empty.
507// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400508void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000509{
510 if (str && str[0]) {
511 puts(str);
512 }
513}
514
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400515// Outputs the given string to stderr, but only if it is non-null and non-empty.
516// This prevents erroneous newlines from appearing.
517void StderrIfNonEmpty(const char* str)
518{
519 if (str && str[0]) {
520 fprintf(stderr, "%s\n", str);
521 }
522}
523
John Kessenichc57b2a92016-01-16 15:30:03 -0700524// Simple bundling of what makes a compilation unit for ease in passing around,
525// and separation of handling file IO versus API (programmatic) compilation.
526struct ShaderCompUnit {
527 EShLanguage stage;
528 std::string fileName;
dankbakerafe6e9c2016-08-21 12:29:08 -0400529 char** text; // memory owned/managed externally
530 const char* fileNameList[1];
531
John Kessenich219b0252016-08-23 17:51:13 -0600532 // Need to have a special constructors to adjust the fileNameList, since back end needs a list of ptrs
dankbakerafe6e9c2016-08-21 12:29:08 -0400533 ShaderCompUnit(EShLanguage istage, std::string &ifileName, char** itext)
534 {
535 stage = istage;
536 fileName = ifileName;
537 text = itext;
John Kessenich219b0252016-08-23 17:51:13 -0600538 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400539 }
540
541 ShaderCompUnit(const ShaderCompUnit &rhs)
542 {
543 stage = rhs.stage;
544 fileName = rhs.fileName;
545 text = rhs.text;
John Kessenich219b0252016-08-23 17:51:13 -0600546 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400547 }
548
John Kessenichc57b2a92016-01-16 15:30:03 -0700549};
550
John Kessenich69f4b512013-09-04 21:19:27 +0000551//
John Kessenichc57b2a92016-01-16 15:30:03 -0700552// For linking mode: Will independently parse each compilation unit, but then put them
553// in the same program and link them together, making at most one linked module per
554// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000555//
556// Uses the new C++ interface instead of the old handle-based interface.
557//
John Kessenichc57b2a92016-01-16 15:30:03 -0700558
559void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000560{
561 // keep track of what to free
562 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700563
John Kessenich69f4b512013-09-04 21:19:27 +0000564 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000565 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000566
John Kessenich69f4b512013-09-04 21:19:27 +0000567 //
568 // Per-shader processing...
569 //
570
John Kessenich5b0f13a2013-11-01 03:08:40 +0000571 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100572 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
573 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700574 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
dankbakerafe6e9c2016-08-21 12:29:08 -0400575 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, 1);
John Kessenich4d65ee32016-03-12 18:17:47 -0700576 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
577 shader->setEntryPoint(entryPointName);
steve-lunargf1e0c872016-10-31 15:13:43 -0600578 if (sourceEntryPointName)
579 shader->setSourceEntryPoint(sourceEntryPointName);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600580
581 shader->setShiftSamplerBinding(baseSamplerBinding[compUnit.stage]);
582 shader->setShiftTextureBinding(baseTextureBinding[compUnit.stage]);
steve-lunarg9088be42016-11-01 10:31:42 -0600583 shader->setShiftImageBinding(baseImageBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600584 shader->setShiftUboBinding(baseUboBinding[compUnit.stage]);
steve-lunarge0b9deb2016-09-16 13:26:37 -0600585 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600586 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600587
588 if (Options & EOptionAutoMapBindings)
589 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -0700590
John Kessenich69f4b512013-09-04 21:19:27 +0000591 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600592
John Kessenichc555ddd2015-06-17 02:38:44 +0000593 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000594
John Kessenichc555ddd2015-06-17 02:38:44 +0000595 if (Options & EOptionOutputPreprocessed) {
596 std::string str;
John Kessenichfacde2c2017-01-06 16:48:18 -0700597 glslang::TShader::ForbidIncluder includer;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400598 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500599 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400600 PutsIfNonEmpty(str.c_str());
601 } else {
602 CompileFailed = true;
603 }
604 StderrIfNonEmpty(shader->getInfoLog());
605 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000606 continue;
607 }
608 if (! shader->parse(&Resources, defaultVersion, false, messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000609 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000610
John Kessenich69f4b512013-09-04 21:19:27 +0000611 program.addShader(shader);
612
John Kessenichc57b2a92016-01-16 15:30:03 -0700613 if (! (Options & EOptionSuppressInfolog) &&
614 ! (Options & EOptionMemoryLeakMode)) {
615 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400616 PutsIfNonEmpty(shader->getInfoLog());
617 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000618 }
John Kessenich69f4b512013-09-04 21:19:27 +0000619 }
620
621 //
622 // Program-level processing...
623 //
624
John Kessenich4d65ee32016-03-12 18:17:47 -0700625 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600626 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000627 LinkFailed = true;
628
steve-lunarg9ae34742016-10-05 13:40:13 -0600629 // Map IO
630 if (Options & EOptionSpv) {
631 if (!program.mapIO())
632 LinkFailed = true;
633 }
John Kessenichecba76f2017-01-06 00:34:48 -0700634
John Kessenich4d65ee32016-03-12 18:17:47 -0700635 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700636 if (! (Options & EOptionSuppressInfolog) &&
637 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400638 PutsIfNonEmpty(program.getInfoLog());
639 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000640 }
641
John Kessenich4d65ee32016-03-12 18:17:47 -0700642 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000643 if (Options & EOptionDumpReflection) {
644 program.buildReflection();
645 program.dumpReflection();
646 }
647
John Kessenich4d65ee32016-03-12 18:17:47 -0700648 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000649 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000650 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600651 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000652 else {
653 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000654 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000655 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400656 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400657 spv::SpvBuildLogger logger;
658 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger);
John Kessenichc57b2a92016-01-16 15:30:03 -0700659
660 // Dump the spv to a file or stdout, etc., but only if not doing
661 // memory/perf testing, as it's not internal to programmatic use.
662 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500663 printf("%s", logger.getAllMessages().c_str());
664 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -0700665 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500666 } else {
667 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
668 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700669 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700670 spv::Disassemble(std::cout, spirv);
671 }
John Kessenichacba7722015-03-04 03:48:38 +0000672 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000673 }
John Kessenich92f90382014-07-28 04:21:04 +0000674 }
675 }
676 }
677
John Kessenich5b0f13a2013-11-01 03:08:40 +0000678 // Free everything up, program has to go before the shaders
679 // because it might have merged stuff from the shaders, and
680 // the stuff from the shaders has to have its destructors called
681 // before the pools holding the memory in the shaders is freed.
682 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000683 while (shaders.size() > 0) {
684 delete shaders.back();
685 shaders.pop_back();
686 }
John Kessenich69f4b512013-09-04 21:19:27 +0000687}
688
John Kessenichc57b2a92016-01-16 15:30:03 -0700689//
690// Do file IO part of compile and link, handing off the pure
691// API/programmatic mode to CompileAndLinkShaderUnits(), which can
692// be put in a loop for testing memory footprint and performance.
693//
694// This is just for linking mode: meaning all the shaders will be put into the
695// the same program linked together.
696//
697// This means there are a limited number of work items (not multi-threading mode)
698// and that the point is testing at the linking level. Hence, to enable
699// performance and memory testing, the actual compile/link can be put in
700// a loop, independent of processing the work items and file IO.
701//
702void CompileAndLinkShaderFiles()
703{
704 std::vector<ShaderCompUnit> compUnits;
705
706 // Transfer all the work items from to a simple list of
707 // of compilation units. (We don't care about the thread
708 // work-item distribution properties in this path, which
709 // is okay due to the limited number of shaders, know since
710 // they are all getting linked together.)
711 glslang::TWorkItem* workItem;
712 while (Worklist.remove(workItem)) {
baldurk31d5d482016-10-13 19:25:52 +0200713 ShaderCompUnit compUnit(
John Kessenichc57b2a92016-01-16 15:30:03 -0700714 FindLanguage(workItem->name),
715 workItem->name,
716 ReadFileData(workItem->name.c_str())
baldurk31d5d482016-10-13 19:25:52 +0200717 );
John Kessenichc57b2a92016-01-16 15:30:03 -0700718
719 if (! compUnit.text) {
720 usage();
721 return;
722 }
723
724 compUnits.push_back(compUnit);
725 }
726
727 // Actual call to programmatic processing of compile and link,
728 // in a loop for testing memory and performance. This part contains
729 // all the perf/memory that a programmatic consumer will care about.
730 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
731 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
732 CompileAndLinkShaderUnits(compUnits);
733
734 if (Options & EOptionMemoryLeakMode)
735 glslang::OS_DumpMemoryCounters();
736 }
737
rdb32084e82016-02-23 22:17:38 +0100738 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
739 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700740}
741
John Kessenicha0af4732012-12-12 21:15:54 +0000742int C_DECL main(int argc, char* argv[])
743{
John Kessenich68d78fd2015-07-12 19:28:10 -0600744 ProcessArguments(argc, argv);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000745
John Kessenich05a70632013-09-17 19:26:08 +0000746 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500747 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000748 if (Worklist.empty())
749 return ESuccess;
750 }
751
John Kessenich0da9eaa2015-08-01 17:10:02 -0600752 if (Options & EOptionDumpVersions) {
753 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000754 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
755 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600756 std::string spirvVersion;
757 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600758 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600759 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700760 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600761 printf("GL_KHR_vulkan_glsl version %d\n", 100);
762 printf("ARB_GL_gl_spirv version %d\n", 100);
John Kessenich319de232013-12-04 04:43:40 +0000763 if (Worklist.empty())
764 return ESuccess;
765 }
766
John Kessenich05a70632013-09-17 19:26:08 +0000767 if (Worklist.empty()) {
768 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000769 }
770
771 ProcessConfigFile();
772
John Kessenich69f4b512013-09-04 21:19:27 +0000773 //
774 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000775 // 1) linking all arguments together, single-threaded, new C++ interface
776 // 2) independent arguments, can be tackled by multiple asynchronous threads, for testing thread safety, using the old handle interface
John Kessenich69f4b512013-09-04 21:19:27 +0000777 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000778 if (Options & EOptionLinkProgram ||
779 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000780 glslang::InitializeProcess();
John Kessenichc57b2a92016-01-16 15:30:03 -0700781 CompileAndLinkShaderFiles();
John Kessenichc36e1d82013-11-01 17:41:52 +0000782 glslang::FinalizeProcess();
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500783 for (int w = 0; w < NumWorkItems; ++w) {
784 if (Work[w]) {
785 delete Work[w];
786 }
787 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000788 } else {
789 ShInitialize();
790
John Kessenich38f3b892013-09-06 19:52:57 +0000791 bool printShaderNames = Worklist.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000792
John Kessenich38f3b892013-09-06 19:52:57 +0000793 if (Options & EOptionMultiThreaded) {
794 const int NumThreads = 16;
795 void* threads[NumThreads];
796 for (int t = 0; t < NumThreads; ++t) {
797 threads[t] = glslang::OS_CreateThread(&CompileShaders);
798 if (! threads[t]) {
799 printf("Failed to create thread\n");
800 return EFailThreadCreate;
801 }
John Kessenicha0af4732012-12-12 21:15:54 +0000802 }
John Kessenich38f3b892013-09-06 19:52:57 +0000803 glslang::OS_WaitForAllThreads(threads, NumThreads);
John Kessenichc999ba22013-11-07 23:33:24 +0000804 } else
805 CompileShaders(0);
John Kessenich38f3b892013-09-06 19:52:57 +0000806
807 // Print out all the resulting infologs
808 for (int w = 0; w < NumWorkItems; ++w) {
809 if (Work[w]) {
Kenneth Perryb07e6be2015-12-15 10:52:34 -0600810 if (printShaderNames || Work[w]->results.size() > 0)
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400811 PutsIfNonEmpty(Work[w]->name.c_str());
812 PutsIfNonEmpty(Work[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000813 delete Work[w];
814 }
815 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000816
817 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000818 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000819
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500820 delete[] Work;
821
John Kessenichc999ba22013-11-07 23:33:24 +0000822 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000823 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000824 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000825 return EFailLink;
826
827 return 0;
828}
829
830//
831// Deduce the language from the filename. Files must end in one of the
832// following extensions:
833//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000834// .vert = vertex
835// .tesc = tessellation control
836// .tese = tessellation evaluation
837// .geom = geometry
838// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000839// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000840//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600841EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +0000842{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600843 size_t ext = 0;
844
845 // Search for a suffix on a filename: e.g, "myfile.frag". If given
846 // the suffix directly, we skip looking the '.'
847 if (parseSuffix) {
848 ext = name.rfind('.');
849 if (ext == std::string::npos) {
850 usage();
851 return EShLangVertex;
852 }
853 ++ext;
John Kessenicha0af4732012-12-12 21:15:54 +0000854 }
855
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600856 std::string suffix = name.substr(ext, std::string::npos);
Dan Bakerc6ede892016-08-11 14:06:06 -0400857 if (shaderStageName)
858 suffix = shaderStageName;
dankbaker45d49bc2016-08-08 21:43:07 -0400859
John Kessenich2b07c7e2013-07-31 18:44:13 +0000860 if (suffix == "vert")
861 return EShLangVertex;
862 else if (suffix == "tesc")
863 return EShLangTessControl;
864 else if (suffix == "tese")
865 return EShLangTessEvaluation;
866 else if (suffix == "geom")
867 return EShLangGeometry;
868 else if (suffix == "frag")
869 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000870 else if (suffix == "comp")
871 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000872
873 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000874 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000875}
876
John Kessenicha0af4732012-12-12 21:15:54 +0000877//
John Kessenichecba76f2017-01-06 00:34:48 -0700878// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +0000879// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000880//
John Kessenich51cdd902014-02-18 23:37:57 +0000881void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000882{
John Kessenichca3457f2015-05-18 01:59:45 +0000883 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000884 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000885 if (! shaderStrings) {
886 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000887 }
888
John Kessenich41cf6b52013-06-25 18:10:05 +0000889 int* lengths = new int[NumShaderStrings];
890
891 // move to length-based strings, rather than null-terminated strings
892 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000893 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000894
John Kessenichc999ba22013-11-07 23:33:24 +0000895 if (! shaderStrings) {
896 CompileFailed = true;
897 return;
898 }
John Kessenicha0af4732012-12-12 21:15:54 +0000899
John Kessenich52ac67e2013-05-05 23:46:22 +0000900 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000901 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -0700902
John Kessenich94a81fb2013-08-31 02:41:30 +0000903 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
904 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -0700905 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000906 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -0700907 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -0700908 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +0000909 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -0700910 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
911 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +0000912 }
John Kessenicha0af4732012-12-12 21:15:54 +0000913
John Kessenich94a81fb2013-08-31 02:41:30 +0000914 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000915 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +0000916 }
John Kessenicha0af4732012-12-12 21:15:54 +0000917
John Kessenich41cf6b52013-06-25 18:10:05 +0000918 delete [] lengths;
919 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +0000920
John Kessenichc999ba22013-11-07 23:33:24 +0000921 if (ret == 0)
922 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +0000923}
924
John Kessenicha0af4732012-12-12 21:15:54 +0000925//
926// print usage to stdout
927//
928void usage()
929{
John Kessenich319de232013-12-04 04:43:40 +0000930 printf("Usage: glslangValidator [option]... [file]...\n"
931 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +0000932 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600933 " .conf to provide an optional config file that replaces the default configuration\n"
934 " (see -c option below for generating a template)\n"
935 " .vert for a vertex shader\n"
936 " .tesc for a tessellation control shader\n"
937 " .tese for a tessellation evaluation shader\n"
938 " .geom for a geometry shader\n"
939 " .frag for a fragment shader\n"
940 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +0000941 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000942 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +0000943 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000944 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600945 "Each option must be specified separately.\n"
946 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
947 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600948 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
949 " default file name is <stage>.spv (-o overrides this)\n"
950 " -H print human readable form of SPIR-V; turns on -V\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400951 " -E print pre-processed GLSL; cannot be used with -l;\n"
952 " errors will appear on stderr.\n"
Dan Bakerc6ede892016-08-11 14:06:06 -0400953 " -S <stage> uses explicit stage specified, rather then the file extension.\n"
Dan Baker895275e2016-08-11 14:55:49 -0400954 " valid choices are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600955 " -c configuration dump;\n"
956 " creates the default configuration file (redirect to a .conf file)\n"
John Kessenicha86836e2016-07-09 14:50:57 -0600957 " -C cascading errors; risks crashes from accumulation of error recoveries\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600958 " -d default to desktop (#version 110) when there is no shader #version\n"
959 " (default is ES version 100)\n"
John Kessenich66e2faf2016-03-12 18:34:36 -0700960 " -D input is HLSL\n"
John Kessenich4d65ee32016-03-12 18:17:47 -0700961 " -e specify entry-point name\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600962 " -h print this usage message\n"
963 " -i intermediate tree (glslang AST) is printed out\n"
964 " -l link all input files together to form a single module\n"
965 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500966 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600967 " -q dump reflection query database\n"
968 " -r relaxed semantic error-checking mode\n"
969 " -s silent mode\n"
970 " -t multi-threaded mode\n"
971 " -v print version strings\n"
972 " -w suppress warnings (except as required by #extension : warn)\n"
Johannes van Waveren1fd01752016-05-31 08:39:41 -0500973 " -x save 32-bit hexadecimal numbers as text, requires a binary option (e.g., -V)\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600974 "\n"
975 " --shift-sampler-binding [stage] num set base binding number for samplers\n"
976 " --ssb [stage] num synonym for --shift-sampler-binding\n"
977 "\n"
978 " --shift-texture-binding [stage] num set base binding number for textures\n"
979 " --stb [stage] num synonym for --shift-texture-binding\n"
980 "\n"
steve-lunarg9088be42016-11-01 10:31:42 -0600981 " --shift-image-binding [stage] num set base binding number for images (uav)\n"
982 " --sib [stage] num synonym for --shift-image-binding\n"
983 "\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600984 " --shift-UBO-binding [stage] num set base binding number for UBOs\n"
985 " --sub [stage] num synonym for --shift-UBO-binding\n"
986 "\n"
987 " --auto-map-bindings automatically bind uniform variables without\n"
988 " explicit bindings.\n"
989 " --amb synonym for --auto-map-bindings\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -0600990 "\n"
steve-lunargbc9b7652016-09-29 08:43:22 -0600991 " --flatten-uniform-arrays flatten uniform texture & sampler arrays to scalars\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -0600992 " --fua synonym for --flatten-uniform-arrays\n"
steve-lunargcce8d482016-10-14 18:36:42 -0600993 "\n"
994 " --no-storage-format use Unknown image format\n"
995 " --nsf synonym for --no-storage-format\n"
steve-lunargf1e0c872016-10-31 15:13:43 -0600996 "\n"
997 " --source-entrypoint name the given shader source function is renamed to be the entry point given in -e\n"
998 " --sep synonym for --source-entrypoint\n"
John Kessenich906cc212016-12-09 19:22:20 -0700999 "\n"
1000 " --keep-uncalled don't eliminate uncalled functions when linking\n"
1001 " --ku synonym for --keep-uncalled\n"
John Kessenich8f674e82017-02-18 09:45:40 -07001002 " --variable-name <name> Creates a C header file that contains a uint32_t array named <name> initialized with the shader binary code.\n"
1003 " --vn <name> synonym for --variable-name <name>.\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001004 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001005
1006 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001007}
1008
John Kessenich3ce4e592014-10-06 19:57:34 +00001009#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001010
1011#include <errno.h>
1012
1013int fopen_s(
1014 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001015 const char* filename,
1016 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001017)
1018{
1019 if (!pFile || !filename || !mode) {
1020 return EINVAL;
1021 }
1022
1023 FILE* f = fopen(filename, mode);
1024 if (! f) {
1025 if (errno != 0) {
1026 return errno;
1027 } else {
1028 return ENOENT;
1029 }
1030 }
1031 *pFile = f;
1032
1033 return 0;
1034}
1035
1036#endif
1037
John Kessenicha0af4732012-12-12 21:15:54 +00001038//
1039// Malloc a string of sufficient size and read a string into it.
1040//
John Kessenichecba76f2017-01-06 00:34:48 -07001041char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001042{
John Kessenichb3297152015-07-11 18:01:03 -06001043 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001044 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +00001045
John Kessenicha0af4732012-12-12 21:15:54 +00001046 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001047 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
1048 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001049
John Kessenich68d78fd2015-07-12 19:28:10 -06001050 if (errorCode || in == nullptr)
1051 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001052
John Kessenicha0af4732012-12-12 21:15:54 +00001053 while (fgetc(in) != EOF)
1054 count++;
1055
John Kessenichd6c72a42014-08-18 19:42:35 +00001056 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001057
John Kessenichb3297152015-07-11 18:01:03 -06001058 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -06001059 if (! fdata)
1060 Error("can't allocate memory");
1061
John Kessenichb3297152015-07-11 18:01:03 -06001062 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -06001063 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -06001064 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001065 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001066
John Kessenicha0af4732012-12-12 21:15:54 +00001067 fdata[count] = '\0';
1068 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001069
John Kessenichea869fb2013-10-28 18:12:06 +00001070 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -06001071 // recover from empty file
1072 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001073 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +00001074 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001075 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +00001076
John Kessenichb3297152015-07-11 18:01:03 -06001077 return return_data;
1078 } else
1079 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
1080
1081 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +00001082 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -06001083 int ptr_len = 0;
1084 int i = 0;
1085 while (count > 0) {
1086 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
1087 memcpy(return_data[i], fdata + ptr_len, len);
1088 return_data[i][len] = '\0';
1089 count -= len;
1090 ptr_len += len;
1091 if (count < len) {
1092 if (count == 0) {
1093 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +00001094 break;
1095 }
John Kessenichb3297152015-07-11 18:01:03 -06001096 len = count;
John Kessenichecba76f2017-01-06 00:34:48 -07001097 }
John Kessenichd6c72a42014-08-18 19:42:35 +00001098 ++i;
1099 }
John Kessenichb3297152015-07-11 18:01:03 -06001100
1101 free(fdata);
1102
John Kessenicha0af4732012-12-12 21:15:54 +00001103 return return_data;
1104}
1105
John Kessenich51cdd902014-02-18 23:37:57 +00001106void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +00001107{
John Kessenichb3297152015-07-11 18:01:03 -06001108 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +00001109 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -06001110
1111 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001112}
1113
John Kessenich54d8cda2013-02-11 22:36:01 +00001114void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001115{
John Kessenichfae38ee2015-06-10 23:23:12 +00001116 if (num >= 0 )
1117 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1118 else
1119 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001120}