Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp95 JSTaggedValue constpoolVal = JSTaggedValue::Hole(); in ExecutePatchMain() local
97 constpoolVal = thread->GetCurrentEcmaContext()->FindConstpool(patchFile, mainMethodId); in ExecutePatchMain()
99 constpoolVal = thread->GetCurrentEcmaContext()->FindConstpool(patchFile, 0); in ExecutePatchMain()
101 ASSERT(!constpoolVal.IsHole()); in ExecutePatchMain()
102 JSHandle<ConstantPool> constpool(thread, constpoolVal); in ExecutePatchMain()
/arkcompiler/ets_runtime/ecmascript/
Decma_context.cpp449 JSTaggedValue constpoolVal = constpoolIter->second; in ProcessNativeDelete() local
450 if (constpoolVal.IsHeapObject()) { in ProcessNativeDelete()
451 TaggedObject *obj = constpoolVal.GetTaggedObject(); in ProcessNativeDelete()
477 JSTaggedValue constpoolVal = constpoolIter->second; in ProcessReferences() local
478 if (constpoolVal.IsHeapObject()) { in ProcessReferences()
479 TaggedObject *obj = constpoolVal.GetTaggedObject(); in ProcessReferences()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dpanda_file_translator.cpp113 …JSTaggedValue constpoolVal = vm->GetJSThread()->GetCurrentEcmaContext()->FindConstpool(jsPandaFile… in GenerateProgram() local
114 if (constpoolVal.IsHole()) { in GenerateProgram()
119 constpool = JSHandle<ConstantPool>(vm->GetJSThread(), constpoolVal); in GenerateProgram()