Home
last modified time | relevance | path

Searched refs:ResolveMethodIndex (Results 1 – 25 of 30) sorted by relevance

12

/arkcompiler/runtime_core/static_core/runtime/interpreter/
Druntime_interface.h42 auto resolvedId = caller.GetClass()->ResolveMethodIndex(id.AsIndex()); in ResolveMethod()
59 auto resolvedId = caller->GetClass()->ResolveMethodIndex(methodId.AsIndex()); in GetMethodName()
67 auto resolvedId = caller->GetClass()->ResolveMethodIndex(methodId.AsIndex()); in GetMethodClass()
78 auto resolvedId = caller->GetClass()->ResolveMethodIndex(methodId.AsIndex()); in GetMethodArgumentsCount()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
Dinst_builder-inl.h27 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIndex()); in BuildCall()
263 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIndex()); in BuildDefaultStaticIntrinsic()
293 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex); in BuildAbsIntrinsic()
328 [[maybe_unused]] auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex); in BuildBinaryOperationIntrinsic()
342 [[maybe_unused]] auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex); in BuildSqrtIntrinsic()
355 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex); in BuildIsNanIntrinsic()
414 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharIsUpperCaseIntrinsic()
441 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharToUpperCaseIntrinsic()
469 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharIsLowerCaseIntrinsic()
492 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharToLowerCaseIntrinsic()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/
Dir_build_intrinsics_ets.cpp36 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex); in BuildIsFiniteIntrinsic()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_info_collector.cpp479 methodId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
487 methodId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
493 auto entityId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
500 auto literalId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
506 auto entityId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
513 auto literalId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
520 auto literalId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
532 auto literalId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Djs_pandafile.h258 panda_file::File::EntityId ResolveMethodIndex(panda_file::File::EntityId id, uint16_t idx) const in ResolveMethodIndex() function
260 return pf_->ResolveMethodIndex(id, idx); in ResolveMethodIndex()
Dpanda_file_translator.cpp1525 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
1530 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
1535 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
1541 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
1547 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
1552 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
1573 … methodId = jsPandaFile->ResolveMethodIndex(method->GetMethodId(), bcIns.GetId()).GetOffset(); in TranslateBytecode()
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/intrinsics/
Dintrinsics_ir_build.inl.erb82 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex);
/arkcompiler/runtime_core/disassembler/templates/
Dbc_ins_to_pandasm_ins.cpp.erb65 id = file_->ResolveMethodIndex(method_id, idx);
/arkcompiler/runtime_core/static_core/disassembler/templates/
Dbc_ins_to_pandasm_ins.cpp.erb68 id = file_->ResolveMethodIndex(methodId, idx);
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Druntime_adapter.h45 MethodId ResolveMethodIndex(MethodPtr parentMethod, MethodIndex index) const override in ResolveMethodIndex() function
47 return pandaFile_.ResolveMethodIndex(MethodCast(parentMethod), index).GetOffset(); in ResolveMethodIndex()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp428 auto entityId = jsPandaFile->ResolveMethodIndex(methodLiteral->GetMethodId(), in CollectClassInfo()
434 auto literalId = jsPandaFile->ResolveMethodIndex(methodLiteral->GetMethodId(), in CollectClassInfo()
/arkcompiler/runtime_core/verifier/
Dverifier.cpp220 const auto literal_id = file_->ResolveMethodIndex(method_id, arg_literal_idx); in CollectIdInInstructions()
225 const auto arg_method_id = file_->ResolveMethodIndex(method_id, arg_method_idx); in CollectIdInInstructions()
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/
Druntime_adapter_test.cpp192 const auto methodId = adapter.ResolveMethodIndex(main, 0U); in TEST()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ir_builder/js_interop/
Djs_interop_inst_builder.cpp196 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIndex()); in TryBuildInteropCall()
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Druntime_adapter_test.cpp192 const auto method_id = adapter.ResolveMethodIndex(main, 0); in TEST()
/arkcompiler/runtime_core/static_core/static_linker/
Dlinker_code_parser_context.cpp218 makeWithId(&panda_file::File::ResolveMethodIndex); in ProcessCodeData()
/arkcompiler/runtime_core/static_core/libpandafile/
Dfile.h298 EntityId ResolveMethodIndex(EntityId id, Index idx) const in ResolveMethodIndex() function
Dfile_reader.cpp1153 File::EntityId oldId = file_->ResolveMethodIndex(methodId, idx); in UpdateCodeAndDebugInfoDependencies()
1256 File::EntityId oldId = file_->ResolveMethodIndex(methodId, idx); in ComputeLayoutAndUpdateIndices()
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler.cpp63 compiler::RuntimeInterface::MethodId PandaRuntimeInterface::ResolveMethodIndex(MethodPtr parentMeth… in ResolveMethodIndex() function in panda::PandaRuntimeInterface
66 return MethodCast(parentMethod)->GetClass()->ResolveMethodIndex(index).GetOffset(); in ResolveMethodIndex()
Dcompiler.h131 MethodId ResolveMethodIndex(MethodPtr parentMethod, MethodIndex index) const override;
/arkcompiler/runtime_core/libpandafile/
Dfile.h318 EntityId ResolveMethodIndex(EntityId id, Index idx) const in ResolveMethodIndex() function
/arkcompiler/runtime_core/static_core/verification/gen/templates/
Djob_fill_gen.h.erb187 % auto methodId = method_->GetClass()->ResolveMethodIndex(id.AsIndex());
/arkcompiler/runtime_core/static_core/runtime/include/
Dclass.h775 panda_file::File::EntityId ResolveMethodIndex(panda_file::File::Index idx) const in ResolveMethodIndex() function
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dmethod_type_infer.cpp1276 …uint32_t methodId = ctx_->GetJSPandaFile()->ResolveMethodIndex(methodLiteral_->GetMethodId(), id).… in SetAndReturnNamespaceObjType()
1334 … ctx_->GetJSPandaFile()->ResolveMethodIndex(methodLiteral_->GetMethodId(), id).GetOffset(); in CheckNamespaceFunc()
/arkcompiler/runtime_core/assembler/tests/
Demitter_test.cpp796 const auto arg_method_id = pf->ResolveMethodIndex(id_f, arg_method_idx); in TEST()

12