Searched refs:code_heap (Results 1 – 1 of 1) sorted by relevance
/art/runtime/jit/ |
D | jit_memory_region.cc | 279 MemMap* code_heap = nullptr; in Initialize() local 281 code_heap = &non_exec_pages_; in Initialize() 283 code_heap = &exec_pages_; in Initialize() 285 if (code_heap != nullptr) { in Initialize() 288 CheckedCall(mprotect, "create code heap", code_heap->Begin(), code_heap->Size(), kProtRW); in Initialize() 289 exec_mspace_ = create_mspace_with_base(code_heap->Begin(), exec_end_, false /*locked*/); in Initialize() 294 CheckedCall(mprotect, "protect code heap", code_heap->Begin(), code_heap->Size(), kProtR); in Initialize()
|