index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
glcpp: Add line locations to "Unterminated #if" error message.
Kenneth Graunke
2010-06-21
2
-6
/
+10
*
glcpp: Add line locations to various mismatched #if error messages.
Kenneth Graunke
2010-06-21
1
-11
/
+11
*
glcpp: Add line locations to "reserved name" error messages.
Kenneth Graunke
2010-06-21
1
-8
/
+13
*
glcpp: Print locations in error messages where possible.
Kenneth Graunke
2010-06-21
1
-7
/
+7
*
glcpp: Introduce new glcpp_error function.
Kenneth Graunke
2010-06-21
3
-2
/
+18
*
glcpp: Set locations on tokens.
Kenneth Graunke
2010-06-21
2
-9
/
+25
*
glcpp: Set line locations in the lexer.
Kenneth Graunke
2010-06-21
1
-4
/
+21
*
glcpp: Add plumbing to support line locations.
Kenneth Graunke
2010-06-21
3
-9
/
+21
*
glcpp: Add %error-verbose.
Kenneth Graunke
2010-06-21
1
-0
/
+1
*
glcpp: Actually support #ifdef and #ifndef.
Kenneth Graunke
2010-06-21
1
-0
/
+10
*
glcpp: Build a reentrant parser.
Kenneth Graunke
2010-06-21
3
-13
/
+15
*
glcpp: Print errors on stdout instead of stderr (non-standalone version).
Kenneth Graunke
2010-06-21
1
-1
/
+1
*
glcpp/tests: Add extra newline at the end of expected output.
Kenneth Graunke
2010-06-21
67
-0
/
+67
*
glcpp: Handle missing newline at EOF.
Kenneth Graunke
2010-06-21
1
-0
/
+9
*
glcpp: Complain about unrecognized directives.
Kenneth Graunke
2010-06-21
1
-1
/
+3
*
glcpp: Pass #version, #extension, and #pragma directives through unchanged.
Kenneth Graunke
2010-06-21
1
-0
/
+7
*
Make the main compiler call the preprocessor.
Kenneth Graunke
2010-06-21
4
-3
/
+60
*
Complain and exit if the given shader file doesn't exist.
Kenneth Graunke
2010-06-21
1
-0
/
+4
*
glcpp: Add support for lexing from a string.
Kenneth Graunke
2010-06-21
2
-0
/
+9
*
glcpp: Output to a buffer and error log rather than directly printing.
Kenneth Graunke
2010-06-21
3
-48
/
+60
*
glcpp: Fix a case of == where = probably ought to be.
Kenneth Graunke
2010-06-21
1
-1
/
+1
*
Add glcpp to the build.
Kenneth Graunke
2010-06-21
4
-25
/
+51
*
Specify %option prefix="glcpp_" in the source code, not the Makefile.
Kenneth Graunke
2010-06-21
2
-1
/
+2
*
Merge Carl's preprocessor into the glcpp subdirectory.
Kenneth Graunke
2010-06-21
147
-0
/
+3508
|
\
|
*
Merge remote branch 'kwg/fixes'
Carl Worth
2010-06-09
1
-0
/
+20
|
|
\
|
|
*
Disallow defining macros whose names start with "__" or "GL_".
Kenneth Graunke
2010-06-04
1
-0
/
+20
|
*
|
test suite: Add expected output for every test.
Carl Worth
2010-06-02
70
-8
/
+384
|
*
|
Restore error message for a macro with unbalanced parentheses.
Carl Worth
2010-06-02
1
-1
/
+4
|
*
|
Eliminate some recursion from children of _expand_token_list
Carl Worth
2010-06-02
2
-57
/
+110
|
*
|
Remove dead code: _glcpp_parser_expand_token_list_onto
Carl Worth
2010-06-02
1
-10
/
+0
|
*
|
Factor out common sub-expression from multi-line-comment regular expression.
Carl Worth
2010-06-02
1
-1
/
+3
|
|
/
|
*
Make the multi-line comment regular expression a bit easier to read.
Carl Worth
2010-06-02
1
-1
/
+1
|
*
Fix multi-line comment regular expression to handle (non) nested comments.
Carl Worth
2010-06-02
2
-1
/
+6
|
*
Implement comment handling in the lexer (with test).
Carl Worth
2010-06-01
3
-2
/
+28
|
*
Fix #if-skipping to *really* skip the skipped group.
Carl Worth
2010-06-01
4
-25
/
+44
|
*
Merge branch 'take-2'
Carl Worth
2010-05-29
8
-616
/
+1106
|
|
\
|
|
*
Add killer test case from the C99 specification.
Carl Worth
2010-05-29
1
-0
/
+17
|
|
*
Add test and fix bugs with multiple token-pasting on the same line.
Carl Worth
2010-05-29
2
-51
/
+43
|
|
*
Fix pass-through of '=' and add a test for it.
Carl Worth
2010-05-29
3
-1
/
+3
|
|
*
Perform macro by replacing tokens in original list.
Carl Worth
2010-05-28
3
-99
/
+187
|
|
*
Simplify calling conventions of functions under expand_token_list_onto.
Carl Worth
2010-05-28
1
-85
/
+74
|
|
*
Stop interrupting the test suite at the first failure.
Carl Worth
2010-05-28
1
-1
/
+0
|
|
*
Revert "Add support for an object-to-function chain with the parens in the co...
Carl Worth
2010-05-28
1
-49
/
+16
|
|
*
Remove blank lines from output files before comparing.
Carl Worth
2010-05-27
2
-3
/
+5
|
|
*
Implement token pasting of integers.
Carl Worth
2010-05-27
4
-17
/
+33
|
|
*
Add placeholder tokens to support pasting with empty arguments.
Carl Worth
2010-05-27
2
-6
/
+35
|
|
*
Provide support for empty arguments in macro invocations.
Carl Worth
2010-05-27
2
-9
/
+17
|
|
*
Make two list-processing functions do nothing with an empty list.
Carl Worth
2010-05-27
1
-1
/
+4
|
|
*
Avoid treating an expanded comma as an argument separator.
Carl Worth
2010-05-27
2
-2
/
+20
|
|
*
Add support (and test) for an object-to-function chain with the parens in the...
Carl Worth
2010-05-26
2
-16
/
+52
[next]