1. c915108 no parens by Chris Lattner · 20 years ago
  2. 695b78b update some paths by Chris Lattner · 20 years ago
  3. 47a3785 No, seriously folks, memcpy really does return void. by Reid Spencer · 20 years ago
  4. a525f6d memcpy returns void!!!!! by Reid Spencer · 20 years ago
  5. a8d451e Convert the remainder of the intrinsic function prototypes to "declare" by Reid Spencer · 20 years ago
  6. d462235 Use the declare syntax not the call syntax for intrinsic prototypes so by Reid Spencer · 20 years ago
  7. 3f80a38 don't let Reid build void*'s :) by Chris Lattner · 20 years ago
  8. 43fd4d0 Fix some bugs found by running on llvm-test: by Reid Spencer · 20 years ago
  9. fcbdb9c Changes From Review Feedback: by Reid Spencer · 20 years ago
  10. 7b7adcf Add a test case for MemMove.ll by Reid Spencer · 20 years ago
  11. c662bc7 Result of strlen is size_t which is either uint or ulong, not int. by Reid Spencer · 20 years ago
  12. 318c149 Make interval partition print correctly, patch contributed by Vladimir Prus! by Chris Lattner · 20 years ago
  13. 93b94a6 Fix the compile failures from last night. by Chris Lattner · 20 years ago
  14. 4706c03 constmul bugfix: multiply by 27611 was broken by Duraid Madina · 20 years ago
  15. 3b84bac clean up the code! (oops) lots more cleaning left, however. by Duraid Madina · 20 years ago
  16. 20754ac * Merge get_GVInitializer and getCharArrayLength into a single function by Reid Spencer · 20 years ago
  17. 4ac0f21 Add a new test case for the llvm.memcpy simplification case. by Reid Spencer · 20 years ago
  18. b232256 * Add code to reduce multiplies by constant integers to shifts, adds and by Duraid Madina · 20 years ago
  19. 912401c * Implement StrLenOptimization by Reid Spencer · 20 years ago
  20. 8fe86dd * Add a test case for StrLenOptimization by Reid Spencer · 20 years ago
  21. 43e0bae Incorporate feedback from Chris: by Reid Spencer · 20 years ago
  22. c8beae2 Add SimplyLibCalls.cpp to VC++ build by Jeff Cohen · 20 years ago
  23. c89c363 Fix RUN: line to not always pass. by Reid Spencer · 20 years ago
  24. d36f979 Fold (X > -1) | (Y > -1) --> (X&Y > -1) by Chris Lattner · 20 years ago
  25. 855adb1 Changes due to code review and new implementation: by Reid Spencer · 20 years ago
  26. 229ab2e implement some more logical compares with constants, so that: by Chris Lattner · 20 years ago
  27. 6cc0311 Lots of changes based on review and new functionality: * Use a  by Reid Spencer · 20 years ago
  28. 8b9f9b3 Update the test case to handle a few more (degenerate) cases and remove by Reid Spencer · 20 years ago
  29. 6ea9279 Codegen x < 0 | y < 0 as (x|y) < 0. This allows us to compile this to: by Chris Lattner · 20 years ago
  30. 91bd25d Make dominates(A,B) work with post dominators. Patch contributed by by Chris Lattner · 20 years ago
  31. 14fc5c1 Added question about turning off all optimizations. I think this has been asked once or twice. by Tanya Lattner · 20 years ago
  32. a70b66d implement getelementptr.ll:test10 by Chris Lattner · 20 years ago
  33. e319464 rename fn by Chris Lattner · 20 years ago
  34. 27b8598 new testcase by Chris Lattner · 20 years ago
  35. a1198b5 Correctly handle global-argument aliases induced in main by Chris Lattner · 20 years ago
  36. 63320cc Don't mess up SCC traversal when a node has null edges out of it. by Chris Lattner · 20 years ago
  37. 69c11bb document 'opaque' types by Chris Lattner · 20 years ago
  38. 0f876db Add feedback from Vikram by Chris Lattner · 20 years ago
  39. 5fe8561 Make sure the target buffer is null terminated so we don't blow up by Reid Spencer · 20 years ago
  40. 0bc0750 A test case for testing the StrCatOptimizer, currently XFAILed everywhere. by Reid Spencer · 20 years ago
  41. b7c11e3 Post-Review Cleanup: by Reid Spencer · 20 years ago
  42. 5517b2b Use the %name rather than the "name" format so those familiar with the by Reid Spencer · 20 years ago
  43. a1aad3b Shut GCC 4.0 up about classes that have virtual functions but a non-virtual by Reid Spencer · 20 years ago
  44. bb3d5d2 Declare a function to create the SimplifyLibCalls pass. by Reid Spencer · 20 years ago
  45. a7c049b A new pass to provide specific optimizations for certain well-known library by Reid Spencer · 20 years ago
  46. a498747 A test case for the the ExitInMain libcall simplification. by Reid Spencer · 20 years ago
  47. e8f3848 Older compilers won't like the inline virtual destructor in the header file by Reid Spencer · 20 years ago
  48. fd84c2d fix some bugs by Chris Lattner · 20 years ago
  49. 05bb883 Fix a thinko in the documentation of the splitBasicBlock method. The branch by Reid Spencer · 20 years ago
  50. 2b2a528 Shut GCC 4.0 up about classes with virtual functions but no virtual destructor. by Reid Spencer · 20 years ago
  51. 6287486 Shut GCC 4.0 up when it complains about classes with virtual functions that by Reid Spencer · 20 years ago
  52. ad1f0cd Make this readable for newbies and those who can only understand one set of by Reid Spencer · 20 years ago
  53. 4e8458d extract has been renamed to llvm-extract to avoid conflicting with another tool by Misha Brukman · 20 years ago
  54. f52d681 Eliminate cases where we could << by 64, which is undefined in C. by Chris Lattner · 20 years ago
  55. e50b075 There are still uses for spaces in Makefiles -- to make text line up together, by Misha Brukman · 20 years ago
  56. de03bc0 extract has been renamed to llvm-extract to avoid conflicting with another tool by Misha Brukman · 20 years ago
  57. 55d2a1a elisp code to help with LLVM code standards compliance by Misha Brukman · 20 years ago
  58. 3d6eea5 .vimrc file to aid in LLVM coding standards conformance by Misha Brukman · 20 years ago
  59. a1df33c Implement xor.ll:test21: select (not C), A, B -> select C, B, A by Chris Lattner · 20 years ago
  60. 6edb7e8 Test that xor/select are folded into a select with inverted operands. by Chris Lattner · 20 years ago
  61. 64001d0 Allow these methods to take a generic Value* to simplify clients. Use by Chris Lattner · 20 years ago
  62. 3538354 allow these to take a generic Value* by Chris Lattner · 20 years ago
  63. 484d3cf Use getPrimitiveSizeInBits() instead of getPrimitiveSize()*8 by Chris Lattner · 20 years ago
  64. 6f8a246 unxfail this. by Chris Lattner · 20 years ago
  65. 936a775 add a new testcase which occurs in 181.mcf by Chris Lattner · 20 years ago
  66. 446b5a9 * The aesthetic police is on patrol!!... by Misha Brukman · 20 years ago
  67. 3fa94bf Add a helper method by Chris Lattner · 20 years ago
  68. ea10491 Fix a bug in my previous checkin by Chris Lattner · 20 years ago
  69. e862547 This file is never referenced by Chris Lattner · 20 years ago
  70. 4f0247c Add a method, remove last use of Type.def by Chris Lattner · 20 years ago
  71. 4c5d305 add a method, remove a dead #include by Chris Lattner · 20 years ago
  72. 55f9501 Types.def is going away by Chris Lattner · 20 years ago
  73. 9d80930 Eliminate tabs and trailing spaces by Jeff Cohen · 20 years ago
  74. b02fbfc Eliminate tabs and trailing spaces by Jeff Cohen · 20 years ago
  75. cc1f245 Propagate eq sets through the bu graphs to the cbu and eq graphs, fixing by Chris Lattner · 20 years ago
  76. f1b200b add a bunch of documentation about the LLVM type resolution machinery by Chris Lattner · 20 years ago
  77. 2c6584a Make the CBackend actually get included in llc by using USEDLIBS instead of by Reid Spencer · 20 years ago
  78. d9d6e10 make an advanced topics section, move symtab to it by Chris Lattner · 20 years ago
  79. 61cba49 This is not needed by Chris Lattner · 20 years ago
  80. 86d9b4c add a search box for the documentation by Chris Lattner · 20 years ago
  81. 6970b66 Generalize the setcc -> PHI and Select folding optimizations to work with by Chris Lattner · 20 years ago
  82. 17ce8d2 add a new testcase by Chris Lattner · 20 years ago
  83. 3952bc6 Always enable the C backend. This fixes a *vast* number of failures on the by Chris Lattner · 20 years ago
  84. 4283d49 Add method to return the type this type will be promoted to if it is by Alkis Evlogimenos · 20 years ago
  85. 2ebdb53 Mention the --enable-targets= option to configure. by Reid Spencer · 20 years ago
  86. dca7978 * Order #includes as per style guide by Misha Brukman · 20 years ago
  87. 27177f8 Convert tabs to spaces by Misha Brukman · 20 years ago
  88. cfa87bc Hyphenate the adjective `n-bit' when used to describe values and processors by Misha Brukman · 20 years ago
  89. ccc1c16 Build the `Skeleton' target when building "all" targets by Misha Brukman · 20 years ago
  90. 2dedcf5 Document the --enable-targets= feature of the configure script. by Reid Spencer · 20 years ago
  91. 38da41c Silence gcc-4.0.0 warnings. by Alkis Evlogimenos · 20 years ago
  92. 7847fca Convert tabs to spaces by Misha Brukman · 20 years ago
  93. dadc96f Don't always build CBackend and Skeleton. Make use of the TARGETS_TO_BUILD by Reid Spencer · 20 years ago
  94. 18969fb Implement the --enable-targets= feature of the configure script. The make by Reid Spencer · 20 years ago
  95. 5a87044 Two changes: by Reid Spencer · 20 years ago
  96. 675f092 Make sure the CBackend is always a target that is built. by Reid Spencer · 20 years ago
  97. 99d1fcc Consolidate the target selection options into a single option, by Reid Spencer · 20 years ago
  98. 500b4db keep track of max depth stats by Andrew Lenharth · 20 years ago
  99. 945de9b First step in avoiding compilation/usage of non-relevant targets. New by Reid Spencer · 20 years ago
  100. 9f83822 Updated dependence analyzer. Fixed numerous bugs. Same stage scheduling, etc. by Tanya Lattner · 20 years ago