summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/LoopPass.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
| | | | llvm-svn: 45418
* Use empty() member functions when that's what's being tested for insteadDan Gohman2007-10-031-2/+2
| | | | | | of comparing begin() and end(). llvm-svn: 42585
* ooops...Devang Patel2007-09-181-1/+1
| | | | llvm-svn: 42118
* - Use correct header for SCEV inside LoopPass.cppAnton Korobeynikov2007-08-201-1/+1
| | | | | | - Move SCEVExpander::expand() out-of-line workarounding possible toolchain bug llvm-svn: 41197
* Introduce Simple Analysis interface for loop passes.Devang Patel2007-07-311-0/+21
| | | | | | Right now, this interface provides hooks for only to operations, 1) clone basic block 2) delete value. llvm-svn: 40625
* Verify loop info.Devang Patel2007-07-191-14/+2
| | | | llvm-svn: 40062
* Replace mysterious code causing a g++-4.2 warningDuncan Sands2007-07-191-12/+6
| | | | | | with hopefully correct code that pleases g++-4.2. llvm-svn: 40051
* Add loop info verification mechanism.Devang Patel2007-06-291-1/+13
| | | | llvm-svn: 37822
* Drop 'const'Devang Patel2007-05-031-1/+1
| | | | llvm-svn: 36662
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-1/+1
| | | | | | | Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass identification. llvm-svn: 36652
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-1/+4
| | | | llvm-svn: 36632
* Now IndVarSimplify is a LoopPass.Devang Patel2007-03-071-0/+3
| | | | llvm-svn: 35003
* Now LoopUnswitch is a LoopPass.Devang Patel2007-03-071-1/+2
| | | | llvm-svn: 34992
* Insert loop into LQ before visiting children.Devang Patel2007-03-061-1/+1
| | | | llvm-svn: 34982
* Use schedulePass() instead of assignPassManager() to add new LPPassManager.Devang Patel2007-03-061-3/+11
| | | | | | This ensures that require analysis info is available. llvm-svn: 34980
* Add LPPassManager::insertLoop().Devang Patel2007-03-061-0/+32
| | | | llvm-svn: 34979
* LPPassManager::deleteLoopFromQueue() add meat. Cut-n-paste code fromDevang Patel2007-03-061-7/+71
| | | | | | LoopUnswitch pass. llvm-svn: 34977
* LPPassManager. Implement preparePassManager() hook.Devang Patel2007-03-061-0/+25
| | | | llvm-svn: 34975
* LPPassManager : Add initialization and finalizatino hooks.Devang Patel2007-03-061-0/+20
| | | | llvm-svn: 34968
* Use std::deque to manage loop queue inside LPPassManager.Devang Patel2007-03-061-40/+6
| | | | llvm-svn: 34943
* Avoid constructing std::strings unless pass debugging is ON.Devang Patel2007-03-051-7/+3
| | | | llvm-svn: 34933
* Fix thinko.Devang Patel2007-02-231-1/+2
| | | | llvm-svn: 34528
* Loop passes are set up to accept pointer.Devang Patel2007-02-231-1/+1
| | | | llvm-svn: 34527
* Teach LoopPass to assign itself one Loop Pass Manager.Devang Patel2007-02-231-0/+41
| | | | llvm-svn: 34510
* Add facility that allows LoopPass to re-insert a loop intoDevang Patel2007-02-231-0/+13
| | | | | | Loop Pass Manager's queue. llvm-svn: 34509
* Add LPPassManager interface that LoopPass can use to skipDevang Patel2007-02-231-0/+13
| | | | | | rest of the passes in the queue for a loop. llvm-svn: 34508
* Populate and walk loop queue.Devang Patel2007-02-221-6/+20
| | | | llvm-svn: 34505
* Add LoopQueue. This is used by loop pass manager to manage loop nest.Devang Patel2007-02-221-0/+36
| | | | llvm-svn: 34504
* Add Loop Pass Manager.Devang Patel2007-02-221-0/+69
llvm-svn: 34487
OpenPOWER on IntegriCloud