Searched refs:table_mem_map_ (Results 1 – 2 of 2) sorted by relevance
81 table_mem_map_.reset(MemMap::MapAnonymous("indirect ref table", nullptr, table_bytes, in IndirectReferenceTable()84 CHECK(table_mem_map_.get() != nullptr) << error_str; in IndirectReferenceTable()85 CHECK_EQ(table_mem_map_->Size(), table_bytes); in IndirectReferenceTable()86 CHECK(table_mem_map_->Begin() != nullptr); in IndirectReferenceTable()87 } else if (table_mem_map_.get() == nullptr || in IndirectReferenceTable()88 table_mem_map_->Size() != table_bytes || in IndirectReferenceTable()89 table_mem_map_->Begin() == nullptr) { in IndirectReferenceTable()90 table_mem_map_.reset(); in IndirectReferenceTable()94 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin()); in IndirectReferenceTable()102 return table_mem_map_.get() != nullptr; in IsValid()[all …]
386 std::unique_ptr<MemMap> table_mem_map_; variable