index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
LoopPass.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix this debug output to handle the case where the loop has been deleted.
Dan Gohman
2009-09-28
1
-1
/
+2
*
Include the name of the loop header in debug messages.
Dan Gohman
2009-09-28
1
-4
/
+9
*
Move the dominator verification code out of special code embedded within
Dan Gohman
2009-09-28
1
-4
/
+12
*
Move this assert to check the condition as soon as it is known.
Dan Gohman
2009-09-28
1
-1
/
+1
*
Extend the StartPassTimer and StopPassTimer functions so that the
Dan Gohman
2009-09-28
1
-2
/
+2
*
Fix an old copy+pasto.
Dan Gohman
2009-09-27
1
-1
/
+1
*
Extract the code for inserting a loop into the loop queue into
Dan Gohman
2009-09-27
1
-3
/
+7
*
When a loop is deleted, immediately release all of the active
Dan Gohman
2009-09-27
1
-0
/
+9
*
Delete a bogus comment.
Dan Gohman
2009-09-27
1
-1
/
+0
*
Don't try to verify a LoopPass analysis if the loop has been deleted.
Dan Gohman
2009-09-03
1
-1
/
+3
*
convert LoopInfo.h and GraphWriter.h to use raw_ostream
Chris Lattner
2009-08-23
1
-1
/
+1
*
Call doInitialization(), releaseMemory(), and doFinalization() for on-the-fly...
Torok Edwin
2009-06-29
1
-0
/
+3
*
Before deleting a basic block, give other loop passes a chance cleanup analys...
Devang Patel
2009-03-25
1
-0
/
+7
*
Sprinkle some PrettyStackEntry magic into the passmanager. With this, we now
Chris Lattner
2009-03-06
1
-5
/
+7
*
Add a method to ScalarEvolution for telling it when a loop has been
Dan Gohman
2009-02-17
1
-3
/
+0
*
Move dumpPassStructure out of line.
Dan Gohman
2009-02-17
1
-0
/
+10
*
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-09-04
1
-1
/
+1
*
Don't call getAnalysisUsage unless -debug-pass is enabled. This speeds
Chris Lattner
2008-08-08
1
-4
/
+2
*
Fix spelling of "hierarchy" in comments.
Dan Gohman
2008-07-11
1
-1
/
+1
*
Keep track of inherited analysis (e.g. dominator tree).
Devang Patel
2008-07-03
1
-0
/
+3
*
Fix typos in comments.
Devang Patel
2008-07-01
1
-1
/
+1
*
Add dom info verifier.
Devang Patel
2008-07-01
1
-0
/
+3
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
*
Use empty() member functions when that's what's being tested for instead
Dan Gohman
2007-10-03
1
-2
/
+2
*
ooops...
Devang Patel
2007-09-18
1
-1
/
+1
*
- Use correct header for SCEV inside LoopPass.cpp
Anton Korobeynikov
2007-08-20
1
-1
/
+1
*
Introduce Simple Analysis interface for loop passes.
Devang Patel
2007-07-31
1
-0
/
+21
*
Verify loop info.
Devang Patel
2007-07-19
1
-14
/
+2
*
Replace mysterious code causing a g++-4.2 warning
Duncan Sands
2007-07-19
1
-12
/
+6
*
Add loop info verification mechanism.
Devang Patel
2007-06-29
1
-1
/
+13
*
Drop 'const'
Devang Patel
2007-05-03
1
-1
/
+1
*
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-02
1
-1
/
+1
*
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-05-01
1
-1
/
+4
*
Now IndVarSimplify is a LoopPass.
Devang Patel
2007-03-07
1
-0
/
+3
*
Now LoopUnswitch is a LoopPass.
Devang Patel
2007-03-07
1
-1
/
+2
*
Insert loop into LQ before visiting children.
Devang Patel
2007-03-06
1
-1
/
+1
*
Use schedulePass() instead of assignPassManager() to add new LPPassManager.
Devang Patel
2007-03-06
1
-3
/
+11
*
Add LPPassManager::insertLoop().
Devang Patel
2007-03-06
1
-0
/
+32
*
LPPassManager::deleteLoopFromQueue() add meat. Cut-n-paste code from
Devang Patel
2007-03-06
1
-7
/
+71
*
LPPassManager. Implement preparePassManager() hook.
Devang Patel
2007-03-06
1
-0
/
+25
*
LPPassManager : Add initialization and finalizatino hooks.
Devang Patel
2007-03-06
1
-0
/
+20
*
Use std::deque to manage loop queue inside LPPassManager.
Devang Patel
2007-03-06
1
-40
/
+6
*
Avoid constructing std::strings unless pass debugging is ON.
Devang Patel
2007-03-05
1
-7
/
+3
*
Fix thinko.
Devang Patel
2007-02-23
1
-1
/
+2
*
Loop passes are set up to accept pointer.
Devang Patel
2007-02-23
1
-1
/
+1
*
Teach LoopPass to assign itself one Loop Pass Manager.
Devang Patel
2007-02-23
1
-0
/
+41
*
Add facility that allows LoopPass to re-insert a loop into
Devang Patel
2007-02-23
1
-0
/
+13
*
Add LPPassManager interface that LoopPass can use to skip
Devang Patel
2007-02-23
1
-0
/
+13
*
Populate and walk loop queue.
Devang Patel
2007-02-22
1
-6
/
+20
*
Add LoopQueue. This is used by loop pass manager to manage loop nest.
Devang Patel
2007-02-22
1
-0
/
+36
[next]