Home
last modified time | relevance | path

Searched refs:isMachineCode (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dmem_map_allocator.cpp27 MemMap MemMapAllocator::Allocate(size_t size, size_t alignment, bool regular, bool isMachineCode) in Allocate() argument
39 int prot = isMachineCode ? PAGE_PROT_EXEC_READ : PAGE_PROT_READWRITE; in Allocate()
40 PageTagType type = isMachineCode ? PageTagType::MACHINE_CODE : PageTagType::HEAP; in Allocate()
52 int prot = isMachineCode ? PAGE_PROT_EXEC_READ : PAGE_PROT_READWRITE; in Allocate()
53 PageTagType type = isMachineCode ? PageTagType::MACHINE_CODE : PageTagType::HEAP; in Allocate()
Dheap_region_allocator.cpp35 bool isMachineCode = (flags == RegionSpaceFlag::IN_MACHINE_CODE_SPACE); in AllocateAlignedRegion() local
36 … MemMapAllocator::GetInstance()->Allocate(capacity, DEFAULT_REGION_SIZE, isRegular, isMachineCode); in AllocateAlignedRegion()
Dmem_map_allocator.h251 MemMap Allocate(size_t size, size_t alignment, bool regular, bool isMachineCode);