Static Value-Flow Analysis
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SVFModule.h
Go to the documentation of this file.
1//===- SVFModule.h -- SVFModule* class----------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <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 * SVFModule.h
25 *
26 * Created on: Aug 4, 2017
27 * Author: Xiaokang Fan
28 */
29
30#ifndef INCLUDE_SVFMODULE_H_
31#define INCLUDE_SVFMODULE_H_
32
35#include "Util/ThreadAPI.h"
36
37namespace SVF
38{
39
41{
42 friend class SVFIRWriter;
43 friend class SVFIRReader;
44
45public:
46 typedef std::vector<const SVFFunction*> FunctionSetType;
47 typedef std::vector<SVFLLVMValue*> GlobalSetType;
48 typedef std::vector<SVFLLVMValue*> AliasSetType;
49 typedef std::vector<SVFLLVMValue*> ConstantType;
50 typedef std::vector<SVFLLVMValue*> OtherValueType;
51
53 typedef FunctionSetType::iterator iterator;
54 typedef FunctionSetType::const_iterator const_iterator;
55 typedef GlobalSetType::iterator global_iterator;
56 typedef GlobalSetType::const_iterator const_global_iterator;
57 typedef AliasSetType::iterator alias_iterator;
58 typedef AliasSetType::const_iterator const_alias_iterator;
59 typedef ConstantType::iterator cdata_iterator;
60 typedef ConstantType::const_iterator const_cdata_iterator;
61 typedef OtherValueType::iterator ovalue_iterator;
62 typedef OtherValueType::const_iterator const_ovalue_iterator;
63
64private:
71
73 SVFModule() = default;
74
75public:
76 static SVFModule* getSVFModule();
77 static void releaseSVFModule();
78
79 ~SVFModule();
80
81
82 const SVFFunction* getSVFFunction(const std::string& name);
83
86 {
87 FunctionSet.push_back(svfFunc);
88 }
90 {
91 GlobalSet.push_back(glob);
92 }
93 inline void addAliasSet(SVFLLVMValue* alias)
94 {
95 AliasSet.push_back(alias);
96 }
98 {
99 ConstantSet.push_back(cd);
100 }
102 {
103 OtherValueSet.push_back(ov);
104 }
105
107
111 {
112 return GlobalSet.begin();
113 }
115 {
116 return GlobalSet.begin();
117 }
119 {
120 return GlobalSet.end();
121 }
123 {
124 return GlobalSet.end();
125 }
126
128 {
129 return AliasSet.begin();
130 }
132 {
133 return AliasSet.begin();
134 }
136 {
137 return AliasSet.end();
138 }
140 {
141 return AliasSet.end();
142 }
143
145 {
146 return ConstantSet.begin();
147 }
149 {
150 return ConstantSet.begin();
151 }
153 {
154 return ConstantSet.end();
155 }
157 {
158 return ConstantSet.end();
159 }
161
162 inline const FunctionSetType& getFunctionSet() const
163 {
164 return FunctionSet;
165 }
166 inline const ConstantType& getConstantSet() const
167 {
168 return ConstantSet;
169 }
170 inline const GlobalSetType& getGlobalSet() const
171 {
172 return GlobalSet;
173 }
174 inline const AliasSetType& getAliasSet() const
175 {
176 return AliasSet;
177 }
178 inline const OtherValueType& getOtherValueSet() const
179 {
180 return OtherValueSet;
181 }
182};
183
184} // End namespace SVF
185
186#endif /* INCLUDE_SVFMODULE_H_ */
const char *const name
Definition cJSON.h:264
SVFModule()=default
Constructors.
std::vector< SVFLLVMValue * > ConstantType
Definition SVFModule.h:49
const_alias_iterator alias_begin() const
Definition SVFModule.h:131
const_alias_iterator alias_end() const
Definition SVFModule.h:139
const_cdata_iterator constant_begin() const
Definition SVFModule.h:148
OtherValueType::const_iterator const_ovalue_iterator
Definition SVFModule.h:62
alias_iterator alias_end()
Definition SVFModule.h:135
GlobalSetType::iterator global_iterator
Definition SVFModule.h:55
global_iterator global_begin()
Definition SVFModule.h:110
GlobalSetType GlobalSet
The Global Variables in the module.
Definition SVFModule.h:67
static void releaseSVFModule()
Definition SVFModule.cpp:72
void addConstant(SVFLLVMValue *cd)
Definition SVFModule.h:97
GlobalSetType::const_iterator const_global_iterator
Definition SVFModule.h:56
AliasSetType::const_iterator const_alias_iterator
Definition SVFModule.h:58
void addGlobalSet(SVFLLVMValue *glob)
Definition SVFModule.h:89
AliasSetType AliasSet
The Aliases in the module.
Definition SVFModule.h:68
std::vector< SVFLLVMValue * > AliasSetType
Definition SVFModule.h:48
ConstantType ConstantSet
The ConstantData in the module.
Definition SVFModule.h:69
void addOtherValue(SVFLLVMValue *ov)
Definition SVFModule.h:101
FunctionSetType::iterator iterator
Iterators type def.
Definition SVFModule.h:53
std::vector< SVFLLVMValue * > OtherValueType
Definition SVFModule.h:50
OtherValueType::iterator ovalue_iterator
Definition SVFModule.h:61
const OtherValueType & getOtherValueSet() const
Definition SVFModule.h:178
alias_iterator alias_begin()
Definition SVFModule.h:127
void addFunctionSet(SVFFunction *svfFunc)
Definition SVFModule.h:85
global_iterator global_end()
Definition SVFModule.h:118
std::vector< SVFLLVMValue * > GlobalSetType
Definition SVFModule.h:47
friend class SVFIRReader
Definition SVFModule.h:43
OtherValueType OtherValueSet
All other values in the module.
Definition SVFModule.h:70
const GlobalSetType & getGlobalSet() const
Definition SVFModule.h:170
const FunctionSetType & getFunctionSet() const
Definition SVFModule.h:162
ConstantType::const_iterator const_cdata_iterator
Definition SVFModule.h:60
const AliasSetType & getAliasSet() const
Definition SVFModule.h:174
static SVFModule * getSVFModule()
Definition SVFModule.cpp:63
const_cdata_iterator constant_end() const
Definition SVFModule.h:156
AliasSetType::iterator alias_iterator
Definition SVFModule.h:57
cdata_iterator constant_begin()
Definition SVFModule.h:144
friend class SVFIRWriter
Definition SVFModule.h:42
ConstantType::iterator cdata_iterator
Definition SVFModule.h:59
std::vector< const SVFFunction * > FunctionSetType
Definition SVFModule.h:46
cdata_iterator constant_end()
Definition SVFModule.h:152
static SVFModule * svfModule
Definition SVFModule.h:65
FunctionSetType FunctionSet
The Functions in the module.
Definition SVFModule.h:66
void addAliasSet(SVFLLVMValue *alias)
Definition SVFModule.h:93
const_global_iterator global_begin() const
Definition SVFModule.h:114
const ConstantType & getConstantSet() const
Definition SVFModule.h:166
const_global_iterator global_end() const
Definition SVFModule.h:122
FunctionSetType::const_iterator const_iterator
Definition SVFModule.h:54
const SVFFunction * getSVFFunction(const std::string &name)
Definition SVFModule.cpp:51
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74