Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
SVF::SVFModule Class Reference

#include <SVFModule.h>

Public Types

typedef std::vector< const SVFFunction * > FunctionSetType
 
typedef std::vector< SVFLLVMValue * > GlobalSetType
 
typedef std::vector< SVFLLVMValue * > AliasSetType
 
typedef std::vector< SVFLLVMValue * > ConstantType
 
typedef std::vector< SVFLLVMValue * > OtherValueType
 
typedef FunctionSetType::iterator iterator
 Iterators type def.
 
typedef FunctionSetType::const_iterator const_iterator
 
typedef GlobalSetType::iterator global_iterator
 
typedef GlobalSetType::const_iterator const_global_iterator
 
typedef AliasSetType::iterator alias_iterator
 
typedef AliasSetType::const_iterator const_alias_iterator
 
typedef ConstantType::iterator cdata_iterator
 
typedef ConstantType::const_iterator const_cdata_iterator
 
typedef OtherValueType::iterator ovalue_iterator
 
typedef OtherValueType::const_iterator const_ovalue_iterator
 

Public Member Functions

 ~SVFModule ()
 
const SVFFunctiongetSVFFunction (const std::string &name)
 
const FunctionSetTypegetFunctionSet () const
 
const ConstantTypegetConstantSet () const
 
const GlobalSetTypegetGlobalSet () const
 
const AliasSetTypegetAliasSet () const
 
const OtherValueTypegetOtherValueSet () const
 
void addFunctionSet (SVFFunction *svfFunc)
 
void addGlobalSet (SVFLLVMValue *glob)
 
void addAliasSet (SVFLLVMValue *alias)
 
void addConstant (SVFLLVMValue *cd)
 
void addOtherValue (SVFLLVMValue *ov)
 
global_iterator global_begin ()
 
const_global_iterator global_begin () const
 
global_iterator global_end ()
 
const_global_iterator global_end () const
 
alias_iterator alias_begin ()
 
const_alias_iterator alias_begin () const
 
alias_iterator alias_end ()
 
const_alias_iterator alias_end () const
 
cdata_iterator constant_begin ()
 
const_cdata_iterator constant_begin () const
 
cdata_iterator constant_end ()
 
const_cdata_iterator constant_end () const
 

Static Public Member Functions

static SVFModulegetSVFModule ()
 
static void releaseSVFModule ()
 

Private Member Functions

 SVFModule ()=default
 Constructors.
 

Private Attributes

FunctionSetType FunctionSet
 The Functions in the module.
 
GlobalSetType GlobalSet
 The Global Variables in the module.
 
AliasSetType AliasSet
 The Aliases in the module.
 
ConstantType ConstantSet
 The ConstantData in the module.
 
OtherValueType OtherValueSet
 All other values in the module.
 

Static Private Attributes

static SVFModulesvfModule = nullptr
 

Friends

class SVFIRWriter
 
class SVFIRReader
 

Detailed Description

Definition at line 40 of file SVFModule.h.

Member Typedef Documentation

◆ alias_iterator

typedef AliasSetType::iterator SVF::SVFModule::alias_iterator

Definition at line 57 of file SVFModule.h.

◆ AliasSetType

Definition at line 48 of file SVFModule.h.

◆ cdata_iterator

typedef ConstantType::iterator SVF::SVFModule::cdata_iterator

Definition at line 59 of file SVFModule.h.

◆ const_alias_iterator

typedef AliasSetType::const_iterator SVF::SVFModule::const_alias_iterator

Definition at line 58 of file SVFModule.h.

◆ const_cdata_iterator

typedef ConstantType::const_iterator SVF::SVFModule::const_cdata_iterator

Definition at line 60 of file SVFModule.h.

◆ const_global_iterator

typedef GlobalSetType::const_iterator SVF::SVFModule::const_global_iterator

Definition at line 56 of file SVFModule.h.

◆ const_iterator

typedef FunctionSetType::const_iterator SVF::SVFModule::const_iterator

Definition at line 54 of file SVFModule.h.

◆ const_ovalue_iterator

typedef OtherValueType::const_iterator SVF::SVFModule::const_ovalue_iterator

Definition at line 62 of file SVFModule.h.

