This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f3b72e98f87 [X86] Move CPU features for Barcelona/K10 out of line new 7b50bfd5eb1 [globalisel] Allow SrcOp to convert an APInt and render it [...] new fa1587397e6 [modulemap] exclude a non-module friendly header new 215335e0266 [GISel]: Add GISelKnownBits analysis
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/GlobalISel/CombinerHelper.h | 5 +- include/llvm/CodeGen/GlobalISel/GISelKnownBits.h | 99 +++++++ include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 24 +- include/llvm/CodeGen/TargetLowering.h | 8 + include/llvm/InitializePasses.h | 1 + include/llvm/module.modulemap | 6 + lib/CodeGen/GlobalISel/CMakeLists.txt | 1 + lib/CodeGen/GlobalISel/CombinerHelper.cpp | 8 +- lib/CodeGen/GlobalISel/GISelKnownBits.cpp | 330 +++++++++++++++++++++ lib/CodeGen/SelectionDAG/TargetLowering.cpp | 6 + lib/Target/AArch64/AArch64InstructionSelector.cpp | 2 +- lib/Target/AArch64/AArch64LegalizerInfo.cpp | 2 +- lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp | 17 +- .../AArch64/GlobalISel/gisel-commandline-option.ll | 1 + unittests/CodeGen/GlobalISel/CMakeLists.txt | 1 + unittests/CodeGen/GlobalISel/CSETest.cpp | 2 + unittests/CodeGen/GlobalISel/GISelMITest.h | 5 +- unittests/CodeGen/GlobalISel/KnownBitsTest.cpp | 56 ++++ .../CodeGen/GlobalISel/LegalizerHelperTest.cpp | 14 + .../CodeGen/GlobalISel/MachineIRBuilderTest.cpp | 2 + 20 files changed, 578 insertions(+), 12 deletions(-) create mode 100644 include/llvm/CodeGen/GlobalISel/GISelKnownBits.h create mode 100644 lib/CodeGen/GlobalISel/GISelKnownBits.cpp create mode 100644 unittests/CodeGen/GlobalISel/KnownBitsTest.cpp