aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SimpleRegisterCoalescing.cpp
AgeCommit message (Expand)Author
2009-01-23Only check if coalescing is worthwhile when the result is targeting a more re...Evan Cheng
2009-01-23Cross register class coalescing. Not yet enabled.Evan Cheng
2009-01-20Change TargetInstrInfo::isMoveInstr to return source and destination sub-regi...Evan Cheng
2009-01-20Refactor code. No functionality change.Evan Cheng
2009-01-13Use assertions to check for conditions that should never happen.Dan Gohman
2009-01-13Un-tabify.Evan Cheng
2009-01-13FIX llvm-gcc bootstrap on x86_64 linux. If a virtual register is copied to a ...Evan Cheng
2009-01-07The coalescer does not coalesce a virtual register to a physical register if ...Evan Cheng
2009-01-05squash warnings.Devang Patel
2008-12-19Fix PR3149. If an early clobber def is a physical register and it is tied to ...Evan Cheng
2008-12-19Perform this loop only when the -debug flag is specified.Bill Wendling
2008-10-27Remove val# defined by a remat'ed def that is now dead.Evan Cheng
2008-10-21When the coalescer is doing rematerializing, have it removeDan Gohman
2008-10-13Also update sub-register intervals after a trivial computation is rematt'ed f...Evan Cheng
2008-10-11fix typoChris Lattner
2008-10-07Add an option to enable StrongPHIElimination, for ease of testing.Owen Anderson
2008-10-03Switch the MachineOperand accessors back to the short names likeDan Gohman
2008-09-30Re-apply 56835 along with header file changes.Evan Cheng
2008-09-30Revert commit 56835 since it breaks the build.Duncan Sands
2008-09-30If a re-materializable instruction has a register operand, the spiller will c...Evan Cheng
2008-09-24Next round of earlyclobber handling. Approach theDale Johannesen
2008-09-22Mark several codegen passes as preserving all analysis.Evan Cheng
2008-09-20Teach coalescer about earlyclobber bits.Dale Johannesen
2008-09-19Continue after removing the current MI.Evan Cheng
2008-09-19Re-materalized definition instructions may be dead. Whack them.Evan Cheng
2008-09-17Unallocatable registers do not have live intervals.Evan Cheng
2008-09-15Correctly update kill infos after extending a live range and merge 2 val#'s; ...Evan Cheng
2008-09-13Remove isImm(), isReg(), and friends, in favor of Dan Gohman
2008-09-12On some targets, non-move instructions can become move instructions because o...Evan Cheng
2008-09-11Fix PR2748. Avoid coalescing physical register with virtual register which wo...Evan Cheng
2008-09-11Fix PR2783 - coalescer bug. Missing a TargetRegisterInfo::isVirtualRegister c...Evan Cheng
2008-09-10Fix a bug in the coalescer where it didn't check if a live interval existed b...Owen Anderson
2008-09-10Fix typo.Evan Cheng
2008-09-09Clear preference when it no longer makes sense.Evan Cheng
2008-08-30Re-apply 55467 with fix. If copy is being replaced by remat'ed def, transfer ...Evan Cheng
2008-08-28Revert r55467; it causes regressions in UnitTests/Vector/divides,Dan Gohman
2008-08-28If a copy isn't coalesced, but its src is defined by trivial computation. Re-...Evan Cheng
2008-08-14Convert uses of std::vector in TargetInstrInfo to SmallVector. This change h...Owen Anderson
2008-08-14Use empty() instead of begin() == end().Dan Gohman
2008-08-13Make the allocation of LiveIntervals explicit, rather than holding them in th...Owen Anderson
2008-08-05Remove #if 0.Evan Cheng
2008-08-05Fix PR2568: Fix bug that cause redudant kill marker after its live interval h...Evan Cheng
2008-07-23Fix a compile-time regression introduced by my heuristic-changing patch. I f...Owen Anderson
2008-07-22Change the heuristics used in the coalescer, register allocator, and withinOwen Anderson
2008-07-17Subreg live interval valno may not have a corresponding def machineinstr sinc...Evan Cheng
2008-06-23Use getMBBEndIdx rather than assuming that the end is right after the last in...Owen Anderson
2008-06-21Undo spill weight tweak. Need to investigate the performance regressions.Evan Cheng
2008-06-19Coalesce copy from one register class to a sub register class. e.g. X86::MOV1...Evan Cheng
2008-06-17When extending a liveinterval by commuting, don't throw away the live ranges ...Evan Cheng
2008-05-30The coalescer doesn't need LiveVariables now that we have register use iterat...Owen Anderson