aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/RegAllocFast.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-2/+2
2014-03-13Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson1-2/+2
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-3/+3
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer1-2/+2
2014-03-02[C++11] Expand and eliminate the LLVM_ENUM_INT_TYPE() macroAlp Toker1-1/+1
2013-10-08Explicitly request unsigned enum types when desiredReid Kleckner1-1/+1
2013-10-05Emit a better error when running out of registers on inline asm.Benjamin Kramer1-1/+4
2013-09-16Debug info: Fix PR16736 and rdar://problem/14990587.Adrian Prantl1-2/+2
2013-07-14Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper1-1/+1
2013-07-10Use the appropriate unsigned int type for the offset.Adrian Prantl1-2/+3
2013-07-09Reapply an improved version of r180816/180817.Adrian Prantl1-1/+2
2013-06-16Debug Info: Simplify Frame Index handling in DBG_VALUE Machine InstructionsDavid Blaikie1-28/+19
2013-02-21Make RAFast::UsedInInstr indexed by register units.Jakob Stoklund Olesen1-22/+30
2013-02-05Remove special-casing of return blocks for liveness.Jakob Stoklund Olesen1-57/+0
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-1/+1
2012-12-20Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen1-4/+2
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-11/+11
2012-11-29Use MCPhysReg for RegisterClassInfo allocation orders.Jakob Stoklund Olesen1-3/+3
2012-11-28Revert r168630, r168631, and r168633 as these are causing nightly test failures.Chad Rosier1-0/+1
2012-11-26Now that the X86 Maximal Stack Alignment Check pass has been removed (i.e.,Chad Rosier1-1/+0
2012-11-06[regallocfast] Make sure the MachineRegisterInfo is aware of clobbers from aChad Rosier1-0/+5
2012-10-31Change signature of function RAFast::spillAll to avoid conversion betweenAkira Hatanaka1-2/+2
2012-10-17Use a SparseSet instead of a BitVector for UsedInInstr in RAFast.Jakob Stoklund Olesen1-23/+30
2012-10-15Remove RegisterClassInfo::isReserved() and isAllocatable().Jakob Stoklund Olesen1-4/+4
2012-08-22Tidy up a few more uses of MF.getFunction()->getName().David Blaikie1-2/+1
2012-08-08Don't use getNextOperandForReg() in RAFast.Jakob Stoklund Olesen1-8/+4
2012-06-06Move RegisterClassInfo.h.Andrew Trick1-1/+1
2012-06-01Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen1-6/+6
2012-06-01Simplify some more getAliasSet callers.Jakob Stoklund Olesen1-10/+6
2012-05-14Don't access MO reference after invalidating operand list.Jakob Stoklund Olesen1-2/+3
2012-05-14Fix PR12821.Jakob Stoklund Olesen1-0/+6
2012-04-20SparseSet: Add support for key-derived indexes and arbitrary key types.Andrew Trick1-1/+1
2012-03-08Use uint16_t to store instruction implicit uses and defs. Reduces static data.Craig Topper1-1/+1
2012-03-04Use uint16_t to store register overlaps to reduce static data.Craig Topper1-5/+5
2012-02-2280 col.Jakob Stoklund Olesen1-3/+5
2012-02-22Use SparseSet for the RAFast live virtual register map.Jakob Stoklund Olesen1-73/+110
2012-02-21Clear virtual registers after they are no longer referenced.Andrew Trick1-0/+4
2012-02-17Transfer regmasks to MRI.Jakob Stoklund Olesen1-3/+0
2012-02-10RegAlloc superpass: includes phi elimination, coalescing, and scheduling.Andrew Trick1-6/+3
2012-01-31Obvious unnecessary loop removal. Follow through from previous checkin.Andrew Trick1-11/+10
2012-01-31RAFast: Generalize the logic for return operands.Andrew Trick1-20/+59
2012-01-05Freeze reserved registers before starting register allocation.Jakob Stoklund Olesen1-0/+1
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng1-3/+3
2011-11-22If a register is both an early clobber and part of a tied use, handle the useRafael Espindola1-7/+16
2011-11-15Insert modified DBG_VALUE into LiveDbgValueMap. Devang Patel1-1/+1
2011-07-02Better diagnostics when inline asm fails to allocate.Jakob Stoklund Olesen1-10/+4
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng1-7/+7
2011-06-28Print registers by name instead of by number.Jakob Stoklund Olesen1-6/+7
2011-06-21After register is spilled there should not be any DBG_VALUE referring the sam...Devang Patel1-1/+3