1. addccfd Add myself to the credits. by Dan Gohman · 18 years ago
  2. b5aabee Proper fix for the off-by-one bug in clear_unused_bits(). by Evan Cheng · 18 years ago
  3. 1500515 Update this test to compile properly and check against the correct by Reid Spencer · 18 years ago
  4. f1f007d Fix an off-by-one bug in computing the index of the word to clear. by Reid Spencer · 18 years ago
  5. 9d1597b Make sure Capacity gets initialized too. by Reid Spencer · 18 years ago
  6. 0878c31 rewrite Value::takeName to take advantage of the new symtab stuff. This by Chris Lattner · 18 years ago
  7. 1f87a58 switch an std::set to a SmallPtr set, this speeds up instcombine by 9.5% by Chris Lattner · 18 years ago
  8. 852b4ba Missing a ; by Evan Cheng · 18 years ago
  9. d263114 the lengths of the strings are known, just use memcmp by Chris Lattner · 18 years ago
  10. e01ad2d BitVector::reference operator=(const reference& rhs) is unnecessary thanks to autoconvert to bool. by Evan Cheng · 18 years ago
  11. 1f46998 Remove unnecessary checks. by Evan Cheng · 18 years ago
  12. 3b51580 Implement Function::getIntrinsicID without it needing to call Value::getName, by Chris Lattner · 18 years ago
  13. 638417f operator== returns false when two bitvectors have different sizes. by Evan Cheng · 18 years ago
  14. c761df1 Merges two resize() variants. by Evan Cheng · 18 years ago
  15. ccae61c Clear no longer deleting the bits to avoid mallocs. by Evan Cheng · 18 years ago
  16. 7bf26c1 BitVector::count() bugs. by Evan Cheng · 18 years ago
  17. 334df9d Eliminate a redundent ctor; eliminate one more potential new [0]. by Evan Cheng · 18 years ago
  18. 057f8e0 1 -> 1L since BitWord has type unsigned long. by Evan Cheng · 18 years ago
  19. 5f92ce4 Eliminate new[0], just set Bits to NULL. by Evan Cheng · 18 years ago
  20. 924b1ca Add a new Value::getNameStr method, which is preferred over getName. by Chris Lattner · 18 years ago
  21. c48aafe Inverted the condition by accident. by Evan Cheng · 18 years ago
  22. 16db3ca For PR1202: Make sure we found an existing Alignment before overwriting it. by Reid Spencer · 18 years ago
  23. 5d4a9f7 fix indentation by Chris Lattner · 18 years ago
  24. 0152829 Apply B Scott Michel's patch for PR1184, which improves diagnostics in an by Chris Lattner · 18 years ago
  25. 506e899 Bug fixes: assignment operator forgot to copy over size; copy ctor forgot to clear unused top bits. by Evan Cheng · 18 years ago
  26. b04973e Fix some buges: by Zhou Sheng · 18 years ago
  27. 61de82d Use BitVector instead of vector<bool> which can be extremely slow. by Evan Cheng · 18 years ago
  28. ad1d5c3 Add a BitVector class. by Evan Cheng · 18 years ago
  29. ac9dcb9 For PR1195: by Reid Spencer · 18 years ago
  30. a85210a For PR1195: Change a comment: Packed Type -> Vector Type by Reid Spencer · 18 years ago
  31. d29b8b8 Change an assert that mentions Packed Type -> Vector Type. by Reid Spencer · 18 years ago
  32. d6aeb4f For PR1195: Packed -> Vector. by Reid Spencer · 18 years ago
  33. 485bad1 For PR1195: Packed -> Vector by Reid Spencer · 18 years ago
  34. 3cd4c89 isPhysRegUsed should be const. by Evan Cheng · 18 years ago
  35. d1172cc Should pass isKill and isDead to addRegOperand() as well. by Evan Cheng · 18 years ago
  36. 9d6565a For PR1195: by Reid Spencer · 18 years ago
  37. b7d6110 Fixed packed structure breakage from earlier TargetData patch; applied by Reid Spencer · 18 years ago
  38. 480cbb9 Fix validation errors. by Reid Spencer · 18 years ago
  39. 9814bc6 update to new t-d strings. by Chris Lattner · 18 years ago
  40. 853418d Fix a typo. by Reid Spencer · 18 years ago
  41. 5b9a609 Add feedback from Vikram Adve. by Reid Spencer · 18 years ago
  42. e7bd7d6 Synchronize TOC headings with actual headings. by Reid Spencer · 18 years ago
  43. 0e59872 Fix the table of contents to match the document body. by Reid Spencer · 18 years ago
  44. 134400b Fix a grammaro. by Reid Spencer · 18 years ago
  45. 01f56be A few changes: by Reid Spencer · 18 years ago
  46. 8a9bd92 Drop a policy. by Reid Spencer · 18 years ago
  47. f1491da Some more minor tweaks. by Reid Spencer · 18 years ago
  48. c767f00 Fix word usage. by Reid Spencer · 18 years ago
  49. 25f9b9b Add a missing . by Reid Spencer · 18 years ago
  50. 3eedbd3 Incorporate Chris Lattner's second round of feedback. by Reid Spencer · 18 years ago
  51. 27a0472 fix validation bug by Chris Lattner · 18 years ago
  52. ad85ba4 now that llvm-gcc3 is gone, life is significantly simpler and less scary by Chris Lattner · 18 years ago
  53. 31d0419 remove an obsolete question by Chris Lattner · 18 years ago
  54. e5ff008 remove obsolete path by Chris Lattner · 18 years ago
  55. c661d61 fix a warning by Chris Lattner · 18 years ago
  56. f76e7bb remove obsolete warning by Chris Lattner · 18 years ago
  57. bcb38cf There is no circular dependency between llvm and llvm-gcc anymore. stop by Chris Lattner · 18 years ago
  58. 78bade2 Incorporate Chris' first round of comments. by Reid Spencer · 18 years ago
  59. 21840b1 Refix CodeGen/Generic/switch-lower.ll. In contrast to my previous patch, by Chris Lattner · 18 years ago
  60. 64f150f From Dan Gohman: by Chris Lattner · 18 years ago
  61. d2b7cec Generalize TargetData strings, to support more interesting forms of data. by Chris Lattner · 18 years ago
  62. 879dfe1 Use brute-force algorithm for to_string. It doesn't have to be efficient by Reid Spencer · 18 years ago
  63. b42b411 sanity check for *basic* i128 arithmetic on all hosts. by Chris Lattner · 18 years ago
  64. c38fea8 better support for i128. by Chris Lattner · 18 years ago
  65. 4c948eb implement expand of truncate. This allows truncates from i128 to i64 to by Chris Lattner · 18 years ago
  66. f839ce7 Fix PR1198, by adding initial i128 support. Patch by Dan Gohman. by Chris Lattner · 18 years ago
  67. 727c235 new testcase, by Dan Gohman by Chris Lattner · 18 years ago
  68. 921a83a Well this isn't as ugly and it works better. At least gcc bootstraps again by Andrew Lenharth · 18 years ago
  69. db3faa6 Make some minor improvements to APInt: by Reid Spencer · 18 years ago
  70. 36e37d2 add a note by Chris Lattner · 18 years ago
  71. 4060296 Add missing closing parenthesis. by Reid Spencer · 18 years ago
  72. ae4f99d revert my previous switch lowering change, which miscompiles a few programs. by Chris Lattner · 18 years ago
  73. 7501605 Add space between // and the comment. by Lauro Ramos Venancio · 18 years ago
  74. 3630e78 Add ABI information to ARM subtarget. by Lauro Ramos Venancio · 18 years ago
  75. cf8270a Add a space between // and the comment. by Lauro Ramos Venancio · 18 years ago
  76. 13a3cee Add comment about original function argument alignment. by Lauro Ramos Venancio · 18 years ago
  77. bed9253 Fix tow grammaros that Bill Wendling noticed. by Reid Spencer · 18 years ago
  78. 876eaf1 According to ARM EABI, 8-bytes function arguments must be 8-bytes aligned. by Lauro Ramos Venancio · 18 years ago
  79. 7aa47b6 Add "original alignment" to function arguments flags. by Lauro Ramos Venancio · 18 years ago
  80. 9964d75 Fix a compilation error that caused the nightly test to fail. by Reid Spencer · 18 years ago
  81. 80483bb Clean up spelling mistakes. by Reid Spencer · 18 years ago
  82. 4e2fb7b Fix an HTML validation error. by Reid Spencer · 18 years ago
  83. bb15b1c Make the draft notice more prominent. by Reid Spencer · 18 years ago
  84. 26cf066 Add DeveloperPolicy.html by Reid Spencer · 18 years ago
  85. 8d0ac69 First draft of the LLVM Developer Policy. This document is a "first cut" by Reid Spencer · 18 years ago
  86. f00042a Switch UnaryOperators to default to passing names up by const char* when possible. by Chris Lattner · 18 years ago
  87. ec79b3d add a setName variant that takes a null-terminated string. This can be by Chris Lattner · 18 years ago
  88. 1893952 Use a SmallVector to reduce heap traffic. This speeds up bcreader 10% by Chris Lattner · 18 years ago
  89. 8c06509 fix a critical bug in smallvector, where it would destroy elements that are by Chris Lattner · 18 years ago
  90. d0e44c2 now that we can pass ranges into CallInst ctors, eliminate vector heap traffic by Chris Lattner · 18 years ago
  91. 133bab0 eliminate instruction ctors that take vectors. by Chris Lattner · 18 years ago
  92. 680f2f0 eliminate vector-related ctors by Chris Lattner · 18 years ago
  93. 10ac377 eliminate use of vector-related ctors by Chris Lattner · 18 years ago
  94. cf3d061 regenerate by Chris Lattner · 18 years ago
  95. 858d973 remove use of vector-related ctors by Chris Lattner · 18 years ago
  96. 990b849 eliminate vector-related allocations by Chris Lattner · 18 years ago
  97. c18470c eliminate a bunch of vector-related heap traffic by Chris Lattner · 18 years ago
  98. 9d2fda6 eliminate use of vector ctors by Chris Lattner · 18 years ago
  99. 93e985f Eliminate use of ctors that take vectors. by Chris Lattner · 18 years ago
  100. e433919 stop passing vector into ctors by Chris Lattner · 18 years ago