Static Value-Flow Analysis
Loading...
Searching...
No Matches
MTA.h
Go to the documentation of this file.
1//===- MTA.h -- Analysis of multithreaded programs-------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * MTA.h
25 *
26 * Created on: May 14, 2014
27 * Author: Yulei Sui, Peng Di
28 *
29 * The implementation is based on
30 * Yulei Sui, Peng Di, and Jingling Xue. "Sparse Flow-Sensitive Pointer Analysis for Multithreaded Programs".
31 * 2016 International Symposium on Code Generation and Optimization (CGO'16)
32 */
33
34#ifndef MTA_H_
35#define MTA_H_
36
37#include <set>
38#include <vector>
39#include "SVFIR/SVFValue.h"
40
41namespace SVF
42{
43
44class PointerAnalysis;
45class AndersenWaveDiff;
46class ThreadCallGraph;
47class MTAStat;
48class TCT;
49class MHP;
50class LockAnalysis;
51
55class MTA
56{
57
58public:
60 MTA();
61
63 virtual ~MTA();
64
65
67 virtual bool runOnModule(SVFIR* module);
69 virtual MHP* computeMHP();
73 virtual void detect();
74
75 // Not implemented for now
76 // void dump(Module &module, MHP *mhp, LockAnalysis *lsa);
77
79 {
80 return mhp;
81 }
82
84 {
85 return lsa;
86 }
87private:
89 std::unique_ptr<TCT> tct;
90 std::unique_ptr<MTAStat> stat;
93};
94
95} // End namespace SVF
96
97#endif /* MTA_H_ */
Definition MHP.h:46
Definition MTA.h:56
LockAnalysis * getLockAnalysis()
Definition MTA.h:83
virtual LockAnalysis * computeLocksets(TCT *tct)
Compute locksets.
Definition MTA.cpp:75
ThreadCallGraph * tcg
Definition MTA.h:88
std::unique_ptr< TCT > tct
Definition MTA.h:89
virtual MHP * computeMHP()
Compute MHP.
Definition MTA.cpp:82
virtual void detect()
Perform detection.
virtual ~MTA()
Destructor.
Definition MTA.cpp:48
LockAnalysis * lsa
Definition MTA.h:92
MHP * getMHP()
Definition MTA.h:78
MHP * mhp
Definition MTA.h:91
MTA()
Constructor.
Definition MTA.cpp:43
std::unique_ptr< MTAStat > stat
Definition MTA.h:90
virtual bool runOnModule(SVFIR *module)
We start the pass here.
Definition MTA.cpp:61
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74