aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/DeadMachineInstructionElim.cpp
AgeCommit message (Expand)Author
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-10-15Switch most getReservedRegs() clients to the MRI equivalent.Jakob Stoklund Olesen
2012-06-01Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen
2012-06-01Switch some getAliasSet clients to MCRegAliasIterator.Jakob Stoklund Olesen
2012-03-05Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper
2012-03-04Use uint16_t to store register overlaps to reduce static data.Craig Topper
2012-02-09Never delete instructions that define reserved registers.Jakob Stoklund Olesen
2012-02-08Codegen pass definition cleanup. No functionality.Andrew Trick
2012-02-08whitespaceAndrew Trick
2012-02-02Require non-NULL register masks.Jakob Stoklund Olesen
2012-01-20Handle register masks in DeadMachineInstructionElim.Jakob Stoklund Olesen
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng
2011-06-27Track live-out physical registers in MachineDCE.Jakob Stoklund Olesen
2011-01-10Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic.Jakob Stoklund Olesen
2011-01-07Do not model all INLINEASM instructions as having unmodelled side effects.Evan Cheng
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-08-31Track liveness of unallocatable, unreserved registers in machine DCE.Jakob Stoklund Olesen
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson
2010-08-06Revert r110396 to fix buildbots.Owen Anderson
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson
2010-07-21Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson
2010-03-02Swap parameters of isSafeToMove and isSafeToReMat for consistency.Evan Cheng
2010-02-12Rewrite handling of DBG_VALUE; previous algorithmDale Johannesen
2010-02-11Allow for more than one DBG_VALUE targeting theDale Johannesen
2010-02-10Delete dead PHI machine instructions. These can be created due to typeBob Wilson
2010-02-10more comment updatesDale Johannesen
2010-02-09move target-independent opcodes out of TargetInstrInfoChris Lattner
2010-02-06Run codegen dce pass for all targets at all optimization levels. Previously it'sEvan Cheng
2010-01-27If the only use of something is a DEBUG_VALUE, don'tDale Johannesen
2010-01-04Change errs() to dbgs().David Greene
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky
2009-10-09Factor out LiveIntervalAnalysis' code to determine whether an instructionDan Gohman
2009-08-22Convert DOUT to DEBUG(errs()...).Bill Wendling
2009-08-11Add const qualifiers.Dan Gohman
2008-10-16Rename AliasSet to SubRegs, to reflect changes in the surrounding code.Dan Gohman
2008-10-16Fix a subtle bug in DeadMachineInstructionElim's livenessDan Gohman
2008-10-03Switch the MachineOperand accessors back to the short names likeDan Gohman
2008-09-25Add debug output to this pass.Dan Gohman
2008-09-24Refactor the logic for testing if an instruction is dead into aDan Gohman
2008-09-24Set SetStore to false, to allow this pass to deleteDan Gohman
2008-09-23Now that DeadMachineInstructionElim is basically workingDan Gohman
2008-09-23Track local physical register liveness. This is not the mostDan Gohman
2008-09-18Don't consider instructions with implicit physical registerDan Gohman
2008-09-17Add a new MachineInstr-level DCE pass. It is very simple, and is intended toDan Gohman