Searched defs:DynRegionInfo (Results 1 – 1 of 1) sorted by relevance
76 struct DynRegionInfo { struct77 DynRegionInfo() : Addr(nullptr), Size(0), EntSize(0) {} in DynRegionInfo() argument78 DynRegionInfo(const void *A, uint64_t S, uint64_t ES) in DynRegionInfo() function81 const void *Addr;83 uint64_t Size;85 uint64_t EntSize;87 template <typename Type> ArrayRef<Type> getAsArrayRef() const { in getAsArrayRef()