Home
last modified time | relevance | path

Searched refs:codeMemPool (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_function.h89 codeMemPoolAllocator.SetMemPool(codeMemPool); in SetMemPool()
571 if (codeMemPool != nullptr) { in ReleaseCodeMemory()
573 delete codeMemPool; in ReleaseCodeMemory() local
587 if (codeMemPool == nullptr) { in GetCodeMempool()
588 codeMemPool = new ThreadLocalMemPool(memPoolCtrler, "func code mempool"); in GetCodeMempool()
589 codeMemPoolAllocator.SetMemPool(codeMemPool); in GetCodeMempool()
591 return codeMemPool; in GetCodeMempool()
605 if (codeMemPool == nullptr) { in GetCodeMempoolAllocator()
606 codeMemPool = new ThreadLocalMemPool(memPoolCtrler, "func code mempool"); in GetCodeMempoolAllocator()
607 codeMemPoolAllocator.SetMemPool(codeMemPool); in GetCodeMempoolAllocator()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_function.cpp423 if (codeMemPool == nullptr) { in Dump()
713 codeMemPool = GetCodeMemPool(); in NewBody()
714 SetBody(codeMemPool->New<BlockNode>()); in NewBody()
715 SetLastPosBody(codeMemPool->New<BlockNode>()); in NewBody()
753 if (codeMemPool != nullptr) { in SetUpGDBEnv()
754 delete codeMemPool; in SetUpGDBEnv()
756 codeMemPool = new ThreadLocalMemPool(memPoolCtrler, "tmp debug"); in SetUpGDBEnv()
757 codeMemPoolAllocator.SetMemPool(codeMemPool); in SetUpGDBEnv()
762 delete codeMemPool; in ResetGDBEnv()
763 codeMemPool = nullptr; in ResetGDBEnv()