summaryrefslogtreecommitdiff
path: root/tools/opt
Commit message (Expand)AuthorAge
* Change another reference to the "indirect callgraph node" toDuncan Sands2010-06-09
* Output "external node" rather than "Indirect CallGraph node" when printingDuncan Sands2010-06-09
* Don't special-case stdout in llvm::WriteBitcodeToFile; just considerDan Gohman2010-05-27
* Don't create an output stream when output is disabled.Dan Gohman2010-05-27
* Avoid calling outs() and fouts() when the stream isn't really needed.Dan Gohman2010-05-27
* Use regular PassManager instead of FunctionPassManager in opt, since itDan Gohman2010-05-14
* introduce a new CallGraphSCC class, and pass it aroundChris Lattner2010-04-16
* Remove unnecessary uses of <iostream>.Daniel Dunbar2010-04-15
* Trim #includes.Dan Gohman2010-03-24
* Avoid leaking the FunctionPassManager from opt.Jeffrey Yasskin2010-03-22
* Avoid a dangling pointer dereference, PassManager::add can delete the Pass.Benjamin Kramer2010-02-18
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-27
* make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.Chris Lattner2010-01-24
* Stop building RTTI information for *most* llvm libraries. NotableChris Lattner2010-01-22
* elimiante the dynamic_cast's from opt.Chris Lattner2010-01-22
* simplify code.Chris Lattner2010-01-22
* Make opt -O3 act more like clang -O3 etc., by making the inlining thresholdsEli Friedman2010-01-18
* Don't create a (empty) output file, and don't warn about bitcode outputDan Gohman2010-01-17
* Enable debug buffering.David Greene2010-01-05
* when opt crashes, print its command line arguments as a pretty stack trace.Chris Lattner2009-12-09
* Remove ShortNames from getNodeLabel in DOTGraphTraitsTobias Grosser2009-11-30
* Instantiate DefaultDOTGraphTraitsTobias Grosser2009-11-30
* Make opt default to not adding a target data string and update tests that dep...Kenneth Uildriks2009-11-03
* nothing opt uses can throw, remove the try block and -fexceptions whenChris Lattner2009-10-22
* Add some command line options for twiddling the default data layoutChris Lattner2009-10-22
* There seems to be no reason for opt's -S option to be hidden.Duncan Sands2009-10-14
* 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