Home
last modified time | relevance | path

Searched refs:isLoadedAOT (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.h84 bool isLoadedAOT = jsPandaFile->IsLoadedAOT(); in CreateConstPool() local
85 if (isLoadedAOT) { in CreateConstPool()
188 bool isLoadedAOT = jsPandaFile->IsLoadedAOT(); in GetMethodFromCache() local
191 if (isLoadedAOT && val.IsInt()) { in GetMethodFromCache()
211 entryIndex, isLoadedAOT && hasEntryIndex); in GetMethodFromCache()
224 bool isLoadedAOT = jsPandaFile->IsLoadedAOT(); in GetClassLiteralFromCache() local
226 if (isLoadedAOT && val.IsAOTLiteralInfo()) { in GetClassLiteralFromCache()
236 bool needSetAotFlag = isLoadedAOT && !entryIndexes.GetTaggedValue().IsUndefined(); in GetClassLiteralFromCache()
258 bool isLoadedAOT = jsPandaFile->IsLoadedAOT(); in GetLiteralFromCache() local
260 if (isLoadedAOT && val.IsAOTLiteralInfo()) { in GetLiteralFromCache()
[all …]
Dliteral_data_extractor.h41 bool isLoadedAOT = false,
48 … bool isLoadedAOT = false, JSHandle<AOTLiteralInfo> entryIndexes = JSHandle<AOTLiteralInfo>());
57 … bool isLoadedAOT = false, uint32_t entryIndex = 0);
Dliteral_data_extractor.cpp216 … bool isLoadedAOT, uint32_t entryIndex) in DefineMethodInLiteral() argument
226 jsPandaFile, methodLiteral, constpool, entryIndex, isLoadedAOT, &canFastCall); in DefineMethodInLiteral()
227 JSHandle<JSFunction> jsFunc = factory->NewJSFunction(method, kind, isLoadedAOT, canFastCall); in DefineMethodInLiteral()
289 … bool isLoadedAOT, JSHandle<AOTLiteralInfo> entryIndexes) in ExtractObjectDatas() argument
304 …&methodId, &kind, &constpool, &entry, &isLoadedAOT](const LiteralValue &value, const LiteralTag &t… in ExtractObjectDatas()
343 bool needSetAotFlag = (isLoadedAOT && (epos % pairSize == 0) && !flag); in ExtractObjectDatas()
384 … bool isLoadedAOT, JSHandle<AOTLiteralInfo> entryIndexes) in GetDatasIgnoreType() argument
396 &methodId, &kind, &constpool, &entryPoint, &entryIndexes, &index, isLoadedAOT] in GetDatasIgnoreType()
431 bool needSetAotFlag = isLoadedAOT; in GetDatasIgnoreType()
432 if (isLoadedAOT) { in GetDatasIgnoreType()
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/
Djs_pandafile_test.cpp279 bool isLoadedAOT = pf->IsLoadedAOT(); in HWTEST_F_L0() local
280 EXPECT_EQ(isLoadedAOT, false); in HWTEST_F_L0()
283 isLoadedAOT = pf->IsLoadedAOT(); in HWTEST_F_L0()
284 EXPECT_EQ(isLoadedAOT, true); in HWTEST_F_L0()