blob: 7ffd2324f2234b6110231eaffee9a5f335d968ea [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 Kessenicha86836e2016-07-09 14:50:57 -060063 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),
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060083 EOptionAutoMapBindings = (1 << 19),
steve-lunarge0b9deb2016-09-16 13:26:37 -060084 EOptionFlattenUniformArrays = (1 << 20),
steve-lunargcce8d482016-10-14 18:36:42 -060085 EOptionNoStorageFormat = (1 << 21),
John Kessenich94a81fb2013-08-31 02:41:30 +000086};
87
John Kessenicha0af4732012-12-12 21:15:54 +000088//
John Kessenich68d78fd2015-07-12 19:28:10 -060089// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +000090//
91enum TFailCode {
92 ESuccess = 0,
93 EFailUsage,
94 EFailCompile,
95 EFailLink,
96 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +000097 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +000098 EFailLinkerCreate
99};
100
101//
John Kessenich68d78fd2015-07-12 19:28:10 -0600102// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000103//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600104EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000105void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000106void usage();
John Kessenichea869fb2013-10-28 18:12:06 +0000107void FreeFileData(char** data);
108char** ReadFileData(const char* fileName);
John Kessenich54d8cda2013-02-11 22:36:01 +0000109void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000110
John Kessenichc999ba22013-11-07 23:33:24 +0000111// Globally track if any compile or link failure.
112bool CompileFailed = false;
113bool LinkFailed = false;
114
John Kessenich05a70632013-09-17 19:26:08 +0000115// Use to test breaking up a single shader file into multiple strings.
John Kessenich68d78fd2015-07-12 19:28:10 -0600116// Set in ReadFileData().
John Kessenichea869fb2013-10-28 18:12:06 +0000117int NumShaderStrings;
John Kessenicha0af4732012-12-12 21:15:54 +0000118
John Kessenich05a70632013-09-17 19:26:08 +0000119TBuiltInResource Resources;
120std::string ConfigFile;
121
John Kessenicha0af4732012-12-12 21:15:54 +0000122//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600123// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000124//
125void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000126{
John Kessenich05a70632013-09-17 19:26:08 +0000127 char** configStrings = 0;
John Kessenich51cdd902014-02-18 23:37:57 +0000128 char* config = 0;
John Kessenich05a70632013-09-17 19:26:08 +0000129 if (ConfigFile.size() > 0) {
John Kessenichea869fb2013-10-28 18:12:06 +0000130 configStrings = ReadFileData(ConfigFile.c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000131 if (configStrings)
132 config = *configStrings;
133 else {
134 printf("Error opening configuration file; will instead use the default configuration\n");
135 usage();
136 }
137 }
138
139 if (config == 0) {
Lei Zhang414eb602016-03-04 16:22:34 -0500140 Resources = glslang::DefaultTBuiltInResource;
141 return;
John Kessenich05a70632013-09-17 19:26:08 +0000142 }
143
Lei Zhang1b141722016-05-19 13:50:49 -0400144 glslang::DecodeResourceLimits(&Resources, config);
John Kessenich05a70632013-09-17 19:26:08 +0000145
John Kessenich05a70632013-09-17 19:26:08 +0000146 if (configStrings)
147 FreeFileData(configStrings);
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500148 else
149 delete[] config;
John Kessenicha0af4732012-12-12 21:15:54 +0000150}
151
John Kessenich38f3b892013-09-06 19:52:57 +0000152// thread-safe list of shaders to asynchronously grab and compile
John Kessenich2b07c7e2013-07-31 18:44:13 +0000153glslang::TWorklist Worklist;
John Kessenich38f3b892013-09-06 19:52:57 +0000154
155// array of unique places to leave the shader names and infologs for the asynchronous compiles
John Kessenichfd305422014-06-05 16:30:53 +0000156glslang::TWorkItem** Work = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000157int NumWorkItems = 0;
158
John Kessenich94a81fb2013-08-31 02:41:30 +0000159int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600160const char* ExecutableName = nullptr;
161const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700162const char* entryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400163const char* shaderStageName = nullptr;
John Kessenich68d78fd2015-07-12 19:28:10 -0600164
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600165std::array<unsigned int, EShLangCount> baseSamplerBinding;
166std::array<unsigned int, EShLangCount> baseTextureBinding;
167std::array<unsigned int, EShLangCount> baseUboBinding;
168
John Kessenich68d78fd2015-07-12 19:28:10 -0600169//
170// Create the default name for saving a binary if -o is not provided.
171//
172const char* GetBinaryName(EShLanguage stage)
173{
174 const char* name;
175 if (binaryFileName == nullptr) {
176 switch (stage) {
177 case EShLangVertex: name = "vert.spv"; break;
178 case EShLangTessControl: name = "tesc.spv"; break;
179 case EShLangTessEvaluation: name = "tese.spv"; break;
180 case EShLangGeometry: name = "geom.spv"; break;
181 case EShLangFragment: name = "frag.spv"; break;
182 case EShLangCompute: name = "comp.spv"; break;
183 default: name = "unknown"; break;
184 }
185 } else
186 name = binaryFileName;
187
188 return name;
189}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000190
John Kessenich05a70632013-09-17 19:26:08 +0000191//
192// *.conf => this is a config file that can set limits/resources
193//
194bool SetConfigFile(const std::string& name)
195{
196 if (name.size() < 5)
197 return false;
198
John Kessenich4c706852013-10-11 16:28:43 +0000199 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000200 ConfigFile = name;
201 return true;
202 }
203
204 return false;
205}
206
John Kessenich68d78fd2015-07-12 19:28:10 -0600207//
208// Give error and exit with failure code.
209//
210void Error(const char* message)
211{
212 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
213 exit(EFailUsage);
214}
215
216//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600217// Process an optional binding base of the form:
218// --argname [stage] base
219// Where stage is one of the forms accepted by FindLanguage, and base is an integer
220//
221void ProcessBindingBase(int& argc, char**& argv, std::array<unsigned int, EShLangCount>& base)
222{
223 if (argc < 2)
224 usage();
225
226 if (!isdigit(argv[1][0])) {
227 if (argc < 3) // this form needs one more argument
228 usage();
229
230 // Parse form: --argname stage base
231 const EShLanguage lang = FindLanguage(argv[1], false);
232 base[lang] = atoi(argv[2]);
233 argc-= 2;
234 argv+= 2;
235 } else {
236 // Parse form: --argname base
237 for (int lang=0; lang<EShLangCount; ++lang)
238 base[lang] = atoi(argv[1]);
239
240 argc--;
241 argv++;
242 }
243}
244
245//
John Kessenich68d78fd2015-07-12 19:28:10 -0600246// Do all command-line argument parsing. This includes building up the work-items
247// to be processed later, and saving all the command-line options.
248//
249// Does not return (it exits) if command-line is fatally flawed.
250//
251void ProcessArguments(int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000252{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600253 baseSamplerBinding.fill(0);
254 baseTextureBinding.fill(0);
255 baseUboBinding.fill(0);
256
John Kessenich38f3b892013-09-06 19:52:57 +0000257 ExecutableName = argv[0];
258 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 +0000259 Work = new glslang::TWorkItem*[NumWorkItems];
John Kessenich68d78fd2015-07-12 19:28:10 -0600260 for (int w = 0; w < NumWorkItems; ++w)
261 Work[w] = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000262
John Kessenich2b07c7e2013-07-31 18:44:13 +0000263 argc--;
264 argv++;
265 for (; argc >= 1; argc--, argv++) {
266 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000267 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600268 case '-':
269 {
270 std::string lowerword(argv[0]+2);
271 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
272
273 // handle --word style options
274 if (lowerword == "shift-sampler-bindings" || // synonyms
275 lowerword == "shift-sampler-binding" ||
276 lowerword == "ssb") {
277 ProcessBindingBase(argc, argv, baseSamplerBinding);
278 } else if (lowerword == "shift-texture-bindings" || // synonyms
279 lowerword == "shift-texture-binding" ||
280 lowerword == "stb") {
281 ProcessBindingBase(argc, argv, baseTextureBinding);
282 } else if (lowerword == "shift-ubo-bindings" || // synonyms
283 lowerword == "shift-ubo-binding" ||
284 lowerword == "sub") {
285 ProcessBindingBase(argc, argv, baseUboBinding);
286 } else if (lowerword == "auto-map-bindings" || // synonyms
287 lowerword == "auto-map-binding" ||
288 lowerword == "amb") {
289 Options |= EOptionAutoMapBindings;
steve-lunarge0b9deb2016-09-16 13:26:37 -0600290 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
291 lowerword == "flatten-uniform-array" ||
292 lowerword == "fua") {
293 Options |= EOptionFlattenUniformArrays;
steve-lunargcce8d482016-10-14 18:36:42 -0600294 } else if (lowerword == "no-storage-format" || // synonyms
295 lowerword == "nsf") {
296 Options |= EOptionNoStorageFormat;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600297 } else {
298 usage();
299 }
300 }
301 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000302 case 'H':
303 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600304 if ((Options & EOptionSpv) == 0) {
305 // default to Vulkan
306 Options |= EOptionSpv;
307 Options |= EOptionVulkanRules;
308 Options |= EOptionLinkProgram;
309 }
310 break;
John Kessenich0df0cde2015-03-03 17:09:43 +0000311 case 'V':
312 Options |= EOptionSpv;
John Kessenich68d78fd2015-07-12 19:28:10 -0600313 Options |= EOptionVulkanRules;
314 Options |= EOptionLinkProgram;
315 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400316 case 'S':
Dan Bakerc6ede892016-08-11 14:06:06 -0400317 shaderStageName = argv[1];
dankbaker45d49bc2016-08-08 21:43:07 -0400318 if (argc > 0) {
319 argc--;
320 argv++;
321 }
322 else
Dan Baker5afdd782016-08-11 17:53:57 -0400323 Error("no <stage> specified for -S");
dankbaker45d49bc2016-08-08 21:43:07 -0400324 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600325 case 'G':
326 Options |= EOptionSpv;
John Kessenichd78e3512014-08-25 20:07:55 +0000327 Options |= EOptionLinkProgram;
John Kessenich91e4aa52016-07-07 17:46:42 -0600328 // undo a -H default to Vulkan
329 Options &= ~EOptionVulkanRules;
John Kessenich92f90382014-07-28 04:21:04 +0000330 break;
John Kessenichc555ddd2015-06-17 02:38:44 +0000331 case 'E':
332 Options |= EOptionOutputPreprocessed;
333 break;
John Kessenich05a70632013-09-17 19:26:08 +0000334 case 'c':
335 Options |= EOptionDumpConfig;
336 break;
John Kessenicha86836e2016-07-09 14:50:57 -0600337 case 'C':
338 Options |= EOptionCascadingErrors;
339 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000340 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000341 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000342 break;
John Kessenich66e2faf2016-03-12 18:34:36 -0700343 case 'D':
344 Options |= EOptionReadHlsl;
345 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700346 case 'e':
347 // HLSL todo: entry point handle needs much more sophistication.
348 // This is okay for one compilation unit with one entry point.
349 entryPointName = argv[1];
350 if (argc > 0) {
351 argc--;
352 argv++;
353 } else
354 Error("no <entry-point> provided for -e");
355 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600356 case 'h':
357 usage();
358 break;
John Kessenich05a70632013-09-17 19:26:08 +0000359 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000360 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000361 break;
362 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000363 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000364 break;
365 case 'm':
366 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000367 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600368 case 'o':
369 binaryFileName = argv[1];
370 if (argc > 0) {
371 argc--;
372 argv++;
373 } else
374 Error("no <file> provided for -o");
375 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000376 case 'q':
377 Options |= EOptionDumpReflection;
378 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000379 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000380 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000381 break;
382 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000383 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000384 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000385 case 't':
386 #ifdef _WIN32
John Kessenichb0a7eb52013-11-07 17:44:20 +0000387 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000388 #endif
389 break;
John Kessenich319de232013-12-04 04:43:40 +0000390 case 'v':
391 Options |= EOptionDumpVersions;
392 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000393 case 'w':
394 Options |= EOptionSuppressWarnings;
395 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500396 case 'x':
397 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500398 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000399 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600400 usage();
401 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000402 }
John Kessenich38f3b892013-09-06 19:52:57 +0000403 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000404 std::string name(argv[0]);
405 if (! SetConfigFile(name)) {
406 Work[argc] = new glslang::TWorkItem(name);
407 Worklist.add(Work[argc]);
408 }
John Kessenich38f3b892013-09-06 19:52:57 +0000409 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000410 }
411
John Kessenich68d78fd2015-07-12 19:28:10 -0600412 // Make sure that -E is not specified alongside linking (which includes SPV generation)
413 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
414 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000415
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500416 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600417 if (binaryFileName && (Options & EOptionSpv) == 0)
418 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600419
420 if ((Options & EOptionFlattenUniformArrays) != 0 &&
421 (Options & EOptionReadHlsl) == 0)
422 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000423}
424
John Kessenich68d78fd2015-07-12 19:28:10 -0600425//
426// Translate the meaningful subset of command-line options to parser-behavior options.
427//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000428void SetMessageOptions(EShMessages& messages)
429{
430 if (Options & EOptionRelaxedErrors)
431 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
432 if (Options & EOptionIntermediate)
433 messages = (EShMessages)(messages | EShMsgAST);
434 if (Options & EOptionSuppressWarnings)
435 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600436 if (Options & EOptionSpv)
437 messages = (EShMessages)(messages | EShMsgSpvRules);
438 if (Options & EOptionVulkanRules)
439 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400440 if (Options & EOptionOutputPreprocessed)
441 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700442 if (Options & EOptionReadHlsl)
443 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600444 if (Options & EOptionCascadingErrors)
445 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000446}
447
John Kessenich68d78fd2015-07-12 19:28:10 -0600448//
John Kessenich69f4b512013-09-04 21:19:27 +0000449// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000450//
451// Return 0 for failure, 1 for success.
452//
Pyry Haulos5f6892e2015-12-01 12:59:53 -0800453unsigned int CompileShaders(void*)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000454{
John Kessenich38f3b892013-09-06 19:52:57 +0000455 glslang::TWorkItem* workItem;
456 while (Worklist.remove(workItem)) {
457 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000458 if (compiler == 0)
John Kessenichc999ba22013-11-07 23:33:24 +0000459 return 0;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000460
John Kessenichb0a7eb52013-11-07 17:44:20 +0000461 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000462
John Kessenich94a81fb2013-08-31 02:41:30 +0000463 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000464 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000465
466 ShDestruct(compiler);
467 }
468
469 return 0;
470}
471
John Kessenich6626cad2015-06-19 05:14:19 +0000472// Outputs the given string, but only if it is non-null and non-empty.
473// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400474void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000475{
476 if (str && str[0]) {
477 puts(str);
478 }
479}
480
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400481// Outputs the given string to stderr, but only if it is non-null and non-empty.
482// This prevents erroneous newlines from appearing.
483void StderrIfNonEmpty(const char* str)
484{
485 if (str && str[0]) {
486 fprintf(stderr, "%s\n", str);
487 }
488}
489
John Kessenichc57b2a92016-01-16 15:30:03 -0700490// Simple bundling of what makes a compilation unit for ease in passing around,
491// and separation of handling file IO versus API (programmatic) compilation.
492struct ShaderCompUnit {
493 EShLanguage stage;
494 std::string fileName;
dankbakerafe6e9c2016-08-21 12:29:08 -0400495 char** text; // memory owned/managed externally
496 const char* fileNameList[1];
497
John Kessenich219b0252016-08-23 17:51:13 -0600498 // Need to have a special constructors to adjust the fileNameList, since back end needs a list of ptrs
dankbakerafe6e9c2016-08-21 12:29:08 -0400499 ShaderCompUnit(EShLanguage istage, std::string &ifileName, char** itext)
500 {
501 stage = istage;
502 fileName = ifileName;
503 text = itext;
John Kessenich219b0252016-08-23 17:51:13 -0600504 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400505 }
506
507 ShaderCompUnit(const ShaderCompUnit &rhs)
508 {
509 stage = rhs.stage;
510 fileName = rhs.fileName;
511 text = rhs.text;
John Kessenich219b0252016-08-23 17:51:13 -0600512 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400513 }
514
John Kessenichc57b2a92016-01-16 15:30:03 -0700515};
516
John Kessenich69f4b512013-09-04 21:19:27 +0000517//
John Kessenichc57b2a92016-01-16 15:30:03 -0700518// For linking mode: Will independently parse each compilation unit, but then put them
519// in the same program and link them together, making at most one linked module per
520// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000521//
522// Uses the new C++ interface instead of the old handle-based interface.
523//
John Kessenichc57b2a92016-01-16 15:30:03 -0700524
525void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000526{
527 // keep track of what to free
528 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700529
John Kessenich69f4b512013-09-04 21:19:27 +0000530 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000531 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000532
John Kessenich69f4b512013-09-04 21:19:27 +0000533 //
534 // Per-shader processing...
535 //
536
John Kessenich5b0f13a2013-11-01 03:08:40 +0000537 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100538 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
539 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700540 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
dankbakerafe6e9c2016-08-21 12:29:08 -0400541 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, 1);
John Kessenich4d65ee32016-03-12 18:17:47 -0700542 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
543 shader->setEntryPoint(entryPointName);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600544
545 shader->setShiftSamplerBinding(baseSamplerBinding[compUnit.stage]);
546 shader->setShiftTextureBinding(baseTextureBinding[compUnit.stage]);
547 shader->setShiftUboBinding(baseUboBinding[compUnit.stage]);
steve-lunarge0b9deb2016-09-16 13:26:37 -0600548 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600549 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600550
551 if (Options & EOptionAutoMapBindings)
552 shader->setAutoMapBindings(true);
553
John Kessenich69f4b512013-09-04 21:19:27 +0000554 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600555
John Kessenichc555ddd2015-06-17 02:38:44 +0000556 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000557
John Kessenichc555ddd2015-06-17 02:38:44 +0000558 if (Options & EOptionOutputPreprocessed) {
559 std::string str;
Andrew Woloszyna132af52016-03-07 13:23:09 -0500560 glslang::TShader::ForbidInclude includer;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400561 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500562 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400563 PutsIfNonEmpty(str.c_str());
564 } else {
565 CompileFailed = true;
566 }
567 StderrIfNonEmpty(shader->getInfoLog());
568 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000569 continue;
570 }
571 if (! shader->parse(&Resources, defaultVersion, false, messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000572 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000573
John Kessenich69f4b512013-09-04 21:19:27 +0000574 program.addShader(shader);
575
John Kessenichc57b2a92016-01-16 15:30:03 -0700576 if (! (Options & EOptionSuppressInfolog) &&
577 ! (Options & EOptionMemoryLeakMode)) {
578 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400579 PutsIfNonEmpty(shader->getInfoLog());
580 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000581 }
John Kessenich69f4b512013-09-04 21:19:27 +0000582 }
583
584 //
585 // Program-level processing...
586 //
587
John Kessenich4d65ee32016-03-12 18:17:47 -0700588 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600589 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000590 LinkFailed = true;
591
steve-lunarg9ae34742016-10-05 13:40:13 -0600592 // Map IO
593 if (Options & EOptionSpv) {
594 if (!program.mapIO())
595 LinkFailed = true;
596 }
597
John Kessenich4d65ee32016-03-12 18:17:47 -0700598 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700599 if (! (Options & EOptionSuppressInfolog) &&
600 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400601 PutsIfNonEmpty(program.getInfoLog());
602 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000603 }
604
John Kessenich4d65ee32016-03-12 18:17:47 -0700605 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000606 if (Options & EOptionDumpReflection) {
607 program.buildReflection();
608 program.dumpReflection();
609 }
610
John Kessenich4d65ee32016-03-12 18:17:47 -0700611 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000612 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000613 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600614 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000615 else {
616 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000617 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000618 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400619 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400620 spv::SpvBuildLogger logger;
621 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger);
John Kessenichc57b2a92016-01-16 15:30:03 -0700622
623 // Dump the spv to a file or stdout, etc., but only if not doing
624 // memory/perf testing, as it's not internal to programmatic use.
625 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500626 printf("%s", logger.getAllMessages().c_str());
627 if (Options & EOptionOutputHexadecimal) {
628 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage));
629 } else {
630 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
631 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700632 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700633 spv::Disassemble(std::cout, spirv);
634 }
John Kessenichacba7722015-03-04 03:48:38 +0000635 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000636 }
John Kessenich92f90382014-07-28 04:21:04 +0000637 }
638 }
639 }
640
John Kessenich5b0f13a2013-11-01 03:08:40 +0000641 // Free everything up, program has to go before the shaders
642 // because it might have merged stuff from the shaders, and
643 // the stuff from the shaders has to have its destructors called
644 // before the pools holding the memory in the shaders is freed.
645 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000646 while (shaders.size() > 0) {
647 delete shaders.back();
648 shaders.pop_back();
649 }
John Kessenich69f4b512013-09-04 21:19:27 +0000650}
651
John Kessenichc57b2a92016-01-16 15:30:03 -0700652//
653// Do file IO part of compile and link, handing off the pure
654// API/programmatic mode to CompileAndLinkShaderUnits(), which can
655// be put in a loop for testing memory footprint and performance.
656//
657// This is just for linking mode: meaning all the shaders will be put into the
658// the same program linked together.
659//
660// This means there are a limited number of work items (not multi-threading mode)
661// and that the point is testing at the linking level. Hence, to enable
662// performance and memory testing, the actual compile/link can be put in
663// a loop, independent of processing the work items and file IO.
664//
665void CompileAndLinkShaderFiles()
666{
667 std::vector<ShaderCompUnit> compUnits;
668
669 // Transfer all the work items from to a simple list of
670 // of compilation units. (We don't care about the thread
671 // work-item distribution properties in this path, which
672 // is okay due to the limited number of shaders, know since
673 // they are all getting linked together.)
674 glslang::TWorkItem* workItem;
675 while (Worklist.remove(workItem)) {
676 ShaderCompUnit compUnit = {
677 FindLanguage(workItem->name),
678 workItem->name,
679 ReadFileData(workItem->name.c_str())
680 };
681
682 if (! compUnit.text) {
683 usage();
684 return;
685 }
686
687 compUnits.push_back(compUnit);
688 }
689
690 // Actual call to programmatic processing of compile and link,
691 // in a loop for testing memory and performance. This part contains
692 // all the perf/memory that a programmatic consumer will care about.
693 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
694 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
695 CompileAndLinkShaderUnits(compUnits);
696
697 if (Options & EOptionMemoryLeakMode)
698 glslang::OS_DumpMemoryCounters();
699 }
700
rdb32084e82016-02-23 22:17:38 +0100701 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
702 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700703}
704
John Kessenicha0af4732012-12-12 21:15:54 +0000705int C_DECL main(int argc, char* argv[])
706{
John Kessenich68d78fd2015-07-12 19:28:10 -0600707 ProcessArguments(argc, argv);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000708
John Kessenich05a70632013-09-17 19:26:08 +0000709 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500710 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000711 if (Worklist.empty())
712 return ESuccess;
713 }
714
John Kessenich0da9eaa2015-08-01 17:10:02 -0600715 if (Options & EOptionDumpVersions) {
716 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000717 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
718 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600719 std::string spirvVersion;
720 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600721 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600722 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700723 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600724 printf("GL_KHR_vulkan_glsl version %d\n", 100);
725 printf("ARB_GL_gl_spirv version %d\n", 100);
John Kessenich319de232013-12-04 04:43:40 +0000726 if (Worklist.empty())
727 return ESuccess;
728 }
729
John Kessenich05a70632013-09-17 19:26:08 +0000730 if (Worklist.empty()) {
731 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000732 }
733
734 ProcessConfigFile();
735
John Kessenich69f4b512013-09-04 21:19:27 +0000736 //
737 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000738 // 1) linking all arguments together, single-threaded, new C++ interface
739 // 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 +0000740 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000741 if (Options & EOptionLinkProgram ||
742 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000743 glslang::InitializeProcess();
John Kessenichc57b2a92016-01-16 15:30:03 -0700744 CompileAndLinkShaderFiles();
John Kessenichc36e1d82013-11-01 17:41:52 +0000745 glslang::FinalizeProcess();
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500746 for (int w = 0; w < NumWorkItems; ++w) {
747 if (Work[w]) {
748 delete Work[w];
749 }
750 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000751 } else {
752 ShInitialize();
753
John Kessenich38f3b892013-09-06 19:52:57 +0000754 bool printShaderNames = Worklist.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000755
John Kessenich38f3b892013-09-06 19:52:57 +0000756 if (Options & EOptionMultiThreaded) {
757 const int NumThreads = 16;
758 void* threads[NumThreads];
759 for (int t = 0; t < NumThreads; ++t) {
760 threads[t] = glslang::OS_CreateThread(&CompileShaders);
761 if (! threads[t]) {
762 printf("Failed to create thread\n");
763 return EFailThreadCreate;
764 }
John Kessenicha0af4732012-12-12 21:15:54 +0000765 }
John Kessenich38f3b892013-09-06 19:52:57 +0000766 glslang::OS_WaitForAllThreads(threads, NumThreads);
John Kessenichc999ba22013-11-07 23:33:24 +0000767 } else
768 CompileShaders(0);
John Kessenich38f3b892013-09-06 19:52:57 +0000769
770 // Print out all the resulting infologs
771 for (int w = 0; w < NumWorkItems; ++w) {
772 if (Work[w]) {
Kenneth Perryb07e6be2015-12-15 10:52:34 -0600773 if (printShaderNames || Work[w]->results.size() > 0)
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400774 PutsIfNonEmpty(Work[w]->name.c_str());
775 PutsIfNonEmpty(Work[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000776 delete Work[w];
777 }
778 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000779
780 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000781 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000782
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500783 delete[] Work;
784
John Kessenichc999ba22013-11-07 23:33:24 +0000785 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000786 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000787 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000788 return EFailLink;
789
790 return 0;
791}
792
793//
794// Deduce the language from the filename. Files must end in one of the
795// following extensions:
796//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000797// .vert = vertex
798// .tesc = tessellation control
799// .tese = tessellation evaluation
800// .geom = geometry
801// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000802// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000803//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600804EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +0000805{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600806 size_t ext = 0;
807
808 // Search for a suffix on a filename: e.g, "myfile.frag". If given
809 // the suffix directly, we skip looking the '.'
810 if (parseSuffix) {
811 ext = name.rfind('.');
812 if (ext == std::string::npos) {
813 usage();
814 return EShLangVertex;
815 }
816 ++ext;
John Kessenicha0af4732012-12-12 21:15:54 +0000817 }
818
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600819 std::string suffix = name.substr(ext, std::string::npos);
Dan Bakerc6ede892016-08-11 14:06:06 -0400820 if (shaderStageName)
821 suffix = shaderStageName;
dankbaker45d49bc2016-08-08 21:43:07 -0400822
John Kessenich2b07c7e2013-07-31 18:44:13 +0000823 if (suffix == "vert")
824 return EShLangVertex;
825 else if (suffix == "tesc")
826 return EShLangTessControl;
827 else if (suffix == "tese")
828 return EShLangTessEvaluation;
829 else if (suffix == "geom")
830 return EShLangGeometry;
831 else if (suffix == "frag")
832 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000833 else if (suffix == "comp")
834 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000835
836 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000837 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000838}
839
John Kessenicha0af4732012-12-12 21:15:54 +0000840//
John Kessenich69f4b512013-09-04 21:19:27 +0000841// Read a file's data into a string, and compile it using the old interface ShCompile,
842// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000843//
John Kessenich51cdd902014-02-18 23:37:57 +0000844void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000845{
John Kessenichca3457f2015-05-18 01:59:45 +0000846 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000847 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000848 if (! shaderStrings) {
849 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000850 }
851
John Kessenich41cf6b52013-06-25 18:10:05 +0000852 int* lengths = new int[NumShaderStrings];
853
854 // move to length-based strings, rather than null-terminated strings
855 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000856 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000857
John Kessenichc999ba22013-11-07 23:33:24 +0000858 if (! shaderStrings) {
859 CompileFailed = true;
860 return;
861 }
John Kessenicha0af4732012-12-12 21:15:54 +0000862
John Kessenich52ac67e2013-05-05 23:46:22 +0000863 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000864 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000865
John Kessenich94a81fb2013-08-31 02:41:30 +0000866 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
867 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich26ad2682014-08-13 20:17:19 +0000868 //ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000869 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichea869fb2013-10-28 18:12:06 +0000870 //const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
871 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
872 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich41cf6b52013-06-25 18:10:05 +0000873 //const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
John Kessenichca3457f2015-05-18 01:59:45 +0000874 //ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +0000875 }
John Kessenicha0af4732012-12-12 21:15:54 +0000876
John Kessenich94a81fb2013-08-31 02:41:30 +0000877 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000878 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +0000879 }
John Kessenicha0af4732012-12-12 21:15:54 +0000880
John Kessenich41cf6b52013-06-25 18:10:05 +0000881 delete [] lengths;
882 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +0000883
John Kessenichc999ba22013-11-07 23:33:24 +0000884 if (ret == 0)
885 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +0000886}
887
John Kessenicha0af4732012-12-12 21:15:54 +0000888//
889// print usage to stdout
890//
891void usage()
892{
John Kessenich319de232013-12-04 04:43:40 +0000893 printf("Usage: glslangValidator [option]... [file]...\n"
894 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +0000895 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600896 " .conf to provide an optional config file that replaces the default configuration\n"
897 " (see -c option below for generating a template)\n"
898 " .vert for a vertex shader\n"
899 " .tesc for a tessellation control shader\n"
900 " .tese for a tessellation evaluation shader\n"
901 " .geom for a geometry shader\n"
902 " .frag for a fragment shader\n"
903 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +0000904 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000905 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +0000906 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000907 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600908 "Each option must be specified separately.\n"
909 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
910 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600911 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
912 " default file name is <stage>.spv (-o overrides this)\n"
913 " -H print human readable form of SPIR-V; turns on -V\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400914 " -E print pre-processed GLSL; cannot be used with -l;\n"
915 " errors will appear on stderr.\n"
Dan Bakerc6ede892016-08-11 14:06:06 -0400916 " -S <stage> uses explicit stage specified, rather then the file extension.\n"
Dan Baker895275e2016-08-11 14:55:49 -0400917 " valid choices are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600918 " -c configuration dump;\n"
919 " creates the default configuration file (redirect to a .conf file)\n"
John Kessenicha86836e2016-07-09 14:50:57 -0600920 " -C cascading errors; risks crashes from accumulation of error recoveries\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600921 " -d default to desktop (#version 110) when there is no shader #version\n"
922 " (default is ES version 100)\n"
John Kessenich66e2faf2016-03-12 18:34:36 -0700923 " -D input is HLSL\n"
John Kessenich4d65ee32016-03-12 18:17:47 -0700924 " -e specify entry-point name\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600925 " -h print this usage message\n"
926 " -i intermediate tree (glslang AST) is printed out\n"
927 " -l link all input files together to form a single module\n"
928 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500929 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600930 " -q dump reflection query database\n"
931 " -r relaxed semantic error-checking mode\n"
932 " -s silent mode\n"
933 " -t multi-threaded mode\n"
934 " -v print version strings\n"
935 " -w suppress warnings (except as required by #extension : warn)\n"
Johannes van Waveren1fd01752016-05-31 08:39:41 -0500936 " -x save 32-bit hexadecimal numbers as text, requires a binary option (e.g., -V)\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600937 "\n"
938 " --shift-sampler-binding [stage] num set base binding number for samplers\n"
939 " --ssb [stage] num synonym for --shift-sampler-binding\n"
940 "\n"
941 " --shift-texture-binding [stage] num set base binding number for textures\n"
942 " --stb [stage] num synonym for --shift-texture-binding\n"
943 "\n"
944 " --shift-UBO-binding [stage] num set base binding number for UBOs\n"
945 " --sub [stage] num synonym for --shift-UBO-binding\n"
946 "\n"
947 " --auto-map-bindings automatically bind uniform variables without\n"
948 " explicit bindings.\n"
949 " --amb synonym for --auto-map-bindings\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -0600950 "\n"
steve-lunargbc9b7652016-09-29 08:43:22 -0600951 " --flatten-uniform-arrays flatten uniform texture & sampler arrays to scalars\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -0600952 " --fua synonym for --flatten-uniform-arrays\n"
steve-lunargcce8d482016-10-14 18:36:42 -0600953 "\n"
954 " --no-storage-format use Unknown image format\n"
955 " --nsf synonym for --no-storage-format\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +0000956 );
John Kessenich68d78fd2015-07-12 19:28:10 -0600957
958 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +0000959}
960
John Kessenich3ce4e592014-10-06 19:57:34 +0000961#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +0000962
963#include <errno.h>
964
965int fopen_s(
966 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +0000967 const char* filename,
968 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +0000969)
970{
971 if (!pFile || !filename || !mode) {
972 return EINVAL;
973 }
974
975 FILE* f = fopen(filename, mode);
976 if (! f) {
977 if (errno != 0) {
978 return errno;
979 } else {
980 return ENOENT;
981 }
982 }
983 *pFile = f;
984
985 return 0;
986}
987
988#endif
989
John Kessenicha0af4732012-12-12 21:15:54 +0000990//
991// Malloc a string of sufficient size and read a string into it.
992//
John Kessenich51cdd902014-02-18 23:37:57 +0000993char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +0000994{
John Kessenichb3297152015-07-11 18:01:03 -0600995 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +0000996 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +0000997
John Kessenicha0af4732012-12-12 21:15:54 +0000998 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -0600999 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
1000 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001001
John Kessenich68d78fd2015-07-12 19:28:10 -06001002 if (errorCode || in == nullptr)
1003 Error("unable to open input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001004
1005 while (fgetc(in) != EOF)
1006 count++;
1007
John Kessenichd6c72a42014-08-18 19:42:35 +00001008 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001009
John Kessenichb3297152015-07-11 18:01:03 -06001010 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -06001011 if (! fdata)
1012 Error("can't allocate memory");
1013
John Kessenichb3297152015-07-11 18:01:03 -06001014 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -06001015 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -06001016 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001017 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001018
John Kessenicha0af4732012-12-12 21:15:54 +00001019 fdata[count] = '\0';
1020 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001021
John Kessenichea869fb2013-10-28 18:12:06 +00001022 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -06001023 // recover from empty file
1024 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001025 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +00001026 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001027 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +00001028
John Kessenichb3297152015-07-11 18:01:03 -06001029 return return_data;
1030 } else
1031 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
1032
1033 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +00001034 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -06001035 int ptr_len = 0;
1036 int i = 0;
1037 while (count > 0) {
1038 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
1039 memcpy(return_data[i], fdata + ptr_len, len);
1040 return_data[i][len] = '\0';
1041 count -= len;
1042 ptr_len += len;
1043 if (count < len) {
1044 if (count == 0) {
1045 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +00001046 break;
1047 }
John Kessenichb3297152015-07-11 18:01:03 -06001048 len = count;
John Kessenichd6c72a42014-08-18 19:42:35 +00001049 }
1050 ++i;
1051 }
John Kessenichb3297152015-07-11 18:01:03 -06001052
1053 free(fdata);
1054
John Kessenicha0af4732012-12-12 21:15:54 +00001055 return return_data;
1056}
1057
John Kessenich51cdd902014-02-18 23:37:57 +00001058void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +00001059{
John Kessenichb3297152015-07-11 18:01:03 -06001060 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +00001061 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -06001062
1063 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001064}
1065
John Kessenich54d8cda2013-02-11 22:36:01 +00001066void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001067{
John Kessenichfae38ee2015-06-10 23:23:12 +00001068 if (num >= 0 )
1069 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1070 else
1071 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001072}