Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_codegen.cpp138 uint8_t *CodeInfo::AllocaInReqSecBuffer(uintptr_t size, size_t alignSize) in AllocaInReqSecBuffer() function in panda::ecmascript::kungfu::CodeInfo
154 addr = AllocaInReqSecBuffer(size, AOTFileInfo::PAGE_ALIGN); in AllocaCodeSection()
157 addr = AllocaInReqSecBuffer(size, AOTFileInfo::TEXT_SEC_ALIGN); in AllocaCodeSection()
160 addr = AllocaInReqSecBuffer(size); in AllocaCodeSection()
177 addr = curSec.isSequentialAOTSec() ? AllocaInReqSecBuffer(size, AOTFileInfo::PAGE_ALIGN) in AllocaDataSection()
181 … addr = curSec.isSequentialAOTSec() ? AllocaInReqSecBuffer(size, AOTFileInfo::DATA_SEC_ALIGN) in AllocaDataSection()
185 … addr = curSec.isSequentialAOTSec() ? AllocaInReqSecBuffer(size) : AllocaInNotReqSecBuffer(size); in AllocaDataSection()
Dllvm_codegen.h76 uint8_t *AllocaInReqSecBuffer(uintptr_t size, size_t alignSize = 0);