1. f636aa9 have the makefiles check the llvm-config error code instead of charging by Chris Lattner · 14 years ago
  2. 0b5b183 dead code patrol by Chris Lattner · 14 years ago
  3. 14ab39e zap dead code. by Chris Lattner · 14 years ago
  4. 5bcb8a6 temporarily revert r112664, it is causing a decoding conflict, and by Chris Lattner · 14 years ago
  5. a51d89c zap dead code. by Chris Lattner · 14 years ago
  6. 8861e27 remove dead code. by Chris Lattner · 14 years ago
  7. d4c4543 Make tool_output_file's raw_ostream instance a member variable instead by Dan Gohman · 14 years ago
  8. 4115411 Add an interface for unregistering a file from the FilesToRemove list. by Dan Gohman · 14 years ago
  9. 2ad12a0 COFF: Update tests to reflect changes in last commit. by Michael J. Spencer · 14 years ago
  10. 4563704 COFF: Fix incorrect SCT_COMPLEX_TYPE_SHIFT. Add a few constants. by Michael J. Spencer · 14 years ago
  11. fb4e8ab Use the SSAUpdator to turn calls to eh.exception that are not in a by Duncan Sands · 14 years ago
  12. e3955df Make the iterator form of erase return void, since it always succeeds, by Dan Gohman · 14 years ago
  13. f8ff40c Define LLVM_GLOBAL_VISIBILITY to be __declspec(dllexport) on windows systems. by Duncan Sands · 14 years ago
  14. 4d588bc If PrototypeValue is erased in the middle of using the SSAUpdator by Duncan Sands · 14 years ago
  15. 248e759 Add convenience class for working with eh.exception calls. by Duncan Sands · 14 years ago
  16. 64a4e9a Attempt to fix buildbot. by Dale Johannesen · 14 years ago
  17. 91abace add a gross hack to work around a problem that Argiris reported by Chris Lattner · 14 years ago
  18. 54d2402 filecheckize by Chris Lattner · 14 years ago
  19. 56098f5 Use movlps, movlpd, movss and movsd specific nodes instead of pattern matching with movlp pattern fragment by Bruno Cardoso Lopes · 14 years ago
  20. 191bd64 Revert 112442 and 112440 until the compile time problems introduced by Dan Gohman · 14 years ago
  21. 9cfad89 minor change, simplify some logic by Bruno Cardoso Lopes · 14 years ago
  22. e654b56 Move some functions around so they can be used for some other to come function by Bruno Cardoso Lopes · 14 years ago
  23. c88d829 Add some MMX intrinsics that duplicate functionality by Dale Johannesen · 14 years ago
  24. ae84d5b Use absolute label for DW_AT_stmt_list if a target does not prefer offset here. by Devang Patel · 14 years ago
  25. a6d050d Testcase for llvm checkin 112674. by Dale Johannesen · 14 years ago
  26. 47b7efc Remove noisy semicolon. by Benjamin Kramer · 14 years ago
  27. 2ac6e23 licm is wasting time hoisting constant foldable operations, by Chris Lattner · 14 years ago
  28. 232ab94 This is the second of three patches to implement support for the .loc directive by Kevin Enderby · 14 years ago
  29. 3f19c09 Reapply r112432, now that the real problem is addressed. by Dan Gohman · 14 years ago
  30. 6a0c125 Reapply r112433, now that the real problem is addressed. by Dan Gohman · 14 years ago
  31. 90b5f25 Revert r110916. This patch is buggy because the code inside the by Dan Gohman · 14 years ago
  32. 43a6c5e We have a chance for an optimization. Consider this code: by Bill Wendling · 14 years ago
  33. 1d76ab7 Some fixes for NetBSD by Anton Korobeynikov · 14 years ago
  34. 013bb3d Use x86 specific MOVSLDUP node, add more patterns to match it and remove useless load nodes by Bruno Cardoso Lopes · 14 years ago
  35. 0b48ead Reapply r112623. Included additional check for unused byval argument. by Devang Patel · 14 years ago
  36. 5023ef2 Use x86 specific MOVSHDUP node and add more patterns to match it by Bruno Cardoso Lopes · 14 years ago
  37. 2d811d3 And ANDS pattern to match the t2ANDS pattern. by Bill Wendling · 14 years ago
  38. 297907f Stack slot access methods are in TargetInstrInfo. by Jakob Stoklund Olesen · 14 years ago
  39. dd120f9 Comment typo. by Dale Johannesen · 14 years ago
  40. 63b1dba Make %EFLAGS unallocatable. by Jakob Stoklund Olesen · 14 years ago
  41. f14a648 Track liveness of unallocatable, unreserved registers in machine DCE. by Jakob Stoklund Olesen · 14 years ago
  42. 7ff30bb Use MOVHLPS node instead of matching using movhlps and movhlps_undef pattern fragments by Bruno Cardoso Lopes · 14 years ago
  43. b5d84d1 tidy up by Chris Lattner · 14 years ago
  44. f2db5b4 Use MOVLHPS and MOVHLPS x86 nodes whenever possible. Also remove some useless nodes by Bruno Cardoso Lopes · 14 years ago
  45. 26125c6 Revert r112432. It appears to be exposing a problem in the emacs build. by Dan Gohman · 14 years ago
  46. e1aa33f Merge 2010-08-31-InfiniteRecursion.ll into crash.ll. by Owen Anderson · 14 years ago
  47. 0eb355a More cleanups of my JumpThreading transforms, including extracting some duplicated code into a helper function. by Owen Anderson · 14 years ago
  48. 9d4b51b Ignore unallocatable registers in RegAllocFast. by Jakob Stoklund Olesen · 14 years ago
  49. 81b79b5 Revert r112623. It is causing self host build failures. by Devang Patel · 14 years ago
  50. f727748 Update the Ada instructions to LLVM 2.7 (from LLVM 2.5). by Duncan Sands · 14 years ago
  51. 9ba3536 Add an RAII helper to make cleanup of the RecursionSet more fool-proof. by Owen Anderson · 14 years ago
  52. 869a144 Only try to clean up the current block if we changed that block already. by Owen Anderson · 14 years ago
  53. c1dc78d SP relative offsets need to be adjusted by the local allocation size when by Jim Grosbach · 14 years ago
  54. 8480c2e Remember byval argument's frame index during argument lowering and use this info to emit debug info. by Devang Patel · 14 years ago
  55. d4511e9 this assert should just be a condition, since this function is just asking if by Jim Grosbach · 14 years ago
  56. b95df12 Add a test for the duplicated-conditional situation illutrated by PR5652. by Owen Anderson · 14 years ago
  57. c1bdac6 Refactor my fix for PR5652 to terminate the predecessor lookups after the first failure. by Owen Anderson · 14 years ago
  58. 0676984 merge two tests. by Chris Lattner · 14 years ago
  59. 047f4f5 Manually reduce this testcase. by Owen Anderson · 14 years ago
  60. f88776c merge two tests and convert to filecheck. by Chris Lattner · 14 years ago
  61. 421cc4c Add a micro-test for the transforms I added to JumpThreading. by Owen Anderson · 14 years ago
  62. 85e75af Update test for 112609 by Jim Grosbach · 14 years ago
  63. 864d22e Improve virtual frame base register allocation heuristics. by Jim Grosbach · 14 years ago
  64. f3bba4c Speculatively revert r112433. by Dan Gohman · 14 years ago
  65. 19dc7fa Allow creation of SHT_NULL sections, from Roman Divacky. by Benjamin Kramer · 14 years ago
  66. 22efc18 Stop using the dom frontier in DwarfEHPrepare by not promoting alloca's by Duncan Sands · 14 years ago
  67. 65a0af3 Fix an infinite loop; merging two functions will create a new function (if the by Nick Lewycky · 14 years ago
  68. 7c37f6d Don't perform an extra traversal of the function just to do cleanup. We can safely simplify instructions after each block has been processed without worrying about iterator invalidation. by Owen Anderson · 14 years ago
  69. da2ae63 - Cleanup some whitespaces. by Bill Wendling · 14 years ago
  70. 8320006 Rename test directory to reflect new pass name. by Owen Anderson · 14 years ago
  71. 25e9405 Rename ValuePropagation to a more descriptive CorrelatedValuePropagation. by Owen Anderson · 14 years ago
  72. 7aff1cd Rename file to something more descriptive. by Owen Anderson · 14 years ago
  73. cb21190 More Chris-inspired JumpThreading fixes: use ConstantExpr to correctly constant-fold undef, and be more careful with its return value. by Owen Anderson · 14 years ago
  74. 4a295d3 Cleanup Whitespace. by Michael J. Spencer · 14 years ago
  75. 1211d43 System: Fix getMagicNumber on windows. by Michael J. Spencer · 14 years ago
  76. a805b2d Fix spelling/typo. by Michael J. Spencer · 14 years ago
  77. 34ca5ed Offset is not always unsigned number. by Devang Patel · 14 years ago
  78. 9e3bd2c Simplify. by Devang Patel · 14 years ago
  79. f53de86 Switch to DenseSet, simplifying much more code. We now have a single iteration by Nick Lewycky · 14 years ago
  80. c97fb52 Remove r111665, which implemented store-narrowing in InstCombine. Chris discovered a miscompilation in it, and it's not easily by Owen Anderson · 14 years ago
  81. 2e46e78 zap unused method. x86 is the only user and already has a more powerfull version by Bruno Cardoso Lopes · 14 years ago
  82. 20a07f4 Use X86ISD::MOVSS and MOVSD to represent the movl mask pattern, also fix the handling of those nodes when seeking for scalars inside vector shuffles by Bruno Cardoso Lopes · 14 years ago
  83. dc90804 Rewrite slightly so we can expand for floating point types easier. by Eric Christopher · 14 years ago
  84. e49e6a8 Add experimental -disable-physical-join command line option. by Jakob Stoklund Olesen · 14 years ago
  85. 49998ce Fix a typo. by Owen Anderson · 14 years ago
  86. 548d1bb If we have an unhandled type then assert, we shouldn't get here for by Eric Christopher · 14 years ago
  87. 39429e2 Update the descriptions of NoModRef and ModRef to be consistent by Dan Gohman · 14 years ago
  88. 5c1919e Fix borken test by Anton Korobeynikov · 14 years ago
  89. 985185e Combine these two tests, and make sure there's a newline at the end of the file. by Owen Anderson · 14 years ago
  90. a081d15 Cleanups suggested by Chris. by Owen Anderson · 14 years ago
  91. 327ca7b Re-apply r112539, being more careful to respect the return values of the constant folding methods. Additionally, by Owen Anderson · 14 years ago
  92. 6d1e29d Expand MOVi32imm in ARM mode after regalloc. This provides by Anton Korobeynikov · 14 years ago
  93. f523b3e Add statistics to evaluate this pass. by Owen Anderson · 14 years ago
  94. d930f20 Revert r112539. It accidentally introduced a miscompilation. by Owen Anderson · 14 years ago
  95. 1e35610 Fixes and cleanups pointed out by Chris. In general, be careful to handle 0 results from ComputeValueKnownInPredecessors by Owen Anderson · 14 years ago
  96. 55c134a Use the existing T2I_bin_s_irs pattern instead of creating T2I_bin_sw_irs, which by Bill Wendling · 14 years ago
  97. 17f9bfa Fix a comment. by NAKAMURA Takumi · 14 years ago
  98. 2536279 Remember to clear the shadow kill flag at the same time as clearing the real by Jakob Stoklund Olesen · 14 years ago
  99. 59279b1 Fix llc to run the verifier once, not twice. by Dan Gohman · 14 years ago
  100. 060bb6b Remove this from the main tree. I'll host it out of tree. by Owen Anderson · 14 years ago