aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/IfConversion.cpp
AgeCommit message (Expand)Author
2010-11-06Prune includes.Benjamin Kramer
2010-11-03Two sets of changes. Sorry they are intermingled.Evan Cheng
2010-10-26When the "true" and "false" blocks of a diamond if-conversion are the same,Bob Wilson
2010-10-26Change if-conversion to keep track of the extra cost due to microcodedBob Wilson
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-10-01Thread the determination of branch prediction hit rates back through the if-c...Owen Anderson
2010-09-29Silence msvc warnings.Benjamin Kramer
2010-09-28Give the if-converter access to MachineLoopInfo, and use it to generate plaus...Owen Anderson
2010-09-28Part one of switching to using a more sane heuristic for determining if-conve...Owen Anderson
2010-09-10Teach if-converter to be more careful with predicating instructions that wouldEvan Cheng
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson
2010-08-06Revert r110396 to fix buildbots.Owen Anderson
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson
2010-07-21Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson
2010-06-29Reapply my if-conversion cleanup from svn r106939 with fixes.Bob Wilson
2010-06-28new, no longer brain-dead, r106907Jim Grosbach
2010-06-28Revert r106907, "make sure to handle dbg_value instructions in the middle of theDaniel Dunbar
2010-06-26Revert my if-conversion cleanup since it caused a bunch of nightly testBob Wilson
2010-06-26Clean up some problems with extra CFG edges being introduced duringBob Wilson
2010-06-25make sure to handle dbg_value instructions in the middle of the block, notJim Grosbach
2010-06-25Change if-conversion block size limit checks to add some flexibility.Evan Cheng
2010-06-2580 column and typo fixJim Grosbach
2010-06-22Use pre-increment instead of post-increment when the result is not used.Dan Gohman
2010-06-19Tidy.Bob Wilson
2010-06-18Allow ARM if-converter to be run after post allocation scheduling.Evan Cheng
2010-06-18Fix an inverted condition.Evan Cheng
2010-06-18Teach iff-converter to properly count # of dups. It was not skipping over dbg...Evan Cheng
2010-06-18Fix PR7372: Conditional branches (at least on ARM) are treated as predicated,Bob Wilson
2010-06-17Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). ThisStuart Hastings
2010-06-16Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat...Evan Cheng
2010-06-15Fix 80col violations, remove trailing whitespace, and clarify a comment.Bob Wilson
2010-06-15IfConversion's AnalyzeBlocks method always returns false; clean it up.Bob Wilson
2010-06-15Fix a comment typo.Bob Wilson
2010-06-14More dbg_value cleanup so the presence of debug info doesn't affect code-gen.Jim Grosbach
2010-06-07Cleanup. Process the dbg_values separatelyJim Grosbach
2010-06-07Move exit check where it really belongs.Jim Grosbach
2010-06-04Make if-conversion ignore dbg_value instructions in its analysis. rdar://7797940Jim Grosbach
2010-01-04Change errs() to dbgs().David Greene
2009-11-21Allow target to disable if-converting predicable instructions. e.g. NEON inst...Evan Cheng
2009-10-28Revert r85346 change to control tail merging by CodeGenOpt::Level.Bob Wilson
2009-10-27Record CodeGen optimization level in the BranchFolding pass so that we canBob Wilson
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky
2009-09-04Run branch folding if if-converter make some transformations.Evan Cheng
2009-08-23remove various std::ostream version of printing methods fromChris Lattner
2009-08-22Convert DOUT to DEBUG(errs()...).Bill Wendling
2009-07-25More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-12Fix assert(0) conversion, as suggested by Chris.Torok Edwin