This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e9eb75383c2 [CodeGen] Add missing comment (NFC) new 32857995e27 [Transforms] move copying of load metadata to helper function; NFC new 20c74d808ab [GlobalISel] Support for inlining memcpy, memset and memmov [...]
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: include/llvm/CodeGen/GlobalISel/CombinerHelper.h | 15 + include/llvm/CodeGen/GlobalISel/CombinerInfo.h | 15 +- include/llvm/CodeGen/TargetLowering.h | 18 + include/llvm/Transforms/Utils/Local.h | 4 + lib/CodeGen/GlobalISel/CombinerHelper.cpp | 505 +++++++++++++++++++++ lib/Target/AArch64/AArch64ISelLowering.cpp | 59 +++ lib/Target/AArch64/AArch64ISelLowering.h | 8 + lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp | 22 +- lib/Target/Mips/MipsPreLegalizerCombiner.cpp | 3 +- .../InstCombine/InstCombineLoadStoreAlloca.cpp | 46 +- lib/Transforms/Utils/Local.cpp | 51 +++ test/CodeGen/AArch64/GlobalISel/inline-memcpy.mir | 177 ++++++++ test/CodeGen/AArch64/GlobalISel/inline-memmove.mir | 162 +++++++ test/CodeGen/AArch64/GlobalISel/inline-memset.mir | 148 ++++++ 14 files changed, 1182 insertions(+), 51 deletions(-) create mode 100644 test/CodeGen/AArch64/GlobalISel/inline-memcpy.mir create mode 100644 test/CodeGen/AArch64/GlobalISel/inline-memmove.mir create mode 100644 test/CodeGen/AArch64/GlobalISel/inline-memset.mir