blob: 0c54273e034f3d28dbeeaa36c1e13ad593753443 [file] [log] [blame]
John Kessenicha0af4732012-12-12 21:15:54 +00001//
2//Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
John Kessenichbd0747d2013-02-17 06:01:50 +00003//Copyright (C) 2013 LunarG, Inc.
4//
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>
51#include <cmath>
John Kessenicha0af4732012-12-12 21:15:54 +000052
baldurk876a0e32015-11-16 18:03:28 +010053#include "../glslang/OSDependent/osinclude.h"
John Kessenicha0af4732012-12-12 21:15:54 +000054
55extern "C" {
56 SH_IMPORT_EXPORT void ShOutputHtml();
57}
58
John Kessenich94a81fb2013-08-31 02:41:30 +000059// Command-line options
60enum TOptions {
John Kessenicha86836e2016-07-09 14:50:57 -060061 EOptionNone = 0,
62 EOptionIntermediate = (1 << 0),
63 EOptionSuppressInfolog = (1 << 1),
64 EOptionMemoryLeakMode = (1 << 2),
65 EOptionRelaxedErrors = (1 << 3),
66 EOptionGiveWarnings = (1 << 4),
67 EOptionLinkProgram = (1 << 5),
68 EOptionMultiThreaded = (1 << 6),
69 EOptionDumpConfig = (1 << 7),
70 EOptionDumpReflection = (1 << 8),
71 EOptionSuppressWarnings = (1 << 9),
72 EOptionDumpVersions = (1 << 10),
73 EOptionSpv = (1 << 11),
74 EOptionHumanReadableSpv = (1 << 12),
75 EOptionVulkanRules = (1 << 13),
76 EOptionDefaultDesktop = (1 << 14),
77 EOptionOutputPreprocessed = (1 << 15),
78 EOptionOutputHexadecimal = (1 << 16),
79 EOptionReadHlsl = (1 << 17),
80 EOptionCascadingErrors = (1 << 18),
John Kessenich94a81fb2013-08-31 02:41:30 +000081};
82
John Kessenicha0af4732012-12-12 21:15:54 +000083//
John Kessenich68d78fd2015-07-12 19:28:10 -060084// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +000085//
86enum TFailCode {
87 ESuccess = 0,
88 EFailUsage,
89 EFailCompile,
90 EFailLink,
91 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +000092 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +000093 EFailLinkerCreate
94};
95
96//
John Kessenich68d78fd2015-07-12 19:28:10 -060097// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +000098//
John Kessenichb603f912013-08-29 00:39:25 +000099EShLanguage FindLanguage(const std::string& name);
John Kessenich51cdd902014-02-18 23:37:57 +0000100void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000101void usage();
John Kessenichea869fb2013-10-28 18:12:06 +0000102void FreeFileData(char** data);
103char** ReadFileData(const char* fileName);
John Kessenich54d8cda2013-02-11 22:36:01 +0000104void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000105
John Kessenichc999ba22013-11-07 23:33:24 +0000106// Globally track if any compile or link failure.
107bool CompileFailed = false;
108bool LinkFailed = false;
109
John Kessenich05a70632013-09-17 19:26:08 +0000110// Use to test breaking up a single shader file into multiple strings.
John Kessenich68d78fd2015-07-12 19:28:10 -0600111// Set in ReadFileData().
John Kessenichea869fb2013-10-28 18:12:06 +0000112int NumShaderStrings;
John Kessenicha0af4732012-12-12 21:15:54 +0000113
John Kessenich05a70632013-09-17 19:26:08 +0000114TBuiltInResource Resources;
115std::string ConfigFile;
116
John Kessenicha0af4732012-12-12 21:15:54 +0000117//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600118// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000119//
120void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000121{
John Kessenich05a70632013-09-17 19:26:08 +0000122 char** configStrings = 0;
John Kessenich51cdd902014-02-18 23:37:57 +0000123 char* config = 0;
John Kessenich05a70632013-09-17 19:26:08 +0000124 if (ConfigFile.size() > 0) {
John Kessenichea869fb2013-10-28 18:12:06 +0000125 configStrings = ReadFileData(ConfigFile.c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000126 if (configStrings)
127 config = *configStrings;
128 else {
129 printf("Error opening configuration file; will instead use the default configuration\n");
130 usage();
131 }
132 }
133
134 if (config == 0) {
Lei Zhang414eb602016-03-04 16:22:34 -0500135 Resources = glslang::DefaultTBuiltInResource;
136 return;
John Kessenich05a70632013-09-17 19:26:08 +0000137 }
138
Lei Zhang1b141722016-05-19 13:50:49 -0400139 glslang::DecodeResourceLimits(&Resources, config);
John Kessenich05a70632013-09-17 19:26:08 +0000140
John Kessenich05a70632013-09-17 19:26:08 +0000141 if (configStrings)
142 FreeFileData(configStrings);
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500143 else
144 delete[] config;
John Kessenicha0af4732012-12-12 21:15:54 +0000145}
146
John Kessenich38f3b892013-09-06 19:52:57 +0000147// thread-safe list of shaders to asynchronously grab and compile
John Kessenich2b07c7e2013-07-31 18:44:13 +0000148glslang::TWorklist Worklist;
John Kessenich38f3b892013-09-06 19:52:57 +0000149
150// array of unique places to leave the shader names and infologs for the asynchronous compiles
John Kessenichfd305422014-06-05 16:30:53 +0000151glslang::TWorkItem** Work = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000152int NumWorkItems = 0;
153
John Kessenich94a81fb2013-08-31 02:41:30 +0000154int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600155const char* ExecutableName = nullptr;
156const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700157const char* entryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400158const char* shaderStageName = nullptr;
John Kessenich68d78fd2015-07-12 19:28:10 -0600159
160//
161// Create the default name for saving a binary if -o is not provided.
162//
163const char* GetBinaryName(EShLanguage stage)
164{
165 const char* name;
166 if (binaryFileName == nullptr) {
167 switch (stage) {
168 case EShLangVertex: name = "vert.spv"; break;
169 case EShLangTessControl: name = "tesc.spv"; break;
170 case EShLangTessEvaluation: name = "tese.spv"; break;
171 case EShLangGeometry: name = "geom.spv"; break;
172 case EShLangFragment: name = "frag.spv"; break;
173 case EShLangCompute: name = "comp.spv"; break;
174 default: name = "unknown"; break;
175 }
176 } else
177 name = binaryFileName;
178
179 return name;
180}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000181
John Kessenich05a70632013-09-17 19:26:08 +0000182//
183// *.conf => this is a config file that can set limits/resources
184//
185bool SetConfigFile(const std::string& name)
186{
187 if (name.size() < 5)
188 return false;
189
John Kessenich4c706852013-10-11 16:28:43 +0000190 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000191 ConfigFile = name;
192 return true;
193 }
194
195 return false;
196}
197
John Kessenich68d78fd2015-07-12 19:28:10 -0600198//
199// Give error and exit with failure code.
200//
201void Error(const char* message)
202{
203 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
204 exit(EFailUsage);
205}
206
207//
208// Do all command-line argument parsing. This includes building up the work-items
209// to be processed later, and saving all the command-line options.
210//
211// Does not return (it exits) if command-line is fatally flawed.
212//
213void ProcessArguments(int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000214{
John Kessenich38f3b892013-09-06 19:52:57 +0000215 ExecutableName = argv[0];
216 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 +0000217 Work = new glslang::TWorkItem*[NumWorkItems];
John Kessenich68d78fd2015-07-12 19:28:10 -0600218 for (int w = 0; w < NumWorkItems; ++w)
219 Work[w] = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000220
John Kessenich2b07c7e2013-07-31 18:44:13 +0000221 argc--;
222 argv++;
223 for (; argc >= 1; argc--, argv++) {
224 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000225 switch (argv[0][1]) {
226 case 'H':
227 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600228 if ((Options & EOptionSpv) == 0) {
229 // default to Vulkan
230 Options |= EOptionSpv;
231 Options |= EOptionVulkanRules;
232 Options |= EOptionLinkProgram;
233 }
234 break;
John Kessenich0df0cde2015-03-03 17:09:43 +0000235 case 'V':
236 Options |= EOptionSpv;
John Kessenich68d78fd2015-07-12 19:28:10 -0600237 Options |= EOptionVulkanRules;
238 Options |= EOptionLinkProgram;
239 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400240 case 'S':
Dan Bakerc6ede892016-08-11 14:06:06 -0400241 shaderStageName = argv[1];
dankbaker45d49bc2016-08-08 21:43:07 -0400242 if (argc > 0) {
243 argc--;
244 argv++;
245 }
246 else
Dan Baker5afdd782016-08-11 17:53:57 -0400247 Error("no <stage> specified for -S");
dankbaker45d49bc2016-08-08 21:43:07 -0400248 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600249 case 'G':
250 Options |= EOptionSpv;
John Kessenichd78e3512014-08-25 20:07:55 +0000251 Options |= EOptionLinkProgram;
John Kessenich91e4aa52016-07-07 17:46:42 -0600252 // undo a -H default to Vulkan
253 Options &= ~EOptionVulkanRules;
John Kessenich92f90382014-07-28 04:21:04 +0000254 break;
John Kessenichc555ddd2015-06-17 02:38:44 +0000255 case 'E':
256 Options |= EOptionOutputPreprocessed;
257 break;
John Kessenich05a70632013-09-17 19:26:08 +0000258 case 'c':
259 Options |= EOptionDumpConfig;
260 break;
John Kessenicha86836e2016-07-09 14:50:57 -0600261 case 'C':
262 Options |= EOptionCascadingErrors;
263 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000264 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000265 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000266 break;
John Kessenich66e2faf2016-03-12 18:34:36 -0700267 case 'D':
268 Options |= EOptionReadHlsl;
269 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700270 case 'e':
271 // HLSL todo: entry point handle needs much more sophistication.
272 // This is okay for one compilation unit with one entry point.
273 entryPointName = argv[1];
274 if (argc > 0) {
275 argc--;
276 argv++;
277 } else
278 Error("no <entry-point> provided for -e");
279 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600280 case 'h':
281 usage();
282 break;
John Kessenich05a70632013-09-17 19:26:08 +0000283 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000284 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000285 break;
286 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000287 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000288 break;
289 case 'm':
290 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000291 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600292 case 'o':
293 binaryFileName = argv[1];
294 if (argc > 0) {
295 argc--;
296 argv++;
297 } else
298 Error("no <file> provided for -o");
299 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000300 case 'q':
301 Options |= EOptionDumpReflection;
302 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000303 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000304 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000305 break;
306 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000307 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000308 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000309 case 't':
310 #ifdef _WIN32
John Kessenichb0a7eb52013-11-07 17:44:20 +0000311 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000312 #endif
313 break;
John Kessenich319de232013-12-04 04:43:40 +0000314 case 'v':
315 Options |= EOptionDumpVersions;
316 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000317 case 'w':
318 Options |= EOptionSuppressWarnings;
319 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500320 case 'x':
321 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500322 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000323 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600324 usage();
325 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000326 }
John Kessenich38f3b892013-09-06 19:52:57 +0000327 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000328 std::string name(argv[0]);
329 if (! SetConfigFile(name)) {
330 Work[argc] = new glslang::TWorkItem(name);
331 Worklist.add(Work[argc]);
332 }
John Kessenich38f3b892013-09-06 19:52:57 +0000333 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000334 }
335
John Kessenich68d78fd2015-07-12 19:28:10 -0600336 // Make sure that -E is not specified alongside linking (which includes SPV generation)
337 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
338 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000339
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500340 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600341 if (binaryFileName && (Options & EOptionSpv) == 0)
342 Error("no binary generation requested (e.g., -V)");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000343}
344
John Kessenich68d78fd2015-07-12 19:28:10 -0600345//
346// Translate the meaningful subset of command-line options to parser-behavior options.
347//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000348void SetMessageOptions(EShMessages& messages)
349{
350 if (Options & EOptionRelaxedErrors)
351 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
352 if (Options & EOptionIntermediate)
353 messages = (EShMessages)(messages | EShMsgAST);
354 if (Options & EOptionSuppressWarnings)
355 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600356 if (Options & EOptionSpv)
357 messages = (EShMessages)(messages | EShMsgSpvRules);
358 if (Options & EOptionVulkanRules)
359 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400360 if (Options & EOptionOutputPreprocessed)
361 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700362 if (Options & EOptionReadHlsl)
363 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600364 if (Options & EOptionCascadingErrors)
365 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000366}
367
John Kessenich68d78fd2015-07-12 19:28:10 -0600368//
John Kessenich69f4b512013-09-04 21:19:27 +0000369// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000370//
371// Return 0 for failure, 1 for success.
372//
Pyry Haulos5f6892e2015-12-01 12:59:53 -0800373unsigned int CompileShaders(void*)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000374{
John Kessenich38f3b892013-09-06 19:52:57 +0000375 glslang::TWorkItem* workItem;
376 while (Worklist.remove(workItem)) {
377 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000378 if (compiler == 0)
John Kessenichc999ba22013-11-07 23:33:24 +0000379 return 0;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000380
John Kessenichb0a7eb52013-11-07 17:44:20 +0000381 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000382
John Kessenich94a81fb2013-08-31 02:41:30 +0000383 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000384 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000385
386 ShDestruct(compiler);
387 }
388
389 return 0;
390}
391
John Kessenich6626cad2015-06-19 05:14:19 +0000392// Outputs the given string, but only if it is non-null and non-empty.
393// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400394void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000395{
396 if (str && str[0]) {
397 puts(str);
398 }
399}
400
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400401// Outputs the given string to stderr, but only if it is non-null and non-empty.
402// This prevents erroneous newlines from appearing.
403void StderrIfNonEmpty(const char* str)
404{
405 if (str && str[0]) {
406 fprintf(stderr, "%s\n", str);
407 }
408}
409
John Kessenichc57b2a92016-01-16 15:30:03 -0700410// Simple bundling of what makes a compilation unit for ease in passing around,
411// and separation of handling file IO versus API (programmatic) compilation.
412struct ShaderCompUnit {
413 EShLanguage stage;
414 std::string fileName;
dankbakerafe6e9c2016-08-21 12:29:08 -0400415 char** text; // memory owned/managed externally
416 const char* fileNameList[1];
417
418 //Need to have a special constructors to adjust the fileNameList, since back end needs a list of ptrs
419 ShaderCompUnit(EShLanguage istage, std::string &ifileName, char** itext)
420 {
421 stage = istage;
422 fileName = ifileName;
423 text = itext;
424 fileNameList[0] = fileName.c_str();
425 }
426
427 ShaderCompUnit(const ShaderCompUnit &rhs)
428 {
429 stage = rhs.stage;
430 fileName = rhs.fileName;
431 text = rhs.text;
432 fileNameList[0] = fileName.c_str();
433 }
434
John Kessenichc57b2a92016-01-16 15:30:03 -0700435};
436
John Kessenich69f4b512013-09-04 21:19:27 +0000437//
John Kessenichc57b2a92016-01-16 15:30:03 -0700438// For linking mode: Will independently parse each compilation unit, but then put them
439// in the same program and link them together, making at most one linked module per
440// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000441//
442// Uses the new C++ interface instead of the old handle-based interface.
443//
John Kessenichc57b2a92016-01-16 15:30:03 -0700444
445void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000446{
447 // keep track of what to free
448 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700449
John Kessenich69f4b512013-09-04 21:19:27 +0000450 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000451 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000452
John Kessenich69f4b512013-09-04 21:19:27 +0000453 //
454 // Per-shader processing...
455 //
456
John Kessenich5b0f13a2013-11-01 03:08:40 +0000457 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100458 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
459 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700460 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
dankbakerafe6e9c2016-08-21 12:29:08 -0400461 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, 1);
John Kessenich4d65ee32016-03-12 18:17:47 -0700462 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
463 shader->setEntryPoint(entryPointName);
John Kessenich69f4b512013-09-04 21:19:27 +0000464 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600465
John Kessenichc555ddd2015-06-17 02:38:44 +0000466 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000467
John Kessenichc555ddd2015-06-17 02:38:44 +0000468 if (Options & EOptionOutputPreprocessed) {
469 std::string str;
Andrew Woloszyna132af52016-03-07 13:23:09 -0500470 glslang::TShader::ForbidInclude includer;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400471 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500472 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400473 PutsIfNonEmpty(str.c_str());
474 } else {
475 CompileFailed = true;
476 }
477 StderrIfNonEmpty(shader->getInfoLog());
478 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000479 continue;
480 }
481 if (! shader->parse(&Resources, defaultVersion, false, messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000482 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000483
John Kessenich69f4b512013-09-04 21:19:27 +0000484 program.addShader(shader);
485
John Kessenichc57b2a92016-01-16 15:30:03 -0700486 if (! (Options & EOptionSuppressInfolog) &&
487 ! (Options & EOptionMemoryLeakMode)) {
488 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400489 PutsIfNonEmpty(shader->getInfoLog());
490 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000491 }
John Kessenich69f4b512013-09-04 21:19:27 +0000492 }
493
494 //
495 // Program-level processing...
496 //
497
John Kessenich4d65ee32016-03-12 18:17:47 -0700498 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600499 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000500 LinkFailed = true;
501
John Kessenich4d65ee32016-03-12 18:17:47 -0700502 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700503 if (! (Options & EOptionSuppressInfolog) &&
504 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400505 PutsIfNonEmpty(program.getInfoLog());
506 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000507 }
508
John Kessenich4d65ee32016-03-12 18:17:47 -0700509 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000510 if (Options & EOptionDumpReflection) {
511 program.buildReflection();
512 program.dumpReflection();
513 }
514
John Kessenich4d65ee32016-03-12 18:17:47 -0700515 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000516 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000517 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600518 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000519 else {
520 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000521 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000522 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400523 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400524 spv::SpvBuildLogger logger;
525 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger);
John Kessenichc57b2a92016-01-16 15:30:03 -0700526
527 // Dump the spv to a file or stdout, etc., but only if not doing
528 // memory/perf testing, as it's not internal to programmatic use.
529 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500530 printf("%s", logger.getAllMessages().c_str());
531 if (Options & EOptionOutputHexadecimal) {
532 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage));
533 } else {
534 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
535 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700536 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700537 spv::Disassemble(std::cout, spirv);
538 }
John Kessenichacba7722015-03-04 03:48:38 +0000539 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000540 }
John Kessenich92f90382014-07-28 04:21:04 +0000541 }
542 }
543 }
544
John Kessenich5b0f13a2013-11-01 03:08:40 +0000545 // Free everything up, program has to go before the shaders
546 // because it might have merged stuff from the shaders, and
547 // the stuff from the shaders has to have its destructors called
548 // before the pools holding the memory in the shaders is freed.
549 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000550 while (shaders.size() > 0) {
551 delete shaders.back();
552 shaders.pop_back();
553 }
John Kessenich69f4b512013-09-04 21:19:27 +0000554}
555
John Kessenichc57b2a92016-01-16 15:30:03 -0700556//
557// Do file IO part of compile and link, handing off the pure
558// API/programmatic mode to CompileAndLinkShaderUnits(), which can
559// be put in a loop for testing memory footprint and performance.
560//
561// This is just for linking mode: meaning all the shaders will be put into the
562// the same program linked together.
563//
564// This means there are a limited number of work items (not multi-threading mode)
565// and that the point is testing at the linking level. Hence, to enable
566// performance and memory testing, the actual compile/link can be put in
567// a loop, independent of processing the work items and file IO.
568//
569void CompileAndLinkShaderFiles()
570{
571 std::vector<ShaderCompUnit> compUnits;
572
573 // Transfer all the work items from to a simple list of
574 // of compilation units. (We don't care about the thread
575 // work-item distribution properties in this path, which
576 // is okay due to the limited number of shaders, know since
577 // they are all getting linked together.)
578 glslang::TWorkItem* workItem;
579 while (Worklist.remove(workItem)) {
580 ShaderCompUnit compUnit = {
581 FindLanguage(workItem->name),
582 workItem->name,
583 ReadFileData(workItem->name.c_str())
584 };
585
586 if (! compUnit.text) {
587 usage();
588 return;
589 }
590
591 compUnits.push_back(compUnit);
592 }
593
594 // Actual call to programmatic processing of compile and link,
595 // in a loop for testing memory and performance. This part contains
596 // all the perf/memory that a programmatic consumer will care about.
597 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
598 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
599 CompileAndLinkShaderUnits(compUnits);
600
601 if (Options & EOptionMemoryLeakMode)
602 glslang::OS_DumpMemoryCounters();
603 }
604
rdb32084e82016-02-23 22:17:38 +0100605 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
606 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700607}
608
John Kessenicha0af4732012-12-12 21:15:54 +0000609int C_DECL main(int argc, char* argv[])
610{
John Kessenich68d78fd2015-07-12 19:28:10 -0600611 ProcessArguments(argc, argv);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000612
John Kessenich05a70632013-09-17 19:26:08 +0000613 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500614 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000615 if (Worklist.empty())
616 return ESuccess;
617 }
618
John Kessenich0da9eaa2015-08-01 17:10:02 -0600619 if (Options & EOptionDumpVersions) {
620 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000621 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
622 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600623 std::string spirvVersion;
624 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600625 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600626 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700627 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600628 printf("GL_KHR_vulkan_glsl version %d\n", 100);
629 printf("ARB_GL_gl_spirv version %d\n", 100);
John Kessenich319de232013-12-04 04:43:40 +0000630 if (Worklist.empty())
631 return ESuccess;
632 }
633
John Kessenich05a70632013-09-17 19:26:08 +0000634 if (Worklist.empty()) {
635 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000636 }
637
638 ProcessConfigFile();
639
John Kessenich69f4b512013-09-04 21:19:27 +0000640 //
641 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000642 // 1) linking all arguments together, single-threaded, new C++ interface
643 // 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 +0000644 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000645 if (Options & EOptionLinkProgram ||
646 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000647 glslang::InitializeProcess();
John Kessenichc57b2a92016-01-16 15:30:03 -0700648 CompileAndLinkShaderFiles();
John Kessenichc36e1d82013-11-01 17:41:52 +0000649 glslang::FinalizeProcess();
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500650 for (int w = 0; w < NumWorkItems; ++w) {
651 if (Work[w]) {
652 delete Work[w];
653 }
654 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000655 } else {
656 ShInitialize();
657
John Kessenich38f3b892013-09-06 19:52:57 +0000658 bool printShaderNames = Worklist.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000659
John Kessenich38f3b892013-09-06 19:52:57 +0000660 if (Options & EOptionMultiThreaded) {
661 const int NumThreads = 16;
662 void* threads[NumThreads];
663 for (int t = 0; t < NumThreads; ++t) {
664 threads[t] = glslang::OS_CreateThread(&CompileShaders);
665 if (! threads[t]) {
666 printf("Failed to create thread\n");
667 return EFailThreadCreate;
668 }
John Kessenicha0af4732012-12-12 21:15:54 +0000669 }
John Kessenich38f3b892013-09-06 19:52:57 +0000670 glslang::OS_WaitForAllThreads(threads, NumThreads);
John Kessenichc999ba22013-11-07 23:33:24 +0000671 } else
672 CompileShaders(0);
John Kessenich38f3b892013-09-06 19:52:57 +0000673
674 // Print out all the resulting infologs
675 for (int w = 0; w < NumWorkItems; ++w) {
676 if (Work[w]) {
Kenneth Perryb07e6be2015-12-15 10:52:34 -0600677 if (printShaderNames || Work[w]->results.size() > 0)
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400678 PutsIfNonEmpty(Work[w]->name.c_str());
679 PutsIfNonEmpty(Work[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000680 delete Work[w];
681 }
682 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000683
684 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000685 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000686
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500687 delete[] Work;
688
John Kessenichc999ba22013-11-07 23:33:24 +0000689 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000690 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000691 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000692 return EFailLink;
693
694 return 0;
695}
696
697//
698// Deduce the language from the filename. Files must end in one of the
699// following extensions:
700//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000701// .vert = vertex
702// .tesc = tessellation control
703// .tese = tessellation evaluation
704// .geom = geometry
705// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000706// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000707//
John Kessenichb603f912013-08-29 00:39:25 +0000708EShLanguage FindLanguage(const std::string& name)
John Kessenicha0af4732012-12-12 21:15:54 +0000709{
John Kessenich2b07c7e2013-07-31 18:44:13 +0000710 size_t ext = name.rfind('.');
711 if (ext == std::string::npos) {
712 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000713 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000714 }
715
John Kessenich2b07c7e2013-07-31 18:44:13 +0000716 std::string suffix = name.substr(ext + 1, std::string::npos);
Dan Bakerc6ede892016-08-11 14:06:06 -0400717 if (shaderStageName)
718 suffix = shaderStageName;
dankbaker45d49bc2016-08-08 21:43:07 -0400719
John Kessenich2b07c7e2013-07-31 18:44:13 +0000720 if (suffix == "vert")
721 return EShLangVertex;
722 else if (suffix == "tesc")
723 return EShLangTessControl;
724 else if (suffix == "tese")
725 return EShLangTessEvaluation;
726 else if (suffix == "geom")
727 return EShLangGeometry;
728 else if (suffix == "frag")
729 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000730 else if (suffix == "comp")
731 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000732
733 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000734 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000735}
736
John Kessenicha0af4732012-12-12 21:15:54 +0000737//
John Kessenich69f4b512013-09-04 21:19:27 +0000738// Read a file's data into a string, and compile it using the old interface ShCompile,
739// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000740//
John Kessenich51cdd902014-02-18 23:37:57 +0000741void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000742{
John Kessenichca3457f2015-05-18 01:59:45 +0000743 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000744 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000745 if (! shaderStrings) {
746 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000747 }
748
John Kessenich41cf6b52013-06-25 18:10:05 +0000749 int* lengths = new int[NumShaderStrings];
750
751 // move to length-based strings, rather than null-terminated strings
752 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000753 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000754
John Kessenichc999ba22013-11-07 23:33:24 +0000755 if (! shaderStrings) {
756 CompileFailed = true;
757 return;
758 }
John Kessenicha0af4732012-12-12 21:15:54 +0000759
John Kessenich52ac67e2013-05-05 23:46:22 +0000760 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000761 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000762
John Kessenich94a81fb2013-08-31 02:41:30 +0000763 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
764 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich26ad2682014-08-13 20:17:19 +0000765 //ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000766 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichea869fb2013-10-28 18:12:06 +0000767 //const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
768 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
769 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich41cf6b52013-06-25 18:10:05 +0000770 //const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
John Kessenichca3457f2015-05-18 01:59:45 +0000771 //ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +0000772 }
John Kessenicha0af4732012-12-12 21:15:54 +0000773
John Kessenich94a81fb2013-08-31 02:41:30 +0000774 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000775 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +0000776 }
John Kessenicha0af4732012-12-12 21:15:54 +0000777
John Kessenich41cf6b52013-06-25 18:10:05 +0000778 delete [] lengths;
779 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +0000780
John Kessenichc999ba22013-11-07 23:33:24 +0000781 if (ret == 0)
782 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +0000783}
784
John Kessenicha0af4732012-12-12 21:15:54 +0000785//
786// print usage to stdout
787//
788void usage()
789{
John Kessenich319de232013-12-04 04:43:40 +0000790 printf("Usage: glslangValidator [option]... [file]...\n"
791 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +0000792 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600793 " .conf to provide an optional config file that replaces the default configuration\n"
794 " (see -c option below for generating a template)\n"
795 " .vert for a vertex shader\n"
796 " .tesc for a tessellation control shader\n"
797 " .tese for a tessellation evaluation shader\n"
798 " .geom for a geometry shader\n"
799 " .frag for a fragment shader\n"
800 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +0000801 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000802 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +0000803 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000804 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600805 "Each option must be specified separately.\n"
806 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
807 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600808 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
809 " default file name is <stage>.spv (-o overrides this)\n"
810 " -H print human readable form of SPIR-V; turns on -V\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400811 " -E print pre-processed GLSL; cannot be used with -l;\n"
812 " errors will appear on stderr.\n"
Dan Bakerc6ede892016-08-11 14:06:06 -0400813 " -S <stage> uses explicit stage specified, rather then the file extension.\n"
Dan Baker895275e2016-08-11 14:55:49 -0400814 " valid choices are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600815 " -c configuration dump;\n"
816 " creates the default configuration file (redirect to a .conf file)\n"
John Kessenicha86836e2016-07-09 14:50:57 -0600817 " -C cascading errors; risks crashes from accumulation of error recoveries\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600818 " -d default to desktop (#version 110) when there is no shader #version\n"
819 " (default is ES version 100)\n"
John Kessenich66e2faf2016-03-12 18:34:36 -0700820 " -D input is HLSL\n"
John Kessenich4d65ee32016-03-12 18:17:47 -0700821 " -e specify entry-point name\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600822 " -h print this usage message\n"
823 " -i intermediate tree (glslang AST) is printed out\n"
824 " -l link all input files together to form a single module\n"
825 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500826 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600827 " -q dump reflection query database\n"
828 " -r relaxed semantic error-checking mode\n"
829 " -s silent mode\n"
830 " -t multi-threaded mode\n"
831 " -v print version strings\n"
832 " -w suppress warnings (except as required by #extension : warn)\n"
Johannes van Waveren1fd01752016-05-31 08:39:41 -0500833 " -x save 32-bit hexadecimal numbers as text, requires a binary option (e.g., -V)\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +0000834 );
John Kessenich68d78fd2015-07-12 19:28:10 -0600835
836 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +0000837}
838
John Kessenich3ce4e592014-10-06 19:57:34 +0000839#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +0000840
841#include <errno.h>
842
843int fopen_s(
844 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +0000845 const char* filename,
846 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +0000847)
848{
849 if (!pFile || !filename || !mode) {
850 return EINVAL;
851 }
852
853 FILE* f = fopen(filename, mode);
854 if (! f) {
855 if (errno != 0) {
856 return errno;
857 } else {
858 return ENOENT;
859 }
860 }
861 *pFile = f;
862
863 return 0;
864}
865
866#endif
867
John Kessenicha0af4732012-12-12 21:15:54 +0000868//
869// Malloc a string of sufficient size and read a string into it.
870//
John Kessenich51cdd902014-02-18 23:37:57 +0000871char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +0000872{
John Kessenichb3297152015-07-11 18:01:03 -0600873 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +0000874 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +0000875
John Kessenicha0af4732012-12-12 21:15:54 +0000876 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -0600877 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
878 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +0000879
John Kessenich68d78fd2015-07-12 19:28:10 -0600880 if (errorCode || in == nullptr)
881 Error("unable to open input file");
John Kessenicha0af4732012-12-12 21:15:54 +0000882
883 while (fgetc(in) != EOF)
884 count++;
885
John Kessenichd6c72a42014-08-18 19:42:35 +0000886 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +0000887
John Kessenichb3297152015-07-11 18:01:03 -0600888 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -0600889 if (! fdata)
890 Error("can't allocate memory");
891
John Kessenichb3297152015-07-11 18:01:03 -0600892 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -0600893 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -0600894 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +0000895 }
John Kessenich68d78fd2015-07-12 19:28:10 -0600896
John Kessenicha0af4732012-12-12 21:15:54 +0000897 fdata[count] = '\0';
898 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -0600899
John Kessenichea869fb2013-10-28 18:12:06 +0000900 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -0600901 // recover from empty file
902 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +0000903 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +0000904 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -0600905 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +0000906
John Kessenichb3297152015-07-11 18:01:03 -0600907 return return_data;
908 } else
909 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
910
911 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +0000912 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -0600913 int ptr_len = 0;
914 int i = 0;
915 while (count > 0) {
916 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
917 memcpy(return_data[i], fdata + ptr_len, len);
918 return_data[i][len] = '\0';
919 count -= len;
920 ptr_len += len;
921 if (count < len) {
922 if (count == 0) {
923 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +0000924 break;
925 }
John Kessenichb3297152015-07-11 18:01:03 -0600926 len = count;
John Kessenichd6c72a42014-08-18 19:42:35 +0000927 }
928 ++i;
929 }
John Kessenichb3297152015-07-11 18:01:03 -0600930
931 free(fdata);
932
John Kessenicha0af4732012-12-12 21:15:54 +0000933 return return_data;
934}
935
John Kessenich51cdd902014-02-18 23:37:57 +0000936void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +0000937{
John Kessenichb3297152015-07-11 18:01:03 -0600938 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +0000939 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -0600940
941 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +0000942}
943
John Kessenich54d8cda2013-02-11 22:36:01 +0000944void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +0000945{
John Kessenichfae38ee2015-06-10 23:23:12 +0000946 if (num >= 0 )
947 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
948 else
949 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +0000950}