summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/TailRecursionElimination.cpp
Commit message (Expand)AuthorAge
* Add support for missed and analysis optimization remarks.Diego Novillo2014-05-22
* Improve wording to make it sounds more like a change than an analysis.Nick Lewycky2014-05-08
* Simplify and fix incorrect comment. No functionality change.Richard Smith2014-05-08
* Detabify.Nick Lewycky2014-05-06
* Improve 'tail' call marking in TRE. A bootstrap of clang goes from 375k calls...Nick Lewycky2014-05-05
* [C++] Use 'nullptr'. Transforms edition.Craig Topper2014-04-25
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* Fix PR7272 in -tailcallelim instead of the inlinerReid Kleckner2014-04-21
* [C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth2014-03-09
* [C++11] Make this interface accept const Use pointers and use overrideChandler Carruth2014-03-05
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-05
* [Modules] Move CFG.h to the IR library as it defines graph traits overChandler Carruth2014-03-04
* [Modules] Move ValueHandle into the IR library where Value itself lives.Chandler Carruth2014-03-04
* [Modules] Move CallSite into the IR library where it belogs. It isChandler Carruth2014-03-04
* [C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer2014-03-02
* Switch all uses of LLVM_OVERRIDE to just use 'override' directly.Craig Topper2014-03-02
* Disable most IR-level transform passes on functions marked 'optnone'.Paul Robinson2014-02-06
* TRE: Move class into anonymous namespace.Benjamin Kramer2013-07-24
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-14
* Teach TailRecursionElimination to handle certain cases of nocapture escaping ...Michael Gottesman2013-07-11
* Begin fleshing out an interface in TTI for modelling the costs ofChandler Carruth2013-01-22
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Revert r166407 because it caused analyzer tests to crash and broke self-host ...Argyrios Kyrtzidis2012-10-22
* Reapply r166405, teaching tailcallelim to be smarter about nocapture, with aNick Lewycky2012-10-22
* Revert r166405, "Teach TailRecursionElimination to consider 'nocapture' when ...NAKAMURA Takumi2012-10-22
* Teach TailRecursionElimination to consider 'nocapture' when deciding whetherNick Lewycky2012-10-21
* Clean whitespaces.Nadav Rotem2012-07-24
* A pile of long over-due refactorings here. There are some very, *very*Chandler Carruth2012-05-04
* Correct over-zealous removal of hack.Bill Wendling2011-10-17
* Now that we have the ReturnsTwice function attribute, this method isBill Wendling2011-10-17
* Don't do tail calls in a function that call setjmp. The stack might beRafael Espindola2011-05-16
* Do not lose line number info while eliminating tail call.Devang Patel2011-04-28
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-30
* (Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad2011-03-30
* Unbreak the MSVC build.Francois Pichet2011-01-29
* Add a test for TCE return duplication.Evan Cheng2011-01-29
* Re-apply r124518 with fix. Watch out for invalidated iterator.Evan Cheng2011-01-29
* Revert r124518. It broke Linux self-host.Evan Cheng2011-01-29
* Re-commit r124462 with fixes. Tail recursion elim will now dup ret into uncon...Evan Cheng2011-01-29
* Have a few places that want to simplify phi nodes use SimplifyInstructionDuncan Sands2010-11-16
* 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
* tidy upChris Lattner2010-08-31
* 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
* Handle the case of a tail recursion in which the tail call is followedDuncan Sands2010-07-13