aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO
AgeCommit message (Expand)Author
2012-04-16Add a Fixme.Bill Wendling
2012-04-13By default, use Early-CSE instead of GVN for vectorization cleanup.Hal Finkel
2012-04-13Code-gen may inject code into the IR before it emits the ASM. The linkerBill Wendling
2012-04-11Add two statistics to help track how we are computing the inline cost.Chandler Carruth
2012-04-02Add an option to turn off the expensive GVN load PRE part of GVN.Bill Wendling
2012-04-01Belatedly address some code review from Chris.Chandler Carruth
2012-04-01Fix a pretty scary bug I introduced into the always inliner withChandler Carruth
2012-03-31Give the always-inliner its own custom filter. It shouldn't have to payChandler Carruth
2012-03-31Remove a bunch of empty, dead, and no-op methods from all of theseChandler Carruth
2012-03-31Initial commit for the rewrite of the inline cost analysis to operateChandler Carruth
2012-03-31Internalize: Remove reference of @llvm.noinline, it was replaced with the noi...Benjamin Kramer
2012-03-28GlobalOpt: If we have an inbounds GEP from a ConstantAggregateZero global tha...Benjamin Kramer
2012-03-27Make a seemingly tiny change to the inliner and fix the generated codeChandler Carruth
2012-03-25Move the instruction simplification of callsite arguments in the inlinerChandler Carruth
2012-03-23add EP_OptimizerLast extension pointKostya Serebryany
2012-03-16Rip out support for 'llvm.noinline'. This thing has a strange history...Chandler Carruth
2012-03-16Start removing the use of an ad-hoc 'never inline' set and insteadChandler Carruth
2012-03-14Change where we enable the heuristic that delays inlining into functionsChandler Carruth
2012-03-13Teach globalopt how to evaluate an invoke with a non-void return type.Dan Gohman
2012-03-12When inlining a function and adding its inner call sites to theChandler Carruth
2012-03-08Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy
2012-02-27Plog a memleak in GlobalOpt.Benjamin Kramer
2012-02-25Add comment.Chad Rosier
2012-02-25Add support for disabling llvm.lifetime intrinsics in the AlwaysInliner. TheseChad Rosier
2012-02-25Fix indentation.Chad Rosier
2012-02-23GCC fails to understand that NextBB is always initialized if EvaluateBlockDuncan Sands
2012-02-21Use the target-aware constant folder on expressions to improve the chanceNick Lewycky
2012-02-20Check for the correct size in the invariant marker.Nick Lewycky
2012-02-20Rename class Evaluate to Evaluator and put it in an anonymous namespace.Nick Lewycky
2012-02-19Move EvaluateFunction and EvaluateBlock into a class, and make the class storeNick Lewycky
2012-02-17Add support for invariant.start inside the static constructor evaluator. This isNick Lewycky
2012-02-12Handle InvokeInst in EvaluateBlock. Don't try to support exceptions, it's justNick Lewycky
2012-02-12false is totally null!Nick Lewycky
2012-02-12Remove redundant getAnalysis<> calls in GlobalOpt. Add a few Itanium ABI callsNick Lewycky
2012-02-12Pass TargetData and TargetLibraryInfo through to the constant folder. Fixes aNick Lewycky
2012-02-12Fix function name in comment to match actual name. Fix comments that are usingNick Lewycky
2012-02-12Don't traverse the PHI nodes twice. No functionality change!Nick Lewycky
2012-02-09Tweak comment readability and grammar.Benjamin Kramer
2012-02-09GlobalOpt: Be more aggressive about elminating side-effect free static dtors.Benjamin Kramer
2012-02-06[unwind removal] We no longer have 'unwind' instructions being generated, soBill Wendling
2012-02-06Split part of EvaluateFunction into a new EvaluateBlock method. No functionalityNick Lewycky
2012-02-05Teach GlobalOpt to handle atomic accesses to globals.Nick Lewycky
2012-02-05Clean up some whitespace and comments. No functionality change.Nick Lewycky
2012-02-01SwitchInst refactoring.Stepan Dyatkovskiy
2012-02-01Add a basic-block autovectorization pass.Hal Finkel
2012-01-27continue making the world safe for ConstantDataVector. At this point,Chris Lattner
2012-01-26Continue improving support for ConstantDataAggregate, and use theChris Lattner
2012-01-25use Constant::getAggregateElement to simplify a bunch of code.Chris Lattner
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-17Add a new PassManagerBuilder customization point,Dan Gohman