summaryrefslogtreecommitdiff
path: root/tools/opt
AgeCommit message (Expand)AuthorFilesLines
2013-01-28Extracted ObjCARC.cpp into its own library libLLVMObjCARCOpts in preparation ...Michael Gottesman4-3/+4
2013-01-19Sort all of the includes. Several files got checked in with mis-sortedChandler Carruth1-1/+1
2013-01-11Added -view-callgraph module pass.Andrew Trick1-72/+1
2013-01-10Fix #includes after my last commit.Jakub Staszak1-1/+1
2013-01-07Move CallGraphSCCPass.h into the Analysis tree; that's where theChandler Carruth1-1/+1
2013-01-07Switch TargetTransformInfo from an immutable analysis pass that requiresChandler Carruth1-5/+3
2013-01-05Convert the TargetTransformInfo from an immutable pass with dynamicChandler Carruth1-2/+2
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth4-6/+6
2013-01-02Sort a few more #include lines in tools/... unittests/... and utils/...Chandler Carruth1-1/+1
2013-01-01Make opt grab the triple from the module and use it to initialize the target ...Nadav Rotem1-8/+8
2012-12-11llvm/tools: Add #include "llvm/TargetTransformInfo.h"NAKAMURA Takumi1-0/+1
2012-12-04Sort the #include lines for tools/...Chandler Carruth4-26/+26
2012-11-29One more step towards making doInitialization and doFinalization useful forPedro Artigas1-2/+0
2012-11-27Revert r168635 "Step towards implementation of pass manager with doInitializa...Owen Anderson1-0/+2
2012-11-26Step towards implementation of pass manager with doInitialization and doFinal...Owen Anderson1-2/+0
2012-11-15Add doInitialization and doFinalization methods to ModulePass's, to allow the...Owen Anderson1-0/+2
2012-10-24Opt does not need to initialize the Asm printer/parserNadav Rotem1-2/+0
2012-10-24Opt needs to initialize the different targets.Nadav Rotem1-0/+6
2012-10-18Reapply the TargerTransformInfo changes, minus the changes to LSR and Lowerin...Nadav Rotem4-3/+81
2012-10-18Temporarily revert the TargetTransform changes.Bob Wilson4-81/+3
2012-10-10Add a new interface to allow IR-level passes to access codegen-specific infor...Nadav Rotem4-3/+81
2012-10-08Move TargetData to DataLayout.Micah Villmow1-6/+6
2012-09-01Code cleanup: tools/opt/opt.cppLogan Chien1-4/+0
2012-06-28Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp andBill Wendling1-1/+1
2012-05-16Teach the 'opt' tool about '-Os' and '-Oz', corresponding to the ClangChandler Carruth1-12/+41
2012-04-17allow opt to take a -mtriple optionJoe Groff1-0/+7
2012-02-01Add a basic-block autovectorization pass.Hal Finkel3-2/+3
2011-12-12LLVMBuild: Remove trailing newline, which irked me.Daniel Dunbar1-1/+0
2011-12-07When doing "opt -O2" verify the bitcode like is done forDuncan Sands1-0/+2
2011-11-15Remove all remaining uses of Value::getNameStr().Benjamin Kramer2-4/+4
2011-11-11LLVMBuild: Add description files for the LLVM tools.Daniel Dunbar1-0/+23
2011-10-18build: Tidy up a bunch of tool Makefiles, and simplify where possible using theDaniel Dunbar1-2/+2
2011-10-16Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does...Chris Lattner1-1/+1
2011-08-03Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets.Bill Wendling1-2/+0
2011-08-02move PassManagerBuilder.h to IPO. This is a non intuitive place to put it,Rafael Espindola1-1/+1
2011-06-06We only do always-inlining at -O1; make opt reflect that.Eli Friedman1-1/+1
2011-05-22initialize and finalize function passes, pointed out by Cameron.Chris Lattner1-1/+4
2011-05-22switch opt to using PassManagerBuilder.hChris Lattner1-34/+31
2011-04-05remove graphprinter support for domfrontier.Chris Lattner1-3/+1
2011-04-05Added *hidden* flags -print-options and -print-all-options soAndrew Trick1-0/+3
2011-04-05whitespaceAndrew Trick1-8/+8
2011-04-04Update BreakpointPrinter to emit original function names only. Devang Patel1-15/+31
2011-02-18add a way to disable all builtins, wire it up to opt's -disable-simplifylibca...Chris Lattner1-2/+6
2011-02-18Have opt set up a specific TargetLibraryInfo for modulesChris Lattner1-2/+8
2011-02-18Make -disable-simplify-libcalls work with -std-compile-optsPeter Collingbourne1-1/+1
2011-01-31While printing "interesting" breakpoint locations for debug info quality test...Devang Patel1-27/+12
2011-01-20RegionPassPrinter should contain the name of the pass printedTobias Grosser1-2/+2
2011-01-02split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner1-7/+4
2010-12-09Print breakpoints for call instructions. This is used by optimized debug info...Devang Patel1-0/+13
2010-12-07Add a simple breakpoint location printer. This will be used by upcoming "debu...Devang Patel1-1/+59