aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineCSE.cpp
AgeCommit message (Expand)Author
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-27CSE: allow PerformTrivialCoalescing to check copies across basic blockManman Ren
2012-11-26Don't use iterator after being erased.Jakub Staszak
2012-11-13Do not consider a machine instruction that uses and defines the sameUlrich Weigand
2012-10-16Remove unused BitVectors from getAllocatableSet().Jakob Stoklund Olesen
2012-10-15Switch most getReservedRegs() clients to the MRI equivalent.Jakob Stoklund Olesen
2012-08-11MachineCSE: Hoist isConstantPhysReg out of the loop, it checks for overlaps a...Benjamin Kramer
2012-08-11PR13578: Teach MachineCSE that instructions that use a constant register can ...Benjamin Kramer
2012-08-08X86: enable CSE between CMP and SUBManman Ren
2012-08-07MachineCSE: Update the heuristics for isProfitableToCSE.Manman Ren
2012-07-19Remove tabs.Bill Wendling
2012-07-05Remove ParentMap. You can just ask the domnode for its parent. No functionalityNick Lewycky
2012-06-01Switch some getAliasSet clients to MCRegAliasIterator.Jakob Stoklund Olesen
2012-03-04Use uint16_t to store register overlaps to reduce static data.Craig Topper
2012-02-28Handle regmasks in MachineCSE.Jakob Stoklund Olesen
2012-02-17Re-enable 150652 and 150654 - Make FPSCR non-reserved, and make MachineCSE ba...Lang Hames
2012-02-16Oop - r150653 + r150654 broke one of my test cases. Backing out for now...Lang Hames
2012-02-16MachineCSE shouldn't extend the live ranges of reserved or allocatable regist...Lang Hames
2012-02-08Codegen pass definition cleanup. No functionality.Andrew Trick
2012-02-08whitespaceAndrew Trick
2012-02-05Persuade GCC that there is nothing worth warning about here (there isn't).Duncan Sands
2012-01-11Avoid CSE of instructions which define physical registers across MBBs unlessEvan Cheng
2012-01-10Allow machine-cse to look across MBB boundary when cse'ing instructions thatEvan Cheng
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng
2011-10-12We need to verify that the machine instruction we're using as a replacement forBill Wendling
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng
2011-05-06Re-revert r130877; it's apparently causing a regression on 197.parser,Eli Friedman
2011-05-05Minor correction to r130877; fixes PR9846 and hopefully the buildbot failures.Eli Friedman
2011-05-04Re-commit r130862 with a minor change to avoid an iterator running off the ed...Eli Friedman
2011-05-04Back out r130862; it appears to be breaking bootstrap.Eli Friedman
2011-05-04Teach MachineCSE how to do simple cross-block CSE involving physregs. This a...Eli Friedman
2011-04-11Fix a couple of places where changes are made but not tracked.Evan Cheng
2011-01-10fit in 80 cols and use MBB::isSuccessor instead of a handChris Lattner
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
2011-01-03Use a RecyclingAllocator to allocate values for MachineCSE's ScopedHashTable forCameron Zwarich
2010-12-15Teach machine cse to commute instructions.Evan Cheng
2010-10-29Teach machine cse to eliminate instructions with multiple physreg uses and de...Evan Cheng
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-10-06Add MachineRegisterInfo::constrainRegClass and use it in MachineCSE.Jakob Stoklund Olesen
2010-09-17Machine CSE was forgetting to clear some data structures.Evan Cheng
2010-09-17Fix a potential bug that can cause miscomparison with and without debug info.Evan Cheng
2010-08-17Machine CSE preserves CFG. Pass manager was freeing machineloopinfo after mac...Evan Cheng
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-07-16Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.Jakob Stoklund Olesen