1. af462c4 Remove remaining calls to TII::isMoveInstr. by Jakob Stoklund Olesen · 15 years ago
  2. 0bfd092 Convert the last getPhysicalRegisterRegClass in VirtRegRewriter.cpp to by Rafael Espindola · 15 years ago
  3. db77609 Convert uses of getPhysicalRegisterRegClass in VirtRegRewriter.cpp. by Rafael Espindola · 15 years ago
  4. 1e1098c Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel. by Jakob Stoklund Olesen · 15 years ago
  5. e05442d Change TII::foldMemoryOperand API to require the machine instruction to be by Jakob Stoklund Olesen · 15 years ago
  6. 1769ccc Handle COPY in VirtRegRewriter. by Jakob Stoklund Olesen · 15 years ago
  7. 0bc25f4 Convert EXTRACT_SUBREG to COPY when emitting machine instrs. by Jakob Stoklund Olesen · 15 years ago
  8. 4933159 Cosmetic. by Dale Johannesen · 15 years ago
  9. 969b9fe Fix a case where an earlyclobber operand of an asm by Dale Johannesen · 15 years ago
  10. 9edf7de Slightly change the meaning of the reMaterialize target hook when the original by Jakob Stoklund Olesen · 15 years ago
  11. 2afb750 Teach VirtRegRewriter to handle spilling in instructions that have multiple by Jakob Stoklund Olesen · 15 years ago
  12. 31b9c44 It's not safe eliminate copies where src and dst have different sub-register indices. by Evan Cheng · 15 years ago
  13. 34dcc6f Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that it by Dan Gohman · 15 years ago
  14. 746ad69 Add argument TargetRegisterInfo to loadRegFromStackSlot and storeRegToStackSlot. by Evan Cheng · 15 years ago
  15. bd6cb4b Remove DBG_VALUE which reference dead stack slots. by Evan Cheng · 15 years ago
  16. 795ee9d Fix a number of clang -Wsign-compare warnings that didn't have an obvious by John McCall · 15 years ago
  17. 98116f9 Code clean up. Move includes from VirtRegRewriter.h to VirtRegRewriter.cpp. by Evan Cheng · 15 years ago
  18. 28a1e48 Avoid being influenced by the presence of dbg_value instructions. by Evan Cheng · 15 years ago
  19. 4d12d3b Debug info shouldn't affect kills. by Dale Johannesen · 15 years ago
  20. 5669880 Extract methods from LocalRewriter::RewriteMBB bringing it down to 666 lines. by Jakob Stoklund Olesen · 15 years ago
  21. 2cb4202 VirtRegRewriter spring cleaning. No functional change. by Jakob Stoklund Olesen · 15 years ago
  22. 18619b2 Uniformize the way these options are printed. Requested by Russell Wallace. by Duncan Sands · 15 years ago
  23. d135f14 Fix PR6283. by Jakob Stoklund Olesen · 15 years ago
  24. 45282ae fix a layering violation: VirtRegRewriter.cpp shouldn't use AsmPrinter.h. by Chris Lattner · 16 years ago
  25. 3143e90 fix missing #includes. by Chris Lattner · 16 years ago
  26. 518bb53 move target-independent opcodes out of TargetInstrInfo by Chris Lattner · 16 years ago
  27. 8efadf9 Add <imp-def> and <imp-kill> operands when replacing virtual sub-register defs and kills. by Jakob Stoklund Olesen · 16 years ago
  28. 0ee5218 Change errs() to dbgs(). by David Greene · 16 years ago
  29. 7896c9f improve portability to avoid conflicting with std::next in c++'0x. by Chris Lattner · 16 years ago
  30. 324da76 Add MachineBasicBlock::getName, and use it in place of getBasicBlock()->getName. by Jakob Stoklund Olesen · 16 years ago
  31. 38283e2 Fixed the in-place spiller and trivial rewriter, which had been broken by the recent SlotIndexes work. by Lang Hames · 16 years ago
  32. fae3e92 Added getSubRegIndex(A,B) that returns subreg index of A to B. Use it to replace broken code in VirtRegRewriter. by Evan Cheng · 16 years ago
  33. d57cdd5 - Change TargetInstrInfo::reMaterialize to pass in TargetRegisterInfo. by Evan Cheng · 16 years ago
  34. 8fdd84c Fix PR5412: Fix an inverted check and another missing sub-register check. by Evan Cheng · 16 years ago
  35. 1f6a3c8 Fix PR5411. Bug in UpdateKills. A reg def partially define its super-registers. by Evan Cheng · 16 years ago
  36. 6bedb30 by David Greene · 16 years ago
  37. 78c5cda When there is a 2-instruction spill sequence, record by Dale Johannesen · 16 years ago
  38. e841d2f When we generate spill code, then decide we don't need by Dale Johannesen · 16 years ago
  39. a5dc45e - Revert some changes from 85044, 85045, and 85047 that broke x86_64 tests and by Evan Cheng · 16 years ago
  40. 427c3ba Use isIdentityCopy. Fix a bozo bug (flipped condition) in InvalidateRegDef. by Evan Cheng · 16 years ago
  41. f5a86f4 Remove includes of Support/Compiler.h that are no longer needed after the by Nick Lewycky · 16 years ago
  42. 6726b6d Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. by Nick Lewycky · 16 years ago
  43. 3a6b9eb Revert the kludge in 76703. I got a clean by Dale Johannesen · 16 years ago
  44. b7c5bdf Remove some unused variables and methods warned about by by Duncan Sands · 16 years ago
  45. 3f2f3f5 by Lang Hames · 16 years ago
  46. 46ff969 Fix PR4753. by Jakob Stoklund Olesen · 16 years ago
  47. cfa6ec9 Kill off more cerr/cout uses and prune includes a bit. by Benjamin Kramer · 16 years ago
  48. 6456d38 remove some DOUTs by Chris Lattner · 16 years ago
  49. 7a1e872 Update LocalRewriter::DistanceMap when inserting stack loads. by Jakob Stoklund Olesen · 16 years ago
  50. 7db949d Fix a bunch of namespace pollution. by Dan Gohman · 16 years ago
  51. 2d4e6d3 by David Greene · 16 years ago
  52. ce63ffb More migration to raw_ostream, the water has dried up around the iostream hole. by Daniel Dunbar · 16 years ago
  53. fc6ad40 Let each target determines whether a machine instruction is dead. If true, that allows late codeine passes to delete it. by Evan Cheng · 16 years ago
  54. 5d88502 Another rewriter bug exposed by recent coalescer changes. ReuseInfo::GetRegForReload() should make sure the "switched" register is in the desired register class. I'm surprised this hasn't caused more failures in the past. by Evan Cheng · 16 years ago
  55. 5248468 Enable cross register class coalescing. by Evan Cheng · 16 years ago
  56. c1b46f9 Fix my brain cramp by inverting the assertion condition. by Evan Cheng · 16 years ago
  57. 2df5e55 Disable this assert for now, it is firing on an llvm-gcc bootstrap. :( by Daniel Dunbar · 16 years ago
  58. 24cd3c4 Fix inverted preprocessor conditional. by Daniel Dunbar · 16 years ago
  59. 5f15992 Changed my mind. We now allow remat of instructions whose defs have subreg indices. by Evan Cheng · 16 years ago
  60. 3784453 Let callers decide the sub-register index on the def operand of rematerialized instructions. by Evan Cheng · 16 years ago
  61. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  62. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  63. 261ce1d Remove TargetInstrInfo::CommuteChangesDestination and added findCommutedOpIndices which returns the operand indices which are swapped (when applicable). This allows for some code clean up and future enhancements. by Evan Cheng · 16 years ago
  64. 2578ba2 Handle IMPLICIT_DEF with isUndef operand marker, part 2. This patch moves the code to annotate machineoperands to LiveIntervalAnalysis. It also add markers for implicit_def that define physical registers. The rest, is just a lot of details. by Evan Cheng · 16 years ago
  65. 4784f1f Add a bit IsUndef to MachineOperand. This indicates the def / use register operand is defined by an implicit_def. That means it can def / use any register and passes (e.g. register scavenger) can feel free to ignore them. by Evan Cheng · 16 years ago
  66. ac27640 Removed SimpleRewriter. by Lang Hames · 16 years ago
  67. 2c48fe6 Fix for PR4225: When rewriter reuse a value in a physical register , it clear the register kill operand marker and its kill ops information. However, the cleared operand may be a def of a super-register. Clear the kill ops info for the super-register's sub-registers as well. by Evan Cheng · 16 years ago
  68. f41538d Update to in-place spilling framework. Includes live interval scaling and trivial rewriter. by Lang Hames · 16 years ago
  69. 427a6b6 Fix PR4210. Rewritter should track and update kills of sub-registers as well. by Evan Cheng · 16 years ago
  70. eca24fb Teach TransferDeadness to delete truly dead instructions if they do not produce side effects. by Evan Cheng · 16 years ago
  71. 87e3bca Renamed Spiller classes (plus uses and related files) to VirtRegRewriter. by Lang Hames · 16 years ago