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() = default;
23 MemorySanitizerOptions(int TrackOrigins
, bool Recover
, bool Kernel
)
24 : TrackOrigins(TrackOrigins
), Recover(Recover
), Kernel(Kernel
) {}
30 // Insert MemorySanitizer instrumentation (detection of uninitialized reads)
32 createMemorySanitizerLegacyPassPass(MemorySanitizerOptions Options
= {});
34 /// A function pass for msan instrumentation.
36 /// Instruments functions to detect unitialized reads. This function pass
37 /// inserts calls to runtime library functions. If the functions aren't declared
38 /// yet, the pass inserts the declarations. Otherwise the existing globals are
40 struct MemorySanitizerPass
: public PassInfoMixin
<MemorySanitizerPass
> {
41 MemorySanitizerPass(MemorySanitizerOptions Options
) : Options(Options
) {}
43 PreservedAnalyses
run(Function
&F
, FunctionAnalysisManager
&FAM
);
46 MemorySanitizerOptions Options
;
50 #endif /* LLVM_TRANSFORMS_INSTRUMENTATION_MEMORYSANITIZER_H */