| Commit message (Expand) | Author | Age | Files | Lines |
| * | Refactor code. Remove duplicated functions that basically do the same thing as | Evan Cheng | 2008-03-05 | 1 | -4/+3 |
| * | Fix a bug in dead spill slot elimination. | Evan Cheng | 2008-02-27 | 1 | -0/+2 |
| * | Final de-tabification. | Bill Wendling | 2008-02-27 | 1 | -1/+1 |
| * | Spiller now remove unused spill slots. | Evan Cheng | 2008-02-27 | 1 | -17/+72 |
| * | Rename PrintableName to Name. | Bill Wendling | 2008-02-26 | 1 | -7/+7 |
| * | Change "Name" to "AsmName" in the target register info. Gee, a refactoring tool | Bill Wendling | 2008-02-26 | 1 | -9/+9 |
| * | De-tabify. | Bill Wendling | 2008-02-26 | 1 | -1/+1 |
| * | Make sure reload of implicit uses are issued before remat's. | Evan Cheng | 2008-02-22 | 1 | -3/+15 |
| * | Enable re-materialization of instructions which have virtual register operand... | Evan Cheng | 2008-02-22 | 1 | -11/+32 |
| * | Update gcc 4.3 warnings fix patch with recent head changes | Anton Korobeynikov | 2008-02-20 | 1 | -1/+2 |
| * | Rename MRegisterInfo to TargetRegisterInfo. | Dan Gohman | 2008-02-10 | 1 | -52/+52 |
| * | Forgot these files. | Evan Cheng | 2008-02-08 | 1 | -1/+1 |
| * | rename TargetInstrDescriptor -> TargetInstrDesc. | Chris Lattner | 2008-01-07 | 1 | -7/+7 |
| * | Move a bunch more accessors from TargetInstrInfo to TargetInstrDescriptor | Chris Lattner | 2008-01-07 | 1 | -1/+1 |
| * | Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects | Chris Lattner | 2008-01-07 | 1 | -3/+3 |
| * | Update CodeGen for MRegisterInfo --> TargetInstrInfo changes. | Owen Anderson | 2008-01-07 | 1 | -5/+5 |
| * | Move some more instruction creation methods from RegisterInfo into InstrInfo. | Owen Anderson | 2008-01-01 | 1 | -8/+12 |
| * | Move copyRegToReg from MRegisterInfo to TargetInstrInfo. This is part of the | Owen Anderson | 2007-12-31 | 1 | -3/+3 |
| * | Rename SSARegMap -> MachineRegisterInfo in keeping with the idea | Chris Lattner | 2007-12-31 | 1 | -28/+30 |
| * | More cleanups for MachineOperand: | Chris Lattner | 2007-12-30 | 1 | -2/+2 |
| * | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
| * | If deleting a reload instruction due to reuse (value is available in register... | Evan Cheng | 2007-12-11 | 1 | -2/+18 |
| * | MachineInstr can change. Store indexes instead. | Evan Cheng | 2007-12-05 | 1 | -1/+1 |
| * | If a split live interval is spilled again, remove the kill marker on its last... | Evan Cheng | 2007-12-05 | 1 | -1/+2 |
| * | Fix kill info for split intervals. | Evan Cheng | 2007-12-05 | 1 | -3/+5 |
| * | - Mark last use of a split interval as kill instead of letting spiller track it. | Evan Cheng | 2007-12-05 | 1 | -2/+0 |
| * | Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether | Evan Cheng | 2007-12-05 | 1 | -11/+7 |
| * | Remove a unsafe optimization. This fixes 401.bzip2. | Evan Cheng | 2007-12-04 | 1 | -8/+0 |
| * | Spiller unfold optimization bug: do not clobber a reusable stack slot value u... | Evan Cheng | 2007-12-04 | 1 | -10/+16 |
| * | Bug fixes. | Evan Cheng | 2007-12-03 | 1 | -7/+8 |
| * | Update kill info for uses of split intervals. | Evan Cheng | 2007-12-03 | 1 | -8/+15 |
| * | Remove redundant foldMemoryOperand variants and other code clean up. | Evan Cheng | 2007-12-02 | 1 | -14/+4 |
| * | Fixed various live interval splitting bugs / compile time issues. | Evan Cheng | 2007-11-29 | 1 | -47/+25 |
| * | Recover compile time regression. | Evan Cheng | 2007-11-28 | 1 | -21/+23 |
| * | Live interval splitting: | Evan Cheng | 2007-11-17 | 1 | -55/+143 |
| * | Clean up sub-register implementation by moving subReg information back to | Evan Cheng | 2007-11-14 | 1 | -24/+11 |
| * | One more extract_subreg coalescing bug. | Evan Cheng | 2007-11-02 | 1 | -5/+33 |
| * | - Only perform the unfolding optimization when the folding in question is mod... | Evan Cheng | 2007-10-22 | 1 | -5/+2 |
| * | Local spiller optimization: | Evan Cheng | 2007-10-19 | 1 | -139/+243 |
| * | Local spiller optimization: | Evan Cheng | 2007-10-13 | 1 | -4/+50 |
| * | EXTRACT_SUBREG coalescing support. The coalescer now treats EXTRACT_SUBREG like | Evan Cheng | 2007-10-12 | 1 | -38/+70 |
| * | Allow copyRegToReg to emit cross register classes copies. | Evan Cheng | 2007-09-26 | 1 | -3/+4 |
| * | Remove isReg, isImm, and isMBB, and change all their users to use | Dan Gohman | 2007-09-14 | 1 | -6/+6 |
| * | Add instruction dump output. This helps find bugs. | David Greene | 2007-09-06 | 1 | -0/+6 |
| * | If the source of a move is in spill slot, the reload may be folded to essenti... | Evan Cheng | 2007-08-15 | 1 | -13/+19 |
| * | - If a def is dead, do not spill it. | Evan Cheng | 2007-08-14 | 1 | -61/+115 |
| * | If a MI's def is remat as well as spilled, and the store is later deemed dead... | Evan Cheng | 2007-08-14 | 1 | -2/+29 |
| * | If a spilled value is being reused and the use is a kill, that means there are | Evan Cheng | 2007-08-14 | 1 | -18/+32 |
| * | If a rematerializable def is not deleted, i.e. it is also spilled, check if the | Evan Cheng | 2007-08-14 | 1 | -11/+20 |
| * | Re-implement trivial rematerialization. This allows def MIs whose live interv... | Evan Cheng | 2007-08-13 | 1 | -128/+118 |