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

#include <SVFFileSystem.h>

Public Member Functions

template<typename SVFTypeCreator , typename SVFTypeFiller , typename SVFValueCreator , typename SVFValueFiller , typename StInfoCreator >
void createObjs (const cJSON *svfModuleJson, SVFTypeCreator typeCreator, SVFTypeFiller typeFiller, SVFValueCreator valueCreator, SVFValueFiller valueFiller, StInfoCreator stInfoCreator)
 
SVFValuegetSVFValuePtr (size_t id) const
 
SVFTypegetSVFTypePtr (size_t id) const
 
StInfogetStInfoPtr (size_t id) const
 
const cJSONgetFieldJson () const
 

Private Attributes

const cJSONsvfModuleFieldJson = nullptr
 
ReaderPtrPool< SVFTypesvfTypePool
 
ReaderPtrPool< StInfostInfoPool
 
ReaderPtrPool< SVFValuesvfValuePool
 

Friends

class SVFIRReader
 

Detailed Description

Definition at line 957 of file SVFFileSystem.h.

Member Function Documentation

◆ createObjs()

void SVF::SVFModuleReader::createObjs ( const cJSON svfModuleJson,
SVFTypeCreator  typeCreator,
SVFTypeFiller  typeFiller,
SVFValueCreator  valueCreator,
SVFValueFiller  valueFiller,
StInfoCreator  stInfoCreator 
)
inline

Definition at line 971 of file SVFFileSystem.h.

974 {
975 assert(!svfModuleFieldJson && "SVFModule Already created?");
977 "svfModuleJson not an JSON object?");
978
979 const cJSON* const allSVFType = svfModuleJson->child;
982
983 const cJSON* const allStInfo = allSVFType->next;
985 stInfoPool.createObjs(allStInfo, stInfoCreator); // Only need SVFType*
986
987 svfTypePool.fillObjs(typeFiller); // Only need SVFType* & StInfo*
988
989 const cJSON* const allSVFValue = allStInfo->next;
992 svfValuePool.fillObjs(valueFiller); // Need SVFType* & SVFValue*
993
995 }
#define ABORT_IFNOT(condition, msg)
#define CHECK_JSON_KEY(obj)
ReaderPtrPool< SVFValue > svfValuePool
const cJSON * svfModuleFieldJson
ReaderPtrPool< StInfo > stInfoPool
ReaderPtrPool< SVFType > svfTypePool
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
bool jsonIsObject(const cJSON *item)
Definition cJSON.h:104
struct cJSON * child
Definition cJSON.h:109
struct cJSON * next
Definition cJSON.h:106

◆ getFieldJson()

const cJSON * SVF::SVFModuleReader::getFieldJson ( ) const
inline

Definition at line 1010 of file SVFFileSystem.h.

1011 {
1012 return svfModuleFieldJson;
1013 }

◆ getStInfoPtr()

StInfo * SVF::SVFModuleReader::getStInfoPtr ( size_t  id) const
inline

Definition at line 1005 of file SVFFileSystem.h.

1006 {
1007 return stInfoPool.getPtr(id);
1008 }

◆ getSVFTypePtr()

SVFType * SVF::SVFModuleReader::getSVFTypePtr ( size_t  id) const
inline

Definition at line 1001 of file SVFFileSystem.h.

1002 {
1003 return svfTypePool.getPtr(id);
1004 }

◆ getSVFValuePtr()

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

Definition at line 997 of file SVFFileSystem.h.

998 {
999 return svfValuePool.getPtr(id);
1000 }

Friends And Related Symbol Documentation

◆ SVFIRReader

Definition at line 959 of file SVFFileSystem.h.

Member Data Documentation

◆ stInfoPool

ReaderPtrPool<StInfo> SVF::SVFModuleReader::stInfoPool
private

Definition at line 964 of file SVFFileSystem.h.

◆ svfModuleFieldJson

const cJSON* SVF::SVFModuleReader::svfModuleFieldJson = nullptr
private

Definition at line 962 of file SVFFileSystem.h.

◆ svfTypePool

ReaderPtrPool<SVFType> SVF::SVFModuleReader::svfTypePool
private

Definition at line 963 of file SVFFileSystem.h.

◆ svfValuePool

ReaderPtrPool<SVFValue> SVF::SVFModuleReader::svfValuePool
private

Definition at line 965 of file SVFFileSystem.h.


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