This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 347e991ccaf AVX-512: Lowering Masked Gather intrinsic - fixed a bug new 7ebe2a28312 [ARM] Add macro fusion for AES instructions. new 54b8b993d17 [GlobalISel][X86] Support vector type G_INSERT legalization [...]
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: lib/Target/ARM/ARM.td | 3 +- lib/Target/ARM/ARMMacroFusion.cpp | 57 +++++ lib/Target/ARM/ARMMacroFusion.h | 24 ++ lib/Target/ARM/ARMSubtarget.h | 8 + lib/Target/ARM/ARMTargetMachine.cpp | 7 + lib/Target/ARM/CMakeLists.txt | 1 + lib/Target/X86/X86InstructionSelector.cpp | 107 ++++++++ lib/Target/X86/X86LegalizerInfo.cpp | 32 ++- test/CodeGen/ARM/misched-fusion-aes.ll | 203 +++++++++++++++ .../X86/GlobalISel/legalize-insert-vec256.mir | 33 +++ .../X86/GlobalISel/legalize-insert-vec512.mir | 63 +++++ .../X86/GlobalISel/select-insert-vec256.mir | 176 +++++++++++++ .../X86/GlobalISel/select-insert-vec512.mir | 271 +++++++++++++++++++++ 13 files changed, 981 insertions(+), 4 deletions(-) create mode 100644 lib/Target/ARM/ARMMacroFusion.cpp create mode 100644 lib/Target/ARM/ARMMacroFusion.h create mode 100644 test/CodeGen/ARM/misched-fusion-aes.ll create mode 100644 test/CodeGen/X86/GlobalISel/legalize-insert-vec256.mir create mode 100644 test/CodeGen/X86/GlobalISel/legalize-insert-vec512.mir create mode 100644 test/CodeGen/X86/GlobalISel/select-insert-vec256.mir create mode 100644 test/CodeGen/X86/GlobalISel/select-insert-vec512.mir