This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from eea75dd [Reassociate] Remove an unused argument. NFC. new ee262d8 NVPTX: Extract mem intrinsic expansions into utilities new de0a868 GlobalISel: translate @llvm.va_start intrinsic. new cc504e8 GlobalISel: select G_VASTART on iOS AArch64.
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/Target/GenericOpcodes.td | 7 + include/llvm/Target/TargetLowering.h | 5 + include/llvm/Target/TargetOpcodes.def | 3 + include/llvm/Transforms/Utils/LowerMemIntrinsics.h | 44 ++++ lib/CodeGen/GlobalISel/IRTranslator.cpp | 11 + lib/Target/AArch64/AArch64CallLowering.cpp | 22 +- lib/Target/AArch64/AArch64ISelLowering.cpp | 8 + lib/Target/AArch64/AArch64ISelLowering.h | 3 + lib/Target/AArch64/AArch64InstructionSelector.cpp | 36 ++++ lib/Target/AArch64/AArch64InstructionSelector.h | 8 + lib/Target/AArch64/AArch64LegalizerInfo.cpp | 2 + lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp | 224 +------------------- lib/Transforms/Utils/CMakeLists.txt | 1 + lib/Transforms/Utils/LowerMemIntrinsics.cpp | 231 +++++++++++++++++++++ .../AArch64/GlobalISel/varargs-ios-translator.ll | 16 ++ test/CodeGen/AArch64/GlobalISel/vastart.ll | 13 ++ 16 files changed, 420 insertions(+), 214 deletions(-) create mode 100644 include/llvm/Transforms/Utils/LowerMemIntrinsics.h create mode 100644 lib/Transforms/Utils/LowerMemIntrinsics.cpp create mode 100644 test/CodeGen/AArch64/GlobalISel/varargs-ios-translator.ll create mode 100644 test/CodeGen/AArch64/GlobalISel/vastart.ll