This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 8a5dfea89d1 [docs] Update name of vectorization interleave flag. new b9583a3a17f Add LiveRangeShrink pass to shrink live range within BB.
The 1 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/Passes.h | 4 + include/llvm/InitializePasses.h | 1 + lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/LiveRangeShrink.cpp | 231 ++++++ lib/Target/X86/X86TargetMachine.cpp | 1 + test/CodeGen/X86/2007-01-08-InstrSched.ll | 4 +- test/CodeGen/X86/avg.ll | 833 ++++++++++--------- test/CodeGen/X86/avx.ll | 2 +- test/CodeGen/X86/avx512-cmp-kor-sequence.ll | 6 +- test/CodeGen/X86/avx512-gather-scatter-intrin.ll | 10 +- test/CodeGen/X86/avx512-intrinsics-upgrade.ll | 44 +- test/CodeGen/X86/avx512-intrinsics.ll | 83 +- test/CodeGen/X86/avx512-mask-spills.ll | 40 +- test/CodeGen/X86/avx512bw-intrinsics-upgrade.ll | 12 +- test/CodeGen/X86/avx512bw-intrinsics.ll | 16 +- test/CodeGen/X86/avx512bwvl-intrinsics-upgrade.ll | 24 +- test/CodeGen/X86/avx512cdvl-intrinsics-upgrade.ll | 2 +- test/CodeGen/X86/avx512cdvl-intrinsics.ll | 2 +- test/CodeGen/X86/avx512dq-intrinsics-upgrade.ll | 2 +- test/CodeGen/X86/avx512dq-intrinsics.ll | 4 +- test/CodeGen/X86/avx512dqvl-intrinsics-upgrade.ll | 10 +- test/CodeGen/X86/avx512dqvl-intrinsics.ll | 4 +- test/CodeGen/X86/avx512ifma-intrinsics.ll | 8 +- test/CodeGen/X86/avx512ifmavl-intrinsics.ll | 16 +- test/CodeGen/X86/avx512vl-intrinsics-upgrade.ll | 64 +- test/CodeGen/X86/avx512vl-intrinsics.ll | 28 +- test/CodeGen/X86/bitcast-and-setcc-128.ll | 136 ++-- test/CodeGen/X86/bswap_tree2.ll | 35 +- test/CodeGen/X86/fmsubadd-combine.ll | 8 +- test/CodeGen/X86/fold-tied-op.ll | 7 +- test/CodeGen/X86/fp128-i128.ll | 2 +- test/CodeGen/X86/lrshrink.ll | 57 ++ test/CodeGen/X86/madd.ll | 34 +- test/CodeGen/X86/misched-matrix.ll | 4 +- test/CodeGen/X86/oddshuffles.ll | 34 +- test/CodeGen/X86/pmul.ll | 55 +- test/CodeGen/X86/rotate.ll | 16 +- test/CodeGen/X86/sad.ll | 929 +++++++++++----------- test/CodeGen/X86/select.ll | 28 +- test/CodeGen/X86/setcc-wide-types.ll | 56 +- test/CodeGen/X86/shrink_vmul_sse.ll | 2 +- test/CodeGen/X86/sse41.ll | 8 +- test/CodeGen/X86/vector-bitreverse.ll | 6 +- test/CodeGen/X86/vector-blend.ll | 4 +- test/CodeGen/X86/x86-interleaved-access.ll | 14 +- 46 files changed, 1582 insertions(+), 1306 deletions(-) create mode 100644 lib/CodeGen/LiveRangeShrink.cpp create mode 100644 test/CodeGen/X86/lrshrink.ll