Home
last modified time | relevance | path

Searched refs:mspace (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/space/
Ddlmalloc_space.cc41 void* mspace, uint8_t* begin, uint8_t* end, uint8_t* limit, in DlMallocSpace() argument
45 mspace_(mspace) { in DlMallocSpace()
46 CHECK(mspace != nullptr); in DlMallocSpace()
54 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size); in CreateFromMemMap() local
55 if (mspace == nullptr) { in CreateFromMemMap()
70 mem_map, initial_size, name, mspace, begin, end, begin + capacity, growth_limit, in CreateFromMemMap()
73 return new DlMallocSpace(mem_map, initial_size, name, mspace, begin, end, begin + capacity, in CreateFromMemMap()
323 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment) REQUIRES_SHARED(Locks::mutator_lock_) { in ArtDlMallocMoreCore() argument
328 if (UNLIKELY(dlmalloc_space == nullptr || dlmalloc_space->GetMspace() != mspace)) { in ArtDlMallocMoreCore()
331 if (code_cache->OwnsSpace(mspace)) { in ArtDlMallocMoreCore()
[all …]
Ddlmalloc_space.h142 DlMallocSpace(MemMap* mem_map, size_t initial_size, const std::string& name, void* mspace,
/art/runtime/gc/allocator/
Ddlmalloc.h61 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment);
/art/runtime/jit/
Djit_code_cache.h199 bool OwnsSpace(const void* mspace) const NO_THREAD_SAFETY_ANALYSIS { in OwnsSpace() argument
200 return mspace == code_mspace_ || mspace == data_mspace_; in OwnsSpace()
203 void* MoreCore(const void* mspace, intptr_t increment);
Djit_code_cache.cc1333 void* JitCodeCache::MoreCore(const void* mspace, intptr_t increment) NO_THREAD_SAFETY_ANALYSIS { in MoreCore() argument
1334 if (code_mspace_ == mspace) { in MoreCore()
1339 DCHECK_EQ(data_mspace_, mspace); in MoreCore()