This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0f00485ae22 Revert "[Remarks] Refactor optimization remarks setup" new eaed96ae3e5 [AMDGPU] gfx1011/gfx1012 targets
The 1 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/BinaryFormat/ELF.h | 4 +- include/llvm/Support/TargetParser.h | 4 +- lib/ObjectYAML/ELFYAML.cpp | 2 + lib/Support/TargetParser.cpp | 6 +- lib/Target/AMDGPU/AMDGPU.td | 52 +++++++ lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 2 + lib/Target/AMDGPU/AMDGPUSubtarget.h | 10 ++ lib/Target/AMDGPU/GCNProcessors.td | 8 ++ .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp | 4 + lib/Target/AMDGPU/VOP2Instructions.td | 54 +++++++ lib/Target/AMDGPU/VOP3PInstructions.td | 17 +++ test/CodeGen/AMDGPU/elf-header-flags-mach.ll | 4 + test/CodeGen/AMDGPU/fdot2.ll | 19 ++- test/CodeGen/AMDGPU/hsa-note-no-func.ll | 4 + test/CodeGen/AMDGPU/lds-misaligned-bug.ll | 20 +-- test/CodeGen/AMDGPU/llvm.amdgcn.fdot2.ll | 10 +- test/CodeGen/AMDGPU/llvm.amdgcn.sdot2.ll | 6 +- test/CodeGen/AMDGPU/llvm.amdgcn.sdot4.ll | 6 +- test/CodeGen/AMDGPU/llvm.amdgcn.sdot8.ll | 6 +- test/CodeGen/AMDGPU/llvm.amdgcn.udot2.ll | 6 +- test/CodeGen/AMDGPU/llvm.amdgcn.udot4.ll | 6 +- test/CodeGen/AMDGPU/llvm.amdgcn.udot8.ll | 6 +- test/MC/AMDGPU/gfx1011_dlops.s | 53 +++++++ test/MC/AMDGPU/gfx1011_err.s | 50 +++++++ test/MC/AMDGPU/smem.s | 126 ++++++++++++++-- test/MC/AMDGPU/xdl-insts-gfx1011-gfx1012.s | 158 +++++++++++++++++++++ test/MC/Disassembler/AMDGPU/gfx1011_dasm_dlops.txt | 53 +++++++ .../AMDGPU/xdl-insts-gfx1011-gfx1012.txt | 158 +++++++++++++++++++++ tools/llvm-readobj/ELFDumper.cpp | 2 + 29 files changed, 814 insertions(+), 42 deletions(-) create mode 100644 test/MC/AMDGPU/gfx1011_dlops.s create mode 100644 test/MC/AMDGPU/gfx1011_err.s create mode 100644 test/MC/AMDGPU/xdl-insts-gfx1011-gfx1012.s create mode 100644 test/MC/Disassembler/AMDGPU/gfx1011_dasm_dlops.txt create mode 100644 test/MC/Disassembler/AMDGPU/xdl-insts-gfx1011-gfx1012.txt