Get rid of static constructors for pass registration. Instead, every pass exposes...
[oota-llvm.git] / tools / opt / opt.cpp
2010-10-19 Owen AndersonGet rid of static constructors for pass registration...
2010-10-07 Dan GohmanMove tool_output_file into its own file.
2010-09-08 Tobias GrosserExecute all Pass Printers even if -quiet is set.
2010-09-08 Tobias GrosserInclude original pass name in the PassPrinter's name.
2010-09-01 Dan GohmanMake tool_output_file's raw_ostream instance a member...
2010-08-20 Dan GohmanUse the new tool_output_file in several tools. This...
2010-08-18 Dan GohmanAllow the -analyze option to follow the -o option,...
2010-08-18 Dan GohmanDon't translate "-" to outs() manually; raw_ostream...
2010-08-06 Owen AndersonReapply r110396, with fixes to appease the Linux buildb...
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-07-12 Duncan SandsConvert some tab stops into spaces.
2010-05-27 Dan GohmanDon't special-case stdout in llvm::WriteBitcodeToFile...
2010-05-27 Dan GohmanDon't create an output stream when output is disabled.
2010-05-27 Dan GohmanAvoid calling outs() and fouts() when the stream isn...
2010-05-14 Dan GohmanUse regular PassManager instead of FunctionPassManager...
2010-04-16 Chris Lattnerintroduce a new CallGraphSCC class, and pass it around
2010-03-24 Dan GohmanTrim #includes.
2010-03-22 Jeffrey YasskinAvoid leaking the FunctionPassManager from opt.
2010-02-18 Benjamin KramerAvoid a dangling pointer dereference, PassManager:...
2010-01-27 Jeffrey YasskinKill ModuleProvider and ghost linkage by inverting...
2010-01-22 Chris Lattnerelimiante the dynamic_cast's from opt.
2010-01-22 Chris Lattnersimplify code.
2010-01-18 Eli FriedmanMake opt -O3 act more like clang -O3 etc., by making...
2010-01-17 Dan GohmanDon't create a (empty) output file, and don't warn...
2010-01-05 David GreeneEnable debug buffering.
2009-12-09 Chris Lattnerwhen opt crashes, print its command line arguments...
2009-11-03 Kenneth UildriksMake opt default to not adding a target data string...
2009-10-22 Chris Lattnernothing opt uses can throw, remove the try block and...
2009-10-22 Chris LattnerAdd some command line options for twiddling the default...
2009-10-14 Duncan SandsThere seems to be no reason for opt's -S option to...
2009-09-11 Dan GohmanFix llvm-extract's "writing bitcode to a terminal"...
2009-09-05 Daniel Dunbaropt: Add -S option to print output as LLVM assembly.
2009-09-03 Dan GohmanUse IRReader.h in opt, to support reading of LLVM Assem...
2009-08-31 Chris LattnerFix some nasty callgraph dangling pointer problems in
2009-08-25 Dan GohmanMake LLVM command-line tools overwrite their output...
2009-08-24 Dan GohmanThese flushes were only needed when the code was transi...
2009-08-23 Chris Lattnereliminate the ostream version of CheckBitcodeOutputToCo...
2009-08-23 Chris Lattneruse raw_fd_ostream instead of fstream with graphwriter,
2009-08-23 Chris LattnerChange Pass::print to take a raw ostream instead of...
2009-08-23 Chris LattnerChange raw_fd_ostream to take flags as an optional...
2009-08-21 Eric ChristopherMake unit-at-a-time on by default to match the behavior...
2009-08-21 Eric ChristopherKill trailing whitespace.
2009-07-17 Bob WilsonFix a crash in SROA. The FunctionPass::doInitializatio...
2009-07-17 Daniel Dunbaropt: Add -std-link-opts argument, matches llvm-ld's...
2009-07-16 Dan GohmanConvert more tools code from cerr and cout to errs...
2009-07-15 Owen AndersonTo simplify the upcoming context-on-type change, switch...
2009-07-15 Dan GohmanAdd a Force option to raw_fd_ostream to specify whether...
2009-07-01 Owen AndersonHold the LLVMContext by reference rather than by pointer.
2009-07-01 Owen AndersonAdd a pointer to the owning LLVMContext to Module....
2009-06-03 Daniel DunbarSwitch opt to using StandardPasses.h
2009-02-18 Dan GohmanEliminate several more unnecessary intptr_t casts.
2008-12-31 Duncan SandsRename AddReadAttrs to FunctionAttrs, and teach it how
2008-12-04 Devang PatelEnable LoopIndexSplit pass.
2008-11-26 Devang PatelDisable -loop-index-split for now.
2008-11-26 Zhongxing XuAdjust indent.
2008-11-04 Nuno Lopesfix memory leak in pass manager when adding an analysis...
2008-10-22 Daniel DunbarMove Print*Pass to use raw_ostream.
2008-10-21 Daniel DunbarPrivatize PrintModulePass and PrintFunctionPass and add
2008-09-19 Duncan SandsTurn on the AddReadAttrs pass.
2008-09-17 Devang PatelFix comments, help messages.
2008-09-17 Devang PatelFix cut-n-pasto.
2008-09-16 Devang PatelAdd -O1, -O2 and -O3 that matches llvm-gcc's -O1, ...
2008-09-15 Duncan SandsEnd of the GlobalsModRef experiment.
2008-09-12 Duncan SandsGive GlobalsModRef a whirl in the nightly testers.
2008-08-27 Devang PatelBackout 55429
2008-08-27 Devang PatelAdd facility to create a target.
2008-07-14 Evan ChengGoodbye tail duplication (for good this time).
2008-07-13 Duncan SandsFix comment.
2008-07-13 Chris LattnerFix PR2231 - opt -internalize -std-compile-opts should...
2008-05-29 Owen AndersonRe-enable the newly simplified ADCE. This fixes a...
2008-05-27 Owen AndersonRemove ADCE from the optimization pipeline.
2008-05-16 Evan ChengRe-enable tail duplication pass (now with default thres...
2008-05-15 Evan ChengRemove tail duplication pass.
2008-05-14 Devang PatelRecover nestedloop regression reported by nightly tester.
2008-05-14 Devang PatelDo not run instruction combiner in middle of loop optim...
2008-05-10 Owen AndersonRe-enable loop deletion by default.
2008-05-06 Owen AndersonDisable loop deletion until the release branch.
2008-05-05 Owen AndersonEnable dead loop elimination.
2008-05-02 Chris Lattnermove libcalls to the same place llvm-gcc has it.
2008-04-21 Chris Lattnerenable jump threading pass by default. This causes...
2008-04-17 Duncan SandsRun SimplifyLibCalls near the beginning, not at
2008-04-10 Evan ChengMove memcpy / memset optimization pass after GVN.
2008-04-09 Owen AndersonFactor a bunch of functionality related to memcpy and...
2007-12-29 Chris Lattnerremove attributions from tools.
2007-10-08 Dan GohmanMove the space in overview output for commands out...
2007-09-08 Owen AndersonTurn GVN on by default.
2007-09-04 Devang PatelEnable loop index split pass.
2007-08-01 Owen AndersonRename FastDSE to just DSE.
2007-07-30 Dan GohmanRemove a FIXME comment that wasn't removed when the...
2007-07-17 Owen AndersonTurn on FastDSE by default.
2007-07-17 Evan ChengChange sroa threshold back.
2007-07-17 Evan ChengTemporarily set SROA threshold to 512.
2007-07-05 Gabor GreifHere is the bulk of the sanitizing.
2007-07-05 Devang PatelFix PR1539. Add LoopPassPrinter.
2007-06-28 Devang PatelFix PR 1526.
2007-05-06 Chris Lattneruse the new MemoryBuffer interfaces to simplify error...
2007-05-06 Chris Lattnermake sure the ofstream for opt's output file is destroy...
2007-05-06 Chris Lattnerswitch tools to bitcode from bytecode
2007-05-06 Chris Lattneradd support to llvm-prof for reading from a bitcode...
next