ASan: add optional 'zero-based shadow' option to ASan passes. Always tell the values...
[oota-llvm.git] / include / llvm / Transforms / Instrumentation.h
1 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines constructor functions for instrumentation passes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_H
15 #define LLVM_TRANSFORMS_INSTRUMENTATION_H
16
17 #include "llvm/ADT/StringRef.h"
18
19 namespace llvm {
20
21 class ModulePass;
22 class FunctionPass;
23
24 // Insert edge profiling instrumentation
25 ModulePass *createEdgeProfilerPass();
26
27 // Insert optimal edge profiling instrumentation
28 ModulePass *createOptimalEdgeProfilerPass();
29
30 // Insert path profiling instrumentation
31 ModulePass *createPathProfilerPass();
32
33 // Insert GCOV profiling instrumentation
34 ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
35                                    bool Use402Format = false,
36                                    bool UseExtraChecksum = false,
37                                    bool NoRedZone = false);
38
39 // Insert AddressSanitizer (address sanity checking) instrumentation
40 FunctionPass *createAddressSanitizerFunctionPass(
41     bool CheckInitOrder = false, bool CheckUseAfterReturn = false,
42     bool CheckLifetime = false, StringRef BlacklistFile = StringRef(),
43     bool ZeroBaseShadow = false);
44 ModulePass *createAddressSanitizerModulePass(
45     bool CheckInitOrder = false, StringRef BlacklistFile = StringRef(),
46     bool ZeroBaseShadow = false);
47
48 // Insert MemorySanitizer instrumentation (detection of uninitialized reads)
49 FunctionPass *createMemorySanitizerPass(bool TrackOrigins = false,
50                                         StringRef BlacklistFile = StringRef());
51
52 // Insert ThreadSanitizer (race detection) instrumentation
53 FunctionPass *createThreadSanitizerPass(StringRef BlacklistFile = StringRef());
54
55
56 // BoundsChecking - This pass instruments the code to perform run-time bounds
57 // checking on loads, stores, and other memory intrinsics.
58 FunctionPass *createBoundsCheckingPass();
59
60 } // End llvm namespace
61
62 #endif