aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineRegisterInfo.h
AgeCommit message (Expand)Author
2012-03-27Add an MRI::tracksLiveness() flag.Jakob Stoklund Olesen
2012-03-04Use uint16_t to store register overlaps to reduce static data.Craig Topper
2012-03-01Make InlineSpiller bundle-aware.Jakob Stoklund Olesen
2012-02-21Clear virtual registers after they are no longer referenced.Andrew Trick
2012-02-21whitespaceAndrew Trick
2012-02-17Transfer regmasks to MRI.Jakob Stoklund Olesen
2012-01-16Extract method for detecting constant unallocatable physregs.Jakob Stoklund Olesen
2012-01-05Freeze reserved registers before starting register allocation.Jakob Stoklund Olesen
2011-12-21Move common code into an MRI function.Jakob Stoklund Olesen
2011-10-17Admonish that MI is not IR and virtual registers have constraints.Jakob Stoklund Olesen
2011-09-30Move getCommonSubClass() into TRI.Jakob Stoklund Olesen
2011-09-22Add a MinNumRegs argument to MRI::constrainRegClass().Jakob Stoklund Olesen
2011-08-09Move CalculateRegClass to MRI::recomputeRegClass.Jakob Stoklund Olesen
2011-07-29Add an isSSA() flag to MachineRegisterInfo.Jakob Stoklund Olesen
2011-07-08Be more aggressive about following hints.Jakob Stoklund Olesen
2011-06-27Remove RegClass2VRegMap from MachineRegisterInfo.Evan Cheng
2011-02-21Revert r124611 - "Keep track of incoming argument's location while emitting L...Devang Patel
2011-01-31Keep track of incoming argument's location while emitting LiveIns.Devang Patel
2011-01-10Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic.Jakob Stoklund Olesen
2011-01-09Remove MachineRegisterInfo::getLastVirtReg(), it was giving wrong resultsJakob Stoklund Olesen
2011-01-09Use IndexedMap for MachineRegisterInfo as well. No functional change.Jakob Stoklund Olesen
2011-01-08Use an IndexedMap for LiveVariables::VirtRegInfo.Jakob Stoklund Olesen
2010-10-06Add MachineRegisterInfo::constrainRegClass and use it in MachineCSE.Jakob Stoklund Olesen
2010-06-29Begin implementation of an inline spiller.Jakob Stoklund Olesen
2010-06-18Start TargetRegisterClass indices at 0 instead of 1, so thatDan Gohman
2010-05-24Avoid adding duplicate function live-in's.Evan Cheng
2010-05-21constify accessor.Chris Lattner
2010-05-15Add reg_nodbg_iteratorJakob Stoklund Olesen
2010-05-13Add a utility function for conservatively clearing kill flags, and makeDan Gohman
2010-05-11Simplify the tracking of used physregs to a bulk bitor followed by a transitiveJakob Stoklund Olesen
2010-04-28Replace r102368 with code that's less fragile. This creates DBG_VALUE instruc...Evan Cheng
2010-04-14Move the code for emitting livein copies out of SelectionDAGISel.Dan Gohman
2010-04-13Move MachineRegisterInfo's isLiveIn and isLiveOut out of line.Dan Gohman
2010-03-03Add MachineRegisterInfo::hasOneUse and hasOneNonDBGUse.Evan Cheng
2010-02-06Add a Debug bit to MachineOperand, for uses thatDale Johannesen
2009-11-09Print "..." instead of all the uninteresting register clobbers on callDan Gohman
2009-08-27eliminate all 80-col violations that I have introduced in my recent checkins ...Gabor Greif
2009-08-27Clean up the minor mess I caused with removing iterator.h. I shall take care ...Gabor Greif
2009-06-15Part 1.Evan Cheng
2009-06-14Move register allocation preference (or hint) from LiveInterval to MachineReg...Evan Cheng
2009-04-15Move MachineRegisterInfo::setRegClass out of line.Dan Gohman
2009-01-07Add empty() methods for register def lists.Dan Gohman
2008-12-08Move createVirtualRegister out-of-line.Dan Gohman
2008-10-20Add a register class -> virtual registers map.Evan Cheng
2008-07-25Enable rematerialization of constants using AliasAnalysis::pointsToConstantMe...Dan Gohman
2008-06-19Minor spiller tweak to unfavor reload into load/store instructions.Evan Cheng
2008-06-18Add MachineRegisterInfo::use_empty.Evan Cheng
2008-05-29For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h"Anton Korobeynikov
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2008-04-01update comment.Chris Lattner