◆ ConstantType

Definition at line 49 of file SVFModule.h.

◆ FunctionSetType

Definition at line 46 of file SVFModule.h.

◆ global_iterator

typedef GlobalSetType::iterator SVF::SVFModule::global_iterator

Definition at line 55 of file SVFModule.h.

◆ GlobalSetType

Definition at line 47 of file SVFModule.h.

◆ iterator

typedef FunctionSetType::iterator SVF::SVFModule::iterator

Iterators type def.

Definition at line 53 of file SVFModule.h.

◆ OtherValueType

Definition at line 50 of file SVFModule.h.

◆ ovalue_iterator

typedef OtherValueType::iterator SVF::SVFModule::ovalue_iterator

Definition at line 61 of file SVFModule.h.

Constructor & Destructor Documentation

◆ SVFModule()

SVF::SVFModule::SVFModule ( )
privatedefault

Constructors.

◆ ~SVFModule()

SVFModule::~SVFModule ( )

Definition at line 34 of file SVFModule.cpp.

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}
static void destory()
Definition ExtAPI.cpp:52
static void unset(void)
Deletes the (singleton) allocator.
GlobalSetType GlobalSet
The Global Variables in the module.
Definition SVFModule.h:67
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
FunctionSetType FunctionSet
The Functions in the module.
Definition SVFModule.h:66
static void destroy()
Definition ThreadAPI.h:108
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ addAliasSet()

void SVF::SVFModule::addAliasSet ( SVFLLVMValue alias)
inline

Definition at line 93 of file SVFModule.h.

94 {
95 AliasSet.push_back(alias);
96 }

◆ addConstant()

void SVF::SVFModule::addConstant ( SVFLLVMValue cd)
inline

Definition at line 97 of file SVFModule.h.

98 {
99 ConstantSet.push_back(cd);
100 }

◆ addFunctionSet()

void SVF::SVFModule::addFunctionSet ( SVFFunction svfFunc)
inline

Definition at line 85 of file SVFModule.h.

86 {
87 FunctionSet.push_back(svfFunc);
88 }

◆ addGlobalSet()

void SVF::SVFModule::addGlobalSet ( SVFLLVMValue glob)
inline

Definition at line 89 of file SVFModule.h.

90 {
91 GlobalSet.push_back(glob);
92 }

◆ addOtherValue()

void SVF::SVFModule::addOtherValue ( SVFLLVMValue ov)
inline

Definition at line 101 of file SVFModule.h.

102 {
103 OtherValueSet.push_back(ov);
104 }

◆ alias_begin() [1/2]

alias_iterator SVF::SVFModule::alias_begin ( )
inline

Definition at line 127 of file SVFModule.h.

128 {
129 return AliasSet.begin();
130 }

◆ alias_begin() [2/2]

const_alias_iterator SVF::SVFModule::alias_begin ( ) const
inline

Definition at line 131 of file SVFModule.h.

132 {
133 return AliasSet.begin();
134 }

◆ alias_end() [1/2]

alias_iterator SVF::SVFModule::alias_end ( )
inline

Definition at line 135 of file SVFModule.h.

136 {
137 return AliasSet.end();
138 }

◆ alias_end() [2/2]

const_alias_iterator SVF::SVFModule::alias_end ( ) const
inline

Definition at line 139 of file SVFModule.h.

140 {
141 return AliasSet.end();
142 }

◆ constant_begin() [1/2]

cdata_iterator SVF::SVFModule::constant_begin ( )
inline

Definition at line 144 of file SVFModule.h.

145 {
146 return ConstantSet.begin();
147 }

◆ constant_begin() [2/2]

const_cdata_iterator SVF::SVFModule::constant_begin ( ) const
inline

Definition at line 148 of file SVFModule.h.

149 {
150 return ConstantSet.begin();
151 }

◆ constant_end() [1/2]

cdata_iterator SVF::SVFModule::constant_end ( )
inline

Definition at line 152 of file SVFModule.h.

153 {
154 return ConstantSet.end();
155 }

◆ constant_end() [2/2]

const_cdata_iterator SVF::SVFModule::constant_end ( ) const
inline

Definition at line 156 of file SVFModule.h.

