This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7f1badc [codeview] Fix a nasty use after free. new 29d0ea4 AMDGPU: Cleanup load tests new a96468b transform obscured FP sign bit ops into a fabs/fneg using TLI hook
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: include/llvm/Target/TargetLowering.h | 8 + lib/Analysis/ValueTracking.cpp | 12 +- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 46 ++ lib/Target/AArch64/AArch64ISelLowering.h | 6 + lib/Target/AMDGPU/R600ISelLowering.cpp | 14 + lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 18 - test/CodeGen/AArch64/fcvt-int.ll | 8 +- test/CodeGen/AMDGPU/extload.ll | 40 +- test/CodeGen/AMDGPU/fpext.ll | 12 +- test/CodeGen/AMDGPU/global-extload-i1.ll | 302 -------- test/CodeGen/AMDGPU/global-extload-i16.ll | 302 -------- test/CodeGen/AMDGPU/global-extload-i32.ll | 308 -------- test/CodeGen/AMDGPU/global-extload-i8.ll | 299 -------- test/CodeGen/AMDGPU/kernel-args.ll | 54 +- test/CodeGen/AMDGPU/load-constant-f64.ll | 15 + test/CodeGen/AMDGPU/load-constant-i1.ll | 371 ++++++++++ test/CodeGen/AMDGPU/load-constant-i16.ll | 761 ++++++++++++++++++++ test/CodeGen/AMDGPU/load-constant-i32.ll | 378 ++++++++++ test/CodeGen/AMDGPU/load-constant-i64.ll | 90 +++ test/CodeGen/AMDGPU/load-constant-i8.ll | 605 ++++++++++++++++ test/CodeGen/AMDGPU/load-global-f32.ll | 93 +++ test/CodeGen/AMDGPU/load-global-f64.ll | 94 +++ test/CodeGen/AMDGPU/load-global-i1.ll | 371 ++++++++++ test/CodeGen/AMDGPU/load-global-i16.ll | 774 +++++++++++++++++++++ test/CodeGen/AMDGPU/load-global-i32.ll | 523 ++++++++++++++ test/CodeGen/AMDGPU/load-global-i64.ll | 125 ++++ test/CodeGen/AMDGPU/load-global-i8.ll | 579 +++++++++++++++ test/CodeGen/AMDGPU/load-i1.ll | 149 ---- test/CodeGen/AMDGPU/load-local-f32.ll | 109 +++ test/CodeGen/AMDGPU/load-local-f64.ll | 154 ++++ test/CodeGen/AMDGPU/load-local-i1.ll | 371 ++++++++++ test/CodeGen/AMDGPU/load-local-i16.ll | 608 ++++++++++++++++ test/CodeGen/AMDGPU/load-local-i32.ll | 182 +++++ test/CodeGen/AMDGPU/load-local-i64.ll | 154 ++++ test/CodeGen/AMDGPU/load-local-i8.ll | 562 +++++++++++++++ test/CodeGen/AMDGPU/load.ll | 750 -------------------- test/CodeGen/AMDGPU/load.vec.ll | 25 - test/CodeGen/AMDGPU/load64.ll | 31 - test/CodeGen/AMDGPU/local-memory.ll | 35 + test/CodeGen/AMDGPU/unaligned-load-store.ll | 641 ++++++++++------- test/Transforms/InstCombine/and2.ll | 42 -- test/Transforms/InstCombine/fabs.ll | 25 - 42 files changed, 7504 insertions(+), 2542 deletions(-) delete mode 100644 test/CodeGen/AMDGPU/global-extload-i1.ll delete mode 100644 test/CodeGen/AMDGPU/global-extload-i16.ll delete mode 100644 test/CodeGen/AMDGPU/global-extload-i32.ll delete mode 100644 test/CodeGen/AMDGPU/global-extload-i8.ll create mode 100644 test/CodeGen/AMDGPU/load-constant-f64.ll create mode 100644 test/CodeGen/AMDGPU/load-constant-i1.ll create mode 100644 test/CodeGen/AMDGPU/load-constant-i16.ll create mode 100644 test/CodeGen/AMDGPU/load-constant-i32.ll create mode 100644 test/CodeGen/AMDGPU/load-constant-i64.ll create mode 100644 test/CodeGen/AMDGPU/load-constant-i8.ll create mode 100644 test/CodeGen/AMDGPU/load-global-f32.ll create mode 100644 test/CodeGen/AMDGPU/load-global-f64.ll create mode 100644 test/CodeGen/AMDGPU/load-global-i1.ll create mode 100644 test/CodeGen/AMDGPU/load-global-i16.ll create mode 100644 test/CodeGen/AMDGPU/load-global-i32.ll create mode 100644 test/CodeGen/AMDGPU/load-global-i64.ll create mode 100644 test/CodeGen/AMDGPU/load-global-i8.ll delete mode 100644 test/CodeGen/AMDGPU/load-i1.ll create mode 100644 test/CodeGen/AMDGPU/load-local-f32.ll create mode 100644 test/CodeGen/AMDGPU/load-local-f64.ll create mode 100644 test/CodeGen/AMDGPU/load-local-i1.ll create mode 100644 test/CodeGen/AMDGPU/load-local-i16.ll create mode 100644 test/CodeGen/AMDGPU/load-local-i32.ll create mode 100644 test/CodeGen/AMDGPU/load-local-i64.ll create mode 100644 test/CodeGen/AMDGPU/load-local-i8.ll delete mode 100644 test/CodeGen/AMDGPU/load.ll delete mode 100644 test/CodeGen/AMDGPU/load.vec.ll delete mode 100644 test/CodeGen/AMDGPU/load64.ll