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
/
LoopPass.cpp
Age
Commit message (
Expand
)
Author
2009-09-03
Don't try to verify a LoopPass analysis if the loop has been deleted.
Dan Gohman
2009-08-23
convert LoopInfo.h and GraphWriter.h to use raw_ostream
Chris Lattner
2009-06-29
Call doInitialization(), releaseMemory(), and doFinalization() for on-the-fly...
Torok Edwin
2009-03-25
Before deleting a basic block, give other loop passes a chance cleanup analys...
Devang Patel
2009-03-06
Sprinkle some PrettyStackEntry magic into the passmanager. With this, we now
Chris Lattner
2009-02-17
Add a method to ScalarEvolution for telling it when a loop has been
Dan Gohman
2009-02-17
Move dumpPassStructure out of line.
Dan Gohman
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-07-11
Fix spelling of "hierarchy" in comments.
Dan Gohman
2008-07-03
Keep track of inherited analysis (e.g. dominator tree).
Devang Patel
2008-07-01
Fix typos in comments.
Devang Patel
2008-07-01
Add dom info verifier.
Devang Patel
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-10-03
Use empty() member functions when that's what's being tested for instead
Dan Gohman
2007-09-18
ooops...
Devang Patel
2007-08-20
- Use correct header for SCEV inside LoopPass.cpp
Anton Korobeynikov
2007-07-31
Introduce Simple Analysis interface for loop passes.
Devang Patel
2007-07-19
Verify loop info.
Devang Patel
2007-07-19
Replace mysterious code causing a g++-4.2 warning
Duncan Sands
2007-06-29
Add loop info verification mechanism.
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-03-07
Now IndVarSimplify is a LoopPass.
Devang Patel
2007-03-07
Now LoopUnswitch is a LoopPass.
Devang Patel
2007-03-06
Insert loop into LQ before visiting children.
Devang Patel
2007-03-06
Use schedulePass() instead of assignPassManager() to add new LPPassManager.
Devang Patel
2007-03-06
Add LPPassManager::insertLoop().
Devang Patel
2007-03-06
LPPassManager::deleteLoopFromQueue() add meat. Cut-n-paste code from
Devang Patel
2007-03-06
LPPassManager. Implement preparePassManager() hook.
Devang Patel
2007-03-06
LPPassManager : Add initialization and finalizatino hooks.
Devang Patel
2007-03-06
Use std::deque to manage loop queue inside LPPassManager.
Devang Patel
2007-03-05
Avoid constructing std::strings unless pass debugging is ON.
Devang Patel
2007-02-23
Fix thinko.
Devang Patel
2007-02-23
Loop passes are set up to accept pointer.
Devang Patel
2007-02-23
Teach LoopPass to assign itself one Loop Pass Manager.
Devang Patel
2007-02-23
Add facility that allows LoopPass to re-insert a loop into
Devang Patel
2007-02-23
Add LPPassManager interface that LoopPass can use to skip
Devang Patel
2007-02-22
Populate and walk loop queue.
Devang Patel
2007-02-22
Add LoopQueue. This is used by loop pass manager to manage loop nest.
Devang Patel
2007-02-22
Add Loop Pass Manager.
Devang Patel