/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | aot_compilation_env.cpp | 51 JSTaggedValue AOTCompilationEnv::FindConstpool(const JSPandaFile *jsPandaFile, panda_file::File::EntityId id) const in FindConstpool() function in panda::ecmascript::AOTCompilationEnv 53 return thread_->GetCurrentEcmaContext()->FindConstpool(jsPandaFile, id); in FindConstpool() 56 JSTaggedValue AOTCompilationEnv::FindConstpool(const JSPandaFile *jsPandaFile, int32_t index) const in FindConstpool() function in panda::ecmascript::AOTCompilationEnv 58 return thread_->GetCurrentEcmaContext()->FindConstpool(jsPandaFile, index); in FindConstpool()
|
H A D | aot_compilation_env.h | 39 JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, panda_file::File::EntityId id) const override; 40 JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, int32_t index) const override;
|
H A D | compilation_env.h | 71 virtual JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, panda_file::File::EntityId id) const = 0; 72 virtual JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, int32_t index) const = 0;
|
H A D | jit_compilation_env.h | 41 JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, panda_file::File::EntityId id) const override; 42 JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, int32_t index) const override;
|
H A D | jit_compilation_env.cpp | 69 JSTaggedValue JitCompilationEnv::FindConstpool([[maybe_unused]] const JSPandaFile *jsPandaFile, in FindConstpool() function in panda::ecmascript::JitCompilationEnv 81 JSTaggedValue JitCompilationEnv::FindConstpool([[maybe_unused]] const JSPandaFile *jsPandaFile, in FindConstpool() function in panda::ecmascript::JitCompilationEnv
|
H A D | ntype_bytecode_lowering.h | 82 return compilationEnv_->FindConstpool(jsPandaFile_, cpId); in GetConstantpoolValue()
|
H A D | ntype_hcr_lowering.h | 71 return compilationEnv_->FindConstpool(jsPandaFile_, cpId); in GetConstantpoolValue()
|
H A D | type_info_accessors.h | 492 ConstantPool::Cast(compilationEnv_->FindConstpool(jsPandaFile_, cpId).GetTaggedObject()); in GetMethodIndex()
|
H A D | slowpath_lowering.cpp | 2782 unsharedCp = compilationEnv_->FindConstpool(compilationEnv_->GetJSPandaFile(), 0); in LowerDefineFunc()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | ecma_context.cpp | 557 JSTaggedValue EcmaContext::FindConstpool(const JSPandaFile *jsPandaFile, panda_file::File::EntityId id) in FindConstpool() function in panda::ecmascript::EcmaContext 561 return FindConstpool(jsPandaFile, index); in FindConstpool() 564 JSTaggedValue EcmaContext::FindConstpool(const JSPandaFile *jsPandaFile, int32_t index) in FindConstpool() function in panda::ecmascript::EcmaContext 570 return Runtime::GetInstance()->FindConstpool(jsPandaFile, index); in FindConstpool() 635 JSTaggedValue sharedConstpool = FindConstpool(pf.get(), index); in UpdateConstpoolWhenDeserialAI() 652 constpool = Runtime::GetInstance()->FindConstpool(jsPandaFile, index); in FindCachedConstpoolAndLoadAiIfNeeded()
|
H A D | ecma_context.h | 277 JSTaggedValue PUBLIC_API FindConstpool(const JSPandaFile *jsPandaFile, int32_t index); 279 JSTaggedValue PUBLIC_API FindConstpool(const JSPandaFile *jsPandaFile, panda_file::File::EntityId id);
|
H A D | runtime.h | 152 PUBLIC_API JSTaggedValue FindConstpool(const JSPandaFile *jsPandaFile, int32_t index);
|
H A D | runtime.cpp | 266 JSTaggedValue Runtime::FindConstpool(const JSPandaFile *jsPandaFile, int32_t index) in FindConstpool() function in panda::ecmascript::Runtime
|
/arkcompiler/ets_runtime/ecmascript/patch/ |
H A D | patch_loader.cpp | 47 JSTaggedValue constpool = thread->GetCurrentEcmaContext()->FindConstpool(baseFile, idx); in LoadPatchInternal() 152 JSTaggedValue baseConstpoolValue = context->FindConstpool(baseFile.get(), baseMethodId); in UnloadPatchInternal() 356 JSTaggedValue patchConstpoolValue = context->FindConstpool(patchFile, patchMethodId); in FindAndReplaceSameMethod() 417 JSTaggedValue patchConstpoolValue = thread->GetCurrentEcmaContext()->FindConstpool(patchFile, patchMethodId); in FindAndReplaceClassLiteral()
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/ |
H A D | snapshot_constantpool_data.cpp | 243 thread_->GetCurrentEcmaContext()->FindConstpool(jsPandaFile_, data.constantPoolId_)); in StoreDataToGlobalData() 392 JSTaggedValue shareCp = context->FindConstpool(jsPandaFile_, data.constantPoolId_); in GetUnsharedConstpool()
|
/arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/ |
H A D | pgo_type_manager.cpp | 45 return thread_->GetCurrentEcmaContext()->FindConstpool(curJSPandaFile_, cpId); in GetConstantPoolByMethodOffset()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | panda_file_translator.cpp | 150 JSTaggedValue constpoolVal = context->FindConstpool(jsPandaFile, 0); in GenerateProgram()
|