This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 45ebd75cc10 Make sure we invoke ld64.lld and ld-wasm in the build directory. new 8afcfc323d9 [Constant] add floating-point helpers for normal/finite-nz; NFC new 16290892d31 AMDGPU: Bring elf flags in sync with the spec new 25462c08b90 [GISel]: Make GlobalISelEmitter rule prioritization compati [...]
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: docs/AMDGPUUsage.rst | 85 +-- include/llvm/BinaryFormat/ELF.h | 69 ++- include/llvm/IR/Constant.h | 8 + include/llvm/Object/ELFObjectFile.h | 14 +- lib/IR/Constants.cpp | 26 + lib/ObjectYAML/ELFYAML.cpp | 33 +- .../AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp | 24 - lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h | 3 +- .../AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp | 4 +- .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp | 77 ++- .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h | 6 +- .../InstCombine/InstCombineMulDivRem.cpp | 55 +- test/CodeGen/AMDGPU/elf-header-flags-mach.ll | 88 +++ test/CodeGen/AMDGPU/elf-header-flags-xnack.ll | 15 + test/CodeGen/AMDGPU/elf-header-osabi.ll | 21 + test/CodeGen/AMDGPU/elf-header.ll | 49 -- test/CodeGen/X86/GlobalISel/select-blsi.mir | 2 +- test/Object/AMDGPU/elf-header-flags-mach.yaml | 468 +++++++++++++++ test/Object/AMDGPU/elf-header-flags-xnack.yaml | 37 ++ test/Object/AMDGPU/elf-header-osabi.yaml | 50 ++ test/Object/AMDGPU/elf32-r600-definitions.yaml | 34 -- .../AMDGPU/elf64-amdgcn-amdhsa-definitions.yaml | 34 -- .../AMDGPU/elf64-amdgcn-amdpal-definitions.yaml | 34 -- .../AMDGPU/elf64-amdgcn-mesa3d-definitions.yaml | 34 -- test/TableGen/GlobalISelEmitter.td | 661 +++++++++++---------- tools/llvm-readobj/ELFDumper.cpp | 36 +- utils/TableGen/GlobalISelEmitter.cpp | 12 + 27 files changed, 1346 insertions(+), 633 deletions(-) create mode 100644 test/CodeGen/AMDGPU/elf-header-flags-mach.ll create mode 100644 test/CodeGen/AMDGPU/elf-header-flags-xnack.ll create mode 100644 test/CodeGen/AMDGPU/elf-header-osabi.ll delete mode 100644 test/CodeGen/AMDGPU/elf-header.ll create mode 100644 test/Object/AMDGPU/elf-header-flags-mach.yaml create mode 100644 test/Object/AMDGPU/elf-header-flags-xnack.yaml create mode 100644 test/Object/AMDGPU/elf-header-osabi.yaml delete mode 100644 test/Object/AMDGPU/elf32-r600-definitions.yaml delete mode 100644 test/Object/AMDGPU/elf64-amdgcn-amdhsa-definitions.yaml delete mode 100644 test/Object/AMDGPU/elf64-amdgcn-amdpal-definitions.yaml delete mode 100644 test/Object/AMDGPU/elf64-amdgcn-mesa3d-definitions.yaml