1. 1f74590 Revert r110396 to fix buildbots. by Owen Anderson · 14 years ago
  2. 9ccaf53 Don't use PassInfo* as a type identifier for passes. Instead, use the address of the static by Owen Anderson · 14 years ago
  3. 7d3056b simplify by using CallSite constructors; virtually eliminates CallSite::get from the tree by Gabor Greif · 14 years ago
  4. 3472766 Convert some tab stops into spaces. by Duncan Sands · 14 years ago
  5. 3982c2c Change another reference to the "indirect callgraph node" to by Duncan Sands · 14 years ago
  6. c0ccc70 Output "external node" rather than "Indirect CallGraph node" when printing by Duncan Sands · 14 years ago
  7. d928fb6 Don't special-case stdout in llvm::WriteBitcodeToFile; just consider by Dan Gohman · 14 years ago
  8. 7f924a3 Don't create an output stream when output is disabled. by Dan Gohman · 14 years ago
  9. 26a7074 Avoid calling outs() and fouts() when the stream isn't really needed. by Dan Gohman · 14 years ago
  10. 9cc1c18 Use regular PassManager instead of FunctionPassManager in opt, since it by Dan Gohman · 15 years ago
  11. 2decb22 introduce a new CallGraphSCC class, and pass it around by Chris Lattner · 15 years ago
  12. 8f10915 Remove unnecessary uses of <iostream>. by Daniel Dunbar · 15 years ago
  13. 51ecc38 Trim #includes. by Dan Gohman · 15 years ago
  14. bd85e8e Avoid leaking the FunctionPassManager from opt. by Jeffrey Yasskin · 15 years ago
  15. 3460f22 Avoid a dangling pointer dereference, PassManager::add can delete the Pass. by Benjamin Kramer · 15 years ago
  16. f0356fe Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 15 years ago
  17. 43b5f93 make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. by Chris Lattner · 15 years ago
  18. e73a31f Stop building RTTI information for *most* llvm libraries. Notable by Chris Lattner · 15 years ago
  19. 476e9bd elimiante the dynamic_cast's from opt. by Chris Lattner · 15 years ago
  20. 6f6e87d simplify code. by Chris Lattner · 15 years ago
  21. 74733a7 Make opt -O3 act more like clang -O3 etc., by making the inlining thresholds by Eli Friedman · 15 years ago
  22. b56bf58 Don't create a (empty) output file, and don't warn about bitcode output by Dan Gohman · 15 years ago
  23. 08fc0d3 Enable debug buffering. by David Greene · 15 years ago
  24. c0d91b7 when opt crashes, print its command line arguments as a pretty stack trace. by Chris Lattner · 15 years ago
  25. 56f4ef3 Remove ShortNames from getNodeLabel in DOTGraphTraits by Tobias Grosser · 15 years ago
  26. a10d598 Instantiate DefaultDOTGraphTraits by Tobias Grosser · 15 years ago
  27. b908f8a Make opt default to not adding a target data string and update tests that depend on target data to supply it within the test by Kenneth Uildriks · 15 years ago
  28. 61db1a1 nothing opt uses can throw, remove the try block and -fexceptions when by Chris Lattner · 15 years ago
  29. d331cb3 Add some command line options for twiddling the default data layout by Chris Lattner · 15 years ago
  30. 81b0b64 There seems to be no reason for opt's -S option to be hidden. Make it visible. by Duncan Sands · 15 years ago
  31. ec08046 Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't by Dan Gohman · 15 years ago
  32. 8c042c2 opt: Add -S option to print output as LLVM assembly. by Daniel Dunbar · 15 years ago
  33. 99ed416 Use IRReader.h in opt, to support reading of LLVM Assembly files directly. by Dan Gohman · 15 years ago
  34. 5095e3d Fix some nasty callgraph dangling pointer problems in by Chris Lattner · 15 years ago
  35. baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 15 years ago
  36. 127dd96 These flushes were only needed when the code was transitioning between by Dan Gohman · 15 years ago
  37. b683ea4 eliminate the ostream version of CheckBitcodeOutputToConsole, by Chris Lattner · 15 years ago
  38. 2e35bec use raw_fd_ostream instead of fstream with graphwriter, by Chris Lattner · 15 years ago
  39. 45cfe54 Change Pass::print to take a raw ostream instead of std::ostream, by Chris Lattner · 15 years ago
  40. 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 15 years ago
  41. c4769ba Make unit-at-a-time on by default to match the behavior of llvm-gcc. by Eric Christopher · 15 years ago
  42. a887ae4 Kill trailing whitespace. by Eric Christopher · 15 years ago
  43. 3d5126f Switch some clients to Value::getName(), and other getName() user by Daniel Dunbar · 15 years ago
  44. d8aa9fc Fix a crash in SROA. The FunctionPass::doInitialization method was never by Bob Wilson · 15 years ago
  45. adc8288 opt: Add -std-link-opts argument, matches llvm-ld's optimizations. by Daniel Dunbar · 15 years ago
  46. ac95cc7 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 15 years ago
  47. 0d7c695 To simplify the upcoming context-on-type change, switch all command line tools to using the default global context for now. by Owen Anderson · 15 years ago
  48. a1bdced Add a Force option to raw_fd_ostream to specify whether opening by Dan Gohman · 15 years ago
  49. 65f57c2 Use errs() instead of std::cerr. by Dan Gohman · 15 years ago
  50. 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 15 years ago
  51. 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 15 years ago
  52. 8cbc94a Get rid of the global CFGOnly flag by threading a ShortNames parameters through the GraphViz rendering code. by Owen Anderson · 15 years ago
  53. ca8131e Switch opt to using StandardPasses.h by Daniel Dunbar · 15 years ago
  54. a9f4836 Fixed file header comment. by Misha Brukman · 16 years ago
  55. 865f006 Eliminate several more unnecessary intptr_t casts. by Dan Gohman · 16 years ago
  56. 9e89ba3 Rename AddReadAttrs to FunctionAttrs, and teach it how by Duncan Sands · 16 years ago
  57. 4d6e233 Enable LoopIndexSplit pass. by Devang Patel · 16 years ago
  58. 6f9f3e1 Disable -loop-index-split for now. by Devang Patel · 16 years ago
  59. 3253f4c Adjust indent. by Zhongxing Xu · 16 years ago
  60. 641397f fix memory leak in pass manager when adding an analysis pass that already existed. as pass manager takes ownership of the added passes, it has to delete the pass if it isnt added to the pass list by Nuno Lopes · 16 years ago
  61. 3b0da26 Move Print*Pass to use raw_ostream. by Daniel Dunbar · 16 years ago
  62. f4db3a5 Privatize PrintModulePass and PrintFunctionPass and add by Daniel Dunbar · 16 years ago
  63. 3ee8fc9 Rationalize the names of passes that print information: by Duncan Sands · 16 years ago
  64. 3d01fc7 Initial support for the CMake build system. by Oscar Fuentes · 16 years ago
  65. 210fada Turn on the AddReadAttrs pass. by Duncan Sands · 16 years ago
  66. e65d39a Teach -callgraph to always print the callgraph (as the by Duncan Sands · 16 years ago
  67. 442b1aa Fix comments, help messages. by Devang Patel · 16 years ago
  68. d9424ed Fix cut-n-pasto. by Devang Patel · 16 years ago
  69. 2d7551c Add -O1, -O2 and -O3 that matches llvm-gcc's -O1, -O2 and -O3 respectively. by Devang Patel · 16 years ago
  70. 38197fe End of the GlobalsModRef experiment. by Duncan Sands · 16 years ago
  71. 0e3b7b2 Give GlobalsModRef a whirl in the nightly testers. by Duncan Sands · 16 years ago
  72. ff5d06d Backout 55429 by Devang Patel · 16 years ago
  73. 9d2968c Add facility to create a target. by Devang Patel · 16 years ago
  74. 5f2f218 Goodbye tail duplication (for good this time). by Evan Cheng · 16 years ago
  75. 56eb133 Fix comment. by Duncan Sands · 16 years ago
  76. 3dda08a Fix PR2231 - opt -internalize -std-compile-opts should run internalize first by Chris Lattner · 16 years ago
  77. 687e03b Move dominator info printer into tool/opt/GraphPrinters.cpp by Devang Patel · 16 years ago
  78. c5b2710 Re-enable the newly simplified ADCE. This fixes a regression on by Owen Anderson · 16 years ago
  79. 9e2abd3 Remove ADCE from the optimization pipeline. by Owen Anderson · 16 years ago
  80. df04572 Re-enable tail duplication pass (now with default threshold down to 1 instruction). by Evan Cheng · 16 years ago
  81. 38503d4 Remove tail duplication pass. by Evan Cheng · 17 years ago
  82. 8ffe2e2 Recover nestedloop regression reported by nightly tester. by Devang Patel · 17 years ago
  83. 81a1d08 Do not run instruction combiner in middle of loop optimization passes. by Devang Patel · 17 years ago
  84. 4982bab Re-enable loop deletion by default. by Owen Anderson · 17 years ago
  85. 77a895e Disable loop deletion until the release branch. by Owen Anderson · 17 years ago
  86. 3f3d95c Enable dead loop elimination. by Owen Anderson · 17 years ago
  87. 866b9e1 move libcalls to the same place llvm-gcc has it. by Chris Lattner · 17 years ago
  88. 2510c3b enable jump threading pass by default. This causes no miscompilations by Chris Lattner · 17 years ago
  89. fa191e4 Run SimplifyLibCalls near the beginning, not at by Duncan Sands · 17 years ago
  90. 5d4ed3b Move memcpy / memset optimization pass after GVN. by Evan Cheng · 17 years ago
  91. a723d1e Factor a bunch of functionality related to memcpy and memset transforms out of by Owen Anderson · 17 years ago
  92. 21c62da remove attributions from tools. by Chris Lattner · 17 years ago
  93. 5116784 remove attributions from tools/utils makefiles. by Chris Lattner · 17 years ago
  94. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 17 years ago
  95. d06eb2c Turn GVN on by default. by Owen Anderson · 17 years ago
  96. 305743d Enable loop index split pass. by Devang Patel · 17 years ago
  97. f6a05f9 Rename FastDSE to just DSE. by Owen Anderson · 17 years ago
  98. d47cab8 Remove a FIXME comment that wasn't removed when the code it accompanied by Dan Gohman · 17 years ago
  99. b63c7b6 Turn on FastDSE by default. by Owen Anderson · 17 years ago
  100. 74b1e14 Change sroa threshold back. by Evan Cheng · 17 years ago