Home
last modified time | relevance | path

Searched refs:methodId_ (Results 1 - 22 of 22) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/debugger/
H A Djs_pt_method.h28 : jsPandaFile_(jsPandaFile), methodId_(methodId), isNative_(isNative) in PtMethod()
40 return methodId_; in GetMethodId()
50 return methodId_ == method.methodId_ && in operator ==()
59 panda_file::MethodDataAccessor mda(*(jsPandaFile_->GetPandaFile()), methodId_); in GetCodeSize()
70 panda_file::File::EntityId methodId_ {0};
H A Djs_pt_location.h31 const std::string &sourceFile = "") : jsPandaFile_(jsPandaFile), methodId_(methodId), in JSPtLocation()
48 return methodId_; in GetMethodId()
58 return methodId_ == location.methodId_ && bytecodeOffset_ == location.bytecodeOffset_ && in operator ==()
66 location << "methodId:" << methodId_ << ", "; in ToString() local
81 EntityId methodId_; member in panda::ecmascript::tooling::JSPtLocation
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
H A Dpt_location.h29 : pandaFile_(pandaFile), methodId_(methodId), bytecodeOffset_(bytecodeOffset) in PtLocation()
40 return methodId_; in GetMethodId()
50 return methodId_ == location.methodId_ && bytecodeOffset_ == location.bytecodeOffset_ && in operator ==()
61 EntityId methodId_; member in ark::tooling::PtLocation
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dmethod_data_accessor.cpp22 : pandaFile_(pandaFile), methodId_(methodId) in MethodDataAccessor()
40 size_ = pandaFile_.GetIdFromPointer(sp.data()).GetOffset() - methodId_.GetOffset(); in MethodDataAccessor()
H A Dmethod_data_accessor.h184 return methodId_; in GetMethodId()
217 File::EntityId methodId_; variable
H A Dmethod_data_accessor-inl.h267 size_ = pandaFile_.GetIdFromPointer(sp.data()).GetOffset() - methodId_.GetOffset() + 1; // + 1 for NOTHING tag in GetProfileSize()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dhcr_gate_meta_data.h40 : GateMetaData(OpCode::JS_BYTECODE, flags, 1, 1, valuesIn), methodId_(methodId), opcode_(opcode), in JSBytecodeMetaData()
68 return methodId_; in GetMethodId()
170 uint32_t methodId_; member in panda::ecmascript::kungfu::JSBytecodeMetaData
H A Dntype_hcr_lowering.h89 panda_file::File::EntityId methodId_ {0};
H A Dbytecode_circuit_builder.h241 methodId_(method_->GetMethodId().GetOffset()) in BytecodeCircuitBuilder()
548 panda_file::IndexAccessor indexAccessor(*file_->GetPandaFile(), panda_file::File::EntityId(methodId_)); in GetCurrentConstpoolId()
722 uint32_t methodId_ {0};
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
H A Dinst_builder-inl.h33 return GetRuntime()->GetClassIdForMethod(GetMethod(), methodId_); in GetClassId()
42 methodId_ = GetRuntime()->ResolveMethodIndex(Builder()->GetMethod(), bcInst->GetId(0).AsIndex()); in BuildCallHelper()
44 hasImplicitArg_ = !GetRuntime()->IsMethodStatic(Builder()->GetMethod(), methodId_); in BuildCallHelper()
45 method_ = GetRuntime()->GetMethodById(Builder()->GetMethod(), methodId_); in BuildCallHelper()
47 if (GetRuntime()->IsMethodIntrinsic(Builder()->GetMethod(), methodId_)) { in BuildCallHelper()
103 size_t argsCount = Builder()->GetMethodArgumentsCount(methodId_); in SetCallArgs()
136 call_->AddInputType(Builder()->GetMethodArgumentType(methodId_, i)); in SetCallArgs()
141 call_->AddInputType(Builder()->GetMethodArgumentType(methodId_, i)); in SetCallArgs()
168 if (method_ == nullptr || (GetRuntime()->IsMethodStatic(GetMethod(), methodId_) && classId == 0) || in BuildCallStaticInst()
170 resolver_ = GetGraph()->CreateInstResolveStatic(DataType::POINTER, pc_, methodId_, nullpt in BuildCallStaticInst()
177 GetRuntime()->GetUnresolvedTypes()->AddTableSlot(GetMethod(), methodId_, SLOT_KIND); BuildCallStaticInst() local
[all...]
H A Dinst_builder.h285 uint32_t methodId_ {};
/arkcompiler/runtime_core/static_core/abc2program/
H A Dabc_code_processor.cpp27 : AbcFileEntityProcessor(entityId, keyData), methodId_(methodId) in AbcCodeProcessor()
109 LabelTable labelTable = GetExceptions(methodId_, entityId_); in FillProgramData()
114 auto id = file_->ResolveFieldIndex(methodId_, idx); in FillProgramData()
118 pandasm::Ins paIns = codeConverter_->BytecodeInstructionToPandasmInstruction(bcIns, methodId_); in FillProgramData()
126 const auto argMethodId = file_->ResolveMethodIndex(methodId_, argMethodIdx); in FillProgramData()
H A Dabc_code_processor.h40 panda_file::File::EntityId methodId_; member in ark::abc2program::AbcCodeProcessor
/arkcompiler/ets_runtime/ecmascript/jit/
H A Djit_profiler.cpp42 methodId_ = methodId; in ProfileBytecode()
348 ->UpdateFuncSlotIdMap(calleeMethodId, methodId_.GetOffset(), slotId); in ConvertCall()
526 ->UpdateFuncSlotIdMap(accessorMethodId, methodId_.GetOffset(), slotId); in HandleLoadTypePrototypeHandler()
602 ->UpdateFuncSlotIdMap(accessorMethodId, methodId_.GetOffset(), slotId); in HandleOtherTypesPrototypeHandler()
1055 methodId_ = (EntityId)0; in Clear()
H A Djit_profiler.h170 EntityId methodId_ {};
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler_info.h253 explicit PGODecodeMethodInfo(PGOMethodId id) : methodId_(id) {} in PGODecodeMethodInfo()
257 return methodId_; in GetMethodId()
268 PGOMethodId methodId_ {0};
H A Dpgo_profiler_info.cpp553 ASSERT(methodId_.IsValid() && from.methodId_.IsValid()); in Merge()
554 if (!(methodId_ == from.methodId_)) { in Merge()
555 LOG_ECMA(ERROR) << "MethodId not match. " << methodId_ << " vs " << from.methodId_; in Merge()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dcodegen.h149 return methodId_; in GetMethodId()
459 RuntimeInterface::MethodId methodId_ {INVALID_ID};
H A Dcodegen.cpp191 methodId_ = graph->GetRuntime()->GetMethodId(method); in Codegen()
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddebugger.h543 return methodId_;
574 panda_file::File::EntityId methodId_; member in ark::tooling::PtDebugFrame
H A Ddebugger.cpp929 : method_(method), methodId_(method->GetFileId()), pandaFile_(method->GetPandaFile()->GetFilename()) in PtDebugFrame()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dinst.h2777 methodId_ = id; in MethodDataMixin()
2783 methodId_ = id; in SetCallMethodId()
2787 return methodId_; in GetCallMethodId()
2813 uint32_t methodId_ {INVALID_METHOD_ID};

Completed in 31 milliseconds