summaryrefslogtreecommitdiff
path: root/lib/Analysis/InlineCost.cpp
Commit message (Expand)AuthorAge
...
* Separate out the constant bonus from the size reduction metrics. ReworkEric Christopher2011-01-26
* Coding style formatting changes.Eric Christopher2011-01-26
* Reorganize this so that the early exit and special cases come earlyEric Christopher2011-01-25
* Add a FIXME explaining the move to a single indirect call bonus per functionEric Christopher2011-01-22
* Only apply the devirtualization bonus once instead of per-call site in theEric Christopher2011-01-22
* Now using a variant of the existing inlining heuristics to decide whether to ...Kenneth Uildriks2010-10-09
* Start separating out code metrics into code size metrics and code performance...Kenneth Uildriks2010-10-08
* What the loop unroller cares about, rather than just not unrolling loops with...Owen Anderson2010-09-09
* Refactor code-size reduction estimation methods out of InlineCostAnalyzer and...Owen Anderson2010-09-09
* use ImmutableCallSite for const-corrgoodnessGabor Greif2010-07-27
* Pulled CodeMetrics out of InlineCost.h and made it a bit more general, so it ...Kenneth Uildriks2010-06-09
* Avoid counting InlineAsm as a call - it prevents loop unrolling.Jakob Stoklund Olesen2010-05-26
* Clear CachedFunctionInfo upon Pass::releaseMemory. Because ValueMap will abortNick Lewycky2010-05-12
* Added a variant of InlineCostAnalyzer::getInlineCost() that takes the called ...David Chisnall2010-05-01
* Dan recently disabled recursive inlining within a function, but weChris Lattner2010-04-30
* Revert r101471. For tight recursive functions which have multipleDan Gohman2010-04-21
* fix PR6858: a dangling pointer use bug which was causedChris Lattner2010-04-17
* a bunch of cleanups and tweaks, no functionality changes.Chris Lattner2010-04-17
* Disable inlining of recursive calls. It can complicate tailcallelim andDan Gohman2010-04-16
* Make callIsSmall accessible as a utility function.Dan Gohman2010-04-16
* performance: cache the dereferenced use_iteratorGabor Greif2010-04-14
* Reapply r99451 with a fix to move the NoInline check to the cost functionsEric Christopher2010-03-25
* Treat copysignl like the other copysign functions.Duncan Sands2010-03-15
* Do not ignore arg_size() impact while counting bb instructions.Devang Patel2010-03-13
* Remove extra parameter.Devang Patel2010-03-13
* Do not overestimate code size reduction in presense of debug info.Devang Patel2010-03-13
* 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
* Permit inlining into huge functions. This heuristic is ancient, and inliningJakob Stoklund Olesen2010-03-09
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-16
* Update CodeMetrics to count 'big' function calls explicitly.Jakob Stoklund Olesen2010-02-05
* Fix inline cost predictions with SCIENCE.Jakob Stoklund Olesen2010-01-26
* Revert test polarity to match comment and desired outcome. Remove undeserved ...Jakob Stoklund Olesen2010-01-26
* Remove dead code.Jakob Stoklund Olesen2010-01-26
* Skip calculation of ArgumentWeights if it will never be used.Jakob Stoklund Olesen2010-01-26
* Pad my commit stats by reducing indentation in this now separateEric Christopher2010-01-14
* Few minor changes that were requested. No functional change.Eric Christopher2010-01-14
* Small tweak to inline cost computation. Ext of i/fcmp results are mostly opti...Evan Cheng2010-01-14
* Reduce the inlining cost of functions that contain calls to easily,Eric Christopher2010-01-14
* Add a missing closing parenthesis, and tweak to fit in 80Duncan Sands2009-11-01
* add a comment about why we don't allow inlining indbr.Chris Lattner2009-11-01
* pull check for return inst out of loop, never inline a callee that containsChris Lattner2009-11-01
* rename indbr -> indirectbr to appease the residents of #llvm.Chris Lattner2009-10-28
* Random updates to passes for indbr, I need blockaddress before I can do much ...Chris Lattner2009-10-27
* Remove FreeInst.Victor Hernandez2009-10-26
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-23
* Remove MallocInst from LLVM Instructions.Victor Hernandez2009-10-17
* Compute a full cost value even when a setjmp call is found.Dan Gohman2009-10-13
* Split code not specific to Function inlining out into a separate class,Dan Gohman2009-10-13