Age | Commit message (Expand) | Author | Files | Lines |
2011-02-18 | add a way to disable all builtins, wire it up to opt's -disable-simplifylibca... | Chris Lattner | 1 | -2/+6 |
2011-02-18 | Have opt set up a specific TargetLibraryInfo for modules | Chris Lattner | 1 | -2/+8 |
2011-02-18 | Make -disable-simplify-libcalls work with -std-compile-opts | Peter Collingbourne | 1 | -1/+1 |
2011-01-31 | While printing "interesting" breakpoint locations for debug info quality test... | Devang Patel | 1 | -27/+12 |
2011-01-20 | RegionPassPrinter should contain the name of the pass printed | Tobias Grosser | 1 | -2/+2 |
2011-01-02 | split dom frontier handling stuff out to its own DominanceFrontier header, | Chris Lattner | 1 | -7/+4 |
2010-12-09 | Print breakpoints for call instructions. This is used by optimized debug info... | Devang Patel | 1 | -0/+13 |
2010-12-07 | Add a simple breakpoint location printer. This will be used by upcoming "debu... | Devang Patel | 1 | -1/+59 |
2010-12-02 | Move check of command line options after command line parsing. | Tobias Grosser | 1 | -5/+5 |
2010-11-29 | Merge System into Support. | Michael J. Spencer | 1 | -1/+1 |
2010-11-02 | Tweak the opt -O2 / opt -O3 inliner thresholds to be the same as llvm-gcc and | Jakob Stoklund Olesen | 1 | -2/+2 |
2010-10-20 | Add RegionPass support. | Tobias Grosser | 1 | -0/+38 |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 1 | -0/+12 |
2010-10-07 | Move tool_output_file into its own file. | Dan Gohman | 2 | -2/+2 |
2010-09-13 | Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." | Michael J. Spencer | 1 | -9/+2 |
2010-09-10 | CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. | Michael J. Spencer | 1 | -2/+9 |
2010-09-08 | Execute all Pass Printers even if -quiet is set. | Tobias Grosser | 1 | -19/+16 |
2010-09-08 | Include original pass name in the PassPrinter's name. | Tobias Grosser | 1 | -10/+36 |
2010-09-01 | Make tool_output_file's raw_ostream instance a member variable instead | Dan Gohman | 2 | -12/+17 |
2010-08-20 | Convert tools to use tool_output_file, and introduce error | Dan Gohman | 1 | -5/+11 |
2010-08-20 | Use the new tool_output_file in several tools. This fixes a variety | Dan Gohman | 1 | -12/+8 |
2010-08-20 | Make the SCC printing passes use errs() instead of outs(), as the | Dan Gohman | 1 | -10/+10 |
2010-08-20 | Minor cleanups to follow the common convention for pass | Dan Gohman | 1 | -7/+7 |
2010-08-20 | Minor cleanups to follow the common convention for pass | Dan Gohman | 2 | -14/+16 |
2010-08-18 | Allow the -analyze option to follow the -o option, which defaults to | Dan Gohman | 1 | -30/+35 |
2010-08-18 | Don't translate "-" to outs() manually; raw_ostream does that automatically. | Dan Gohman | 1 | -31/+23 |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 4 | -21/+24 |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson | 4 | -24/+21 |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 4 | -21/+24 |
2010-07-28 | simplify by using CallSite constructors; virtually eliminates CallSite::get f... | Gabor Greif | 1 | -2/+2 |
2010-07-12 | Convert some tab stops into spaces. | Duncan Sands | 1 | -1/+1 |
2010-06-09 | Change another reference to the "indirect callgraph node" to | Duncan Sands | 1 | -1/+1 |
2010-06-09 | Output "external node" rather than "Indirect CallGraph node" when printing | Duncan Sands | 1 | -1/+1 |
2010-05-27 | Don't special-case stdout in llvm::WriteBitcodeToFile; just consider | Dan Gohman | 1 | -2/+6 |
2010-05-27 | Don't create an output stream when output is disabled. | Dan Gohman | 1 | -19/+21 |
2010-05-27 | Avoid calling outs() and fouts() when the stream isn't really needed. | Dan Gohman | 1 | -3/+7 |
2010-05-14 | Use regular PassManager instead of FunctionPassManager in opt, since it | Dan Gohman | 1 | -12/+8 |
2010-04-16 | introduce a new CallGraphSCC class, and pass it around | Chris Lattner | 1 | -5/+4 |
2010-04-15 | Remove unnecessary uses of <iostream>. | Daniel Dunbar | 2 | -5/+3 |
2010-03-24 | Trim #includes. | Dan Gohman | 1 | -1/+0 |
2010-03-22 | Avoid leaking the FunctionPassManager from opt. | Jeffrey Yasskin | 1 | -2/+2 |
2010-02-18 | Avoid a dangling pointer dereference, PassManager::add can delete the Pass. | Benjamin Kramer | 1 | -1/+2 |
2010-01-27 | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin | 1 | -2/+1 |
2010-01-24 | make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. | Chris Lattner | 1 | -1/+0 |
2010-01-22 | Stop building RTTI information for *most* llvm libraries. Notable | Chris Lattner | 1 | -0/+1 |
2010-01-22 | elimiante the dynamic_cast's from opt. | Chris Lattner | 1 | -5/+12 |
2010-01-22 | simplify code. | Chris Lattner | 1 | -9/+4 |
2010-01-18 | Make opt -O3 act more like clang -O3 etc., by making the inlining thresholds | Eli Friedman | 1 | -1/+11 |
2010-01-17 | Don't create a (empty) output file, and don't warn about bitcode output | Dan Gohman | 1 | -13/+18 |
2010-01-05 | Enable debug buffering. | David Greene | 1 | -0/+4 |