This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6fb3129d4f1 [VectorLegalizer] ExpandANY_EXTEND_VECTOR_INREG/ExpandZERO_ [...] new f1a1a392dbc AMDGPU/MC: Add .amdgpu_lds directive new 90f5eff5ac4 AMDGPU: Write LDS objects out as global symbols in code generation
The 2 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 | 27 +++---- include/llvm/BinaryFormat/ELF.h | 5 ++ include/llvm/MC/MCSymbol.h | 26 ++++--- lib/MC/ELFObjectWriter.cpp | 10 ++- lib/ObjectYAML/ELFYAML.cpp | 1 + lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | 31 +++++++- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 10 +++ lib/Target/AMDGPU/AMDGPUISelLowering.h | 1 + lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 58 +++++++++++++++ .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp | 27 +++++++ .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h | 7 ++ lib/Target/AMDGPU/SIFoldOperands.cpp | 22 ++++-- lib/Target/AMDGPU/SIISelLowering.cpp | 26 ++++++- lib/Target/AMDGPU/SIInstrInfo.cpp | 8 +-- lib/Target/AMDGPU/SIInstrInfo.td | 4 ++ lib/Target/AMDGPU/SIInstructions.td | 10 +++ lib/Target/AMDGPU/SIShrinkInstructions.cpp | 4 ++ test/CodeGen/AMDGPU/32-bit-local-address-space.ll | 4 +- test/CodeGen/AMDGPU/ds-sub-offset.ll | 3 +- test/CodeGen/AMDGPU/ds_read2.ll | 28 ++++---- test/CodeGen/AMDGPU/ds_write2.ll | 54 +++++++++----- test/CodeGen/AMDGPU/lds-initializer.ll | 2 +- test/CodeGen/AMDGPU/lds-relocs.ll | 63 +++++++++++++++++ test/CodeGen/AMDGPU/lds-size.ll | 1 - test/CodeGen/AMDGPU/lds-zero-initializer.ll | 2 +- test/CodeGen/AMDGPU/llvm.amdgcn.atomic.dec.ll | 12 +++- test/CodeGen/AMDGPU/llvm.amdgcn.atomic.inc.ll | 10 ++- test/CodeGen/AMDGPU/llvm.amdgcn.groupstaticsize.ll | 15 ++-- test/CodeGen/AMDGPU/local-memory.amdgcn.ll | 7 +- test/CodeGen/AMDGPU/local-memory.ll | 4 +- test/CodeGen/AMDGPU/merge-store-crash.ll | 3 +- test/CodeGen/AMDGPU/over-max-lds-size.ll | 14 ---- test/CodeGen/AMDGPU/promote-alloca-globals.ll | 3 +- test/CodeGen/AMDGPU/shl_add_ptr.ll | 18 ++++- test/CodeGen/AMDGPU/si-sgpr-spill.ll | 22 +++--- test/CodeGen/AMDGPU/target-cpu.ll | 1 - test/CodeGen/MIR/AMDGPU/machine-function-info.ll | 2 +- test/MC/AMDGPU/elf-lds-error.s | 19 +++++ test/MC/AMDGPU/elf-lds.s | 82 ++++++++++++++++++++++ tools/llvm-objcopy/ELF/Object.cpp | 27 +++---- tools/llvm-objcopy/ELF/Object.h | 1 + 41 files changed, 535 insertions(+), 139 deletions(-) create mode 100644 test/CodeGen/AMDGPU/lds-relocs.ll delete mode 100644 test/CodeGen/AMDGPU/over-max-lds-size.ll create mode 100644 test/MC/AMDGPU/elf-lds-error.s create mode 100644 test/MC/AMDGPU/elf-lds.s