This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from be8f7c9e0e1 [MIR] Reset unique MBB numbering in MachineFunction::reset() new ac9b3ef76a0 AMDGPU: Add Vega12 and Vega20
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: docs/AMDGPUUsage.rst | 18 +- include/llvm/BinaryFormat/ELF.h | 8 +- include/llvm/IR/IntrinsicsAMDGPU.td | 103 ++++ lib/ObjectYAML/ELFYAML.cpp | 2 + lib/Target/AMDGPU/AMDGPU.td | 31 + lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | 23 +- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 3 +- lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 2 + lib/Target/AMDGPU/AMDGPUSubtarget.h | 15 +- lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 10 +- .../AMDGPU/Disassembler/AMDGPUDisassembler.cpp | 12 +- lib/Target/AMDGPU/GCNProcessors.td | 8 + .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp | 2 + lib/Target/AMDGPU/SIFoldOperands.cpp | 18 +- lib/Target/AMDGPU/SIISelLowering.cpp | 9 +- lib/Target/AMDGPU/SIInstrInfo.cpp | 40 +- lib/Target/AMDGPU/SIInstrInfo.td | 3 + lib/Target/AMDGPU/SIInstructions.td | 10 + lib/Target/AMDGPU/SIShrinkInstructions.cpp | 1 + lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 4 + lib/Target/AMDGPU/VOP2Instructions.td | 20 + lib/Target/AMDGPU/VOP3PInstructions.td | 169 +++-- test/CodeGen/AMDGPU/elf-header-flags-mach.ll | 4 + test/CodeGen/AMDGPU/fma.ll | 47 ++ test/CodeGen/AMDGPU/fmuladd.f32.ll | 179 +++--- test/CodeGen/AMDGPU/hsa-note-no-func.ll | 4 + test/CodeGen/AMDGPU/llvm.amdgcn.fdot2.ll | 19 + test/CodeGen/AMDGPU/llvm.amdgcn.sdot2.ll | 19 + test/CodeGen/AMDGPU/llvm.amdgcn.sdot4.ll | 21 + test/CodeGen/AMDGPU/llvm.amdgcn.sdot8.ll | 21 + test/CodeGen/AMDGPU/llvm.amdgcn.udot2.ll | 19 + test/CodeGen/AMDGPU/llvm.amdgcn.udot4.ll | 21 + test/CodeGen/AMDGPU/llvm.amdgcn.udot8.ll | 21 + test/CodeGen/AMDGPU/mad-mix.ll | 161 +++-- test/CodeGen/AMDGPU/xnor.ll | 4 + test/MC/AMDGPU/dl-insts-err.s | 387 ++++++++++++ test/MC/AMDGPU/dl-insts.s | 679 +++++++++++++++++++++ test/MC/AMDGPU/fma-mix.s | 102 ++++ test/MC/AMDGPU/mad-mix.s | 102 ++++ test/MC/AMDGPU/vop3p.s | 93 --- test/MC/Disassembler/AMDGPU/mad_mix.txt | 6 + test/Object/AMDGPU/elf-header-flags-mach.yaml | 33 + tools/llvm-readobj/ELFDumper.cpp | 2 + 43 files changed, 2133 insertions(+), 322 deletions(-) create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.fdot2.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.sdot2.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.sdot4.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.sdot8.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.udot2.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.udot4.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.udot8.ll create mode 100644 test/MC/AMDGPU/dl-insts-err.s create mode 100644 test/MC/AMDGPU/dl-insts.s create mode 100644 test/MC/AMDGPU/fma-mix.s create mode 100644 test/MC/AMDGPU/mad-mix.s create mode 100644 test/MC/Disassembler/AMDGPU/mad_mix.txt