1 //===- Transforms/Instrumentation/MemorySanitizer.h - MSan Pass -----------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the memoy sanitizer pass.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_MEMORYSANITIZER_H
14 #define LLVM_TRANSFORMS_INSTRUMENTATION_MEMORYSANITIZER_H
16 #include "llvm/IR/PassManager.h"
17 #include "llvm/Pass.h"
21 struct MemorySanitizerOptions
{
22 MemorySanitizerOptions() : MemorySanitizerOptions(0, false, false){};
23 MemorySanitizerOptions(int TrackOrigins
, bool Recover
, bool Kernel
);
29 // Insert MemorySanitizer instrumentation (detection of uninitialized reads)
31 createMemorySanitizerLegacyPassPass(MemorySanitizerOptions Options
= {});
33 /// A function pass for msan instrumentation.
35 /// Instruments functions to detect unitialized reads. This function pass
36 /// inserts calls to runtime library functions. If the functions aren't declared
37 /// yet, the pass inserts the declarations. Otherwise the existing globals are
39 struct MemorySanitizerPass
: public PassInfoMixin
<MemorySanitizerPass
> {
40 MemorySanitizerPass(MemorySanitizerOptions Options
) : Options(Options
) {}
42 PreservedAnalyses
run(Function
&F
, FunctionAnalysisManager
&FAM
);
43 PreservedAnalyses
run(Module
&M
, ModuleAnalysisManager
&AM
);
46 MemorySanitizerOptions Options
;
50 #endif /* LLVM_TRANSFORMS_INSTRUMENTATION_MEMORYSANITIZER_H */