aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/Checkers/DereferenceChecker.h
blob: 688cf641491d0f733eec5d4ab4abfebe9456899e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//== NullDerefChecker.h - Null dereference checker --------------*- C++ -*--==//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This defines NullDerefChecker and UndefDerefChecker, two builtin checks
// in GRExprEngine that check for null and undefined pointers at loads
// and stores.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_DEREFCHECKER
#define LLVM_CLANG_DEREFCHECKER

#include "clang/Analysis/PathSensitive/Checker.h"
#include "clang/Analysis/PathSensitive/BugType.h"

namespace clang {

class ExplodedNode;

class NullDerefChecker : public Checker {
  BuiltinBug *BT;
  llvm::SmallVector<ExplodedNode*, 2> ImplicitNullDerefNodes;

public:
  NullDerefChecker() : BT(0) {}
  ExplodedNode *CheckLocation(const Stmt *S, ExplodedNode *Pred,
                              const GRState *state, SVal V,GRExprEngine &Eng);

  static void *getTag();
  typedef llvm::SmallVectorImpl<ExplodedNode*>::iterator iterator;
  iterator implicit_nodes_begin() { return ImplicitNullDerefNodes.begin(); }
  iterator implicit_nodes_end() { return ImplicitNullDerefNodes.end(); }
};

class UndefDerefChecker : public Checker {
  BuiltinBug *BT;
public:
  UndefDerefChecker() : BT(0) {}

  ExplodedNode *CheckLocation(const Stmt *S, ExplodedNode *Pred,
                              const GRState *state, SVal V, GRExprEngine &Eng);

  static void *getTag();
};

} // end clang namespace
#endif