aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO/InlineAlways.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix a pretty scary bug I introduced into the always inliner withChandler Carruth2012-04-011-1/+1
* Give the always-inliner its own custom filter. It shouldn't have to payChandler Carruth2012-03-311-20/+63
* Remove a bunch of empty, dead, and no-op methods from all of theseChandler Carruth2012-03-311-9/+0
* Initial commit for the rewrite of the inline cost analysis to operateChandler Carruth2012-03-311-4/+1
* Start removing the use of an ad-hoc 'never inline' set and insteadChandler Carruth2012-03-161-11/+17
* Add comment.Chad Rosier2012-02-251-1/+1
* Add support for disabling llvm.lifetime intrinsics in the AlwaysInliner. TheseChad Rosier2012-02-251-1/+9
* Fix indentation.Chad Rosier2012-02-251-2/+1
* Inlining and unrolling heuristics should be aware of free truncs.Andrew Trick2011-10-011-0/+3
* whitespaceAndrew Trick2011-10-011-6/+6
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-2/+7
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-2/+2
* Teach the always inliner to release its inline cost estimates, like the basicNick Lewycky2010-05-151-0/+3
* Try to keep the cached inliner costs around for a bit longer for big functions.Jakob Stoklund Olesen2010-03-091-1/+4
* Revert r98089, it was breaking a clang test.Jakob Stoklund Olesen2010-03-091-4/+1
* Try to keep the cached inliner costs around for a bit longer for big functions.Jakob Stoklund Olesen2010-03-091-1/+4
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-251-1/+0
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-251-1/+1
* Move the InlineCost code from Transforms/Utils to Analysis.Dan Gohman2009-10-131-1/+1
* Adjustments to last patch based on review.Dale Johannesen2009-01-091-0/+3
* Do now allow InlineAlways pass to remove dead functions.Devang Patel2008-11-051-0/+3
* Add InlineCost class for represent the estimated cost of inlining aDaniel Dunbar2008-10-301-1/+1
* Assorted comment/naming fixes, 80-col violations, and reindentation.Daniel Dunbar2008-10-281-3/+1
* Implement function notes as function attributes. Devang Patel2008-09-261-1/+1
* Large mechanical patch.Devang Patel2008-09-251-1/+1
* Put FN_NOTE_AlwaysInline and others in FnAttr namespace.Devang Patel2008-09-241-1/+1
* Move FN_NOTE_AlwaysInline and other out of ParamAttrs namespace.Devang Patel2008-09-231-1/+1
* Use parameter attribute store (soon to be renamed) forDevang Patel2008-09-231-1/+1
* Add hasNote() to check note associated with a function.Devang Patel2008-09-221-1/+1
* Fix typo in a comment.Devang Patel2008-09-031-1/+1
* Fix comments.Devang Patel2008-09-031-2/+3
* Add custom inliner that handles only functions that are marked as always_inline.Devang Patel2008-09-031-0/+70