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
/
Analysis
/
LazyCallGraph.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[LCG] Add utilities to compute parent and ascestor relationships between
Chandler Carruth
2016-11-22
1
-0
/
+58
*
[LCG] Add the necessary functionality to the LazyCallGraph to support inlining.
Chandler Carruth
2016-10-12
1
-1
/
+164
*
[LCG] Redesign the lazy post-order iteration mechanism for the
Chandler Carruth
2016-09-16
1
-103
/
+127
*
[LCG] Clean up and make NDEBUG verify calls more rigorous with
Chandler Carruth
2016-09-04
1
-32
/
+38
*
[LCG] A NFC refactoring to extract the logic for doing
Chandler Carruth
2016-09-04
1
-111
/
+184
*
[PM] Introduce basic update capabilities to the new PM's CGSCC pass
Chandler Carruth
2016-08-24
1
-23
/
+19
*
Use the range variant of find/find_if instead of unpacking begin/end
David Majnemer
2016-08-12
1
-20
/
+17
*
Use the range variant of find instead of unpacking begin/end
David Majnemer
2016-08-11
1
-2
/
+1
*
Use range algorithms instead of unpacking begin/end
David Majnemer
2016-08-11
1
-2
/
+1
*
[LCG] Hoist the definitions of the stream operator friends to be inline
Chandler Carruth
2016-07-07
1
-42
/
+0
*
[PM] Improve the debugging and logging facilities of the CGSCC bits of
Chandler Carruth
2016-06-27
1
-0
/
+53
*
Add a super basic LazyCallGraph DOT printer.
Sean Silva
2016-06-18
1
-0
/
+32
*
[PM] Make the AnalysisManager parameter to run methods a reference.
Chandler Carruth
2016-03-11
1
-2
/
+2
*
[PM] Implement the final conclusion as to how the analysis IDs should
Chandler Carruth
2016-03-11
1
-1
/
+1
*
[PM] Appease mingw32's auto-import DLL build with minimal tweaks, with fix fo...
NAKAMURA Takumi
2016-02-28
1
-0
/
+2
*
Revert r262185, "[PM] Appease mingw32's auto-import DLL build with minimal tw...
NAKAMURA Takumi
2016-02-28
1
-2
/
+0
*
[PM] Appease mingw32's auto-import DLL build with minimal tweaks.
NAKAMURA Takumi
2016-02-28
1
-0
/
+2
*
[PM] Introduce CRTP mixin base classes to help define passes and
Chandler Carruth
2016-02-26
1
-2
/
+0
*
[LCG] Construct an actual call graph with call-edge SCCs nested inside
Chandler Carruth
2016-02-17
1
-388
/
+1181
*
[LCG] Build an edge abstraction for the LazyCallGraph and use it to
Chandler Carruth
2016-02-02
1
-133
/
+160
*
[lcg] Fix a few more formatting goofs found by clang-format. NFC.
Chandler Carruth
2015-12-28
1
-4
/
+4
*
Revert r225854: [PM] Move the LazyCallGraph printing functionality to
Chandler Carruth
2015-01-14
1
-38
/
+36
*
[PM] Move the LazyCallGraph printing functionality to a print method.
Chandler Carruth
2015-01-13
1
-36
/
+38
*
[PM] Switch the new pass manager to use a reference-based API for IR
Chandler Carruth
2015-01-05
1
-3
/
+2
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-5
/
+5
*
Fix typos
Alp Toker
2014-05-15
1
-2
/
+2
*
[LCG] Add the last (and most complex) of the edge insertion mutation
Chandler Carruth
2014-05-04
1
-0
/
+119
*
[LCG] Add the other simple edge insertion API to the call graph. This
Chandler Carruth
2014-05-01
1
-0
/
+15
*
[LCG] Don't lookup the child SCC twice. Spotted this by inspection, and
Chandler Carruth
2014-05-01
1
-2
/
+2
*
[LCG] Add some basic methods for querying the parent/child relationships
Chandler Carruth
2014-05-01
1
-0
/
+15
*
[LCG] Add the really, *really* boring edge insertion case: adding an
Chandler Carruth
2014-04-30
1
-4
/
+19
*
[LCG] Actually test the *basic* edge removal bits (IE, the non-SCC
Chandler Carruth
2014-04-30
1
-4
/
+8
*
[LCG] Add the most basic of edge insertion to the lazy call graph. This
Chandler Carruth
2014-04-28
1
-0
/
+15
*
[LCG] Make the return of the IntraSCC removal method actually match its
Chandler Carruth
2014-04-28
1
-5
/
+3
*
[LCG] Re-organize the methods for mutating a call graph to make their
Chandler Carruth
2014-04-27
1
-76
/
+78
*
[LCG] Rather than removing nodes from the SCC entry set when we process
Chandler Carruth
2014-04-26
1
-6
/
+7
*
[LCG] Rotate the full SCC finding algorithm to avoid round-trips through
Chandler Carruth
2014-04-26
1
-21
/
+23
*
[LCG] Hoist the main DFS loop out of the edge removal function. This
Chandler Carruth
2014-04-26
1
-74
/
+70
*
[LCG] In the incremental SCC re-formation, lift the node currently being
Chandler Carruth
2014-04-26
1
-30
/
+38
*
[LCG] Special case the removal of self edges. These don't impact the SCC
Chandler Carruth
2014-04-26
1
-0
/
+6
*
[LCG] Refactor the duplicated code I added in my last commit here into
Chandler Carruth
2014-04-26
1
-23
/
+14
*
[LCG] During the incremental update of an SCC, switch to using the
Chandler Carruth
2014-04-25
1
-26
/
+26
*
[LCG] During the incremental re-build of an SCC after removing an edge,
Chandler Carruth
2014-04-25
1
-4
/
+5
*
[LCG] Rather than doing a linear time SmallSetVector removal of each
Chandler Carruth
2014-04-25
1
-6
/
+7
*
[LCG] Remove a completely unnecessary loop. It wasn't even doing any
Chandler Carruth
2014-04-25
1
-60
/
+54
*
[LCG] Now that the loop structure of the core SCC finding routine is
Chandler Carruth
2014-04-25
1
-1
/
+8
*
[LCG] Switch a weird do/while loop that actually couldn't fail its
Chandler Carruth
2014-04-24
1
-5
/
+4
*
[LCG] Incorporate the core trick of improvements on the naive Tarjan's
Chandler Carruth
2014-04-24
1
-41
/
+61
*
[LCG] Rotate logic applied to the top of the DFSStack to instead be
Chandler Carruth
2014-04-24
1
-25
/
+24
*
[LCG] Switch the parent SCC tracking from a SmallSetVector to
Chandler Carruth
2014-04-24
1
-2
/
+2
[prev]
[next]