blob: 0b8b8f4da19ecebd94bfefc1dd6b738a30ef6d02 [file] [log] [blame]
John Kessenicha0af4732012-12-12 21:15:54 +00001//
John Kessenich927608b2017-01-06 12:34:14 -07002// Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
3// Copyright (C) 2013-2016 LunarG, Inc.
John Kessenichbd0747d2013-02-17 06:01:50 +00004//
John Kessenich927608b2017-01-06 12:34:14 -07005// All rights reserved.
John Kessenicha0af4732012-12-12 21:15:54 +00006//
John Kessenich927608b2017-01-06 12:34:14 -07007// Redistribution and use in source and binary forms, with or without
8// modification, are permitted provided that the following conditions
9// are met:
John Kessenicha0af4732012-12-12 21:15:54 +000010//
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//
John Kessenich927608b2017-01-06 12:34:14 -070023// 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.
John Kessenicha0af4732012-12-12 21:15:54 +000035//
John Kessenich05a70632013-09-17 19:26:08 +000036
37// this only applies to the standalone wrapper, not the front end in general
Aras Pranckevicius8e204b22017-05-10 16:52:50 +030038#ifndef _CRT_SECURE_NO_WARNINGS
John Kessenich05a70632013-09-17 19:26:08 +000039#define _CRT_SECURE_NO_WARNINGS
Aras Pranckevicius8e204b22017-05-10 16:52:50 +030040#endif
John Kessenich05a70632013-09-17 19:26:08 +000041
Lei Zhang8a9b1ee2016-05-19 13:31:43 -040042#include "ResourceLimits.h"
John Kessenich2b07c7e2013-07-31 18:44:13 +000043#include "Worklist.h"
John Kessenich3494b4d2017-05-22 15:00:42 -060044#include "DirStackFileIncluder.h"
John Kessenicha0af4732012-12-12 21:15:54 +000045#include "./../glslang/Include/ShHandle.h"
John Kessenich0da9eaa2015-08-01 17:10:02 -060046#include "./../glslang/Include/revision.h"
John Kessenicha0af4732012-12-12 21:15:54 +000047#include "./../glslang/Public/ShaderLang.h"
John Kessenich0df0cde2015-03-03 17:09:43 +000048#include "../SPIRV/GlslangToSpv.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060049#include "../SPIRV/GLSL.std.450.h"
John Kessenichacba7722015-03-04 03:48:38 +000050#include "../SPIRV/doc.h"
51#include "../SPIRV/disassemble.h"
John Kessenich3494b4d2017-05-22 15:00:42 -060052
John Kessenich66ec80e2016-08-05 14:04:23 -060053#include <cstring>
54#include <cstdlib>
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060055#include <cctype>
John Kessenich66ec80e2016-08-05 14:04:23 -060056#include <cmath>
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060057#include <array>
Juan Lopeza558b262017-04-02 23:04:00 +020058#include <memory>
59#include <thread>
John Kessenicha0af4732012-12-12 21:15:54 +000060
baldurk876a0e32015-11-16 18:03:28 +010061#include "../glslang/OSDependent/osinclude.h"
John Kessenicha0af4732012-12-12 21:15:54 +000062
63extern "C" {
64 SH_IMPORT_EXPORT void ShOutputHtml();
65}
66
John Kessenich94a81fb2013-08-31 02:41:30 +000067// Command-line options
68enum TOptions {
John Kessenich906cc212016-12-09 19:22:20 -070069 EOptionNone = 0,
70 EOptionIntermediate = (1 << 0),
71 EOptionSuppressInfolog = (1 << 1),
72 EOptionMemoryLeakMode = (1 << 2),
73 EOptionRelaxedErrors = (1 << 3),
74 EOptionGiveWarnings = (1 << 4),
75 EOptionLinkProgram = (1 << 5),
76 EOptionMultiThreaded = (1 << 6),
77 EOptionDumpConfig = (1 << 7),
78 EOptionDumpReflection = (1 << 8),
79 EOptionSuppressWarnings = (1 << 9),
80 EOptionDumpVersions = (1 << 10),
81 EOptionSpv = (1 << 11),
82 EOptionHumanReadableSpv = (1 << 12),
83 EOptionVulkanRules = (1 << 13),
84 EOptionDefaultDesktop = (1 << 14),
85 EOptionOutputPreprocessed = (1 << 15),
86 EOptionOutputHexadecimal = (1 << 16),
87 EOptionReadHlsl = (1 << 17),
88 EOptionCascadingErrors = (1 << 18),
89 EOptionAutoMapBindings = (1 << 19),
steve-lunarge0b9deb2016-09-16 13:26:37 -060090 EOptionFlattenUniformArrays = (1 << 20),
John Kessenich906cc212016-12-09 19:22:20 -070091 EOptionNoStorageFormat = (1 << 21),
John Kessenich20f01e72016-12-12 11:41:43 -070092 EOptionKeepUncalled = (1 << 22),
John Kessenich4f1403e2017-04-05 17:38:20 -060093 EOptionHlslOffsets = (1 << 23),
steve-lunargbe283552017-04-18 12:18:01 -060094 EOptionHlslIoMapping = (1 << 24),
John Kessenich71facdf2017-05-17 18:28:19 -060095 EOptionAutoMapLocations = (1 << 25),
John Kessenich121853f2017-05-31 17:11:16 -060096 EOptionDebug = (1 << 26),
John Kessenich94a81fb2013-08-31 02:41:30 +000097};
98
John Kessenicha0af4732012-12-12 21:15:54 +000099//
John Kessenich68d78fd2015-07-12 19:28:10 -0600100// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +0000101//
102enum TFailCode {
103 ESuccess = 0,
104 EFailUsage,
105 EFailCompile,
106 EFailLink,
107 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +0000108 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +0000109 EFailLinkerCreate
110};
111
112//
John Kessenich68d78fd2015-07-12 19:28:10 -0600113// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000114//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600115EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000116void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000117void usage();
John Kessenichea869fb2013-10-28 18:12:06 +0000118void FreeFileData(char** data);
119char** ReadFileData(const char* fileName);
John Kessenich54d8cda2013-02-11 22:36:01 +0000120void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000121
John Kessenichc999ba22013-11-07 23:33:24 +0000122// Globally track if any compile or link failure.
123bool CompileFailed = false;
124bool LinkFailed = false;
125
John Kessenich05a70632013-09-17 19:26:08 +0000126// Use to test breaking up a single shader file into multiple strings.
John Kessenich68d78fd2015-07-12 19:28:10 -0600127// Set in ReadFileData().
John Kessenichea869fb2013-10-28 18:12:06 +0000128int NumShaderStrings;
John Kessenicha0af4732012-12-12 21:15:54 +0000129
John Kessenich05a70632013-09-17 19:26:08 +0000130TBuiltInResource Resources;
131std::string ConfigFile;
132
John Kessenicha0af4732012-12-12 21:15:54 +0000133//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600134// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000135//
136void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000137{
John Kessenich05a70632013-09-17 19:26:08 +0000138 char** configStrings = 0;
John Kessenich51cdd902014-02-18 23:37:57 +0000139 char* config = 0;
John Kessenich05a70632013-09-17 19:26:08 +0000140 if (ConfigFile.size() > 0) {
John Kessenichea869fb2013-10-28 18:12:06 +0000141 configStrings = ReadFileData(ConfigFile.c_str());
John Kessenich05a70632013-09-17 19:26:08 +0000142 if (configStrings)
143 config = *configStrings;
144 else {
145 printf("Error opening configuration file; will instead use the default configuration\n");
146 usage();
147 }
148 }
149
150 if (config == 0) {
Lei Zhang414eb602016-03-04 16:22:34 -0500151 Resources = glslang::DefaultTBuiltInResource;
152 return;
John Kessenich05a70632013-09-17 19:26:08 +0000153 }
154
Lei Zhang1b141722016-05-19 13:50:49 -0400155 glslang::DecodeResourceLimits(&Resources, config);
John Kessenich05a70632013-09-17 19:26:08 +0000156
John Kessenich05a70632013-09-17 19:26:08 +0000157 if (configStrings)
158 FreeFileData(configStrings);
Andrew Woloszynb891c2b2016-01-18 09:26:25 -0500159 else
160 delete[] config;
John Kessenicha0af4732012-12-12 21:15:54 +0000161}
162
John Kessenich94a81fb2013-08-31 02:41:30 +0000163int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600164const char* ExecutableName = nullptr;
165const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700166const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600167const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400168const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800169const char* variableName = nullptr;
John Kessenich971a0a82017-06-07 15:06:58 -0600170std::vector<std::string> IncludeDirectoryList;
John Kessenich68d78fd2015-07-12 19:28:10 -0600171
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600172std::array<unsigned int, EShLangCount> baseSamplerBinding;
173std::array<unsigned int, EShLangCount> baseTextureBinding;
steve-lunarg9088be42016-11-01 10:31:42 -0600174std::array<unsigned int, EShLangCount> baseImageBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600175std::array<unsigned int, EShLangCount> baseUboBinding;
steve-lunarg932bb5c2017-02-21 17:19:08 -0700176std::array<unsigned int, EShLangCount> baseSsboBinding;
steve-lunargbe283552017-04-18 12:18:01 -0600177std::array<unsigned int, EShLangCount> baseUavBinding;
Hyangran Park36dc8292017-05-02 16:27:29 +0900178std::array<std::vector<std::string>, EShLangCount> baseResourceSetBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600179
John Kessenich68d78fd2015-07-12 19:28:10 -0600180//
181// Create the default name for saving a binary if -o is not provided.
182//
183const char* GetBinaryName(EShLanguage stage)
184{
185 const char* name;
186 if (binaryFileName == nullptr) {
187 switch (stage) {
188 case EShLangVertex: name = "vert.spv"; break;
189 case EShLangTessControl: name = "tesc.spv"; break;
190 case EShLangTessEvaluation: name = "tese.spv"; break;
191 case EShLangGeometry: name = "geom.spv"; break;
192 case EShLangFragment: name = "frag.spv"; break;
193 case EShLangCompute: name = "comp.spv"; break;
194 default: name = "unknown"; break;
195 }
196 } else
197 name = binaryFileName;
198
199 return name;
200}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000201
John Kessenich05a70632013-09-17 19:26:08 +0000202//
203// *.conf => this is a config file that can set limits/resources
204//
205bool SetConfigFile(const std::string& name)
206{
207 if (name.size() < 5)
208 return false;
209
John Kessenich4c706852013-10-11 16:28:43 +0000210 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000211 ConfigFile = name;
212 return true;
213 }
214
215 return false;
216}
217
John Kessenich68d78fd2015-07-12 19:28:10 -0600218//
219// Give error and exit with failure code.
220//
221void Error(const char* message)
222{
223 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
224 exit(EFailUsage);
225}
226
227//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600228// Process an optional binding base of the form:
229// --argname [stage] base
230// Where stage is one of the forms accepted by FindLanguage, and base is an integer
231//
232void ProcessBindingBase(int& argc, char**& argv, std::array<unsigned int, EShLangCount>& base)
233{
234 if (argc < 2)
235 usage();
236
237 if (!isdigit(argv[1][0])) {
238 if (argc < 3) // this form needs one more argument
239 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700240
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600241 // Parse form: --argname stage base
242 const EShLanguage lang = FindLanguage(argv[1], false);
243 base[lang] = atoi(argv[2]);
244 argc-= 2;
245 argv+= 2;
246 } else {
247 // Parse form: --argname base
248 for (int lang=0; lang<EShLangCount; ++lang)
249 base[lang] = atoi(argv[1]);
250
251 argc--;
252 argv++;
253 }
254}
255
Hyangran Park36dc8292017-05-02 16:27:29 +0900256void ProcessResourceSetBindingBase(int& argc, char**& argv, std::array<std::vector<std::string>, EShLangCount>& base)
257{
258 if (argc < 2)
259 usage();
260
261 if (!isdigit(argv[1][0])) {
262 if (argc < 5) // this form needs one more argument
263 usage();
264
265 // Parse form: --argname stage base
266 const EShLanguage lang = FindLanguage(argv[1], false);
267
268 base[lang].push_back(argv[2]);
269 base[lang].push_back(argv[3]);
270 base[lang].push_back(argv[4]);
271 argc-= 4;
272 argv+= 4;
273 while(argv[1] != NULL) {
274 if(argv[1][0] != '-') {
275 base[lang].push_back(argv[1]);
276 base[lang].push_back(argv[2]);
277 base[lang].push_back(argv[3]);
278 argc-= 3;
279 argv+= 3;
280 }
281 else {
282 break;
283 }
284 }
285 } else {
286 // Parse form: --argname base
287 for (int lang=0; lang<EShLangCount; ++lang)
288 base[lang].push_back(argv[1]);
289
290 argc--;
291 argv++;
292 }
293}
294
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600295//
John Kessenich68d78fd2015-07-12 19:28:10 -0600296// Do all command-line argument parsing. This includes building up the work-items
297// to be processed later, and saving all the command-line options.
298//
299// Does not return (it exits) if command-line is fatally flawed.
300//
Juan Lopeza558b262017-04-02 23:04:00 +0200301void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItems, int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000302{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600303 baseSamplerBinding.fill(0);
304 baseTextureBinding.fill(0);
steve-lunarg9088be42016-11-01 10:31:42 -0600305 baseImageBinding.fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600306 baseUboBinding.fill(0);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700307 baseSsboBinding.fill(0);
steve-lunargbe283552017-04-18 12:18:01 -0600308 baseUavBinding.fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600309
John Kessenich38f3b892013-09-06 19:52:57 +0000310 ExecutableName = argv[0];
Juan Lopeza558b262017-04-02 23:04:00 +0200311 workItems.reserve(argc);
John Kessenich38f3b892013-09-06 19:52:57 +0000312
John Kessenich2b07c7e2013-07-31 18:44:13 +0000313 argc--;
John Kessenichecba76f2017-01-06 00:34:48 -0700314 argv++;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000315 for (; argc >= 1; argc--, argv++) {
316 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000317 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600318 case '-':
319 {
320 std::string lowerword(argv[0]+2);
321 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
322
323 // handle --word style options
324 if (lowerword == "shift-sampler-bindings" || // synonyms
325 lowerword == "shift-sampler-binding" ||
326 lowerword == "ssb") {
327 ProcessBindingBase(argc, argv, baseSamplerBinding);
328 } else if (lowerword == "shift-texture-bindings" || // synonyms
329 lowerword == "shift-texture-binding" ||
330 lowerword == "stb") {
331 ProcessBindingBase(argc, argv, baseTextureBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600332 } else if (lowerword == "shift-image-bindings" || // synonyms
333 lowerword == "shift-image-binding" ||
334 lowerword == "sib") {
335 ProcessBindingBase(argc, argv, baseImageBinding);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600336 } else if (lowerword == "shift-ubo-bindings" || // synonyms
337 lowerword == "shift-ubo-binding" ||
steve-lunargbe283552017-04-18 12:18:01 -0600338 lowerword == "shift-cbuffer-bindings" ||
339 lowerword == "shift-cbuffer-binding" ||
340 lowerword == "sub" ||
341 lowerword == "scb") {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600342 ProcessBindingBase(argc, argv, baseUboBinding);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700343 } else if (lowerword == "shift-ssbo-bindings" || // synonyms
344 lowerword == "shift-ssbo-binding" ||
345 lowerword == "sbb") {
346 ProcessBindingBase(argc, argv, baseSsboBinding);
Hyangran Park36dc8292017-05-02 16:27:29 +0900347 } else if (lowerword == "resource-set-bindings" || // synonyms
348 lowerword == "resource-set-binding" ||
349 lowerword == "rsb") {
350 ProcessResourceSetBindingBase(argc, argv, baseResourceSetBinding);
steve-lunargbe283552017-04-18 12:18:01 -0600351 } else if (lowerword == "shift-uav-bindings" || // synonyms
352 lowerword == "shift-uav-binding" ||
353 lowerword == "suavb") {
354 ProcessBindingBase(argc, argv, baseUavBinding);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600355 } else if (lowerword == "auto-map-bindings" || // synonyms
John Kessenichecba76f2017-01-06 00:34:48 -0700356 lowerword == "auto-map-binding" ||
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600357 lowerword == "amb") {
358 Options |= EOptionAutoMapBindings;
steve-lunarge0b9deb2016-09-16 13:26:37 -0600359 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
360 lowerword == "flatten-uniform-array" ||
361 lowerword == "fua") {
362 Options |= EOptionFlattenUniformArrays;
steve-lunargcce8d482016-10-14 18:36:42 -0600363 } else if (lowerword == "no-storage-format" || // synonyms
364 lowerword == "nsf") {
365 Options |= EOptionNoStorageFormat;
Flavio15017db2017-02-15 14:29:33 -0800366 } else if (lowerword == "variable-name" || // synonyms
367 lowerword == "vn") {
368 Options |= EOptionOutputHexadecimal;
369 variableName = argv[1];
370 if (argc > 0) {
371 argc--;
372 argv++;
373 } else
374 Error("no <C-variable-name> provided for --variable-name");
375 break;
John Kessenich4f1403e2017-04-05 17:38:20 -0600376 } else if (lowerword == "source-entrypoint" || // synonyms
steve-lunargf1e0c872016-10-31 15:13:43 -0600377 lowerword == "sep") {
378 sourceEntryPointName = argv[1];
379 if (argc > 0) {
380 argc--;
381 argv++;
382 } else
383 Error("no <entry-point> provided for --source-entrypoint");
384 break;
John Kessenich906cc212016-12-09 19:22:20 -0700385 } else if (lowerword == "keep-uncalled" || // synonyms
386 lowerword == "ku") {
387 Options |= EOptionKeepUncalled;
John Kessenich4f1403e2017-04-05 17:38:20 -0600388 } else if (lowerword == "hlsl-offsets") {
389 Options |= EOptionHlslOffsets;
steve-lunargbe283552017-04-18 12:18:01 -0600390 } else if (lowerword == "hlsl-iomap" ||
391 lowerword == "hlsl-iomapper" ||
392 lowerword == "hlsl-iomapping") {
393 Options |= EOptionHlslIoMapping;
John Kessenich71facdf2017-05-17 18:28:19 -0600394 } else if (lowerword == "auto-map-locations" || // synonyms
395 lowerword == "aml") {
396 Options |= EOptionAutoMapLocations;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600397 } else {
398 usage();
399 }
400 }
401 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000402 case 'H':
403 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600404 if ((Options & EOptionSpv) == 0) {
405 // default to Vulkan
406 Options |= EOptionSpv;
407 Options |= EOptionVulkanRules;
408 Options |= EOptionLinkProgram;
409 }
410 break;
John Kessenich971a0a82017-06-07 15:06:58 -0600411 case 'I':
412 if (argv[0][2] == 0) {
413 printf("include path must immediately follow (no spaces) -I\n");
414 exit(EFailUsage);
415 }
416 IncludeDirectoryList.push_back(argv[0]+2);
417 break;
John Kessenich0df0cde2015-03-03 17:09:43 +0000418 case 'V':
419 Options |= EOptionSpv;
John Kessenich68d78fd2015-07-12 19:28:10 -0600420 Options |= EOptionVulkanRules;
421 Options |= EOptionLinkProgram;
422 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400423 case 'S':
Dan Bakerc6ede892016-08-11 14:06:06 -0400424 shaderStageName = argv[1];
dankbaker45d49bc2016-08-08 21:43:07 -0400425 if (argc > 0) {
426 argc--;
427 argv++;
John Kesseniche751bca2017-03-16 11:20:38 -0600428 } else
Dan Baker5afdd782016-08-11 17:53:57 -0400429 Error("no <stage> specified for -S");
dankbaker45d49bc2016-08-08 21:43:07 -0400430 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600431 case 'G':
432 Options |= EOptionSpv;
John Kessenichd78e3512014-08-25 20:07:55 +0000433 Options |= EOptionLinkProgram;
John Kessenich91e4aa52016-07-07 17:46:42 -0600434 // undo a -H default to Vulkan
435 Options &= ~EOptionVulkanRules;
John Kessenich92f90382014-07-28 04:21:04 +0000436 break;
John Kessenichc555ddd2015-06-17 02:38:44 +0000437 case 'E':
438 Options |= EOptionOutputPreprocessed;
439 break;
John Kessenich05a70632013-09-17 19:26:08 +0000440 case 'c':
441 Options |= EOptionDumpConfig;
442 break;
John Kessenicha86836e2016-07-09 14:50:57 -0600443 case 'C':
444 Options |= EOptionCascadingErrors;
445 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000446 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000447 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000448 break;
John Kessenich66e2faf2016-03-12 18:34:36 -0700449 case 'D':
450 Options |= EOptionReadHlsl;
451 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700452 case 'e':
453 // HLSL todo: entry point handle needs much more sophistication.
454 // This is okay for one compilation unit with one entry point.
455 entryPointName = argv[1];
456 if (argc > 0) {
457 argc--;
458 argv++;
459 } else
460 Error("no <entry-point> provided for -e");
461 break;
John Kessenich121853f2017-05-31 17:11:16 -0600462 case 'g':
463 Options |= EOptionDebug;
464 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600465 case 'h':
466 usage();
467 break;
John Kessenich05a70632013-09-17 19:26:08 +0000468 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000469 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000470 break;
471 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000472 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000473 break;
474 case 'm':
475 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000476 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600477 case 'o':
478 binaryFileName = argv[1];
479 if (argc > 0) {
480 argc--;
481 argv++;
482 } else
483 Error("no <file> provided for -o");
484 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000485 case 'q':
486 Options |= EOptionDumpReflection;
487 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000488 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000489 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000490 break;
491 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000492 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000493 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000494 case 't':
Juan Lopeza558b262017-04-02 23:04:00 +0200495 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000496 break;
John Kessenich319de232013-12-04 04:43:40 +0000497 case 'v':
498 Options |= EOptionDumpVersions;
499 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000500 case 'w':
501 Options |= EOptionSuppressWarnings;
502 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500503 case 'x':
504 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500505 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000506 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600507 usage();
508 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000509 }
John Kessenich38f3b892013-09-06 19:52:57 +0000510 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000511 std::string name(argv[0]);
512 if (! SetConfigFile(name)) {
Juan Lopeza558b262017-04-02 23:04:00 +0200513 workItems.push_back(std::unique_ptr<glslang::TWorkItem>(new glslang::TWorkItem(name)));
John Kessenich05a70632013-09-17 19:26:08 +0000514 }
John Kessenich38f3b892013-09-06 19:52:57 +0000515 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000516 }
517
John Kessenich68d78fd2015-07-12 19:28:10 -0600518 // Make sure that -E is not specified alongside linking (which includes SPV generation)
519 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
520 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000521
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500522 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600523 if (binaryFileName && (Options & EOptionSpv) == 0)
524 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600525
526 if ((Options & EOptionFlattenUniformArrays) != 0 &&
527 (Options & EOptionReadHlsl) == 0)
528 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000529}
530
John Kessenich68d78fd2015-07-12 19:28:10 -0600531//
532// Translate the meaningful subset of command-line options to parser-behavior options.
533//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000534void SetMessageOptions(EShMessages& messages)
535{
536 if (Options & EOptionRelaxedErrors)
537 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
538 if (Options & EOptionIntermediate)
539 messages = (EShMessages)(messages | EShMsgAST);
540 if (Options & EOptionSuppressWarnings)
541 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600542 if (Options & EOptionSpv)
543 messages = (EShMessages)(messages | EShMsgSpvRules);
544 if (Options & EOptionVulkanRules)
545 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400546 if (Options & EOptionOutputPreprocessed)
547 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700548 if (Options & EOptionReadHlsl)
549 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600550 if (Options & EOptionCascadingErrors)
551 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700552 if (Options & EOptionKeepUncalled)
553 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenich4f1403e2017-04-05 17:38:20 -0600554 if (Options & EOptionHlslOffsets)
555 messages = (EShMessages)(messages | EShMsgHlslOffsets);
John Kessenich121853f2017-05-31 17:11:16 -0600556 if (Options & EOptionDebug)
557 messages = (EShMessages)(messages | EShMsgDebugInfo);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000558}
559
John Kessenich68d78fd2015-07-12 19:28:10 -0600560//
John Kessenich69f4b512013-09-04 21:19:27 +0000561// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000562//
Juan Lopeza558b262017-04-02 23:04:00 +0200563void CompileShaders(glslang::TWorklist& worklist)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000564{
John Kessenich38f3b892013-09-06 19:52:57 +0000565 glslang::TWorkItem* workItem;
Juan Lopeza558b262017-04-02 23:04:00 +0200566 while (worklist.remove(workItem)) {
John Kessenich38f3b892013-09-06 19:52:57 +0000567 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000568 if (compiler == 0)
Juan Lopeza558b262017-04-02 23:04:00 +0200569 return;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000570
John Kessenichb0a7eb52013-11-07 17:44:20 +0000571 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000572
John Kessenich94a81fb2013-08-31 02:41:30 +0000573 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000574 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000575
576 ShDestruct(compiler);
577 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000578}
579
John Kessenich6626cad2015-06-19 05:14:19 +0000580// Outputs the given string, but only if it is non-null and non-empty.
581// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400582void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000583{
584 if (str && str[0]) {
585 puts(str);
586 }
587}
588
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400589// Outputs the given string to stderr, but only if it is non-null and non-empty.
590// This prevents erroneous newlines from appearing.
591void StderrIfNonEmpty(const char* str)
592{
593 if (str && str[0]) {
594 fprintf(stderr, "%s\n", str);
595 }
596}
597
John Kessenichc57b2a92016-01-16 15:30:03 -0700598// Simple bundling of what makes a compilation unit for ease in passing around,
599// and separation of handling file IO versus API (programmatic) compilation.
600struct ShaderCompUnit {
601 EShLanguage stage;
602 std::string fileName;
dankbakerafe6e9c2016-08-21 12:29:08 -0400603 char** text; // memory owned/managed externally
John Kesseniche751bca2017-03-16 11:20:38 -0600604 const char* fileNameList[1];
dankbakerafe6e9c2016-08-21 12:29:08 -0400605
John Kessenich219b0252016-08-23 17:51:13 -0600606 // Need to have a special constructors to adjust the fileNameList, since back end needs a list of ptrs
dankbakerafe6e9c2016-08-21 12:29:08 -0400607 ShaderCompUnit(EShLanguage istage, std::string &ifileName, char** itext)
608 {
609 stage = istage;
610 fileName = ifileName;
John Kesseniche751bca2017-03-16 11:20:38 -0600611 text = itext;
John Kessenich219b0252016-08-23 17:51:13 -0600612 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400613 }
614
615 ShaderCompUnit(const ShaderCompUnit &rhs)
616 {
617 stage = rhs.stage;
618 fileName = rhs.fileName;
619 text = rhs.text;
John Kessenich219b0252016-08-23 17:51:13 -0600620 fileNameList[0] = fileName.c_str();
dankbakerafe6e9c2016-08-21 12:29:08 -0400621 }
622
John Kessenichc57b2a92016-01-16 15:30:03 -0700623};
624
John Kessenich69f4b512013-09-04 21:19:27 +0000625//
John Kessenichc57b2a92016-01-16 15:30:03 -0700626// For linking mode: Will independently parse each compilation unit, but then put them
627// in the same program and link them together, making at most one linked module per
628// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000629//
630// Uses the new C++ interface instead of the old handle-based interface.
631//
John Kessenichc57b2a92016-01-16 15:30:03 -0700632
633void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000634{
635 // keep track of what to free
636 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700637
John Kessenich69f4b512013-09-04 21:19:27 +0000638 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000639 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000640
John Kessenich69f4b512013-09-04 21:19:27 +0000641 //
642 // Per-shader processing...
643 //
644
John Kessenich5b0f13a2013-11-01 03:08:40 +0000645 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100646 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
647 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700648 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
dankbakerafe6e9c2016-08-21 12:29:08 -0400649 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, 1);
John Kessenich4d65ee32016-03-12 18:17:47 -0700650 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
651 shader->setEntryPoint(entryPointName);
steve-lunargf1e0c872016-10-31 15:13:43 -0600652 if (sourceEntryPointName)
653 shader->setSourceEntryPoint(sourceEntryPointName);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600654
655 shader->setShiftSamplerBinding(baseSamplerBinding[compUnit.stage]);
656 shader->setShiftTextureBinding(baseTextureBinding[compUnit.stage]);
steve-lunarg9088be42016-11-01 10:31:42 -0600657 shader->setShiftImageBinding(baseImageBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600658 shader->setShiftUboBinding(baseUboBinding[compUnit.stage]);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700659 shader->setShiftSsboBinding(baseSsboBinding[compUnit.stage]);
steve-lunargbe283552017-04-18 12:18:01 -0600660 shader->setShiftUavBinding(baseUavBinding[compUnit.stage]);
steve-lunarge0b9deb2016-09-16 13:26:37 -0600661 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600662 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
Hyangran Park36dc8292017-05-02 16:27:29 +0900663 shader->setResourceSetBinding(baseResourceSetBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600664
steve-lunargbe283552017-04-18 12:18:01 -0600665 if (Options & EOptionHlslIoMapping)
666 shader->setHlslIoMapping(true);
667
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600668 if (Options & EOptionAutoMapBindings)
669 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -0700670
John Kessenich71facdf2017-05-17 18:28:19 -0600671 if (Options & EOptionAutoMapLocations)
672 shader->setAutoMapLocations(true);
673
John Kessenich69f4b512013-09-04 21:19:27 +0000674 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600675
John Kessenichc555ddd2015-06-17 02:38:44 +0000676 const int defaultVersion = Options & EOptionDefaultDesktop? 110: 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000677
John Kessenich3494b4d2017-05-22 15:00:42 -0600678 DirStackFileIncluder includer;
John Kessenich971a0a82017-06-07 15:06:58 -0600679 std::for_each(IncludeDirectoryList.rbegin(), IncludeDirectoryList.rend(), [&includer](const std::string& dir) {
680 includer.pushExternalLocalDirectory(dir); });
John Kessenichc555ddd2015-06-17 02:38:44 +0000681 if (Options & EOptionOutputPreprocessed) {
682 std::string str;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400683 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500684 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400685 PutsIfNonEmpty(str.c_str());
686 } else {
687 CompileFailed = true;
688 }
689 StderrIfNonEmpty(shader->getInfoLog());
690 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000691 continue;
692 }
John Kessenich3494b4d2017-05-22 15:00:42 -0600693 if (! shader->parse(&Resources, defaultVersion, false, messages, includer))
John Kessenichc999ba22013-11-07 23:33:24 +0000694 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000695
John Kessenich69f4b512013-09-04 21:19:27 +0000696 program.addShader(shader);
697
John Kessenichc57b2a92016-01-16 15:30:03 -0700698 if (! (Options & EOptionSuppressInfolog) &&
699 ! (Options & EOptionMemoryLeakMode)) {
700 PutsIfNonEmpty(compUnit.fileName.c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400701 PutsIfNonEmpty(shader->getInfoLog());
702 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000703 }
John Kessenich69f4b512013-09-04 21:19:27 +0000704 }
705
706 //
707 // Program-level processing...
708 //
709
John Kessenich4d65ee32016-03-12 18:17:47 -0700710 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600711 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000712 LinkFailed = true;
713
steve-lunarg9ae34742016-10-05 13:40:13 -0600714 // Map IO
715 if (Options & EOptionSpv) {
716 if (!program.mapIO())
717 LinkFailed = true;
718 }
John Kessenichecba76f2017-01-06 00:34:48 -0700719
John Kessenich4d65ee32016-03-12 18:17:47 -0700720 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700721 if (! (Options & EOptionSuppressInfolog) &&
722 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400723 PutsIfNonEmpty(program.getInfoLog());
724 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000725 }
726
John Kessenich4d65ee32016-03-12 18:17:47 -0700727 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000728 if (Options & EOptionDumpReflection) {
729 program.buildReflection();
730 program.dumpReflection();
731 }
732
John Kessenich4d65ee32016-03-12 18:17:47 -0700733 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000734 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000735 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600736 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000737 else {
738 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000739 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000740 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400741 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400742 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -0600743 glslang::SpvOptions spvOptions;
744 if (Options & EOptionDebug)
745 spvOptions.generateDebugInfo = true;
746 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger, &spvOptions);
John Kessenichc57b2a92016-01-16 15:30:03 -0700747
748 // Dump the spv to a file or stdout, etc., but only if not doing
749 // memory/perf testing, as it's not internal to programmatic use.
750 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500751 printf("%s", logger.getAllMessages().c_str());
752 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -0700753 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500754 } else {
755 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
756 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700757 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700758 spv::Disassemble(std::cout, spirv);
759 }
John Kessenichacba7722015-03-04 03:48:38 +0000760 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000761 }
John Kessenich92f90382014-07-28 04:21:04 +0000762 }
763 }
764 }
765
John Kessenich5b0f13a2013-11-01 03:08:40 +0000766 // Free everything up, program has to go before the shaders
767 // because it might have merged stuff from the shaders, and
768 // the stuff from the shaders has to have its destructors called
769 // before the pools holding the memory in the shaders is freed.
770 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000771 while (shaders.size() > 0) {
772 delete shaders.back();
773 shaders.pop_back();
774 }
John Kessenich69f4b512013-09-04 21:19:27 +0000775}
776
John Kessenichc57b2a92016-01-16 15:30:03 -0700777//
778// Do file IO part of compile and link, handing off the pure
779// API/programmatic mode to CompileAndLinkShaderUnits(), which can
780// be put in a loop for testing memory footprint and performance.
781//
782// This is just for linking mode: meaning all the shaders will be put into the
783// the same program linked together.
784//
785// This means there are a limited number of work items (not multi-threading mode)
786// and that the point is testing at the linking level. Hence, to enable
787// performance and memory testing, the actual compile/link can be put in
788// a loop, independent of processing the work items and file IO.
789//
Juan Lopeza558b262017-04-02 23:04:00 +0200790void CompileAndLinkShaderFiles(glslang::TWorklist& Worklist)
John Kessenichc57b2a92016-01-16 15:30:03 -0700791{
792 std::vector<ShaderCompUnit> compUnits;
793
794 // Transfer all the work items from to a simple list of
795 // of compilation units. (We don't care about the thread
796 // work-item distribution properties in this path, which
797 // is okay due to the limited number of shaders, know since
798 // they are all getting linked together.)
799 glslang::TWorkItem* workItem;
800 while (Worklist.remove(workItem)) {
baldurk31d5d482016-10-13 19:25:52 +0200801 ShaderCompUnit compUnit(
John Kessenichc57b2a92016-01-16 15:30:03 -0700802 FindLanguage(workItem->name),
803 workItem->name,
804 ReadFileData(workItem->name.c_str())
baldurk31d5d482016-10-13 19:25:52 +0200805 );
John Kessenichc57b2a92016-01-16 15:30:03 -0700806
807 if (! compUnit.text) {
808 usage();
809 return;
810 }
811
812 compUnits.push_back(compUnit);
813 }
814
815 // Actual call to programmatic processing of compile and link,
816 // in a loop for testing memory and performance. This part contains
817 // all the perf/memory that a programmatic consumer will care about.
818 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
819 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
820 CompileAndLinkShaderUnits(compUnits);
821
822 if (Options & EOptionMemoryLeakMode)
823 glslang::OS_DumpMemoryCounters();
824 }
825
rdb32084e82016-02-23 22:17:38 +0100826 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
827 FreeFileData(it->text);
John Kessenichc57b2a92016-01-16 15:30:03 -0700828}
829
John Kessenicha0af4732012-12-12 21:15:54 +0000830int C_DECL main(int argc, char* argv[])
831{
Juan Lopeza558b262017-04-02 23:04:00 +0200832 // array of unique places to leave the shader names and infologs for the asynchronous compiles
833 std::vector<std::unique_ptr<glslang::TWorkItem>> workItems;
834 ProcessArguments(workItems, argc, argv);
835
836 glslang::TWorklist workList;
837 std::for_each(workItems.begin(), workItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>& item) {
838 assert(item);
839 workList.add(item.get());
840 });
John Kessenich2b07c7e2013-07-31 18:44:13 +0000841
John Kessenich05a70632013-09-17 19:26:08 +0000842 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500843 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
Juan Lopeza558b262017-04-02 23:04:00 +0200844 if (workList.empty())
John Kessenich05a70632013-09-17 19:26:08 +0000845 return ESuccess;
846 }
847
John Kessenich0da9eaa2015-08-01 17:10:02 -0600848 if (Options & EOptionDumpVersions) {
849 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000850 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
851 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600852 std::string spirvVersion;
853 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600854 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600855 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700856 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600857 printf("GL_KHR_vulkan_glsl version %d\n", 100);
858 printf("ARB_GL_gl_spirv version %d\n", 100);
Juan Lopeza558b262017-04-02 23:04:00 +0200859 if (workList.empty())
John Kessenich319de232013-12-04 04:43:40 +0000860 return ESuccess;
861 }
862
Juan Lopeza558b262017-04-02 23:04:00 +0200863 if (workList.empty()) {
John Kessenich05a70632013-09-17 19:26:08 +0000864 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000865 }
866
867 ProcessConfigFile();
868
John Kessenich69f4b512013-09-04 21:19:27 +0000869 //
870 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000871 // 1) linking all arguments together, single-threaded, new C++ interface
872 // 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 +0000873 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000874 if (Options & EOptionLinkProgram ||
875 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000876 glslang::InitializeProcess();
Juan Lopeza558b262017-04-02 23:04:00 +0200877 CompileAndLinkShaderFiles(workList);
John Kessenichc36e1d82013-11-01 17:41:52 +0000878 glslang::FinalizeProcess();
879 } else {
880 ShInitialize();
881
Juan Lopeza558b262017-04-02 23:04:00 +0200882 bool printShaderNames = workList.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000883
Juan Lopeza558b262017-04-02 23:04:00 +0200884 if (Options & EOptionMultiThreaded)
885 {
886 std::array<std::thread, 16> threads;
887 for (unsigned int t = 0; t < threads.size(); ++t)
888 {
889 threads[t] = std::thread(CompileShaders, std::ref(workList));
890 if (threads[t].get_id() == std::thread::id())
891 {
John Kessenich38f3b892013-09-06 19:52:57 +0000892 printf("Failed to create thread\n");
893 return EFailThreadCreate;
894 }
John Kessenicha0af4732012-12-12 21:15:54 +0000895 }
Juan Lopeza558b262017-04-02 23:04:00 +0200896
897 std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
John Kessenichc999ba22013-11-07 23:33:24 +0000898 } else
Juan Lopeza558b262017-04-02 23:04:00 +0200899 CompileShaders(workList);
John Kessenich38f3b892013-09-06 19:52:57 +0000900
901 // Print out all the resulting infologs
Juan Lopeza558b262017-04-02 23:04:00 +0200902 for (size_t w = 0; w < workItems.size(); ++w) {
903 if (workItems[w]) {
904 if (printShaderNames || workItems[w]->results.size() > 0)
905 PutsIfNonEmpty(workItems[w]->name.c_str());
906 PutsIfNonEmpty(workItems[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +0000907 }
908 }
John Kessenichc36e1d82013-11-01 17:41:52 +0000909
910 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +0000911 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000912
John Kessenichc999ba22013-11-07 23:33:24 +0000913 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000914 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +0000915 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +0000916 return EFailLink;
917
918 return 0;
919}
920
921//
922// Deduce the language from the filename. Files must end in one of the
923// following extensions:
924//
John Kessenich2b07c7e2013-07-31 18:44:13 +0000925// .vert = vertex
926// .tesc = tessellation control
927// .tese = tessellation evaluation
928// .geom = geometry
929// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +0000930// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +0000931//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600932EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +0000933{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600934 size_t ext = 0;
John Kesseniche751bca2017-03-16 11:20:38 -0600935 std::string suffix;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600936
Dan Bakerc6ede892016-08-11 14:06:06 -0400937 if (shaderStageName)
938 suffix = shaderStageName;
John Kesseniche751bca2017-03-16 11:20:38 -0600939 else {
940 // Search for a suffix on a filename: e.g, "myfile.frag". If given
941 // the suffix directly, we skip looking for the '.'
942 if (parseSuffix) {
943 ext = name.rfind('.');
944 if (ext == std::string::npos) {
945 usage();
946 return EShLangVertex;
947 }
948 ++ext;
949 }
950 suffix = name.substr(ext, std::string::npos);
951 }
dankbaker45d49bc2016-08-08 21:43:07 -0400952
John Kessenich2b07c7e2013-07-31 18:44:13 +0000953 if (suffix == "vert")
954 return EShLangVertex;
955 else if (suffix == "tesc")
956 return EShLangTessControl;
957 else if (suffix == "tese")
958 return EShLangTessEvaluation;
959 else if (suffix == "geom")
960 return EShLangGeometry;
961 else if (suffix == "frag")
962 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +0000963 else if (suffix == "comp")
964 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000965
966 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +0000967 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +0000968}
969
John Kessenicha0af4732012-12-12 21:15:54 +0000970//
John Kessenichecba76f2017-01-06 00:34:48 -0700971// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +0000972// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +0000973//
John Kessenich51cdd902014-02-18 23:37:57 +0000974void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +0000975{
John Kessenichca3457f2015-05-18 01:59:45 +0000976 int ret = 0;
John Kessenich41cf6b52013-06-25 18:10:05 +0000977 char** shaderStrings = ReadFileData(fileName);
John Kessenichdb4cd542013-06-26 22:42:55 +0000978 if (! shaderStrings) {
979 usage();
John Kessenichdb4cd542013-06-26 22:42:55 +0000980 }
981
John Kessenich41cf6b52013-06-25 18:10:05 +0000982 int* lengths = new int[NumShaderStrings];
983
984 // move to length-based strings, rather than null-terminated strings
985 for (int s = 0; s < NumShaderStrings; ++s)
John Kessenich35f04bd2014-02-19 02:47:20 +0000986 lengths[s] = (int)strlen(shaderStrings[s]);
John Kessenich09da79e2013-04-17 19:34:23 +0000987
John Kessenichc999ba22013-11-07 23:33:24 +0000988 if (! shaderStrings) {
989 CompileFailed = true;
990 return;
991 }
John Kessenicha0af4732012-12-12 21:15:54 +0000992
John Kessenich52ac67e2013-05-05 23:46:22 +0000993 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000994 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -0700995
John Kessenich94a81fb2013-08-31 02:41:30 +0000996 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
997 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -0700998 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenichca3457f2015-05-18 01:59:45 +0000999 ret = ShCompile(compiler, shaderStrings, NumShaderStrings, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -07001000 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -07001001 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +00001002 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -07001003 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
1004 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +00001005 }
John Kessenicha0af4732012-12-12 21:15:54 +00001006
John Kessenich94a81fb2013-08-31 02:41:30 +00001007 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +00001008 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +00001009 }
John Kessenicha0af4732012-12-12 21:15:54 +00001010
John Kessenich41cf6b52013-06-25 18:10:05 +00001011 delete [] lengths;
1012 FreeFileData(shaderStrings);
John Kessenicha0af4732012-12-12 21:15:54 +00001013
John Kessenichc999ba22013-11-07 23:33:24 +00001014 if (ret == 0)
1015 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +00001016}
1017
John Kessenicha0af4732012-12-12 21:15:54 +00001018//
1019// print usage to stdout
1020//
1021void usage()
1022{
John Kessenich319de232013-12-04 04:43:40 +00001023 printf("Usage: glslangValidator [option]... [file]...\n"
1024 "\n"
John Kessenich0df0cde2015-03-03 17:09:43 +00001025 "Where: each 'file' ends in .<stage>, where <stage> is one of\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001026 " .conf to provide an optional config file that replaces the default configuration\n"
1027 " (see -c option below for generating a template)\n"
1028 " .vert for a vertex shader\n"
1029 " .tesc for a tessellation control shader\n"
1030 " .tese for a tessellation evaluation shader\n"
1031 " .geom for a geometry shader\n"
1032 " .frag for a fragment shader\n"
1033 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +00001034 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +00001035 "Compilation warnings and errors will be printed to stdout.\n"
John Kessenich319de232013-12-04 04:43:40 +00001036 "\n"
John Kessenich4586dbd2013-08-05 15:52:03 +00001037 "To get other information, use one of the following options:\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001038 "Each option must be specified separately.\n"
1039 " -V create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
1040 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001041 " -G create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
1042 " default file name is <stage>.spv (-o overrides this)\n"
1043 " -H print human readable form of SPIR-V; turns on -V\n"
John Kessenich971a0a82017-06-07 15:06:58 -06001044 " -I<dir> add dir to the include search path; includer's directory\n"
1045 " is searched first, followed by left-to-right order of -I\n"
Andrew Woloszynaae1ad82015-06-24 17:00:46 -04001046 " -E print pre-processed GLSL; cannot be used with -l;\n"
1047 " errors will appear on stderr.\n"
John Kesseniche751bca2017-03-16 11:20:38 -06001048 " -S <stage> uses specified stage rather than parsing the file extension\n"
1049 " valid choices for <stage> are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001050 " -c configuration dump;\n"
1051 " creates the default configuration file (redirect to a .conf file)\n"
John Kessenicha86836e2016-07-09 14:50:57 -06001052 " -C cascading errors; risks crashes from accumulation of error recoveries\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001053 " -d default to desktop (#version 110) when there is no shader #version\n"
1054 " (default is ES version 100)\n"
John Kessenich66e2faf2016-03-12 18:34:36 -07001055 " -D input is HLSL\n"
John Kessenich4d65ee32016-03-12 18:17:47 -07001056 " -e specify entry-point name\n"
John Kessenich121853f2017-05-31 17:11:16 -06001057 " -g generate debug information\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001058 " -h print this usage message\n"
1059 " -i intermediate tree (glslang AST) is printed out\n"
1060 " -l link all input files together to form a single module\n"
1061 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05001062 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001063 " -q dump reflection query database\n"
1064 " -r relaxed semantic error-checking mode\n"
1065 " -s silent mode\n"
1066 " -t multi-threaded mode\n"
1067 " -v print version strings\n"
1068 " -w suppress warnings (except as required by #extension : warn)\n"
Johannes van Waveren1fd01752016-05-31 08:39:41 -05001069 " -x save 32-bit hexadecimal numbers as text, requires a binary option (e.g., -V)\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001070 "\n"
1071 " --shift-sampler-binding [stage] num set base binding number for samplers\n"
1072 " --ssb [stage] num synonym for --shift-sampler-binding\n"
1073 "\n"
1074 " --shift-texture-binding [stage] num set base binding number for textures\n"
1075 " --stb [stage] num synonym for --shift-texture-binding\n"
1076 "\n"
steve-lunarg9088be42016-11-01 10:31:42 -06001077 " --shift-image-binding [stage] num set base binding number for images (uav)\n"
1078 " --sib [stage] num synonym for --shift-image-binding\n"
1079 "\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001080 " --shift-UBO-binding [stage] num set base binding number for UBOs\n"
steve-lunargbe283552017-04-18 12:18:01 -06001081 " --shift-cbuffer-binding [stage] num synonym for --shift-UBO-binding\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001082 " --sub [stage] num synonym for --shift-UBO-binding\n"
1083 "\n"
steve-lunarg932bb5c2017-02-21 17:19:08 -07001084 " --shift-ssbo-binding [stage] num set base binding number for SSBOs\n"
1085 " --sbb [stage] num synonym for --shift-ssbo-binding\n"
1086 "\n"
Hyangran Park36dc8292017-05-02 16:27:29 +09001087 " --resource-set-binding [stage] num set descriptor set and binding number for resources\n"
1088 " --rsb [stage] type set binding synonym for --resource-set-binding\n"
1089 "\n"
steve-lunargbe283552017-04-18 12:18:01 -06001090 " --shift-uav-binding [stage] num set base binding number for UAVs\n"
1091 " --suavb [stage] num synonym for --shift-uav-binding\n"
1092 "\n"
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001093 " --auto-map-bindings automatically bind uniform variables without\n"
1094 " explicit bindings.\n"
1095 " --amb synonym for --auto-map-bindings\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -06001096 "\n"
John Kessenich71facdf2017-05-17 18:28:19 -06001097 " --auto-map-locations automatically locate input/output lacking 'location'\n"
1098 " (fragile, not cross stage: recommend explicit\n"
1099 " 'location' use in shader)\n"
1100 " --aml synonym for --auto-map-locations\n"
1101 "\n"
steve-lunargbc9b7652016-09-29 08:43:22 -06001102 " --flatten-uniform-arrays flatten uniform texture & sampler arrays to scalars\n"
steve-lunarge0b9deb2016-09-16 13:26:37 -06001103 " --fua synonym for --flatten-uniform-arrays\n"
steve-lunargcce8d482016-10-14 18:36:42 -06001104 "\n"
1105 " --no-storage-format use Unknown image format\n"
1106 " --nsf synonym for --no-storage-format\n"
steve-lunargf1e0c872016-10-31 15:13:43 -06001107 "\n"
1108 " --source-entrypoint name the given shader source function is renamed to be the entry point given in -e\n"
1109 " --sep synonym for --source-entrypoint\n"
John Kessenich906cc212016-12-09 19:22:20 -07001110 "\n"
1111 " --keep-uncalled don't eliminate uncalled functions when linking\n"
1112 " --ku synonym for --keep-uncalled\n"
John Kessenich4f1403e2017-04-05 17:38:20 -06001113 "\n"
1114 " --variable-name <name> Creates a C header file that contains a uint32_t array named <name>\n"
1115 " initialized with the shader binary code.\n"
1116 " --vn <name> synonym for --variable-name <name>\n"
1117 "\n"
1118 " --hlsl-offsets Allow block offsets to follow HLSL rules instead of GLSL rules.\n"
1119 " Works independently of source language.\n"
steve-lunargbe283552017-04-18 12:18:01 -06001120 "\n"
1121 " --hlsl-iomap Perform IO mapping in HLSL register space.\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001122 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001123
1124 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001125}
1126
John Kessenich3ce4e592014-10-06 19:57:34 +00001127#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001128
1129#include <errno.h>
1130
1131int fopen_s(
1132 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001133 const char* filename,
1134 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001135)
1136{
1137 if (!pFile || !filename || !mode) {
1138 return EINVAL;
1139 }
1140
1141 FILE* f = fopen(filename, mode);
1142 if (! f) {
1143 if (errno != 0) {
1144 return errno;
1145 } else {
1146 return ENOENT;
1147 }
1148 }
1149 *pFile = f;
1150
1151 return 0;
1152}
1153
1154#endif
1155
John Kessenicha0af4732012-12-12 21:15:54 +00001156//
1157// Malloc a string of sufficient size and read a string into it.
1158//
John Kessenichecba76f2017-01-06 00:34:48 -07001159char** ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001160{
John Kessenichb3297152015-07-11 18:01:03 -06001161 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001162 int errorCode = fopen_s(&in, fileName, "r");
John Kessenichd6c72a42014-08-18 19:42:35 +00001163
John Kessenicha0af4732012-12-12 21:15:54 +00001164 int count = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001165 const int maxSourceStrings = 5; // for testing splitting shader/tokens across multiple strings
1166 char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1)); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001167
John Kessenich68d78fd2015-07-12 19:28:10 -06001168 if (errorCode || in == nullptr)
1169 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001170
John Kessenicha0af4732012-12-12 21:15:54 +00001171 while (fgetc(in) != EOF)
1172 count++;
1173
John Kessenichd6c72a42014-08-18 19:42:35 +00001174 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001175
John Kessenichb3297152015-07-11 18:01:03 -06001176 char *fdata = (char*)malloc(count+2); // freed before return of this function
John Kessenich68d78fd2015-07-12 19:28:10 -06001177 if (! fdata)
1178 Error("can't allocate memory");
1179
John Kessenichb3297152015-07-11 18:01:03 -06001180 if ((int)fread(fdata, 1, count, in) != count) {
John Kessenichb3297152015-07-11 18:01:03 -06001181 free(fdata);
John Kessenich68d78fd2015-07-12 19:28:10 -06001182 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001183 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001184
John Kessenicha0af4732012-12-12 21:15:54 +00001185 fdata[count] = '\0';
1186 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001187
John Kessenichea869fb2013-10-28 18:12:06 +00001188 if (count == 0) {
John Kessenichb3297152015-07-11 18:01:03 -06001189 // recover from empty file
1190 return_data[0] = (char*)malloc(count+2); // freed in FreeFileData()
John Kessenicha0af4732012-12-12 21:15:54 +00001191 return_data[0][0]='\0';
John Kessenichea869fb2013-10-28 18:12:06 +00001192 NumShaderStrings = 0;
John Kessenichb3297152015-07-11 18:01:03 -06001193 free(fdata);
John Kessenicha0af4732012-12-12 21:15:54 +00001194
John Kessenichb3297152015-07-11 18:01:03 -06001195 return return_data;
1196 } else
1197 NumShaderStrings = 1; // Set to larger than 1 for testing multiple strings
1198
1199 // compute how to split up the file into multiple strings, for testing multiple strings
John Kessenichd6c72a42014-08-18 19:42:35 +00001200 int len = (int)(ceil)((float)count/(float)NumShaderStrings);
John Kessenichb3297152015-07-11 18:01:03 -06001201 int ptr_len = 0;
1202 int i = 0;
1203 while (count > 0) {
1204 return_data[i] = (char*)malloc(len + 2); // freed in FreeFileData()
1205 memcpy(return_data[i], fdata + ptr_len, len);
1206 return_data[i][len] = '\0';
1207 count -= len;
1208 ptr_len += len;
1209 if (count < len) {
1210 if (count == 0) {
1211 NumShaderStrings = i + 1;
John Kessenicha0af4732012-12-12 21:15:54 +00001212 break;
1213 }
John Kessenichb3297152015-07-11 18:01:03 -06001214 len = count;
John Kessenichecba76f2017-01-06 00:34:48 -07001215 }
John Kessenichd6c72a42014-08-18 19:42:35 +00001216 ++i;
1217 }
John Kessenichb3297152015-07-11 18:01:03 -06001218
1219 free(fdata);
1220
John Kessenicha0af4732012-12-12 21:15:54 +00001221 return return_data;
1222}
1223
John Kessenich51cdd902014-02-18 23:37:57 +00001224void FreeFileData(char** data)
John Kessenicha0af4732012-12-12 21:15:54 +00001225{
John Kessenichb3297152015-07-11 18:01:03 -06001226 for(int i = 0; i < NumShaderStrings; i++)
John Kessenicha0af4732012-12-12 21:15:54 +00001227 free(data[i]);
John Kessenichb3297152015-07-11 18:01:03 -06001228
1229 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001230}
1231
John Kessenich54d8cda2013-02-11 22:36:01 +00001232void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001233{
John Kessenichfae38ee2015-06-10 23:23:12 +00001234 if (num >= 0 )
1235 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1236 else
1237 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001238}