[ASan] Support comments in ASan/TSan blacklist file as lines starting with #
[oota-llvm.git] / lib / Transforms / Instrumentation / BlackList.h
1 //===-- BlackList.h - blacklist for sanitizers ------------------*- 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 // This is a utility class for instrumentation passes (like AddressSanitizer
10 // or ThreadSanitizer) to avoid instrumenting some functions or global
11 // variables based on a user-supplied blacklist.
12 //
13 // The blacklist disables instrumentation of various functions and global
14 // variables.  Each line contains a prefix, followed by a wild card expression.
15 // Empty lines and lines starting with "#" are ignored.
16 // ---
17 // # Blacklisted items:
18 // fun:*_ZN4base6subtle*
19 // global:*global_with_bad_access_or_initialization*
20 // global-init:*global_with_initialization_issues*
21 // src:file_with_tricky_code.cc
22 // ---
23 // Note that the wild card is in fact an llvm::Regex, but * is automatically
24 // replaced with .*
25 // This is similar to the "ignore" feature of ThreadSanitizer.
26 // http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores
27 //
28 //===----------------------------------------------------------------------===//
29 //
30
31 #include "llvm/ADT/StringMap.h"
32
33 namespace llvm {
34 class Function;
35 class GlobalVariable;
36 class Module;
37 class Regex;
38 class StringRef;
39
40 class BlackList {
41  public:
42   BlackList(const StringRef Path);
43   // Returns whether either this function or it's source file are blacklisted.
44   bool isIn(const Function &F);
45   // Returns whether either this global or it's source file are blacklisted.
46   bool isIn(const GlobalVariable &G);
47   // Returns whether this module is blacklisted by filename.
48   bool isIn(const Module &M);
49   // Returns whether a global should be excluded from initialization checking.
50   bool isInInit(const GlobalVariable &G);
51  private:
52   StringMap<Regex*> Entries;
53
54   bool inSection(const StringRef Section, const StringRef Query);
55 };
56
57 }  // namespace llvm