Home
last modified time | relevance | path

Searched refs:FindOrCreateUnsharedConstpool (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Daot_compilation_env.cpp61 JSTaggedValue AOTCompilationEnv::FindOrCreateUnsharedConstpool(const uint32_t methodOffset) const in FindOrCreateUnsharedConstpool() function in panda::ecmascript::AOTCompilationEnv
64 return thread_->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(cp); in FindOrCreateUnsharedConstpool()
67 JSTaggedValue AOTCompilationEnv::FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool) const in FindOrCreateUnsharedConstpool() function in panda::ecmascript::AOTCompilationEnv
69 return thread_->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(sharedConstpool); in FindOrCreateUnsharedConstpool()
Daot_compilation_env.h41 JSTaggedValue FindOrCreateUnsharedConstpool(const uint32_t methodOffset) const override;
42 JSTaggedValue FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool) const override;
Dcompilation_env.h73 virtual JSTaggedValue FindOrCreateUnsharedConstpool(const uint32_t methodOffset) const = 0;
74 virtual JSTaggedValue FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool) const = 0;
Djit_compilation_env.h43 JSTaggedValue FindOrCreateUnsharedConstpool(const uint32_t methodOffset) const override;
44 JSTaggedValue FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool) const override;
Djit_compilation_env.cpp94 JSTaggedValue JitCompilationEnv::FindOrCreateUnsharedConstpool([[maybe_unused]] const uint32_t meth… in FindOrCreateUnsharedConstpool() function in panda::ecmascript::JitCompilationEnv
105 JSTaggedValue JitCompilationEnv::FindOrCreateUnsharedConstpool([[maybe_unused]] JSTaggedValue share… in FindOrCreateUnsharedConstpool() function in panda::ecmascript::JitCompilationEnv
111 return FindOrCreateUnsharedConstpool(methodOffset); in FindOrCreateUnsharedConstpool()
Dntype_bytecode_lowering.h88 JSTaggedValue unsharedCp = compilationEnv_->FindOrCreateUnsharedConstpool(cp); in GetArrayLiteralValue()
Dntype_hcr_lowering.h76 JSTaggedValue unsharedCp = compilationEnv_->FindOrCreateUnsharedConstpool(cp); in GetArrayLiteralValue()
Dtype_info_accessors.cpp1375 JSTaggedValue unsharedCp = compilationEnv_->FindOrCreateUnsharedConstpool(methodOffset); in GetObject()
Dslowpath_lowering.cpp2728 unsharedCp = compilationEnv_->FindOrCreateUnsharedConstpool(methodOffset); in LowerDefineFunc()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.cpp102 …JSTaggedValue unsharedCp = thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpoo… in GetStringFromCache()
Dprogram_object.h513 …JSTaggedValue unsharedCp = thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpoo… in GetMethodFromCache()
Dpanda_file_translator.cpp162 … vm->GetJSThread(), context->FindOrCreateUnsharedConstpool(sconstpool.GetTaggedValue())); in GenerateProgram()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp193 FindOrCreateUnsharedConstpool(constpoolVal); in GetPatchMethod()
353 JSTaggedValue unsharedConstpool = context->FindOrCreateUnsharedConstpool(item.second); in FindAndReplaceSameMethod()
/arkcompiler/ets_runtime/ecmascript/
Decma_context.cpp511 JSTaggedValue EcmaContext::FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool) in FindOrCreateUnsharedConstpool() function in panda::ecmascript::EcmaContext
640 … JSTaggedValue unsharedConstpool = FindOrCreateUnsharedConstpool(sharedCPHandle.GetTaggedValue()); in UpdateConstpoolWhenDeserialAI()
681 FindOrCreateUnsharedConstpool(constpool); in FindOrCreateConstPool()
Decma_context.h280 JSTaggedValue PUBLIC_API FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool);
/arkcompiler/ets_runtime/ecmascript/jit/
Djit_task.cpp66 hostThread_->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpool); in PrepareCompile()
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map151 panda::ecmascript::EcmaContext::FindOrCreateUnsharedConstpool*;
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/
Dsnapshot_constantpool_data.cpp395 JSHandle<ConstantPool> cp(thread_, context->FindOrCreateUnsharedConstpool(shareCp)); in GetUnsharedConstpool()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h927 … thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpoolHandle.GetTaggedValue())); in RuntimeCreateClassWithBuffer()
3197 thread, thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpool)); in RuntimeCreatePrivateProperty()
Druntime_stubs.cpp1392 …JSTaggedValue cp = thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpool.GetTag… in DEF_RUNTIME_STUBS()
1403 …JSTaggedValue cp = thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpool.GetTag… in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.cpp7834 return thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(state->constpool); in GetUnsharedConstpool()
Dinterpreter_assembly.cpp7905 … return thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(method->GetConstantPool()); in GetUnsharedConstpool()