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

#include <SVFFileSystem.h>

Public Member Functions

 SVFModuleWriter (const SVFModule *svfModule)
 
size_t getSVFValueID (const SVFValue *value)
 
const SVFValuegetSVFValuePtr (size_t id) const
 
size_t getSVFTypeID (const SVFType *type)
 
size_t getStInfoID (const StInfo *stInfo)
 
size_t sizeSVFValuePool () const
 

Private Attributes

WriterPtrPool< SVFTypesvfTypePool
 
WriterPtrPool< StInfostInfoPool
 
WriterPtrPool< SVFValuesvfValuePool
 

Friends

class SVFIRWriter
 

Detailed Description

Definition at line 342 of file SVFFileSystem.h.

Constructor & Destructor Documentation

◆ SVFModuleWriter()

SVF::SVFModuleWriter::SVFModuleWriter ( const SVFModule svfModule)

Definition at line 919 of file SVFFileSystem.cpp.

920{
921 // TODO: SVFType & StInfo are managed by SymbolTableInfo. Refactor it?
923
924 const auto& svfTypes = symTab->getSVFTypes();
925 svfTypePool.reserve(svfTypes.size());
926 for (const SVFType* type : svfTypes)
927 {
928 svfTypePool.saveID(type);
929 }
930
931 const auto& stInfos = symTab->getStInfos();
932 stInfoPool.reserve(stInfos.size());
933 for (const StInfo* stInfo : stInfos)
934 {
935 stInfoPool.saveID(stInfo);
936 }
937
938 svfValuePool.reserve(svfModule->getFunctionSet().size() +
939 svfModule->getConstantSet().size() +
940 svfModule->getOtherValueSet().size());
941}
newitem type
Definition cJSON.cpp:2739
WriterPtrPool< SVFValue > svfValuePool
WriterPtrPool< StInfo > stInfoPool
WriterPtrPool< SVFType > svfTypePool
static SymbolTableInfo * SymbolInfo()
Singleton design here to make sure we only have one instance during any analysis.
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ getStInfoID()

size_t SVF::SVFModuleWriter::getStInfoID ( const StInfo stInfo)
inline

Definition at line 366 of file SVFFileSystem.h.

367 {
368 return stInfoPool.getID(stInfo);
369 }

◆ getSVFTypeID()

size_t SVF::SVFModuleWriter::getSVFTypeID ( const SVFType type)
inline

Definition at line 362 of file SVFFileSystem.h.

363 {
364 return svfTypePool.getID(type);
365 }

◆ getSVFValueID()

size_t SVF::SVFModuleWriter::getSVFValueID ( const SVFValue value)
inline

Definition at line 354 of file SVFFileSystem.h.

355 {
356 return svfValuePool.getID(value);
357 }

◆ getSVFValuePtr()

const SVFValue * SVF::SVFModuleWriter::getSVFValuePtr ( size_t  id) const
inline

Definition at line 358 of file SVFFileSystem.h.

359 {
360 return svfValuePool.getPtr(id);
361 }

◆ sizeSVFValuePool()

size_t SVF::SVFModuleWriter::sizeSVFValuePool ( ) const
inline

Definition at line 370 of file SVFFileSystem.h.

371 {
372 return svfValuePool.size();
373 }

Friends And Related Symbol Documentation

◆ SVFIRWriter

Definition at line 344 of file SVFFileSystem.h.

Member Data Documentation

◆ stInfoPool

WriterPtrPool<StInfo> SVF::SVFModuleWriter::stInfoPool
private

Definition at line 348 of file SVFFileSystem.h.

◆ svfTypePool

WriterPtrPool<SVFType> SVF::SVFModuleWriter::svfTypePool
private

Definition at line 347 of file SVFFileSystem.h.

◆ svfValuePool

WriterPtrPool<SVFValue> SVF::SVFModuleWriter::svfValuePool
private

Definition at line 349 of file SVFFileSystem.h.


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