blob: 2d3f15933c6fb2ea71825091ad974e74f58c9211 (
plain)
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
54
55
56
57
58
59
60
61
62
63
|
//=== AnalysisContext.h - Analysis context for Path Sens analysis --*- C++ -*-//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines AnalysisContext, a class that manages the analysis context
// data for path sensitive analysis.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_ANALYSIS_ANALYSISCONTEXT_H
#define LLVM_CLANG_ANALYSIS_ANALYSISCONTEXT_H
#include "llvm/ADT/OwningPtr.h"
#include <map>
namespace clang {
class Decl;
class Stmt;
class CFG;
class LiveVariables;
class ParentMap;
/// AnalysisContext contains the context data for the function or method under
/// analysis.
class AnalysisContext {
Decl *D;
Stmt *Body;
// AnalysisContext owns the following data.
CFG *cfg;
LiveVariables *liveness;
ParentMap *PM;
public:
AnalysisContext() : D(0), Body(0), cfg(0), liveness(0), PM(0) {}
~AnalysisContext();
void setDecl(Decl* d) { D = d; }
Decl *getDecl() { return D; }
Stmt *getBody();
CFG *getCFG();
ParentMap &getParentMap();
LiveVariables *getLiveVariables();
};
class AnalysisContextManager {
std::map<Decl*, AnalysisContext> Contexts;
public:
typedef std::map<Decl*, AnalysisContext>::iterator iterator;
AnalysisContext *getContext(Decl *D);
};
}
#endif
|