This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 560cc6786c3 [X86] Add tests for an alternative sequence for _mm_storel_ [...] new c01b0992248 [X86] Regenerate tests. NFCI. new 1193b207a65 [ORC] Add custom IR compiler configuration to LLJITBuilder [...]
The 2 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: examples/CMakeLists.txt | 1 + examples/HowToUseLLJIT/HowToUseLLJIT.cpp | 8 + examples/LLJITExamples/CMakeLists.txt | 1 + examples/LLJITExamples/ExampleModules.h | 54 +++++++ .../LLJITWithObjectCache}/CMakeLists.txt | 5 +- .../LLJITWithObjectCache/LLJITWithObjectCache.cpp | 95 +++++++++++ include/llvm/ExecutionEngine/Orc/CompileUtils.h | 19 ++- include/llvm/ExecutionEngine/Orc/LLJIT.h | 29 +++- lib/ExecutionEngine/Orc/LLJIT.cpp | 79 +++++----- test/CodeGen/X86/avx2-intrinsics-canonical.ll | 174 +++++++-------------- 10 files changed, 295 insertions(+), 170 deletions(-) create mode 100644 examples/LLJITExamples/CMakeLists.txt create mode 100644 examples/LLJITExamples/ExampleModules.h copy examples/{HowToUseLLJIT => LLJITExamples/LLJITWithObjectCache}/CMakeLists.txt (50%) create mode 100644 examples/LLJITExamples/LLJITWithObjectCache/LLJITWithObjectCache.cpp