Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
SVF::CallMU< Cond > Class Template Reference

#include <MSSAMuChi.h>

Inheritance diagram for SVF::CallMU< Cond >:
SVF::MSSAMU< Cond >

Public Member Functions

 CallMU (const CallICFGNode *cs, const MemRegion *m, Cond c=true)
 Constructor/Destructor for MU.
 
virtual ~CallMU ()
 
const CallICFGNodegetCallSite () const
 Return callsite.
 
const SVFBasicBlockgetBasicBlock () const
 Return basic block.
 
virtual void dump ()
 Print MU.
 
- Public Member Functions inherited from SVF::MSSAMU< Cond >
 MSSAMU (MUTYPE t, const MemRegion *m, Cond c)
 Constructor/Destructor for MU.
 
virtual ~MSSAMU ()
 
const MemRegiongetMR () const
 Return MR.
 
MUTYPE getType () const
 Return type.
 
void setVer (MRVer *v)
 Set Ver.
 
MRVergetMRVer () const
 Get Ver.
 
Cond getCond () const
 Return condition.
 
bool operator< (const MSSAMU &rhs) const
 Avoid adding duplicated mus.
 

Static Public Member Functions

static bool classof (const CallMU *)
 Methods for support type inquiry through isa, cast, and dyn_cast:
 
static bool classof (const MSSAMU< Cond > *mu)
 

Private Attributes

const CallICFGNodecallsite
 

Additional Inherited Members

- Public Types inherited from SVF::MSSAMU< Cond >
enum  MUTYPE { LoadMSSAMU , CallMSSAMU , RetMSSAMU }
 
- Protected Attributes inherited from SVF::MSSAMU< Cond >
MUTYPE type
 
const MemRegionmr
 
MRVerver
 
Cond cond
 

Detailed Description

template<class Cond>
class SVF::CallMU< Cond >

CallMU is annotated at callsite, representing a memory object is indirect read by callee

Definition at line 222 of file MSSAMuChi.h.

Constructor & Destructor Documentation

◆ CallMU()

template<class Cond >
SVF::CallMU< Cond >::CallMU ( const CallICFGNode cs,
const MemRegion m,
Cond  c = true 
)
inline

Constructor/Destructor for MU.

Definition at line 231 of file MSSAMuChi.h.

231 :
233 {
234 }
const CallICFGNode * callsite
Definition MSSAMuChi.h:226
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:76

◆ ~CallMU()

template<class Cond >
virtual SVF::CallMU< Cond >::~CallMU ( )
inlinevirtual

Definition at line 235 of file MSSAMuChi.h.

236 {
237
238 }

Member Function Documentation

◆ classof() [1/2]

template<class Cond >
static bool SVF::CallMU< Cond >::classof ( const CallMU< Cond > *  )
inlinestatic

Methods for support type inquiry through isa, cast, and dyn_cast:

Definition at line 255 of file MSSAMuChi.h.

256 {
257 return true;
258 }

◆ classof() [2/2]

template<class Cond >
static bool SVF::CallMU< Cond >::classof ( const MSSAMU< Cond > *  mu)
inlinestatic

Definition at line 259 of file MSSAMuChi.h.

260 {
261 return mu->getType() == MSSAMU<Cond>::CallMSSAMU;
262 }

◆ dump()

template<class Cond >
virtual void SVF::CallMU< Cond >::dump ( )
inlinevirtual

Print MU.

Reimplemented from SVF::MSSAMU< Cond >.

Definition at line 266 of file MSSAMuChi.h.

267 {
268 SVFUtil::outs() << "CALMU(MR_" << this->getMR()->getMRID() << "V_" << this->getMRVer()->getSSAVersion() << ") \t" <<
269 this->getMR()->dumpStr() << "\n";
270 }
MRVERSION getSSAVersion() const
Return SSA version.
Definition MSSAMuChi.h:70
MRVer * getMRVer() const
Get Ver.
Definition MSSAMuChi.h:138
const MemRegion * getMR() const
Return MR.
Definition MSSAMuChi.h:122
MRID getMRID() const
Return memory region ID.
Definition MemRegion.h:82
std::string dumpStr() const
Dump string.
Definition MemRegion.h:97
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52

◆ getBasicBlock()

template<class Cond >
const SVFBasicBlock * SVF::CallMU< Cond >::getBasicBlock ( ) const
inline

Return basic block.

Definition at line 248 of file MSSAMuChi.h.

249 {
250 return callsite->getBB();
251 }
virtual const SVFBasicBlock * getBB() const
Return the basic block of this ICFGNode.
Definition ICFGNode.h:81

◆ getCallSite()

template<class Cond >
const CallICFGNode * SVF::CallMU< Cond >::getCallSite ( ) const
inline

Return callsite.

Definition at line 242 of file MSSAMuChi.h.

243 {
244 return callsite;
245 }

Member Data Documentation

◆ callsite

template<class Cond >
const CallICFGNode* SVF::CallMU< Cond >::callsite
private

Definition at line 226 of file MSSAMuChi.h.


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