| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix includes of llvm files that used angle brackets. | Craig Topper | 2012-09-15 | 2 | -7/+7 |
* | Don't include stdint.h directly. | Eli Friedman | 2012-09-06 | 1 | -1/+1 |
* | Don't include stdint.h directly. | Eli Friedman | 2012-09-06 | 1 | -1/+1 |
* | Update CMakeList.txt for new lli sources. | Jim Grosbach | 2012-09-05 | 1 | -0/+2 |
* | MCJIT: Add faux remote target execution to lli for the MCJIT. | Jim Grosbach | 2012-09-05 | 5 | -29/+498 |
* | LLI: move instruction cache tweaks. | Jim Grosbach | 2012-08-28 | 1 | -4/+4 |
* | Plug a leak when using MCJIT. | Benjamin Kramer | 2012-05-20 | 1 | -2/+3 |
* | Remove extra semicolons. | Benjamin Kramer | 2012-05-19 | 1 | -15/+15 |
* | Added LLIMCJITMemoryManager to the lli. This manager will be used for MCJIT i... | Danil Malyshev | 2012-05-16 | 1 | -0/+204 |
* | Remove redundant line (the memory manager is set above to the same object | Eli Bendersky | 2012-04-29 | 1 | -1/+0 |
* | Move the JIT flags from llc to lli. These flags showed up as part of moving | Nick Lewycky | 2012-04-18 | 1 | -0/+28 |
* | Add profiling support for Intel Parallel Amplifier XE (VTune) for JITted code... | Eli Bendersky | 2012-03-13 | 3 | -2/+39 |
* | Adding a basic ELF dynamic loader and MC-JIT for ELF. Functionality is curren... | Eli Bendersky | 2012-01-16 | 1 | -12/+14 |
* | 80 columns. | Jim Grosbach | 2012-01-11 | 1 | -1/+2 |
* | lli should only create memmgr when JITing. | Jim Grosbach | 2012-01-11 | 1 | -3/+1 |
* | lli should create a JIT memory manager. | Jim Grosbach | 2012-01-11 | 1 | -0/+4 |
* | LLVMBuild: Remove trailing newline, which irked me. | Daniel Dunbar | 2011-12-12 | 1 | -1/+0 |
* | LLVMBuild: Add description files for the LLVM tools. | Daniel Dunbar | 2011-11-11 | 1 | -0/+23 |
* | build: Tidy up a bunch of tool Makefiles, and simplify where possible using the | Daniel Dunbar | 2011-10-18 | 1 | -2/+1 |
* | Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does... | Chris Lattner | 2011-10-16 | 1 | -1/+1 |
* | Move TargetRegistry and TargetSelect from Target to Support where they belong. | Evan Cheng | 2011-08-24 | 1 | -1/+1 |
* | - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. | Evan Cheng | 2011-07-20 | 1 | -0/+18 |
* | Introduce MCCodeGenInfo, which keeps information that can affect codegen | Evan Cheng | 2011-07-19 | 1 | -0/+16 |
* | Updated library dependencies. | Oscar Fuentes | 2011-03-22 | 1 | -1/+1 |
* | Update link components. | Jim Grosbach | 2011-03-22 | 1 | -1/+1 |
* | Beginnings of MC-JIT code generation. | Jim Grosbach | 2011-03-18 | 1 | -0/+1 |
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 1 | -2/+2 |
* | Make MCJIT work with CMake. | Wesley Peck | 2010-11-17 | 1 | -1/+1 |
* | MCJIT: Stub out MCJIT implementation, still doesn't do anything useful. | Daniel Dunbar | 2010-11-17 | 2 | -1/+2 |
* | lli: Add stub -use-mcjit option, which doesn't currently do anything. | Daniel Dunbar | 2010-11-17 | 1 | -0/+8 |
* | Update CMake. | Daniel Dunbar | 2010-11-13 | 1 | -1/+1 |
* | lli: Switch to using ParseIRFile, for consistency with other LLVM tools. | Daniel Dunbar | 2010-11-13 | 2 | -11/+7 |
* | lli: On Cygwin-1.5, lli crashes at invoking destructors in atexit handler. | NAKAMURA Takumi | 2010-10-22 | 1 | -0/+11 |
* | Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." | Michael J. Spencer | 2010-09-13 | 1 | -3/+2 |
* | CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. | Michael J. Spencer | 2010-09-10 | 1 | -2/+3 |
* | Straighten out any triple strings passed on the command line before | Duncan Sands | 2010-08-28 | 1 | -1/+2 |
* | Simplify ".bc" detection. | Benjamin Kramer | 2010-04-15 | 1 | -2/+1 |
* | fix a crash on "lli ex" or any other file whose name is exactly two | Chris Lattner | 2010-04-15 | 1 | -1/+2 |
* | Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp. | Jeffrey Yasskin | 2010-02-05 | 1 | -0/+19 |
* | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin | 2010-01-27 | 1 | -13/+12 |
* | make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. | Chris Lattner | 2010-01-24 | 1 | -1/+0 |
* | Stop building RTTI information for *most* llvm libraries. Notable | Chris Lattner | 2010-01-22 | 1 | -0/+1 |
* | Revert the API changes from r85295 to make it easier for people to build | Jeffrey Yasskin | 2009-10-27 | 1 | -1/+1 |
* | Change the JIT to compile eagerly by default as agreed in | Jeffrey Yasskin | 2009-10-27 | 1 | -2/+1 |
* | Delete the MacOSJITEventListener per echristo's request. It was disabled by | Jeffrey Yasskin | 2009-10-21 | 1 | -1/+0 |
* | Add a CodeGenOpt::Less level to match -O1. It'll be used by clients which do ... | Evan Cheng | 2009-10-16 | 1 | -1/+1 |
* | Prune #includes from llvm/Linker.h and llvm/System/Path.h, | Chris Lattner | 2009-08-23 | 1 | -0/+1 |
* | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -2/+3 |
* | lli doesn't need <iostream> anymore. | Dan Gohman | 2009-08-05 | 1 | -1/+0 |
* | Re-committing r76828 with the JIT memory manager changes now that the build | Reid Kleckner | 2009-07-23 | 1 | -3/+0 |