Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | unittests/MultiJITTest.cpp: Tweak how to check symbol value for Win32 ↵ | NAKAMURA Takumi | 2011-11-09 | 1 | -2/+15 |
| | | | | | | | | | --enable-shared. getPointerToNamedFunction might be indirect jump on Win32 --enable-shared. FF 25 <disp32>: jmp *(pointer to IAT) llvm-svn: 144178 | ||||
* | Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang ↵ | Chris Lattner | 2011-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | does. Enhance the X86 asmparser to produce ranges in the one case that was annoying me, for example: test.s:10:15: error: invalid operand for instruction movl 0(%rax), 0(%edx) ^~~~~~~ It should be straight-forward to enhance filecheck, tblgen, and/or the .ll parser to use ranges where appropriate if someone is interested. llvm-svn: 142106 | ||||
* | Exclude more arm jit failures pending PR10783. | Andrew Trick | 2011-09-03 | 1 | -0/+4 |
| | | | | llvm-svn: 139074 | ||||
* | Make it possible to create multiple JIT instances at the same time, by removing | Jeffrey Yasskin | 2010-02-11 | 1 | -0/+164 |
the global TheJIT and TheJITResolver variables. Lazy compilation is supported by a global map from a stub address to the JITResolver that knows how to compile it. Patch by Olivier Meurant! llvm-svn: 95837 |