Lines Matching defs:mspace
40 void* mspace, uint8_t* begin, uint8_t* end, uint8_t* limit,
44 mspace_(mspace) {
45 CHECK(mspace != nullptr);
53 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size);
54 if (mspace == nullptr) {
55 LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")";
69 mem_map, initial_size, name, mspace, begin, end, begin + capacity, growth_limit,
72 return new DlMallocSpace(mem_map, initial_size, name, mspace, begin, end, begin + capacity,
115 // create mspace using our backing storage starting at begin and with a footprint of
322 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment) SHARED_REQUIRES(Locks::mutator_lock_) {
327 if (UNLIKELY(dlmalloc_space == nullptr || dlmalloc_space->GetMspace() != mspace)) {
330 if (code_cache->OwnsSpace(mspace)) {
331 return code_cache->MoreCore(mspace, increment);
338 if (cur_dlmalloc_space->GetMspace() == mspace) {
344 CHECK(dlmalloc_space != nullptr) << "Couldn't find DlmMallocSpace with mspace=" << mspace;