This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0bc0c53ebab [UpdateTestChecks] Teach the x86 asm parser to skip over th [...] new 1e086c7b69c [SLPVectorizer] Add initial alternate opcode support for ca [...] new bd8c8d75985 [SLH] Introduce a new pass to do Speculative Load Hardening [...]
The 2 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 | 5 + lib/CodeGen/MachineBasicBlock.cpp | 19 + lib/Target/X86/CMakeLists.txt | 1 + lib/Target/X86/X86.h | 2 + lib/Target/X86/X86SpeculativeLoadHardening.cpp | 1667 ++++++++++++++++++++ lib/Target/X86/X86TargetMachine.cpp | 7 + lib/Transforms/Vectorize/SLPVectorizer.cpp | 98 +- test/CodeGen/X86/speculative-load-hardening.ll | 571 +++++++ .../Transforms/SLPVectorizer/X86/alternate-cast.ll | 365 ++++- 9 files changed, 2633 insertions(+), 102 deletions(-) create mode 100644 lib/Target/X86/X86SpeculativeLoadHardening.cpp create mode 100644 test/CodeGen/X86/speculative-load-hardening.ll