Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Daot_file_info.cpp32 uint64_t textStart = 0; in CalCallSiteInfo() local
51 textStart = addr; in CalCallSiteInfo()
70 ret = std::make_tuple(textStart, stackmapAddr, delta, calleeRegInfo); in CalCallSiteInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dfile_generators.cpp280 uint64_t textStart = 0; in RollbackTextSize() local
282 textStart = aotInfo_.GetCurTextSecOffset() - textSize; in RollbackTextSize()
284 textStart = aotInfo_.GetCurTextSecOffset() - textSize - rodataSize; in RollbackTextSize()
285 textStart = AlignDown(textStart, AOTFileInfo::DATA_SEC_ALIGN); in RollbackTextSize()
287 return textStart; in RollbackTextSize()
/arkcompiler/ets_runtime/ecmascript/
Dframes.cpp316 uint64_t textStart = 0; in Advance() local
317 …std::tie(textStart, stackMapAddr_, fpDeltaPrevFrameSp_, calleeRegInfo_) = CalCallSiteInfo(optimize… in Advance()
318 ASSERT(optimizedReturnAddr_ >= textStart); in Advance()
319 optimizedReturnAddr_ = optimizedReturnAddr_ - textStart; in Advance()