Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFModule.cpp
Go to the documentation of this file.
1//===- SVFModule.cpp -- Helper functions for pointer analysis--------------//
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#include "SVF-LLVM/SVFModule.h"
25#include "SVFIR/ObjTypeInfo.h"
26#include "Util/SVFUtil.h"
27#include "Util/SVFStat.h"
28#include "Util/Options.h"
29
30using namespace SVF;
31
33
35{
36 for (const SVFFunction* f : FunctionSet)
37 delete f;
38 for (const SVFLLVMValue* v: GlobalSet)
39 delete v;
40 for (const SVFLLVMValue* v: AliasSet)
41 delete v;
42 for (const SVFLLVMValue * c : ConstantSet)
43 delete c;
44 for (const SVFLLVMValue* o : OtherValueSet)
45 delete o;
49}
50
51const SVFFunction* SVFModule::getSVFFunction(const std::string& name)
52{
53 for (const SVFFunction* fun : getFunctionSet())
54 {
55 if (fun->getName() == name)
56 {
57 return fun;
58 }
59 }
60 return nullptr;
61}
62
64{
65 if (svfModule == nullptr)
66 {
67 svfModule = new SVFModule;
68 }
69 return svfModule;
70}
71
73{
74 assert(svfModule != nullptr && "SVFModule is not initialized?");
75 delete svfModule;
76 svfModule = nullptr;
77}
const char *const name
Definition cJSON.h:264
static void destory()
Definition ExtAPI.cpp:52
static void unset(void)
Deletes the (singleton) allocator.
SVFModule()=default
Constructors.
GlobalSetType GlobalSet
The Global Variables in the module.
Definition SVFModule.h:67
static void releaseSVFModule()
Definition SVFModule.cpp:72
AliasSetType AliasSet
The Aliases in the module.
Definition SVFModule.h:68
ConstantType ConstantSet
The ConstantData in the module.
Definition SVFModule.h:69
OtherValueType OtherValueSet
All other values in the module.
Definition SVFModule.h:70
const FunctionSetType & getFunctionSet() const
Definition SVFModule.h:162
static SVFModule * getSVFModule()
Definition SVFModule.cpp:63
static SVFModule * svfModule
Definition SVFModule.h:65
FunctionSetType FunctionSet
The Functions in the module.
Definition SVFModule.h:66
const SVFFunction * getSVFFunction(const std::string &name)
Definition SVFModule.cpp:51
static void destroy()
Definition ThreadAPI.h:108
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74