John Kessenich [Fri, 31 Jul 2015 23:38:27 +0000 (17:38 -0600)]
Merge pull request #45 from google/source-string-name
Add mechanism for specifying names for source strings.
Lei Zhang [Tue, 21 Jul 2015 14:23:43 +0000 (10:23 -0400)]
Add mechanism for specifying names for source strings.
Expose a new method setStringsWithLengthsAndNames() in the interface
which allows the caller to set descriptive names for source strings.
These names can be used in error messages.
John Kessenich [Wed, 29 Jul 2015 01:01:16 +0000 (19:01 -0600)]
Non-functional: Slight change to the Google #include implementation to separate it from AEP.
John Kessenich [Wed, 29 Jul 2015 00:55:44 +0000 (18:55 -0600)]
Merge pull request #43 from google/cpp-style-line-directive
Extend the syntax of #line and __FILE__ to support filename strings.
The implementation is done via introducing a new extension
GL_GOOGLE_cpp_style_line_directive using the extension framework.
The purpose is to support cpp-style #line directives, which is
required by #include.
Lei Zhang [Tue, 28 Jul 2015 16:45:41 +0000 (12:45 -0400)]
Use const reference for TSourceLoc in interfaces.
Lei Zhang [Tue, 28 Jul 2015 15:59:24 +0000 (11:59 -0400)]
Use requireExtensions() to check extension and turn on more tests.
Use requireExtensions() to check GL_GOOGLE_cpp_style_line_directive
is turned on. Add register more tests for running.
Lei Zhang [Thu, 25 Jun 2015 21:53:54 +0000 (17:53 -0400)]
Extend the syntax of #line and __FILE__ to support filename strings.
According to the GLSL spec, the second parameter to #line should be
an integer source string number and __FILE__ will be substituted
with the integer source string number currently processed. This
patch extends the syntax of #line and __FILE__. Now #line accepts
as the second parameter a filename string quoted by double quotation
marks. And if such a #line is set, __FILE__ will be substituted with
the currently set filename string. The implementation is done via
introducing a new extension GL_GOOGLE_cpp_style_line_directive using
the extension framework.
The purpose is to support cpp-style #line directives, which is
required by #include.
John Kessenich [Mon, 27 Jul 2015 15:37:55 +0000 (09:37 -0600)]
Scanning: 1) rationalize end-of-input everywhere, 2) prevent infinite loop at end-of-input, 3) use positive chars.
Fixes issue #25. (char 255 aliased to -1 and missing tests for end of input).
1) All layers of input scanning now share a single EndOfInput value.
This avoids translation of it across layers of encapsulation.
2) Some places looking for end of line were not stopping on EndOfInput.
3) Use of "char" for the input made char values > 127 be negative numbers.
This allowed for aliasing of 255 to -1, etc. This is fixed by using
unsigned char.
John Kessenich [Sun, 26 Jul 2015 00:14:09 +0000 (18:14 -0600)]
Issue #39: Prevent problem of inserting a zero-length symbol after cascading errors.
John Kessenich [Sat, 25 Jul 2015 23:34:32 +0000 (17:34 -0600)]
Preprocessor: Allow '\' as a token, which gets actual use in #error, but should have no other use.
This is just for '\' that's not before a new line.
Note the specification says it has no use other than as line continuation,
but #error is a grey area. (There are no escape sequences.)
John Kessenich [Sat, 25 Jul 2015 20:02:53 +0000 (14:02 -0600)]
Consolidate all token length limits (1024), including one bad one (80) hardcoded on the stack (issue #40, issue #41).
John Kessenich [Sat, 25 Jul 2015 18:51:02 +0000 (12:51 -0600)]
Merge pull request #44 from fkaa/osx-const-key-fix
Fix missing const qualifier on TUnorderedMap template type
Felix Kaaman [Sat, 25 Jul 2015 14:31:50 +0000 (16:31 +0200)]
Fix missing const qualifier on TUnorderedMap template type
John Kessenich [Fri, 24 Jul 2015 21:15:55 +0000 (15:15 -0600)]
Portability: Make previous merge work with MSVS 2012.
John Kessenich [Fri, 24 Jul 2015 21:05:17 +0000 (15:05 -0600)]
Merge pull request #38 from google/preprocessing-line-number
Preprocessing line number handling
Lei Zhang [Thu, 9 Jul 2015 20:58:42 +0000 (16:58 -0400)]
DoPreprocessing() should consider source string change.
Everytime we switch to a new source string, the line are reset.
We need to reset lastLine and also output newlines appropriately.
Lei Zhang [Wed, 15 Jul 2015 15:41:20 +0000 (11:41 -0400)]
Create a new class to keep track of line number in preprocessor.
SourceLineSynchronizer is added for keeping track of the last
line number and output newlines appropriately if we switch to
a new line in the preprocessor.
John Kessenich [Thu, 23 Jul 2015 16:25:20 +0000 (10:25 -0600)]
AST -> SPV testing: Update test for using new TbdFunctionality() that is non-fatal and uniquifies printed TBDs.
John Kessenich [Thu, 23 Jul 2015 16:22:48 +0000 (10:22 -0600)]
AST -> SPV: Add basic atomic_uint and atomic*() built-in function functionality.
John Kessenich [Thu, 23 Jul 2015 01:58:15 +0000 (19:58 -0600)]
Front-end atomics: Finish adding atomic built-in functions (non-image) into the AST.
John Kessenich [Wed, 22 Jul 2015 22:39:12 +0000 (16:39 -0600)]
Todo.txt: Added key, including notation for who's working on something.
John Kessenich [Wed, 22 Jul 2015 22:36:38 +0000 (16:36 -0600)]
Update Todo.txt.
John Kessenich [Wed, 22 Jul 2015 21:24:53 +0000 (15:24 -0600)]
Portability: Remove unneeded "= default" to work with older compilers.
John Kessenich [Wed, 22 Jul 2015 21:20:54 +0000 (15:20 -0600)]
Merge pull request #31 from google/explicit-extension-directive
Only output explicit extension directives in preprocessing.
John Kessenich [Wed, 22 Jul 2015 17:44:59 +0000 (11:44 -0600)]
Issue 32: Guard against constructors consuming unsized arrays.
John Kessenich [Wed, 22 Jul 2015 17:39:29 +0000 (11:39 -0600)]
Merge pull request #33 from google/spv-builder-loop-ctor-inits-all-members
spv::Builder::Loop constructor inits all members.
David Neto [Fri, 17 Jul 2015 21:11:22 +0000 (17:11 -0400)]
spv::Builder::Loop constructor inits all members.
After construction, the Loop is effectively const.
This perturbs the IDs in SPIR-V tests because the body block
is created before generating any of the loop code, rather than
only when the body is first referenced.
John Kessenich [Tue, 21 Jul 2015 22:00:34 +0000 (16:00 -0600)]
Issue #28: Correctly handle a single input argument conversion when the input argument is an aggregate.
Lei Zhang [Thu, 16 Jul 2015 22:34:55 +0000 (18:34 -0400)]
Only output explicit extension directives in preprocessing.
Preprocessing output shouldn't contain extensions enabled as
dependencies.
John Kessenich [Tue, 21 Jul 2015 20:35:39 +0000 (14:35 -0600)]
Issue #26: Detect empty array constructors, require at least on operand.
John Kessenich [Tue, 21 Jul 2015 06:07:52 +0000 (00:07 -0600)]
g++: Fix compilation issue with templates in g++.
John Kessenich [Tue, 21 Jul 2015 05:59:32 +0000 (23:59 -0600)]
Perf: Put in a portable std::hash that works with the pool. This turns on the 10-15% perf gain.
John Kessenich [Tue, 21 Jul 2015 04:34:49 +0000 (22:34 -0600)]
SPV: Make previous commit compile with MSVC 2012.
John Kessenich [Tue, 21 Jul 2015 04:14:38 +0000 (22:14 -0600)]
Merge pull request #22 from google/structured-do-while
Generate correctly structured do-while loops.
John Kessenich [Mon, 20 Jul 2015 18:29:41 +0000 (12:29 -0600)]
Preprocessor: Prevent (and give an error on) expression division by 0.
John Kessenich [Mon, 20 Jul 2015 18:03:04 +0000 (12:03 -0600)]
Tests: Increase testing around incorrect use of block names and instances.
John Kessenich [Mon, 20 Jul 2015 17:35:51 +0000 (11:35 -0600)]
Front end: Prevent use of a block name, which has no other use in a shader.
John Kessenich [Mon, 20 Jul 2015 08:06:22 +0000 (02:06 -0600)]
Fix g++ build break (portibility problems with stl hash). This partly turns off the stl improvements.
It also removes some old code that ancient compilers used to need.
However, the main issue is getting access to hash functions for
unordered_map in portable way.
John Kessenich [Sun, 19 Jul 2015 21:49:03 +0000 (15:49 -0600)]
Preprocessor: 1) Rationalize the "fixed atom" scheme, 2) remove redundant lookups when the text is already available.
This simplification is a prelude to eliminating what I appear unnecessary
symbol inserts into tables when tokenizing in the preprecessor, which
show up as taking notable time. (Performance issue.) It also simply makes
the preprocessor easier to understand, which it is badly in need of.
John Kessenich [Sun, 19 Jul 2015 04:34:27 +0000 (22:34 -0600)]
Performance: Simple upgrade/cleanup of stl c++11 containers (10% perf. increase).
John Kessenich [Sat, 18 Jul 2015 17:25:54 +0000 (11:25 -0600)]
Building: Fix a couple of new warnings.
John Kessenich [Sat, 18 Jul 2015 17:13:14 +0000 (11:13 -0600)]
Front-end: Add error-recovery code for a switch statement that ends with a case/default that has no statements.
David Neto [Wed, 15 Jul 2015 20:21:26 +0000 (16:21 -0400)]
Generate correctly structured do-while loops.
The loop test is always emitted before the loop body.
For do-while loops, use a phi node to track whether we're
on the first loop iteration, and only check the loop test
on the second and subsequent iterations.
For do-while loops, the loop test branch no longer occurs
at the top of the loop, so it must get its own selection
merge instruction.
A block can't be the target of more than one merge instruction.
So when the loop test executes after the body (as in do-while in GLSL)
we need to introduce a dummy block to be the target of the selection
merge just before the loop test conditional branch.
The other arm of the branch exits the loop and hence is the
"break block" exception in the structured control flow rules.
John Kessenich [Fri, 17 Jul 2015 17:51:56 +0000 (11:51 -0600)]
Merge pull request #21 from google/allow_non_null_strings
Added a setStringsWithLengths() method to TShader.
John Kessenich [Fri, 17 Jul 2015 17:45:31 +0000 (11:45 -0600)]
Merge pull request #20 from google/remove_exception
Removed the single usage of exceptions in all of glslang.
Andrew Woloszyn [Thu, 16 Jul 2015 13:48:47 +0000 (09:48 -0400)]
Added a setStringsWithLengths() method to TShader.
This allows us to pass through non null-terminated strings.
Andrew Woloszyn [Fri, 10 Jul 2015 20:11:00 +0000 (16:11 -0400)]
Removed the single usage of exceptions in all of glslang.
John Kessenich [Thu, 16 Jul 2015 01:42:59 +0000 (19:42 -0600)]
Front-end: Implement GL_OES_gpu_shader5.
John Kessenich [Wed, 15 Jul 2015 21:06:39 +0000 (15:06 -0600)]
Merge pull request #18 from srk-lunarg/v30_static_analysis_fixes
Comment out some dead assignments per suggestion from static analysis…
Steve [Wed, 15 Jul 2015 20:34:35 +0000 (14:34 -0600)]
Comment out some dead assignments per suggestion from static analysis tools.
Code is left in as comments for clarity to humans.
John Kessenich [Wed, 15 Jul 2015 20:03:33 +0000 (14:03 -0600)]
Merge pull request #17 from google/non-existing-string
Protect location setting methods from writing to non-existing strings.
Lei Zhang [Fri, 10 Jul 2015 15:18:47 +0000 (11:18 -0400)]
Protect location setting methods from writing to non-existing strings.
TInputScanner advances its internal indices to the next character at
the end of get(), which means, after reading in the last character
in the user-provided shader string, internal index (currentSource)
will point to the next shader string (currentSource == numSources),
which doesn't exist. Then if a location setting method is called,
we will write to some out-of-bound memory.
A test case for this is "#line 10000\n". The eval() method in CPPline()
will evaluate 10000, but at the same time it reads in the next
token, '\n', and the currentSource will be numSources in TInputScanner.
Then a parseContext.setCurrentLine() is called, we are writing to
out-of-bound memory. Another test case will be "#line 10000 0\n".
John Kessenich [Wed, 15 Jul 2015 16:03:39 +0000 (10:03 -0600)]
Include specification revision as part of the version string.
John Kessenich [Wed, 15 Jul 2015 01:36:29 +0000 (19:36 -0600)]
Merge pull request #16 from google/pp-directive
Preprocessing directive handling
John Kessenich [Wed, 15 Jul 2015 01:30:11 +0000 (19:30 -0600)]
Front-end: enforce qualifiers that cannot appear on block declarations.
Also seems to pick up some white-space (line-ending) test differences with a
prevoius checkin.
John Kessenich [Tue, 14 Jul 2015 21:33:38 +0000 (15:33 -0600)]
Fix compile errors: about 25 .PpError didn't compile, need to be .ppError.
John Kessenich [Tue, 14 Jul 2015 21:29:13 +0000 (15:29 -0600)]
Merge pull request #15 from google/preprocessing-error
Added error output to the preprocessor.
This patch distinguishes preprocessing errors with normal parsing
errors and gives glslangValidator the ability to output preprocessing
errors.
Andrew Woloszyn [Wed, 24 Jun 2015 21:00:46 +0000 (17:00 -0400)]
Added error output to the preprocessor.
This patch distinguishes preprocessing errors with normal parsing
errors and gives glslangValidator the ability to output preprocessing
errors.
Lei Zhang [Fri, 3 Jul 2015 05:35:26 +0000 (01:35 -0400)]
Remove uncessary line break.
We output empty lines before processing non-whitespace tokens,
not after done processing them.
Lei Zhang [Sun, 5 Jul 2015 02:30:59 +0000 (22:30 -0400)]
Fix empty line handling in line directive callback.
The current line number for the #line directive should be passed
in as parameter to the line directive callback. Without it, we
don't know how many empty lines we should output.
Lei Zhang [Fri, 3 Jul 2015 05:25:47 +0000 (01:25 -0400)]
Fix line number handling in line directive callback.
The line argument passed into the lineCallback function is the
literal value of the first argument of the #line directive.
lastLine in DoPreprocessing() should be updated taking into
consideration the different definitions for #line between specs.
Add a test to reveal the bug.
John Kessenich [Tue, 14 Jul 2015 18:30:26 +0000 (12:30 -0600)]
Merge pull request #14 from google/extensionturnedon
Simplify function calls for extensionsTurnedOn().
Lots of places in the code use extensionsTurnedOn(1, ...). This
patch introduces a new method, extensionTurnedOn(), for testing
if a single extension is turned on.
John Kessenich [Tue, 14 Jul 2015 18:25:55 +0000 (12:25 -0600)]
Merge pull request #11 from baldurk/size-t-int-warning-fixes
Fix warnings compiling on x64 with size_t to int casts
Lei Zhang [Sun, 5 Jul 2015 21:48:53 +0000 (17:48 -0400)]
Simplify function calls for extensionsTurnedOn().
Lots of places in the code use extensionsTurnedOn(1, ...). This
patch introduces a new method, extensionTurnedOn(), for testing
if a single extension is turned on.
John Kessenich [Mon, 13 Jul 2015 17:41:06 +0000 (11:41 -0600)]
Update readme to point to Khronos landing page.
John Kessenich [Mon, 13 Jul 2015 01:39:51 +0000 (19:39 -0600)]
Fix incorrect used of snprintf()
John Kessenich [Mon, 13 Jul 2015 01:28:10 +0000 (19:28 -0600)]
Updated command-line options, adding -o for saving binaries, -G for OpenGL SPIR-V validation, -v etc.
Old uses should still work as they did before.
Also encapsulated use of these flags during parsing, for the parse context.
Added SPIR-V version to -v.
baldurk [Sun, 12 Jul 2015 09:32:58 +0000 (11:32 +0200)]
on x64, size_t is 64-bit and int is 32-bit, so needs an explicit cast
John Kessenich [Sun, 12 Jul 2015 00:01:03 +0000 (18:01 -0600)]
Fix clang static analyzer issues, as reported by floooh.
John Kessenich [Sat, 11 Jul 2015 22:41:38 +0000 (16:41 -0600)]
Merge pull request #4 from baldurk/relative-include-paths
include by relative path, so root doesn't need to be in the search path
John Kessenich [Sat, 11 Jul 2015 22:36:08 +0000 (16:36 -0600)]
Merge pull request #5 from floooh/fix-clang-warnings
Fix for most Xcode/clang warnings on OSX
John Kessenich [Sat, 11 Jul 2015 19:37:02 +0000 (13:37 -0600)]
Add some missing 'const' and texture-op guards, for future change to enum-based texture calls.
The infrastructure is in place to not do text comparisons for "texture" ... for deducing type of
texture call. But, it is not yet turned on, as it could break some consumers. Am soliciting
any feedback on that.
See in Initialize.cpp: const bool PureOperatorBuiltins = false; // could break backward compatibility; pending feedback
Andre Weissflog [Sat, 11 Jul 2015 12:45:57 +0000 (14:45 +0200)]
Fix most clang warnings
- member initializing order in some constructors
- missing default branches in switch-case
- uninitialized variable if switch-case default (uncritical because
program would exit)
- && and || brace warnings in if()
baldurk [Wed, 8 Jul 2015 13:11:59 +0000 (15:11 +0200)]
include by relative path, so root doesn't need to be in the search path
John Kessenich [Tue, 7 Jul 2015 06:53:26 +0000 (00:53 -0600)]
Linux build: fix case problem with new file.
John Kessenich [Tue, 7 Jul 2015 03:02:26 +0000 (21:02 -0600)]
Clear up a C++ compile warning
John Kessenich [Tue, 7 Jul 2015 01:08:03 +0000 (19:08 -0600)]
Front-end: move to rational internal array-of-array interfaces and design. (A-of-A is not yet implemented though.)
John Kessenich [Mon, 6 Jul 2015 20:17:11 +0000 (14:17 -0600)]
docs: Update missing features list
John Kessenich [Sat, 4 Jul 2015 23:17:31 +0000 (17:17 -0600)]
glslang -> SPIR-V: smear scalars for integer (scalar * vector). OpVectorTimesScalar is only for floats.
John Kessenich [Fri, 3 Jul 2015 15:24:46 +0000 (09:24 -0600)]
Use E_ prefix instead of _ for distinguishing extension strings from glext.h
John Kessenich [Fri, 3 Jul 2015 15:15:03 +0000 (09:15 -0600)]
Merge pull request #2 from nwnk/glext-compatibility
Fix incompatibility with <GL/glext.h>
John Kessenich [Fri, 3 Jul 2015 15:12:50 +0000 (09:12 -0600)]
Merge pull request #3 from fkaa/include-fix
Fix SPV include directives depending on root folder name
Felix Kaaman [Thu, 2 Jul 2015 13:25:23 +0000 (15:25 +0200)]
Fix include directive depending on root folder name
Adam Jackson [Tue, 30 Jun 2015 14:11:38 +0000 (10:11 -0400)]
Fix incompatibility with <GL/glext.h>
New extensions in glext.h follow the pattern:
#ifndef GL_ARB_texture_rectangle
#define GL_ARB_texture_rectangle 1
#define GL_TEXTURE_RECTANGLE_ARB 0x84F5
#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6
#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7
#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8
#endif /* GL_ARB_texture_rectangle */
Versions.h tries to declare:
const char* const GL_ARB_texture_rectangle = "GL_ARB_texture_rectangle";
Which means, if you've included glext.h before Versions.h, that the
compiler will see "const char* const 1 = ...", and rightly refuse to
continue.
The ham-fisted approach taken here is to rename the variables in
Versions.h with a leading underscore. This does sort of undermine the
comment about "better to have the compiler do spelling checks", but.
Signed-off-by: Adam Jackson <ajax@redhat.com>
John Kessenich [Mon, 29 Jun 2015 23:19:17 +0000 (17:19 -0600)]
Make double underscore "__" an error for ES 300, but a warning for 310.
The 310 spec (and desktop specs) have clarified this is a waring, not an
error, but 300 tests still expect an error.
John Kessenich [Mon, 29 Jun 2015 16:42:27 +0000 (10:42 -0600)]
Building README: Update to CMake information.
John Kessenich [Mon, 29 Jun 2015 16:30:13 +0000 (10:30 -0600)]
Merge pull request #1 from antiagainst/markdown-readme
Format README using markdown.
Lei Zhang [Sat, 27 Jun 2015 22:43:26 +0000 (18:43 -0400)]
Format README using markdown.
John Kessenich [Fri, 26 Jun 2015 22:58:36 +0000 (16:58 -0600)]
Final round for line endings.
John Kessenich [Fri, 26 Jun 2015 22:42:50 +0000 (16:42 -0600)]
Second round line ending clean up, from fresh round trip.
John Kessenich [Fri, 26 Jun 2015 22:29:10 +0000 (16:29 -0600)]
Add .gitattributes and normalize a few stray file's line endings
John Kessenich [Fri, 26 Jun 2015 18:24:28 +0000 (12:24 -0600)]
Make the "switch-label not followed by statement" warning an error, depending on version.
John Kessenich [Fri, 26 Jun 2015 16:48:26 +0000 (10:48 -0600)]
Add +x to two more scripts.
John Kessenich [Fri, 26 Jun 2015 06:40:05 +0000 (00:40 -0600)]
Add +x to two executables.
johnkslang [Fri, 26 Jun 2015 06:12:31 +0000 (00:12 -0600)]
Make smoother use in GitHub
+x bison.exe, remove some extra files in runtests, and ignore more
created files.
John Kessenich [Wed, 24 Jun 2015 16:05:50 +0000 (16:05 +0000)]
glslang build: force the use of -std=c++11 when building with Clang. David Neto <dneto@google.com>.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31583
e7fa87d3-cd2b-0410-9028-
fcbf551c1848
John Kessenich [Tue, 23 Jun 2015 04:14:00 +0000 (04:14 +0000)]
glslang front-end: Implement AEP *_point_size extensions.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31560
e7fa87d3-cd2b-0410-9028-
fcbf551c1848
John Kessenich [Fri, 19 Jun 2015 23:03:32 +0000 (23:03 +0000)]
glslang front-end: Full turn-on of AEP tessellation semantics.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31538
e7fa87d3-cd2b-0410-9028-
fcbf551c1848
John Kessenich [Fri, 19 Jun 2015 06:28:59 +0000 (06:28 +0000)]
glslang: Finish turn on of AEP geometry shaders for ES 3.1.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31532
e7fa87d3-cd2b-0410-9028-
fcbf551c1848
John Kessenich [Fri, 19 Jun 2015 05:14:19 +0000 (05:14 +0000)]
glslang front-end: Don't emit blank lines for empty info logs. From Andrew Woloszyn <awoloszyn@google.com>.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31531
e7fa87d3-cd2b-0410-9028-
fcbf551c1848