| Commit message (Expand) | Author | Age | Files | Lines |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -64/+63 |
* | Add coalescer asserts. | Jakob Stoklund Olesen | 2009-12-22 | 1 | -4/+6 |
* | Changed slot index ranges for MachineBasicBlocks to be exclusive of endpoint. | Lang Hames | 2009-12-22 | 1 | -2/+2 |
* | Moved spill weight calculation out of SimpleRegisterCoalescing and into its o... | Lang Hames | 2009-12-14 | 1 | -110/+0 |
* | Coalesce insert_subreg undef, x first to avoid phase ordering issue. | Evan Cheng | 2009-12-11 | 1 | -4/+11 |
* | It's not safe to coalesce a move where src and dst registers have different s... | Evan Cheng | 2009-12-10 | 1 | -1/+7 |
* | improve portability to avoid conflicting with std::next in c++'0x. | Chris Lattner | 2009-12-03 | 1 | -14/+18 |
* | Fix PR5391: support early clobber physical register def tied with a use (ewwww) | Evan Cheng | 2009-12-01 | 1 | -0/+12 |
* | Use CFG connectedness as a secondary sort key when deciding the order of copy... | Jakob Stoklund Olesen | 2009-12-01 | 1 | -3/+13 |
* | Add MachineBasicBlock::getName, and use it in place of getBasicBlock()->getName. | Jakob Stoklund Olesen | 2009-11-20 | 1 | -1/+1 |
* | - Change TargetInstrInfo::reMaterialize to pass in TargetRegisterInfo. | Evan Cheng | 2009-11-14 | 1 | -1/+1 |
* | RangeIsDefinedByCopyFromReg() should check for subreg_to_reg, insert_subreg, | Evan Cheng | 2009-11-04 | 1 | -6/+22 |
* | The Indexes Patch. | Lang Hames | 2009-11-03 | 1 | -82/+86 |
* | Stop the iterator in ValueLiveAt from potentially running off the end of the ... | Lang Hames | 2009-10-30 | 1 | -3/+5 |
* | Reapply r85338. | Bill Wendling | 2009-10-29 | 1 | -2/+17 |
* | Reverting r85338 for now. It's causing a bootstrap failure on PPC darwin9. | Bill Wendling | 2009-10-29 | 1 | -17/+2 |
* | Fixed a bug in the coalescer where intervals were occasionally merged despite... | Lang Hames | 2009-10-27 | 1 | -2/+17 |
* | - Revert some changes from 85044, 85045, and 85047 that broke x86_64 tests and | Evan Cheng | 2009-10-26 | 1 | -22/+17 |
* | Do not delete identity insert_subreg even if dest is virtual. Let later passe... | Evan Cheng | 2009-10-25 | 1 | -20/+27 |
* | Rename isLoopExit to isLoopExiting, for consistency with the wording | Dan Gohman | 2009-10-24 | 1 | -2/+2 |
* | Identity copies should not contribute to spill weight. | Evan Cheng | 2009-10-23 | 1 | -2/+5 |
* | Factor out LiveIntervalAnalysis' code to determine whether an instruction | Dan Gohman | 2009-10-09 | 1 | -2/+5 |
* | isTriviallyReMaterializable checks the | Dan Gohman | 2009-10-09 | 1 | -2/+1 |
* | Oops. Renamed remaining MachineInstrIndex references. | Lang Hames | 2009-10-03 | 1 | -3/+3 |
* | Renamed MachineInstrIndex to LiveIndex. | Lang Hames | 2009-10-03 | 1 | -45/+45 |
* | Coalescer should not delete extract_subreg, insert_subreg, and subreg_to_reg of | Evan Cheng | 2009-09-28 | 1 | -3/+16 |
* | Clean up LiveVariables and change how it deals with partial updates and kills... | Evan Cheng | 2009-09-24 | 1 | -2/+13 |
* | Fix a obvious logic error. | Evan Cheng | 2009-09-23 | 1 | -15/+15 |
* | Fix a pasto. Also simplify for Bill's benefit. | Evan Cheng | 2009-09-22 | 1 | -2/+4 |
* | Clean up spill weight computation. Also some changes to give loop induction | Evan Cheng | 2009-09-21 | 1 | -54/+94 |
* | Fix this assertion string to mention subreg_to_reg. | Dan Gohman | 2009-09-21 | 1 | -2/+2 |
* | Tabs -> spaces, and remove trailing whitespace. | Daniel Dunbar | 2009-09-20 | 1 | -67/+67 |
* | Fix PR4910: Broken logic in coalescer means when a physical register liveness... | Evan Cheng | 2009-09-17 | 1 | -3/+4 |
* | Remove -new-coalescer-heuristic. It's not useful. | Evan Cheng | 2009-09-12 | 1 | -127/+19 |
* | When remat'ing and destination virtual register has a sub-register index. Mak... | Evan Cheng | 2009-09-08 | 1 | -0/+16 |
* | Replaces uses of unsigned for indexes in LiveInterval and VNInfo with | Lang Hames | 2009-09-04 | 1 | -77/+94 |
* | remove some uses of llvm/Support/Streams.h | Chris Lattner | 2009-08-23 | 1 | -2/+2 |
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 1 | -1/+1 |
* | Convert DOUT to DEBUG(errs()...). | Bill Wendling | 2009-08-22 | 1 | -59/+95 |
* | Modified VNInfo. The "copy" member is now a union which holds the copy for a ... | Lang Hames | 2009-08-10 | 1 | -15/+15 |
* | Another coalescer bug. When a dead copy is eliminated, transfer the kill to a... | Evan Cheng | 2009-08-07 | 1 | -5/+6 |
* | Rename a variable to make MSVC happy. | Benjamin Kramer | 2009-08-05 | 1 | -3/+3 |
* | Another nasty coalescer bug (is there another kind): | Evan Cheng | 2009-08-05 | 1 | -5/+19 |
* | Fix a coaelescer bug. If a copy val# is extended to eliminate a non-trivially... | Evan Cheng | 2009-08-03 | 1 | -1/+8 |
* | Use setPreservesAll and setPreservesCFG in CodeGen passes. | Dan Gohman | 2009-07-31 | 1 | -0/+1 |
* | inline the global 'getInstrOperandRegClass' function into its callers | Chris Lattner | 2009-07-29 | 1 | -1/+1 |
* | Avoid build warnings. | Mike Stump | 2009-07-27 | 1 | -0/+1 |
* | More migration to raw_ostream, the water has dried up around the iostream hole. | Daniel Dunbar | 2009-07-25 | 1 | -13/+14 |
* | Make some changes suggested by Bill and Evan. | David Greene | 2009-07-22 | 1 | -17/+1 |
* | Add some support for iterative coalescers to calculate a joined live | David Greene | 2009-07-21 | 1 | -1/+18 |