aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-11-13Sink all InitializePasses.h includesReid Kleckner1-0/+1
2019-08-15Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVMDaniel Sanders1-2/+2
2019-08-01Finish moving TargetRegisterInfo::isVirtualRegister() and friends to llvm::Re...Daniel Sanders1-2/+2
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-07-16[CodeGen] Fix inconsistent declaration parameter nameFangrui Song1-1/+1
2018-05-14Rename DEBUG macro to LLVM_DEBUG.Nicola Zaghen1-8/+8
2017-12-04[CodeGen] Unify MBB reference format in both MIR and debug outputFrancis Visoiu Mistrih1-1/+1
2017-11-17Fix a bunch more layering of CodeGen headers that are in TargetDavid Blaikie1-1/+1
2017-11-08Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layeringDavid Blaikie1-1/+1
2017-05-25CodeGen: Rename DEBUG_TYPE to match passnamesMatthias Braun1-4/+2
2016-02-22Revert "CodeGen: MachineInstr::getIterator() => getInstrIterator(), NFC"Duncan P. N. Exon Smith1-2/+2
2016-02-21CodeGen: MachineInstr::getIterator() => getInstrIterator(), NFCDuncan P. N. Exon Smith1-2/+2
2015-10-09CodeGen: Avoid more ilist iterator implicit conversions, NFCDuncan P. N. Exon Smith1-2/+2
2015-09-09[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatibleChandler Carruth1-1/+1
2015-05-29CodeGen: Use mop_iterator instead of MIOperands/ConstMIOperandsMatthias Braun1-7/+7
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-2/+2
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-2/+3
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-2/+2
2014-03-17Switch a number of loops in lib/CodeGen over to range-based for-loops, now thatOwen Anderson1-4/+1
2014-03-13Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson1-1/+1
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-2/+2
2013-10-04Fix typoMatthias Braun1-1/+1
2012-08-22Tidy up a few more uses of MF.getFunction()->getName().David Blaikie1-2/+1
2012-06-25Run ProcessImplicitDefs on SSA form where it can be much simpler.Jakob Stoklund Olesen1-256/+97
2012-06-22Remove ProcessImplicitDefs.h which was unused.Jakob Stoklund Olesen1-2/+27
2012-06-01Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen1-2/+2
2012-03-05Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper1-1/+1
2012-02-10RegAlloc superpass: includes phi elimination, coalescing, and scheduling.Andrew Trick1-6/+9
2012-01-25Improve sub-register def handling in ProcessImplicitDefs.Jakob Stoklund Olesen1-9/+10
2011-07-28Handle REG_SEQUENCE with implicitly defined operands.Jakob Stoklund Olesen1-0/+6
2011-03-14Place context in member variables instead of passing around pointers.Jakob Stoklund Olesen1-21/+18
2010-12-29None of the other pass names in CodeGen have terminating periods.Cameron Zwarich1-2/+2
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson1-1/+4
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-07-21Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson1-2/+2
2010-07-16Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.Jakob Stoklund Olesen1-14/+0
2010-07-14Teach ProcessImplicitDefs to transform more COPY instructions into IMPLICIT_D...Evan Cheng1-14/+40
2010-07-08Convert EXTRACT_SUBREG to COPY when emitting machine instrs.Jakob Stoklund Olesen1-2/+1
2010-07-08Remove references to INSERT_SUBREG after de-SSA.Jakob Stoklund Olesen1-15/+0
2010-07-07Revert "Remove references to INSERT_SUBREG after de-SSA" r107725.Jakob Stoklund Olesen1-0/+15
2010-07-06Remove references to INSERT_SUBREG after de-SSAJakob Stoklund Olesen1-15/+0
2010-07-06Convert INSERT_SUBREG to COPY in TwoAddressInstructionPass.Jakob Stoklund Olesen1-1/+21
2010-07-03Detect and handle COPY in many places.Jakob Stoklund Olesen1-8/+11
2010-05-11It's not safe eliminate copies where src and dst have different sub-register ...Evan Cheng1-2/+2
2010-05-10It's not safe to propagate implicit_def that defines part of a register.Evan Cheng1-0/+2
2010-02-15Fix PR6300.Jakob Stoklund Olesen1-3/+2
2010-02-09move target-independent opcodes out of TargetInstrInfoChris Lattner1-7/+7
2010-02-04Fix small bug in handling instructions with more than one implicitly defined ...Jakob Stoklund Olesen1-1/+1
2010-01-05Change errs() to dbgs().David Greene1-1/+1
2009-11-26When all defs of a vr are implicit_def, delete all of the defs.Evan Cheng1-2/+6