cparser
2007-11-17 Christoph MallonAllow calling function pointers.
2007-11-17 Christoph MallonImplement pointer arithmetic for += and -=. (Hopefully...
2007-11-17 Christoph MallonFix r463.
2007-11-17 Christoph MallonPrint an explicit error for the attempt to assign to...
2007-11-17 Christoph MallonFix r459: array_type_t is not pointer_type_t.
2007-11-17 Christoph MallonInline load_from_expression_addr() into its only user.
2007-11-17 Christoph MallonHandle IR generation for dereferencing pointers to...
2007-11-17 Christoph MallonUnary * handles arrays, too. Improve the error message...
2007-11-17 Matthias Braunuse short-circuit evaluation like the master taught us
2007-11-17 Christoph MallonHandle IR generation for selection of non-scalar types...
2007-11-17 Christoph MallonHandle IR generation for access to global variables...
2007-11-17 Christoph MallonHandle IR generation for subscription of arrays with...
2007-11-17 Christoph Mallon&& and || accept scalar types, not only arithmetic...
2007-11-17 Matthias Braunimplement ++ and -- for pointers
2007-11-17 Christoph MallonHandle implicit casts from 0 to pointers in comparisons.
2007-11-17 Christoph MallonHandle implicit casts from 0 to pointers.
2007-11-17 Christoph MallonUse skip_typeref() to determine the types in conditiona...
2007-11-17 Christoph MallonGenerate IR for /= and %=.
2007-11-17 Christoph MallonRemove redundant calls to error().
2007-11-17 Christoph MallonHandle non-extern declarations after extern declaration...
2007-11-17 Michael Beck__typeof__ is a GNU extension
2007-11-17 Christoph MallonWarn about empty declarations.
2007-11-17 Christoph MallonIgnore parameters beginning with -D, -O or -f for now...
2007-11-17 Christoph MallonDo not set options which do not exist anymore.
2007-11-16 Michael Beckadd some casts to suppress warnings
2007-11-16 Michael Beckpreliminary Win32 support added
2007-11-16 Michael Beckuse new TYPE_QUALIFIER_NONE to suppress warning
2007-11-16 Michael Beckadd TYPE_QUALIFIER_NONE to suppress warnings (use it...
2007-11-16 Michael Beckremoved abort() declaration, use from stdlib.h
2007-11-16 Matthias Braunit's __GNUC__ not __GCC__
2007-11-16 Christoph MallonHandle fallthrough when generating IR for case labels.
2007-11-16 Christoph MallonMake sure to generate a default ProjX for switch()es...
2007-11-16 Michael Beck__attribute__ is a GCC extension
2007-11-16 Christoph MallonParse octal escape sequences correctly: Do not swallow...
2007-11-16 Matthias Braunfix bug in my last commit
2007-11-16 Matthias Braunfix some struct as local variable problems
2007-11-16 Matthias Braunfix another bug in list handling of environment stack
2007-11-16 Matthias Braunimplement LOCAL_VARIBALE_ENTITY in reference_expression...
2007-11-16 Christoph MallonHandle the derefence operator in expression_to_addr().
2007-11-16 Matthias Braunset address_taken flag
2007-11-16 Matthias Braunwe need _GNU_SOURCE for popen
2007-11-16 Christoph MallonCommunicate via popen() with the preprocessor, to avoid...
2007-11-16 Matthias Braunimplemented/fixed EXPR_SEL
2007-11-16 Matthias Braunfix cond block in do-while loops
2007-11-16 Matthias Braunfix local array allocation
2007-11-16 Matthias Braunfix shift operations
2007-11-16 Matthias Brauninline is not a type qualifier anymore, fix function...
2007-11-16 Matthias Braunimprove array support, start doing some driver stuff
2007-11-15 Matthias Braunimprove ++ and -- semantic checks
2007-11-15 Matthias Braunbe more robust against parse errors
2007-11-15 Matthias Braunfix some goto/label bugs
2007-11-15 Matthias Braunimplement gotos and labels
2007-11-15 Matthias Braunfix a bug in the environment stack handling, improve...
2007-11-15 Matthias Braunfix goto and label printing
2007-11-15 Matthias Braundetect and handle errors when '}' is missing at end...
2007-11-15 Matthias Braunfix uninitialized variable breaking implicitely defined...
2007-11-15 Matthias Braunskip empty declarations
2007-11-14 Christoph MallonRun control flow optimisation once, because the backend...
2007-11-14 Christoph MallonHandle empty condition in for statements when building IR.
2007-11-14 Matthias Braundump keepalive edges
2007-11-14 Matthias Braundo correct semantic check/adjustment for initializers...
2007-11-14 Christoph MallonHandle empty step in for statements when building IR.
2007-11-14 Matthias Braunfix left-right, right-left association, make sure globa...
2007-11-14 Matthias Braunimplement atomic entity initialisation
2007-11-14 Matthias Braunimplement atomic entity initialisation
2007-11-14 Matthias Braunallow some implicit pointer casts, fix pointer add,sub
2007-11-14 Matthias Braunfix semantic bugs, do default promotion for call argume...
2007-11-14 Matthias Braunimprove condition generation, support conditional expre...
2007-11-14 Matthias Braun(untested) support for global variables
2007-11-14 Matthias Braunsupport for pointer add/sub, no need for type_environme...
2007-11-14 Matthias Braunmore work on semantic analysis
2007-11-13 Christoph MallonCreate IR for for-statements.
2007-11-13 Matthias Braunno need for ; in for statement after print_declaration_...
2007-11-13 Christoph MallonHandle non-void functions which miss a return statement...
2007-11-13 Matthias Braunonly look at declarations in main namespace
2007-11-13 Matthias Braunimplement switch statements, fix handling of dereference
2007-11-12 Matthias Braunfix while statement_to_firm
2007-11-12 Matthias Braunadd missing files
2007-11-12 Matthias Braunmore work on local variable support
2007-11-12 Matthias Braunparse wide strings
2007-11-12 Matthias Braunstricter warnings
2007-11-12 Matthias Braunpartly implemented reference_expression_to_firm and...
2007-11-12 Matthias Braunrename method to function
2007-11-12 Matthias Braunlink output
2007-11-12 Matthias Braunmore work on firm backend
2007-11-12 Matthias Braunstarted create_function
2007-11-12 Matthias Braunconvert ast types to firm types
2007-11-12 Matthias Braunlink with libfirm
2007-09-30 Matthias Braun- reworked handling environments and struct, union...
2007-09-28 Christoph MallonFix typo in comment.
2007-09-28 Matthias Braunimprove initializer handling
2007-09-28 Matthias Braunbugfixes, parse initializers
2007-09-28 Matthias Braunwe can now parse the infamous apfel.c, print ast as...
2007-09-28 Matthias Braunlex floating suffix, parser can now parse it's own...
2007-09-28 Matthias Braunfix put_back in lexer
2007-09-28 Matthias BraunTest multiline commits
2007-09-28 Matthias BraunMore work on cparser:
2007-09-28 Christoph MallonWrite the ANSI word "restrict" instead if "__restrict...
2007-09-28 Christoph MallonOlder GCCs do not know -Wextra. Only use -W.
2007-09-28 Christoph MallonFactorise and indent code for printing atomic types.
next