aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegisterCoalescer.cpp
AgeCommit message (Expand)Author
2012-02-13Check regmask interference for -join-physregs.Jakob Stoklund Olesen
2012-02-10RegAlloc superpass: includes phi elimination, coalescing, and scheduling.Andrew Trick
2012-02-06Make sure a reserved register has a live interval before merging.Jakob Stoklund Olesen
2012-02-04Drop the REDEF_BY_EC VNInfo flag.Jakob Stoklund Olesen
2012-02-04Don't store COPY pointers in VNInfo.Jakob Stoklund Olesen
2012-02-02Re-apply the coalescer fix from r149147. Commit r149597 should have fixed the...Lang Hames
2012-01-28Remove code that adds live ranges for dead defs. It seems to be breaking things.Lang Hames
2012-01-27Add a "moveInstr" method to LiveIntervals. This can be used to move instructionsLang Hames
2012-01-27Backing out ill-considered 'refactor'.Lang Hames
2012-01-27Move some duplicate loops in the coalescer into their own function.Lang Hames
2012-01-27Physreg dead defs should be handled too.Lang Hames
2012-01-27Rewrite instruction operands in AdjustCopiesBackFrom. Fixes PR11861.Lang Hames
2012-01-23copyImplicitOps is redundant here - the loop above already copies these ops.Lang Hames
2012-01-17Fix typo in comment.Lang Hames
2012-01-07Optimize reserved register coalescing.Jakob Stoklund Olesen
2012-01-07Use the 'regalloc' debug tag for most register allocator tracing.Jakob Stoklund Olesen
2011-12-08Reverting r145899 as it breaks clang self-hostingPete Cooper
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng
2011-12-06First chunk of MachineInstr bundle support.Evan Cheng
2011-12-06Removed isWinToJoinCrossClass from the register coalescer.Pete Cooper
2011-11-13Rename SlotIndexes to match how they are used.Jakob Stoklund Olesen
2011-10-05Remove unused DstSubIdx argument.Jakob Stoklund Olesen
2011-10-05Also add <def,undef> flags when coalescing sub-registers.Jakob Stoklund Olesen
2011-09-30Move getCommonSubClass() into TRI.Jakob Stoklund Olesen
2011-09-15Revert r139782, "RemoveCopyByCommutingDef doesn't need hasPHIKill()."Jakob Stoklund Olesen
2011-09-15RemoveCopyByCommutingDef doesn't need hasPHIKill().Jakob Stoklund Olesen
2011-09-15It is safe to remat a value killed by phis.Jakob Stoklund Olesen
2011-09-15[regcoalescing] bug fix for RegistersDefinedFromSameValue.Andrew Trick
2011-09-02Simplify by using isFullCopy().Jakob Stoklund Olesen
2011-08-09Inflate register classes after coalescing.Jakob Stoklund Olesen
2011-08-09Rename member variables to follow coding standards.Jakob Stoklund Olesen
2011-08-09Move the RegisterCoalescer private to its implementation file.Jakob Stoklund Olesen
2011-08-09Refer to the RegisterCoalescer pass by ID.Jakob Stoklund Olesen
2011-07-26Eliminate copies of undefined values during coalescing.Jakob Stoklund Olesen
2011-07-03Fix an easy fixme.Rafael Espindola
2011-07-02Use getVNInfoAt.Rafael Espindola
2011-07-02Check the VN of the src register at the two copies, not just theRafael Espindola
2011-07-01Disable commit 134216 ("Add 134199 back, but disable the optimization when th...Duncan Sands
2011-07-01Avoid DenseMap lookup.Rafael Espindola
2011-07-01Fix off by one error. I misunderstood the comment about killedAt.Rafael Espindola
2011-07-01Check the liveinterval, not the kill flag.Rafael Espindola
2011-07-01Add 134199 back, but disable the optimization when the second copy is a kill.Rafael Espindola
2011-06-30Revert my previous patch while I debug llvm-gcc bootstrap.Rafael Espindola
2011-06-30Don't give up on coalescing A and B when we findRafael Espindola
2011-06-29make compose and isMoveInstr static functions.Rafael Espindola
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng
2011-06-27More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.Evan Cheng
2011-06-26There is only one register coalescer. Merge it into the base class andRafael Espindola
2011-06-26Merge SimpleRegisterCoalescing.cpp into RegisterCoalescer.cpp.Rafael Espindola
2011-06-26Move RegisterCoalescer.h to lib/CodeGen.Rafael Espindola