| Age | Commit message (Expand) | Author | Files | Lines |
| 2005-04-07 | Add copyright statements and file comments. Add a FAQ, README, and | Linus Torvalds | 1 | -3/+7 |
| 2005-04-07 | Show for/while/do statements in debugging. Make symbol type | Linus Torvalds | 1 | -5/+28 |
| 2005-04-07 | Fix constant expression parsing (a constant expression can | Linus Torvalds | 1 | -15/+18 |
| 2005-04-07 | More simplification and fixing of type parsing | Linus Torvalds | 1 | -8/+7 |
| 2005-04-07 | More expression parsing simplifications. | Linus Torvalds | 1 | -29/+30 |
| 2005-04-07 | Ok, move closer to a proper type parser. It's still way too | Linus Torvalds | 1 | -75/+91 |
| 2005-04-07 | It's ok to have an empty type declaration with no identifier. | Linus Torvalds | 1 | -6/+13 |
| 2005-04-07 | Make iterators take a helper datum, and tell the callback whether | Linus Torvalds | 1 | -46/+38 |
| 2005-04-07 | Better warning for undeclared identifiers | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Bind symbols when declared. Bind arguments to functions. | Linus Torvalds | 1 | -19/+51 |
| 2005-04-07 | Add symbol scoping for proper parsing. | Linus Torvalds | 1 | -4/+9 |
| 2005-04-07 | Parse __alignof__ (although right now it ends up parsing as a | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Fix up warnings by adding includes and the proper prototypes. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Print out statement parse trees so that we can verify that the | Linus Torvalds | 1 | -3/+67 |
| 2005-04-07 | Tokenization drops whitespace, but there is one area where it is | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Move some common parsing routines to "lib", so thatthe | Linus Torvalds | 1 | -25/+1 |
| 2005-04-07 | Avoid using named initializers for anonymous union entries, | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Add initial preprocessor pass (doesn't actually do much) | Linus Torvalds | 1 | -10/+0 |
| 2005-04-07 | Make 'struct token' smaller (it's way too common). | Linus Torvalds | 1 | -24/+19 |
| 2005-04-07 | Fix cast parsing. Add parsing of gcc typeof/attribute stuff. Parse the | Linus Torvalds | 1 | -53/+182 |
| 2005-04-07 | Add allocators for statistics | Linus Torvalds | 1 | -10/+3 |
| 2005-04-07 | Add parsing for 'for', 'while', 'do', 'goto' and label statements. | Linus Torvalds | 1 | -1/+48 |
| 2005-04-07 | Parse compound statements, 'break', 'continue', 'default', 'case' and | Linus Torvalds | 1 | -4/+39 |
| 2005-04-07 | Parse if-else and return statements | Linus Torvalds | 1 | -14/+34 |
| 2005-04-07 | Parse a lot more types (including complex structures and unions and | Linus Torvalds | 1 | -30/+95 |
| 2005-04-07 | Parse enums and structures properly. Name the types nicely. | Linus Torvalds | 1 | -44/+66 |
| 2005-04-07 | Fix up confusion between different typedefs and namespaces. | Linus Torvalds | 1 | -40/+62 |
| 2005-04-07 | Parse structure-or-union-specifiers. | Linus Torvalds | 1 | -4/+50 |
| 2005-04-07 | Fix warning, missed return value, and add 'struct', 'union' and | Linus Torvalds | 1 | -23/+24 |
| 2005-04-07 | Start binding typedefs. More work needed, but this parses correctly: | Linus Torvalds | 1 | -15/+67 |
| 2005-04-07 | Parse enough of an 'external-declaration' to be able to parse a simple | Linus Torvalds | 1 | -2/+36 |
| 2005-04-07 | Add more type parsing: function and array declarators, function | Linus Torvalds | 1 | -65/+97 |
| 2005-04-07 | Parse some type declarators. Much more to go. | Linus Torvalds | 1 | -9/+51 |
| 2005-04-07 | Make for more readable "expected xxxx" messages. | Linus Torvalds | 1 | -19/+115 |
| 2005-04-07 | First cuts at simple type declaration and statement parsing. | Linus Torvalds | 1 | -7/+86 |
| 2005-04-07 | Parse assignment expressions too.. | Linus Torvalds | 1 | -1/+27 |
| 2005-04-07 | Start handling minimal semantic information, needed for types. | Linus Torvalds | 1 | -20/+55 |
| 2005-04-07 | Mark local parsing functions 'static'. | Linus Torvalds | 1 | -18/+35 |
| 2005-04-07 | Parse more C expressions. | Linus Torvalds | 1 | -25/+110 |
| 2005-04-07 | Add simple recursive-descent C expression parsing (but we only do the | Linus Torvalds | 1 | -0/+176 |