This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 29ed9fd6936 [DEBUG] Fix debug info test for NVPTX, NFC. new 6f2842fb8bb [ORC] Add dereference operator to SymbolStringPtr. new 7767d20a224 [ORC] Actually compare pointer values as advertised (rather [...] new de9aafe93f6 [ORC] Add new core ORC APIs (Core.h/Core.cpp): VSO, Asynchr [...]
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/JITSymbol.h | 13 +- include/llvm/ExecutionEngine/Orc/Core.h | 234 +++++++++++++++ include/llvm/ExecutionEngine/Orc/OrcError.h | 15 +- .../llvm/ExecutionEngine/Orc/SymbolStringPool.h | 4 +- lib/ExecutionEngine/Orc/CMakeLists.txt | 1 + lib/ExecutionEngine/Orc/Core.cpp | 322 +++++++++++++++++++++ lib/ExecutionEngine/Orc/OrcError.cpp | 23 +- unittests/ExecutionEngine/Orc/CMakeLists.txt | 1 + unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp | 226 +++++++++++++++ .../ExecutionEngine/Orc/SymbolStringPoolTest.cpp | 6 + 10 files changed, 840 insertions(+), 5 deletions(-) create mode 100644 include/llvm/ExecutionEngine/Orc/Core.h create mode 100644 lib/ExecutionEngine/Orc/Core.cpp create mode 100644 unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp