| /arkcompiler/runtime_core/static_core/runtime/interpreter/ |
| D | runtime_interface.h | 42 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/ |
| D | inst_builder-inl.h | 27 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/ |
| D | ir_build_intrinsics_ets.cpp | 36 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex); in BuildIsFiniteIntrinsic()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | bytecode_info_collector.cpp | 479 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/ |
| D | js_pandafile.h | 258 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()
|
| D | panda_file_translator.cpp | 1525 … 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/ |
| D | intrinsics_ir_build.inl.erb | 82 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), methodIndex);
|
| /arkcompiler/runtime_core/disassembler/templates/ |
| D | bc_ins_to_pandasm_ins.cpp.erb | 65 id = file_->ResolveMethodIndex(method_id, idx);
|
| /arkcompiler/runtime_core/static_core/disassembler/templates/ |
| D | bc_ins_to_pandasm_ins.cpp.erb | 68 id = file_->ResolveMethodIndex(methodId, idx);
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | runtime_adapter.h | 45 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/ |
| D | patch_loader.cpp | 428 auto entityId = jsPandaFile->ResolveMethodIndex(methodLiteral->GetMethodId(), in CollectClassInfo() 434 auto literalId = jsPandaFile->ResolveMethodIndex(methodLiteral->GetMethodId(), in CollectClassInfo()
|
| /arkcompiler/runtime_core/verifier/ |
| D | verifier.cpp | 220 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/ |
| D | runtime_adapter_test.cpp | 192 const auto methodId = adapter.ResolveMethodIndex(main, 0U); in TEST()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ir_builder/js_interop/ |
| D | js_interop_inst_builder.cpp | 196 auto methodId = GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIndex()); in TryBuildInteropCall()
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/ |
| D | runtime_adapter_test.cpp | 192 const auto method_id = adapter.ResolveMethodIndex(main, 0); in TEST()
|
| /arkcompiler/runtime_core/static_core/static_linker/ |
| D | linker_code_parser_context.cpp | 218 makeWithId(&panda_file::File::ResolveMethodIndex); in ProcessCodeData()
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | file.h | 298 EntityId ResolveMethodIndex(EntityId id, Index idx) const in ResolveMethodIndex() function
|
| D | file_reader.cpp | 1153 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/ |
| D | compiler.cpp | 63 compiler::RuntimeInterface::MethodId PandaRuntimeInterface::ResolveMethodIndex(MethodPtr parentMeth… in ResolveMethodIndex() function in panda::PandaRuntimeInterface 66 return MethodCast(parentMethod)->GetClass()->ResolveMethodIndex(index).GetOffset(); in ResolveMethodIndex()
|
| D | compiler.h | 131 MethodId ResolveMethodIndex(MethodPtr parentMethod, MethodIndex index) const override;
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | file.h | 318 EntityId ResolveMethodIndex(EntityId id, Index idx) const in ResolveMethodIndex() function
|
| /arkcompiler/runtime_core/static_core/verification/gen/templates/ |
| D | job_fill_gen.h.erb | 187 % auto methodId = method_->GetClass()->ResolveMethodIndex(id.AsIndex());
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | class.h | 775 panda_file::File::EntityId ResolveMethodIndex(panda_file::File::Index idx) const in ResolveMethodIndex() function
|
| /arkcompiler/ets_runtime/ecmascript/compiler/type_inference/ |
| D | method_type_infer.cpp | 1276 …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/ |
| D | emitter_test.cpp | 796 const auto arg_method_id = pf->ResolveMethodIndex(id_f, arg_method_idx); in TEST()
|