1. a7ce741 Use the SubclassData field to hold ExtType, isTrunc, and MemIndexedMode by Dan Gohman · 16 years ago
  2. f75e5b4 Change Feature64Bit to not imply FeatureSSE2. All x86-64 hardware has by Dan Gohman · 16 years ago
  3. ca57b84 Last DebugLoc propagation for this file. by Dale Johannesen · 16 years ago
  4. 2ee39de Fix another test to not use -mcpu=yonah with 64-bit code. by Dan Gohman · 16 years ago
  5. e7f5be7 Yonah does not support x86-64. Change the -mcpu value to one that does. by Dan Gohman · 16 years ago
  6. c6be110 More DebugLoc propagation. This should be everything except LegalizeOp itself. by Dale Johannesen · 16 years ago
  7. d64e0eb Improve -fno-opt style option processing to not require an extra by Mike Stump · 16 years ago
  8. 5b93f6f MergeValueInto is too smart: it might choose to do the merge the opposite direction. by Owen Anderson · 16 years ago
  9. 8a782a2 DebugLoc propagation. ExpandOp and PromoteOp, among others. by Dale Johannesen · 16 years ago
  10. b68a88b Only force SSE level if it is not correct. by Torok Edwin · 16 years ago
  11. 6748f04 Run dsymutil on darwin, when it is expected, before running gdb test. by Devang Patel · 16 years ago
  12. 54c9452 Commit missing files. by Dale Johannesen · 16 years ago
  13. 15c8277 inline SROA::ConvertToScalar, no functionality change. by Chris Lattner · 16 years ago
  14. bb5da91 More DebugLoc propagation. by Dale Johannesen · 16 years ago
  15. 38870ed remove #if 0 code on Bill's request. by Torok Edwin · 16 years ago
  16. 7fb0858 Remove trailing spaces. by Duncan Sands · 16 years ago
  17. 34ca888 Update hand-crafted VC++ build. by Steve Naroff · 16 years ago
  18. af43527 DebugLoc propagation for int<->fp conversions. by Dale Johannesen · 16 years ago
  19. 19a7258 Refactor PerformPHIConstruction, no functionality changes. by Evan Cheng · 16 years ago
  20. 3f9495a xfail this for now, will fix shortly. by Chris Lattner · 16 years ago
  21. 006336d update test by Chris Lattner · 16 years ago
  22. 8f1174d Reposition the DebugLoc field to reduce padding space on LP64 hosts. by Dan Gohman · 16 years ago
  23. 996d7a9 Fix a bug which caused us to miscompile a couple of Ada by Chris Lattner · 16 years ago
  24. d5863dd Do not add redundant arguments in a method definition DIE. by Devang Patel · 16 years ago
  25. d61051f Make this test case smaller. by Devang Patel · 16 years ago
  26. 55467af Duncan's patch. Further to 64382. Takes care of illegal types for shift amount. by Sanjiv Gupta · 16 years ago
  27. 3b020fe Made the common case of default address space directive as non-virtual for performance reasons. Provide a single virtual interface for directives of all sizes in non-default address spaces. by Sanjiv Gupta · 16 years ago
  28. 4b3dfbd Fix a comment (bytes -> bits), reformat a comment by Duncan Sands · 16 years ago
  29. 0e7c46b Fix an obvious thinko. by Duncan Sands · 16 years ago
  30. 97d0e0e ADD / SUB / SMUL / UMUL with overflow second result top bits must be zero. by Evan Cheng · 16 years ago
  31. 781f2fb This passes on x86-32 linux at least. by Duncan Sands · 16 years ago
  32. 15d2598 Make the XFAIL line actually match x86-32 targets. by Duncan Sands · 16 years ago
  33. 961d6d4 Add comment. by Evan Cheng · 16 years ago
  34. 67ad9db Teach LowerBRCOND to recognize (xor (setcc x), 1). The xor inverts the condition. It's normally transformed by the dag combiner, unless the condition is set by a arithmetic op with overflow. by Evan Cheng · 16 years ago
  35. 585c51e reject things like: zext <4 x i32> %tmp to i256 by Chris Lattner · 16 years ago
  36. ef56ce1 validation error fix. by Chris Lattner · 16 years ago
  37. 242d61d Document type upreferences (PR3380), patch by Stein Roger Skafløtten by Chris Lattner · 16 years ago
  38. 91dad87 Fix PR3372 by Chris Lattner · 16 years ago
  39. f5db1fb reduce indentation, (~XorCST->getValue()).isSignBit() -> isMaxSignedValue() by Chris Lattner · 16 years ago
  40. d42bd99 reduce testcase. by Chris Lattner · 16 years ago
  41. c82bf9b Preserve more SourceValue information. by Mon P Wang · 16 years ago
  42. 0c3c021 add 2 more testcases for -mattr=-sse (r63495). by Torok Edwin · 16 years ago
  43. 3f142c3 Implement -mno-sse: if SSE is disabled on x86-64, don't store XMM on stack for by Torok Edwin · 16 years ago
  44. b0d5cdd Fix PR3453 and probably a bunch of other potential by Duncan Sands · 16 years ago
  45. fc4b677 Forgot some more DebugLoc propagations. by Bill Wendling · 16 years ago
  46. 4a6d13e Fix test failures causes by my previous commit. by Owen Anderson · 16 years ago
  47. 5caedc0 Fix an issue in PHI construction that was exposed by GCC 4.2 producing a different set iteration order for the reg_iterator. by Owen Anderson · 16 years ago
  48. 2d5424d Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster. by Evan Cheng · 16 years ago
  49. 644f6f8 DebugLoc propagation. by Dale Johannesen · 16 years ago
  50. 4333f49 Reinstate this optimization to fold icmp of xor when possible. Don't try to by Nick Lewycky · 16 years ago
  51. 35ba3d4 DebugLoc propagation. Done with file. by Dale Johannesen · 16 years ago
  52. 9c8ac44 DebugLoc propagation. Done with file. by Dale Johannesen · 16 years ago
  53. 39c27ed Fix PR3452 (an infinite loop bootstrapping) by disabling the recent by Chris Lattner · 16 years ago
  54. 92abc62 Fix PR3401: when using large integers, the type by Duncan Sands · 16 years ago
  55. d1b5e3f now that all the pieces are in place, teach instcombine's by Chris Lattner · 16 years ago
  56. 4598c94 simplify/clarify control flow and improve comments, no functionality change. by Chris Lattner · 16 years ago
  57. 886ab6c make some fairly meaty internal changes to how SimplifyDemandedBits works. by Chris Lattner · 16 years ago
  58. bda9dfd add accessors by Chris Lattner · 16 years ago
  59. 08d2cc7 minor cleanups by Chris Lattner · 16 years ago
  60. 1e19d60 make sure to set Changed=true when instcombine hacks on the code, by Chris Lattner · 16 years ago
  61. 95be699 Used "-enable-unsafe-fp-math" to allow this transformation - (a * b -c) = c - a *b. by Mon P Wang · 16 years ago
  62. a7b6cff If unsafe FP optimization is not set, don't allow -(A-B) => B-A because by Mon P Wang · 16 years ago
  63. 9729c5a Don't use DebugLoc::getUnknownLoc(). Default to something hopefully sensible. by Bill Wendling · 16 years ago
  64. 2e0d5f8 Simplify and generalize the SROA "convert to scalar" transformation to by Chris Lattner · 16 years ago
  65. 66978ee Move CurDebugLoc into SelectionDAGLowering. by Dale Johannesen · 16 years ago
  66. 9411cd2 back out my previous change, it exposes a latent bug. investigating by Gabor Greif · 16 years ago
  67. 3edbcad use precise accessors by Gabor Greif · 16 years ago
  68. 91b49b9 Propagate debug info in LegalizeFloatTypes. Complete (modulo bugs). by Dale Johannesen · 16 years ago
  69. 786fd4d Propagate debug info. This file complete (modulo bugs) by Dale Johannesen · 16 years ago
  70. c8fc99d Propagate debug info through MakeLibCall and a couple of things that use it. by Dale Johannesen · 16 years ago
  71. 836ca7d More DebugLoc propagation. by Bill Wendling · 16 years ago
  72. c144a57 More DebugLoc propagation. by Bill Wendling · 16 years ago
  73. c0debad More DebugLoc propagation in LOAD etc. methods. by Bill Wendling · 16 years ago
  74. f8a0a76 Fix build on case-sensitive filesystems (i.e. everybody else) by Dale Johannesen · 16 years ago
  75. 0225a1d More DebugLoc propagation in floating-point methods. by Bill Wendling · 16 years ago
  76. 7d2ad62 Make LowerCallTo and LowerArguments take a DebugLoc by Dale Johannesen · 16 years ago
  77. d34470c Standardize comments about folding xforms. by Bill Wendling · 16 years ago
  78. 7581bfa Get rid of the non-DebugLoc-ified getNOT() method. by Bill Wendling · 16 years ago
  79. a03e74b Propagate debug loc info for some FP arithmetic methods. by Bill Wendling · 16 years ago
  80. b0162f5 Propagate debug loc info for some FP arithmetic methods. by Bill Wendling · 16 years ago
  81. 67a6768 Propagate debug loc info for BIT_CONVERT. by Bill Wendling · 16 years ago
  82. 8509c90 Propagate debug loc info for more *_EXTEND methods. by Bill Wendling · 16 years ago
  83. 683c957 Propagate debug loc info for ANY_EXTEND. by Bill Wendling · 16 years ago
  84. 6ce610f Propagate debug loc info for some of the *_EXTEND functions. by Bill Wendling · 16 years ago
  85. 41b9d27 DebugLoc form of getNOT(). by Bill Wendling · 16 years ago
  86. 34584e6 - Propagate debug loc info for SELECT. by Bill Wendling · 16 years ago
  87. 8810337 Propagate debug loc info for Shifts. by Bill Wendling · 16 years ago
  88. 317bd70 Propagate debug loc info for XOR and MatchRotate. by Bill Wendling · 16 years ago
  89. 0902564 Propagate debug loc info for OR. Also clean up some comments. by Bill Wendling · 16 years ago
  90. 6af7618 Perform obvious constant arithmetic folding. by Bill Wendling · 16 years ago
  91. 2627a88 Propagate debug loc info for AND. Also clean up some comments. by Bill Wendling · 16 years ago
  92. b74c867 Propagate debug loc info in SimplifyBinOpWithSameOpcodeHands. by Bill Wendling · 16 years ago
  93. ae6ab1e use precise getters by Gabor Greif · 16 years ago
  94. c1bb13f use precise getters by Gabor Greif · 16 years ago
  95. dd9db66 by Devang Patel · 16 years ago
  96. c0425b6 As Duncan suggested, add braces for the one-line "else branch". Thanks, Duncan. by Zhou Sheng · 16 years ago
  97. 904ebf9 This is to fix the bug in IntrinsicLowering.cpp, by Zhou Sheng · 16 years ago
  98. 5af3ee2 Fixed the comment. No functionality change. by Sanjiv Gupta · 16 years ago
  99. 1ff06b2 This is case is to uncover the bug in IntrinsicLowering.cpp, by Zhou Sheng · 16 years ago
  100. d6f175b Add opposite_of and inverse_opt to support -fno- style options. This by Mike Stump · 16 years ago