This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from fe2ae4c Try to fix a circular dependency in the modules build. new 1f99c41 [AMDGPU] Wave and register controls new dbbdf44 [CMake] Cleanup LLVM_OPTIMIZED_TABLEGEN new c87867f [AMDGPU] Wave and register controls
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: cmake/modules/LLVMExternalProjectUtils.cmake | 8 +- cmake/modules/TableGen.cmake | 27 +- lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | 51 +++- lib/Target/AMDGPU/AMDGPUAsmPrinter.h | 10 + lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp | 9 +- lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 82 ++++++ lib/Target/AMDGPU/AMDGPUSubtarget.h | 91 ++++++- lib/Target/AMDGPU/GCNSchedStrategy.cpp | 4 +- lib/Target/AMDGPU/SIFrameLowering.cpp | 14 +- lib/Target/AMDGPU/SIInstrInfo.cpp | 2 +- lib/Target/AMDGPU/SIMachineFunctionInfo.cpp | 18 +- lib/Target/AMDGPU/SIMachineFunctionInfo.h | 45 ++- lib/Target/AMDGPU/SIRegisterInfo.cpp | 301 ++++++++++++--------- lib/Target/AMDGPU/SIRegisterInfo.h | 78 +++++- lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 25 +- lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 21 +- test/CodeGen/AMDGPU/amdgpu.private-memory.ll | 2 +- test/CodeGen/AMDGPU/array-ptr-calc-i32.ll | 2 +- .../AMDGPU/attr-amdgpu-flat-work-group-size.ll | 129 +++++++++ test/CodeGen/AMDGPU/attr-amdgpu-num-sgpr.ll | 17 ++ test/CodeGen/AMDGPU/attr-amdgpu-num-vgpr.ll | 75 +++++ test/CodeGen/AMDGPU/attr-amdgpu-waves-per-eu.ll | 190 +++++++++++++ test/CodeGen/AMDGPU/attr-unparseable.ll | 57 ++++ test/CodeGen/AMDGPU/indirect-private-64.ll | 2 +- .../AMDGPU/large-work-group-promote-alloca.ll | 14 +- test/CodeGen/AMDGPU/large-work-group-registers.ll | 41 --- test/CodeGen/AMDGPU/load-constant-i16.ll | 2 +- test/CodeGen/AMDGPU/private-memory-r600.ll | 2 +- .../AMDGPU/promote-alloca-mem-intrinsics.ll | 2 +- test/CodeGen/AMDGPU/promote-alloca-no-opts.ll | 4 +- .../AMDGPU/promote-alloca-padding-size-estimate.ll | 2 +- test/CodeGen/AMDGPU/promote-alloca-to-lds-icmp.ll | 2 +- test/CodeGen/AMDGPU/promote-alloca-to-lds-phi.ll | 2 +- .../CodeGen/AMDGPU/promote-alloca-to-lds-select.ll | 2 +- test/CodeGen/AMDGPU/target-cpu.ll | 4 +- 35 files changed, 1065 insertions(+), 272 deletions(-) create mode 100644 test/CodeGen/AMDGPU/attr-amdgpu-flat-work-group-size.ll create mode 100644 test/CodeGen/AMDGPU/attr-amdgpu-num-sgpr.ll create mode 100644 test/CodeGen/AMDGPU/attr-amdgpu-num-vgpr.ll create mode 100644 test/CodeGen/AMDGPU/attr-amdgpu-waves-per-eu.ll create mode 100644 test/CodeGen/AMDGPU/attr-unparseable.ll delete mode 100644 test/CodeGen/AMDGPU/large-work-group-registers.ll