blob: d40673c155214207be5be18878c3c620474fe7cb [file] [log] [blame]
John Kessenicha0af4732012-12-12 21:15:54 +00001//
2//Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06003//Copyright (C) 2013-2016 LunarG, Inc.
John Kessenichbd0747d2013-02-17 06:01:50 +00004//
John Kessenicha0af4732012-12-12 21:15:54 +00005//All rights reserved.
6//
7//Redistribution and use in source and binary forms, with or without
8//modification, are permitted provided that the following conditions
9//are met:
10//
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//
23//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.
35//
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;
John Kessenich68d78fd2015-07-12 19:28:10 -0600166
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600167std::array<unsigned int, EShLangCount> baseSamplerBinding;
168std::array<unsigned int, EShLangCount> baseTextureBinding;
steve-lunarg9088be42016-11-01 10:31:42 -0600169std::array<unsigned int, EShLangCount> baseImageBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600170std::array<unsigned int, EShLangCount> baseUboBinding;
171
John Kessenich68d78fd2015-07-12 19:28:10 -0600172//
173// Create the default name for saving a binary if -o is not provided.
174//
175const char* GetBinaryName(EShLanguage stage)
176{
177 const char* name;
178 if (binaryFileName == nullptr) {
179 switch (stage) {
180 case EShLangVertex: name = "vert.spv"; break;
181 case EShLangTessControl: name = "tesc.spv"; break;
182 case EShLangTessEvaluation: name = "tese.spv"; break;
183 case EShLangGeometry: name = "geom.spv"; break;
184 case EShLangFragment: name = "frag.spv"; break;
185 case EShLangCompute: name = "comp.spv"; break;
186 default: name = "unknown"; break;
187 }
188 } else
189 name = binaryFileName;
190
191 return name;
192}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000193
John Kessenich05a70632013-09-17 19:26:08 +0000194//
195// *.conf => this is a config file that can set limits/resources
196//
197bool SetConfigFile(const std::string& name)
198{
199 if (name.size() < 5)
200 return false;
201
John Kessenich4c706852013-10-11 16:28:43 +0000202 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000203 ConfigFile = name;
204 return true;
205 }
206
207 return false;
208}
209
John Kessenich68d78fd2015-07-12 19:28:10 -0600210//
211// Give error and exit with failure code.
212//
213void Error(const char* message)
214{
215 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
216 exit(EFailUsage);
217}
218
219//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600220// Process an optional binding base of the form:
221// --argname [stage] base
222// Where stage is one of the forms accepted by FindLanguage, and base is an integer
223//
224void ProcessBindingBase(int& argc, char**& argv, std::array<unsigned int, EShLangCount>& base)
225{
226 if (argc < 2)
227 usage();
228
229 if (!isdigit(argv[1][0])) {
230 if (argc < 3) // this form needs one more argument
231 usage();
232
233 // Parse form: --argname stage base
234 const EShLanguage lang = FindLanguage(argv[1], false);
235 base[lang] = atoi(argv[2]);
236 argc-= 2;
237 argv+= 2;
238 } else {
239 // Parse form: --argname base
240 for (int lang=0; lang<EShLangCount; ++lang)
241 base[lang] = atoi(argv[1]);
242
243 argc--;
244 argv++;
245 }
246}
247
248//
John Kessenich68d78fd2015-07-12 19:28:10 -0600249// Do all command-line argument parsing. This includes building up the work-items
250// to be processed later, and saving all the command-line options.
251//
252// Does not return (it exits) if command-line is fatally flawed.
253//
254void ProcessArguments(int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000255{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600256 baseSamplerBinding.fill(0);
257 baseTextureBinding.fill(0);
steve-lunarg9088be42016-11-01 10:31:42 -0600258 baseImageBinding.fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600259 baseUboBinding.fill(0);
260
John Kessenich38f3b892013-09-06 19:52:57 +0000261 ExecutableName = argv[0];
262 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 +0000263 Work = new glslang::TWorkItem*[NumWorkItems];
John Kessenich68d78fd2015-07-12 19:28:10 -0600264 for (int w = 0; w < NumWorkItems; ++w)
265 Work[w] = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000266
John Kessenich2b07c7e2013-07-31 18:44:13 +0000267 argc--;
268 argv++;
269 for (; argc >= 1; argc--, argv++) {
270 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000271 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600272 case '-':
273 {
274 std::string lowerword(argv[0]+2);
275 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
276
277 // handle --word style options
278 if (lowerword == "shift-sampler-bindings" || // synonyms
279 lowerword == "shift-sampler-binding" ||
280 lowerword == "ssb") {
281 ProcessBindingBase(argc, argv, baseSamplerBinding);
282 } else if (lowerword == "shift-texture-bindings" || // synonyms
283 lowerword == "shift-texture-binding" ||
284 lowerword == "stb") {
285 ProcessBindingBase(argc, argv, baseTextureBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600286 } else if (lowerword == "shift-image-bindings" || // synonyms
287 lowerword == "shift-image-binding" ||
288 lowerword == "sib") {
289 ProcessBindingBase(argc, argv, baseImageBinding);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600290 } else if (lowerword == "shift-ubo-bindings" || // synonyms
291 lowerword == "shift-ubo-binding" ||
292 lowerword == "sub") {
293 ProcessBindingBase(argc, argv, baseUboBinding);
294 } else if (lowerword == "auto-map-bindings" || // synonyms
295 lowerword == "auto-map-binding" ||
296 lowerword == "amb") {
297 Options |= EOptionAutoMapBindings;
steve-lunarge0b9deb2016-09-16 13:26:37 -0600298 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
299 lowerword == "flatten-uniform-array" ||
300 lowerword == "fua") {
301 Options |= EOptionFlattenUniformArrays;
steve-lunargcce8d482016-10-14 18:36:42 -0600302 } else if (lowerword == "no-storage-format" || // synonyms
303 lowerword == "nsf") {
304 Options |= EOptionNoStorageFormat;
steve-lunargf1e0c872016-10-31 15:13:43 -0600305 } else if (lowerword == "source-entrypoint" || // synonyms
306 lowerword == "sep") {
307 sourceEntryPointName = argv[1];
308 if (argc > 0) {
309 argc--;
310 argv++;
311 } else
312 Error("no <entry-point> provided for --source-entrypoint");
313 break;
John Kessenich906cc212016-12-09 19:22:20 -0700314 } else if (lowerword == "keep-uncalled" || // synonyms
315 lowerword == "ku") {
316 Options |= EOptionKeepUncalled;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600317 } else {
318 usage();
319 }
320 }
321 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000322 case 'H':
323 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600324 if ((Options & EOptionSpv) == 0) {
325 // default to Vulkan
326 Options |= EOptionSpv;
327 Options |= EOptionVulkanRules;
328 Options |= EOptionLinkProgram;
329 }
330 break;
John Kessenich0df0cde2015-03-03 17:09:43 +0000331 case 'V':
332 Options |= EOptionSpv;
John Kessenich68d78fd2015-07-12 19:28:10 -0600333 Options |= EOptionVulkanRules;
334 Options |= EOptionLinkProgram;
335 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400336 case 'S':
Dan Bakerc6ede892016-08-11 14:06:06 -0400337 shaderStageName = argv[1];
dankbaker45d49bc2016-08-08 21:43:07 -0400338 if (argc > 0) {
339 argc--;
340 argv++;
341 }
342 else
Dan Baker5afdd782016-08-11 17:53:57 -0400343 Error("no <stage> specified for -S");
dankbaker45d49bc2016-08-08 21:43:07 -0400344 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600345 case 'G':
346 Options |= EOptionSpv;
John Kessenichd78e3512014-08-25 20:07:55 +0000347 Options |= EOptionLinkProgram;
John Kessenich91e4aa52016-07-07 17:46:42 -0600348 // undo a -H default to Vulkan
349 Options &= ~EOptionVulkanRules;
John Kessenich92f90382014-07-28 04:21:04 +0000350 break;
John Kessenichc555ddd2015-06-17 02:38:44 +0000351 case 'E':
352 Options |= EOptionOutputPreprocessed;
353 break;
John Kessenich05a70632013-09-17 19:26:08 +0000354 case 'c':
355 Options |= EOptionDumpConfig;
356 break;
John Kessenicha86836e2016-07-09 14:50:57 -0600357 case 'C':
358 Options |= EOptionCascadingErrors;
359 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000360 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000361 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000362 break;
John Kessenich66e2faf2016-03-12 18:34:36 -0700363 case 'D':
364 Options |= EOptionReadHlsl;
365 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700366 case 'e':
367 // HLSL todo: entry point handle needs much more sophistication.
368 // This is okay for one compilation unit with one entry point.
369 entryPointName = argv[1];
370 if (argc > 0) {
371 argc--;
372 argv++;
373 } else
374 Error("no <entry-point> provided for -e");
375 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600376 case 'h':
377 usage();
378 break;
John Kessenich05a70632013-09-17 19:26:08 +0000379 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000380 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000381 break;
382 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000383 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000384 break;
385 case 'm':
386 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000387 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600388 case 'o':
389 binaryFileName = argv[1];
390 if (argc > 0) {
391 argc--;
392 argv++;
393 } else
394 Error("no <file> provided for -o");
395 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000396 case 'q':
397 Options |= EOptionDumpReflection;
398 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000399 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000400 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000401 break;
402 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000403 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000404 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000405 case 't':
406 #ifdef _WIN32
John Kessenichb0a7eb52013-11-07 17:44:20 +0000407 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000408 #endif
409 break;
John Kessenich319de232013-12-04 04:43:40 +0000410 case 'v':
411 Options |= EOptionDumpVersions;
412 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000413 case 'w':
414 Options |= EOptionSuppressWarnings;
415 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500416 case 'x':
417 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500418 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000419 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600420 usage();
421 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000422 }
John Kessenich38f3b892013-09-06 19:52:57 +0000423 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000424 std::string name(argv[0]);
425 if (! SetConfigFile(name)) {
426 Work[argc] = new glslang::TWorkItem(name);
427 Worklist.add(Work[argc]);
428 }
John Kessenich38f3b892013-09-06 19:52:57 +0000429 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000430 }
431
John Kessenich68d78fd2015-07-12 19:28:10 -0600432 // Make sure that -E is not specified alongside linking (which includes SPV generation)
433 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
434 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000435
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500436 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600437 if (binaryFileName && (Options & EOptionSpv) == 0)
438 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600439
440 if ((Options & EOptionFlattenUniformArrays) != 0 &&
441 (Options & EOptionReadHlsl) == 0)
442 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000443}
444
John Kessenich68d78fd2015-07-12 19:28:10 -0600445//
446// Translate the meaningful subset of command-line options to parser-behavior options.
447//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000448void SetMessageOptions(EShMessages& messages)
449{
450 if (Options & EOptionRelaxedErrors)
451 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
452 if (Options & EOptionIntermediate)
453 messages = (EShMessages)(messages | EShMsgAST);
454 if (Options & EOptionSuppressWarnings)
455 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600456 if (Options & EOptionSpv)
457 messages = (EShMessages)(messages | EShMsgSpvRules);
458 if (Options & EOptionVulkanRules)
459 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400460 if (Options & EOptionOutputPreprocessed)
461 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700462 if (Options & EOptionReadHlsl)
463 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600464 if (Options & EOptionCascadingErrors)
465 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700466 if (Options & EOptionKeepUncalled)
467 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000468}
469
John Kessenich68d78fd2015-07-12 19:28:10 -0600470//
John Kessenich69f4b512013-09-04 21:19:27 +0000471// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000472//
473// Return 0 for failure, 1 for success.
474//
Pyry Haulos5f6892e2015-12-01 12:59:53 -0800475unsigned int CompileShaders(void*)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000476{
John Kessenich38f3b892013-09-06 19:52:57 +0000477 glslang::TWorkItem* workItem;
478 while (Worklist.remove(workItem)) {
479 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000480 if (compiler == 0)
John Kessenichc999ba22013-11-07 23:33:24 +0000481 return 0;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000482
John Kessenichb0a7eb52013-11-07 17:44:20 +0000483 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000484
John Kessenich94a81fb2013-08-31 02:41:30 +0000485 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000486 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000487
488 ShDestruct(compiler);
489 }
490
491 return 0;
492}
493
John Kessenich6626cad2015-06-19 05:14:19 +0000494// Outputs the given string, but only if it is non-null and non-empty.
495// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400496void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000497{
498 if (str && str[0]) {
499 puts(str);
500 }
501}
502
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400503// Outputs the given string to stderr, but only if it is non-null and non-empty.
504// This prevents erroneous newlines from appearing.
505void StderrIfNonEmpty(const char* str)
506{
507 if (str && str[0]) {
508 fprintf(stderr, "%s\n", str);
509 }
510}
511
John Kessenichc57b2a92016-01-16 15:30:03 -0700512// Simple bundling of what makes a compilation unit for ease in passing around,
513// and separation of handling file IO versus API (programmatic) compilation.
514struct ShaderCompUnit {
515 EShLanguage stage;
516 std::string fileName;
dankbakerafe6e9c2016-08-21 12:29:08 -0400517 char** text; // memory owned/managed externally
518 const char* fileNameList[1];
519
John Kessenich219b0252016-08-23 17:51:13 -0600520 // Need to have a special constructors to adjust the fileNameList, since back end needs a list of ptrs
dankbakerafe6e9c2016-08-21 12:29:08 -0400521 ShaderCompUnit(EShLanguage istage, std::string &ifileName, char** itext)
522 {
523 stage = istage;
524 fileName = ifileName;
525 text = itext;
John Kessenich219b0252016-08-23 17:51:13 -0600526 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400527 }
528
529 ShaderCompUnit(const ShaderCompUnit &rhs)
530 {
531 stage = rhs.stage;
532 fileName = rhs.fileName;
533 text = rhs.text;
John Kessenich219b0252016-08-23 17:51:13 -0600534 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400535 }
536
John Kessenichc57b2a92016-01-16 15:30:03 -0700537};
538
John Kessenich69f4b512013-09-04 21:19:27 +0000539//
John Kessenichc57b2a92016-01-16 15:30:03 -0700540// For linking mode: Will independently parse each compilation unit, but then put them
541// in the same program and link them together, making at most one linked module per
542// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000543//
544// Uses the new C++ interface instead of the old handle-based interface.
545//
John Kessenichc57b2a92016-01-16 15:30:03 -0700546
547void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000548{
549 // keep track of what to free
550 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700551
John Kessenich69f4b512013-09-04 21:19:27 +0000552 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000553 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000554
John Kessenich69f4b512013-09-04 21:19:27 +0000555 //
556 // Per-shader processing...
557 //
558
John Kessenich5b0f13a2013-11-01 03:08:40 +0000559 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100560 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
561 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700562 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
dankbakerafe6e9c2016-08-21 12:29:08 -0400563 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, 1);
John Kessenich4d65ee32016-03-12 18:17:47 -0700564 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
565 shader->setEntryPoint(entryPointName);
steve-lunargf1e0c872016-10-31 15:13:43 -0600566 if (sourceEntryPointName)
567 shader->setSourceEntryPoint(sourceEntryPointName);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600568
569 shader->setShiftSamplerBinding(baseSamplerBinding[compUnit.stage]);
570 shader->setShiftTextureBinding(baseTextureBinding[compUnit.stage]);
steve-lunarg9088be42016-11-01 10:31:42 -0600571 shader->setShiftImageBinding(baseImageBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600572 shader->setShiftUboBinding(baseUboBinding[compUnit.stage]);
steve-lunarge0b9deb2016-09-16 13:26:37 -0600573 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600574 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600575
576 if (Options & EOptionAutoMapBindings)
577 shader->setAutoMapBindings(true);
578
John Kessenich69f4b512013-09-04 21:19:27 +0000579 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600580
John Kessenichc555ddd2015-06-17 02:38:44 +0000581 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000582
John Kessenichc555ddd2015-06-17 02:38:44 +0000583 if (Options & EOptionOutputPreprocessed) {
584 std::string str;
Andrew Woloszyna132af52016-03-07 13:23:09 -0500585 glslang::TShader::ForbidInclude includer;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400586 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500587 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400588 PutsIfNonEmpty(str.c_str());
589 } else {
590 CompileFailed = true;
591 }
592 StderrIfNonEmpty(shader->getInfoLog());
593 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000594 continue;
595 }
596 if (! shader->parse(&Resources, defaultVersion, false, messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000597 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000598
John Kessenich69f4b512013-09-04 21:19:27 +0000599 program.addShader(shader);
600
John Kessenichc57b2a92016-01-16 15:30:03 -0700601 if (! (Options & EOptionSuppressInfolog) &&
602 ! (Options & EOptionMemoryLeakMode)) {
603 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400604 PutsIfNonEmpty(shader->getInfoLog());
605 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000606 }
John Kessenich69f4b512013-09-04 21:19:27 +0000607 }
608
609 //
610 // Program-level processing...
611 //
612
John Kessenich4d65ee32016-03-12 18:17:47 -0700613 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600614 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000615 LinkFailed = true;
616
steve-lunarg9ae34742016-10-05 13:40:13 -0600617 // Map IO
618 if (Options & EOptionSpv) {
619 if (!program.mapIO())
620 LinkFailed = true;
621 }
622
John Kessenich4d65ee32016-03-12 18:17:47 -0700623 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700624 if (! (Options & EOptionSuppressInfolog) &&
625 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400626 PutsIfNonEmpty(program.getInfoLog());
627 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000628 }
629
John Kessenich4d65ee32016-03-12 18:17:47 -0700630 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000631 if (Options & EOptionDumpReflection) {
632 program.buildReflection();
633 program.dumpReflection();
634 }
635
John Kessenich4d65ee32016-03-12 18:17:47 -0700636 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000637 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000638 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600639 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000640 else {
641 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000642 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000643 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400644 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400645 spv::SpvBuildLogger logger;
646 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger);
John Kessenichc57b2a92016-01-16 15:30:03 -0700647
648 // Dump the spv to a file or stdout, etc., but only if not doing
649 // memory/perf testing, as it's not internal to programmatic use.
650 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500651 printf("%s", logger.getAllMessages().c_str());
652 if (Options & EOptionOutputHexadecimal) {
653 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage));
654 } else {
655 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
656 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700657 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700658 spv::Disassemble(std::cout, spirv);
659 }
John Kessenichacba7722015-03-04 03:48:38 +0000660 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000661 }
John Kessenich92f90382014-07-28 04:21:04 +0000662 }
663 }
664 }
665
John Kessenich5b0f13a2013-11-01 03:08:40 +0000666 // Free everything up, program has to go before the shaders
667 // because it might have merged stuff from the shaders, and
668 // the stuff from the shaders has to have its destructors called
669 // before the pools holding the memory in the shaders is freed.
670 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000671 while (shaders.size() > 0) {
672 delete shaders.back();
673 shaders.pop_back();
674 }
John Kessenich69f4b512013-09-04 21:19:27 +0000675}
676
John Kessenichc57b2a92016-01-16 15:30:03 -0700677//
678// Do file IO part of compile and link, handing off the pure
679// API/programmatic mode to CompileAndLinkShaderUnits(), which can
680// be put in a loop for testing memory footprint and performance.
681//
682// This is just for linking mode: meaning all the shaders will be put into the
683// the same program linked together.
684//
685// This means there are a limited number of work items (not multi-threading mode)
686// and that the point is testing at the linking level. Hence, to enable
687// performance and memory testing, the actual compile/link can be put in
688// a loop, independent of processing the work items and file IO.
689//
690void CompileAndLinkShaderFiles()
691{
692 std::vector<ShaderCompUnit> compUnits;
693
694 // Transfer all the work items from to a simple list of
695 // of compilation units. (We don't care about the thread
696 // work-item distribution properties in this path, which
697 // is okay due to the limited number of shaders, know since
698 // they are all getting linked together.)
699 glslang::TWorkItem* workItem;
700 while (Worklist.remove(workItem)) {
baldurk31d5d482016-10-13 19:25:52 +0200701 ShaderCompUnit compUnit(
John Kessenichc57b2a92016-01-16 15:30:03 -0700702 FindLanguage(workItem->name),
703 workItem->name,
704 ReadFileData(workItem->name.c_str())
baldurk31d5d482016-10-13 19:25:52 +0200705 );
John Kessenichc57b2a92016-01-16 15:30:03 -0700706
707 if (! compUnit.text) {
708 usage();
709 return;
710 }
711
712 compUnits.push_back(compUnit);
713 }
714
715 // Actual call to programmatic processing of compile and link,
716 // in a loop for testing memory and performance. This part contains
717 // all the perf/memory that a programmatic consumer will care about.
718 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
719 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
720 CompileAndLinkShaderUnits(compUnits);
721
722 if (Options & EOptionMemoryLeakMode)
723 glslang::OS_DumpMemoryCounters();
724 }
725
rdb32084e82016-02-23 22:17:38 +0100726 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
727 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700728}
729
John Kessenicha0af4732012-12-12 21:15:54 +0000730int C_DECL main(int argc, char* argv[])
731{
John Kessenich68d78fd2015-07-12 19:28:10 -0600732 ProcessArguments(argc, argv);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000733
John Kessenich05a70632013-09-17 19:26:08 +0000734 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500735 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000736 if (Worklist.empty())
737 return ESuccess;
738 }
739
John Kessenich0da9eaa2015-08-01 17:10:02 -0600740 if (Options & EOptionDumpVersions) {
741 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000742 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
743 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600744 std::string spirvVersion;
745 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600746 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600747 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700748 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600749 printf("GL_KHR_vulkan_glsl version %d\n", 100);
750 printf("ARB_GL_gl_spirv version %d\n", 100);
John Kessenich319de232013-12-04 04:43:40 +0000751 if (Worklist.empty())
752 return ESuccess;
753 }
754
John Kessenich05a70632013-09-17 19:26:08 +0000755 if (Worklist.empty()) {
756 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000757 }
758
759 ProcessConfigFile();
760
John Kessenich69f4b512013-09-04 21:19:27 +0000761 //
762 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000763 // 1) linking all arguments together, single-threaded, new C++ interface
764 // 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 +0000765 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000766 if (Options & EOptionLinkProgram ||
767 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000768 glslang::InitializeProcess();
John Kessenichc57b2a92016-01-16 15:30:03 -0700769 CompileAndLinkShaderFiles();
John Kessenichc36e1d82013-11-01 17:41:52 +0000770 glslang::FinalizeProcess();
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500771 for (int w = 0; w < NumWorkItems; ++w) {
772 if (Work[w]) {
773 delete Work[w];
774 }
775 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000776 } else {
777 ShInitialize();
778
John Kessenich38f3b892013-09-06 19:52:57 +0000779 bool printShaderNames = Worklist.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000780
John Kessenich38f3b892013-09-06 19:52:57 +0000781 if (Options & EOptionMultiThreaded) {
782 const int NumThreads = 16;
783 void* threads[NumThreads];
784 for (int t = 0; t < NumThreads; ++t) {
785 threads[t] = glslang::OS_CreateThread(&CompileShaders);
786 if (! threads[t]) {
787 printf("Failed to create thread\n");
788 return EFailThreadCreate;
789 }
John Kessenicha0af4732012-12-12 21:15:54 +0000790 }
John Kessenich38f3b892013-09-06 19:52:57 +0000791 glslang::OS_WaitForAllThreads(threads, NumThreads);
John Kessenichc999ba22013-11-07 23:33:24 +0000792 } else
793 CompileShaders(0);
John Kessenich38f3b892013-09-06 19:52:57 +0000794
795 // Print out all the resulting infologs
796 for (int w = 0; w < NumWorkItems; ++w) {
797 if (Work[w]) {
Kenneth Perryb07e6be2015-12-15 10:52:34 -0600798 if (printShaderNames || Work[w]->results.size() > 0)
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400799 PutsIfNonEmpty(Work[w]->name.c_str());
800 PutsIfNonEmpty(Work[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000801 delete Work[w];
802 }
803 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000804
805 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000806 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000807
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500808 delete[] Work;
809
John Kessenichc999ba22013-11-07 23:33:24 +0000810 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000811 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000812 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000813 return EFailLink;
814
815 return 0;
816}
817
818//
819// Deduce the language from the filename. Files must end in one of the
820// following extensions:
821//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000822// .vert = vertex
823// .tesc = tessellation control
824// .tese = tessellation evaluation
825// .geom = geometry
826// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000827// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000828//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600829EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +0000830{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600831 size_t ext = 0;
832
833 // Search for a suffix on a filename: e.g, "myfile.frag". If given
834 // the suffix directly, we skip looking the '.'
835 if (parseSuffix) {
836 ext = name.rfind('.');
837 if (ext == std::string::npos) {
838 usage();
839 return EShLangVertex;
840 }
841 ++ext;
John Kessenicha0af4732012-12-12 21:15:54 +0000842 }
843
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600844 std::string suffix = name.substr(ext, std::string::npos);
Dan Bakerc6ede892016-08-11 14:06:06 -0400845 if (shaderStageName)
846 suffix = shaderStageName;
dankbaker45d49bc2016-08-08 21:43:07 -0400847
John Kessenich2b07c7e2013-07-31 18:44:13 +0000848 if (suffix == "vert")
849 return EShLangVertex;
850 else if (suffix == "tesc")
851 return EShLangTessControl;
852 else if (suffix == "tese")
853 return EShLangTessEvaluation;
854 else if (suffix == "geom")
855 return EShLangGeometry;
856 else if (suffix == "frag")
857 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000858 else if (suffix == "comp")
859 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000860
861 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000862 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000863}
864
John Kessenicha0af4732012-12-12 21:15:54 +0000865//
John Kessenich69f4b512013-09-04 21:19:27 +0000866// Read a file's data into a string, and compile it using the old interface ShCompile,
867// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000868//
John Kessenich51cdd902014-02-18 23:37:57 +0000869void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000870{
John Kessenichca3457f2015-05-18 01:59:45 +0000871 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000872 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000873 if (! shaderStrings) {
874 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000875 }
876
John Kessenich41cf6b52013-06-25 18:10:05 +0000877 int* lengths = new int[NumShaderStrings];
878
879 // move to length-based strings, rather than null-terminated strings
880 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000881 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000882
John Kessenichc999ba22013-11-07 23:33:24 +0000883 if (! shaderStrings) {
884 CompileFailed = true;
885 return;
886 }
John Kessenicha0af4732012-12-12 21:15:54 +0000887
John Kessenich52ac67e2013-05-05 23:46:22 +0000888 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000889 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000890
John Kessenich94a81fb2013-08-31 02:41:30 +0000891 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
892 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich26ad2682014-08-13 20:17:19 +0000893 //ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000894 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichea869fb2013-10-28 18:12:06 +0000895 //const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
896 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
897 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich41cf6b52013-06-25 18:10:05 +0000898 //const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
John Kessenichca3457f2015-05-18 01:59:45 +0000899 //ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +0000900 }
John Kessenicha0af4732012-12-12 21:15:54 +0000901
John Kessenich94a81fb2013-08-31 02:41:30 +0000902 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000903 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +0000904 }
John Kessenicha0af4732012-12-12 21:15:54 +0000905
John Kessenich41cf6b52013-06-25 18:10:05 +0000906 delete [] lengths;
907 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +0000908
John Kessenichc999ba22013-11-07 23:33:24 +0000909 if (ret == 0)
910 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +0000911}
912
John Kessenicha0af4732012-12-12 21:15:54 +0000913//
914// print usage to stdout
915//
916void usage()
917{
John Kessenich319de232013-12-04 04:43:40 +0000918 printf("Usage: glslangValidator [option]... [file]...\n"
919 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +0000920 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600921 " .conf to provide an optional config file that replaces the default configuration\n"
922 " (see -c option below for generating a template)\n"
923 " .vert for a vertex shader\n"
924 " .tesc for a tessellation control shader\n"
925 " .tese for a tessellation evaluation shader\n"
926 " .geom for a geometry shader\n"
927 " .frag for a fragment shader\n"
928 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +0000929 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000930 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +0000931 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000932 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600933 "Each option must be specified separately.\n"
934 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
935 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600936 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
937 " default file name is <stage>.spv (-o overrides this)\n"
938 " -H print human readable form of SPIR-V; turns on -V\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400939 " -E print pre-processed GLSL; cannot be used with -l;\n"
940 " errors will appear on stderr.\n"
Dan Bakerc6ede892016-08-11 14:06:06 -0400941 " -S <stage> uses explicit stage specified, rather then the file extension.\n"
Dan Baker895275e2016-08-11 14:55:49 -0400942 " valid choices are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600943 " -c configuration dump;\n"
944 " creates the default configuration file (redirect to a .conf file)\n"
John Kessenicha86836e2016-07-09 14:50:57 -0600945 " -C cascading errors; risks crashes from accumulation of error recoveries\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600946 " -d default to desktop (#version 110) when there is no shader #version\n"
947 " (default is ES version 100)\n"
John Kessenich66e2faf2016-03-12 18:34:36 -0700948 " -D input is HLSL\n"
John Kessenich4d65ee32016-03-12 18:17:47 -0700949 " -e specify entry-point name\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600950 " -h print this usage message\n"
951 " -i intermediate tree (glslang AST) is printed out\n"
952 " -l link all input files together to form a single module\n"
953 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500954 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600955 " -q dump reflection query database\n"
956 " -r relaxed semantic error-checking mode\n"
957 " -s silent mode\n"
958 " -t multi-threaded mode\n"
959 " -v print version strings\n"
960 " -w suppress warnings (except as required by #extension : warn)\n"
Johannes van Waveren1fd01752016-05-31 08:39:41 -0500961 " -x save 32-bit hexadecimal numbers as text, requires a binary option (e.g., -V)\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600962 "\n"
963 " --shift-sampler-binding [stage] num set base binding number for samplers\n"
964 " --ssb [stage] num synonym for --shift-sampler-binding\n"
965 "\n"
966 " --shift-texture-binding [stage] num set base binding number for textures\n"
967 " --stb [stage] num synonym for --shift-texture-binding\n"
968 "\n"
steve-lunarg9088be42016-11-01 10:31:42 -0600969 " --shift-image-binding [stage] num set base binding number for images (uav)\n"
970 " --sib [stage] num synonym for --shift-image-binding\n"
971 "\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600972 " --shift-UBO-binding [stage] num set base binding number for UBOs\n"
973 " --sub [stage] num synonym for --shift-UBO-binding\n"
974 "\n"
975 " --auto-map-bindings automatically bind uniform variables without\n"
976 " explicit bindings.\n"
977 " --amb synonym for --auto-map-bindings\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -0600978 "\n"
steve-lunargbc9b7652016-09-29 08:43:22 -0600979 " --flatten-uniform-arrays flatten uniform texture & sampler arrays to scalars\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -0600980 " --fua synonym for --flatten-uniform-arrays\n"
steve-lunargcce8d482016-10-14 18:36:42 -0600981 "\n"
982 " --no-storage-format use Unknown image format\n"
983 " --nsf synonym for --no-storage-format\n"
steve-lunargf1e0c872016-10-31 15:13:43 -0600984 "\n"
985 " --source-entrypoint name the given shader source function is renamed to be the entry point given in -e\n"
986 " --sep synonym for --source-entrypoint\n"
John Kessenich906cc212016-12-09 19:22:20 -0700987 "\n"
988 " --keep-uncalled don't eliminate uncalled functions when linking\n"
989 " --ku synonym for --keep-uncalled\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +0000990 );
John Kessenich68d78fd2015-07-12 19:28:10 -0600991
992 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +0000993}
994
John Kessenich3ce4e592014-10-06 19:57:34 +0000995#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +0000996
997#include <errno.h>
998
999int fopen_s(
1000 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001001 const char* filename,
1002 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001003)
1004{
1005 if (!pFile || !filename || !mode) {
1006 return EINVAL;
1007 }
1008
1009 FILE* f = fopen(filename, mode);
1010 if (! f) {
1011 if (errno != 0) {
1012 return errno;
1013 } else {
1014 return ENOENT;
1015 }
1016 }
1017 *pFile = f;
1018
1019 return 0;
1020}
1021
1022#endif
1023
John Kessenicha0af4732012-12-12 21:15:54 +00001024//
1025// Malloc a string of sufficient size and read a string into it.
1026//
John Kessenich51cdd902014-02-18 23:37:57 +00001027char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001028{
John Kessenichb3297152015-07-11 18:01:03 -06001029 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001030 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +00001031
John Kessenicha0af4732012-12-12 21:15:54 +00001032 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001033 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
1034 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001035
John Kessenich68d78fd2015-07-12 19:28:10 -06001036 if (errorCode || in == nullptr)
1037 Error("unable to open input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001038
1039 while (fgetc(in) != EOF)
1040 count++;
1041
John Kessenichd6c72a42014-08-18 19:42:35 +00001042 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001043
John Kessenichb3297152015-07-11 18:01:03 -06001044 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -06001045 if (! fdata)
1046 Error("can't allocate memory");
1047
John Kessenichb3297152015-07-11 18:01:03 -06001048 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -06001049 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -06001050 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001051 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001052
John Kessenicha0af4732012-12-12 21:15:54 +00001053 fdata[count] = '\0';
1054 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001055
John Kessenichea869fb2013-10-28 18:12:06 +00001056 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -06001057 // recover from empty file
1058 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001059 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +00001060 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001061 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +00001062
John Kessenichb3297152015-07-11 18:01:03 -06001063 return return_data;
1064 } else
1065 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
1066
1067 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +00001068 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -06001069 int ptr_len = 0;
1070 int i = 0;
1071 while (count > 0) {
1072 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
1073 memcpy(return_data[i], fdata + ptr_len, len);
1074 return_data[i][len] = '\0';
1075 count -= len;
1076 ptr_len += len;
1077 if (count < len) {
1078 if (count == 0) {
1079 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +00001080 break;
1081 }
John Kessenichb3297152015-07-11 18:01:03 -06001082 len = count;
John Kessenichd6c72a42014-08-18 19:42:35 +00001083 }
1084 ++i;
1085 }
John Kessenichb3297152015-07-11 18:01:03 -06001086
1087 free(fdata);
1088
John Kessenicha0af4732012-12-12 21:15:54 +00001089 return return_data;
1090}
1091
John Kessenich51cdd902014-02-18 23:37:57 +00001092void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +00001093{
John Kessenichb3297152015-07-11 18:01:03 -06001094 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +00001095 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -06001096
1097 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001098}
1099
John Kessenich54d8cda2013-02-11 22:36:01 +00001100void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001101{
John Kessenichfae38ee2015-06-10 23:23:12 +00001102 if (num >= 0 )
1103 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1104 else
1105 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001106}