summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/InlineAlways.cpp
Commit message (Expand)AuthorAge
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-30
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-19
* 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
* Clean up handling of always-inline functions in the inliner.Bob Wilson2012-11-19
* Create enums for the different attributes.Bill Wendling2012-10-09
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-26
* Fix a pretty scary bug I introduced into the always inliner withChandler Carruth2012-04-01
* Give the always-inliner its own custom filter. It shouldn't have to payChandler Carruth2012-03-31
* 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
* 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
* Fix indentation.Chad 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
* 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
* Teach the always inliner to release its inline cost estimates, like the basicNick Lewycky2010-05-15
* 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
* Adjustments to last patch based on review.Dale Johannesen2009-01-09
* Do now allow InlineAlways pass to remove dead functions.Devang Patel2008-11-05
* Add InlineCost class for represent the estimated cost of inlining aDaniel Dunbar2008-10-30
* Assorted comment/naming fixes, 80-col violations, and reindentation.Daniel Dunbar2008-10-28
* 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
* Fix typo in a comment.Devang Patel2008-09-03
* Fix comments.Devang Patel2008-09-03
* Add custom inliner that handles only functions that are marked as always_inline.Devang Patel2008-09-03