This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from babe120 [yaml] Add a ScalarTraits for mapping endian aware types. new 311dd52 [lit] Fix an uninitialized var on Windows. new 70cf01c [stack-protection] Add support for MSVC buffer security check new b1953d8 [libfuzzer] custom crossover interface function.
The 3 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/Target/TargetLowering.h | 10 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 39 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 22 +- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 30 +- lib/CodeGen/StackProtector.cpp | 45 ++- lib/CodeGen/TargetLoweringBase.cpp | 6 +- lib/Fuzzer/FuzzerExtFunctions.def | 5 + lib/Fuzzer/FuzzerInterface.h | 9 + lib/Fuzzer/FuzzerInternal.h | 2 + lib/Fuzzer/FuzzerMutate.cpp | 23 ++ lib/Fuzzer/test/CMakeLists.txt | 1 + lib/Fuzzer/test/CustomCrossOverTest.cpp | 57 +++ lib/Fuzzer/test/fuzzer-customcrossover.test | 10 + lib/Target/X86/X86ISelLowering.cpp | 35 +- lib/Target/X86/X86ISelLowering.h | 4 +- test/CodeGen/X86/stack-protector-msvc.ll | 40 +++ test/CodeGen/X86/stack-protector-weight.ll | 40 ++- test/CodeGen/X86/stack-protector.ll | 438 +++++++++++++++++++++++ utils/lit/lit/TestRunner.py | 3 +- 19 files changed, 777 insertions(+), 42 deletions(-) create mode 100644 lib/Fuzzer/test/CustomCrossOverTest.cpp create mode 100644 lib/Fuzzer/test/fuzzer-customcrossover.test create mode 100644 test/CodeGen/X86/stack-protector-msvc.ll