aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/LiveIntervalAnalysis.h
Commit message (Expand)AuthorAgeFilesLines
* Switch over to MachineLoopInfo.Evan Cheng2007-12-111-4/+5
* Fix for PR1831: if all defs of an interval are re-materializable, then it's a...Evan Cheng2007-12-061-2/+8
* - Mark last use of a split interval as kill instead of letting spiller track it.Evan Cheng2007-12-051-0/+2
* Add a argument to storeRegToStackSlot and storeRegToAddr to specify whetherEvan Cheng2007-12-051-1/+4
* Remove redundant foldMemoryOperand variants and other code clean up.Evan Cheng2007-12-021-2/+1
* Allow some reloads to be folded in multi-use cases. Specifically testl r, r -...Evan Cheng2007-12-011-1/+2
* Do not fold reload into an instruction with multiple uses. It issues one extr...Evan Cheng2007-11-301-2/+3
* Fix a major performance issue with splitting. If there is a def (not def/use)Evan Cheng2007-11-291-4/+19
* Fixed various live interval splitting bugs / compile time issues.Evan Cheng2007-11-291-4/+9
* Recover compile time regression.Evan Cheng2007-11-281-3/+3
* Live interval splitting:Evan Cheng2007-11-171-6/+19
* Fixed a compilation error.Hartmut Kaiser2007-11-131-0/+1
* Refactor some code.Evan Cheng2007-11-121-3/+27
* There are times when the coalescer would not coalesce away a copy but the copyEvan Cheng2007-11-031-0/+5
* Remove unnecessary include.Evan Cheng2007-10-181-1/+0
* Apply Chris' suggestions.Evan Cheng2007-10-171-1/+1
* Clean up code that calculate MBB live-in's.Evan Cheng2007-10-171-0/+11
* EXTRACT_SUBREG coalescing support. The coalescer now treats EXTRACT_SUBREG likeEvan Cheng2007-10-121-7/+2
* Use pool allocator for all the VNInfo's to improve memory access locality. Th...Evan Cheng2007-09-051-0/+7
* Add a variant of foldMemoryOperand to fold any load / store, not just load / ...Evan Cheng2007-08-301-5/+7
* Change LiveRange so it keeps a pointer to the VNInfo rather than an index.Evan Cheng2007-08-291-1/+1
* Re-implement trivial rematerialization. This allows def MIs whose live interv...Evan Cheng2007-08-131-7/+30
* Factor live variable analysis so it does not do register coalescingDavid Greene2007-06-081-114/+30
* Fix for PR1406:Evan Cheng2007-05-141-1/+5
* Fix typo in comment.Nick Lewycky2007-05-061-1/+1
* Drop 'const'Devang Patel2007-05-031-1/+1
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-1/+1
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-0/+3
* Fix for PR1306.Evan Cheng2007-04-251-1/+1
* Don't populate TryAgainList when coalescing only physical registers with virt...Evan Cheng2007-04-181-1/+1
* Copy coalescing change to prevent a physical register from being pin to aEvan Cheng2007-04-171-2/+6
* Ugh. Copy coalescer does not update register numbers.Evan Cheng2007-04-021-0/+4
* Track all joined registers and eliminate unneeded kills after all joining are...Evan Cheng2007-03-011-3/+10
* Joining an interval with a dead copy instruction. Shorten the live range to t...Evan Cheng2007-02-261-3/+5
* Copy and paste silliness.Evan Cheng2007-02-221-2/+1
* Remove unnecessary isKill properties if a live range has been lengthened due ...Evan Cheng2007-02-221-0/+11
* Allow for live in registers for eh landing pads.Jim Laskey2007-02-211-1/+3
* Re-apply my liveintervalanalysis changes. Now with PR1207 fixes.Evan Cheng2007-02-191-2/+16
* For PR1207:Reid Spencer2007-02-191-16/+2
* - Changes how function livein's are handled, they now have a start index of 0.Evan Cheng2007-02-171-2/+16
* Use BitVector instead of vector<bool> which can be extremely slow.Evan Cheng2007-02-151-1/+2
* rename DenseMap to IndexedMap.Chris Lattner2007-02-011-2/+2
* Added an automatic cast to "std::ostream*" etc. from OStream. We then canBill Wendling2006-12-171-0/+3
* Added a new method "CreateNewLiveInterval" which, given a list ofBill Wendling2006-11-161-0/+5
* Keep track of the start of MBB's in a separate map from instructions. ThisChris Lattner2006-09-151-2/+17
* revert accidentally committed fileChris Lattner2006-09-141-23/+3
* Remove dead methods, add getNumBlockIDs() methodChris Lattner2006-09-141-3/+23
* Avoid beating on the mi2i map when we know the answer already.Chris Lattner2006-09-031-4/+6
* Fix a typo pointed out by GaborChris Lattner2006-09-021-1/+1
* Iteration is required for some cases, even if they don't occur in crafty.Chris Lattner2006-09-021-3/+15