This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 590f2e2f2eb Document optforfuzzing attribute created in r328214. new af566830199 [CodeGen] Add a new pass for PostRA sink
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 | 3 + include/llvm/CodeGen/TargetInstrInfo.h | 5 + include/llvm/InitializePasses.h | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/MachineSink.cpp | 188 +++++++++++ lib/CodeGen/TargetInstrInfo.cpp | 27 ++ lib/CodeGen/TargetPassConfig.cpp | 10 +- lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp | 45 +-- test/CodeGen/AArch64/post-ra-machine-sink.mir | 365 ++++++++++++++++++++++ test/CodeGen/AArch64/sink-copy-for-shrink-wrap.ll | 22 ++ test/CodeGen/Hexagon/noreturn-noepilog.ll | 4 + test/CodeGen/Hexagon/swp-phi-ref.ll | 3 + test/CodeGen/Thumb2/ifcvt-no-branch-predictor.ll | 6 +- test/CodeGen/X86/branchfolding-debugloc.ll | 4 +- test/CodeGen/X86/i128-mul.ll | 8 +- test/CodeGen/X86/machine-cp.ll | 18 +- test/CodeGen/X86/scalar_widen_div.ll | 2 +- test/DebugInfo/X86/dbg-value-transfer-order.ll | 8 +- 18 files changed, 662 insertions(+), 58 deletions(-) create mode 100644 test/CodeGen/AArch64/post-ra-machine-sink.mir create mode 100644 test/CodeGen/AArch64/sink-copy-for-shrink-wrap.ll