Remember to set flag.
[oota-llvm.git] / lib / CodeGen / IfConversion.cpp
2007-06-07 Evan Chengifcvt a triangle: don't merge ifcvt block with rejoin...
2007-06-07 Evan ChengLots of bug fixes. Now finally in a reasonable state.
2007-06-06 Owen AndersonQuick patch to fix the build, based on what it appears...
2007-06-06 Evan ChengLots of bug fixes.
2007-06-06 Evan ChengIf a unconditional branch is added to branch to the...
2007-06-06 Evan ChengMinor statistics counting bug.
2007-06-06 Evan ChengFix a couple of typos and be smarter about order of...
2007-06-05 Evan ChengFix diamond shape ifcvt bugs.
2007-06-05 Evan ChengReplaceUsesOfBlockWith() can modify the predecessors...
2007-06-05 Evan ChengDo not ifcvt if either true / false path is a backedge...
2007-06-05 Evan ChengI had a senior moment.
2007-06-05 Evan ChengIf the predicated block requires an early exit, end...
2007-06-05 Evan ChengFix some subtle bugs: bug during succeessor copying...
2007-06-04 Evan ChengForgot to check for if iterator reached the end.
2007-06-04 Evan ChengLet IfConverter loose. Allow more aggressive subsumptio...
2007-06-01 Evan ChengCorrectly mark early-exit on the false path.
2007-06-01 Evan ChengIfcvt triangle: don't ifcvt 'true' BB if it has other...
2007-06-01 Evan ChengRemove a bogus check. Even terminators in a ifcvt need...
2007-06-01 Evan ChengAllow multiple ifcvt candidates to share children block...
2007-05-31 Evan ChengFix a typo.
2007-05-30 Evan ChengChange traversal order to bottom up in preparation...
2007-05-29 Evan ChengDon't merge in tail block of a diamond if it has more...
2007-05-29 Evan ChengIf there is an empty block between a source and its...
2007-05-25 Evan ChengSilly boog.
2007-05-23 Evan ChengPreliminary iterative if-conversion support.
2007-05-21 Evan ChengIf-convert early exit blocks (returns, etc.); bug fixes...
2007-05-18 Evan ChengClean up.
2007-05-18 Evan ChengChange to depth-first traversal.
2007-05-18 Evan ChengSome restructuring in preparation for most aggressive...
2007-05-18 Evan ChengWatch out for blocks that end with a return.
2007-05-18 Evan ChengIf true / false blocks fallthrough before ifcvt, add...
2007-05-18 Evan ChengMake use of target specific block size limits; bug...
2007-05-16 Evan ChengisBlockPredicable() always ignore terminal instructions...
2007-05-16 Evan ChengRename M_PREDICATED to M_PREDICABLE; Moved isPredicable...
2007-05-16 Evan ChengDevang points out that we need an assertion here.
2007-05-16 Evan ChengInitial commit of (very basic) if converter.