index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
/
Scalar
/
TailRecursionElimination.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[TRE] Remove dead code
Sanjoy Das
2016-11-07
1
-1
/
+0
*
Avoid tail recursion elimination across calls with operand bundles
Sanjoy Das
2016-11-07
1
-1
/
+2
*
Use the range variant of find/find_if instead of unpacking begin/end
David Majnemer
2016-08-12
1
-1
/
+1
*
[PM] Port TailCallElim
Sean Silva
2016-07-06
1
-2
/
+19
*
Apply clang-tidy's modernize-loop-convert to most of lib/Transforms.
Benjamin Kramer
2016-06-26
1
-4
/
+4
*
[TailRecursionElimination] Refactor/cleanup.
Davide Italiano
2016-06-02
1
-150
/
+121
*
isSafeToLoadUnconditionally support queries without a context
Artur Pilipenko
2016-04-27
1
-1
/
+2
*
Re-commit optimization bisect support (r267022) without new pass manager supp...
Andrew Kaylor
2016-04-22
1
-1
/
+1
*
Revert "Initial implementation of optimization bisect support."
Vedant Kumar
2016-04-22
1
-1
/
+1
*
Initial implementation of optimization bisect support.
Andrew Kaylor
2016-04-21
1
-1
/
+1
*
Change isSafeToLoadUnconditionally arguments order. Separated from http://rev...
Artur Pilipenko
2016-01-15
1
-2
/
+2
*
[TRE] Simplify code with range-based loops and std::find.
Benjamin Kramer
2016-01-09
1
-7
/
+2
*
[OperandBundles] Have TailCallElim play nice with operand bundles
David Majnemer
2015-12-23
1
-2
/
+2
*
Add 'notail' marker for call instructions.
Akira Hatanaka
2015-11-06
1
-2
/
+4
*
Scalar: Remove remaining ilist iterator implicit conversions
Duncan P. N. Exon Smith
2015-10-13
1
-16
/
+14
*
Add GlobalsAA as preserved to a bunch of transforms
James Molloy
2015-09-10
1
-0
/
+2
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-2
/
+2
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-2
/
+2
*
Remove DisableTailCalls from TargetOptions and the code in resetTargetOptions
Akira Hatanaka
2015-06-09
1
-0
/
+3
*
Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.
Benjamin Kramer
2015-03-23
1
-1
/
+1
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-5
/
+2
*
Make DataLayout Non-Optional in the Module
Mehdi Amini
2015-03-04
1
-1
/
+1
*
TRE: Just erase dead BBs and tweak the iteration loop not to increment the de...
Benjamin Kramer
2015-02-28
1
-19
/
+7
*
remove function names from comments; NFC
Sanjay Patel
2015-02-27
1
-20
/
+15
*
[multiversion] Thread a function argument through all the callers of the
Chandler Carruth
2015-02-01
1
-1
/
+1
*
[PM] Change the core design of the TTI analysis to use a polymorphic
Chandler Carruth
2015-01-31
1
-3
/
+3
*
Fix tail recursion elimination
Arnaud A. de Grandmaison
2014-11-19
1
-3
/
+25
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-1
/
+1
*
Revert "Transforms: reapply SVN r219899"
Reid Kleckner
2014-11-04
1
-2
/
+8
*
Transforms: reapply SVN r219899
Saleem Abdulrasool
2014-10-28
1
-8
/
+2
*
Fix a long-standing miscompile in the load analysis that was uncovered
Chandler Carruth
2014-10-19
1
-1
/
+5
*
Revert "TRE: make TRE a bit more aggressive"
Rafael Espindola
2014-10-17
1
-2
/
+8
*
TRE: make TRE a bit more aggressive
Saleem Abdulrasool
2014-10-16
1
-8
/
+2
*
We may visit a call that uses an alloca multiple times in callUsesLocalStack,...
Nick Lewycky
2014-07-23
1
-5
/
+3
*
Revert "[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) ite...
Duncan P. N. Exon Smith
2014-07-21
1
-2
/
+3
*
[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) iterator ra...
Manuel Jacob
2014-07-20
1
-3
/
+2
*
Add support for missed and analysis optimization remarks.
Diego Novillo
2014-05-22
1
-8
/
+8
*
Improve wording to make it sounds more like a change than an analysis.
Nick Lewycky
2014-05-08
1
-2
/
+3
*
Simplify and fix incorrect comment. No functionality change.
Richard Smith
2014-05-08
1
-22
/
+15
*
Detabify.
Nick Lewycky
2014-05-06
1
-2
/
+2
*
Improve 'tail' call marking in TRE. A bootstrap of clang goes from 375k calls...
Nick Lewycky
2014-05-05
1
-73
/
+241
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-18
/
+18
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
Fix PR7272 in -tailcallelim instead of the inliner
Reid Kleckner
2014-04-21
1
-0
/
+9
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-2
/
+2
*
[C++11] Make this interface accept const Use pointers and use override
Chandler Carruth
2014-03-05
1
-2
/
+2
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-2
/
+2
*
[Modules] Move CFG.h to the IR library as it defines graph traits over
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move ValueHandle into the IR library where Value itself lives.
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move CallSite into the IR library where it belogs. It is
Chandler Carruth
2014-03-04
1
-1
/
+1
[next]