This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cad7687 Delete a dead store found by PVS-Studio. new 9a2d9ba Delete some dead code and add a missing "0x" prefix to a hex [...] new 7c173dd AMDGPU: Add VI i16 support new 074ecc2 Delete dead code.
The 3 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/Object/ELF.h | 13 +- lib/Target/AMDGPU/AMDGPU.td | 2 + lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 27 ++- lib/Target/AMDGPU/AMDGPUInstructions.td | 6 +- lib/Target/AMDGPU/BUFInstructions.td | 51 ++++- lib/Target/AMDGPU/DSInstructions.td | 10 +- lib/Target/AMDGPU/FLATInstructions.td | 6 + lib/Target/AMDGPU/SIISelLowering.cpp | 76 ++++++- lib/Target/AMDGPU/SIInstrInfo.td | 1 - lib/Target/AMDGPU/SIInstructions.td | 105 +++++----- lib/Target/AMDGPU/SIRegisterInfo.td | 11 +- lib/Target/AMDGPU/SOPInstructions.td | 37 +++- lib/Target/AMDGPU/VIInstructions.td | 10 - lib/Target/AMDGPU/VOP1Instructions.td | 47 ++++- lib/Target/AMDGPU/VOP2Instructions.td | 72 +++++++ lib/Target/AMDGPU/VOP3Instructions.td | 32 +++ test/CodeGen/AMDGPU/add.i16.ll | 149 ++++++++++++++ test/CodeGen/AMDGPU/anyext.ll | 45 ++++- test/CodeGen/AMDGPU/bitreverse.ll | 3 +- test/CodeGen/AMDGPU/cgp-bitfield-extract.ll | 9 +- test/CodeGen/AMDGPU/copy-illegal-type.ll | 141 +++++++------ test/CodeGen/AMDGPU/ctlz.ll | 1 + test/CodeGen/AMDGPU/ctlz_zero_undef.ll | 4 +- test/CodeGen/AMDGPU/cube.ll | 8 +- test/CodeGen/AMDGPU/cvt_f32_ubyte.ll | 206 ++++++++++--------- test/CodeGen/AMDGPU/global-extload-i16.ll | 302 ++++++++++++++++++++++++++++ test/CodeGen/AMDGPU/half.ll | 36 +++- test/CodeGen/AMDGPU/llvm.AMDGPU.bfe.u32.ll | 12 +- test/CodeGen/AMDGPU/load-constant-i16.ll | 15 +- test/CodeGen/AMDGPU/load-global-i16.ll | 15 +- test/CodeGen/AMDGPU/load-global-i8.ll | 20 +- test/CodeGen/AMDGPU/load-local-i16.ll | 12 +- test/CodeGen/AMDGPU/load-local-i8.ll | 20 +- test/CodeGen/AMDGPU/mad_uint24.ll | 20 +- test/CodeGen/AMDGPU/max.i16.ll | 87 ++++++++ test/CodeGen/AMDGPU/mul_uint24-amdgcn.ll | 12 +- test/CodeGen/AMDGPU/shl.ll | 42 ++++ test/CodeGen/AMDGPU/sign_extend.ll | 46 ++++- test/CodeGen/AMDGPU/sra.ll | 30 +++ test/CodeGen/AMDGPU/sub.ll | 40 ++++ test/CodeGen/AMDGPU/trunc-bitcast-vector.ll | 11 +- test/CodeGen/AMDGPU/trunc-store-i1.ll | 11 +- test/CodeGen/AMDGPU/zero_extend.ll | 47 +++-- tools/llvm-readobj/ELFDumper.cpp | 3 +- 44 files changed, 1490 insertions(+), 363 deletions(-) delete mode 100644 lib/Target/AMDGPU/VIInstructions.td create mode 100644 test/CodeGen/AMDGPU/add.i16.ll create mode 100644 test/CodeGen/AMDGPU/global-extload-i16.ll create mode 100644 test/CodeGen/AMDGPU/max.i16.ll