This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6cc2c9e Refactor xaluo.ll and xmulo.ll tests. NFC new 87fd702 AMDGPU: Add VOP3P instruction format
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: lib/Target/AMDGPU/AMDGPU.td | 13 +- lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 1 + lib/Target/AMDGPU/AMDGPUSubtarget.h | 5 + lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 312 +++++++++++++++++++-- .../AMDGPU/Disassembler/AMDGPUDisassembler.cpp | 17 ++ .../AMDGPU/Disassembler/AMDGPUDisassembler.h | 2 + .../AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp | 77 +++++ lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h | 10 + lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp | 28 +- lib/Target/AMDGPU/SIDefines.h | 14 +- lib/Target/AMDGPU/SIInstrFormats.td | 2 + lib/Target/AMDGPU/SIInstrInfo.h | 8 + lib/Target/AMDGPU/SIInstrInfo.td | 249 +++++++++++++--- lib/Target/AMDGPU/SIInstructions.td | 6 + lib/Target/AMDGPU/SIRegisterInfo.td | 25 +- lib/Target/AMDGPU/SOPInstructions.td | 8 + lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 9 + lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 5 + lib/Target/AMDGPU/VOP1Instructions.td | 2 +- lib/Target/AMDGPU/VOP2Instructions.td | 7 +- lib/Target/AMDGPU/VOP3Instructions.td | 26 ++ lib/Target/AMDGPU/VOP3PInstructions.td | 82 ++++++ lib/Target/AMDGPU/VOPInstructions.td | 57 +++- test/MC/AMDGPU/literalv216-err.s | 22 ++ test/MC/AMDGPU/literalv216.s | 112 ++++++++ test/MC/AMDGPU/vop3p-err.s | 113 ++++++++ test/MC/AMDGPU/vop3p.s | 216 ++++++++++++++ 27 files changed, 1342 insertions(+), 86 deletions(-) create mode 100644 lib/Target/AMDGPU/VOP3PInstructions.td create mode 100644 test/MC/AMDGPU/literalv216-err.s create mode 100644 test/MC/AMDGPU/literalv216.s create mode 100644 test/MC/AMDGPU/vop3p-err.s create mode 100644 test/MC/AMDGPU/vop3p.s