aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocPBQP.cpp
AgeCommit message (Expand)Author
2010-02-18Remove terminating dot in description. Inconsistency pointedDuncan Sands
2010-02-17Removed an early out which was causing the PBQP allocator to not compute live...Lang Hames
2010-02-09Fixed a bug in the PBQP allocator's findCoalesces method.Lang Hames
2010-01-26New PBQP solver.Lang Hames
2010-01-05Change errs() to dbgs().David Greene
2009-12-14Moved spill weight calculation out of SimpleRegisterCoalescing and into its o...Lang Hames
2009-11-15Added an assert to the PBQP allocator to catch infinite cost solutions which ...Lang Hames
2009-11-03The Indexes Patch.Lang Hames
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky
2009-10-03Renamed MachineInstrIndex to LiveIndex.Lang Hames
2009-09-20Tabs -> spaces, and remove trailing whitespace.Daniel Dunbar
2009-09-06Remove some not-really-used variables, as warnedDuncan Sands
2009-09-04Replaces uses of unsigned for indexes in LiveInterval and VNInfo withLang Hames
2009-09-03Fixed a test that ensures the LocalRewriter does not attempt toLang Hames
2009-08-20Suppress build warning in -AssertsDaniel Dunbar
2009-08-19Added an option to have the PBQP allocator attempt coalescing during allocation.Lang Hames
2009-08-18Changes DOUT references in the PBQP allocator to use DEBUG(errs() ...)Lang Hames
2009-08-12Added RegisterCoalescer to required passes for PBQP.Lang Hames
2009-08-11Remove unnecessary throw() specifications; LLVM doesn't use exceptions.Dan Gohman
2009-08-11Remove unnecessary casts.Dan Gohman
2009-08-10Modified VNInfo. The "copy" member is now a union which holds the copy for a ...Lang Hames
2009-08-10Remove a bunch of debugging code that was slowing PBQP down by 25% or so.Owen Anderson
2009-08-08Fix some -Asserts unused variable warnings.Daniel Dunbar
2009-08-06New C++ PBQP solver. Currently about as fast (read _slow_) as the old C based...Lang Hames
2009-07-31Use setPreservesAll and setPreservesCFG in CodeGen passes.Dan Gohman
2009-07-25More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar
2009-06-17VNInfo cleanup.Lang Hames
2009-06-14Move register allocation preference (or hint) from LiveInterval to MachineReg...Evan Cheng
2009-05-30Untabification.Bill Wendling
2009-05-17Prevented reg0 from being added to MBB live-in set, which was causing issuesLang Hames
2009-05-06Renamed Spiller classes (plus uses and related files) to VirtRegRewriter.Lang Hames
2009-05-03In some rare cases, the register allocator can spill registers but end up not...Evan Cheng
2009-04-21It has finally happened. Spiller is now using live interval info.Evan Cheng
2009-03-17r66870 missed this out.Sanjiv Gupta
2009-03-13Convert VirtRegMap to a MachineFunctionPass.Owen Anderson
2009-03-11Reorganization: Move the Spiller out of VirtRegMap.cpp into its own files. N...Owen Anderson
2009-01-20Change TargetInstrInfo::isMoveInstr to return source and destination sub-regi...Evan Cheng
2009-01-08* Moved author attribution to CREDITS.TXTMisha Brukman
2009-01-08* Alphabetized #includesMisha Brukman
2008-11-19Fix compilation error on MSVC.Argyrios Kyrtzidis
2008-11-16Big PBQP allocator update. Adds coalescing support, stack slot coloring, seve...Lang Hames
2008-11-14Test commit.Lang Hames
2008-10-14Fix command-line option printing to print two spaces where needed,Dan Gohman
2008-10-03Fix typos pointed out by Duncan. Also untabify these files.Evan Cheng
2008-10-03Switch the MachineOperand accessors back to the short names likeDan Gohman
2008-10-02A Partitioned Boolean Quadratic Programming (PBQP) based register allocator.Evan Cheng