blob: e8ab7b56de5940ecdc9608113cb0ea293e45913d [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 Zhang414eb602016-03-04 16:22:34 -050040#include "DefaultResourceLimits.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 Kessenichacba7722015-03-04 03:48:38 +000061 EOptionNone = 0x0000,
62 EOptionIntermediate = 0x0001,
63 EOptionSuppressInfolog = 0x0002,
64 EOptionMemoryLeakMode = 0x0004,
65 EOptionRelaxedErrors = 0x0008,
66 EOptionGiveWarnings = 0x0010,
67 EOptionLinkProgram = 0x0020,
68 EOptionMultiThreaded = 0x0040,
69 EOptionDumpConfig = 0x0080,
70 EOptionDumpReflection = 0x0100,
71 EOptionSuppressWarnings = 0x0200,
72 EOptionDumpVersions = 0x0400,
73 EOptionSpv = 0x0800,
74 EOptionHumanReadableSpv = 0x1000,
John Kessenich68d78fd2015-07-12 19:28:10 -060075 EOptionVulkanRules = 0x2000,
76 EOptionDefaultDesktop = 0x4000,
77 EOptionOutputPreprocessed = 0x8000,
John Kessenich94a81fb2013-08-31 02:41:30 +000078};
79
John Kessenicha0af4732012-12-12 21:15:54 +000080//
John Kessenich68d78fd2015-07-12 19:28:10 -060081// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +000082//
83enum TFailCode {
84 ESuccess = 0,
85 EFailUsage,
86 EFailCompile,
87 EFailLink,
88 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +000089 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +000090 EFailLinkerCreate
91};
92
93//
John Kessenich68d78fd2015-07-12 19:28:10 -060094// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +000095//
John Kessenichb603f912013-08-29 00:39:25 +000096EShLanguage FindLanguage(const std::string& name);
John Kessenich51cdd902014-02-18 23:37:57 +000097void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +000098void usage();
John Kessenichea869fb2013-10-28 18:12:06 +000099void FreeFileData(char** data);
100char** ReadFileData(const char* fileName);
John Kessenich54d8cda2013-02-11 22:36:01 +0000101void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000102
John Kessenichc999ba22013-11-07 23:33:24 +0000103// Globally track if any compile or link failure.
104bool CompileFailed = false;
105bool LinkFailed = false;
106
John Kessenich05a70632013-09-17 19:26:08 +0000107// Use to test breaking up a single shader file into multiple strings.
John Kessenich68d78fd2015-07-12 19:28:10 -0600108// Set in ReadFileData().
John Kessenichea869fb2013-10-28 18:12:06 +0000109int NumShaderStrings;
John Kessenicha0af4732012-12-12 21:15:54 +0000110
John Kessenich05a70632013-09-17 19:26:08 +0000111TBuiltInResource Resources;
112std::string ConfigFile;
113
John Kessenicha0af4732012-12-12 21:15:54 +0000114//
John Kessenich05a70632013-09-17 19:26:08 +0000115// Parse either a .conf file provided by the user or the default string above.
116//
117void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000118{
John Kessenich05a70632013-09-17 19:26:08 +0000119 char** configStrings = 0;
John Kessenich51cdd902014-02-18 23:37:57 +0000120 char* config = 0;
John Kessenich05a70632013-09-17 19:26:08 +0000121 if (ConfigFile.size() > 0) {
John Kessenichea869fb2013-10-28 18:12:06 +0000122 configStrings = ReadFileData(ConfigFile.c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000123 if (configStrings)
124 config = *configStrings;
125 else {
126 printf("Error opening configuration file; will instead use the default configuration\n");
127 usage();
128 }
129 }
130
131 if (config == 0) {
Lei Zhang414eb602016-03-04 16:22:34 -0500132 Resources = glslang::DefaultTBuiltInResource;
133 return;
John Kessenich05a70632013-09-17 19:26:08 +0000134 }
135
136 const char* delims = " \t\n\r";
137 const char* token = strtok(config, delims);
138 while (token) {
139 const char* valueStr = strtok(0, delims);
140 if (valueStr == 0 || ! (valueStr[0] == '-' || (valueStr[0] >= '0' && valueStr[0] <= '9'))) {
141 printf("Error: '%s' bad .conf file. Each name must be followed by one number.\n", valueStr ? valueStr : "");
142 return;
143 }
144 int value = atoi(valueStr);
145
146 if (strcmp(token, "MaxLights") == 0)
147 Resources.maxLights = value;
148 else if (strcmp(token, "MaxClipPlanes") == 0)
149 Resources.maxClipPlanes = value;
150 else if (strcmp(token, "MaxTextureUnits") == 0)
151 Resources.maxTextureUnits = value;
152 else if (strcmp(token, "MaxTextureCoords") == 0)
153 Resources.maxTextureCoords = value;
154 else if (strcmp(token, "MaxVertexAttribs") == 0)
155 Resources.maxVertexAttribs = value;
156 else if (strcmp(token, "MaxVertexUniformComponents") == 0)
157 Resources.maxVertexUniformComponents = value;
158 else if (strcmp(token, "MaxVaryingFloats") == 0)
159 Resources.maxVaryingFloats = value;
160 else if (strcmp(token, "MaxVertexTextureImageUnits") == 0)
161 Resources.maxVertexTextureImageUnits = value;
162 else if (strcmp(token, "MaxCombinedTextureImageUnits") == 0)
163 Resources.maxCombinedTextureImageUnits = value;
164 else if (strcmp(token, "MaxTextureImageUnits") == 0)
165 Resources.maxTextureImageUnits = value;
166 else if (strcmp(token, "MaxFragmentUniformComponents") == 0)
167 Resources.maxFragmentUniformComponents = value;
168 else if (strcmp(token, "MaxDrawBuffers") == 0)
169 Resources.maxDrawBuffers = value;
170 else if (strcmp(token, "MaxVertexUniformVectors") == 0)
171 Resources.maxVertexUniformVectors = value;
172 else if (strcmp(token, "MaxVaryingVectors") == 0)
173 Resources.maxVaryingVectors = value;
174 else if (strcmp(token, "MaxFragmentUniformVectors") == 0)
175 Resources.maxFragmentUniformVectors = value;
176 else if (strcmp(token, "MaxVertexOutputVectors") == 0)
177 Resources.maxVertexOutputVectors = value;
178 else if (strcmp(token, "MaxFragmentInputVectors") == 0)
179 Resources.maxFragmentInputVectors = value;
180 else if (strcmp(token, "MinProgramTexelOffset") == 0)
181 Resources.minProgramTexelOffset = value;
182 else if (strcmp(token, "MaxProgramTexelOffset") == 0)
183 Resources.maxProgramTexelOffset = value;
John Kesseniche7c59c12013-10-16 22:28:35 +0000184 else if (strcmp(token, "MaxClipDistances") == 0)
185 Resources.maxClipDistances = value;
John Kessenich284231c2013-10-22 01:50:39 +0000186 else if (strcmp(token, "MaxComputeWorkGroupCountX") == 0)
187 Resources.maxComputeWorkGroupCountX = value;
188 else if (strcmp(token, "MaxComputeWorkGroupCountY") == 0)
189 Resources.maxComputeWorkGroupCountY = value;
190 else if (strcmp(token, "MaxComputeWorkGroupCountZ") == 0)
191 Resources.maxComputeWorkGroupCountZ = value;
192 else if (strcmp(token, "MaxComputeWorkGroupSizeX") == 0)
193 Resources.maxComputeWorkGroupSizeX = value;
194 else if (strcmp(token, "MaxComputeWorkGroupSizeY") == 0)
195 Resources.maxComputeWorkGroupSizeY = value;
196 else if (strcmp(token, "MaxComputeWorkGroupSizeZ") == 0)
197 Resources.maxComputeWorkGroupSizeZ = value;
198 else if (strcmp(token, "MaxComputeUniformComponents") == 0)
199 Resources.maxComputeUniformComponents = value;
200 else if (strcmp(token, "MaxComputeTextureImageUnits") == 0)
201 Resources.maxComputeTextureImageUnits = value;
202 else if (strcmp(token, "MaxComputeImageUniforms") == 0)
203 Resources.maxComputeImageUniforms = value;
204 else if (strcmp(token, "MaxComputeAtomicCounters") == 0)
205 Resources.maxComputeAtomicCounters = value;
206 else if (strcmp(token, "MaxComputeAtomicCounterBuffers") == 0)
207 Resources.maxComputeAtomicCounterBuffers = value;
208 else if (strcmp(token, "MaxVaryingComponents") == 0)
209 Resources.maxVaryingComponents = value;
210 else if (strcmp(token, "MaxVertexOutputComponents") == 0)
211 Resources.maxVertexOutputComponents = value;
212 else if (strcmp(token, "MaxGeometryInputComponents") == 0)
213 Resources.maxGeometryInputComponents = value;
214 else if (strcmp(token, "MaxGeometryOutputComponents") == 0)
215 Resources.maxGeometryOutputComponents = value;
216 else if (strcmp(token, "MaxFragmentInputComponents") == 0)
217 Resources.maxFragmentInputComponents = value;
218 else if (strcmp(token, "MaxImageUnits") == 0)
219 Resources.maxImageUnits = value;
220 else if (strcmp(token, "MaxCombinedImageUnitsAndFragmentOutputs") == 0)
221 Resources.maxCombinedImageUnitsAndFragmentOutputs = value;
John Kessenichddea6782014-08-10 18:19:36 +0000222 else if (strcmp(token, "MaxCombinedShaderOutputResources") == 0)
223 Resources.maxCombinedShaderOutputResources = value;
John Kessenich284231c2013-10-22 01:50:39 +0000224 else if (strcmp(token, "MaxImageSamples") == 0)
225 Resources.maxImageSamples = value;
226 else if (strcmp(token, "MaxVertexImageUniforms") == 0)
227 Resources.maxVertexImageUniforms = value;
228 else if (strcmp(token, "MaxTessControlImageUniforms") == 0)
229 Resources.maxTessControlImageUniforms = value;
230 else if (strcmp(token, "MaxTessEvaluationImageUniforms") == 0)
231 Resources.maxTessEvaluationImageUniforms = value;
232 else if (strcmp(token, "MaxGeometryImageUniforms") == 0)
233 Resources.maxGeometryImageUniforms = value;
234 else if (strcmp(token, "MaxFragmentImageUniforms") == 0)
235 Resources.maxFragmentImageUniforms = value;
236 else if (strcmp(token, "MaxCombinedImageUniforms") == 0)
237 Resources.maxCombinedImageUniforms = value;
238 else if (strcmp(token, "MaxGeometryTextureImageUnits") == 0)
239 Resources.maxGeometryTextureImageUnits = value;
240 else if (strcmp(token, "MaxGeometryOutputVertices") == 0)
241 Resources.maxGeometryOutputVertices = value;
242 else if (strcmp(token, "MaxGeometryTotalOutputComponents") == 0)
243 Resources.maxGeometryTotalOutputComponents = value;
244 else if (strcmp(token, "MaxGeometryUniformComponents") == 0)
245 Resources.maxGeometryUniformComponents = value;
246 else if (strcmp(token, "MaxGeometryVaryingComponents") == 0)
247 Resources.maxGeometryVaryingComponents = value;
248 else if (strcmp(token, "MaxTessControlInputComponents") == 0)
249 Resources.maxTessControlInputComponents = value;
250 else if (strcmp(token, "MaxTessControlOutputComponents") == 0)
251 Resources.maxTessControlOutputComponents = value;
252 else if (strcmp(token, "MaxTessControlTextureImageUnits") == 0)
253 Resources.maxTessControlTextureImageUnits = value;
254 else if (strcmp(token, "MaxTessControlUniformComponents") == 0)
255 Resources.maxTessControlUniformComponents = value;
256 else if (strcmp(token, "MaxTessControlTotalOutputComponents") == 0)
257 Resources.maxTessControlTotalOutputComponents = value;
258 else if (strcmp(token, "MaxTessEvaluationInputComponents") == 0)
259 Resources.maxTessEvaluationInputComponents = value;
260 else if (strcmp(token, "MaxTessEvaluationOutputComponents") == 0)
261 Resources.maxTessEvaluationOutputComponents = value;
262 else if (strcmp(token, "MaxTessEvaluationTextureImageUnits") == 0)
263 Resources.maxTessEvaluationTextureImageUnits = value;
264 else if (strcmp(token, "MaxTessEvaluationUniformComponents") == 0)
265 Resources.maxTessEvaluationUniformComponents = value;
266 else if (strcmp(token, "MaxTessPatchComponents") == 0)
267 Resources.maxTessPatchComponents = value;
268 else if (strcmp(token, "MaxPatchVertices") == 0)
269 Resources.maxPatchVertices = value;
270 else if (strcmp(token, "MaxTessGenLevel") == 0)
271 Resources.maxTessGenLevel = value;
272 else if (strcmp(token, "MaxViewports") == 0)
273 Resources.maxViewports = value;
274 else if (strcmp(token, "MaxVertexAtomicCounters") == 0)
275 Resources.maxVertexAtomicCounters = value;
276 else if (strcmp(token, "MaxTessControlAtomicCounters") == 0)
277 Resources.maxTessControlAtomicCounters = value;
278 else if (strcmp(token, "MaxTessEvaluationAtomicCounters") == 0)
279 Resources.maxTessEvaluationAtomicCounters = value;
280 else if (strcmp(token, "MaxGeometryAtomicCounters") == 0)
281 Resources.maxGeometryAtomicCounters = value;
282 else if (strcmp(token, "MaxFragmentAtomicCounters") == 0)
283 Resources.maxFragmentAtomicCounters = value;
284 else if (strcmp(token, "MaxCombinedAtomicCounters") == 0)
285 Resources.maxCombinedAtomicCounters = value;
286 else if (strcmp(token, "MaxAtomicCounterBindings") == 0)
287 Resources.maxAtomicCounterBindings = value;
288 else if (strcmp(token, "MaxVertexAtomicCounterBuffers") == 0)
289 Resources.maxVertexAtomicCounterBuffers = value;
290 else if (strcmp(token, "MaxTessControlAtomicCounterBuffers") == 0)
291 Resources.maxTessControlAtomicCounterBuffers = value;
292 else if (strcmp(token, "MaxTessEvaluationAtomicCounterBuffers") == 0)
293 Resources.maxTessEvaluationAtomicCounterBuffers = value;
294 else if (strcmp(token, "MaxGeometryAtomicCounterBuffers") == 0)
295 Resources.maxGeometryAtomicCounterBuffers = value;
296 else if (strcmp(token, "MaxFragmentAtomicCounterBuffers") == 0)
297 Resources.maxFragmentAtomicCounterBuffers = value;
298 else if (strcmp(token, "MaxCombinedAtomicCounterBuffers") == 0)
299 Resources.maxCombinedAtomicCounterBuffers = value;
300 else if (strcmp(token, "MaxAtomicCounterBufferSize") == 0)
301 Resources.maxAtomicCounterBufferSize = value;
John Kessenichc7776ec2014-01-26 01:37:13 +0000302 else if (strcmp(token, "MaxTransformFeedbackBuffers") == 0)
303 Resources.maxTransformFeedbackBuffers = value;
304 else if (strcmp(token, "MaxTransformFeedbackInterleavedComponents") == 0)
305 Resources.maxTransformFeedbackInterleavedComponents = value;
John Kessenich69968412014-08-13 06:37:59 +0000306 else if (strcmp(token, "MaxCullDistances") == 0)
307 Resources.maxCullDistances = value;
308 else if (strcmp(token, "MaxCombinedClipAndCullDistances") == 0)
309 Resources.maxCombinedClipAndCullDistances = value;
John Kessenichcd77f8e2014-08-13 16:54:02 +0000310 else if (strcmp(token, "MaxSamples") == 0)
311 Resources.maxSamples = value;
John Kessenich284231c2013-10-22 01:50:39 +0000312
John Kessenicha5830df2013-10-02 05:10:48 +0000313 else if (strcmp(token, "nonInductiveForLoops") == 0)
314 Resources.limits.nonInductiveForLoops = (value != 0);
315 else if (strcmp(token, "whileLoops") == 0)
316 Resources.limits.whileLoops = (value != 0);
317 else if (strcmp(token, "doWhileLoops") == 0)
318 Resources.limits.doWhileLoops = (value != 0);
319 else if (strcmp(token, "generalUniformIndexing") == 0)
320 Resources.limits.generalUniformIndexing = (value != 0);
321 else if (strcmp(token, "generalAttributeMatrixVectorIndexing") == 0)
322 Resources.limits.generalAttributeMatrixVectorIndexing = (value != 0);
323 else if (strcmp(token, "generalVaryingIndexing") == 0)
324 Resources.limits.generalVaryingIndexing = (value != 0);
325 else if (strcmp(token, "generalSamplerIndexing") == 0)
326 Resources.limits.generalSamplerIndexing = (value != 0);
327 else if (strcmp(token, "generalVariableIndexing") == 0)
328 Resources.limits.generalVariableIndexing = (value != 0);
329 else if (strcmp(token, "generalConstantMatrixVectorIndexing") == 0)
330 Resources.limits.generalConstantMatrixVectorIndexing = (value != 0);
John Kessenich05a70632013-09-17 19:26:08 +0000331 else
332 printf("Warning: unrecognized limit (%s) in configuration file.\n", token);
333
334 token = strtok(0, delims);
335 }
336 if (configStrings)
337 FreeFileData(configStrings);
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500338 else
339 delete[] config;
John Kessenicha0af4732012-12-12 21:15:54 +0000340}
341
John Kessenich38f3b892013-09-06 19:52:57 +0000342// thread-safe list of shaders to asynchronously grab and compile
John Kessenich2b07c7e2013-07-31 18:44:13 +0000343glslang::TWorklist Worklist;
John Kessenich38f3b892013-09-06 19:52:57 +0000344
345// array of unique places to leave the shader names and infologs for the asynchronous compiles
John Kessenichfd305422014-06-05 16:30:53 +0000346glslang::TWorkItem** Work = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000347int NumWorkItems = 0;
348
John Kessenich94a81fb2013-08-31 02:41:30 +0000349int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600350const char* ExecutableName = nullptr;
351const char* binaryFileName = nullptr;
352
353//
354// Create the default name for saving a binary if -o is not provided.
355//
356const char* GetBinaryName(EShLanguage stage)
357{
358 const char* name;
359 if (binaryFileName == nullptr) {
360 switch (stage) {
361 case EShLangVertex: name = "vert.spv"; break;
362 case EShLangTessControl: name = "tesc.spv"; break;
363 case EShLangTessEvaluation: name = "tese.spv"; break;
364 case EShLangGeometry: name = "geom.spv"; break;
365 case EShLangFragment: name = "frag.spv"; break;
366 case EShLangCompute: name = "comp.spv"; break;
367 default: name = "unknown"; break;
368 }
369 } else
370 name = binaryFileName;
371
372 return name;
373}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000374
John Kessenich05a70632013-09-17 19:26:08 +0000375//
376// *.conf => this is a config file that can set limits/resources
377//
378bool SetConfigFile(const std::string& name)
379{
380 if (name.size() < 5)
381 return false;
382
John Kessenich4c706852013-10-11 16:28:43 +0000383 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000384 ConfigFile = name;
385 return true;
386 }
387
388 return false;
389}
390
John Kessenich68d78fd2015-07-12 19:28:10 -0600391//
392// Give error and exit with failure code.
393//
394void Error(const char* message)
395{
396 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
397 exit(EFailUsage);
398}
399
400//
401// Do all command-line argument parsing. This includes building up the work-items
402// to be processed later, and saving all the command-line options.
403//
404// Does not return (it exits) if command-line is fatally flawed.
405//
406void ProcessArguments(int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000407{
John Kessenich38f3b892013-09-06 19:52:57 +0000408 ExecutableName = argv[0];
409 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 +0000410 Work = new glslang::TWorkItem*[NumWorkItems];
John Kessenich68d78fd2015-07-12 19:28:10 -0600411 for (int w = 0; w < NumWorkItems; ++w)
412 Work[w] = 0;
John Kessenich38f3b892013-09-06 19:52:57 +0000413
John Kessenich2b07c7e2013-07-31 18:44:13 +0000414 argc--;
415 argv++;
416 for (; argc >= 1; argc--, argv++) {
417 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000418 switch (argv[0][1]) {
419 case 'H':
420 Options |= EOptionHumanReadableSpv;
421 // fall through to -V
John Kessenich0df0cde2015-03-03 17:09:43 +0000422 case 'V':
423 Options |= EOptionSpv;
John Kessenich68d78fd2015-07-12 19:28:10 -0600424 Options |= EOptionVulkanRules;
425 Options |= EOptionLinkProgram;
426 break;
427 case 'G':
428 Options |= EOptionSpv;
John Kessenichd78e3512014-08-25 20:07:55 +0000429 Options |= EOptionLinkProgram;
John Kessenich92f90382014-07-28 04:21:04 +0000430 break;
John Kessenichc555ddd2015-06-17 02:38:44 +0000431 case 'E':
432 Options |= EOptionOutputPreprocessed;
433 break;
John Kessenich05a70632013-09-17 19:26:08 +0000434 case 'c':
435 Options |= EOptionDumpConfig;
436 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000437 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000438 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000439 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600440 case 'h':
441 usage();
442 break;
John Kessenich05a70632013-09-17 19:26:08 +0000443 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000444 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000445 break;
446 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000447 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000448 break;
449 case 'm':
450 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000451 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600452 case 'o':
453 binaryFileName = argv[1];
454 if (argc > 0) {
455 argc--;
456 argv++;
457 } else
458 Error("no <file> provided for -o");
459 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000460 case 'q':
461 Options |= EOptionDumpReflection;
462 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000463 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000464 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000465 break;
466 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000467 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000468 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000469 case 't':
470 #ifdef _WIN32
John Kessenichb0a7eb52013-11-07 17:44:20 +0000471 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000472 #endif
473 break;
John Kessenich319de232013-12-04 04:43:40 +0000474 case 'v':
475 Options |= EOptionDumpVersions;
476 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000477 case 'w':
478 Options |= EOptionSuppressWarnings;
479 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000480 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600481 usage();
482 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000483 }
John Kessenich38f3b892013-09-06 19:52:57 +0000484 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000485 std::string name(argv[0]);
486 if (! SetConfigFile(name)) {
487 Work[argc] = new glslang::TWorkItem(name);
488 Worklist.add(Work[argc]);
489 }
John Kessenich38f3b892013-09-06 19:52:57 +0000490 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000491 }
492
John Kessenich68d78fd2015-07-12 19:28:10 -0600493 // Make sure that -E is not specified alongside linking (which includes SPV generation)
494 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
495 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000496
John Kessenich68d78fd2015-07-12 19:28:10 -0600497 // -o makes no sense if there is no target binary
498 if (binaryFileName && (Options & EOptionSpv) == 0)
499 Error("no binary generation requested (e.g., -V)");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000500}
501
John Kessenich68d78fd2015-07-12 19:28:10 -0600502//
503// Translate the meaningful subset of command-line options to parser-behavior options.
504//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000505void SetMessageOptions(EShMessages& messages)
506{
507 if (Options & EOptionRelaxedErrors)
508 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
509 if (Options & EOptionIntermediate)
510 messages = (EShMessages)(messages | EShMsgAST);
511 if (Options & EOptionSuppressWarnings)
512 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600513 if (Options & EOptionSpv)
514 messages = (EShMessages)(messages | EShMsgSpvRules);
515 if (Options & EOptionVulkanRules)
516 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400517 if (Options & EOptionOutputPreprocessed)
518 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000519}
520
John Kessenich68d78fd2015-07-12 19:28:10 -0600521//
John Kessenich69f4b512013-09-04 21:19:27 +0000522// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000523//
524// Return 0 for failure, 1 for success.
525//
Pyry Haulos5f6892e2015-12-01 12:59:53 -0800526unsigned int CompileShaders(void*)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000527{
John Kessenich38f3b892013-09-06 19:52:57 +0000528 glslang::TWorkItem* workItem;
529 while (Worklist.remove(workItem)) {
530 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000531 if (compiler == 0)
John Kessenichc999ba22013-11-07 23:33:24 +0000532 return 0;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000533
John Kessenichb0a7eb52013-11-07 17:44:20 +0000534 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000535
John Kessenich94a81fb2013-08-31 02:41:30 +0000536 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000537 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000538
539 ShDestruct(compiler);
540 }
541
542 return 0;
543}
544
John Kessenich6626cad2015-06-19 05:14:19 +0000545// Outputs the given string, but only if it is non-null and non-empty.
546// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400547void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000548{
549 if (str && str[0]) {
550 puts(str);
551 }
552}
553
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400554// Outputs the given string to stderr, but only if it is non-null and non-empty.
555// This prevents erroneous newlines from appearing.
556void StderrIfNonEmpty(const char* str)
557{
558 if (str && str[0]) {
559 fprintf(stderr, "%s\n", str);
560 }
561}
562
John Kessenichc57b2a92016-01-16 15:30:03 -0700563// Simple bundling of what makes a compilation unit for ease in passing around,
564// and separation of handling file IO versus API (programmatic) compilation.
565struct ShaderCompUnit {
566 EShLanguage stage;
567 std::string fileName;
568 char** text; // memory owned/managed externally
569};
570
John Kessenich69f4b512013-09-04 21:19:27 +0000571//
John Kessenichc57b2a92016-01-16 15:30:03 -0700572// For linking mode: Will independently parse each compilation unit, but then put them
573// in the same program and link them together, making at most one linked module per
574// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000575//
576// Uses the new C++ interface instead of the old handle-based interface.
577//
John Kessenichc57b2a92016-01-16 15:30:03 -0700578
579void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000580{
581 // keep track of what to free
582 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700583
John Kessenich69f4b512013-09-04 21:19:27 +0000584 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000585 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000586
John Kessenich69f4b512013-09-04 21:19:27 +0000587 //
588 // Per-shader processing...
589 //
590
John Kessenich5b0f13a2013-11-01 03:08:40 +0000591 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100592 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
593 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700594 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
595 shader->setStrings(compUnit.text, 1);
John Kessenich69f4b512013-09-04 21:19:27 +0000596 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600597
John Kessenichc555ddd2015-06-17 02:38:44 +0000598 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000599
John Kessenichc555ddd2015-06-17 02:38:44 +0000600 if (Options & EOptionOutputPreprocessed) {
601 std::string str;
Andrew Woloszyna132af52016-03-07 13:23:09 -0500602 glslang::TShader::ForbidInclude includer;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400603 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500604 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400605 PutsIfNonEmpty(str.c_str());
606 } else {
607 CompileFailed = true;
608 }
609 StderrIfNonEmpty(shader->getInfoLog());
610 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000611 continue;
612 }
613 if (! shader->parse(&Resources, defaultVersion, false, messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000614 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000615
John Kessenich69f4b512013-09-04 21:19:27 +0000616 program.addShader(shader);
617
John Kessenichc57b2a92016-01-16 15:30:03 -0700618 if (! (Options & EOptionSuppressInfolog) &&
619 ! (Options & EOptionMemoryLeakMode)) {
620 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400621 PutsIfNonEmpty(shader->getInfoLog());
622 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000623 }
John Kessenich69f4b512013-09-04 21:19:27 +0000624 }
625
626 //
627 // Program-level processing...
628 //
629
John Kessenich68d78fd2015-07-12 19:28:10 -0600630 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000631 LinkFailed = true;
632
John Kessenichc57b2a92016-01-16 15:30:03 -0700633 if (! (Options & EOptionSuppressInfolog) &&
634 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400635 PutsIfNonEmpty(program.getInfoLog());
636 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000637 }
638
John Kessenich11f9fc72013-11-07 01:06:34 +0000639 if (Options & EOptionDumpReflection) {
640 program.buildReflection();
641 program.dumpReflection();
642 }
643
John Kessenich0df0cde2015-03-03 17:09:43 +0000644 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000645 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600646 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000647 else {
648 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000649 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000650 std::vector<unsigned int> spirv;
651 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv);
John Kessenichc57b2a92016-01-16 15:30:03 -0700652
653 // Dump the spv to a file or stdout, etc., but only if not doing
654 // memory/perf testing, as it's not internal to programmatic use.
655 if (! (Options & EOptionMemoryLeakMode)) {
656 glslang::OutputSpv(spirv, GetBinaryName((EShLanguage)stage));
657 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700658 spv::Disassemble(std::cout, spirv);
659 }
John Kessenichacba7722015-03-04 03:48:38 +0000660 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000661 }
John Kessenich92f90382014-07-28 04:21:04 +0000662 }
663 }
664 }
665
John Kessenich5b0f13a2013-11-01 03:08:40 +0000666 // Free everything up, program has to go before the shaders
667 // because it might have merged stuff from the shaders, and
668 // the stuff from the shaders has to have its destructors called
669 // before the pools holding the memory in the shaders is freed.
670 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000671 while (shaders.size() > 0) {
672 delete shaders.back();
673 shaders.pop_back();
674 }
John Kessenich69f4b512013-09-04 21:19:27 +0000675}
676
John Kessenichc57b2a92016-01-16 15:30:03 -0700677//
678// Do file IO part of compile and link, handing off the pure
679// API/programmatic mode to CompileAndLinkShaderUnits(), which can
680// be put in a loop for testing memory footprint and performance.
681//
682// This is just for linking mode: meaning all the shaders will be put into the
683// the same program linked together.
684//
685// This means there are a limited number of work items (not multi-threading mode)
686// and that the point is testing at the linking level. Hence, to enable
687// performance and memory testing, the actual compile/link can be put in
688// a loop, independent of processing the work items and file IO.
689//
690void CompileAndLinkShaderFiles()
691{
692 std::vector<ShaderCompUnit> compUnits;
693
694 // Transfer all the work items from to a simple list of
695 // of compilation units. (We don't care about the thread
696 // work-item distribution properties in this path, which
697 // is okay due to the limited number of shaders, know since
698 // they are all getting linked together.)
699 glslang::TWorkItem* workItem;
700 while (Worklist.remove(workItem)) {
701 ShaderCompUnit compUnit = {
702 FindLanguage(workItem->name),
703 workItem->name,
704 ReadFileData(workItem->name.c_str())
705 };
706
707 if (! compUnit.text) {
708 usage();
709 return;
710 }
711
712 compUnits.push_back(compUnit);
713 }
714
715 // Actual call to programmatic processing of compile and link,
716 // in a loop for testing memory and performance. This part contains
717 // all the perf/memory that a programmatic consumer will care about.
718 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
719 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
720 CompileAndLinkShaderUnits(compUnits);
721
722 if (Options & EOptionMemoryLeakMode)
723 glslang::OS_DumpMemoryCounters();
724 }
725
rdb32084e82016-02-23 22:17:38 +0100726 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
727 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700728}
729
John Kessenicha0af4732012-12-12 21:15:54 +0000730int C_DECL main(int argc, char* argv[])
731{
John Kessenich68d78fd2015-07-12 19:28:10 -0600732 ProcessArguments(argc, argv);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000733
John Kessenich05a70632013-09-17 19:26:08 +0000734 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500735 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000736 if (Worklist.empty())
737 return ESuccess;
738 }
739
John Kessenich0da9eaa2015-08-01 17:10:02 -0600740 if (Options & EOptionDumpVersions) {
741 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000742 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
743 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600744 std::string spirvVersion;
745 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600746 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600747 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700748 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenich319de232013-12-04 04:43:40 +0000749 if (Worklist.empty())
750 return ESuccess;
751 }
752
John Kessenich05a70632013-09-17 19:26:08 +0000753 if (Worklist.empty()) {
754 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000755 }
756
757 ProcessConfigFile();
758
John Kessenich69f4b512013-09-04 21:19:27 +0000759 //
760 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000761 // 1) linking all arguments together, single-threaded, new C++ interface
762 // 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 +0000763 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000764 if (Options & EOptionLinkProgram ||
765 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000766 glslang::InitializeProcess();
John Kessenichc57b2a92016-01-16 15:30:03 -0700767 CompileAndLinkShaderFiles();
John Kessenichc36e1d82013-11-01 17:41:52 +0000768 glslang::FinalizeProcess();
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500769 for (int w = 0; w < NumWorkItems; ++w) {
770 if (Work[w]) {
771 delete Work[w];
772 }
773 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000774 } else {
775 ShInitialize();
776
John Kessenich38f3b892013-09-06 19:52:57 +0000777 bool printShaderNames = Worklist.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000778
John Kessenich38f3b892013-09-06 19:52:57 +0000779 if (Options & EOptionMultiThreaded) {
780 const int NumThreads = 16;
781 void* threads[NumThreads];
782 for (int t = 0; t < NumThreads; ++t) {
783 threads[t] = glslang::OS_CreateThread(&CompileShaders);
784 if (! threads[t]) {
785 printf("Failed to create thread\n");
786 return EFailThreadCreate;
787 }
John Kessenicha0af4732012-12-12 21:15:54 +0000788 }
John Kessenich38f3b892013-09-06 19:52:57 +0000789 glslang::OS_WaitForAllThreads(threads, NumThreads);
John Kessenichc999ba22013-11-07 23:33:24 +0000790 } else
791 CompileShaders(0);
John Kessenich38f3b892013-09-06 19:52:57 +0000792
793 // Print out all the resulting infologs
794 for (int w = 0; w < NumWorkItems; ++w) {
795 if (Work[w]) {
Kenneth Perryb07e6be2015-12-15 10:52:34 -0600796 if (printShaderNames || Work[w]->results.size() > 0)
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400797 PutsIfNonEmpty(Work[w]->name.c_str());
798 PutsIfNonEmpty(Work[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000799 delete Work[w];
800 }
801 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000802
803 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000804 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000805
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500806 delete[] Work;
807
John Kessenichc999ba22013-11-07 23:33:24 +0000808 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000809 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000810 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000811 return EFailLink;
812
813 return 0;
814}
815
816//
817// Deduce the language from the filename. Files must end in one of the
818// following extensions:
819//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000820// .vert = vertex
821// .tesc = tessellation control
822// .tese = tessellation evaluation
823// .geom = geometry
824// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000825// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000826//
John Kessenichb603f912013-08-29 00:39:25 +0000827EShLanguage FindLanguage(const std::string& name)
John Kessenicha0af4732012-12-12 21:15:54 +0000828{
John Kessenich2b07c7e2013-07-31 18:44:13 +0000829 size_t ext = name.rfind('.');
830 if (ext == std::string::npos) {
831 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000832 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000833 }
834
John Kessenich2b07c7e2013-07-31 18:44:13 +0000835 std::string suffix = name.substr(ext + 1, std::string::npos);
836 if (suffix == "vert")
837 return EShLangVertex;
838 else if (suffix == "tesc")
839 return EShLangTessControl;
840 else if (suffix == "tese")
841 return EShLangTessEvaluation;
842 else if (suffix == "geom")
843 return EShLangGeometry;
844 else if (suffix == "frag")
845 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000846 else if (suffix == "comp")
847 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000848
849 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000850 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000851}
852
John Kessenicha0af4732012-12-12 21:15:54 +0000853//
John Kessenich69f4b512013-09-04 21:19:27 +0000854// Read a file's data into a string, and compile it using the old interface ShCompile,
855// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000856//
John Kessenich51cdd902014-02-18 23:37:57 +0000857void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000858{
John Kessenichca3457f2015-05-18 01:59:45 +0000859 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000860 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000861 if (! shaderStrings) {
862 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000863 }
864
John Kessenich41cf6b52013-06-25 18:10:05 +0000865 int* lengths = new int[NumShaderStrings];
866
867 // move to length-based strings, rather than null-terminated strings
868 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000869 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000870
John Kessenichc999ba22013-11-07 23:33:24 +0000871 if (! shaderStrings) {
872 CompileFailed = true;
873 return;
874 }
John Kessenicha0af4732012-12-12 21:15:54 +0000875
John Kessenich52ac67e2013-05-05 23:46:22 +0000876 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000877 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000878
John Kessenich94a81fb2013-08-31 02:41:30 +0000879 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
880 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich26ad2682014-08-13 20:17:19 +0000881 //ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000882 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichea869fb2013-10-28 18:12:06 +0000883 //const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
884 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
885 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich41cf6b52013-06-25 18:10:05 +0000886 //const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
John Kessenichca3457f2015-05-18 01:59:45 +0000887 //ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +0000888 }
John Kessenicha0af4732012-12-12 21:15:54 +0000889
John Kessenich94a81fb2013-08-31 02:41:30 +0000890 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000891 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +0000892 }
John Kessenicha0af4732012-12-12 21:15:54 +0000893
John Kessenich41cf6b52013-06-25 18:10:05 +0000894 delete [] lengths;
895 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +0000896
John Kessenichc999ba22013-11-07 23:33:24 +0000897 if (ret == 0)
898 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +0000899}
900
John Kessenicha0af4732012-12-12 21:15:54 +0000901//
902// print usage to stdout
903//
904void usage()
905{
John Kessenich319de232013-12-04 04:43:40 +0000906 printf("Usage: glslangValidator [option]... [file]...\n"
907 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +0000908 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600909 " .conf to provide an optional config file that replaces the default configuration\n"
910 " (see -c option below for generating a template)\n"
911 " .vert for a vertex shader\n"
912 " .tesc for a tessellation control shader\n"
913 " .tese for a tessellation evaluation shader\n"
914 " .geom for a geometry shader\n"
915 " .frag for a fragment shader\n"
916 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +0000917 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000918 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +0000919 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +0000920 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600921 "Each option must be specified separately.\n"
922 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
923 " default file name is <stage>.spv (-o overrides this)\n"
924 " (unless -o is specified, which overrides the default file name)\n"
925 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
926 " default file name is <stage>.spv (-o overrides this)\n"
927 " -H print human readable form of SPIR-V; turns on -V\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400928 " -E print pre-processed GLSL; cannot be used with -l;\n"
929 " errors will appear on stderr.\n"
John Kessenich68d78fd2015-07-12 19:28:10 -0600930 " -c configuration dump;\n"
931 " creates the default configuration file (redirect to a .conf file)\n"
932 " -d default to desktop (#version 110) when there is no shader #version\n"
933 " (default is ES version 100)\n"
934 " -h print this usage message\n"
935 " -i intermediate tree (glslang AST) is printed out\n"
936 " -l link all input files together to form a single module\n"
937 " -m memory leak mode\n"
938 " -o <file> save binary into <file>, requires a binary option (e.g., -V)\n"
939 " -q dump reflection query database\n"
940 " -r relaxed semantic error-checking mode\n"
941 " -s silent mode\n"
942 " -t multi-threaded mode\n"
943 " -v print version strings\n"
944 " -w suppress warnings (except as required by #extension : warn)\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +0000945 );
John Kessenich68d78fd2015-07-12 19:28:10 -0600946
947 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +0000948}
949
John Kessenich3ce4e592014-10-06 19:57:34 +0000950#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +0000951
952#include <errno.h>
953
954int fopen_s(
955 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +0000956 const char* filename,
957 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +0000958)
959{
960 if (!pFile || !filename || !mode) {
961 return EINVAL;
962 }
963
964 FILE* f = fopen(filename, mode);
965 if (! f) {
966 if (errno != 0) {
967 return errno;
968 } else {
969 return ENOENT;
970 }
971 }
972 *pFile = f;
973
974 return 0;
975}
976
977#endif
978
John Kessenicha0af4732012-12-12 21:15:54 +0000979//
980// Malloc a string of sufficient size and read a string into it.
981//
John Kessenich51cdd902014-02-18 23:37:57 +0000982char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +0000983{
John Kessenichb3297152015-07-11 18:01:03 -0600984 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +0000985 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +0000986
John Kessenicha0af4732012-12-12 21:15:54 +0000987 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -0600988 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
989 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +0000990
John Kessenich68d78fd2015-07-12 19:28:10 -0600991 if (errorCode || in == nullptr)
992 Error("unable to open input file");
John Kessenicha0af4732012-12-12 21:15:54 +0000993
994 while (fgetc(in) != EOF)
995 count++;
996
John Kessenichd6c72a42014-08-18 19:42:35 +0000997 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +0000998
John Kessenichb3297152015-07-11 18:01:03 -0600999 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -06001000 if (! fdata)
1001 Error("can't allocate memory");
1002
John Kessenichb3297152015-07-11 18:01:03 -06001003 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -06001004 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -06001005 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001006 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001007
John Kessenicha0af4732012-12-12 21:15:54 +00001008 fdata[count] = '\0';
1009 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001010
John Kessenichea869fb2013-10-28 18:12:06 +00001011 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -06001012 // recover from empty file
1013 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001014 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +00001015 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001016 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +00001017
John Kessenichb3297152015-07-11 18:01:03 -06001018 return return_data;
1019 } else
1020 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
1021
1022 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +00001023 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -06001024 int ptr_len = 0;
1025 int i = 0;
1026 while (count > 0) {
1027 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
1028 memcpy(return_data[i], fdata + ptr_len, len);
1029 return_data[i][len] = '\0';
1030 count -= len;
1031 ptr_len += len;
1032 if (count < len) {
1033 if (count == 0) {
1034 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +00001035 break;
1036 }
John Kessenichb3297152015-07-11 18:01:03 -06001037 len = count;
John Kessenichd6c72a42014-08-18 19:42:35 +00001038 }
1039 ++i;
1040 }
John Kessenichb3297152015-07-11 18:01:03 -06001041
1042 free(fdata);
1043
John Kessenicha0af4732012-12-12 21:15:54 +00001044 return return_data;
1045}
1046
John Kessenich51cdd902014-02-18 23:37:57 +00001047void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +00001048{
John Kessenichb3297152015-07-11 18:01:03 -06001049 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +00001050 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -06001051
1052 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001053}
1054
John Kessenich54d8cda2013-02-11 22:36:01 +00001055void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001056{
John Kessenichfae38ee2015-06-10 23:23:12 +00001057 if (num >= 0 )
1058 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1059 else
1060 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001061}