aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegAllocFast.cpp
Commit message (Expand)AuthorAgeFilesLines
* Move RegisterClassInfo.h.Andrew Trick2012-06-061-1/+1
* Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen2012-06-011-6/+6
* Simplify some more getAliasSet callers.Jakob Stoklund Olesen2012-06-011-10/+6
* Don't access MO reference after invalidating operand list.Jakob Stoklund Olesen2012-05-141-2/+3
* Fix PR12821.Jakob Stoklund Olesen2012-05-141-0/+6
* SparseSet: Add support for key-derived indexes and arbitrary key types.Andrew Trick2012-04-201-1/+1
* Use uint16_t to store instruction implicit uses and defs. Reduces static data.Craig Topper2012-03-081-1/+1
* Use uint16_t to store register overlaps to reduce static data.Craig Topper2012-03-041-5/+5
* 80 col.Jakob Stoklund Olesen2012-02-221-3/+5
* Use SparseSet for the RAFast live virtual register map.Jakob Stoklund Olesen2012-02-221-73/+110
* Clear virtual registers after they are no longer referenced.Andrew Trick2012-02-211-0/+4
* Transfer regmasks to MRI.Jakob Stoklund Olesen2012-02-171-3/+0
* RegAlloc superpass: includes phi elimination, coalescing, and scheduling.Andrew Trick2012-02-101-6/+3
* Obvious unnecessary loop removal. Follow through from previous checkin.Andrew Trick2012-01-311-11/+10
* RAFast: Generalize the logic for return operands.Andrew Trick2012-01-311-20/+59
* Freeze reserved registers before starting register allocation.Jakob Stoklund Olesen2012-01-051-0/+1
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-071-3/+3
* If a register is both an early clobber and part of a tied use, handle the useRafael Espindola2011-11-221-7/+16
* Insert modified DBG_VALUE into LiveDbgValueMap. Devang Patel2011-11-151-1/+1
* Better diagnostics when inline asm fails to allocate.Jakob Stoklund Olesen2011-07-021-10/+4
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-281-7/+7
* Print registers by name instead of by number.Jakob Stoklund Olesen2011-06-281-6/+7
* After register is spilled there should not be any DBG_VALUE referring the sam...Devang Patel2011-06-211-1/+3
* There could be more than one DBG_VALUE instructions for variables where all o...Devang Patel2011-06-211-4/+6
* Be less aggressive about hinting in RAFast.Jakob Stoklund Olesen2011-06-131-7/+5
* Avoid calling TRI->getAllocatableSet in RAFast.Jakob Stoklund Olesen2011-06-021-9/+4
* Use RegisterClassInfo::getOrder in RAFast.Jakob Stoklund Olesen2011-06-021-10/+7
* TypoEvan Cheng2011-04-221-1/+1
* Fix a bug where we were counting the alias sets as completely usedEric Christopher2011-04-181-5/+0
* Temporarily revert r129408 to see if it brings the bots back.Eric Christopher2011-04-131-0/+2
* Fix a bug where we were counting the alias sets as completely usedEric Christopher2011-04-121-2/+0
* Add more comments... err debug statements to the fast allocator.Eric Christopher2011-04-121-3/+16
* Fix typo.Eric Christopher2011-04-121-1/+1
* Mark that the return is using EAX so that we don't use it for some otherNick Lewycky2011-02-041-0/+21
* Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic.Jakob Stoklund Olesen2011-01-101-4/+5
* Remove MachineRegisterInfo::getLastVirtReg(), it was giving wrong resultsJakob Stoklund Olesen2011-01-091-2/+1
* Replace TargetRegisterInfo::printReg with a PrintReg class that also works wi...Jakob Stoklund Olesen2011-01-091-10/+10
* Fix comment.Eric Christopher2010-12-081-1/+1
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+4
* Add DEBUG message.Devang Patel2010-09-101-2/+6
* previous patch was a little too tricky for its own good. Don't try toJim Grosbach2010-09-031-8/+7
* The register allocator shouldn't consider allocating reserved registers.Jim Grosbach2010-09-011-3/+7
* tidy up a few 80-column and trailing whitespace bits.Jim Grosbach2010-09-011-16/+19
* Ignore unallocatable registers in RegAllocFast.Jakob Stoklund Olesen2010-08-311-1/+2
* Delete dead comment.Eli Friedman2010-08-211-2/+1
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* While emitting DBG_VALUE for registers spilled at the end of a block do not u...Devang Patel2010-08-061-1/+8
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* While spilling live registers at the end of block check whether they are used...Devang Patel2010-08-041-1/+24