This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 8e9a370102f [AArch64][GlobalISel] Fold G_MUL into XRO load addressing m [...] new 1dea4cd1d3b [Codegen] (X & (C l>>/<< Y)) ==/!= 0 --> ((X <</l>> Y) & [...] new 38ebc7caa2e [Support] move FileCollector from LLDB to llvm/Support new 64ed497494a [AArch64][GlobalISel] Don't try to use GISel if subtarget d [...]
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: include/llvm/CodeGen/TargetLowering.h | 43 + include/llvm/Support/FileCollector.h | 74 ++ lib/CodeGen/SelectionDAG/TargetLowering.cpp | 79 ++ lib/Support/CMakeLists.txt | 1 + lib/Support/FileCollector.cpp | 177 ++++ lib/Target/AArch64/AArch64ISelLowering.cpp | 13 + lib/Target/AArch64/AArch64ISelLowering.h | 5 + lib/Target/AArch64/AArch64LegalizerInfo.cpp | 6 + lib/Target/Hexagon/HexagonISelLowering.cpp | 4 + lib/Target/Hexagon/HexagonISelLowering.h | 2 + lib/Target/X86/X86ISelLowering.cpp | 27 + lib/Target/X86/X86ISelLowering.h | 7 + test/CodeGen/AArch64/GlobalISel/no-neon-no-fp.ll | 13 + .../hoist-and-by-const-from-lshr-in-eqcmp-zero.ll | 83 +- .../hoist-and-by-const-from-shl-in-eqcmp-zero.ll | 80 +- test/CodeGen/AMDGPU/commute-shifts.ll | 12 +- .../hoist-and-by-const-from-lshr-in-eqcmp-zero.ll | 811 +++++++---------- .../hoist-and-by-const-from-shl-in-eqcmp-zero.ll | 966 +++++++++------------ test/CodeGen/PowerPC/shift-cmp.ll | 16 +- .../hoist-and-by-const-from-lshr-in-eqcmp-zero.ll | 436 +++++----- .../hoist-and-by-const-from-shl-in-eqcmp-zero.ll | 246 +++--- unittests/Support/CMakeLists.txt | 1 + unittests/Support/FileCollectorTest.cpp | 211 +++++ 23 files changed, 1813 insertions(+), 1500 deletions(-) create mode 100644 include/llvm/Support/FileCollector.h create mode 100644 lib/Support/FileCollector.cpp create mode 100644 test/CodeGen/AArch64/GlobalISel/no-neon-no-fp.ll create mode 100644 unittests/Support/FileCollectorTest.cpp