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
*
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
*
[LCG] We don't actually need a set in each SCC to track the nodes. We
Chandler Carruth
2014-04-24
1
-7
/
+1
*
[LCG] Normalize the post-order SCC iterator to just iterate over the SCC
Chandler Carruth
2014-04-23
1
-2
/
+2
*
[LCG] Switch the primary node iterator to be a *much* more normal C++
Chandler Carruth
2014-04-23
1
-39
/
+33
*
[LCG] Make the insertion and query paths into the LCG which cannot fail
Chandler Carruth
2014-04-23
1
-4
/
+4
*
[LCG] Switch the SCC lookup to be in terms of call graph nodes rather
Chandler Carruth
2014-04-23
1
-8
/
+8
*
[LCG] Switch the primary SCC building code to use the negative low-link
Chandler Carruth
2014-04-23
1
-2
/
+4
*
[LCG] Add the first round of mutation support to the lazy call graph.
Chandler Carruth
2014-04-23
1
-0
/
+233
*
[LCG] Implement Tarjan's algorithm correctly this time. We have to walk
Chandler Carruth
2014-04-23
1
-34
/
+42
*
[LCG] Add a unittest for the LazyCallGraph. I had a weak moment and
Chandler Carruth
2014-04-23
1
-0
/
+2
*
[LCG] Hoist the logic for forming a new SCC from the top of the DFSStack
Chandler Carruth
2014-04-23
1
-41
/
+47
*
[LCG] Switch the Callee sets to be DenseMaps pointing to the index into
Chandler Carruth
2014-04-23
1
-7
/
+8
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
[LCG] Add some basic debug output to the LCG pass.
Chandler Carruth
2014-04-21
1
-2
/
+17
*
[LCG] Fix the bugs that Ben pointed out in code review (and the MSan bot
Chandler Carruth
2014-04-18
1
-3
/
+7
*
[LCG] Remove all of the complexity stemming from supporting copying.
Chandler Carruth
2014-04-18
1
-42
/
+21
*
[LCG] Add support for building persistent and connected SCCs to the
Chandler Carruth
2014-04-18
1
-4
/
+118
*
[LCG] Just move the allocator (now that we can) when moving a call
Chandler Carruth
2014-04-17
1
-28
/
+14
*
[LCG] Remove the Module reference member which we weren't using for
Chandler Carruth
2014-04-17
1
-3
/
+3
*
[LCG] Ran clang-format over this too and it pointed out some fixes.
Chandler Carruth
2014-03-10
1
-4
/
+6
*
[LCG] Simplify a bunch of the LCG code with range for loops and auto.
Chandler Carruth
2014-03-09
1
-37
/
+29
*
[Layering] Move InstVisitor.h into the IR library as it is pretty
Chandler Carruth
2014-03-06
1
-1
/
+1
[next]