This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from db823e2 DebugInfo: reorder some initializers new 8a9af26 AMDGPU/R600: Delete dead code. new 7150fbf AMDGPU: Remove legacy rsq.clamped intrinsic new a47e87a AMDGPU: Remove AMDGPU.ldexp new 5fecfa2 AMDGPU: Fix TargetPrefix for remaining r600 intrinsics new 35290cc AMDGPU: Remove brev intrinsic
The 5 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/IR/IntrinsicsAMDGPU.td | 12 +-- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 7 -- lib/Target/AMDGPU/AMDGPUIntrinsics.td | 7 -- lib/Target/AMDGPU/R600ISelLowering.cpp | 14 ++-- lib/Target/AMDGPU/R600InstrInfo.cpp | 44 +--------- lib/Target/AMDGPU/R600InstrInfo.h | 15 ---- lib/Target/AMDGPU/R600Instructions.td | 11 ++- lib/Target/AMDGPU/R600Intrinsics.td | 94 +++++++++++----------- lib/Target/AMDGPU/SIISelLowering.cpp | 3 +- test/CodeGen/AMDGPU/big_alu.ll | 26 +++--- test/CodeGen/AMDGPU/bitreverse.ll | 10 --- test/CodeGen/AMDGPU/complex-folding.ll | 4 +- test/CodeGen/AMDGPU/fetch-limits.r600.ll | 4 +- test/CodeGen/AMDGPU/fetch-limits.r700+.ll | 4 +- test/CodeGen/AMDGPU/floor.ll | 4 +- test/CodeGen/AMDGPU/fmad.ll | 4 +- test/CodeGen/AMDGPU/fmax.ll | 4 +- test/CodeGen/AMDGPU/fmin.ll | 4 +- test/CodeGen/AMDGPU/fmul.ll | 2 +- test/CodeGen/AMDGPU/fsub.ll | 2 +- test/CodeGen/AMDGPU/input-mods.ll | 4 +- test/CodeGen/AMDGPU/jump-address.ll | 4 +- test/CodeGen/AMDGPU/kcache-fold.ll | 6 +- test/CodeGen/AMDGPU/llvm.AMDGPU.cube.ll | 4 +- test/CodeGen/AMDGPU/llvm.AMDGPU.rsq.clamped.f64.ll | 21 ----- test/CodeGen/AMDGPU/llvm.AMDGPU.rsq.clamped.ll | 25 ------ test/CodeGen/AMDGPU/llvm.AMDGPU.rsq.ll | 33 -------- test/CodeGen/AMDGPU/llvm.amdgcn.ldexp.ll | 21 ----- test/CodeGen/AMDGPU/llvm.pow.ll | 6 +- test/CodeGen/AMDGPU/llvm.r600.recipsqrt.clamped.ll | 11 +++ test/CodeGen/AMDGPU/llvm.r600.recipsqrt.ieee.ll | 28 +++++++ test/CodeGen/AMDGPU/load-input-fold.ll | 4 +- test/CodeGen/AMDGPU/max-literals.ll | 6 +- test/CodeGen/AMDGPU/predicate-dp4.ll | 4 +- test/CodeGen/AMDGPU/pv-packing.ll | 4 +- test/CodeGen/AMDGPU/pv.ll | 22 ++--- test/CodeGen/AMDGPU/r600-encoding.ll | 4 +- test/CodeGen/AMDGPU/r600-export-fix.ll | 18 ++--- ...-infinite-loop-bug-while-reorganizing-vector.ll | 4 +- test/CodeGen/AMDGPU/r600cfg.ll | 14 ++-- test/CodeGen/AMDGPU/reciprocal.ll | 4 +- test/CodeGen/AMDGPU/rv7x0_count3.ll | 4 +- test/CodeGen/AMDGPU/schedule-fs-loop-nested-if.ll | 4 +- test/CodeGen/AMDGPU/schedule-fs-loop-nested.ll | 4 +- test/CodeGen/AMDGPU/schedule-fs-loop.ll | 4 +- test/CodeGen/AMDGPU/schedule-if-2.ll | 4 +- test/CodeGen/AMDGPU/schedule-if.ll | 4 +- test/CodeGen/AMDGPU/schedule-vs-if-nested-loop.ll | 6 +- test/CodeGen/AMDGPU/shared-op-cycle.ll | 4 +- test/CodeGen/AMDGPU/swizzle-export.ll | 16 ++-- test/CodeGen/AMDGPU/tex-clause-antidep.ll | 4 +- test/CodeGen/AMDGPU/texture-input-merge.ll | 4 +- 52 files changed, 216 insertions(+), 364 deletions(-) delete mode 100644 test/CodeGen/AMDGPU/llvm.AMDGPU.rsq.clamped.f64.ll delete mode 100644 test/CodeGen/AMDGPU/llvm.AMDGPU.rsq.clamped.ll delete mode 100644 test/CodeGen/AMDGPU/llvm.AMDGPU.rsq.ll create mode 100644 test/CodeGen/AMDGPU/llvm.r600.recipsqrt.clamped.ll create mode 100644 test/CodeGen/AMDGPU/llvm.r600.recipsqrt.ieee.ll