- 2009 patch
[cparser] / ast2firm.c
2009-04-07 Michael Beck- 2009 patch
2009-04-07 Michael Beck- BugFix: make_function_1_type_variadic() must hash...
2009-03-20 Matthias Braunstrings are visibility local
2009-03-09 Matthias Braunattempt to fix bug #40
2009-03-08 Matthias Braunpacked struct implementation, attribute assignment...
2009-03-08 Matthias BraunRework compound type handling:
2009-03-08 Matthias Brauncreate fold_constant_to_bool function to avoid some...
2009-03-07 Matthias Braunwe have to be able to fold EXPR_INVALID since we report...
2009-03-07 Matthias Braunrewrite of attribute handling
2009-02-27 Matthias Braundon't emit dead initializers
2009-02-20 Christoph MallonTypos.
2009-01-28 Christoph MallonDocument evaluation of typedef with VLA declarator...
2009-01-20 Matthias Braunmissing skip_typeref
2009-01-19 Michael Beck- fixed access to outer variables
2009-01-19 Michael Beck- corerctly transform inner functions to firm
2009-01-19 Michael BeckGet rid of pn_Start_value_param:
2009-01-18 Michael Beck- some doxygen info for the changed routines
2009-01-18 Michael Beck- add __based support
2009-01-03 Christoph MallonRemove unused variable.
2009-01-03 Michael Beck- add intrinsic lowerer for strcpy(), mempcpy(), memmov...
2009-01-03 Michael Beck- implemented va_copy(), needed for C99
2009-01-02 Michael Beck- typo fixed
2009-01-02 Michael Beck- va_start/va_arg uses now the stack parameter alignment
2008-12-31 Christoph MallonFix logic error in is_builtin_expect() introduced in...
2008-12-29 Michael Beck- more MS intrinsics
2008-12-27 Michael Beck- more builtins
2008-12-27 Michael Beck- fixed warnings
2008-12-27 Michael BeckRemoved EXPR_BUILTIN_SYMBOL: Builtins are now predefine...
2008-12-24 Michael Beck- fixed implementation of various __builtin functions
2008-12-24 Michael Beck- implemented __builtin_trap()
2008-12-23 Michael Beck- implemented __builtin_(ffs|ctz|clz|popcount|parity)
2008-12-21 Christoph Mallon?: with omitted true-expression needs special handling...
2008-12-21 Christoph MallonHandle pointer arithmetic with variable sized types...
2008-12-21 Christoph MallonUnify the form of references to the standard.
2008-12-21 Michael Beck- implemented __builtin_prefetch()
2008-12-21 Christoph MallonRemove two redundant get_dbg_info() which were found...
2008-12-18 Michael Beck- implement builtin_(frame|return)_address() firm repre...
2008-12-18 Christoph MallonImplement __builtin_types_compatible_p().
2008-12-18 Christoph MallonIndentation.
2008-12-18 Christoph MallonSkip non-parameter entities in parameter lists. This...
2008-12-18 Michael Beck- reimplemented __builtin_frame_address() and __builtin...
2008-12-18 Christoph MallonAdd some more bits for EXPR_BUILTIN_ADDRESS.
2008-12-17 Michael Beck- implemented __builtin_(return|frame)_address() FE...
2008-12-17 Christoph MallonSlightly simplify traversing declaration lists.
2008-12-17 Christoph MallonPut { of function on separate line.
2008-12-17 Christoph MallonAdd the macro lengthof().
2008-12-16 Christoph MallonFix calculation of the value of multi-character charact...
2008-12-15 Christoph MallonBetter check for is_Cond() instead of !is_Bad(): The...
2008-12-15 Christoph MallonBefore setting branch prediction info for a Cond, make...
2008-12-15 Christoph MallonDo not crash on alignof($TYPE).
2008-12-15 Michael Beck- renamed cons_flags to ir_cons_flags
2008-12-14 Matthias Braunfixed __alignof__ construction, always build constants...
2008-12-14 Christoph MallonUse identify_new_type() instead of duplicating it.
2008-12-14 Matthias Braun- change enum to have an underlying atomic type
2008-12-14 Moritz KrollAdjusted for latest firm
2008-12-13 Matthias Braunfirst implementation of aligned attribute
2008-12-13 Matthias Braunfix subtle implicit cast problem
2008-12-13 Matthias Braunmissing skip_typeref
2008-12-13 Christoph MallonFix typo in lazy op constant folding.
2008-12-13 Matthias Braunmore skip_typerefs
2008-12-13 Matthias Brauntype might be a struct
2008-12-13 Matthias Braunwe have to convert assign ops back up to mode_arithmetic
2008-12-13 Matthias Braunalways fold consts
2008-12-13 Matthias Braun- build float arithmetic ops in backend arithmetic...
2008-12-13 Christoph MallonRemove the unused STATEMENT_LOCAL_LABEL/struct local_la...
2008-12-12 Matthias Braunfix for latest firm
2008-12-10 Michael Beck- recognize __attribute__((returns_twice)) and __declsp...
2008-12-09 Christoph MallonCalculate the size of a typedefed VLA right where the...
2008-12-08 Christoph MallonRemove trailing \n from panic messages.
2008-12-08 Christoph Mallon- Repair evaluating && with constant left hand side...
2008-12-08 Christoph MallonRemove false_block != NULL tests, which never can be...
2008-12-08 Christoph MallonAllow sizeof(void) and __alignof__(void) as GCC extension.
2008-12-07 Christoph MallonEvaluate the argument of va_end for its side effects.
2008-12-07 Christoph MallonCompound literals are lvalues.
2008-12-07 Michael Beck- select_addr() must create an constant in constant...
2008-12-06 Christoph MallonAdd partial support for C++ wchar_t.
2008-12-04 Christoph MallonSimplify array_access_addr() by using adjust_for_pointe...
2008-12-04 Christoph MallonConvert the value before taking the shortcut in adjust_...
2008-12-03 Christoph MallonIndentation.
2008-12-03 Christoph MallonBefore setting volatility, check that FIRM did not...
2008-12-03 Matthias Brauncreate mode from cparser type not from ir_nodes which...
2008-12-03 Matthias Braunfix bad construction of logical binops with constant...
2008-12-03 Christoph MallonRemove incorrect assertion. It is perfectly valid for...
2008-11-29 Christoph MallonResolve several null pointer accesses, when encounterin...
2008-11-28 Matthias BraunI give up with modulo shift - doing the right thing...
2008-11-27 Moritz KrollAdjusted code to mode-less Const and Const_type constru...
2008-11-27 Matthias Braunfix builting expect handling and implement taking addre...
2008-11-25 Matthias Braun- Introduce ENTITY_PARAMETER
2008-11-21 Matthias Braunreduce not supported error to a warning
2008-11-20 Christoph MallonRemove unreachable statements.
2008-11-19 Christoph MallonHandle static __thread local variables in ast2firm.
2008-11-19 Christoph MallonImprove storage class handling:
2008-11-18 Christoph MallonParse C++ references.
2008-11-16 Matthias Braunkeep it simple and stupid: cast to unsigned instead...
2008-11-16 Michael Beck- %zu is not supported on windows
2008-11-15 Christoph MallonImprove linkage specification
2008-11-15 Christoph MallonThe calling convention is orthogonal to the linkage...
2008-11-15 Christoph Mallonstatic.
2008-11-14 Matthias Braunfix string initializer when implicitely going down...
2008-11-14 Matthias BraunMore work for C++ mode:
next