summaryrefslogtreecommitdiff
path: root/tools/opt
Commit message (Expand)AuthorAge
* Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn'tDan Gohman2009-09-11
* opt: Add -S option to print output as LLVM assembly.Daniel Dunbar2009-09-05
* Use IRReader.h in opt, to support reading of LLVM Assembly files directly.Dan Gohman2009-09-03
* Fix some nasty callgraph dangling pointer problems in Chris Lattner2009-08-31
* Make LLVM command-line tools overwrite their output files without -f.Dan Gohman2009-08-25
* These flushes were only needed when the code was transitioning betweenDan Gohman2009-08-24
* eliminate the ostream version of CheckBitcodeOutputToConsole,Chris Lattner2009-08-23
* use raw_fd_ostream instead of fstream with graphwriter,Chris Lattner2009-08-23
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-23
* Change raw_fd_ostream to take flags as an optional bitmask Chris Lattner2009-08-23
* Make unit-at-a-time on by default to match the behavior of llvm-gcc.Eric Christopher2009-08-21
* Kill trailing whitespace.Eric Christopher2009-08-21
* Switch some clients to Value::getName(), and other getName() userDaniel Dunbar2009-07-22
* Fix a crash in SROA. The FunctionPass::doInitialization method was neverBob Wilson2009-07-17
* opt: Add -std-link-opts argument, matches llvm-ld's optimizations.Daniel Dunbar2009-07-17
* Convert more tools code from cerr and cout to errs() and outs().Dan Gohman2009-07-16
* To simplify the upcoming context-on-type change, switch all command line tool...Owen Anderson2009-07-15
* Add a Force option to raw_fd_ostream to specify whether openingDan Gohman2009-07-15
* Use errs() instead of std::cerr.Dan Gohman2009-07-15
* Hold the LLVMContext by reference rather than by pointer.Owen Anderson2009-07-01
* Add a pointer to the owning LLVMContext to Module. This requires threading L...Owen Anderson2009-07-01
* Get rid of the global CFGOnly flag by threading a ShortNames parameters throu...Owen Anderson2009-06-24
* Switch opt to using StandardPasses.hDaniel Dunbar2009-06-03
* Fixed file header comment.Misha Brukman2009-04-01
* Eliminate several more unnecessary intptr_t casts.Dan Gohman2009-02-18
* Rename AddReadAttrs to FunctionAttrs, and teach it howDuncan Sands2008-12-31
* Enable LoopIndexSplit pass.Devang Patel2008-12-04
* Disable -loop-index-split for now.Devang Patel2008-11-26
* Adjust indent.Zhongxing Xu2008-11-26
* fix memory leak in pass manager when adding an analysis pass that already exi...Nuno Lopes2008-11-04
* Move Print*Pass to use raw_ostream.Daniel Dunbar2008-10-22
* Privatize PrintModulePass and PrintFunctionPass and addDaniel Dunbar2008-10-21
* Rationalize the names of passes that print information:Duncan Sands2008-09-23
* Initial support for the CMake build system.Oscar Fuentes2008-09-22
* Turn on the AddReadAttrs pass.Duncan Sands2008-09-19
* Teach -callgraph to always print the callgraph (as theDuncan Sands2008-09-19
* Fix comments, help messages.Devang Patel2008-09-17
* Fix cut-n-pasto.Devang Patel2008-09-17
* Add -O1, -O2 and -O3 that matches llvm-gcc's -O1, -O2 and -O3 respectively.Devang Patel2008-09-16
* End of the GlobalsModRef experiment.Duncan Sands2008-09-15
* Give GlobalsModRef a whirl in the nightly testers.Duncan Sands2008-09-12
* Backout 55429Devang Patel2008-08-27
* Add facility to create a target.Devang Patel2008-08-27
* Goodbye tail duplication (for good this time).Evan Cheng2008-07-14
* Fix comment.Duncan Sands2008-07-13
* Fix PR2231 - opt -internalize -std-compile-opts should run internalize firstChris Lattner2008-07-13
* Move dominator info printer into tool/opt/GraphPrinters.cppDevang Patel2008-06-30
* Re-enable the newly simplified ADCE. This fixes a regression onOwen Anderson2008-05-29
* Remove ADCE from the optimization pipeline.Owen Anderson2008-05-27
* Re-enable tail duplication pass (now with default threshold down to 1 instruc...Evan Cheng2008-05-16