summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveInterval.cpp
Commit message (Expand)AuthorAge
* Fix PR4034. Bug in LiveInterval::join when it's compacting new valno's.Evan Cheng2009-04-28
* Also delete last unused val#.Evan Cheng2009-04-27
* Reuse unused val#'s to avoid running out of memory in extreme cases.Evan Cheng2009-04-25
* Do not share a single unknown val# for all the live ranges merged into a phys...Evan Cheng2009-04-25
* Add a new LiveInterval::overlaps(). It checks if the live interval overlaps a...Evan Cheng2009-04-18
* Implement support for using modeling implicit-zero-extension on x86-64Dan Gohman2009-04-08
* Two coalescer fixes in one.Evan Cheng2009-03-11
* MergeValueInto is too smart: it might choose to do the merge the opposite dir...Owen Anderson2009-02-02
* Exit with nice warnings when register allocator run out of registers.Evan Cheng2009-01-29
* Fix comment about removeRange.Evan Cheng2009-01-29
* Next round of earlyclobber handling. Approach theDale Johannesen2008-09-24
* Remove AsmThatEarlyClobber etc. from LiveIntervalAnalysisDale Johannesen2008-09-19
* Use empty() instead of begin() == end().Dan Gohman2008-08-14
* Instead of adding an isSS field to LiveInterval to denote stack slot. Use top...Evan Cheng2008-06-23
* Add a stack slot coloring pass. Not yet enabled.Evan Cheng2008-06-04
* Rename PrintableName to Name.Bill Wendling2008-02-26
* Change "Name" to "AsmName" in the target register info. Gee, a refactoring toolBill Wendling2008-02-26
* Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov2008-02-20
* - Removing the infamous r2rMap_ and rep() method. Now the coalescer will updateEvan Cheng2008-02-15
* - Added removeValNo() to remove all live ranges of a particular value#.Evan Cheng2008-02-13
* Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman2008-02-10
* Fixed a bug in MergeValueInAsValue() pointed out by David Greene. Replace val...Evan Cheng2008-01-30
* remove dead #includeChris Lattner2008-01-14
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Replace the odd kill# hack with something less fragile.Evan Cheng2007-11-29
* Kill info update bug.Evan Cheng2007-11-29
* Fix MergeValueInAsValue(). It allows overlapping live ranges but should replaceEvan Cheng2007-10-17
* When coalescing an EXTRACT_SUBREG and the dst register is a physical register,Evan Cheng2007-10-14
* EXTRACT_SUBREG coalescing support. The coalescer now treats EXTRACT_SUBREG likeEvan Cheng2007-10-12
* Constify to catch bugs.David Greene2007-09-06
* Fix a memory leak.Evan Cheng2007-09-06
* Use pool allocator for all the VNInfo's to improve memory access locality. Th...Evan Cheng2007-09-05
* More tweaks to improve compile time.Evan Cheng2007-09-01
* Remove an unnecessary element, saving 4 bytes per LiveInterval.Evan Cheng2007-08-31
* Change LiveRange so it keeps a pointer to the VNInfo rather than an index.Evan Cheng2007-08-29
* Recover most of the compile time regression due to recent live interval changes.Evan Cheng2007-08-28
* Kill info update bugs.Evan Cheng2007-08-14
* Kill info update bugs.Evan Cheng2007-08-13
* Code to maintain kill information during register coalescing.Evan Cheng2007-08-11
* Clean up and bug fix.Evan Cheng2007-08-08
* - Each val# can have multiple kills.Evan Cheng2007-08-08
* Remove a dead assertion.Evan Cheng2007-08-08
* - LiveInterval value#'s now have 3 components: def instruction #,Evan Cheng2007-08-07
* Add a register allocation preference field; add a method to compute size of a...Evan Cheng2007-04-17
* Added an automatic cast to "std::ostream*" etc. from OStream. We then canBill Wendling2006-12-17
* The best unbreakage yet, addressing Bill's concerns.Jeff Cohen2006-12-16
* An even better unbreakage...Jeff Cohen2006-12-15
* Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling2006-12-07
* Converted to using llvm streams instead of <iostream>sBill Wendling2006-11-29
* Put the #include for a module first.Bill Wendling2006-11-28