| Commit message (Expand) | Author | Age | Files | Lines |
* | Move some common parsing routines to "lib", so thatthe | Linus Torvalds | 2005-04-07 | 1 | -25/+1 |
* | Avoid using named initializers for anonymous union entries, | Linus Torvalds | 2005-04-07 | 1 | -2/+2 |
* | Add initial preprocessor pass (doesn't actually do much) | Linus Torvalds | 2005-04-07 | 1 | -10/+0 |
* | Make 'struct token' smaller (it's way too common). | Linus Torvalds | 2005-04-07 | 1 | -24/+19 |
* | Fix cast parsing. Add parsing of gcc typeof/attribute stuff. Parse the | Linus Torvalds | 2005-04-07 | 1 | -53/+182 |
* | Add allocators for statistics | Linus Torvalds | 2005-04-07 | 1 | -10/+3 |
* | Add parsing for 'for', 'while', 'do', 'goto' and label statements. | Linus Torvalds | 2005-04-07 | 1 | -1/+48 |
* | Parse compound statements, 'break', 'continue', 'default', 'case' and | Linus Torvalds | 2005-04-07 | 1 | -4/+39 |
* | Parse if-else and return statements | Linus Torvalds | 2005-04-07 | 1 | -14/+34 |
* | Parse a lot more types (including complex structures and unions and | Linus Torvalds | 2005-04-07 | 1 | -30/+95 |
* | Parse enums and structures properly. Name the types nicely. | Linus Torvalds | 2005-04-07 | 1 | -44/+66 |
* | Fix up confusion between different typedefs and namespaces. | Linus Torvalds | 2005-04-07 | 1 | -40/+62 |
* | Parse structure-or-union-specifiers. | Linus Torvalds | 2005-04-07 | 1 | -4/+50 |
* | Fix warning, missed return value, and add 'struct', 'union' and | Linus Torvalds | 2005-04-07 | 1 | -23/+24 |
* | Start binding typedefs. More work needed, but this parses correctly: | Linus Torvalds | 2005-04-07 | 1 | -15/+67 |
* | Parse enough of an 'external-declaration' to be able to parse a simple | Linus Torvalds | 2005-04-07 | 1 | -2/+36 |
* | Add more type parsing: function and array declarators, function | Linus Torvalds | 2005-04-07 | 1 | -65/+97 |
* | Parse some type declarators. Much more to go. | Linus Torvalds | 2005-04-07 | 1 | -9/+51 |
* | Make for more readable "expected xxxx" messages. | Linus Torvalds | 2005-04-07 | 1 | -19/+115 |
* | First cuts at simple type declaration and statement parsing. | Linus Torvalds | 2005-04-07 | 1 | -7/+86 |
* | Parse assignment expressions too.. | Linus Torvalds | 2005-04-07 | 1 | -1/+27 |
* | Start handling minimal semantic information, needed for types. | Linus Torvalds | 2005-04-07 | 1 | -20/+55 |
* | Mark local parsing functions 'static'. | Linus Torvalds | 2005-04-07 | 1 | -18/+35 |
* | Parse more C expressions. | Linus Torvalds | 2005-04-07 | 1 | -25/+110 |
* | Add simple recursive-descent C expression parsing (but we only do the | Linus Torvalds | 2005-04-07 | 1 | -0/+176 |