summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineCSE.cpp
Commit message (Expand)AuthorAge
* [Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* Disable each MachineFunctionPass for 'optnone' functions, unless thatPaul Robinson2014-03-31
* Switch a number of loops in lib/CodeGen over to range-based for-loops, now thatOwen Anderson2014-03-17
* Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson2014-03-13
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-07
* Replace PROLOG_LABEL with a new CFI_INSTRUCTION.Rafael Espindola2014-03-07
* [C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer2014-03-02
* Disabled subregister copy coalescing during MachineCSE.Andrew Trick2013-12-17
* Allow MachineCSE to coalesce trivial subregister copies the same way that it ...Andrew Trick2013-12-17
* Revert "Allow MachineCSE to coalesce trivial subregister copies the same way ...Rafael Espindola2013-12-16
* Allow MachineCSE to coalesce trivial subregister copies the same wayAndrew Trick2013-12-16
* whitespaceAndrew Trick2013-12-16
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-14
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* CSE: allow PerformTrivialCoalescing to check copies across basic blockManman Ren2012-11-27
* Don't use iterator after being erased.Jakub Staszak2012-11-26
* Do not consider a machine instruction that uses and defines the sameUlrich Weigand2012-11-13
* Remove unused BitVectors from getAllocatableSet().Jakob Stoklund Olesen2012-10-16
* Switch most getReservedRegs() clients to the MRI equivalent.Jakob Stoklund Olesen2012-10-15
* MachineCSE: Hoist isConstantPhysReg out of the loop, it checks for overlaps a...Benjamin Kramer2012-08-11
* PR13578: Teach MachineCSE that instructions that use a constant register can ...Benjamin Kramer2012-08-11
* X86: enable CSE between CMP and SUBManman Ren2012-08-08
* MachineCSE: Update the heuristics for isProfitableToCSE.Manman Ren2012-08-07
* Remove tabs.Bill Wendling2012-07-19
* Remove ParentMap. You can just ask the domnode for its parent. No functionalityNick Lewycky2012-07-05
* Switch some getAliasSet clients to MCRegAliasIterator.Jakob Stoklund Olesen2012-06-01
* Use uint16_t to store register overlaps to reduce static data.Craig Topper2012-03-04
* Handle regmasks in MachineCSE.Jakob Stoklund Olesen2012-02-28
* Re-enable 150652 and 150654 - Make FPSCR non-reserved, and make MachineCSE ba...Lang Hames2012-02-17
* Oop - r150653 + r150654 broke one of my test cases. Backing out for now...Lang Hames2012-02-16
* MachineCSE shouldn't extend the live ranges of reserved or allocatable regist...Lang Hames2012-02-16
* Codegen pass definition cleanup. No functionality.Andrew Trick2012-02-08
* whitespaceAndrew Trick2012-02-08
* Persuade GCC that there is nothing worth warning about here (there isn't).Duncan Sands2012-02-05
* Avoid CSE of instructions which define physical registers across MBBs unlessEvan Cheng2012-01-11
* Allow machine-cse to look across MBB boundary when cse'ing instructions thatEvan Cheng2012-01-10
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-07
* We need to verify that the machine instruction we're using as a replacement forBill Wendling2011-10-12
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-28
* Re-revert r130877; it's apparently causing a regression on 197.parser,Eli Friedman2011-05-06
* Minor correction to r130877; fixes PR9846 and hopefully the buildbot failures.Eli Friedman2011-05-05
* Re-commit r130862 with a minor change to avoid an iterator running off the ed...Eli Friedman2011-05-04
* Back out r130862; it appears to be breaking bootstrap.Eli Friedman2011-05-04
* Teach MachineCSE how to do simple cross-block CSE involving physregs. This a...Eli Friedman2011-05-04
* Fix a couple of places where changes are made but not tracked.Evan Cheng2011-04-11
* fit in 80 cols and use MBB::isSuccessor instead of a handChris Lattner2011-01-10
* Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic.Jakob Stoklund Olesen2011-01-10
* Do not model all INLINEASM instructions as having unmodelled side effects.Evan Cheng2011-01-07
* Use a RecyclingAllocator to allocate values for MachineCSE's ScopedHashTable forCameron Zwarich2011-01-03
* Teach machine cse to commute instructions.Evan Cheng2010-12-15