typo fixed
[libfirm] / ir / ir /
2007-10-08 Matthias Braunno strict conv necessary after load
2007-10-07 Matthias BraunCF backedges are enough for us
2007-10-07 Christoph MallonSimplify consumer_dom_dca().
2007-10-07 Christoph MallonCleanup: Remove trailing whitespace, get_irn_n(n, ...
2007-10-03 Michael BeckBetter fix for the MacroBlock header
2007-10-03 Michael Beckadded get_nodes_MacroBlock()
2007-10-03 Michael Beckimproved comments
2007-10-03 Michael Beckmade edges_node_deleted_kind() static
2007-09-29 Matthias Braunremove unnecessary (since lower_mode_b does it better...
2007-09-27 Michael Beckdo NOT ignore exception edges anymore when removing...
2007-09-27 Michael Beckadd the "garbage collection" feature to the out edges...
2007-09-27 Michael Beckadd assert to get_Block_MacroBlock()
2007-09-27 Michael Becklet dead node elimination copy the MacroBlock header
2007-09-27 Michael Beckfixed is_exception_flow(), add assert to get_Block_Macr...
2007-09-27 Michael Beckcan now dump new out edges
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 Michael BeckRemoved USE_FAST_PHI_CONSTRUCTION and USE_EXPLICIT_PHI_...
2007-09-27 Christoph MallonFix fehler83: The mode of the outer Sub in the transfor...
2007-09-24 Matthias Braunad-hoc fix for mul/add problem
2007-09-20 Christoph MallonFix r15888.
2007-09-20 Michael Beckfixed double enum name
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 MallonRemove enum tarval_classification_t.
2007-09-17 Christoph MallonFix r15829.
2007-09-17 Christoph MallonRemove classify_tarval(). Use tarval_is_null(), tarval_...
2007-09-17 Christoph MallonAllow Convb in backend.
2007-09-17 Christoph MallonCmp(Conv(x), 0) -> Cmp(x, 0) if dest mode ist wider...
2007-09-17 Christoph MallonRemove unnecessary ValeCmp() macro for irnodeset.
2007-09-17 Christoph MallonAllow get_mode_null() for mode_b.
2007-09-17 Christoph MallonDisallow Convb.
2007-09-15 Matthias Braun- always sign extend in get_tarval (this fixes results...
2007-09-14 Matthias Braunmake call arg/result verify a bit looser in backend...
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 Michael Beckis_Cast() added
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-12 Michael Beckadded all constructors for Mulh
2007-09-12 Michael Beck- added stronger checks for Mul
2007-09-12 Michael Beckmore support for Mulh nodes
2007-09-12 Michael Beckdeteled empty "info" files
2007-09-12 Michael BeckMulh is now an official opcode
2007-09-10 Sebastian HackJust made a warning go away when building optimized...
2007-09-06 Michael Beckfixed some warnings
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 Beckimproved MulC implementation
2007-09-05 Michael Beckfixed Add optimization
2007-09-05 Michael Beckreplaced the max macro
2007-09-05 Michael Beckimplement the Youfeng Wu algorithm for MulC
2007-09-05 Michael Beckdisables a+a => 2*a
2007-09-04 Matthias Braunwe can't negate ConstP
2007-09-03 Michael Beckfixed memory hole, typo
2007-09-03 Matthias BraunSub(x, Const) -> Add(x, -Const)
2007-08-31 Matthias Braunmake display of node idx configurable and disable it...
2007-08-25 Christoph MallonRemove printf()s left over from debugging.
2007-08-25 Christoph MallonIn smaller_mode() state that mode_b can be converted...
2007-08-25 Christoph MallonRemove unnecessary conversions to wider modes as operan...
2007-08-25 Christoph MallonAllow mode_b as operand mode for Cmp as comments there...
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-21 Michael Beckirg_block_edges_walk() implemented
2007-08-20 Michael BeckAdd - (a - b) = b - a transformation
2007-08-17 Sebastian HackSmall cosmetic
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 Beckallow Pin nodes as predecessors for unpinned nodes
2007-08-03 Michael Beckdump the result modes of Div,Mod,DivMod
2007-08-03 Michael Beckhandle a/-1 and a%-1 right
2007-08-03 Matthias Braunadd is_Shl, is_Shr, is_Shrs, is_Rot
next