This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6e3f5dd [asan] Enable new stack poisoning with store instruction by default new 4a5c408 AMDGPU/SI: Implement a custom MachineSchedStrategy new 94821da [Myriad]: add missing 'mcpu' values new 5413d61 Propagate TBAA info in SelectionDAG::getIndexedLoad
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: lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 +- lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 45 +++ lib/Target/AMDGPU/AMDGPUSubtarget.h | 6 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 16 +- lib/Target/AMDGPU/CMakeLists.txt | 1 + lib/Target/AMDGPU/GCNSchedStrategy.cpp | 312 +++++++++++++++++++++ lib/Target/AMDGPU/GCNSchedStrategy.h | 54 ++++ lib/Target/AMDGPU/SIRegisterInfo.cpp | 6 + lib/Target/AMDGPU/SIRegisterInfo.h | 2 + lib/Target/AMDGPU/SISchedule.td | 4 + lib/Target/Sparc/Sparc.td | 3 + test/CodeGen/AMDGPU/and.ll | 11 +- test/CodeGen/AMDGPU/ctpop64.ll | 2 +- test/CodeGen/AMDGPU/ds_read2_offset_order.ll | 2 +- test/CodeGen/AMDGPU/fceil64.ll | 6 +- test/CodeGen/AMDGPU/fma-combine.ll | 2 +- test/CodeGen/AMDGPU/fmax3.f64.ll | 2 +- test/CodeGen/AMDGPU/indirect-addressing-si.ll | 14 +- test/CodeGen/AMDGPU/insert_vector_elt.ll | 2 +- test/CodeGen/AMDGPU/load-constant-i16.ll | 4 +- test/CodeGen/AMDGPU/load-global-i32.ll | 2 +- test/CodeGen/AMDGPU/missing-store.ll | 4 +- .../AMDGPU/move-addr64-rsrc-dead-subreg-writes.ll | 4 +- test/CodeGen/AMDGPU/rcp-pattern.ll | 3 +- test/CodeGen/AMDGPU/ret.ll | 10 +- test/CodeGen/AMDGPU/sad.ll | 2 +- test/CodeGen/AMDGPU/salu-to-valu.ll | 6 +- test/CodeGen/AMDGPU/select-vectors.ll | 4 +- test/CodeGen/AMDGPU/shift-and-i64-ubfe.ll | 7 +- test/CodeGen/AMDGPU/si-triv-disjoint-mem-access.ll | 8 +- test/CodeGen/AMDGPU/trunc.ll | 4 +- test/CodeGen/AMDGPU/udivrem.ll | 6 +- test/CodeGen/AMDGPU/use-sgpr-multiple-times.ll | 7 +- .../AMDGPU/vgpr-spill-emergency-stack-slot.ll | 18 +- test/CodeGen/Hexagon/post-inc-aa-metadata.ll | 37 +++ 35 files changed, 555 insertions(+), 64 deletions(-) create mode 100644 lib/Target/AMDGPU/GCNSchedStrategy.cpp create mode 100644 lib/Target/AMDGPU/GCNSchedStrategy.h create mode 100644 test/CodeGen/Hexagon/post-inc-aa-metadata.ll