This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from af9a90b34ad [NFC] Fix missing testfile change of rL350299 new 4956e307f3e [NewPM] Port Msan
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: bindings/go/llvm/InstrumentationBindings.cpp | 5 +- bindings/go/llvm/InstrumentationBindings.h | 2 +- bindings/go/llvm/transforms_instrumentation.go | 4 +- include/llvm/InitializePasses.h | 2 +- include/llvm/Transforms/Instrumentation.h | 6 - .../Transforms/Instrumentation/MemorySanitizer.h | 48 +++++ include/llvm/Transforms/Utils/ModuleUtils.h | 5 + lib/Passes/PassBuilder.cpp | 2 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/Instrumentation/Instrumentation.cpp | 2 +- lib/Transforms/Instrumentation/MemorySanitizer.cpp | 216 ++++++++++++--------- lib/Transforms/Utils/ModuleUtils.cpp | 21 ++ .../MemorySanitizer/AArch64/vararg.ll | 1 + .../MemorySanitizer/Mips/vararg-mips64.ll | 1 + .../MemorySanitizer/Mips/vararg-mips64el.ll | 1 + .../MemorySanitizer/PowerPC/vararg-ppc64.ll | 1 + .../MemorySanitizer/PowerPC/vararg-ppc64le.ll | 1 + .../MemorySanitizer/X86/vararg-too-large.ll | 2 + test/Instrumentation/MemorySanitizer/X86/vararg.ll | 1 + .../MemorySanitizer/X86/vararg_call.ll | 6 + test/Instrumentation/MemorySanitizer/alloca.ll | 10 + .../Instrumentation/MemorySanitizer/array_types.ll | 5 + test/Instrumentation/MemorySanitizer/atomics.ll | 6 + .../MemorySanitizer/byval-alignment.ll | 2 + .../MemorySanitizer/check-constant-shadow.ll | 2 + .../MemorySanitizer/check_access_address.ll | 2 + test/Instrumentation/MemorySanitizer/csr.ll | 4 + .../MemorySanitizer/global_ctors_2to3.ll | 17 -- .../instrumentation-with-call-threshold.ll | 11 ++ .../MemorySanitizer/manual-shadow.ll | 11 ++ .../MemorySanitizer/masked-store-load.ll | 6 + .../MemorySanitizer/missing_origin.ll | 2 + .../MemorySanitizer/msan_asm_conservative.ll | 6 + test/Instrumentation/MemorySanitizer/msan_basic.ll | 10 +- .../MemorySanitizer/msan_kernel_basic.ll | 2 + .../MemorySanitizer/msan_x86_bts_asm.ll | 6 + .../MemorySanitizer/msan_x86intrinsics.ll | 5 + .../MemorySanitizer/mul_by_constant.ll | 2 + test/Instrumentation/MemorySanitizer/nosanitize.ll | 2 + .../MemorySanitizer/origin-alignment.ll | 6 + .../MemorySanitizer/origin-array.ll | 2 + test/Instrumentation/MemorySanitizer/pr32842.ll | 1 + .../MemorySanitizer/return_from_main.ll | 2 + .../MemorySanitizer/store-long-origin.ll | 2 + .../MemorySanitizer/store-origin.ll | 8 + .../MemorySanitizer/str-nobuiltin.ll | 1 + .../Instrumentation/MemorySanitizer/unreachable.ll | 1 + .../MemorySanitizer/unsized_type.ll | 1 + .../MemorySanitizer/vector_arith.ll | 2 + test/Instrumentation/MemorySanitizer/vector_cmp.ll | 2 + test/Instrumentation/MemorySanitizer/vector_cvt.ll | 2 + .../Instrumentation/MemorySanitizer/vector_pack.ll | 2 + .../MemorySanitizer/vector_shift.ll | 2 + .../MemorySanitizer/with-call-type-size.ll | 4 +- 54 files changed, 348 insertions(+), 129 deletions(-) create mode 100644 include/llvm/Transforms/Instrumentation/MemorySanitizer.h delete mode 100644 test/Instrumentation/MemorySanitizer/global_ctors_2to3.ll