1. fd7b326 Make invokes of inline asm legal. Teach codegen by Duncan Sands · 18 years ago
  2. 43ad6b3 Change the PointerType api for creating pointer types. The old functionality of PointerType::get() has become PointerType::getUnqual(), which returns a pointer in the generic address space. The new prototype of PointerType::get() requires both a type and an address space. by Christopher Lamb · 18 years ago
  3. 87a702b Break local interferences in StrongPHIElimination. One step closer... by Owen Anderson · 18 years ago
  4. 965b467 A few more comments. by Owen Anderson · 18 years ago
  5. ded2b0d Add explicit keywords, and fix a minor typo that they uncovered. by Dan Gohman · 18 years ago
  6. 7c07aeb Bug fix. Must also match ResNo when matching an operand with a user. by Evan Cheng · 18 years ago
  7. 62d67dd Add register pairs to the list to check for local interferences. by Owen Anderson · 18 years ago
  8. 4ba08ec Remove ugly and horrible code. It's not necessary for correctness, and can be added back later if it causes code quality issues. by Owen Anderson · 18 years ago
  9. 6e141fd Implicit def instructions, e.g. X86::IMPLICIT_DEF_GR32, are always re-materializable and they should not be spilled. by Evan Cheng · 18 years ago
  10. 8908132 Allow vector integer constants to be created with by Dan Gohman · 18 years ago
  11. ed2ffa2 Forgot to remove a register from the PHI-union after I'd determined that it by Owen Anderson · 18 years ago
  12. 39c883c If deleting a reload instruction due to reuse (value is available in register R and reload is targeting R), make sure to invalidate the kill information of the last kill. by Evan Cheng · 18 years ago
  13. efe2be7 Need to grow the indexed map. Added debug statements. by Bill Wendling · 18 years ago
  14. a17ad59 Simplify slightly. by Bill Wendling · 18 years ago
  15. d525f66 More progress on StrongPHIElimination. Now we actually USE the DomForest! by Owen Anderson · 18 years ago
  16. 12ebf14 Blark! How in the world did this work without this?! by Bill Wendling · 18 years ago
  17. 28bd5f0 - Update the virtual reg to machine instruction map when hoisting. by Bill Wendling · 18 years ago
  18. 650b052 Checking for "zero operands" during the "CanHoistInst()" method isn't necessary by Bill Wendling · 18 years ago
  19. 22f07ff Switch over to MachineLoopInfo. by Evan Cheng · 18 years ago
  20. ce25443 Pretty print shuffle mask operand. by Evan Cheng · 18 years ago
  21. ad93c4f CollectorMetadata and Collector are rejiggered to get along with by Gordon Henriksen · 18 years ago
  22. afc6de0 A little more progress on StrongPHIElimination, now that I have a better sense of by Owen Anderson · 18 years ago
  23. 11a4f64 Improve branch folding by recgonizing that explict successor relationships impact the value of fall-through choices. by Christopher Lamb · 18 years ago
  24. 46a6e79 Duncan points out that the subtraction is unneeded since hte code by Chris Lattner · 18 years ago
  25. 0097555 Add support for splitting the operand of a return instruction. by Chris Lattner · 18 years ago
  26. 041b3f8 Reverting 44702. It wasn't correct to rename them. by Bill Wendling · 18 years ago
  27. eeaad40 add many new cases to SplitResult. SplitResult now handles all the cases that LegalizeDAG does. by Chris Lattner · 18 years ago
  28. 5018786 Implement splitting support for store, allowing us to compile: by Chris Lattner · 18 years ago
  29. 697b53e implement vector splitting of load, undef, and binops. by Chris Lattner · 18 years ago
  30. e4af7b5 implement some methods. by Chris Lattner · 18 years ago
  31. 13c6a17 add scaffolding for splitting of vectors. by Chris Lattner · 18 years ago
  32. 7514646 reorganize header to separate into functional blocks. by Chris Lattner · 18 years ago
  33. ee88813 split scalarization out to its own file. by Chris Lattner · 18 years ago
  34. cc663a8 Split expansion out into its own file. by Chris Lattner · 18 years ago
  35. 08d1275 Split promotion support out to its own file. by Chris Lattner · 18 years ago
  36. 524825b Rename LegalizeDAGTypes.cpp -> LegalizeTypes.cpp by Chris Lattner · 18 years ago
  37. dff67f5 Split the class definition of DAGTypeLegalizer out into a header. by Chris Lattner · 18 years ago
  38. 320c630 Renaming: by Bill Wendling · 18 years ago
  39. b48519c Incorporated comments from Evan and Chris: by Bill Wendling · 18 years ago
  40. 0f940c9 Initial commit of the machine code LICM pass. It successfully hoists this: by Bill Wendling · 18 years ago
  41. dfb1561 Add an option to control this heuristic tweak so I can test it. by Evan Cheng · 18 years ago
  42. e0e6fac Redo previous patch so optimization only done for i1. Simpler and safer. by Dale Johannesen · 18 years ago
  43. 33faddc Turning simple splitting on. Start testing new coalescer heuristics as new llcbeta. by Evan Cheng · 18 years ago
  44. d3fd6d2 third time around: instead of disabling this completely, by Chris Lattner · 18 years ago
  45. e00cbad Actually, disable this code for now. More analysis and improvements to by Chris Lattner · 18 years ago
  46. e70da20 implement a readme entry, compiling the code into: by Chris Lattner · 18 years ago
  47. 72b2df1 implement the rest of the functionality from SelectionDAGLegalize::ScalarizeVectorOp by Chris Lattner · 18 years ago
  48. 59f1e97 Fix PR1842. by Dale Johannesen · 18 years ago
  49. 5ef3a04 Fix for PR1831: if all defs of an interval are re-materializable, then it's a preferred spill candiate. by Evan Cheng · 18 years ago
  50. d120ffd MachineInstr can change. Store indexes instead. by Evan Cheng · 18 years ago
  51. adf8590 If a split live interval is spilled again, remove the kill marker on its last use. by Evan Cheng · 18 years ago
  52. f38d14f Clobber more bugs. by Evan Cheng · 18 years ago
  53. b50bb8c Fix kill info for split intervals. by Evan Cheng · 18 years ago
  54. 60fb5ec more scalarization by Chris Lattner · 18 years ago
  55. d36db02 scalarize vector binops by Chris Lattner · 18 years ago
  56. 018f9b0 - Mark last use of a split interval as kill instead of letting spiller track it. by Evan Cheng · 18 years ago
  57. d64b5c8 Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether by Evan Cheng · 18 years ago
  58. dd86ce3 Remove a unsafe optimization. This fixes 401.bzip2. by Evan Cheng · 18 years ago
  59. 35a3e4a Spiller unfold optimization bug: do not clobber a reusable stack slot value unless it can be modified. by Evan Cheng · 18 years ago
  60. eb1819d Implement framework for scalarizing node results. This is sufficient by Chris Lattner · 18 years ago
  61. 13c207b start providing framework for scalarizing vectors. by Chris Lattner · 18 years ago
  62. 597d10d Discard split intervals made empty due to folding. by Evan Cheng · 18 years ago
  63. e4b3900 Bug fixes. by Evan Cheng · 18 years ago
  64. a3355ff Rather than having special rules like "intrinsics cannot by Duncan Sands · 18 years ago
  65. 31d4318 Typo by Evan Cheng · 18 years ago
  66. 70306f8 Update kill info for uses of split intervals. by Evan Cheng · 18 years ago
  67. aee4af6 Remove redundant foldMemoryOperand variants and other code clean up. by Evan Cheng · 18 years ago
  68. e3110d0 Fix a bug where splitting cause some unnecessary spilling. by Evan Cheng · 18 years ago
  69. e62f97c Allow some reloads to be folded in multi-use cases. Specifically testl r, r -> cmpl [mem], 0. by Evan Cheng · 18 years ago
  70. cddbb83 Do not fold reload into an instruction with multiple uses. It issues one extra load. by Evan Cheng · 18 years ago
  71. 962e075 Provide a way to update DescGlobals cache directly. by Devang Patel · 18 years ago
  72. cb3c330 Do not lose rematerialization info when spilling already split live intervals. by Evan Cheng · 18 years ago
  73. 1953d0c Fix a major performance issue with splitting. If there is a def (not def/use) by Evan Cheng · 18 years ago
  74. c3fc7d9 Replace the odd kill# hack with something less fragile. by Evan Cheng · 18 years ago
  75. 0cbb116 Fixed various live interval splitting bugs / compile time issues. by Evan Cheng · 18 years ago
  76. c3868e0 Kill info update bug. by Evan Cheng · 18 years ago
  77. afa3b6d Add some convenience methods for querying attributes, and use them. by Duncan Sands · 18 years ago
  78. 0a488b3 Add missing newlines at EOF. by Duncan Sands · 18 years ago
  79. cada245 Recover compile time regression. by Evan Cheng · 18 years ago
  80. e4ad9c7 Add MachineLoopInfo. This is not yet tested. by Owen Anderson · 18 years ago
  81. d73ab88 Support returning non-power-of-2 vectors to unblock some work by Nate Begeman · 18 years ago
  82. dc02467 Fix PR1146: parameter attributes are longer part of by Duncan Sands · 18 years ago
  83. b3d9cdb err, no really. by Chris Lattner · 18 years ago
  84. 5ebfaa2 don't depend on ADL. by Chris Lattner · 18 years ago
  85. 7700304 Don't lower srem/urem X%C to X-X/C*C unless the division is actually by Dan Gohman · 18 years ago
  86. c58d558 Implement expand support for MERGE_VALUEs that only produces one result. by Chris Lattner · 18 years ago
  87. 87726ac Implement support for custom legalization in DAGTypeLegalizer::ExpandOperand. by Chris Lattner · 18 years ago
  88. 27a6c73 Several changes: by Chris Lattner · 18 years ago
  89. baccd58 Fix a bug in which node A is replaced by node B, but later by Duncan Sands · 18 years ago
  90. 1d4ce2a Fix .eh table linkage issues on Darwin. Some EH support by Dale Johannesen · 18 years ago
  91. e400af8 ExpandUnalignedLoad doesn't handle vectors right at all apparently. by Chris Lattner · 18 years ago
  92. 6c9c680 Implement vector expand support for shuffle_vector. This fixes PR1811. by Chris Lattner · 18 years ago
  93. daf9bc8 Implement splitting of UNDEF nodes. This is the first step towards fixing PR1811 by Chris Lattner · 18 years ago
  94. 089617d Add support in SplitVectorOp for remainder operators. by Dan Gohman · 18 years ago
  95. b348d18 Add support for vectors to int <-> float casts. by Nate Begeman · 18 years ago
  96. 81a0382 Live interval splitting: by Evan Cheng · 18 years ago
  97. 917c2a6 Implement necessary bits for flt_rounds gcc builtin. by Anton Korobeynikov · 18 years ago
  98. 5db1afb Basic non-power-of-2 vector support by Nate Begeman · 18 years ago
  99. 560a737 This assertion was bogus. by Duncan Sands · 18 years ago
  100. 5d44626 Fix a thinko in post-allocation coalescer. by Evan Cheng · 18 years ago