remove unnecessary (since lower_mode_b does it better) and wrong Mux optimisation...
[libfirm] / ir / ir / iropt.c
2007-09-29 Matthias Braunremove unnecessary (since lower_mode_b does it better...
2007-09-27 Michael Beckfixed skipping of Pin Nodes before Mod/Div/DivMod
2007-09-27 Michael Beckextend the x % 2 CMP 0 into x % 2^n CMP 0
2007-09-27 Michael Beckadd special case for (x % 2) ==|!= 0, speeds up fehler83.c
2007-09-27 Christoph MallonFix fehler83: The mode of the outer Sub in the transfor...
2007-09-20 Christoph MallonFix r15888.
2007-09-20 Christoph MallonImplement -(a * const) -> a * -const.
2007-09-20 Michael Beck- introduced better running flags
2007-09-20 Michael BeckAdd a reassoc_running flag used to disable some local...
2007-09-19 Christoph MallonImplement ~x ^ const -> x ^ ~const and ~(x ^ const...
2007-09-19 Christoph MallonUse already fetched value.
2007-09-19 Christoph MallonImplement x ^ 1...1 -> ~1 (This worked only for mode_b...
2007-09-19 Christoph MallonFix typo in comment.
2007-09-19 Christoph MallonImplement ~-x -> x + -1.
2007-09-19 Christoph Mallon- Change ~(x - 1) -> -x to ~(x + -1) -> -x, because...
2007-09-18 Christoph Mallonget_Const_tarval(x) == get_mode_null(get_irn_mode(x...
2007-09-18 Christoph MallonRemove a redundant test: The mode of an operand of...
2007-09-18 Christoph MallonReplace get_irn_op(x) == op_FOO by is_FOO(x).
2007-09-18 Christoph MallonRemove a redundant test: The mode of the op of a Not...
2007-09-18 Christoph MallonFix r15800: a & (a ^ b) is a & ~b, not a & -b.
2007-09-17 Christoph MallonUse is_Const_one() instead of tarval_is_one(get_Const_t...
2007-09-17 Christoph MallonUse is_Const_all_one() instead of tarval_is_all_one...
2007-09-17 Christoph MallonUse is_Const_null() instead of tarval_is_null(get_Const...
2007-09-17 Christoph MallonRemove classify_Const() and replace it by is_Const_...
2007-09-17 Christoph MallonFix r15829.
2007-09-17 Christoph MallonRemove classify_tarval(). Use tarval_is_null(), tarval_...
2007-09-17 Christoph MallonCmp(Conv(x), 0) -> Cmp(x, 0) if dest mode ist wider...
2007-09-14 Michael BeckFixed block of newly created node
2007-09-14 Michael Becka & (a ^ b) ==> a & ~b added
2007-09-14 Michael Beck- added DBG_OPT for various transformations
2007-09-13 Michael Beckadd DeMorgan rules that reduce the number of instructions
2007-09-13 Michael Beckadded -(x >>u 31) and -(x >>s 31)
2007-09-13 Michael Beckbugfix for x+~x
2007-09-13 Michael Beckadd more algebraic optimizations
2007-09-13 Michael Beckfixed two bugs, ~a == C case added
2007-09-13 Michael Beckoptimize_preds() removed, op x CMP op y and X op a...
2007-09-13 Christoph MallonFix r15779 and generalise. Also implement
2007-09-13 Christoph MallonAdd const_negate() which negates a Const node.
2007-09-13 Christoph MallonImplement
2007-09-13 Michael Beckadded check for Bad in Mul optimization
2007-09-13 Michael Beckbetter handling of Mul nodes
2007-09-06 Michael Beckforbid the Add(x,x) -> Mul(x,2) optimization after...
2007-09-05 Michael Beckset the tarval fp_ops mode depending on the current...
2007-09-05 Michael Beckfixed Add optimization
2007-09-05 Michael Beckdisables a+a => 2*a
2007-09-04 Matthias Braunwe can't negate ConstP
2007-09-03 Matthias BraunSub(x, Const) -> Add(x, -Const)
2007-08-25 Christoph MallonRemove printf()s left over from debugging.
2007-08-25 Christoph MallonRemove unnecessary conversions to wider modes as operan...
2007-08-23 Matthias Braunoptimize and,or,eor with Projs from same Cmp
2007-08-22 Matthias Braunfix abs creation after recent reassoc changes
2007-08-20 Michael BeckAdd - (a - b) = b - a transformation
2007-08-14 Michael BeckAdd x - (a+x) = -a
2007-08-06 Michael Beckskip Pin nodes if Div/Mod/DivMod/Qout are removed
2007-08-06 Michael BeckDo not optimize a+a into 2*a for non-integer modes
2007-08-03 Michael Beckhandle a/-1 and a%-1 right
2007-08-02 Michael Beckadd unaligned Load/Stores
2007-08-01 Matthias Braunfix bad mode in a%a optimisation
2007-07-31 Matthias Braunfix copy&paste error
2007-07-31 Michael Beckadd one more Or/And related case
2007-07-25 Michael Beckadd more cases for integer division
2007-07-25 Michael Beckdo some transformation only for two complement, allow...
2007-07-25 Michael Beckadded ieee754 exact flag which allows more cases to...
2007-07-24 Michael Beckadd 2.0*x = x+x and x/c = x*(1.0/c) for some constants
2007-07-23 Michael BeckCleaned up the tarval handling:
2007-07-19 Christoph MallonImplement constant folding for Psib.
2007-07-18 Michael Becksome optimization of strict conv's
2007-07-16 Michael Beckremoved the new get_block/set_block stuff; not working...
2007-07-13 Michael BeckReplaced set_irn_n(*, -1, *) and get_irn_n(*, -1) by...
2007-07-13 Michael Beckimproved safety: added a assert() if proj's are placed
2007-07-13 Michael BeckAdd get_block and set_block operations.
2007-07-11 Michael Beckremoved character modes, use integer modes instead
2007-07-11 Christoph MallonFix typos in comments.
2007-07-11 Michael Beckmoved the fixpoint iteration of the current node from...
2007-07-10 Michael BeckAdd ~x + 1 = -x algebraic simplification
2007-07-10 Michael BeckAdd ~(x-1) = -x algebraic simplification
2007-07-10 Michael BeckAdd -(~x) = x + 1 algebraic simplification
2007-07-10 Matthias Brauncorrect fixpoint iteration
2007-07-10 Matthias Braunmore distributive laws
2007-07-09 Michael Beckadd optimizations for Or,And,Eor and Shift
2007-06-27 Michael Beckfixed fehler24.c: check the result of tarval operation...
2007-06-20 Michael Beckget_*_attr() functions now return a pointer
2007-06-19 Christoph MallonManual CSE.
2007-06-17 Matthias Braunfixed warnings (some of them were actual bugs), leave...
2007-06-13 Michael BeckMoved the Sub Optimization into transform (changes...
2007-06-13 Michael BeckOptimize SubInt(ConvInt(aP), ConvInt(bP)) into SubInt...
2007-06-11 Michael Beckremoved dangerous get_nodes_block()
2007-06-06 Michael Beckremoved the exc_region again,
2007-06-03 Michael Beckhonor new Confirm exception region attributes
2007-06-01 Matthias Braunmoved external headers into include dir
2007-05-31 Christoph MallonConstify.
2007-05-31 Michael BeckAdd constraints to the ASM node
2007-05-23 Michael BeckAdded new Proj_X_regular for all nodes producing a...
2007-05-23 Michael Beckadd_irn_keepalive()
2007-05-23 Michael Beck- changed Phi0 attribute to be a struct
2007-05-02 Michael BeckNormalization puts constants on teh right side of commu...
2007-04-27 Matthias Brauncleaned up doxygen comments
2007-04-27 Christian Würdigadded new licence header
2007-04-02 Christoph MallonMove includes for alloca() to xmalloc.h, so not everyon...
2007-03-29 Matthias Braunmove backend into libfirm
next