aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-09Handle early-clobber registers in the aggressive anti-dep breakerHal Finkel1-0/+15
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
2014-11-17Move register class name strings to a single array in MCRegisterInfo to reduc...Craig Topper1-1/+1
2014-10-14Remove unnecessary TargetMachine.h includes.Eric Christopher1-1/+0
2014-10-10Reduce double set lookups. NFC.Benjamin Kramer1-6/+2
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-3/+3
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-12/+7
2014-07-31Disable IsSub subregister assert. pr18663.Will Schmidt1-1/+3
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-24/+23
2014-04-04Make consistent use of MCPhysReg instead of uint16_t throughout the tree.Craig Topper1-1/+1
2014-02-26Fix the aggressive anti-dep breaker's subregister definition handlingHal Finkel1-1/+11
2013-09-12Fix crash in AggressiveAntiDepBreaker with empty CriticalPathSetHal Finkel1-1/+1
2013-05-22Simplify logic now that r182490 is in place. No functional change intended.Chad Rosier1-2/+2
2013-02-05Remove special-casing of return blocks for liveness.Jakob Stoklund Olesen1-17/+1
2012-12-21Remove duplicate includes.Roman Divacky1-1/+0
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-4/+4
2012-11-29Use MCPhysReg for RegisterClassInfo allocation orders.Jakob Stoklund Olesen1-1/+1
2012-10-15Remove RegisterClassInfo::isReserved() and isAllocatable().Jakob Stoklund Olesen1-2/+2
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-21/+16
2012-05-07Add an MF argument to TRI::getPointerRegClass() and TII::getRegClass().Jakob Stoklund Olesen1-2/+2
2012-03-05Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper1-2/+2
2012-03-04Use uint16_t to store register overlaps to reduce static data.Craig Topper1-6/+6
2012-03-04Use uint16_t to store registers in callee saved register tables to reduce siz...Craig Topper1-1/+1
2012-01-16AggressiveAntiDepBreaker needs to skip debug values because a debug value doe...Hal Finkel1-0/+3
2012-01-07Added a late machine instruction copy propagation pass. This catchesEvan Cheng1-1/+1
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng1-4/+4
2011-07-01Rename TargetSubtarget to TargetSubtargetInfo for consistency.Evan Cheng1-1/+1
2011-06-27More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.Evan Cheng1-2/+2
2011-06-16Teach antidependency breakers to use RegisterClassInfo.Jakob Stoklund Olesen1-12/+13
2011-06-02Update DBG_VALUEs while breaking anti dependencies.Devang Patel1-9/+7
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner1-1/+1
2010-12-14Simplify AggressiveAntiDepBreaker's use of register aliases.Jakob Stoklund Olesen1-31/+14
2010-09-02Anti-dependency breaking needs to be careful not to use reserved regsJim Grosbach1-0/+2
2010-07-15Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister. This timeBill Wendling1-5/+5
2010-07-15Reserve a goodly amount of room for the vectors.Bill Wendling1-2/+4
2010-07-15Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.Bill Wendling1-10/+10
2010-07-15revert bill's patches in an attempt to fix the buildbot.Chris Lattner1-12/+10
2010-07-15Fix headers.Bill Wendling1-0/+1
2010-07-15Use std::vector instead of a hard-coded array. The length of that array couldBill Wendling1-11/+12
2010-07-12Convert the last use of getPhysicalRegisterRegClass and remove it.Rafael Espindola1-1/+5
2010-06-16Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat...Evan Cheng1-21/+43
2010-06-02Not all entries in the range will have an SUnit. Check for that when lookingJim Grosbach1-0/+1
2010-06-01Update debug information when breaking anti-dependencies. rdar://7759363Jim Grosbach1-0/+12
2010-04-19Make BreakAntiDependencies' SUnits argument const, and make the BeginDan Gohman1-19/+20
2010-04-09Tidy whitespace.Bob Wilson1-9/+8
2010-02-09move target-independent opcodes out of TargetInstrInfoChris Lattner1-4/+3
2010-01-0680 column and whitespace cleanupJim Grosbach1-75/+84
2009-12-24Change errs() to dbgs().David Greene1-59/+59