This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5088aa8e411 Remove LoopID metadata from the branch instruction that fol [...] new d813c35f4cf [ORC] Add ThreadSafeModule and ThreadSafeContext wrappers t [...]
The 1 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: .../ExecutionEngine/Orc/CompileOnDemandLayer.h | 12 +- include/llvm/ExecutionEngine/Orc/IRCompileLayer.h | 4 +- .../llvm/ExecutionEngine/Orc/IRTransformLayer.h | 9 +- include/llvm/ExecutionEngine/Orc/LLJIT.h | 15 +-- include/llvm/ExecutionEngine/Orc/Layer.h | 33 ++++-- .../llvm/ExecutionEngine/Orc/ThreadSafeModule.h | 124 +++++++++++++++++++++ lib/ExecutionEngine/Orc/CMakeLists.txt | 1 + lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp | 121 ++++++++------------ lib/ExecutionEngine/Orc/IRCompileLayer.cpp | 10 +- lib/ExecutionEngine/Orc/IRTransformLayer.cpp | 10 +- lib/ExecutionEngine/Orc/LLJIT.cpp | 32 +++--- lib/ExecutionEngine/Orc/Layer.cpp | 31 ++++-- lib/ExecutionEngine/Orc/ThreadSafeModule.cpp | 65 +++++++++++ tools/lli/lli.cpp | 53 ++++----- .../Orc/RTDyldObjectLinkingLayer2Test.cpp | 25 +++-- 15 files changed, 364 insertions(+), 181 deletions(-) create mode 100644 include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h create mode 100644 lib/ExecutionEngine/Orc/ThreadSafeModule.cpp