| Commit message (Expand) | Author | Age | Files | Lines |
* | Avoid CSE of instructions which define physical registers across MBBs unless | Evan Cheng | 2012-01-11 | 1 | -4/+12 |
* | Allow machine-cse to look across MBB boundary when cse'ing instructions that | Evan Cheng | 2012-01-10 | 1 | -15/+54 |
* | Add bundle aware API for querying instruction properties and switch the code | Evan Cheng | 2011-12-07 | 1 | -5/+4 |
* | We need to verify that the machine instruction we're using as a replacement for | Bill Wendling | 2011-10-12 | 1 | -0/+11 |
* | - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo and | Evan Cheng | 2011-06-28 | 1 | -3/+3 |
* | Re-revert r130877; it's apparently causing a regression on 197.parser, | Eli Friedman | 2011-05-06 | 1 | -50/+27 |
* | Minor correction to r130877; fixes PR9846 and hopefully the buildbot failures. | Eli Friedman | 2011-05-05 | 1 | -1/+2 |
* | Re-commit r130862 with a minor change to avoid an iterator running off the ed... | Eli Friedman | 2011-05-04 | 1 | -27/+49 |
* | Back out r130862; it appears to be breaking bootstrap. | Eli Friedman | 2011-05-04 | 1 | -43/+27 |
* | Teach MachineCSE how to do simple cross-block CSE involving physregs. This a... | Eli Friedman | 2011-05-04 | 1 | -27/+43 |
* | Fix a couple of places where changes are made but not tracked. | Evan Cheng | 2011-04-11 | 1 | -2/+6 |
* | fit in 80 cols and use MBB::isSuccessor instead of a hand | Chris Lattner | 2011-01-10 | 1 | -5/+4 |
* | Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic. | Jakob Stoklund Olesen | 2011-01-10 | 1 | -2/+2 |
* | Do not model all INLINEASM instructions as having unmodelled side effects. | Evan Cheng | 2011-01-07 | 1 | -1/+1 |
* | Use a RecyclingAllocator to allocate values for MachineCSE's ScopedHashTable for | Cameron Zwarich | 2011-01-03 | 1 | -3/+7 |
* | Teach machine cse to commute instructions. | Evan Cheng | 2010-12-15 | 1 | -2/+19 |
* | Teach machine cse to eliminate instructions with multiple physreg uses and de... | Evan Cheng | 2010-10-29 | 1 | -50/+45 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
* | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 1 | -1/+5 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
* | Add MachineRegisterInfo::constrainRegClass and use it in MachineCSE. | Jakob Stoklund Olesen | 2010-10-06 | 1 | -7/+2 |
* | Machine CSE was forgetting to clear some data structures. | Evan Cheng | 2010-09-17 | 1 | -0/+7 |
* | Fix a potential bug that can cause miscomparison with and without debug info. | Evan Cheng | 2010-09-17 | 1 | -1/+1 |
* | Machine CSE preserves CFG. Pass manager was freeing machineloopinfo after mac... | Evan Cheng | 2010-08-17 | 1 | -0/+1 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -1/+1 |
* | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 2010-07-21 | 1 | -2/+2 |
* | Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway. | Jakob Stoklund Olesen | 2010-07-16 | 1 | -30/+4 |
* | Convert EXTRACT_SUBREG to COPY when emitting machine instrs. | Jakob Stoklund Olesen | 2010-07-08 | 1 | -0/+22 |
* | Detect and handle COPY in many places. | Jakob Stoklund Olesen | 2010-07-03 | 1 | -2/+2 |
* | Re-apply 105308 with fix. | Evan Cheng | 2010-06-04 | 1 | -7/+13 |
* | Revert 105308. | Bob Wilson | 2010-06-03 | 1 | -1/+4 |
* | Enable machine cse of instructions which define physical registers. | Evan Cheng | 2010-06-02 | 1 | -4/+1 |
* | Make this LookAheadLimit, not the uninitialized LookAheadLeft. | Eric Christopher | 2010-05-21 | 1 | -1/+1 |
* | Allow machine cse to cse instructions which define physical registers. Contro... | Evan Cheng | 2010-05-21 | 1 | -27/+81 |
* | Add a utility function for conservatively clearing kill flags, and make | Dan Gohman | 2010-05-13 | 1 | -1/+4 |
* | Rewrite machine cse to avoid recursion. | Evan Cheng | 2010-04-21 | 1 | -11/+85 |
* | Typo. | Evan Cheng | 2010-04-20 | 1 | -1/+1 |
* | After trivial coalescing, the MI being visited may have become a copy. Avoid ... | Evan Cheng | 2010-04-02 | 1 | -1/+5 |
* | dbg_value may end a block. | Evan Cheng | 2010-03-24 | 1 | -4/+4 |
* | Code clean up. | Evan Cheng | 2010-03-23 | 1 | -6/+6 |
* | Fix debug_value handling. | Dale Johannesen | 2010-03-11 | 1 | -2/+6 |
* | Add a couple more heuristics to neuter machine cse some more. | Evan Cheng | 2010-03-10 | 1 | -13/+57 |
* | Allow more cross-rc coalescing. | Evan Cheng | 2010-03-09 | 1 | -10/+13 |
* | Don't do illegal cross-class coalescing. | Jakob Stoklund Olesen | 2010-03-09 | 1 | -1/+1 |
* | - Make the machine cse dumb coalescer (as opposed to the more awesome simple | Evan Cheng | 2010-03-09 | 1 | -13/+57 |
* | Don't waste time trying to CSE labels, phis, inline asm. Definitely avoid cse... | Evan Cheng | 2010-03-08 | 1 | -0/+4 |
* | Restrict machine cse to really trivial coalescing. Leave the heavy lifting to... | Evan Cheng | 2010-03-08 | 1 | -0/+3 |
* | Don't update physical register def. | Evan Cheng | 2010-03-06 | 1 | -2/+3 |