This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ab0a33b6a77 Rename skipDebugInfo -> skipDebugIntrinsics, NFC new 9e1483fe741 [X86][AsmParser] Recommit r335658 new 784d2a84999 AMDGPU: Silence unused warnings in waitcnt insertion pass i [...] new 9f1c2395ce1 [ORC] Add LLJIT and LLLazyJIT, and replace OrcLazyJIT in LL [...]
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/ExecutionEngine/Orc/Core.h | 21 +- include/llvm/ExecutionEngine/Orc/ExecutionUtils.h | 115 ++++++++-- include/llvm/ExecutionEngine/Orc/LLJIT.h | 153 +++++++++++++ lib/ExecutionEngine/Orc/CMakeLists.txt | 1 + lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp | 56 ++++- lib/ExecutionEngine/Orc/Core.cpp | 35 ++- lib/ExecutionEngine/Orc/ExecutionUtils.cpp | 150 ++++++++++++- lib/ExecutionEngine/Orc/IndirectionUtils.cpp | 2 - lib/ExecutionEngine/Orc/LLJIT.cpp | 171 +++++++++++++++ lib/ExecutionEngine/Orc/Layer.cpp | 6 +- lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 6 +- lib/Target/X86/AsmParser/X86AsmParser.cpp | 8 + test/CodeGen/X86/eip-addressing-i386.ll | 13 ++ test/ExecutionEngine/OrcLazy/hello.ll | 2 +- tools/lli/CMakeLists.txt | 1 - tools/lli/OrcLazyJIT.cpp | 155 ------------- tools/lli/OrcLazyJIT.h | 252 ---------------------- tools/lli/lli.cpp | 143 +++++++++++- 18 files changed, 835 insertions(+), 455 deletions(-) create mode 100644 include/llvm/ExecutionEngine/Orc/LLJIT.h create mode 100644 lib/ExecutionEngine/Orc/LLJIT.cpp create mode 100644 test/CodeGen/X86/eip-addressing-i386.ll delete mode 100644 tools/lli/OrcLazyJIT.cpp delete mode 100644 tools/lli/OrcLazyJIT.h