This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cb64cbca1c4 [GlobalISel] NFCI, Getting GlobalISel ~5% faster new 38a4af251f3 [LKH] Add a new IRCompileLayer. new 499fe95f132 [LKH] Add ObjectTransformLayer2. new 1d560c20ffb [LKH] Add a new IRTransformLayer. new 60b28ca5a7e [RuntimeDyld][MachO] Add support for MachO::ARM64_RELOC_POI [...] new 5f477b2b135 [GlobalISel][InstructionSelect] Sorting MatchTable's 2nd le [...] new 1352bbd3ec2 [RISCV] Set CostPerUse for registers
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/ExecutionEngine/Orc/IRCompileLayer.h | 26 ++++++++- .../llvm/ExecutionEngine/Orc/IRTransformLayer.h | 20 ++++++- .../ExecutionEngine/Orc/ObjectTransformLayer.h | 19 ++++++- lib/ExecutionEngine/Orc/CMakeLists.txt | 3 + lib/ExecutionEngine/Orc/IRCompileLayer.cpp | 44 +++++++++++++++ lib/ExecutionEngine/Orc/IRTransformLayer.cpp | 34 ++++++++++++ lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp | 34 ++++++++++++ .../Orc/RTDyldObjectLinkingLayer.cpp | 2 +- .../RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h | 56 ++++++++++++++++--- lib/Target/RISCV/RISCVRegisterInfo.td | 11 ++++ test/CodeGen/RISCV/bswap-ctlz-cttz-ctpop.ll | 64 +++++++++++----------- test/CodeGen/RISCV/calling-conv.ll | 24 ++++---- test/CodeGen/RISCV/double-mem.ll | 8 +-- test/CodeGen/RISCV/remat.ll | 18 +++--- .../RuntimeDyld/AArch64/MachO_ARM64_relocations.s | 12 +++- utils/TableGen/GlobalISelEmitter.cpp | 32 +++++++++++ 16 files changed, 337 insertions(+), 70 deletions(-) create mode 100644 lib/ExecutionEngine/Orc/IRCompileLayer.cpp create mode 100644 lib/ExecutionEngine/Orc/IRTransformLayer.cpp create mode 100644 lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp