summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/InlineSimple.cpp
Commit message (Expand)AuthorAge
* Make the inline cost a proper analysis pass. This remains essentiallyChandler Carruth2013-01-21
* Clean up the formatting and doxygen for the simple inliner a bit. NoChandler Carruth2013-01-21
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Add 'using' declarations to suppress -Woverloaded-virtual warnings.Matt Beaumont-Gay2012-12-04
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Remove a bunch of empty, dead, and no-op methods from all of theseChandler Carruth2012-03-31
* Initial commit for the rewrite of the inline cost analysis to operateChandler Carruth2012-03-31
* Rip out support for 'llvm.noinline'. This thing has a strange history...Chandler Carruth2012-03-16
* Start removing the use of an ad-hoc 'never inline' set and insteadChandler Carruth2012-03-16
* Add comment.Chad Rosier2012-02-25
* Add support for disabling llvm.lifetime intrinsics in the AlwaysInliner. TheseChad Rosier2012-02-25
* Inlining and unrolling heuristics should be aware of free truncs.Andrew Trick2011-10-01
* whitespaceAndrew Trick2011-10-01
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* CallGraphSCC passes implicity require CallGraph analysis.Owen Anderson2010-10-13
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* Clear CachedFunctionInfo upon Pass::releaseMemory. Because ValueMap will abortNick Lewycky2010-05-12
* Try to keep the cached inliner costs around for a bit longer for big functions.Jakob Stoklund Olesen2010-03-09
* Revert r98089, it was breaking a clang test.Jakob Stoklund Olesen2010-03-09
* Try to keep the cached inliner costs around for a bit longer for big functions.Jakob Stoklund Olesen2010-03-09
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Move the InlineCost code from Transforms/Utils to Analysis.Dan Gohman2009-10-13
* Use hasDefinitiveInitializer() instead of testing the same thingDan Gohman2009-08-19
* Adjustments to last patch based on review.Dale Johannesen2009-01-09
* Add InlineCost class for represent the estimated cost of inlining aDaniel Dunbar2008-10-30
* Implement function notes as function attributes. Devang Patel2008-09-26
* Large mechanical patch.Devang Patel2008-09-25
* Put FN_NOTE_AlwaysInline and others in FnAttr namespace.Devang Patel2008-09-24
* Move FN_NOTE_AlwaysInline and other out of ParamAttrs namespace.Devang Patel2008-09-23
* Use parameter attribute store (soon to be renamed) forDevang Patel2008-09-23
* Add hasNote() to check note associated with a function.Devang Patel2008-09-22
* Add parentheses to make code more readable.Devang Patel2008-09-03
* Check noinline note and ignore other notes.Devang Patel2008-09-03
* Handle "noinline" note inside the simple inliner.Devang Patel2008-09-03
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* Increasing the inline limit from (overly conservative) 200 to 300. Given each...Evan Cheng2008-03-24
* Allow clients to specify the inline threshold when creatingChris Lattner2008-01-12
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Don't crash on bogus llvm.noinline. This is first part of PR1817 (preventing ...Anton Korobeynikov2007-11-22
* Use SmallPtrSet.Devang Patel2007-07-27
* Add BasicInliner interface. Devang Patel2007-07-25
* fix Transforms/Inline/2007-06-25-WeakInline.ll by not inlining functionsChris Lattner2007-06-25
* Inliner pass header file was moved.Tanya Lattner2007-06-19
* Formating fixes.Tanya Lattner2007-06-07