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

Bookkeeping class to keep track of the IDs of objects that doesn't have any ID. E.g., SVFValue, XXXEdge. More...

#include <SVFFileSystem.h>

Public Member Functions

size_t getID (const T *ptr)
 
void saveID (const T *ptr)
 
const TgetPtr (size_t id) const
 
const std::vector< const T * > & getPool () const
 
size_t size () const
 
void reserve (size_t size)
 
auto begin () const
 
auto end () const
 

Private Attributes

Map< const T *, size_tptrToId
 
std::vector< const T * > ptrPool
 

Detailed Description

template<typename T>
class SVF::WriterPtrPool< T >

Bookkeeping class to keep track of the IDs of objects that doesn't have any ID. E.g., SVFValue, XXXEdge.

Template Parameters
T

Definition at line 229 of file SVFFileSystem.h.

Member Function Documentation

◆ begin()

template<typename T >
auto SVF::WriterPtrPool< T >::begin ( ) const
inline

Definition at line 275 of file SVFFileSystem.h.

276 {
277 return ptrPool.cbegin();
278 }
std::vector< const T * > ptrPool

◆ end()

template<typename T >
auto SVF::WriterPtrPool< T >::end ( ) const
inline

Definition at line 280 of file SVFFileSystem.h.

281 {
282 return ptrPool.cend();
283 }

◆ getID()

template<typename T >
size_t SVF::WriterPtrPool< T >::getID ( const T ptr)
inline

Definition at line 236 of file SVFFileSystem.h.

237 {
238 if (!ptr)
239 return 0;
240
241 typename decltype(ptrToId)::iterator it;
242 bool inserted;
243 std::tie(it, inserted) = ptrToId.emplace(ptr, 1 + ptrPool.size());
244 if (inserted)
245 ptrPool.push_back(ptr);
246 return it->second;
247 }
Map< const T *, size_t > ptrToId
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ getPool()

template<typename T >
const std::vector< const T * > & SVF::WriterPtrPool< T >::getPool ( ) const
inline

Definition at line 260 of file SVFFileSystem.h.

261 {
262 return ptrPool;
263 }

◆ getPtr()

template<typename T >
const T * SVF::WriterPtrPool< T >::getPtr ( size_t  id) const
inline

Definition at line 254 of file SVFFileSystem.h.

255 {
256 assert(id <= ptrPool.size() && "Invalid ID");
257 return id ? ptrPool[id - 1] : nullptr;
258 }

◆ reserve()

template<typename T >
void SVF::WriterPtrPool< T >::reserve ( size_t  size)
inline

Definition at line 270 of file SVFFileSystem.h.

271 {
272 ptrPool.reserve(size);
273 }
size_t size() const

◆ saveID()

template<typename T >
void SVF::WriterPtrPool< T >::saveID ( const T ptr)
inline

Definition at line 249 of file SVFFileSystem.h.

250 {
251 getID(ptr);
252 }
size_t getID(const T *ptr)

◆ size()

template<typename T >
size_t SVF::WriterPtrPool< T >::size ( ) const
inline

Definition at line 265 of file SVFFileSystem.h.

266 {
267 return ptrPool.size();
268 }

Member Data Documentation

◆ ptrPool

template<typename T >
std::vector<const T*> SVF::WriterPtrPool< T >::ptrPool
private

Definition at line 233 of file SVFFileSystem.h.

◆ ptrToId

template<typename T >
Map<const T*, size_t> SVF::WriterPtrPool< T >::ptrToId
private

Definition at line 232 of file SVFFileSystem.h.


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