1. c67ebfa - Dramatically simplify the ConstantMerge code now that by Chris Lattner · 22 years ago
  2. 28eca8b - Make Value::replaceAllUsesWith work with constants correctly. This fixes by Chris Lattner · 22 years ago
  3. c251f9e - Add new Constant::replaceUsesOfWithOnConstant which has an end result by Chris Lattner · 22 years ago
  4. 4bbd839 Make isExtern() be a virtual function inherited from GlobalValue by Chris Lattner · 22 years ago
  5. e3dcf2e Table with current status of tests in the /test/Programs/ directory by Nick Hildenbrandt · 22 years ago
  6. a45ec54 Almost a complete rewrite of FunctionResolution to now resolve functions by Chris Lattner · 22 years ago
  7. 5199e16 Add check to see if opt aborts by Chris Lattner · 22 years ago
  8. a99fb66 New testcase by Chris Lattner · 22 years ago
  9. 388f56d Avoid having testcases spit out bytecode on error by Chris Lattner · 22 years ago
  10. 6a7096e Cleanup testcase a lot to test JUST funcresolve of globals by Chris Lattner · 22 years ago
  11. 806fd40 - Detemplatize UseTy<> in Value.h, because it's only instantiated for one by Chris Lattner · 22 years ago
  12. d9b11cf Added a major mode for Emacs to edit LLVM assembler code with syntax by Misha Brukman · 22 years ago
  13. e43f40b Minor, non-functionality changing, formatting fix by Chris Lattner · 22 years ago
  14. 61d295a - Remove Value::use_remove by Chris Lattner · 22 years ago
  15. 4e5e2ed - Remove Value::use_push_back & Value::use_remove by Chris Lattner · 22 years ago
  16. cd484a4 - Rename MTy to FTy (no methods exist anymore) by Chris Lattner · 22 years ago
  17. b58d0d5 New testcase for infinite loop that the raise pass is getting into by Chris Lattner · 22 years ago
  18. d1c657e Fix NASTY N^2 behavior that was causing the gzip benchmark to take forever to by Chris Lattner · 22 years ago
  19. d43c7d2 Fix bug: Assembler/2002-10-08-LargeArrayPerformance.ll by using by Chris Lattner · 22 years ago
  20. a20021b New testcase that the assembler is unacceptably slow on by Chris Lattner · 22 years ago
  21. 61b92c0 - Fix bug: LevelRaise/2002-10-08-VarArgCall.ll by Chris Lattner · 22 years ago
  22. 8576bd6 New testcase for bug that messes up the CWriter by Chris Lattner · 22 years ago
  23. d3d06a5 - Fix bug: cee/2002-10-07-NoImmediateDominator.ll by Chris Lattner · 22 years ago
  24. dee430d Changes to support PHINode::removeIncoming changes by Chris Lattner · 22 years ago
  25. bb190ac by Chris Lattner · 22 years ago
  26. 8bcb768 - Change PHINode::removeIncomingValue to delete the phi node if the last by Chris Lattner · 22 years ago
  27. f7f009d - Checkin LARGE number of Changes to CEE pass that will make it much more by Chris Lattner · 22 years ago
  28. fe3c2e0 By default PHINode::removeIncomingValue will delete the phi node if the last by Chris Lattner · 22 years ago
  29. e802a02 Expose isCriticalEdge & SplitCriticalEdge methods from crit-edges pass by Chris Lattner · 22 years ago
  30. 7ca266f Expose new "recalculate" method from dominatorset by Chris Lattner · 22 years ago
  31. de013f5 Cleanup testcase by Chris Lattner · 22 years ago
  32. b829928 Make test more interesting by adding dummy phi node by Chris Lattner · 22 years ago
  33. 57b314c It is illegal for PHI nodes to have zero values, delete the code to handle them by Chris Lattner · 22 years ago
  34. 6eaeb57 Fold ashr -1, X into -1 by Chris Lattner · 22 years ago
  35. af1b4ad Add new testcase for arithmetic shr of -1 by Chris Lattner · 22 years ago
  36. 2e217a7 This test was mistakenly matching 'predecessors' that the new asmwriter by Chris Lattner · 22 years ago
  37. 75f79b9 LLVM syntax highlighting for VIM. by Nick Hildenbrandt · 22 years ago
  38. 9106a58 Don't rotate paper. by Chris Lattner · 22 years ago
  39. 48f9e62 New testcase by Chris Lattner · 22 years ago
  40. fd2836a Fix testcase to run correctly, add description by Chris Lattner · 22 years ago
  41. 7b96c8d Finally I'm able to distill a testcase for a problem I'm seeing! by Chris Lattner · 22 years ago
  42. ac859db - Implement a new -print-cfg option for analyze, that causes it to print the by Chris Lattner · 22 years ago
  43. 95b923d - Allow printing generic LLVM graphs to 'dot' files, so they can be by Chris Lattner · 22 years ago
  44. 7c1faf0 Non-functionality change just to make it more clear what is going on by Chris Lattner · 22 years ago
  45. 71bcba7 Avoid making external global variables internal by Chris Lattner · 22 years ago
  46. 8f1717f Fix bug in last checkin by Chris Lattner · 22 years ago
  47. e423406 Update testcase to be legal llvm by Chris Lattner · 22 years ago
  48. 6785510 Remove really old testcase by Chris Lattner · 22 years ago
  49. 5554a1d Implement operator= for SuccIterators by Chris Lattner · 22 years ago
  50. cacfb31 Checkin new "feature" test for cee by Chris Lattner · 22 years ago
  51. 19ee34a NEw "feature" test that cee should eventually handle by Chris Lattner · 22 years ago
  52. 0c5e362 Global variables are now external if they don't have initializers, not by Chris Lattner · 22 years ago
  53. 61b91bc Check that we don't have external varaibles with internal linkage by Chris Lattner · 22 years ago
  54. 08c0e6a The parser now accepts "external" global variables, in addition to the backwards by Chris Lattner · 22 years ago
  55. 7209bff - Cleaned up all of the test/Feature tests to not use uint's with by Chris Lattner · 22 years ago
  56. c5eafb5 Remove old crusty test by Chris Lattner · 22 years ago
  57. 47dd0c3 Test "external" modifier on global variable by Chris Lattner · 22 years ago
  58. ac8a58d - Add new isExternal() method to GlobalVariable to mirror Function. by Chris Lattner · 22 years ago
  59. 7d3f867 - The extract tool now is sure to extract the function implementation for by Chris Lattner · 22 years ago
  60. f6ffcb6 PHI nodes are not allowed to exist with zero incoming values, check that by Chris Lattner · 22 years ago
  61. 2a408f0 Bug fix: In preventing static global variables from being printed twice, by Vikram S. Adve · 22 years ago
  62. 3400837 Added #include<unistd.h> to compile with solaris gcc3.2 by Anand Shukla · 22 years ago
  63. c1d4d79 added cast to unsigned to compile with gcc3.2 (sparc) by Anand Shukla · 22 years ago
  64. 41a29f2 New testcase for bug never checked into CVS, but that I hit during debugging a by Chris Lattner · 22 years ago
  65. 7d821db Handle post dominance correctly in the case where blocks do not have a path to by Chris Lattner · 22 years ago
  66. 4e4caef Fix a nasty problem with dominance calculation for unreachable blocks. by Chris Lattner · 22 years ago
  67. a00397e Prune function nodes that are no longer referenced due to inlining by Chris Lattner · 22 years ago
  68. 6727ec6 sgefa uses truely huge data structures nodes. Only print part of them if they by Chris Lattner · 22 years ago
  69. b0d0f5b The wall clock timer (implementing using the RTC or cycle counter on x86) is by Chris Lattner · 22 years ago
  70. 62d928e Handle bug exposed by power benchmark by Chris Lattner · 22 years ago
  71. d2eb386 Add parens around constant calls to getelemptr to properly associate the reference by Nick Hildenbrandt · 22 years ago
  72. 55c1058 Reimplement/port the Bottom Up Closure pass by Chris Lattner · 22 years ago
  73. 24b7799 New testcase by Chris Lattner · 22 years ago
  74. c5f21de DataStructure.h doesn't include DSGraph.h by Chris Lattner · 22 years ago
  75. 0d0244d Remove commented out stuff DataStructure.h doesn't include DSGraph.h now by Chris Lattner · 22 years ago
  76. 60a398e Move GlobalDSGraph class defn to the end of the file by Chris Lattner · 22 years ago
  77. e5346ec This file doesn't need Pass.h by Chris Lattner · 22 years ago
  78. ca62692 I was wrong on the removing of those references on the last commit. by Nick Hildenbrandt · 22 years ago
  79. 005cbce * Implement the getc() function by Chris Lattner · 22 years ago
  80. 849735c Cleanup #includes, expose module by Chris Lattner · 22 years ago
  81. dbaf74d Expose TD to ExternalFunctions.cpp by Chris Lattner · 22 years ago
  82. 061269b - Print the predecessors of a basic block instead of the number of uses of by Chris Lattner · 22 years ago
  83. b698455 Fix bug: 2002-10-02-SignExtensionProblem.ll by Chris Lattner · 22 years ago
  84. 51c84d1 Removed unneeded reference and dereferences. by Nick Hildenbrandt · 22 years ago
  85. 87d9138 New testcase for a problem discovered in the SPECINT gzip benchmark. by Chris Lattner · 22 years ago
  86. 275801b Cleaned up my last check-in. by Nick Hildenbrandt · 22 years ago
  87. 113ad89 No longer include malloc.h. If protoypes are needed for memory functions they will be present in the byte code and the generated c as well. by Nick Hildenbrandt · 22 years ago
  88. e03f32b by Chris Lattner · 22 years ago
  89. 27236ac * Implement fully general merging of array subscripts on demand! This by Chris Lattner · 22 years ago
  90. 9cfb358 When printing DS nodes, print the mergemap index as well to allow easier by Chris Lattner · 22 years ago
  91. 8b71987 Checkin the "meat" of the Data structure graph itself. I forgot to check by Chris Lattner · 22 years ago
  92. 7b7200c * Significant rework of DSNode to support arbitrary aliasing due to merging by Chris Lattner · 22 years ago
  93. 1da2972 - Remove the User::eraseOperand method which is never used, really by Chris Lattner · 22 years ago
  94. c75ff9a Do some cleanups to the Type and Constant section to remove latex stuff by Chris Lattner · 22 years ago
  95. d2f86e7 Temporary change to make datastructure stuff link in right by Chris Lattner · 22 years ago
  96. e68bf61 Changes to work with Statistics rework by Chris Lattner · 22 years ago
  97. 8328f1d Update manual to reflect recent changes in the Statistic class. by Chris Lattner · 22 years ago
  98. a92f696 Updates to work with recent Statistic's changes: by Chris Lattner · 22 years ago
  99. 6ee6bbe Updates to work with recent Statistic's changes: by Chris Lattner · 22 years ago
  100. 249be91 Build subdirs in parallel by Chris Lattner · 22 years ago