Home
last modified time | relevance | path

Searched refs:SetObjectToCache (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/snapshot/tests/
Dsnapshot_test.cpp121 constpool->SetObjectToCache(thread, 0, funcFunc.GetTaggedValue()); in HWTEST_F_L0()
122 constpool->SetObjectToCache(thread, 1, dateFunc.GetTaggedValue()); in HWTEST_F_L0()
123 constpool->SetObjectToCache(thread, 2, str1.GetTaggedValue()); in HWTEST_F_L0()
124 constpool->SetObjectToCache(thread, 3, numberFunc.GetTaggedValue()); in HWTEST_F_L0()
125 constpool->SetObjectToCache(thread, 4, str2.GetTaggedValue()); in HWTEST_F_L0()
126 constpool->SetObjectToCache(thread, 5, str1.GetTaggedValue()); in HWTEST_F_L0()
127 constpool->SetObjectToCache(thread, 6, str3.GetTaggedValue()); in HWTEST_F_L0()
128 constpool->SetObjectToCache(thread, 7, str4.GetTaggedValue()); in HWTEST_F_L0()
129 constpool->SetObjectToCache(thread, 8, str4.GetTaggedValue()); in HWTEST_F_L0()
130 constpool->SetObjectToCache(thread, 9, str5.GetTaggedValue()); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.cpp56 constpool->SetObjectToCache(thread, literal, val); in GetClassLiteralFromCache()
221 sharedCP->SetObjectToCache(thread, i, methodLiteral.GetTaggedValue()); in UpdateConstpoolWhenDeserialAI()
224 sharedCP->SetObjectToCache(thread, i, valHandle.GetTaggedValue()); in UpdateConstpoolWhenDeserialAI()
225 unsharedCP->SetObjectToCache(thread, i, valHandle.GetTaggedValue()); in UpdateConstpoolWhenDeserialAI()
229 unsharedCP->SetObjectToCache(thread, i, valHandle.GetTaggedValue()); in UpdateConstpoolWhenDeserialAI()
Dprogram_object.h216 sconstpool->SetObjectToCache(thread, i, val);
220 sconstpool->SetObjectToCache(thread, i, methodLiteral.GetTaggedValue());
223 sconstpool->SetObjectToCache(thread, i, val);
248 dst->SetObjectToCache(vm->GetJSThread(), i, val); in CopySharedMethodAOTLiteralInfo()
454 inline void SetObjectToCache(JSThread *thread, uint32_t index, JSTaggedValue value) in SetObjectToCache() function
473 constpoolHandle->SetObjectToCache(thread, index, value); in CASSetObjectToCache()
642 constpoolHandle->SetObjectToCache(thread, index, val); in GetLiteralFromCache()
Dpanda_file_translator.cpp224 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), JSTaggedValue(string)); in ParseConstPool()
243 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), obj.GetTaggedValue()); in ParseConstPool()
252 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), arr.GetTaggedValue()); in ParseConstPool()
259 … constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), classLiteral.GetTaggedValue()); in ParseConstPool()
271 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), method.GetTaggedValue()); in ParseConstPool()
315 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), obj.GetTaggedValue()); in ParseFuncAndLiteralConstPool()
323 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), arr.GetTaggedValue()); in ParseFuncAndLiteralConstPool()
330 … constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), classLiteral.GetTaggedValue()); in ParseFuncAndLiteralConstPool()
342 constpool->SetObjectToCache(thread, value.GetConstpoolIndex(), method.GetTaggedValue()); in ParseFuncAndLiteralConstPool()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/
Dsnapshot_constantpool_data.cpp158 aotLiteralInfo->SetObjectToCache(thread_, i, JSTaggedValue(methodOffset)); in CollectLiteralInfo()
169 …snapshotConstantPool->SetObjectToCache(thread_, constantPoolIndex, aotLiteralInfo.GetTaggedValue()… in CollectLiteralInfo()
228 snapshotCp->SetObjectToCache(thread_, data.constantPoolIdx_, JSTaggedValue::Hole()); in StoreDataToGlobalData()
259 aotLiteralInfo->SetObjectToCache(thread_, 0, JSTaggedValue(initValue)); in StoreDataToGlobalData()
264 aotLiteralInfo->SetObjectToCache(thread_, 0, JSTaggedValue(methodOffset)); in StoreDataToGlobalData()
268 … snapshotCp->SetObjectToCache(thread_, data.constantPoolIdx_, aotLiteralInfo.GetTaggedValue()); in StoreDataToGlobalData()
274 … snapshotCp->SetObjectToCache(thread_, data.constantPoolIdx_, JSTaggedValue(methodOffset)); in StoreDataToGlobalData()
276 snapshotCp->SetObjectToCache(thread_, data.constantPoolIdx_, JSTaggedValue::Hole()); in StoreDataToGlobalData()
Dsnapshot_global_data.cpp57 newCP->SetObjectToCache(thread, item.constpoolIdx_, JSTaggedValue(entryIndex)); in Resolve()
74 aotLiteralInfo->SetObjectToCache(thread, i, JSTaggedValue(entryIndex)); in Resolve()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Daot_file_manager.h124 void SetObjectToCache(JSThread *thread, uint32_t index, JSTaggedValue value);
Daot_file_manager.cpp43 void AOTLiteralInfo::SetObjectToCache(JSThread *thread, uint32_t index, JSTaggedValue value) in SetObjectToCache() function in panda::ecmascript::AOTLiteralInfo