| Commit message (Expand) | Author | Age | Files | Lines |
* | Enable debug buffering. | David Greene | 2010-01-05 | 1 | -0/+5 |
* | Add a CodeGenOpt::Less level to match -O1. It'll be used by clients which do ... | Evan Cheng | 2009-10-16 | 1 | -1/+1 |
* | Now that llc can read .ll files directly, teach it to recognize .ll as | Dan Gohman | 2009-09-16 | 1 | -1/+3 |
* | Tweak comment. | Daniel Dunbar | 2009-09-03 | 1 | -1/+1 |
* | Unbreak my CMake build. Say you'll link again. | Douglas Gregor | 2009-09-02 | 1 | -1/+1 |
* | Switch llc from ParseBitcodeFile to ParseIRFile. This lets llc | Dan Gohman | 2009-09-02 | 2 | -9/+5 |
* | Delete some unnecessary flushes. | Dan Gohman | 2009-08-25 | 1 | -2/+0 |
* | Make LLVM command-line tools overwrite their output files without -f. | Dan Gohman | 2009-08-25 | 1 | -7/+2 |
* | Change raw_fd_ostream to take flags as an optional bitmask | Chris Lattner | 2009-08-23 | 1 | -4/+9 |
* | No really, it's unused. | Daniel Dunbar | 2009-08-04 | 1 | -2/+1 |
* | Provide target data from the module if the target machine doesn't have any. | Daniel Dunbar | 2009-08-03 | 1 | -2/+13 |
* | Remove now unused arguments from TargetRegistry::lookupTarget. | Daniel Dunbar | 2009-08-03 | 1 | -4/+1 |
* | Pass target triple string in to TargetMachine constructor. | Daniel Dunbar | 2009-08-03 | 1 | -19/+33 |
* | Add TargetRegistry::lookupTarget. | Daniel Dunbar | 2009-07-26 | 1 | -1/+4 |
* | Switch llc and createJIT to use simpler command line parsing for -march. | Daniel Dunbar | 2009-07-16 | 1 | -8/+17 |
* | Make sure targets are initialized before we do anything, even command line | Daniel Dunbar | 2009-07-16 | 1 | -1/+3 |
* | To simplify the upcoming context-on-type change, switch all command line tool... | Owen Anderson | 2009-07-15 | 1 | -1/+1 |
* | Reapply TargetRegistry refactoring commits. | Daniel Dunbar | 2009-07-15 | 1 | -9/+14 |
* | Add a Force option to raw_fd_ostream to specify whether opening | Dan Gohman | 2009-07-15 | 1 | -26/+13 |
* | Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repai... | Stuart Hastings | 2009-07-15 | 1 | -14/+9 |
* | Use errs() instead of std::cerr. | Dan Gohman | 2009-07-15 | 1 | -20/+20 |
* | Migrate llc and the JIT to using the TargetRegistry for lookups. | Daniel Dunbar | 2009-07-15 | 1 | -9/+14 |
* | Have asm printers use formatted_raw_ostream directly to avoid a | David Greene | 2009-07-14 | 1 | -11/+19 |
* | Add the Object Code Emitter class. Original patch by Aaron Gray, I did some | Bruno Cardoso Lopes | 2009-07-06 | 1 | -4/+5 |
* | Hold the LLVMContext by reference rather than by pointer. | Owen Anderson | 2009-07-01 | 1 | -1/+1 |
* | Add a pointer to the owning LLVMContext to Module. This requires threading L... | Owen Anderson | 2009-07-01 | 1 | -1/+3 |
* | switch to using llvm/Target/TargetSelect.h | Chris Lattner | 2009-06-17 | 1 | -2/+4 |
* | Introduce new headers whose inclusion forces linking and | Douglas Gregor | 2009-06-16 | 1 | -0/+2 |
* | Add new function attribute - noimplicitfloat | Devang Patel | 2009-06-05 | 1 | -0/+7 |
* | Add new function attribute - noredzone. | Devang Patel | 2009-06-04 | 1 | -1/+9 |
* | Default llc / lli optimization to "Default", which corresponds to -O1 / -O2. | Evan Cheng | 2009-05-04 | 1 | -4/+4 |
* | Remove unused flags. | Bill Wendling | 2009-04-30 | 1 | -4/+3 |
* | Error out with bad optimization level specified. | Bill Wendling | 2009-04-29 | 1 | -1/+3 |
* | Remove LTO optimization level. | Bill Wendling | 2009-04-29 | 1 | -1/+0 |
* | Instead of passing in an unsigned value for the optimization level, use an enum, | Bill Wendling | 2009-04-29 | 1 | -6/+19 |
* | Second attempt: | Bill Wendling | 2009-04-29 | 1 | -5/+10 |
* | r70270 isn't ready yet. Back this out. Sorry for the noise. | Bill Wendling | 2009-04-28 | 1 | -10/+5 |
* | Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to | Bill Wendling | 2009-04-28 | 1 | -5/+10 |
* | CodeGen still defaults to non-verbose asm, but llc now overrides it and defau... | Evan Cheng | 2009-03-25 | 1 | -0/+3 |
* | Change various llvm utilities to use PrettyStackTraceProgram in | Chris Lattner | 2009-03-06 | 1 | -2/+4 |
* | Registry.h should not depend on CommandLine.h. | Mikhail Glushenkov | 2009-01-16 | 1 | -2/+3 |
* | Delete trailing whitespace. | Mikhail Glushenkov | 2009-01-16 | 1 | -21/+21 |
* | Fix spacing to be uniform for parameters. | Misha Brukman | 2008-12-31 | 1 | -2/+2 |
* | Add Binary flag to raw_fd_ostream constructor. | Daniel Dunbar | 2008-11-13 | 1 | -2/+5 |
* | CMakeLists: removed asmprinter component from | Oscar Fuentes | 2008-11-04 | 1 | -1/+1 |
* | Fix command-line option printing to print two spaces where needed, | Dan Gohman | 2008-10-14 | 1 | -3/+3 |
* | Initial support for the CMake build system. | Oscar Fuentes | 2008-09-22 | 1 | -0/+5 |
* | Don't silently ignore errors when opening output streams. | Dan Gohman | 2008-08-21 | 1 | -2/+9 |
* | Use raw_ostream throughout the AsmPrinter. | Owen Anderson | 2008-08-21 | 1 | -12/+15 |
* | Link GC metadata printers by default to llc | Anton Korobeynikov | 2008-08-17 | 1 | -0/+1 |