summaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocLinearScan.cpp
Commit message (Expand)AuthorAge
* If the register allocator cannot find a register to spill, try the aliases. IfEvan Cheng2006-05-12
* Backing out previous check-in.Evan Cheng2006-05-11
* If the live interval legnth is essentially zero, i.e. in every live rangeEvan Cheng2006-05-10
* Add some comments.Chris Lattner2006-03-25
* Code cleanups, no functionality changeChris Lattner2006-02-23
* Add explicit #includes of <iostream>Chris Lattner2006-01-22
* HB is *the* code janitor.Duraid Madina2005-12-28
* I think I know what you meant here, but just to be safe I'll let youDuraid Madina2005-11-21
* Add section switching to common code generator code. Add a couple ofChris Lattner2005-11-21
* Expose the LiveInterval interfaces as public headers.Chris Lattner2005-09-21
* When checking the fixed intervals, don't forget to check for register aliases.Chris Lattner2005-08-30
* Keep track of which registers are related to which other registers.Chris Lattner2005-08-23
* Try to avoid scanning the fixed list. On architectures with a non-stupidChris Lattner2005-08-22
* Move some code in the register assignment case that only needs to happen ifChris Lattner2005-08-22
* Speed up this loop a bit, based on some observations that Nate made, andChris Lattner2005-08-22
* Remove trailing whitespaceMisha Brukman2005-04-21
* Update these register allocators to set the PhysRegUsed info in MachineFunction.Chris Lattner2005-01-23
* Silence VS warningsChris Lattner2005-01-08
* Move virtual method call out of loopChris Lattner2004-12-15
* Move virtual function call out of loop to speed up getFreePhysReg by aboutNate Begeman2004-12-07
* * There is no reason for SpillWeights to be an instance varChris Lattner2004-11-18
* Fix a couple of bugs where we considered physregs past their range as possiblyChris Lattner2004-11-18
* Start using the iterators in the fixed_ intervals to avoid having to binaryChris Lattner2004-11-18
* Add a counter for the number of times linscan has to backtrack. Start usingChris Lattner2004-11-18
* * Improve comments/documentation substantiallyChris Lattner2004-11-18
* Rename some methods, use 'begin' instead of 'start', add new LiveIntervalChris Lattner2004-11-18
* Do not make i have bigger scope that we needChris Lattner2004-11-05
* Free the VirtRegMap at the end of MachineFunction processing instead of atChris Lattner2004-09-30
* Fixes to make LLVM compile with vc7.1.Alkis Evlogimenos2004-09-03
* Change the way we choose a free register: instead of picking the firstAlkis Evlogimenos2004-09-02
* We don't need to sort the added vector as unhandled intervals areAlkis Evlogimenos2004-09-02
* Changes For Bug 352Reid Spencer2004-09-01
* Be a bit more efficient when processing the active and inactiveAlkis Evlogimenos2004-09-01
* Now that LiveIntervals::addIntervalsForSpills is fixed, do not requireAlkis Evlogimenos2004-08-27
* Back out this change as it broke the build last night. This should beAlkis Evlogimenos2004-08-27
* The linear scan variants do not require the LiveVariables analysis.Alkis Evlogimenos2004-08-27
* Convert indentation to 2 spaces.Alkis Evlogimenos2004-08-04
* Add some comments to the backtracking code.Alkis Evlogimenos2004-07-25
* Change std::map<unsigned, LiveInterval*> into a std::map<unsigned,Alkis Evlogimenos2004-07-24
* Completely eliminate the intervals_ list. instead, the r2iMap_ maintainsChris Lattner2004-07-24
* Rename LiveIntervals.(cpp|h) -> LiveIntervalAnalysis.(cpp|h)Chris Lattner2004-07-23
* Some compile time improvements resulting in a 1sec speedup in the 5secAlkis Evlogimenos2004-07-22
* These files don't need to include <iostream> since they include "Support/Debu...Brian Gaeke2004-07-21
* Remove dead code.Alkis Evlogimenos2004-07-19
* Fix assertion to not dereference end!Chris Lattner2004-07-19
* Add some asserts that the list of intervals returned by addIntervalsForSpillsChris Lattner2004-07-19
* Correctly compute the ration of iterations/#intervals.Alkis Evlogimenos2004-07-04
* Add efficiency statistic.Alkis Evlogimenos2004-07-04
* Rename Interval class to LiveInterval to avoid conflicting with the alreadyChris Lattner2004-06-21
* Pull Interval class out of LiveIntervals.Alkis Evlogimenos2004-05-30