This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6995f18af0e [InstCombine] add udiv/urem tests with constant numerator; NFC new 16e76036330 [ValueTracking] Add assertions that the starting Depth in i [...] new 463fa38bbcb [RegAlloc] Make sure live-ranges reflect the state of the I [...] new 0f87ccdc995 Re-apply "Introduce FuzzMutate library"
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/FuzzMutate/IRMutator.h | 106 +++++++++ include/llvm/FuzzMutate/OpDescriptor.h | 193 +++++++++++++++ include/llvm/FuzzMutate/Operations.h | 54 +++++ include/llvm/FuzzMutate/Random.h | 97 ++++++++ include/llvm/FuzzMutate/RandomIRBuilder.h | 62 +++++ lib/Analysis/ValueTracking.cpp | 3 + lib/CMakeLists.txt | 1 + lib/CodeGen/RegAllocBasic.cpp | 5 +- lib/CodeGen/RegAllocGreedy.cpp | 5 +- lib/FuzzMutate/CMakeLists.txt | 12 + lib/FuzzMutate/IRMutator.cpp | 183 +++++++++++++++ lib/{ => FuzzMutate}/LLVMBuild.txt | 38 +-- lib/FuzzMutate/OpDescriptor.cpp | 38 +++ lib/FuzzMutate/Operations.cpp | 312 +++++++++++++++++++++++++ lib/FuzzMutate/RandomIRBuilder.cpp | 140 +++++++++++ lib/LLVMBuild.txt | 1 + unittests/CMakeLists.txt | 1 + unittests/FuzzMutate/CMakeLists.txt | 10 + unittests/FuzzMutate/OperationsTest.cpp | 323 ++++++++++++++++++++++++++ unittests/FuzzMutate/ReservoirSamplerTest.cpp | 69 ++++++ 20 files changed, 1618 insertions(+), 35 deletions(-) create mode 100644 include/llvm/FuzzMutate/IRMutator.h create mode 100644 include/llvm/FuzzMutate/OpDescriptor.h create mode 100644 include/llvm/FuzzMutate/Operations.h create mode 100644 include/llvm/FuzzMutate/Random.h create mode 100644 include/llvm/FuzzMutate/RandomIRBuilder.h create mode 100644 lib/FuzzMutate/CMakeLists.txt create mode 100644 lib/FuzzMutate/IRMutator.cpp copy lib/{ => FuzzMutate}/LLVMBuild.txt (58%) create mode 100644 lib/FuzzMutate/OpDescriptor.cpp create mode 100644 lib/FuzzMutate/Operations.cpp create mode 100644 lib/FuzzMutate/RandomIRBuilder.cpp create mode 100644 unittests/FuzzMutate/CMakeLists.txt create mode 100644 unittests/FuzzMutate/OperationsTest.cpp create mode 100644 unittests/FuzzMutate/ReservoirSamplerTest.cpp