This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 770cb8b SanitizerCoverage: Support sanitizer guard section on darwin new dfddad6 [ImplicitNullCheck] NFC isSuitableMemoryOp cleanup new 20de1ea [CodeGen] Move MacroFusion to the target new fa7db79 [AArch64] Add new subtarget feature to fuse AES crypto operations new 7fba976 [AArch64] Add new target feature to fuse literal generation
The 4 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/MachineScheduler.h | 3 - include/llvm/Target/TargetInstrInfo.h | 9 - lib/CodeGen/ImplicitNullChecks.cpp | 36 ++-- lib/CodeGen/MachineScheduler.cpp | 74 -------- lib/Target/AArch64/AArch64.td | 11 ++ lib/Target/AArch64/AArch64InstrInfo.cpp | 82 --------- lib/Target/AArch64/AArch64InstrInfo.h | 3 - lib/Target/AArch64/AArch64MacroFusion.cpp | 247 ++++++++++++++++++++++++++ lib/Target/AArch64/AArch64MacroFusion.h | 29 +++ lib/Target/AArch64/AArch64SchedA57.td | 4 +- lib/Target/AArch64/AArch64SchedM1.td | 3 +- lib/Target/AArch64/AArch64Subtarget.h | 4 + lib/Target/AArch64/AArch64TargetMachine.cpp | 17 +- lib/Target/AArch64/CMakeLists.txt | 1 + lib/Target/X86/CMakeLists.txt | 1 + lib/Target/X86/X86InstrInfo.cpp | 159 ----------------- lib/Target/X86/X86InstrInfo.h | 3 - lib/Target/X86/X86MacroFusion.cpp | 262 ++++++++++++++++++++++++++++ lib/Target/X86/X86MacroFusion.h | 30 ++++ lib/Target/X86/X86TargetMachine.cpp | 3 +- test/CodeGen/AArch64/misched-fusion.ll | 12 +- 21 files changed, 633 insertions(+), 360 deletions(-) create mode 100644 lib/Target/AArch64/AArch64MacroFusion.cpp create mode 100644 lib/Target/AArch64/AArch64MacroFusion.h create mode 100644 lib/Target/X86/X86MacroFusion.cpp create mode 100644 lib/Target/X86/X86MacroFusion.h