1. 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
  2. 61db1a1 nothing opt uses can throw, remove the try block and -fexceptions when by Chris Lattner · 15 years ago
  3. d331cb3 Add some command line options for twiddling the default data layout by Chris Lattner · 15 years ago
  4. 81b0b64 There seems to be no reason for opt's -S option to be hidden. Make it visible. by Duncan Sands · 15 years ago
  5. ec08046 Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't by Dan Gohman · 15 years ago
  6. 8c042c2 opt: Add -S option to print output as LLVM assembly. by Daniel Dunbar · 15 years ago
  7. 99ed416 Use IRReader.h in opt, to support reading of LLVM Assembly files directly. by Dan Gohman · 15 years ago
  8. 5095e3d Fix some nasty callgraph dangling pointer problems in by Chris Lattner · 15 years ago
  9. baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 15 years ago
  10. 127dd96 These flushes were only needed when the code was transitioning between by Dan Gohman · 15 years ago
  11. b683ea4 eliminate the ostream version of CheckBitcodeOutputToConsole, by Chris Lattner · 15 years ago
  12. 2e35bec use raw_fd_ostream instead of fstream with graphwriter, by Chris Lattner · 15 years ago
  13. 45cfe54 Change Pass::print to take a raw ostream instead of std::ostream, by Chris Lattner · 15 years ago
  14. 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 15 years ago
  15. c4769ba Make unit-at-a-time on by default to match the behavior of llvm-gcc. by Eric Christopher · 15 years ago
  16. a887ae4 Kill trailing whitespace. by Eric Christopher · 15 years ago
  17. 3d5126f Switch some clients to Value::getName(), and other getName() user by Daniel Dunbar · 15 years ago
  18. d8aa9fc Fix a crash in SROA. The FunctionPass::doInitialization method was never by Bob Wilson · 15 years ago
  19. adc8288 opt: Add -std-link-opts argument, matches llvm-ld's optimizations. by Daniel Dunbar · 15 years ago
  20. ac95cc7 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 15 years ago
  21. 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
  22. a1bdced Add a Force option to raw_fd_ostream to specify whether opening by Dan Gohman · 15 years ago
  23. 65f57c2 Use errs() instead of std::cerr. by Dan Gohman · 15 years ago
  24. 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 15 years ago
  25. 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 15 years ago
  26. 8cbc94a Get rid of the global CFGOnly flag by threading a ShortNames parameters through the GraphViz rendering code. by Owen Anderson · 15 years ago
  27. ca8131e Switch opt to using StandardPasses.h by Daniel Dunbar · 15 years ago
  28. a9f4836 Fixed file header comment. by Misha Brukman · 16 years ago
  29. 865f006 Eliminate several more unnecessary intptr_t casts. by Dan Gohman · 16 years ago
  30. 9e89ba3 Rename AddReadAttrs to FunctionAttrs, and teach it how by Duncan Sands · 16 years ago
  31. 4d6e233 Enable LoopIndexSplit pass. by Devang Patel · 16 years ago
  32. 6f9f3e1 Disable -loop-index-split for now. by Devang Patel · 16 years ago
  33. 3253f4c Adjust indent. by Zhongxing Xu · 16 years ago
  34. 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
  35. 3b0da26 Move Print*Pass to use raw_ostream. by Daniel Dunbar · 16 years ago
  36. f4db3a5 Privatize PrintModulePass and PrintFunctionPass and add by Daniel Dunbar · 16 years ago
  37. 3ee8fc9 Rationalize the names of passes that print information: by Duncan Sands · 16 years ago
  38. 3d01fc7 Initial support for the CMake build system. by Oscar Fuentes · 16 years ago
  39. 210fada Turn on the AddReadAttrs pass. by Duncan Sands · 16 years ago
  40. e65d39a Teach -callgraph to always print the callgraph (as the by Duncan Sands · 16 years ago
  41. 442b1aa Fix comments, help messages. by Devang Patel · 16 years ago
  42. d9424ed Fix cut-n-pasto. by Devang Patel · 16 years ago
  43. 2d7551c Add -O1, -O2 and -O3 that matches llvm-gcc's -O1, -O2 and -O3 respectively. by Devang Patel · 16 years ago
  44. 38197fe End of the GlobalsModRef experiment. by Duncan Sands · 16 years ago
  45. 0e3b7b2 Give GlobalsModRef a whirl in the nightly testers. by Duncan Sands · 16 years ago
  46. ff5d06d Backout 55429 by Devang Patel · 16 years ago
  47. 9d2968c Add facility to create a target. by Devang Patel · 16 years ago
  48. 5f2f218 Goodbye tail duplication (for good this time). by Evan Cheng · 16 years ago
  49. 56eb133 Fix comment. by Duncan Sands · 16 years ago
  50. 3dda08a Fix PR2231 - opt -internalize -std-compile-opts should run internalize first by Chris Lattner · 16 years ago
  51. 687e03b Move dominator info printer into tool/opt/GraphPrinters.cpp by Devang Patel · 16 years ago
  52. c5b2710 Re-enable the newly simplified ADCE. This fixes a regression on by Owen Anderson · 16 years ago
  53. 9e2abd3 Remove ADCE from the optimization pipeline. by Owen Anderson · 16 years ago
  54. df04572 Re-enable tail duplication pass (now with default threshold down to 1 instruction). by Evan Cheng · 16 years ago
  55. 38503d4 Remove tail duplication pass. by Evan Cheng · 16 years ago
  56. 8ffe2e2 Recover nestedloop regression reported by nightly tester. by Devang Patel · 16 years ago
  57. 81a1d08 Do not run instruction combiner in middle of loop optimization passes. by Devang Patel · 16 years ago
  58. 4982bab Re-enable loop deletion by default. by Owen Anderson · 16 years ago
  59. 77a895e Disable loop deletion until the release branch. by Owen Anderson · 16 years ago
  60. 3f3d95c Enable dead loop elimination. by Owen Anderson · 16 years ago
  61. 866b9e1 move libcalls to the same place llvm-gcc has it. by Chris Lattner · 16 years ago
  62. 2510c3b enable jump threading pass by default. This causes no miscompilations by Chris Lattner · 16 years ago
  63. fa191e4 Run SimplifyLibCalls near the beginning, not at by Duncan Sands · 16 years ago
  64. 5d4ed3b Move memcpy / memset optimization pass after GVN. by Evan Cheng · 16 years ago
  65. a723d1e Factor a bunch of functionality related to memcpy and memset transforms out of by Owen Anderson · 17 years ago
  66. 21c62da remove attributions from tools. by Chris Lattner · 17 years ago
  67. 5116784 remove attributions from tools/utils makefiles. by Chris Lattner · 17 years ago
  68. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 17 years ago
  69. d06eb2c Turn GVN on by default. by Owen Anderson · 17 years ago
  70. 305743d Enable loop index split pass. by Devang Patel · 17 years ago
  71. f6a05f9 Rename FastDSE to just DSE. by Owen Anderson · 17 years ago
  72. d47cab8 Remove a FIXME comment that wasn't removed when the code it accompanied by Dan Gohman · 17 years ago
  73. b63c7b6 Turn on FastDSE by default. by Owen Anderson · 17 years ago
  74. 74b1e14 Change sroa threshold back. by Evan Cheng · 17 years ago
  75. a8b9a7b Temporarily set SROA threshold to 512. by Evan Cheng · 17 years ago
  76. a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 17 years ago
  77. 56fb164 Fix PR1539. Add LoopPassPrinter. by Devang Patel · 17 years ago
  78. 28552da Fix PR 1526. by Devang Patel · 17 years ago
  79. 065344d use the new MemoryBuffer interfaces to simplify error reporting in clients. by Chris Lattner · 17 years ago
  80. d44ae90 make sure the ofstream for opt's output file is destroyed, so that the bits by Chris Lattner · 17 years ago
  81. 744879e switch tools to bitcode from bytecode by Chris Lattner · 17 years ago
  82. 592488a add support to llvm-prof for reading from a bitcode file by Chris Lattner · 17 years ago
  83. b330e38 if -bitcode is specified, read and write a bitcode file instead of a bytecode file. by Chris Lattner · 17 years ago
  84. 1997473 Drop 'const' by Devang Patel · 17 years ago
  85. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 17 years ago
  86. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 17 years ago
  87. 9c81664 remove cruft by Chris Lattner · 17 years ago
  88. 0aa37f4 Enable loop rotate pass. by Devang Patel · 18 years ago
  89. 1bc8936 Now LoopUnswitch is a LoopPass. by Devang Patel · 18 years ago
  90. f2e292c push bytecode decompressor out through APIs. Now the bytecode reader by Chris Lattner · 18 years ago
  91. ef9b9a7 For PR411: by Reid Spencer · 18 years ago
  92. 7ba98a9 For PR1072: by Reid Spencer · 18 years ago
  93. 74ed997 For PR1152: by Reid Spencer · 18 years ago
  94. 0331524 shutdown at end of run by Chris Lattner · 18 years ago
  95. 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 18 years ago
  96. 17be679 default to emiting an uncompressed .bc file by Chris Lattner · 18 years ago
  97. e026c07 Remove DSA. by John Criswell · 18 years ago
  98. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 18 years ago
  99. c30598b make all llvm tools call llvm_shutdown when they exit, static'ify some stuff. by Chris Lattner · 18 years ago
  100. 8257bee This needs the callgraph data structure to stick around as long as the by Chris Lattner · 18 years ago