ASan: add blacklist file to ASan pass options. Clang patch for this will follow.
[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
38 // Insert AddressSanitizer (address sanity checking) instrumentation
39 FunctionPass *createAddressSanitizerFunctionPass(
40     bool CheckInitOrder = false, bool CheckUseAfterReturn = false,
41     bool CheckLifetime = false, StringRef BlacklistFile = StringRef());
42 ModulePass *createAddressSanitizerModulePass(
43     bool CheckInitOrder = false, StringRef BlacklistFile = StringRef());
44 // Insert MemorySanitizer instrumentation (detection of uninitialized reads)
45 FunctionPass *createMemorySanitizerPass();
46 // Insert ThreadSanitizer (race detection) instrumentation
47 FunctionPass *createThreadSanitizerPass();
48
49
50 // BoundsChecking - This pass instruments the code to perform run-time bounds
51 // checking on loads, stores, and other memory intrinsics.
52 FunctionPass *createBoundsCheckingPass();
53
54 } // End llvm namespace
55
56 #endif