This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b274272 [X86] Add baseline test for "odd" shuffles. NFC. new 411fc07 [GlobalISel] Teach the core pipeline not to run if ISel failed. new 1dba46c [AArch64][CallLowering] Do not assert for not implemented part. new c47e5db [GlobalISel] Add a fallback path to SDISel. new fd6bad6 [ORC] Fix typo in LogicalDylib, add unit test. new 4ec9567 [CMake] Only generate Components.cmake if components are specified new d97fe48 AMDGPU: Improve error reporting for maximum branch distance
The 6 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/CodeGen/Passes.h | 2 + include/llvm/ExecutionEngine/Orc/LogicalDylib.h | 2 +- include/llvm/InitializePasses.h | 1 + lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/GlobalISel/InstructionSelect.cpp | 5 ++ lib/CodeGen/GlobalISel/MachineLegalizePass.cpp | 4 + lib/CodeGen/GlobalISel/RegBankSelect.cpp | 5 ++ lib/CodeGen/LLVMTargetMachine.cpp | 9 +++ lib/CodeGen/ResetMachineFunctionPass.cpp | 53 +++++++++++++ lib/Target/AArch64/AArch64CallLowering.cpp | 15 ++-- .../AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp | 91 +++++++++++++++------- runtimes/CMakeLists.txt | 38 ++++----- test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll | 19 +++++ test/MC/AMDGPU/max-branch-distance.s | 7 ++ unittests/ExecutionEngine/Orc/CMakeLists.txt | 1 + unittests/ExecutionEngine/Orc/LogicalDylibTest.cpp | 76 ++++++++++++++++++ 16 files changed, 274 insertions(+), 55 deletions(-) create mode 100644 lib/CodeGen/ResetMachineFunctionPass.cpp create mode 100644 test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll create mode 100644 test/MC/AMDGPU/max-branch-distance.s create mode 100644 unittests/ExecutionEngine/Orc/LogicalDylibTest.cpp