aboutsummaryrefslogtreecommitdiffstats
path: root/tools/opt/opt.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Print breakpoints for call instructions. This is used by optimized debug info...Devang Patel2010-12-091-0/+13
* Add a simple breakpoint location printer. This will be used by upcoming "debu...Devang Patel2010-12-071-1/+59
* Move check of command line options after command line parsing.Tobias Grosser2010-12-021-5/+5
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Tweak the opt -O2 / opt -O3 inliner thresholds to be the same as llvm-gcc andJakob Stoklund Olesen2010-11-021-2/+2
* Add RegionPass support.Tobias Grosser2010-10-201-0/+38
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-0/+12
* Move tool_output_file into its own file.Dan Gohman2010-10-071-1/+1
* Execute all Pass Printers even if -quiet is set.Tobias Grosser2010-09-081-19/+16
* Include original pass name in the PassPrinter's name.Tobias Grosser2010-09-081-10/+36
* Make tool_output_file's raw_ostream instance a member variable insteadDan Gohman2010-09-011-8/+13
* Use the new tool_output_file in several tools. This fixes a varietyDan Gohman2010-08-201-12/+8
* Allow the -analyze option to follow the -o option, which defaults toDan Gohman2010-08-181-30/+35
* Don't translate "-" to outs() manually; raw_ostream does that automatically.Dan Gohman2010-08-181-31/+23
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-15/+18
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-18/+15
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-15/+18
* Convert some tab stops into spaces.Duncan Sands2010-07-121-1/+1
* Don't special-case stdout in llvm::WriteBitcodeToFile; just considerDan Gohman2010-05-271-2/+6
* Don't create an output stream when output is disabled.Dan Gohman2010-05-271-19/+21
* Avoid calling outs() and fouts() when the stream isn't really needed.Dan Gohman2010-05-271-3/+7
* Use regular PassManager instead of FunctionPassManager in opt, since itDan Gohman2010-05-141-12/+8
* introduce a new CallGraphSCC class, and pass it aroundChris Lattner2010-04-161-5/+4
* Trim #includes.Dan Gohman2010-03-241-1/+0
* Avoid leaking the FunctionPassManager from opt.Jeffrey Yasskin2010-03-221-2/+2
* Avoid a dangling pointer dereference, PassManager::add can delete the Pass.Benjamin Kramer2010-02-181-1/+2
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-271-2/+1
* elimiante the dynamic_cast's from opt.Chris Lattner2010-01-221-5/+12
* simplify code.Chris Lattner2010-01-221-9/+4
* Make opt -O3 act more like clang -O3 etc., by making the inlining thresholdsEli Friedman2010-01-181-1/+11
* Don't create a (empty) output file, and don't warn about bitcode outputDan Gohman2010-01-171-13/+18
* Enable debug buffering.David Greene2010-01-051-0/+4
* when opt crashes, print its command line arguments as a pretty stack trace.Chris Lattner2009-12-091-2/+5
* Make opt default to not adding a target data string and update tests that dep...Kenneth Uildriks2009-11-031-5/+1
* nothing opt uses can throw, remove the try block and -fexceptions whenChris Lattner2009-10-221-161/+150
* Add some command line options for twiddling the default data layoutChris Lattner2009-10-221-2/+20
* There seems to be no reason for opt's -S option to be hidden.Duncan Sands2009-10-141-2/+1
* Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn'tDan Gohman2009-09-111-4/+4
* opt: Add -S option to print output as LLVM assembly.Daniel Dunbar2009-09-051-5/+14
* Use IRReader.h in opt, to support reading of LLVM Assembly files directly.Dan Gohman2009-09-031-11/+4
* Fix some nasty callgraph dangling pointer problems in Chris Lattner2009-08-311-1/+1
* Make LLVM command-line tools overwrite their output files without -f.Dan Gohman2009-08-251-5/+2
* These flushes were only needed when the code was transitioning betweenDan Gohman2009-08-241-10/+0
* eliminate the ostream version of CheckBitcodeOutputToConsole,Chris Lattner2009-08-231-2/+1
* use raw_fd_ostream instead of fstream with graphwriter,Chris Lattner2009-08-231-5/+5
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-231-5/+5
* Change raw_fd_ostream to take flags as an optional bitmask Chris Lattner2009-08-231-2/+3
* Make unit-at-a-time on by default to match the behavior of llvm-gcc.Eric Christopher2009-08-211-1/+2
* Kill trailing whitespace.Eric Christopher2009-08-211-25/+25
* Fix a crash in SROA. The FunctionPass::doInitialization method was neverBob Wilson2009-07-171-0/+1