1. 73184fc Updated VC++ build system. by Hartmut Kaiser · 17 years ago
  2. ebdbed3 Added preliminary support for iterators in ImutAVLTree. by Ted Kremenek · 17 years ago
  3. 85d0aaa Fix CodeGen/Generic/BasicInstrs.llx on sparc by marking divrem by Chris Lattner · 17 years ago
  4. be24d91 Renamed internal method "Create" of ImutAVLTree to "CreateNode". by Ted Kremenek · 17 years ago
  5. 272dce0 Correct swapped arguments to getConstant. by Duncan Sands · 17 years ago
  6. 1c08eba Fix 80-column violations by Bill Wendling · 17 years ago
  7. 6eaeff2 Next PPC long double bits: ppcf128->i32 conversion. by Dale Johannesen · 17 years ago
  8. be8db24 Bad choice of variable name. by Evan Cheng · 17 years ago
  9. 5edc57f Fix an extremely stupid bug that prevented first round of coalescing (physical registers only) from happening. by Evan Cheng · 17 years ago
  10. 80fe9e8 Modified XCode project to contain... by Ted Kremenek · 17 years ago
  11. 3daae27 Add new MemoryBuffer::getMemBufferCopy method. by Chris Lattner · 17 years ago
  12. ec1f944 Fix indentation. by Devang Patel · 17 years ago
  13. 33bbed8 Added implementation of immutable (functional) maps and sets, as by Ted Kremenek · 17 years ago
  14. b593898 by Devang Patel · 17 years ago
  15. cd80c16 Add LLVMFoldingBuilder by Devang Patel · 17 years ago
  16. 1fc46d5 Remove an unnecessary friend declaration. by Dan Gohman · 17 years ago
  17. 49588d8 update prototype, fixing build error by Chris Lattner · 17 years ago
  18. 9a52632 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 17 years ago
  19. 6d60cac LowerIntegerDivOrRem no longer exists. by Dan Gohman · 17 years ago
  20. 74f87a6 Fix grammar in a comment. by Dan Gohman · 17 years ago
  21. 5bf88eb This is done. by Dan Gohman · 17 years ago
  22. dde01ec These two tests now require only two multiply instructions, instead of four. by Dan Gohman · 17 years ago
  23. b76143c Under 64-bit mode use LEA64_32r instead of LEA64r to save a byte. by Evan Cheng · 17 years ago
  24. 05831c0 Fix problems where DenseMap used operator!= instead of correctly by Chris Lattner · 17 years ago
  25. be2c459 Change a #include into a forward declaration by Chris Lattner · 17 years ago
  26. 8262df3 Position Independent Code (PIC) support [3] by Bruno Cardoso Lopes · 17 years ago
  27. 0a60400 Position Independent Code (PIC) support [2] by Bruno Cardoso Lopes · 17 years ago
  28. e78080c Position Independent Code (PIC) support [1] by Bruno Cardoso Lopes · 17 years ago
  29. f6be158 Update test. by Evan Cheng · 17 years ago
  30. 3f41d66 Bug fix. X86 was emitting redundant setcc and test instructions before a conditional move. by Evan Cheng · 17 years ago
  31. 30d4254 Call getFunctionNumber() instead of referencing FunctionNumber directly, by Dan Gohman · 17 years ago
  32. 6b33cfc Mark the prefetch intrinsic as IntrWriteArgMem, instead of the by Dan Gohman · 17 years ago
  33. b5d12c4 These two tests now require only three multiply instructions, instead of four. by Dan Gohman · 17 years ago
  34. f19b8e4 Various improvements to the documentation, contributed by Joshua Haberman! by Chris Lattner · 17 years ago
  35. 525178c Migrate X86 and ARM from using X86ISD::{,I}DIV and ARMISD::MULHILO{U,S} to by Dan Gohman · 17 years ago
  36. d47c84c Allow x86 compare to be commutable by default. by Evan Cheng · 17 years ago
  37. 2618a6c C and Objective Caml bindings for PHINode::addIncoming etc. by Gordon Henriksen · 17 years ago
  38. 389079b DAGCombiner support for UDIVREM/SDIVREM and UMUL_LOHI/SMUL_LOHI. by Dan Gohman · 17 years ago
  39. 7794935 LLVM does not use the old style simple isel any more. by Evan Cheng · 17 years ago
  40. b428657 Remove debugging printf to get build going on x86-64. by Evan Cheng · 17 years ago
  41. 3ce990d When we start enabling SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM in by Dan Gohman · 17 years ago
  42. 08ce976 Add convenience overloads of SelectionDAG::getNode that take a SDVTList by Dan Gohman · 17 years ago
  43. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 17 years ago
  44. 8e41ed7 Simplify getIntPtrType, allowing it to work for arbitrary pointer sizes. by Dan Gohman · 17 years ago
  45. c318329 Use correct parentheses with the '&& "..."' idiom in an assert. by Dan Gohman · 17 years ago
  46. 417e11b In -debug mode, dump SelectionDAGs both before and after the by Dan Gohman · 17 years ago
  47. 3ab264a Fix grammar in a comment. by Dan Gohman · 17 years ago
  48. cdf2b3b Add explicit keywords. by Dan Gohman · 17 years ago
  49. 5477f85 Use APInt::tcExtract. It's cleaner, and works :) by Neil Booth · 17 years ago
  50. 68e53ad Add a new function tcExtract for extracting a bignum from an by Neil Booth · 17 years ago
  51. 633360c Fixed downrev Ocaml compatibility. by Gordon Henriksen · 17 years ago
  52. 1aad74c Begin the process of allowing DomTree on MBB's. Step One: template DomTreeNode by making it a typedef of a templated DomTreeNodeBase. by Owen Anderson · 17 years ago
  53. 537d5c2 Kill cycle of an live range is always the last use index + 1. by Evan Cheng · 17 years ago
  54. 529ac2f Allow passes to just pass up "FunctionPass(&ID)" instead of "FunctionPass((intptr_t)&ID)" by Chris Lattner · 17 years ago
  55. 6d6203d C and Objective Caml bindings for getFunction and getNamedGlobal. Also enhanced by Gordon Henriksen · 17 years ago
  56. f443ba7 disable this entirely: it is causing use of invalidated iterators and infinite looping. by Chris Lattner · 17 years ago
  57. eac9385 Fix many regressions on x86 by avoiding dereferencing the end iterator. by Chris Lattner · 17 years ago
  58. f8a3ee1 Finish off PR1723, by working around some strange compiler bug. by Chris Lattner · 17 years ago
  59. c84c16b C and Objective Caml bindings for GlobalVariable::isConstant. by Gordon Henriksen · 17 years ago
  60. f16c595 Add back convertFromSignExtendedInteger. by Neil Booth · 17 years ago
  61. 7a7bc0f Now that convertFromUnsignedParts has a sane, constant interface, by Neil Booth · 17 years ago
  62. 643ce59 Reimplement convertFromUnsignedInteger so it is passed a const bignum. by Neil Booth · 17 years ago
  63. ccf596a convertFromInteger, as originally written, expected sign-extended by Neil Booth · 17 years ago
  64. 33d4c92 combineLostFractions does not need to be a member function by Neil Booth · 17 years ago
  65. c27d61d Some more problems noticed by Curtis by Daniel Berlin · 17 years ago
  66. 1cf08fd C and Objective Caml bindings for PATypeHolder. by Gordon Henriksen · 17 years ago
  67. c0491ac Bindings for the verifier. by Gordon Henriksen · 17 years ago
  68. d8be215 Deleting some unnecessary glue. by Gordon Henriksen · 17 years ago
  69. 957f9fe Adopting a uniform naming convention for type constructors in by Gordon Henriksen · 17 years ago
  70. 2508372 Oops, I really wanted to commit this part also :) by Anton Korobeynikov · 17 years ago
  71. 4f1c33f Move merge code into new helper function. by Anton Korobeynikov · 17 years ago
  72. 81a7881 Adopting a uniform naming convention for type constructors in bindings. by Gordon Henriksen · 17 years ago
  73. e3b989d Adopting a uniform naming convention for constant constructors in bindings. by Gordon Henriksen · 17 years ago
  74. 4647569 Adding C and Ocaml bindings for ConstantExpr. by Gordon Henriksen · 17 years ago
  75. 57db173 Include DataTypes.h to provide intptr_t type. This fixes OpenBSD compilation of this file. by Anton Korobeynikov · 17 years ago
  76. 513da43 Reapply 42677. by Evan Cheng · 17 years ago
  77. 186edc8 Oops. Forgot this. by Evan Cheng · 17 years ago
  78. 92f7e8d Cleaner, more general exponent output. by Neil Booth · 17 years ago
  79. a11ef82 silence warnings in no-assert build. by Chris Lattner · 17 years ago
  80. 5349de1 revert evan's patch until the header is committed by Chris Lattner · 17 years ago
  81. c231e8c Added DAG xforms. e.g. by Evan Cheng · 17 years ago
  82. 638ccd5 Next powerpc long double bits. Comparisons work, by Dale Johannesen · 17 years ago
  83. b762c08 Make test work on non-x86 hosts. by Dale Johannesen · 17 years ago
  84. 055c0b3 Fix and clarify some comments. by Neil Booth · 17 years ago
  85. 978661d Generalize tcFullMultiply so that the operands can be of differing by Neil Booth · 17 years ago
  86. 88cc699 Wrapping Value::dump. by Gordon Henriksen · 17 years ago
  87. acd9619 Removing the silly CHelpers header by rolling wrap and unwrap into the C by Gordon Henriksen · 17 years ago
  88. bf287b6 Test case for 3-address conversion. by Evan Cheng · 17 years ago
  89. 7ad42d9 Commute x86 cmove instructions by swapping the operands and change the condition by Evan Cheng · 17 years ago
  90. 57cce6c This is done. by Evan Cheng · 17 years ago
  91. ecf80ac Enable convertToThreeAddress for X86 by default. by Evan Cheng · 17 years ago
  92. 5c4cd0d Fix bug in updating dominance frontier after loop by Devang Patel · 17 years ago
  93. b75ed32 INC64_32r -> LEA64_32r is better than INC64_32r -> LEA32r, but it still can by Evan Cheng · 17 years ago
  94. 559dc46 In 64-bit mode, avoid using leal with 32-bit 32-bit address size, e.g. by Evan Cheng · 17 years ago
  95. 161e897 First round of ppc long double. call/return and by Dale Johannesen · 17 years ago
  96. b952d1f Add support to convert more 64-bit instructions to 3-address instructions. by Evan Cheng · 17 years ago
  97. 3154cb6 ADC and SBB uses EFLAGS. by Evan Cheng · 17 years ago
  98. bca9832 Mark count method const. by Chris Lattner · 17 years ago
  99. 52c0253 Change a few more spaces to tabs in assembly output. by Dan Gohman · 17 years ago
  100. 4e8e831 Change a space to a tab in the assembly output of a .globl directive by Dan Gohman · 17 years ago