1. ad75460 Remove special case for SETCC opcode; add some comments explaining why by Eli Friedman · 16 years ago
  2. 2d92c71 This patch brings the list of attributes in CPPBackend.cpp up to date with the by Jeffrey Yasskin · 16 years ago
  3. 3be2e51 Some minor cleanups. by Eli Friedman · 16 years ago
  4. 3b1259b "The instructions MMX_PSADBWrm and MMX_PSADBWrr have opcode 0b11100000 (e0), but by Bill Wendling · 16 years ago
  5. 8b944d3 Added optimization that narrow load / op / store and the 'op' is a bit twiddling instruction and its second operand is an immediate. If bits that are touched by 'op' can be done with a narrower instruction, reduce the width of the load and store as well. This happens a lot with bitfield manipulation code. by Evan Cheng · 16 years ago
  6. c2695eb Revert 72493 and replace it with a more conservative fix, for now: don't by Dan Gohman · 16 years ago
  7. ba2352b Ger rid of some dead code. by Eli Friedman · 16 years ago
  8. ead28bd In ChangeCompareStride, when the stride to be reused is truncated to by Dan Gohman · 16 years ago
  9. bc9be21 Fix sfence jit encoding. Patch by Sean Callanan. by Evan Cheng · 16 years ago
  10. d3bdf19 Added support for fround, fextend and FP_TO_SINT by Bruno Cardoso Lopes · 16 years ago
  11. 0d09b83 Minor fix for CMake build system by Douglas Gregor · 16 years ago
  12. b5da3f6 Minor cleanups; add a better explanation for the issue with BUILD_VECTOR. by Eli Friedman · 16 years ago
  13. 4bc8c71 Remove more special cases for opcodes. by Eli Friedman · 16 years ago
  14. 509150f Remove special cases for more opcodes. by Eli Friedman · 16 years ago
  15. f6f20a7 Removing more special cases from LegalizeDAG. by Eli Friedman · 16 years ago
  16. 26ea8f9 Eliminate more special cases for opcodes. by Eli Friedman · 16 years ago
  17. f6b23bf Remove more special cases from LegalizeDAG. by Eli Friedman · 16 years ago
  18. 47b41f7 Remove unused argument. by Eli Friedman · 16 years ago
  19. 3f727d6 Remove more opcode special cases. by Eli Friedman · 16 years ago
  20. f1a8048 Add braces around an array initializer. by Dan Gohman · 16 years ago
  21. 4a4f767 Teach SCEVExpander to avoid creating over-indexed GEP indices when by Dan Gohman · 16 years ago
  22. 72776d2 Teach BasicAliasAnalysis to understand constant gep indices that fall by Dan Gohman · 16 years ago
  23. 8c377c7 Start of refactoring LegalizeDAG so that we don't need specialized by Eli Friedman · 16 years ago
  24. 36df499 Don't abuse the quirky behavior of LegalizeDAG for XINT_TO_FP and by Eli Friedman · 16 years ago
  25. 8220557 Back out r72431, it is causing a number of compilation crashes with clang. by Daniel Dunbar · 16 years ago
  26. 8cf5ab1 Update CPU capabilities for AMD machines by Stefanus Du Toit · 16 years ago
  27. ecc23a5 Don't abuse the quirky behavior of LegalizeDAG for XINT_TO_FP and by Eli Friedman · 16 years ago
  28. 493a3d0 LiveVariables::VarInfo contains an AliveBlocks BitVector, which has as many by Jeffrey Yasskin · 16 years ago
  29. 91bb61a For the return type of SCEVUDivExpr, use the RHS' type instead of by Dan Gohman · 16 years ago
  30. f876ad0 In cases where a pointer value is an operand of a multiplication or by Dan Gohman · 16 years ago
  31. 74807f2 Delete a bunch of dead code from LegalizeDAG. by Eli Friedman · 16 years ago
  32. aed4a43 Eliminate VarInfo::UsedBlocks. by Evan Cheng · 16 years ago
  33. ab9cf12 make memdep use the getModRefInfo method for stores instead of the by Chris Lattner · 16 years ago
  34. d67a166 Audit the type constructors. Previously it was possible to create [0 x void] by Nick Lewycky · 16 years ago
  35. d9b7715 add some late optimizations that GCC does. It thinks these are a win by Chris Lattner · 16 years ago
  36. 0c85aab fix typo by Chris Lattner · 16 years ago
  37. f9dc644 we should eventually add -march=atom and the new atom movbe instruction. by Chris Lattner · 16 years ago
  38. 6c0866c Various comment fixes. by Dan Gohman · 16 years ago
  39. d594e6f Change ScalarEvolution::getSCEVAtScope to always return the original value by Dan Gohman · 16 years ago
  40. c046c00 Add a comment which should hopefully make the purpose of this method a by Eli Friedman · 16 years ago
  41. 57f1a4b Minor improvement to FCOPYSIGN to use BIT_CONVERT in cases where the by Eli Friedman · 16 years ago
  42. 3d43138 Move Rewriter.clear() earlier, to avoid triggerring the AssertingVH by by Torok Edwin · 16 years ago
  43. 3790fb0 Instead of clearing the rewriter, don't attempt to rewrite dead phi nodes. by Torok Edwin · 16 years ago
  44. 95bdbfa When rewriting the loop exit test with the canonical induction variable, by Dan Gohman · 16 years ago
  45. fb5a341 Fix this code for hosts where std::vector doesn't have .data(). by Dan Gohman · 16 years ago
  46. 14fba29 When replacing a floating-point comparison with an integer by Dan Gohman · 16 years ago
  47. 453aa4f Generalize SCEVExpander::visitAddRecExpr's GEP persuit, and avoid by Dan Gohman · 16 years ago
  48. 3925043 When the low bits of one operand of an add are zero, that number by Dan Gohman · 16 years ago
  49. b679de2 The rewriter may hold references to instructions that are deleted because they are trivially dead. by Torok Edwin · 16 years ago
  50. ed2f8c5 Rewrite ISD::FCOPYSIGN lowering to never use i64. Not really ideal, but by Eli Friedman · 16 years ago
  51. 7d869fb Update for CMakeLists; untested, so tell me if there are issues. by Eli Friedman · 16 years ago
  52. 957bffa Remove checks of getTypeAction from LegalizeOp; we already assert that by Eli Friedman · 16 years ago
  53. 1fde9c5 Disable type legalization in LegalizeDAG. by Eli Friedman · 16 years ago
  54. 1a8229b Make the PPC backend use a legal type for the operands to the BUILD_VECTOR by Eli Friedman · 16 years ago
  55. 2a35b1c Fix a bug in the expansion of EXTRACT_SUBVECTOR in by Eli Friedman · 16 years ago
  56. 108b519 Make the X86 backend mark EXTRACT_SUBVECTOR as Expand, at least for the moment. by Eli Friedman · 16 years ago
  57. 3d43b3f Add a proper implementation of EXTRACT_SUBVECTOR legalization that by Eli Friedman · 16 years ago
  58. 6d7d2aa Add ARMv7 architecture, Cortex processors and different FPU modes handling. by Anton Korobeynikov · 16 years ago
  59. 88ce667 Emit ARM Build Attributes by Anton Korobeynikov · 16 years ago
  60. 41a0243 Propagate CPU string out of SubtargetFeatures by Anton Korobeynikov · 16 years ago
  61. a14be3b Work around a page size issue on Cygwin. by Jay Foad · 16 years ago
  62. 6bb4958 Fix PR4254. by Torok Edwin · 16 years ago
  63. 1f04462 stat64/open64/lseek64 for the interpreter by Torok Edwin · 16 years ago
  64. f5ff1d3 available_externall linkage is not local, this was confusing the codegenerator, by Torok Edwin · 16 years ago
  65. 5c22c80 Add a new step to legalization to legalize vector math operations. This by Eli Friedman · 16 years ago
  66. 948e95a Make the x86 backend custom-lower UINT_TO_FP and FP_TO_UINT on 32-bit by Eli Friedman · 16 years ago
  67. 2ddb6f1 Fix bug in FoldFCmp_IntToFP_Cst. If inttofp is a uintofp, use unsigned instead of signed integer constant. by Evan Cheng · 16 years ago
  68. a2ac75d CMake: Use libpthread in tblgen when needed. Updated list of source by Oscar Fuentes · 16 years ago
  69. b0f1e17 Add a new codegen pass that normalizes dwarf exception handling by Duncan Sands · 16 years ago
  70. 2f95461 Only 64-bit targets support TImode libcalls. Disable the TImode shift libcalls by Bob Wilson · 16 years ago
  71. d6d0294 Teach IndVarSimplify's FixUsesBeforeDefs to handle InvokeInsts by by Dan Gohman · 16 years ago
  72. a57bc3b Emit debug information for globals (which include automatic variables as well because on PIC16 they are emitted as globals by the frontend). by Sanjiv Gupta · 16 years ago
  73. d6752d1 Always verify dominfo if expensive checking is enabled. by Duncan Sands · 16 years ago
  74. 0d56b06 Fix a thinko in the code that adapted SCEVMulExpr operands for by Dan Gohman · 16 years ago
  75. 382cb21 Revert this. There's no way to verifiy indirect calls, and an optimizer can turn by Torok Edwin · 16 years ago
  76. 9107c54 Verify that calling conventions match function prototype. by Torok Edwin · 16 years ago
  77. f7cca7b Fix loop-index-split to correctly preserve dominance frontiers. Part of by Eli Friedman · 16 years ago
  78. 7eaf057 Add llvm::triple constructor from arch, vendor, os strings, and recognize by Daniel Dunbar · 16 years ago
  79. fea3da9 Update an assertion string to new-style type names. by Dan Gohman · 16 years ago
  80. cf69a74 80 column violation. by Evan Cheng · 16 years ago
  81. 0f4012c Fix some incorrect logic in DominanceFrontier::splitBlock. Part of PR4238. by Eli Friedman · 16 years ago
  82. ef854af Add a getAlignOf helper for getting the ABI alignment of a by Duncan Sands · 16 years ago
  83. e3e51c0 Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 16 years ago
  84. 9004c8a Teach ValueTracking a new way to analyze PHI nodes, and and teach by Dan Gohman · 16 years ago
  85. 4a4ea14 Add Atomic.cpp to the CMake build system. by Owen Anderson · 16 years ago
  86. df7d5d3 Temporarily revert r72191. It was causing an assert during llvm-gcc by Bill Wendling · 16 years ago
  87. 39dd696 Minor code cleanup. No functionality change. by Bill Wendling · 16 years ago
  88. 1795616 Merge 'ConstructFunctionDbgScope' and 'ConstructAbstractDbgScope'. by Bill Wendling · 16 years ago
  89. 995f80a Rename 'New*' methods to 'Create*' to be consistent. 'NewString' isn't used. by Bill Wendling · 16 years ago
  90. 829e67b Add comment for emit section. by Bill Wendling · 16 years ago
  91. 94d04b8 Move 'Emit' methods down to their own place. by Bill Wendling · 16 years ago
  92. f0fb987 Revert r72192. It was causing a build failure. by Bill Wendling · 16 years ago
  93. 63ad10c Do some mechanical changes. Combine the 'construct abastract dbg thingy' in with by Bill Wendling · 16 years ago
  94. a343764 Introduce DebugScope which gets embedded into the machine instructions' DebugLoc. by Argyrios Kyrtzidis · 16 years ago
  95. 6afe2fa Have llvm_start_multithreaded return a bool indicating whether multithreaded by Owen Anderson · 16 years ago
  96. 2aa783b Tabs, be gone! by Owen Anderson · 16 years ago
  97. 41583b9 I just fail today. by Owen Anderson · 16 years ago
  98. d208fd7 Copy-and-paste-o. by Owen Anderson · 16 years ago
  99. 3c1eaa0 Move atomic operations' definitions out of line. While this seems kind of silly, by Owen Anderson · 16 years ago
  100. 261f2a2 Minor formatting fixes. by Bob Wilson · 16 years ago