This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 8d6095aa061 [AArch64][SVE] Asm: Support for FTMAD instruction. new f5878e6b347 [AArch64][SVE] Asm: Support for bit/byte reverse operations. new 06b493f7f03 Reapply "AMDGPU: Fix handling of alignment padding in DAG a [...]
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/AArch64/AArch64SVEInstrInfo.td | 8 + lib/Target/AArch64/SVEInstrFormats.td | 86 ++++++++++ lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | 18 +- lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp | 19 +-- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 183 ++++++++++++--------- lib/Target/AMDGPU/AMDGPUISelLowering.h | 7 +- lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp | 5 +- lib/Target/AMDGPU/AMDGPUMachineFunction.cpp | 11 +- lib/Target/AMDGPU/AMDGPUMachineFunction.h | 15 +- lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 74 +++++---- lib/Target/AMDGPU/AMDGPUSubtarget.h | 28 ++-- lib/Target/AMDGPU/R600.td | 5 - lib/Target/AMDGPU/R600ISelLowering.cpp | 21 +-- lib/Target/AMDGPU/SIISelLowering.cpp | 9 +- lib/Target/AMDGPU/SIMachineFunctionInfo.cpp | 24 +-- test/CodeGen/AMDGPU/kernel-args.ll | 77 +++++++-- .../CodeGen/AMDGPU/kernel-argument-dag-lowering.ll | 132 +++++++++++++++ test/CodeGen/AMDGPU/llvm.amdgcn.implicitarg.ptr.ll | 16 +- .../AMDGPU/llvm.amdgcn.kernarg.segment.ptr.ll | 2 +- test/MC/AArch64/SVE/rbit-diagnostics.s | 10 ++ test/MC/AArch64/SVE/rbit.s | 32 ++++ test/MC/AArch64/SVE/rev.s | 32 ++++ test/MC/AArch64/SVE/revb-diagnostics.s | 19 +++ test/MC/AArch64/SVE/revb.s | 26 +++ test/MC/AArch64/SVE/revh-diagnostics.s | 24 +++ test/MC/AArch64/SVE/revh.s | 20 +++ test/MC/AArch64/SVE/revw-diagnostics.s | 29 ++++ test/MC/AArch64/SVE/revw.s | 14 ++ 28 files changed, 725 insertions(+), 221 deletions(-) create mode 100644 test/CodeGen/AMDGPU/kernel-argument-dag-lowering.ll create mode 100644 test/MC/AArch64/SVE/rbit-diagnostics.s create mode 100644 test/MC/AArch64/SVE/rbit.s create mode 100644 test/MC/AArch64/SVE/rev.s create mode 100644 test/MC/AArch64/SVE/revb-diagnostics.s create mode 100644 test/MC/AArch64/SVE/revb.s create mode 100644 test/MC/AArch64/SVE/revh-diagnostics.s create mode 100644 test/MC/AArch64/SVE/revh.s create mode 100644 test/MC/AArch64/SVE/revw-diagnostics.s create mode 100644 test/MC/AArch64/SVE/revw.s