This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 455327abba0 [ValueTracking] Enabling existing ValueTracking patch by default. new 32d37d67203 [X86] Correct dwarf unwind information in function epilogue
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/MachineBasicBlock.h | 47 +++ include/llvm/CodeGen/MachineInstr.h | 1 + include/llvm/CodeGen/Passes.h | 8 + include/llvm/InitializePasses.h | 2 + include/llvm/Target/Target.td | 2 +- include/llvm/Target/TargetFrameLowering.h | 13 + lib/CodeGen/BranchFolding.cpp | 62 +++- lib/CodeGen/CFIInfoVerifier.cpp | 123 ++++++++ lib/CodeGen/CFIInstrInserter.cpp | 124 ++++++++ lib/CodeGen/CMakeLists.txt | 2 + lib/CodeGen/CodeGen.cpp | 2 + lib/CodeGen/MachineBasicBlock.cpp | 227 +++++++++++++++ lib/CodeGen/MachineInstr.cpp | 38 ++- lib/CodeGen/PrologEpilogInserter.cpp | 4 + lib/CodeGen/TailDuplicator.cpp | 10 +- lib/CodeGen/TargetPassConfig.cpp | 7 + lib/Target/X86/X86CallFrameOptimization.cpp | 18 +- lib/Target/X86/X86FrameLowering.cpp | 119 +++++++- lib/Target/X86/X86FrameLowering.h | 2 + test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll | 2 + test/CodeGen/X86/2011-10-19-widen_vselect.ll | 2 + test/CodeGen/X86/GlobalISel/add-scalar.ll | 2 + test/CodeGen/X86/GlobalISel/frameIndex.ll | 2 + test/CodeGen/X86/O0-pipeline.ll | 2 + test/CodeGen/X86/avg.ll | 2 + test/CodeGen/X86/avx512-vbroadcast.ll | 6 +- test/CodeGen/X86/avx512bw-intrinsics-upgrade.ll | 54 +++- test/CodeGen/X86/avx512bw-intrinsics.ll | 14 +- test/CodeGen/X86/avx512vl-intrinsics-fast-isel.ll | 118 ++++++-- test/CodeGen/X86/avx512vl-vbroadcast.ll | 10 +- test/CodeGen/X86/emutls-pie.ll | 12 + test/CodeGen/X86/emutls.ll | 32 ++ test/CodeGen/X86/epilogue-cfi-fp.ll | 44 +++ test/CodeGen/X86/epilogue-cfi-no-fp.ll | 50 ++++ test/CodeGen/X86/fast-isel-store.ll | 40 ++- .../X86/frame-lowering-debug-intrinsic-2.ll | 14 +- test/CodeGen/X86/frame-lowering-debug-intrinsic.ll | 8 + test/CodeGen/X86/haddsub-2.ll | 48 ++- test/CodeGen/X86/hipe-cc64.ll | 2 + test/CodeGen/X86/imul.ll | 14 +- test/CodeGen/X86/legalize-shift-64.ll | 16 +- test/CodeGen/X86/load-combine.ll | 8 +- test/CodeGen/X86/masked_gather_scatter.ll | 74 +++-- test/CodeGen/X86/memset-nonzero.ll | 2 + test/CodeGen/X86/merge-consecutive-loads-128.ll | 72 +++-- test/CodeGen/X86/movtopush.ll | 4 +- test/CodeGen/X86/mul-constant-result.ll | 322 ++++++++++++++------- test/CodeGen/X86/mul-i256.ll | 8 + test/CodeGen/X86/pr21792.ll | 2 + test/CodeGen/X86/pr29112.ll | 2 + test/CodeGen/X86/pr30430.ll | 2 + test/CodeGen/X86/pr32241.ll | 4 + test/CodeGen/X86/pr32256.ll | 2 + test/CodeGen/X86/pr32329.ll | 8 + test/CodeGen/X86/pr32345.ll | 4 + test/CodeGen/X86/pr32451.ll | 4 + test/CodeGen/X86/pr9743.ll | 2 + test/CodeGen/X86/push-cfi-debug.ll | 4 +- test/CodeGen/X86/push-cfi-obj.ll | 7 +- test/CodeGen/X86/push-cfi.ll | 3 +- test/CodeGen/X86/return-ext.ll | 6 + test/CodeGen/X86/rtm.ll | 2 + test/CodeGen/X86/setcc-lowering.ll | 2 + test/CodeGen/X86/statepoint-call-lowering.ll | 2 + .../X86/statepoint-gctransition-call-lowering.ll | 2 + test/CodeGen/X86/statepoint-invoke.ll | 6 + test/CodeGen/X86/throws-cfi-fp.ll | 103 +++++++ test/CodeGen/X86/throws-cfi-no-fp.ll | 102 +++++++ test/CodeGen/X86/vector-sext.ll | 26 ++ test/CodeGen/X86/vector-shuffle-avx512.ll | 10 +- test/CodeGen/X86/vector-shuffle-v1.ll | 2 + test/CodeGen/X86/wide-integer-cmp.ll | 6 + test/CodeGen/X86/x86-framelowering-trap.ll | 2 + .../X86/x86-no_caller_saved_registers-preserve.ll | 2 + 74 files changed, 1846 insertions(+), 266 deletions(-) create mode 100644 lib/CodeGen/CFIInfoVerifier.cpp create mode 100644 lib/CodeGen/CFIInstrInserter.cpp create mode 100644 test/CodeGen/X86/epilogue-cfi-fp.ll create mode 100644 test/CodeGen/X86/epilogue-cfi-no-fp.ll create mode 100644 test/CodeGen/X86/throws-cfi-fp.ll create mode 100644 test/CodeGen/X86/throws-cfi-no-fp.ll