This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5db1718aa6e [X86] Check for 64-bit mode in X86Subtarget::hasCmpxchg16b() new 3589fdddf4b [MsgPack] New MsgPackDocument class new 6cce665f805 [AMDGPU] Switched HSA metadata to use MsgPackDocument new 74fba6521c1 [MsgPack] Removed MsgPackTypes
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/BinaryFormat/AMDGPUMetadataVerifier.h | 30 +- include/llvm/BinaryFormat/MsgPackDocument.h | 385 ++++ include/llvm/BinaryFormat/MsgPackTypes.h | 371 ---- lib/BinaryFormat/AMDGPUMetadataVerifier.cpp | 152 +- lib/BinaryFormat/CMakeLists.txt | 3 +- lib/BinaryFormat/MsgPackDocument.cpp | 245 +++ lib/BinaryFormat/MsgPackDocumentYAML.cpp | 249 +++ lib/BinaryFormat/MsgPackTypes.cpp | 302 --- lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp | 175 +- lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h | 34 +- .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp | 28 +- .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h | 11 +- .../AMDGPU/hsa-metadata-deduce-ro-arg-v3.ll | 40 +- .../AMDGPU/hsa-metadata-enqueu-kernel-v3.ll | 134 +- .../AMDGPU/hsa-metadata-from-llvm-ir-full-v3.ll | 2313 ++++++++++---------- test/CodeGen/AMDGPU/hsa-metadata-hidden-args-v3.ll | 104 +- test/CodeGen/AMDGPU/hsa-metadata-images-v3.ll | 140 +- .../AMDGPU/hsa-metadata-kernel-code-props-v3.ll | 25 +- test/MC/AMDGPU/hsa-metadata-kernel-args-v3.s | 92 +- test/MC/AMDGPU/hsa-metadata-kernel-attrs-v3.s | 63 +- test/MC/AMDGPU/hsa-metadata-kernel-code-props-v3.s | 34 +- test/MC/AMDGPU/hsa-v3.s | 52 +- tools/llvm-readobj/ELFDumper.cpp | 17 +- unittests/BinaryFormat/CMakeLists.txt | 2 +- unittests/BinaryFormat/MsgPackDocumentTest.cpp | 168 ++ unittests/BinaryFormat/MsgPackTypesTest.cpp | 187 -- 26 files changed, 2780 insertions(+), 2576 deletions(-) create mode 100644 include/llvm/BinaryFormat/MsgPackDocument.h delete mode 100644 include/llvm/BinaryFormat/MsgPackTypes.h create mode 100644 lib/BinaryFormat/MsgPackDocument.cpp create mode 100644 lib/BinaryFormat/MsgPackDocumentYAML.cpp delete mode 100644 lib/BinaryFormat/MsgPackTypes.cpp create mode 100644 unittests/BinaryFormat/MsgPackDocumentTest.cpp delete mode 100644 unittests/BinaryFormat/MsgPackTypesTest.cpp