index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
glsl
/
glcpp
/
glcpp-lex.l
Commit message (
Expand
)
Author
Age
Files
Lines
*
glcpp: Don't use alternation in the lookahead for empty pragmas.
Carl Worth
2014-08-22
1
-2
/
+8
*
glsl/glcpp: Don't include any newline characters in #error token
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Treat CR+LF pair as a single newline
Carl Worth
2014-08-07
1
-5
/
+6
*
glsl/glcpp: Swallow empty #pragma directives.
Carl Worth
2014-08-07
1
-0
/
+6
*
glsl/glcpp: Fix #pragma to not over-increment the line-number count
Carl Worth
2014-08-07
1
-2
/
+0
*
glsl/glcpp: Fix NULL directives when followed by a single-line comment
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Allow single-line comments immediately after #define
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Add explicit error for "#define without macro name"
Carl Worth
2014-08-07
1
-3
/
+3
*
glsl/glcpp: rename ERROR to ERROR_TOKEN to fix MSVC build
Brian Paul
2014-07-30
1
-1
/
+1
*
glsl/glcpp: Add flex options to eliminate the default rule.
Carl Worth
2014-07-29
1
-1
/
+2
*
glsl/glcpp: Combine the two rules matching any character
Carl Worth
2014-07-29
1
-6
/
+6
*
glsl/glcpp: Alphabetize lists of start conditions
Carl Worth
2014-07-29
1
-3
/
+3
*
glsl/glcpp: Add a catch-all rule for unexpected characters.
Carl Worth
2014-07-29
1
-0
/
+13
*
glsl/glcpp: Treat carriage return as equivalent to line feed.
Carl Worth
2014-07-29
1
-9
/
+8
*
glsl/glcpp: Add (non)-support for ++ and -- operators
Carl Worth
2014-07-29
1
-0
/
+8
*
glsl/glcpp: Drop the HASH_ prefix from token names like HASH_IF
Carl Worth
2014-07-29
1
-13
/
+13
*
glsl/glcpp: Correctly parse directives with intervening comments
Carl Worth
2014-07-29
1
-42
/
+120
*
glsl/glcpp: Rename HASH token to HASH_TOKEN
Carl Worth
2014-07-29
1
-1
/
+1
*
glsl/glcpp: Don't use start-condition stack when switching to/from <DEFINE>
Carl Worth
2014-07-29
1
-3
/
+3
*
glsl/glcpp: Fix off-by-one error in column in first-line error messages
Carl Worth
2014-07-29
1
-1
/
+1
*
glsl/glcpp: Stop using a lexer start condition (<SKIP>) for token skipping.
Carl Worth
2014-07-29
1
-63
/
+97
*
glsl/glcpp: Abstract a bit of common code for returning string tokens
Carl Worth
2014-07-29
1
-22
/
+18
*
glsl/glcpp: Drop extra, final newline from most output
Carl Worth
2014-07-29
1
-38
/
+49
*
glsl/glcpp: Add testing for EOF sans newline (and fix for <DEFINE>, <COMMENT>)
Carl Worth
2014-07-29
1
-2
/
+5
*
glsl/glcpp: Remove some un-needed calls to NEWLINE_CATCHUP
Carl Worth
2014-07-29
1
-4
/
+0
*
glsl/glcpp: Add support for comments between #define and macro identifier
Carl Worth
2014-07-29
1
-2
/
+36
*
glsl/glcpp: Emit proper error for #define with a non-identifier
Carl Worth
2014-07-29
1
-0
/
+6
*
glsl/glcpp: Fix to emit spaces following directives
Carl Worth
2014-07-29
1
-0
/
+1
*
glsl/glcpp: Don't choke on an empty pragma
Carl Worth
2014-07-09
1
-1
/
+1
*
glsl/glcpp: Fix glcpp to properly lex entire "preprocessing numbers"
Carl Worth
2014-07-09
1
-0
/
+6
*
glsl/glcpp: Fix glcpp to catch garbage after #if 1 ... #else
Carl Worth
2014-07-09
1
-12
/
+13
*
glcpp: Do not remove spaces to preserve locations.
Sir Anthony
2014-03-08
1
-1
/
+1
*
glsl: Update lexers in glsl and glcpp to hande end position of token.
Sir Anthony
2014-03-08
1
-1
/
+2
*
glcpp: Don't enter lexer's NEWLINE_CATCHUP start state for single-line comments
Carl Worth
2014-01-31
1
-2
/
+0
*
glcpp: Replace multi-line comment with a space (even as part of macro definit...
Carl Worth
2014-01-02
1
-5
/
+33
*
glcpp: Add a more descriptive comment for the SKIP state manipulation
Carl Worth
2014-01-02
1
-5
/
+36
*
glcpp: Reject token pasting operator in GLES
Matt Turner
2013-01-11
1
-0
/
+2
*
glcpp: Support #elif(expression) with no intervening space.
Matt Turner
2012-11-28
1
-1
/
+1
*
glcpp: Reject #version and #line not followed by whitespace
Matt Turner
2012-11-28
1
-2
/
+2
*
glcpp: Don't use infinite lookhead for #define differentiation.
Kenneth Graunke
2012-10-25
1
-6
/
+14
*
glsl: glcpp: Move handling of #line directives from lexer to parser.
Carl Worth
2012-06-26
1
-35
/
+14
*
glcpp: Fix so that trailing punctuation does not prevent macro expansion
Carl Worth
2012-02-02
1
-1
/
+9
*
glsl: Define YY_NO_UNISTD_H on MSVC.
José Fonseca
2011-03-04
1
-0
/
+4
*
glcpp: Remove trailing contexts from #if rules.
Kenneth Graunke
2011-03-03
1
-6
/
+6
*
glcpp: Rework lexer to use a SKIP state rather than REJECT.
Kenneth Graunke
2011-03-03
1
-21
/
+16
*
Convert everything from the talloc API to the ralloc API.
Kenneth Graunke
2011-01-31
1
-7
/
+7
*
glcpp: Return NEWLINE token for newlines inside multi-line comments.
Kenneth Graunke
2010-10-21
1
-2
/
+2
*
glcpp: Fix handling of "#line 0"
Carl Worth
2010-08-23
1
-2
/
+3
*
glcpp: Fix source numbers set with "#line LINE_NUMBER SOURCE_NUMBER"
Carl Worth
2010-08-23
1
-2
/
+7
*
glcpp: Add basic #line support (adapted from the main compiler).
Kenneth Graunke
2010-08-18
1
-0
/
+31
[next]