1. 2824a65 Fix PR3391 and PR3864. Reg allocator infinite looping. by Evan Cheng · 15 years ago
  2. 8cccf0e Don't set SUnit::hasPhysRegDefs to true unless the defs are by Dan Gohman · 15 years ago
  3. a5c8ae2 Fix canClobberPhysRegDefs to check all SDNodes grouped together by Dan Gohman · 15 years ago
  4. 3974667 Add a new bit to SUnit to record whether a node has implicit physreg by Dan Gohman · 15 years ago
  5. f871ccb Now that errs() is properly non-buffered, there's no need to by Dan Gohman · 15 years ago
  6. 2ba682c LoopVR is not CFGOnly. by Dan Gohman · 15 years ago
  7. a9d71e1 Enhance LiveValues to work on PHI operands. by Dan Gohman · 15 years ago
  8. 2004eb6 Correct some comments. Operand numbers start at 0. by Dan Gohman · 15 years ago
  9. fb11288 Model inline asm constraint which ties an input to an output register as machine operand TIED_TO constraint. This eliminated the need to pre-allocate registers for these. This also allows register allocator can eliminate the unneeded copies. by Evan Cheng · 15 years ago
  10. 7d6d4b3 Do not fold away subreg_to_reg if the source register has a sub-register index. That means the source register is taking a sub-register of a larger register. e.g. On x86 by Evan Cheng · 15 years ago
  11. a8bd27f fix a bug Alexei Svitkine pointed out. by Chris Lattner · 15 years ago
  12. eab5cb3 When we restore signal handlers, restore them back to what they by Chris Lattner · 15 years ago
  13. 1c4d8a0 factorize signal registration, part of PR3848. by Chris Lattner · 15 years ago
  14. 3aff0a6 Fix a grammaro in a comment that Bill noticed. by Dan Gohman · 15 years ago
  15. 82f8415 Add comments explaining why there's only one register for i8 return values. by Dan Gohman · 15 years ago
  16. 64da940 Factorize out a concept - no functionality change. by Duncan Sands · 15 years ago
  17. 8c7f24a add a fastpath to ConstantExpr::getBitCast to handle the case when an obviously by Chris Lattner · 15 years ago
  18. bdfbb74 Removed AFGR32 register class Handle odd registers allocation in FGR32. by Bruno Cardoso Lopes · 15 years ago
  19. 2a14c52 Fix a few more indentation problems and an 80-column violation. by Bob Wilson · 15 years ago
  20. 2dc4f54 No functional changes. Fix indentation and whitespace only. by Bob Wilson · 15 years ago
  21. 344c7c5 Fix instcombine to not introduce undefined shifts when merging two by Chris Lattner · 15 years ago
  22. ab6b226 Don't load values out of global constants with weak by Duncan Sands · 15 years ago
  23. db95fa1 Simplify this code; use a while instead of an if and a do-while. by Dan Gohman · 15 years ago
  24. 697cbbf For inline asm output operand that matches an input. Encode the input operand index in the high bits. by Evan Cheng · 15 years ago
  25. e9d81f0 Fixed comment for libcalls. by Sanjiv Gupta · 15 years ago
  26. 91520ea Fixed build warnings for unused variables. by Sanjiv Gupta · 15 years ago
  27. 6b830e6 Reformatting. Inserted code comments. Cleaned interfaces. by Sanjiv Gupta · 15 years ago
  28. b169426 Fixed the comment. No functionality change. by Sanjiv Gupta · 15 years ago
  29. 8fc2d0e Apply the patch requested in PR3846. by Chris Lattner · 15 years ago
  30. bc65ca8 Added option to enable generating less precise mad (multiply addition) by Mon P Wang · 15 years ago
  31. 654c98c The last use in a block that doesn't have successors by Dan Gohman · 15 years ago
  32. 48fe635 Fix the Win32 VS2008 build: by Sebastian Redl · 15 years ago
  33. a24752f Added MachineInstr::isRegTiedToDefOperand to check for two-addressness. by Evan Cheng · 15 years ago
  34. 1f67ce4 Clear the cached cost when removing a function in by Dale Johannesen · 15 years ago
  35. 3751f56 Add a liveness analysis pass for LLVM IR values. This computes by Dan Gohman · 15 years ago
  36. f33b110 Fix comment typo. by Dale Johannesen · 15 years ago
  37. f4978e2 This pass keeps a map of Instructions to Rank numbers, by Dale Johannesen · 15 years ago
  38. 5e6345b Fix PEI to not walk off the start of a block when an updated instruction by Chris Lattner · 15 years ago
  39. bf5836b Fix comment typo. by Duncan Sands · 15 years ago
  40. 0423483 Fix a couple glaring whitespace issues. This file isn't internally consistent by Nick Lewycky · 15 years ago
  41. 9c0f146 Remove strange extra semicolons. by Nick Lewycky · 15 years ago
  42. 7cee817 Add support to tablegen for naming the nodes themselves, not just the operands, by Nate Begeman · 15 years ago
  43. b53db4f Added support for Mips O32 Calling Convention by Bruno Cardoso Lopes · 15 years ago
  44. a5affdc aha, DAE does have to think about PHI nodes. Many thanks to "Dr Evil" (aka Duncan) by Chris Lattner · 15 years ago
  45. b44b366 Fix PR3826 - InstComb assert with vector shift, by not calling ComputeNumSignBits on a vector. by Chris Lattner · 15 years ago
  46. f023b54 add an assertion to make it clear that PHI nodes are not allowed. by Chris Lattner · 15 years ago
  47. b0c4199 Explicitly check for StoreInst, do not lose the chance to delete by Zhou Sheng · 15 years ago
  48. 16767c6 Revert my previous change on Local.cpp, instead, fix the bug on scalarrepl. by Zhou Sheng · 15 years ago
  49. df95a2f Fix a bug. If I->use_empty(), this method should return false. by Zhou Sheng · 15 years ago
  50. aa9df0b Added missing support for widening when splitting an unary op (PR3683) by Mon P Wang · 15 years ago
  51. ff81ebf Disable the "call to immediate" optimization on x86-64. It is by Chris Lattner · 15 years ago
  52. bda0765 Fix PR3807 by inserting 'insertelement' instructions in the normal dest of by Chris Lattner · 15 years ago
  53. b7e64ac LSR shouldn't ever try to hack on integer IV's larger than 64-bits. Right now by Chris Lattner · 15 years ago
  54. 152932b Don't force promotion of return arguments on the callee. by Rafael Espindola · 15 years ago
  55. b372c11 Add BUILTIN_EXPECT Support/Compiler macro. by Daniel Dunbar · 15 years ago
  56. 0b18e59 Fix codegen to compute the size of an allocation by multiplying the by Chris Lattner · 15 years ago
  57. 46d232d Remove a condition which is always true. by Chris Lattner · 15 years ago
  58. a82d3f7 CellSPU: Revert inadvertent mis-fix of fneg. by Scott Michel · 15 years ago
  59. 12a9dc8 r66870 missed this out. by Sanjiv Gupta · 15 years ago
  60. e14ad72 typo by Gabor Greif · 15 years ago
  61. a5fec0d Reapply r67049, with the test adjusted for darwin by Duncan Sands · 15 years ago
  62. 93b7415 Fix a problem with DAGCombine where we were building an illegal build by Mon P Wang · 15 years ago
  63. 9626447 Recognize bswapl as bswap too. by Dan Gohman · 15 years ago
  64. d735666 Recognize "bswapq" as an alternate spelling for the bswap instruction. by Dan Gohman · 15 years ago
  65. 262541b raw_ostream: Put all exceptional conditions in raw_ostream::write by Daniel Dunbar · 15 years ago
  66. e47b008 Spiller may unfold load / mod / store instructions as an optimization when the would be loaded value is available in a register. It needs to check if it's legal to clobber the register. Also, the register can contain values of multiple spill slots, make sure to check all instead of just the one being unfolded. by Evan Cheng · 15 years ago
  67. 7ea02ff CellSPU: by Scott Michel · 15 years ago
  68. d17d74b raw_ostream: Rework implementation of unbuffered streams so outputting by Daniel Dunbar · 15 years ago
  69. 6b23339 Fix a debug info dependency in jump threading. by Dale Johannesen · 15 years ago
  70. 89a66a9 raw_ostream: Replace flush_impl with write_impl, which takes data to by Daniel Dunbar · 15 years ago
  71. cf2a2c6 raw_ostream: Lift out flush_nonempty. by Daniel Dunbar · 15 years ago
  72. b451a0c Make raw_ostream::operator<<(const void *) fast; it doesn't matter but by Daniel Dunbar · 15 years ago
  73. de75d7f Add slow path for single character write, and use exclusively for by Daniel Dunbar · 15 years ago
  74. db14d63 --- Reverse-merging (from foreign repository) r67049 into '.': by Bill Wendling · 15 years ago
  75. dfec24c Tweak the fix for PR3784: be less sensitive about just by Duncan Sands · 15 years ago
  76. 6e1d147 CellSPU: by Scott Michel · 15 years ago
  77. 98ea463 This causes incorrect stack frame allocation when the last object is an array allocated on the stack which would lead by Bruno Cardoso Lopes · 15 years ago
  78. 5717488 Simplify. "Broken" is always true here. by Nick Lewycky · 15 years ago
  79. 34a4086 Remove obviously redundant call. by Nick Lewycky · 15 years ago
  80. 420dd37 Give the pre-alloc splitter access to the VirtRegMap. It doesn't do anything by Owen Anderson · 15 years ago
  81. c131793 Apply a patch by Micah Villmow to fix AsmParser to accept vector by Dan Gohman · 15 years ago
  82. 72bb0a6 Use %rip-relative addressing on x86-64 whenever practical, as by Dan Gohman · 15 years ago
  83. 9a49d31 Don't forego folding of loads into 64-bit adds when the other by Dan Gohman · 15 years ago
  84. cfbf05e Add newlines at end of file (this can annoy gcov) by Daniel Dunbar · 15 years ago
  85. 0b7a786 Avoid doing the transformation c ? 1.0 : 2.0 as load { 2.0, 1.0 } + c*4 by Mon P Wang · 15 years ago
  86. 474d3b3 Improve FastISel's handling of truncates to i1, and implement by Dan Gohman · 15 years ago
  87. 4425240 Fix -strip-debug-declare to work when there are by Dale Johannesen · 15 years ago
  88. fc0b80d Fix PR3784: If the source of a phi comes from a bb ended with an invoke, make sure the copy is inserted before the try range (unless it's used as an input to the invoke, then insert it after the last use), not at the end of the bb. by Evan Cheng · 15 years ago
  89. d52ec65 Fix a hashing bug in APInt. A certain pathological testcase (too by Stuart Hastings · 15 years ago
  90. 9a507cd Revert r66920. It was causing failures in the self-hosting buildbot (in release by Bill Wendling · 15 years ago
  91. 14ea1ec Fix FastISel's assumption that i1 values are always zero-extended by Dan Gohman · 15 years ago
  92. 520ebe6 add 8 and 16 bit TLS moves. add a fixme note on how to remove code duplication. by Rafael Espindola · 15 years ago
  93. d1c135c One more place where debug info affects codegen. by Dale Johannesen · 15 years ago
  94. 9b922aa Improve sext and zext of TLS variables. by Rafael Espindola · 15 years ago
  95. b14cda3 Second installment of "BasicBlock operands to the back" changes. by Gabor Greif · 15 years ago
  96. 44ceb8a generalize this code so that fast isel handles integer truncates to i1, which by Chris Lattner · 15 years ago
  97. 105be5a These instructions have special lowering that may lower them to SSE by Bill Wendling · 15 years ago
  98. 1606e8e Fix some significant problems with constant pools that resulted in unnecessary paddings between constant pool entries, larger than necessary alignments (e.g. 8 byte alignment for .literal4 sections), and potentially other issues. by Evan Cheng · 15 years ago
  99. 49c8aa0 Convert VirtRegMap to a MachineFunctionPass. by Owen Anderson · 15 years ago
  100. cee56e7 generalize the previous code to use the full generality of LEA by Chris Lattner · 15 years ago