/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | js_pt_method.h | 28 : 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 D | js_pt_location.h | 31 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 D | pt_location.h | 29 : 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 D | method_data_accessor.cpp | 22 : pandaFile_(pandaFile), methodId_(methodId) in MethodDataAccessor() 40 size_ = pandaFile_.GetIdFromPointer(sp.data()).GetOffset() - methodId_.GetOffset(); in MethodDataAccessor()
|
H A D | method_data_accessor.h | 184 return methodId_; in GetMethodId() 217 File::EntityId methodId_; variable
|
H A D | method_data_accessor-inl.h | 267 size_ = pandaFile_.GetIdFromPointer(sp.data()).GetOffset() - methodId_.GetOffset() + 1; // + 1 for NOTHING tag in GetProfileSize()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | hcr_gate_meta_data.h | 40 : 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 D | ntype_hcr_lowering.h | 89 panda_file::File::EntityId methodId_ {0};
|
H A D | bytecode_circuit_builder.h | 241 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 D | inst_builder-inl.h | 33 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 D | inst_builder.h | 285 uint32_t methodId_ {};
|
/arkcompiler/runtime_core/static_core/abc2program/ |
H A D | abc_code_processor.cpp | 27 : 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 D | abc_code_processor.h | 40 panda_file::File::EntityId methodId_; member in ark::abc2program::AbcCodeProcessor
|
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit_profiler.cpp | 42 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 D | jit_profiler.h | 170 EntityId methodId_ {};
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_profiler_info.h | 253 explicit PGODecodeMethodInfo(PGOMethodId id) : methodId_(id) {} in PGODecodeMethodInfo() 257 return methodId_; in GetMethodId() 268 PGOMethodId methodId_ {0};
|
H A D | pgo_profiler_info.cpp | 553 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 D | codegen.h | 149 return methodId_; in GetMethodId() 459 RuntimeInterface::MethodId methodId_ {INVALID_ID};
|
H A D | codegen.cpp | 191 methodId_ = graph->GetRuntime()->GetMethodId(method); in Codegen()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | debugger.h | 543 return methodId_; 574 panda_file::File::EntityId methodId_; member in ark::tooling::PtDebugFrame
|
H A D | debugger.cpp | 929 : method_(method), methodId_(method->GetFileId()), pandaFile_(method->GetPandaFile()->GetFilename()) in PtDebugFrame()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.h | 2777 methodId_ = id; in MethodDataMixin() 2783 methodId_ = id; in SetCallMethodId() 2787 return methodId_; in GetCallMethodId() 2813 uint32_t methodId_ {INVALID_METHOD_ID};
|