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
/
DataStructure
/
BottomUpClosure.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
IndCallGraphMap is now a pointer to a new'd map.
Chris Lattner
2005-02-07
1
-3
/
+6
*
If we have an indirect call site that calls N functions, inline the N functions
Chris Lattner
2005-02-04
1
-57
/
+98
*
Eliminate some duplicated debug code
Chris Lattner
2005-02-01
1
-21
/
+0
*
Eliminate self-recursion as a special case.
Chris Lattner
2005-02-01
1
-58
/
+39
*
Eliminate use of DSCallSiteIterator in key loop. This is a half step to
Chris Lattner
2005-02-01
1
-62
/
+120
*
Do not revisit nodes in the SCC traversal. This speeds up the BU pass a bit.
Chris Lattner
2005-02-01
1
-7
/
+29
*
Fix some scary bugs that VC++ detected.
Chris Lattner
2005-01-31
1
-1
/
+1
*
* Make some methods more const correct.
Chris Lattner
2005-01-30
1
-15
/
+27
*
Make -ds-aa more useful, allowing it to be updated as xforms hack on the prog...
Chris Lattner
2005-01-24
1
-0
/
+55
*
Fix a bug that was preventing povray and namd from pool allocating correctly.
Chris Lattner
2004-11-08
1
-1
/
+1
*
Fix comment
Chris Lattner
2004-10-31
1
-1
/
+1
*
'Pass' should now not be derived from by clients. Instead, they should derive
Chris Lattner
2004-09-20
1
-1
/
+1
*
Changes For Bug 352
Reid Spencer
2004-09-01
1
-2
/
+2
*
Headers moved
Chris Lattner
2004-07-07
1
-1
/
+1
*
Minor changes, remove some debugging code that got checked in somehow.
Chris Lattner
2004-03-04
1
-7
/
+10
*
Only clone global nodes between graphs if both graphs have the global.
Chris Lattner
2004-02-27
1
-0
/
+3
*
Instead of cloning the globals for main into the globals graph at the end of
Chris Lattner
2004-02-21
1
-17
/
+11
*
There is no need to merge the globals graph into the function graphs at the
Chris Lattner
2004-02-20
1
-5
/
+1
*
When we complete the bottom-up pass, make sure to merge the globals in 'main'...
Chris Lattner
2004-02-17
1
-0
/
+17
*
Instead of callign removeTriviallyDeadNodes on the global graph every time
Chris Lattner
2004-02-08
1
-0
/
+1
*
Avoid referencing deleted DSgraphs when merging an SCC into a larger SCC. This
Chris Lattner
2004-01-31
1
-9
/
+11
*
Get clone flags right, so we don't build InlinedGlobals only to clear them
Chris Lattner
2004-01-27
1
-5
/
+3
*
Initial support for implementing clonePartiallyInto in terms of cloneReachabl...
Chris Lattner
2004-01-23
1
-1
/
+2
*
Minor code cleanup
Chris Lattner
2003-11-13
1
-2
/
+2
*
Fine-grainify namespaces for this library
Chris Lattner
2003-11-12
1
-4
/
+1
*
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-11-11
1
-0
/
+3
*
Added LLVM project notice to the top of every C++ source file.
John Criswell
2003-10-20
1
-0
/
+7
*
Functions reachable from the arguments of unresolvable call nodes should
Chris Lattner
2003-09-20
1
-1
/
+4
*
The Globals graph must become complete at the end of the BU phase!
Chris Lattner
2003-09-20
1
-0
/
+5
*
Switch from using CallInst's to represent call sites to using the LLVM
Chris Lattner
2003-09-20
1
-1
/
+2
*
DEBUG got moved to Support/Debug.h
Chris Lattner
2003-08-01
1
-0
/
+1
*
Rematerialize nodes from the globals graph into the current graph
Vikram S. Adve
2003-07-16
1
-3
/
+9
*
Fix how we are handling unreachable functions. This DRAMATICALLY improves ef...
Chris Lattner
2003-07-02
1
-0
/
+3
*
Keep track of how many inlinings are performed
Chris Lattner
2003-07-02
1
-0
/
+2
*
Make the BU closure keep track of which actual calls happen
Chris Lattner
2003-07-02
1
-2
/
+6
*
Minor cleanups
Chris Lattner
2003-07-01
1
-4
/
+5
*
Split CallSiteIterator out into DSCallSiteIterator.h, and generalize it a bit
Chris Lattner
2003-06-30
1
-101
/
+7
*
Reimplement the BU closure to collapse all SCC graphs into a single graph.
Chris Lattner
2003-06-30
1
-242
/
+52
*
Revamp DSGraphs so that they can support multiple functions in the same
Chris Lattner
2003-06-30
1
-11
/
+11
*
Propagate globals graph from the local to bu to td globals graphs. This
Chris Lattner
2003-06-28
1
-2
/
+3
*
* Changes to make NodeType be private to DSNode.
Chris Lattner
2003-06-19
1
-1
/
+1
*
Implement optimization for direct function call case. This dramatically
Chris Lattner
2003-02-05
1
-16
/
+28
*
Add better debug output
Chris Lattner
2003-02-03
1
-12
/
+20
*
Change DSGraph stuff to use hash_(set|map) instead of std::(set|map)
Chris Lattner
2003-02-01
1
-8
/
+9
*
Remove using declarations
Chris Lattner
2003-02-01
1
-2
/
+1
*
Add functions to the ban list
Chris Lattner
2003-01-31
1
-1
/
+2
*
* Eliminate boolean arguments in favor of using enums
Chris Lattner
2003-01-23
1
-6
/
+6
*
Fix logical error in TD pass: we should clear Mod/Ref bits of each caller
Vikram S. Adve
2002-11-27
1
-4
/
+7
*
Add MaxSCC statistics
Chris Lattner
2002-11-17
1
-6
/
+25
*
Inline graphs from outside the SCC into the SCC before SCC resolution starts
Chris Lattner
2002-11-12
1
-4
/
+104
[next]