This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a379fe24fee ShadowCallStack/x86_64: Ignore pseudo-machine instructions new 21a0c181743 [x86] Introduce a pass to begin more systematically fixing [...]
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 | 7 + lib/CodeGen/MachineBasicBlock.cpp | 8 + lib/Target/X86/CMakeLists.txt | 1 + lib/Target/X86/X86.h | 3 + lib/Target/X86/X86FlagsCopyLowering.cpp | 734 +++ lib/Target/X86/X86ISelLowering.cpp | 19 - lib/Target/X86/X86ISelLowering.h | 2 - lib/Target/X86/X86InstrInfo.cpp | 102 +- lib/Target/X86/X86TargetMachine.cpp | 3 + test/CodeGen/X86/GlobalISel/add-scalar.ll | 14 +- test/CodeGen/X86/O0-pipeline.ll | 1 + test/CodeGen/X86/O3-pipeline.ll | 1 + test/CodeGen/X86/clobber-fi0.ll | 37 - test/CodeGen/X86/cmpxchg-clobber-flags.ll | 372 +- test/CodeGen/X86/copy-eflags.ll | 108 +- test/CodeGen/X86/eflags-copy-expansion.mir | 64 - test/CodeGen/X86/flags-copy-lowering.mir | 485 ++ test/CodeGen/X86/mul-i1024.ll | 6129 ++++++++++----------- test/CodeGen/X86/peephole-na-phys-copy-folding.ll | 109 +- test/CodeGen/X86/win64_frame.ll | 88 +- test/CodeGen/X86/x86-repmov-copy-eflags.ll | 11 +- 21 files changed, 4471 insertions(+), 3827 deletions(-) create mode 100644 lib/Target/X86/X86FlagsCopyLowering.cpp delete mode 100644 test/CodeGen/X86/clobber-fi0.ll delete mode 100644 test/CodeGen/X86/eflags-copy-expansion.mir create mode 100644 test/CodeGen/X86/flags-copy-lowering.mir