157 {
158 return ConstantSet.end();
159 }

◆ getAliasSet()

const AliasSetType & SVF::SVFModule::getAliasSet ( ) const
inline

Definition at line 174 of file SVFModule.h.

175 {
176 return AliasSet;
177 }

◆ getConstantSet()

const ConstantType & SVF::SVFModule::getConstantSet ( ) const
inline

Definition at line 166 of file SVFModule.h.

167 {
168 return ConstantSet;
169 }

◆ getFunctionSet()

const FunctionSetType & SVF::SVFModule::getFunctionSet ( ) const
inline

Definition at line 162 of file SVFModule.h.

163 {
164 return FunctionSet;
165 }

◆ getGlobalSet()

const GlobalSetType & SVF::SVFModule::getGlobalSet ( ) const
inline

Definition at line 170 of file SVFModule.h.

171 {
172 return GlobalSet;
173 }

◆ getOtherValueSet()

const OtherValueType & SVF::SVFModule::getOtherValueSet ( ) const
inline

Definition at line 178 of file SVFModule.h.

179 {
180 return OtherValueSet;
181 }

◆ getSVFFunction()

const SVFFunction * SVFModule::getSVFFunction ( const std::string &  name)

Definition at line 51 of file SVFModule.cpp.

52{
53 for (const SVFFunction* fun : getFunctionSet())
54 {
55 if (fun->getName() == name)
56 {
57 return fun;
58 }
59 }
60 return nullptr;
61}
const char *const name
Definition cJSON.h:264
const FunctionSetType & getFunctionSet() const
Definition SVFModule.h:162

◆ getSVFModule()

SVFModule * SVFModule::getSVFModule ( )
static

Definition at line 63 of file SVFModule.cpp.

64{
65 if (svfModule == nullptr)
66 {
67 svfModule = new SVFModule;
68 }
69 return svfModule;
70}
SVFModule()=default
Constructors.
static SVFModule * svfModule
Definition SVFModule.h:65

◆ global_begin() [1/2]

global_iterator SVF::SVFModule::global_begin ( )
inline

Iterators

Definition at line 110 of file SVFModule.h.

111 {
112 return GlobalSet.begin();
113 }

◆ global_begin() [2/2]

const_global_iterator SVF::SVFModule::global_begin ( ) const
inline

Definition at line 114 of file SVFModule.h.

115 {
116 return GlobalSet.begin();
117 }

◆ global_end() [1/2]

global_iterator SVF::SVFModule::global_end ( )
inline

Definition at line 118 of file SVFModule.h.

119 {
120 return GlobalSet.end();
121 }

◆ global_end() [2/2]

const_global_iterator SVF::SVFModule::global_end ( ) const
inline

Definition at line 122 of file SVFModule.h.

123 {
124 return GlobalSet.end();
125 }

◆ releaseSVFModule()

void SVFModule::releaseSVFModule ( )
static

Definition at line 72 of file SVFModule.cpp.

73{
74 assert(svfModule != nullptr && "SVFModule is not initialized?");
75 delete svfModule;
76 svfModule = nullptr;
77}

Friends And Related Symbol Documentation

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 43 of file SVFModule.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 42 of file SVFModule.h.

Member Data Documentation

◆ AliasSet

AliasSetType SVF::SVFModule::AliasSet
private

The Aliases in the module.

Definition at line 68 of file SVFModule.h.

◆ ConstantSet

ConstantType SVF::SVFModule::ConstantSet
private

The ConstantData in the module.

Definition at line 69 of file SVFModule.h.

◆ FunctionSet

FunctionSetType SVF::SVFModule::FunctionSet
private

The Functions in the module.

Definition at line 66 of file SVFModule.h.

◆ GlobalSet

GlobalSetType SVF::SVFModule::GlobalSet
private

The Global Variables in the module.

Definition at line 67 of file SVFModule.h.

◆ OtherValueSet

OtherValueType SVF::SVFModule::OtherValueSet
private

All other values in the module.

Definition at line 70 of file SVFModule.h.

◆ svfModule

SVFModule * SVFModule::svfModule = nullptr
staticprivate

Definition at line 65 of file SVFModule.h.


The documentation for this class was generated from the following files: