blob: db3891b8c1ad9d88ce49f381765360ac6e6d031a [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 Kessenicha0af4732012-12-12 21:15:54 +000049#include <string.h>
John Kessenichcfd643e2013-03-08 23:14:42 +000050#include <stdlib.h>
John Kessenicha0af4732012-12-12 21:15:54 +000051#include <math.h>
52
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;
415 char** text; // memory owned/managed externally
416};
417
John Kessenich69f4b512013-09-04 21:19:27 +0000418//
John Kessenichc57b2a92016-01-16 15:30:03 -0700419// For linking mode: Will independently parse each compilation unit, but then put them
420// in the same program and link them together, making at most one linked module per
421// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000422//
423// Uses the new C++ interface instead of the old handle-based interface.
424//
John Kessenichc57b2a92016-01-16 15:30:03 -0700425
426void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000427{
428 // keep track of what to free
429 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700430
John Kessenich69f4b512013-09-04 21:19:27 +0000431 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000432 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000433
John Kessenich69f4b512013-09-04 21:19:27 +0000434 //
435 // Per-shader processing...
436 //
437
John Kessenich5b0f13a2013-11-01 03:08:40 +0000438 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100439 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
440 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700441 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
442 shader->setStrings(compUnit.text, 1);
John Kessenich4d65ee32016-03-12 18:17:47 -0700443 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
444 shader->setEntryPoint(entryPointName);
John Kessenich69f4b512013-09-04 21:19:27 +0000445 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600446
John Kessenichc555ddd2015-06-17 02:38:44 +0000447 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000448
John Kessenichc555ddd2015-06-17 02:38:44 +0000449 if (Options & EOptionOutputPreprocessed) {
450 std::string str;
Andrew Woloszyna132af52016-03-07 13:23:09 -0500451 glslang::TShader::ForbidInclude includer;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400452 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500453 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400454 PutsIfNonEmpty(str.c_str());
455 } else {
456 CompileFailed = true;
457 }
458 StderrIfNonEmpty(shader->getInfoLog());
459 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000460 continue;
461 }
462 if (! shader->parse(&Resources, defaultVersion, false, messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000463 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000464
John Kessenich69f4b512013-09-04 21:19:27 +0000465 program.addShader(shader);
466
John Kessenichc57b2a92016-01-16 15:30:03 -0700467 if (! (Options & EOptionSuppressInfolog) &&
468 ! (Options & EOptionMemoryLeakMode)) {
469 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400470 PutsIfNonEmpty(shader->getInfoLog());
471 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000472 }
John Kessenich69f4b512013-09-04 21:19:27 +0000473 }
474
475 //
476 // Program-level processing...
477 //
478
John Kessenich4d65ee32016-03-12 18:17:47 -0700479 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600480 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000481 LinkFailed = true;
482
John Kessenich4d65ee32016-03-12 18:17:47 -0700483 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700484 if (! (Options & EOptionSuppressInfolog) &&
485 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400486 PutsIfNonEmpty(program.getInfoLog());
487 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000488 }
489
John Kessenich4d65ee32016-03-12 18:17:47 -0700490 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000491 if (Options & EOptionDumpReflection) {
492 program.buildReflection();
493 program.dumpReflection();
494 }
495
John Kessenich4d65ee32016-03-12 18:17:47 -0700496 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000497 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000498 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600499 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000500 else {
501 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000502 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000503 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400504 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400505 spv::SpvBuildLogger logger;
506 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger);
John Kessenichc57b2a92016-01-16 15:30:03 -0700507
508 // Dump the spv to a file or stdout, etc., but only if not doing
509 // memory/perf testing, as it's not internal to programmatic use.
510 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500511 printf("%s", logger.getAllMessages().c_str());
512 if (Options & EOptionOutputHexadecimal) {
513 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage));
514 } else {
515 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
516 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700517 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700518 spv::Disassemble(std::cout, spirv);
519 }
John Kessenichacba7722015-03-04 03:48:38 +0000520 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000521 }
John Kessenich92f90382014-07-28 04:21:04 +0000522 }
523 }
524 }
525
John Kessenich5b0f13a2013-11-01 03:08:40 +0000526 // Free everything up, program has to go before the shaders
527 // because it might have merged stuff from the shaders, and
528 // the stuff from the shaders has to have its destructors called
529 // before the pools holding the memory in the shaders is freed.
530 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000531 while (shaders.size() > 0) {
532 delete shaders.back();
533 shaders.pop_back();
534 }
John Kessenich69f4b512013-09-04 21:19:27 +0000535}
536
John Kessenichc57b2a92016-01-16 15:30:03 -0700537//
538// Do file IO part of compile and link, handing off the pure
539// API/programmatic mode to CompileAndLinkShaderUnits(), which can
540// be put in a loop for testing memory footprint and performance.
541//
542// This is just for linking mode: meaning all the shaders will be put into the
543// the same program linked together.
544//
545// This means there are a limited number of work items (not multi-threading mode)
546// and that the point is testing at the linking level. Hence, to enable
547// performance and memory testing, the actual compile/link can be put in
548// a loop, independent of processing the work items and file IO.
549//
550void CompileAndLinkShaderFiles()
551{
552 std::vector<ShaderCompUnit> compUnits;
553
554 // Transfer all the work items from to a simple list of
555 // of compilation units. (We don't care about the thread
556 // work-item distribution properties in this path, which
557 // is okay due to the limited number of shaders, know since
558 // they are all getting linked together.)
559 glslang::TWorkItem* workItem;
560 while (Worklist.remove(workItem)) {
561 ShaderCompUnit compUnit = {
562 FindLanguage(workItem->name),
563 workItem->name,
564 ReadFileData(workItem->name.c_str())
565 };
566
567 if (! compUnit.text) {
568 usage();
569 return;
570 }
571
572 compUnits.push_back(compUnit);
573 }
574
575 // Actual call to programmatic processing of compile and link,
576 // in a loop for testing memory and performance. This part contains
577 // all the perf/memory that a programmatic consumer will care about.
578 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
579 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
580 CompileAndLinkShaderUnits(compUnits);
581
582 if (Options & EOptionMemoryLeakMode)
583 glslang::OS_DumpMemoryCounters();
584 }
585
rdb32084e82016-02-23 22:17:38 +0100586 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
587 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700588}
589
John Kessenicha0af4732012-12-12 21:15:54 +0000590int C_DECL main(int argc, char* argv[])
591{
John Kessenich68d78fd2015-07-12 19:28:10 -0600592 ProcessArguments(argc, argv);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000593
John Kessenich05a70632013-09-17 19:26:08 +0000594 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500595 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000596 if (Worklist.empty())
597 return ESuccess;
598 }
599
John Kessenich0da9eaa2015-08-01 17:10:02 -0600600 if (Options & EOptionDumpVersions) {
601 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000602 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
603 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600604 std::string spirvVersion;
605 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600606 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600607 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700608 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600609 printf("GL_KHR_vulkan_glsl version %d\n", 100);
610 printf("ARB_GL_gl_spirv version %d\n", 100);
John Kessenich319de232013-12-04 04:43:40 +0000611 if (Worklist.empty())
612 return ESuccess;
613 }
614
John Kessenich05a70632013-09-17 19:26:08 +0000615 if (Worklist.empty()) {
616 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000617 }
618
619 ProcessConfigFile();
620
John Kessenich69f4b512013-09-04 21:19:27 +0000621 //
622 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000623 // 1) linking all arguments together, single-threaded, new C++ interface
624 // 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 +0000625 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000626 if (Options & EOptionLinkProgram ||
627 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000628 glslang::InitializeProcess();
John Kessenichc57b2a92016-01-16 15:30:03 -0700629 CompileAndLinkShaderFiles();
John Kessenichc36e1d82013-11-01 17:41:52 +0000630 glslang::FinalizeProcess();
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500631 for (int w = 0; w < NumWorkItems; ++w) {
632 if (Work[w]) {
633 delete Work[w];
634 }
635 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000636 } else {
637 ShInitialize();
638
John Kessenich38f3b892013-09-06 19:52:57 +0000639 bool printShaderNames = Worklist.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000640
John Kessenich38f3b892013-09-06 19:52:57 +0000641 if (Options & EOptionMultiThreaded) {
642 const int NumThreads = 16;
643 void* threads[NumThreads];
644 for (int t = 0; t < NumThreads; ++t) {
645 threads[t] = glslang::OS_CreateThread(&CompileShaders);
646 if (! threads[t]) {
647 printf("Failed to create thread\n");
648 return EFailThreadCreate;
649 }
John Kessenicha0af4732012-12-12 21:15:54 +0000650 }
John Kessenich38f3b892013-09-06 19:52:57 +0000651 glslang::OS_WaitForAllThreads(threads, NumThreads);
John Kessenichc999ba22013-11-07 23:33:24 +0000652 } else
653 CompileShaders(0);
John Kessenich38f3b892013-09-06 19:52:57 +0000654
655 // Print out all the resulting infologs
656 for (int w = 0; w < NumWorkItems; ++w) {
657 if (Work[w]) {
Kenneth Perryb07e6be2015-12-15 10:52:34 -0600658 if (printShaderNames || Work[w]->results.size() > 0)
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400659 PutsIfNonEmpty(Work[w]->name.c_str());
660 PutsIfNonEmpty(Work[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000661 delete Work[w];
662 }
663 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000664
665 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000666 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000667
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500668 delete[] Work;
669
John Kessenichc999ba22013-11-07 23:33:24 +0000670 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000671 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000672 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000673 return EFailLink;
674
675 return 0;
676}
677
678//
679// Deduce the language from the filename. Files must end in one of the
680// following extensions:
681//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000682// .vert = vertex
683// .tesc = tessellation control
684// .tese = tessellation evaluation
685// .geom = geometry
686// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000687// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000688//
John Kessenichb603f912013-08-29 00:39:25 +0000689EShLanguage FindLanguage(const std::string& name)
John Kessenicha0af4732012-12-12 21:15:54 +0000690{
John Kessenich2b07c7e2013-07-31 18:44:13 +0000691 size_t ext = name.rfind('.');
692 if (ext == std::string::npos) {
693 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000694 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000695 }
696
John Kessenich2b07c7e2013-07-31 18:44:13 +0000697 std::string suffix = name.substr(ext + 1, std::string::npos);
Dan Bakerc6ede892016-08-11 14:06:06 -0400698 if (shaderStageName)
699 suffix = shaderStageName;
dankbaker45d49bc2016-08-08 21:43:07 -0400700
John Kessenich2b07c7e2013-07-31 18:44:13 +0000701 if (suffix == "vert")
702 return EShLangVertex;
703 else if (suffix == "tesc")
704 return EShLangTessControl;
705 else if (suffix == "tese")
706 return EShLangTessEvaluation;
707 else if (suffix == "geom")
708 return EShLangGeometry;
709 else if (suffix == "frag")
710 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000711 else if (suffix == "comp")
712 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000713
714 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000715 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000716}
717
John Kessenicha0af4732012-12-12 21:15:54 +0000718//
John Kessenich69f4b512013-09-04 21:19:27 +0000719// Read a file's data into a string, and compile it using the old interface ShCompile,
720// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000721//
John Kessenich51cdd902014-02-18 23:37:57 +0000722void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000723{
John Kessenichca3457f2015-05-18 01:59:45 +0000724 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000725 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000726 if (! shaderStrings) {
727 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000728 }
729
John Kessenich41cf6b52013-06-25 18:10:05 +0000730 int* lengths = new int[NumShaderStrings];
731
732 // move to length-based strings, rather than null-terminated strings
733 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000734 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000735
John Kessenichc999ba22013-11-07 23:33:24 +0000736 if (! shaderStrings) {
737 CompileFailed = true;
738 return;
739 }
John Kessenicha0af4732012-12-12 21:15:54 +0000740
John Kessenich52ac67e2013-05-05 23:46:22 +0000741 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000742 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000743
John Kessenich94a81fb2013-08-31 02:41:30 +0000744 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
745 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich26ad2682014-08-13 20:17:19 +0000746 //ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000747 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichea869fb2013-10-28 18:12:06 +0000748 //const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
749 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
750 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich41cf6b52013-06-25 18:10:05 +0000751 //const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
John Kessenichca3457f2015-05-18 01:59:45 +0000752 //ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +0000753 }
John Kessenicha0af4732012-12-12 21:15:54 +0000754
John Kessenich94a81fb2013-08-31 02:41:30 +0000755 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000756 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +0000757 }
John Kessenicha0af4732012-12-12 21:15:54 +0000758
John Kessenich41cf6b52013-06-25 18:10:05 +0000759 delete [] lengths;
760 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +0000761
John Kessenichc999ba22013-11-07 23:33:24 +0000762 if (ret == 0)
763 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +0000764}
765
John Kessenicha0af4732012-12-12 21:15:54 +0000766//
767// print usage to stdout
768//
769void usage()
770{
John Kessenich319de232013-12-04 04:43:40 +0000771 printf("Usage: glslangValidator [option]... [file]...\n"
772 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +0000773 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600774 " .conf to provide an optional config file that replaces the default configuration\n"
775 " (see -c option below for generating a template)\n"
776 " .vert for a vertex shader\n"
777 " .tesc for a tessellation control shader\n"
778 " .tese for a tessellation evaluation shader\n"
779 " .geom for a geometry shader\n"
780 " .frag for a fragment shader\n"
781 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +0000782 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000783 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +0000784 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000785 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600786 "Each option must be specified separately.\n"
787 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
788 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600789 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
790 " default file name is <stage>.spv (-o overrides this)\n"
791 " -H print human readable form of SPIR-V; turns on -V\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400792 " -E print pre-processed GLSL; cannot be used with -l;\n"
793 " errors will appear on stderr.\n"
Dan Bakerc6ede892016-08-11 14:06:06 -0400794 " -S <stage> uses explicit stage specified, rather then the file extension.\n"
Dan Baker895275e2016-08-11 14:55:49 -0400795 " valid choices are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600796 " -c configuration dump;\n"
797 " creates the default configuration file (redirect to a .conf file)\n"
John Kessenicha86836e2016-07-09 14:50:57 -0600798 " -C cascading errors; risks crashes from accumulation of error recoveries\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600799 " -d default to desktop (#version 110) when there is no shader #version\n"
800 " (default is ES version 100)\n"
John Kessenich66e2faf2016-03-12 18:34:36 -0700801 " -D input is HLSL\n"
John Kessenich4d65ee32016-03-12 18:17:47 -0700802 " -e specify entry-point name\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600803 " -h print this usage message\n"
804 " -i intermediate tree (glslang AST) is printed out\n"
805 " -l link all input files together to form a single module\n"
806 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500807 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600808 " -q dump reflection query database\n"
809 " -r relaxed semantic error-checking mode\n"
810 " -s silent mode\n"
811 " -t multi-threaded mode\n"
812 " -v print version strings\n"
813 " -w suppress warnings (except as required by #extension : warn)\n"
Johannes van Waveren1fd01752016-05-31 08:39:41 -0500814 " -x save 32-bit hexadecimal numbers as text, requires a binary option (e.g., -V)\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +0000815 );
John Kessenich68d78fd2015-07-12 19:28:10 -0600816
817 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +0000818}
819
John Kessenich3ce4e592014-10-06 19:57:34 +0000820#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +0000821
822#include <errno.h>
823
824int fopen_s(
825 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +0000826 const char* filename,
827 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +0000828)
829{
830 if (!pFile || !filename || !mode) {
831 return EINVAL;
832 }
833
834 FILE* f = fopen(filename, mode);
835 if (! f) {
836 if (errno != 0) {
837 return errno;
838 } else {
839 return ENOENT;
840 }
841 }
842 *pFile = f;
843
844 return 0;
845}
846
847#endif
848
John Kessenicha0af4732012-12-12 21:15:54 +0000849//
850// Malloc a string of sufficient size and read a string into it.
851//
John Kessenich51cdd902014-02-18 23:37:57 +0000852char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +0000853{
John Kessenichb3297152015-07-11 18:01:03 -0600854 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +0000855 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +0000856
John Kessenicha0af4732012-12-12 21:15:54 +0000857 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -0600858 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
859 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +0000860
John Kessenich68d78fd2015-07-12 19:28:10 -0600861 if (errorCode || in == nullptr)
862 Error("unable to open input file");
John Kessenicha0af4732012-12-12 21:15:54 +0000863
864 while (fgetc(in) != EOF)
865 count++;
866
John Kessenichd6c72a42014-08-18 19:42:35 +0000867 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +0000868
John Kessenichb3297152015-07-11 18:01:03 -0600869 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -0600870 if (! fdata)
871 Error("can't allocate memory");
872
John Kessenichb3297152015-07-11 18:01:03 -0600873 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -0600874 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -0600875 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +0000876 }
John Kessenich68d78fd2015-07-12 19:28:10 -0600877
John Kessenicha0af4732012-12-12 21:15:54 +0000878 fdata[count] = '\0';
879 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -0600880
John Kessenichea869fb2013-10-28 18:12:06 +0000881 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -0600882 // recover from empty file
883 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +0000884 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +0000885 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -0600886 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +0000887
John Kessenichb3297152015-07-11 18:01:03 -0600888 return return_data;
889 } else
890 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
891
892 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +0000893 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -0600894 int ptr_len = 0;
895 int i = 0;
896 while (count > 0) {
897 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
898 memcpy(return_data[i], fdata + ptr_len, len);
899 return_data[i][len] = '\0';
900 count -= len;
901 ptr_len += len;
902 if (count < len) {
903 if (count == 0) {
904 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +0000905 break;
906 }
John Kessenichb3297152015-07-11 18:01:03 -0600907 len = count;
John Kessenichd6c72a42014-08-18 19:42:35 +0000908 }
909 ++i;
910 }
John Kessenichb3297152015-07-11 18:01:03 -0600911
912 free(fdata);
913
John Kessenicha0af4732012-12-12 21:15:54 +0000914 return return_data;
915}
916
John Kessenich51cdd902014-02-18 23:37:57 +0000917void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +0000918{
John Kessenichb3297152015-07-11 18:01:03 -0600919 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +0000920 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -0600921
922 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +0000923}
924
John Kessenich54d8cda2013-02-11 22:36:01 +0000925void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +0000926{
John Kessenichfae38ee2015-06-10 23:23:12 +0000927 if (num >= 0 )
928 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
929 else
930 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +0000931}