VMCacheRef
inline VMCacheRef* CacheRef() const { return fCacheRef; }
friend struct VMCacheRef;
VMCacheRef* fCacheRef;
VMCacheRef(VMCache* cache);
VMCacheRef* cache_ref;
VMCacheRef* CacheRef() const { return cache_ref; }
void SetCacheRef(VMCacheRef* cacheRef) { this->cache_ref = cacheRef; }
struct VMCacheRef;
gCacheRefObjectCache = create_object_cache("cache refs", sizeof(VMCacheRef),
VMCacheRef* cacheRef = page->CacheRef();
VMCacheRef::VMCacheRef(VMCache* cache)
fCacheRef = new(gCacheRefObjectCache, allocationFlags) VMCacheRef(this);