index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
IPA
/
CallGraphSCCPass.cpp
Age
Commit message (
Expand
)
Author
2009-07-26
Remove Value::getName{Start,End}, the last of the old Name APIs.
Daniel Dunbar
2009-02-13
Reapply r64300:
Nick Lewycky
2009-02-11
Revert r64300 and r64301. These were causing the following errors respectively:
Bill Wendling
2009-02-11
Make sure the SCC pass manager initializes any contained
Duncan Sands
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-08-08
Don't call getAnalysisUsage unless -debug-pass is enabled. This speeds
Chris Lattner
2008-05-13
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-02
Add assert.
Devang Patel
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-08-10
Do not overuse std::string. Pass around char * directly.
Devang Patel
2007-08-01
More explicit keywords.
Dan Gohman
2007-07-19
Verify loop info.
Devang Patel
2007-07-19
Replace mysterious code causing a g++-4.2 warning
Duncan Sands
2007-06-21
CallGraphSCCPass manager may require other passes.
Devang Patel
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-04-16
Removed tabs everywhere except autogenerated & external files. Add make
Anton Korobeynikov
2007-03-05
Avoid constructing std::strings unless pass debugging is ON.
Devang Patel
2007-02-27
Make getPassManagerType() const.
Devang Patel
2007-02-01
Dump function names when debug-pass=Executions is used.
Devang Patel
2007-02-01
Pretty print pass manager
Devang Patel
2007-01-29
Use StartPassTimer() and StopPassManager()
Devang Patel
2007-01-29
Measure timings.
Devang Patel
2007-01-26
Remove dead code.
Devang Patel
2007-01-23
Fix typo.
Devang Patel
2007-01-23
Add CallGraphSCCPass::assignPassManager().
Devang Patel
2007-01-17
Add CGPassManager.
Devang Patel
2005-04-21
Remove trailing whitespace
Misha Brukman
2004-09-20
'Pass' should now not be derived from by clients. Instead, they should derive
Chris Lattner
2004-09-01
Changes For Bug 352
Reid Spencer
2004-04-20
Pass the callgraph not the module
Chris Lattner
2004-04-20
Add the ability for SCC passes to initialize and finalize themselves
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-10-20
Added LLVM project notice to the top of every C++ source file.
John Criswell
2003-08-31
Rename TarjanSCCIterator -> scc_iterator
Chris Lattner
2003-08-31
The tarjan iterator now returns a reference to the current SCC, not a possibl...
Chris Lattner
2003-08-31
Initial checkin of the CallGraphSCCPass class
Chris Lattner