aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineRegisterInfo.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add an MRI::verifyUseLists() function.Jakob Stoklund Olesen2013-04-191-3/+51
* Check register classes also when changing them.Jakob Stoklund Olesen2013-03-131-0/+1
* Remove liveout lists from MachineRegisterInfo.Jakob Stoklund Olesen2013-02-051-7/+0
* Don't call destructors on MachineInstr and MachineOperand.Jakob Stoklund Olesen2013-01-051-6/+0
* Add MachineRegisterInfo::moveOperands().Jakob Stoklund Olesen2013-01-051-0/+49
* Revert r168630, r168631, and r168633 as these are causing nightly test failures.Chad Rosier2012-11-281-2/+0
* Add an assertion to ensure freezeReservedRegs() is only ever called once.Chad Rosier2012-11-261-0/+2
* Switch MRI::UsedPhysRegs to a register unit bit vector.Jakob Stoklund Olesen2012-10-171-2/+2
* Freeze the reserved registers as soon as isel is complete.Jakob Stoklund Olesen2012-10-151-9/+5
* Reapply r161633-161634 "Partition use lists so defs always come before uses.""Jakob Stoklund Olesen2012-08-101-45/+47
* Revert r161633-161634 "Partition use lists so defs always come before uses."Jakob Stoklund Olesen2012-08-091-47/+45
* Partition use lists so defs always come before uses.Jakob Stoklund Olesen2012-08-091-3/+11
* Don't use pointer-pointers for the register use lists.Jakob Stoklund Olesen2012-08-091-45/+39
* Move use list management into MachineRegisterInfo.Jakob Stoklund Olesen2012-08-091-0/+37
* Inline MachineRegisterInfo::hasOneUseAndrew Trick2012-07-301-7/+0
* Added assertion in getVRegDef of MachineRegisterInfo to make sure the virtualManman Ren2012-07-021-0/+2
* Add getUniqueVRegDef to MachineRegisterInfo.Manman Ren2012-06-291-0/+11
* Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen2012-06-011-4/+4
* Add an MRI::tracksLiveness() flag.Jakob Stoklund Olesen2012-03-271-1/+1
* Microoptimize getVRegDef. def_begin isn't free, don't compute it twice.Benjamin Kramer2012-03-101-3/+2
* Use uint16_t to store register overlaps to reduce static data.Craig Topper2012-03-041-2/+2
* Clear virtual registers after they are no longer referenced.Andrew Trick2012-02-211-3/+11
* Transfer regmasks to MRI.Jakob Stoklund Olesen2012-02-171-10/+2
* Extract method for detecting constant unallocatable physregs.Jakob Stoklund Olesen2012-01-161-0/+18
* Freeze reserved registers before starting register allocation.Jakob Stoklund Olesen2012-01-051-0/+4
* Handle sub-register operands in recomputeRegClass().Jakob Stoklund Olesen2011-12-191-4/+6
* Also inflate register classes around inline asm.Jakob Stoklund Olesen2011-10-121-4/+1
* Move getCommonSubClass() into TRI.Jakob Stoklund Olesen2011-09-301-4/+3
* Add a MinNumRegs argument to MRI::constrainRegClass().Jakob Stoklund Olesen2011-09-221-4/+6
* Move CalculateRegClass to MRI::recomputeRegClass.Jakob Stoklund Olesen2011-08-091-1/+32
* Add an isSSA() flag to MachineRegisterInfo.Jakob Stoklund Olesen2011-07-291-1/+2
* Remove RegClass2VRegMap from MachineRegisterInfo.Evan Cheng2011-06-271-14/+0
* Make it possible to have unallocatable register classes.Jakob Stoklund Olesen2011-06-021-0/+2
* Revert r124611 - "Keep track of incoming argument's location while emitting L...Devang Patel2011-02-211-8/+1
* Keep track of incoming argument's location while emitting LiveIns.Devang Patel2011-01-311-1/+8
* Use IndexedMap for MachineRegisterInfo as well. No functional change.Jakob Stoklund Olesen2011-01-091-19/+22
* Add MachineRegisterInfo::constrainRegClass and use it in MachineCSE.Jakob Stoklund Olesen2010-10-061-0/+14
* Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel.Jakob Stoklund Olesen2010-07-101-6/+3
* Teach EmitLiveInCopies to omit copies for unused virtual registers,Dan Gohman2010-06-241-14/+25
* Don't leak RegClass2VRegMap, which is now a new[] array instead of aDan Gohman2010-06-181-0/+1
* Start TargetRegisterClass indices at 0 instead of 1, so thatDan Gohman2010-06-181-2/+2
* Remove unused function.Benjamin Kramer2010-05-291-69/+0
* Remove schedule-livein-copies. It's not being used.Evan Cheng2010-05-291-30/+12
* Avoid adding duplicate function live-in's.Evan Cheng2010-05-241-0/+9
* Add a utility function for conservatively clearing kill flags, and makeDan Gohman2010-05-131-0/+9
* Silence warningJakob Stoklund Olesen2010-05-111-1/+1
* Simplify the tracking of used physregs to a bulk bitor followed by a transitiveJakob Stoklund Olesen2010-05-111-0/+9
* Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that itDan Gohman2010-05-061-2/+4
* Replace r102368 with code that's less fragile. This creates DBG_VALUE instruc...Evan Cheng2010-04-281-28/+9
* Insert dbg_value instructions for function entry block liveins (i.e. function...Evan Cheng2010-04-261-1/+30