aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/InlineCost.cpp
Commit message (Expand)AuthorAgeFilesLines
* Sink InlineCost.cpp into IPA -- it is now officially an interproceduralChandler Carruth2013-01-211-1237/+0
* Move the inline cost analysis's primary cost query to TTI instead of theChandler Carruth2013-01-211-4/+4
* Now that the inline cost analysis is a pass, we can easily have itChandler Carruth2013-01-211-12/+20
* Make the inline cost a proper analysis pass. This remains essentiallyChandler Carruth2013-01-211-5/+27
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-5/+5
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-301-4/+8
* Fix a stunning oversight in the inline cost analysis. It was neverChandler Carruth2012-12-281-4/+16
* Teach the inline cost analysis about calls that can be simplified andChandler Carruth2012-12-281-11/+87
* Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy2012-12-201-3/+17
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-4/+4
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-11/+11
* Move the InstVisitor utility into VMCore where it belongs. It heavilyChandler Carruth2012-11-301-1/+1
* Clean up handling of always-inline functions in the inliner.Bob Wilson2012-11-191-71/+105
* Some comment fixes.Bob Wilson2012-11-191-1/+1
* Revert the majority of the next patch in the address space series:Chandler Carruth2012-11-011-10/+5
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-011-2/+3
* Add some cleanup to the DataLayout changes requested by Chandler.Micah Villmow2012-10-241-2/+1
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-1/+1
* Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow2012-10-151-5/+10
* Revert 165732 for further review.Micah Villmow2012-10-111-10/+5
* Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow2012-10-111-5/+10
* Create enums for the different attributes.Bill Wendling2012-10-091-3/+4
* Move TargetData to DataLayout.Micah Villmow2012-10-081-5/+5
* Make sure always-inline functions get inlined. <rdar://problem/12423986>Bob Wilson2012-10-071-1/+3
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-261-3/+3
* Prevent inlining of callees which allocate lots of memory into a recursive ca...Nadav Rotem2012-09-191-14/+58
* Release build: guard dump functions withManman Ren2012-09-121-1/+1
* Release build: guard dump functions with "ifndef NDEBUG"Manman Ren2012-09-061-0/+2
* PR13095: Give an inline cost bonus to functions using byval arguments.Benjamin Kramer2012-08-071-3/+27
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-021-1/+1
* A pile of long over-due refactorings here. There are some very, *very*Chandler Carruth2012-05-041-39/+11
* Add two statistics to help track how we are computing the inline cost.Chandler Carruth2012-04-111-0/+5
* Reintroduce InlineCostAnalyzer::getInlineCost() variant with explicit calleeDavid Chisnall2012-04-061-1/+4
* Fix a typo reported in IRC by someone reviewing this code.Chandler Carruth2012-03-311-1/+1
* Remove a bunch of empty, dead, and no-op methods from all of theseChandler Carruth2012-03-311-10/+0
* Initial commit for the rewrite of the inline cost analysis to operateChandler Carruth2012-03-311-543/+898
* Start removing the use of an ad-hoc 'never inline' set and insteadChandler Carruth2012-03-161-8/+4
* Pull the implementation of the code metrics out of the inline costChandler Carruth2012-03-161-158/+0
* Make the swap code here a bit more obvious what its doing... We'reChandler Carruth2012-03-151-1/+1
* Don't assume that the arguments are processed in some particular order.Chandler Carruth2012-03-151-2/+4
* Remove all remnants of partial specialization in the cost computationChandler Carruth2012-03-151-69/+0
* Extend the inline cost calculation to account for bonuses due toChandler Carruth2012-03-141-3/+86
* Refactor the inline cost bonus calculation for constants to useChandler Carruth2012-03-141-20/+26
* Make helper static, so it can be inlined into its sole caller.Benjamin Kramer2012-03-101-3/+3
* Undo a previous restriction on the inline cost calculation which NickChandler Carruth2012-03-091-107/+146
* Rotate two of the functions used to count bonuses for the inline costChandler Carruth2012-03-081-14/+10
* Use precomputed BB size instead of BB->size().Nick Lewycky2012-01-251-1/+1
* Support pointer comparisons against constants, when looking at the inline-costNick Lewycky2012-01-251-1/+55
* Fix CountCodeReductionForAlloca to more accurately represent what SROA can andNick Lewycky2012-01-201-16/+60
* Continue counting intrinsics as instructions (except when they aren't, such asNick Lewycky2011-12-211-3/+17