aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/LiveIntervalAnalysis.cpp
Commit message (Expand)AuthorAgeFilesLines
* Expose the LiveInterval interfaces as public headers.Chris Lattner2005-09-211-1/+1
* remove debugging code *slaps head*Chris Lattner2005-09-091-1/+0
* When spilling a live range that is used multiple times by one instruction,Chris Lattner2005-09-091-9/+26
* Fix a bug that Tzu-Chien Chiu noticed: live interval analysis does NOTChris Lattner2005-09-071-1/+0
* Teach live intervals to not crash on dead livein regsChris Lattner2005-09-021-6/+11
* Simplify this code by using higher-level LiveVariables methodsChris Lattner2005-08-231-20/+10
* Fix debug info to not print out recently freed memory.Chris Lattner2005-07-271-1/+1
* Print symbolic register names in debug dumpsChris Lattner2005-07-271-2/+4
* Print the symbolic register name in a register allocator debug dump.Chris Lattner2005-05-141-5/+5
* allow a virtual register to be associated with live-in values.Chris Lattner2005-05-131-4/+4
* Remove trailing whitespaceMisha Brukman2005-04-211-2/+2
* there is no need to remove this instruction, linscan does it already as itChris Lattner2005-04-091-5/+0
* Adjust live intervals to support a livein setChris Lattner2005-04-091-2/+44
* I didn't mean to check this in. :(Chris Lattner2005-03-101-3/+1
* Allow the live interval analysis pass to be a bit more aggressive aboutChris Lattner2005-03-091-7/+53
* Silence warnings from VSChris Lattner2005-01-081-2/+3
* For PR387:\Reid Spencer2004-12-071-1/+1
* Reduce usage of MRegisterInfo::getRegClassChris Lattner2004-10-261-5/+6
* Patch to support MSVC better, contributed by Morten OfstadChris Lattner2004-10-251-1/+1
* When a virtual register is folded into an instruction, keep track of whetherChris Lattner2004-10-011-1/+1
* Pretty print a bit nicer :)Chris Lattner2004-10-011-2/+1
* There is no need to call MachineInstr::print directly, just send the MI& to a...Chris Lattner2004-09-301-8/+11
* * Wrap some comments to 80 colsChris Lattner2004-09-301-30/+32
* Grow the map on entry so that we don't crash if joinIntervals neverAlkis Evlogimenos2004-09-091-2/+1
* Use a DenseMap for mapping reg->reg. This improves the LiveIntervalAlkis Evlogimenos2004-09-081-3/+5
* Order #includes alphabetically, local .h files first.Misha Brukman2004-09-031-3/+2
* Fixes to make LLVM compile with vc7.1.Alkis Evlogimenos2004-09-031-0/+1
* Changes For Bug 352Reid Spencer2004-09-011-4/+4
* Minor code clarity changes.Alkis Evlogimenos2004-08-311-4/+6
* Only update LiveVariables if it is available. addIntervalsForSpillsAlkis Evlogimenos2004-08-271-9/+12
* Use newly added API in MRegisterInfo.Alkis Evlogimenos2004-08-261-5/+4
* Fix a bug in a previous checkin of mine, correctingChris Lattner2004-08-241-1/+1
* Reduce usage of MRegisterInfo::getRegClassChris Lattner2004-08-151-1/+1
* Clean up whitespace.Alkis Evlogimenos2004-08-041-15/+14
* Convert indentation to 2 spaces.Alkis Evlogimenos2004-08-041-412/+411
* Fix the sense of joinableChris Lattner2004-07-251-1/+1
* Fix a bug where we incorrectly value numbered the first PHI definition theChris Lattner2004-07-251-3/+26
* Add debugging output for joining assignmentsChris Lattner2004-07-251-0/+5
* Change std::map<unsigned, LiveInterval*> into a std::map<unsigned,Alkis Evlogimenos2004-07-241-10/+5
* whoops, didn't mean to remove thisChris Lattner2004-07-241-1/+3
* Completely eliminate the intervals_ list. instead, the r2iMap_ maintainsChris Lattner2004-07-241-35/+28
* Big change to compute logical value numbers for each LiveRange added to anChris Lattner2004-07-241-125/+151
* More minor changes:Chris Lattner2004-07-231-41/+14
* Rename LiveIntervals.(cpp|h) -> LiveIntervalAnalysis.(cpp|h)Chris Lattner2004-07-231-2/+2
* Pull the LiveRange and LiveInterval classes out of LiveIntervals.h (whichChris Lattner2004-07-231-164/+25
* Improve comments a bitChris Lattner2004-07-231-50/+45
* Force coallescing of live ranges that have a single definition, even if theyChris Lattner2004-07-231-9/+29
* Fix broken -debug printingChris Lattner2004-07-221-0/+1
* Sorting is now handled by both linearscan and iterative scan so liveAlkis Evlogimenos2004-07-221-10/+0
* That funny 2-address lowering pass can also cause multiple definitions,Chris Lattner2004-07-221-8/+18