| Commit message (Expand) | Author | Age | Files | Lines |
* | Expose the LiveInterval interfaces as public headers. | Chris Lattner | 2005-09-21 | 1 | -1/+1 |
* | When checking the fixed intervals, don't forget to check for register aliases. | Chris Lattner | 2005-08-30 | 1 | -5/+11 |
* | Keep track of which registers are related to which other registers. | Chris Lattner | 2005-08-23 | 1 | -21/+86 |
* | Try to avoid scanning the fixed list. On architectures with a non-stupid | Chris Lattner | 2005-08-22 | 1 | -20/+55 |
* | Move some code in the register assignment case that only needs to happen if | Chris Lattner | 2005-08-22 | 1 | -17/+26 |
* | Speed up this loop a bit, based on some observations that Nate made, and | Chris Lattner | 2005-08-22 | 1 | -8/+34 |
* | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -4/+4 |
* | Update these register allocators to set the PhysRegUsed info in MachineFunction. | Chris Lattner | 2005-01-23 | 1 | -2/+9 |
* | Silence VS warnings | Chris Lattner | 2005-01-08 | 1 | -1/+1 |
* | Move virtual method call out of loop | Chris Lattner | 2004-12-15 | 1 | -2/+2 |
* | Move virtual function call out of loop to speed up getFreePhysReg by about | Nate Begeman | 2004-12-07 | 1 | -2/+2 |
* | * There is no reason for SpillWeights to be an instance var | Chris Lattner | 2004-11-18 | 1 | -69/+71 |
* | Fix a couple of bugs where we considered physregs past their range as possibly | Chris Lattner | 2004-11-18 | 1 | -6/+11 |
* | Start using the iterators in the fixed_ intervals to avoid having to binary | Chris Lattner | 2004-11-18 | 1 | -5/+12 |
* | Add a counter for the number of times linscan has to backtrack. Start using | Chris Lattner | 2004-11-18 | 1 | -22/+36 |
* | * Improve comments/documentation substantially | Chris Lattner | 2004-11-18 | 1 | -128/+172 |
* | Rename some methods, use 'begin' instead of 'start', add new LiveInterval | Chris Lattner | 2004-11-18 | 1 | -11/+13 |
* | Do not make i have bigger scope that we need | Chris Lattner | 2004-11-05 | 1 | -2/+2 |
* | Free the VirtRegMap at the end of MachineFunction processing instead of at | Chris Lattner | 2004-09-30 | 1 | -1/+1 |
* | Fixes to make LLVM compile with vc7.1. | Alkis Evlogimenos | 2004-09-03 | 1 | -2/+2 |
* | Change the way we choose a free register: instead of picking the first | Alkis Evlogimenos | 2004-09-02 | 1 | -3/+14 |
* | We don't need to sort the added vector as unhandled intervals are | Alkis Evlogimenos | 2004-09-02 | 1 | -1/+0 |
* | Changes For Bug 352 | Reid Spencer | 2004-09-01 | 1 | -3/+3 |
* | Be a bit more efficient when processing the active and inactive | Alkis Evlogimenos | 2004-09-01 | 1 | -26/+31 |
* | Now that LiveIntervals::addIntervalsForSpills is fixed, do not require | Alkis Evlogimenos | 2004-08-27 | 1 | -2/+0 |
* | Back out this change as it broke the build last night. This should be | Alkis Evlogimenos | 2004-08-27 | 1 | -0/+2 |
* | The linear scan variants do not require the LiveVariables analysis. | Alkis Evlogimenos | 2004-08-27 | 1 | -2/+0 |
* | Convert indentation to 2 spaces. | Alkis Evlogimenos | 2004-08-04 | 1 | -438/+438 |
* | Add some comments to the backtracking code. | Alkis Evlogimenos | 2004-07-25 | 1 | -2/+17 |
* | Change std::map<unsigned, LiveInterval*> into a std::map<unsigned, | Alkis Evlogimenos | 2004-07-24 | 1 | -3/+3 |
* | Completely eliminate the intervals_ list. instead, the r2iMap_ maintains | Chris Lattner | 2004-07-24 | 1 | -9/+8 |
* | Rename LiveIntervals.(cpp|h) -> LiveIntervalAnalysis.(cpp|h) | Chris Lattner | 2004-07-23 | 1 | -1/+1 |
* | Some compile time improvements resulting in a 1sec speedup in the 5sec | Alkis Evlogimenos | 2004-07-22 | 1 | -75/+53 |
* | These files don't need to include <iostream> since they include "Support/Debu... | Brian Gaeke | 2004-07-21 | 1 | -1/+0 |
* | Remove dead code. | Alkis Evlogimenos | 2004-07-19 | 1 | -17/+0 |
* | Fix assertion to not dereference end! | Chris Lattner | 2004-07-19 | 1 | -2/+2 |
* | Add some asserts that the list of intervals returned by addIntervalsForSpills | Chris Lattner | 2004-07-19 | 1 | -6/+30 |
* | Correctly compute the ration of iterations/#intervals. | Alkis Evlogimenos | 2004-07-04 | 1 | -2/+6 |
* | Add efficiency statistic. | Alkis Evlogimenos | 2004-07-04 | 1 | -1/+7 |
* | Rename Interval class to LiveInterval to avoid conflicting with the already | Chris Lattner | 2004-06-21 | 1 | -10/+10 |
* | Pull Interval class out of LiveIntervals. | Alkis Evlogimenos | 2004-05-30 | 1 | -11/+12 |
* | When spilling an register, introduce a new temporary for each of its | Alkis Evlogimenos | 2004-05-30 | 1 | -40/+46 |
* | Add required header | Alkis Evlogimenos | 2004-05-08 | 1 | -0/+1 |
* | numeric_limits::infinity() apparently does not work on all systems. As a | Chris Lattner | 2004-05-06 | 1 | -1/+1 |
* | Make the set of fixed (preallocated) intervals be a fixed superset of | Alkis Evlogimenos | 2004-03-17 | 1 | -29/+10 |
* | Add a spiller option to llc. A simple spiller will come soon. When we get CFG... | Alkis Evlogimenos | 2004-03-01 | 1 | -1/+3 |
* | Add the long awaited memory operand folding support for linear scan | Alkis Evlogimenos | 2004-03-01 | 1 | -3/+3 |
* | Rename member function to be consistent with the rest. | Alkis Evlogimenos | 2004-02-27 | 1 | -3/+3 |
* | Remove asssert since it is breaking cases that it shouldn't. | Alkis Evlogimenos | 2004-02-25 | 1 | -1/+0 |
* | Add an assertion | Chris Lattner | 2004-02-25 | 1 | -0/+1 |