| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a bugpoint flag to disable block extraction. | David Goodwin | 2009-07-28 | 1 | -1/+5 |
* | Update CMakeLists | Daniel Dunbar | 2009-07-28 | 1 | -1/+0 |
* | Move X86 instruction parsing into X86/AsmParser. | Daniel Dunbar | 2009-07-28 | 4 | -278/+2 |
* | Make expression parsing and error/warning reporting available through the | Daniel Dunbar | 2009-07-28 | 1 | -24/+15 |
* | Provide generic MCAsmParser when constructing target specific parsers. | Daniel Dunbar | 2009-07-28 | 2 | -21/+27 |
* | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 2 | -2/+2 |
* | Switch X86 assembly parser to using the generic lexer interface. | Daniel Dunbar | 2009-07-28 | 1 | -28/+28 |
* | Expose Tokens to target specific assembly parsers. | Daniel Dunbar | 2009-07-28 | 2 | -81/+6 |
* | Switch AsmLexer::Lex to returning a reference to the current token. | Daniel Dunbar | 2009-07-28 | 3 | -9/+6 |
* | Drop some AsmLexer methods in favor of their AsmToken equivalents. | Daniel Dunbar | 2009-07-28 | 4 | -37/+34 |
* | llvm-mc: Sink token enum into AsmToken. | Daniel Dunbar | 2009-07-28 | 5 | -210/+213 |
* | Remove memory corruption bug. string.c_str() was returning a temporary that was | Nick Lewycky | 2009-07-28 | 1 | -2/+2 |
* | llvm-mc: Factor AsmToken class out of AsmLexer. | Daniel Dunbar | 2009-07-28 | 2 | -83/+108 |
* | llvm-mc: Stop uniqueing string tokens, nothing actually uses this. | Daniel Dunbar | 2009-07-28 | 2 | -20/+4 |
* | Pass true to the Internalize parameter of createStandardLTOPasses, | Dan Gohman | 2009-07-27 | 1 | -1/+1 |
* | llvm-mc: Implement .abort fully in the front end | Daniel Dunbar | 2009-07-27 | 3 | -7/+16 |
* | Move ConstantStruct back to 2.5 API. | Owen Anderson | 2009-07-27 | 1 | -1/+1 |
* | llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API. | Daniel Dunbar | 2009-07-27 | 4 | -96/+103 |
* | Fix libLTO: | Nick Lewycky | 2009-07-26 | 2 | -6/+13 |
* | Remove Value::getName{Start,End}, the last of the old Name APIs. | Daniel Dunbar | 2009-07-26 | 1 | -2/+2 |
* | Factor commonality in triple match routines into helper template for registering | Daniel Dunbar | 2009-07-26 | 1 | -3/+3 |
* | Add TargetRegistry::lookupTarget. | Daniel Dunbar | 2009-07-26 | 4 | -7/+16 |
* | Remove Value::setName(const char*, unsigned). | Daniel Dunbar | 2009-07-26 | 1 | -2/+2 |
* | One more getName -> getNameStr | Daniel Dunbar | 2009-07-25 | 1 | -3/+3 |
* | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -1/+1 |
* | Switch to getNameStr(). | Daniel Dunbar | 2009-07-24 | 1 | -1/+1 |
* | Re-committing r76828 with the JIT memory manager changes now that the build | Reid Kleckner | 2009-07-23 | 1 | -3/+0 |
* | Convert StringMap to using StringRef for its APIs. | Daniel Dunbar | 2009-07-23 | 2 | -9/+11 |
* | Reverting r76825 and r76828, since they caused clang runtime errors and some ... | Reid Kleckner | 2009-07-23 | 1 | -0/+3 |
* | Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA... | Devang Patel | 2009-07-23 | 1 | -1/+1 |
* | Make the JIT code emitter properly retry and ask for more memory when it runs | Reid Kleckner | 2009-07-23 | 1 | -3/+0 |
* | Switch some clients to Value::getName(), and other getName() user | Daniel Dunbar | 2009-07-22 | 2 | -3/+3 |
* | Added -b option to override the default bitcode output file name. | Sanjiv Gupta | 2009-07-22 | 1 | -10/+18 |
* | Introduce MetadataBase, a base class for MDString and MDNode. | Devang Patel | 2009-07-22 | 1 | -1/+6 |
* | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 2 | -2/+2 |
* | 80 col violation. | Evan Cheng | 2009-07-21 | 1 | -9/+9 |
* | Simplify / normalize some uses of Value::getName. | Daniel Dunbar | 2009-07-21 | 1 | -3/+3 |
* | Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API as | Kevin Enderby | 2009-07-20 | 2 | -7/+9 |
* | Add MCAsmLexer interface. | Daniel Dunbar | 2009-07-20 | 2 | -1/+5 |
* | Add MCAsmParser interface. | Daniel Dunbar | 2009-07-20 | 3 | -6/+15 |
* | For remote execution, must cd to the executable directory since the exe expec... | David Goodwin | 2009-07-20 | 1 | -3/+4 |
* | Add -std-{compile,link}-opts to bugpoint. | Daniel Dunbar | 2009-07-20 | 1 | -0/+40 |
* | Add plumbing for the `linker_private' linkage type. This type is meant for | Bill Wendling | 2009-07-20 | 1 | -1/+2 |
* | fix test | Chris Lattner | 2009-07-19 | 1 | -1/+2 |
* | DisambiguateGlobalSymbols should not mangle intrinsics. | Chris Lattner | 2009-07-19 | 1 | -2/+2 |
* | Require a remote command to exit with the exit status of the test program or ... | Viktor Kutuzov | 2009-07-18 | 1 | -11/+59 |
* | Switch lli back to using allocate-gvs-with-code behavior. | Daniel Dunbar | 2009-07-18 | 1 | -2/+5 |
* | Add EngineBuilder to ExecutionEngine in favor of the five optional argument E... | Reid Kleckner | 2009-07-18 | 1 | -2/+9 |
* | llvm-mc: Default -triple to LLVM_HOSTTRIPLE. | Daniel Dunbar | 2009-07-17 | 1 | -1/+1 |
* | llvm-mc: Add -triple, and start fetching the target asm printer. | Daniel Dunbar | 2009-07-17 | 3 | -3/+38 |