/arkcompiler/runtime_core/static_core/tools/sampler/ |
H A D | trace_dumper.cpp | 26 uint64_t fileId = sample.stackInfo.managedStack[i].fileId; in DumpTraces() local 42 fullMethodName = ResolveName(pf, fileId); in DumpTraces() 80 std::string TraceDumper::ResolveName(const panda_file::File *pf, uint64_t fileId) const in ResolveName() 83 return std::string("__unknown_module::" + std::to_string(fileId)); in ResolveName() 88 return it->second.at(fileId); in ResolveName() 91 return pf->GetFilename() + "::__unknown_" + std::to_string(fileId); in ResolveName()
|
H A D | trace_dumper.h | 62 std::string ResolveName(const panda_file::File *pf, uint64_t fileId) const;
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | field.h | 40 Field(Class *klass, panda_file::File::EntityId fileId, uint32_t accessFlags, panda_file::Type type) in Field() argument 41 : classWord_(static_cast<ClassHelper::ClassWordSize>(ToObjPtrType(klass))), fileId_(fileId) in Field() 142 static inline UniqId CalcUniqId(const panda_file::File *file, panda_file::File::EntityId fileId) in CalcUniqId() argument 147 uid |= fileId.GetOffset(); in CalcUniqId()
|
H A D | method.h | 174 PANDA_PUBLIC_API Method(Class *klass, const panda_file::File *pf, panda_file::File::EntityId fileId, 763 static inline UniqId CalcUniqId(const panda_file::File *file, panda_file::File::EntityId fileId) in CalcUniqId() argument 768 uid |= fileId.GetOffset(); in CalcUniqId()
|
H A D | class.h | 151 void SetFileId(panda_file::File::EntityId fileId) in SetFileId() argument 153 fileId_ = fileId; in SetFileId() 711 static UniqId CalcUniqId(const panda_file::File *file, panda_file::File::EntityId fileId);
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/ |
H A D | aot_snapshot.cpp | 73 pgo::ApEntityId fileId = INVALID_INDEX; in StoreConstantPoolInfo() local 74 if (!pgo::PGOProfilerManager::GetInstance()->GetPandaFileId(jsPandaFile->GetJSPandaFileDesc(), fileId)) { in StoreConstantPoolInfo() 79 GenerateSnapshotConstantPools(allConstantPools, jsPandaFile->GetNormalizedFileDesc(), fileId); in StoreConstantPoolInfo()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/sampler/ |
H A D | sample_info.h | 34 uintptr_t fileId {0}; 97 return lhs.fileId == rhs.fileId && lhs.pandaFilePtr == rhs.pandaFilePtr; in operator ==() 172 summ += stackInfo.managedStack[i].pandaFilePtr ^ stackInfo.managedStack[i].fileId; in operator ()()
|
H A D | sampling_profiler.cpp | 325 sample.stackInfo.managedStack[stackCounter].fileId = helpers::ToUnderlying(FrameKind::BRIDGE); in CollectBoundaryFrames() 332 sample.stackInfo.managedStack[stackCounter].fileId = helpers::ToUnderlying(FrameKind::BRIDGE); in CollectBoundaryFrames() 359 sample.stackInfo.managedStack[stackCounter].fileId = helpers::ToUnderlying(FrameKind::BRIDGE); in ProcessCompiledTopFrame() 377 sample.stackInfo.managedStack[stackCounter].fileId = helpers::ToUnderlying(FrameKind::BRIDGE); in ProcessCompiledTopFrame() 411 sample.stackInfo.managedStack[stackCounter].fileId = method->GetFileId().GetOffset(); in CollectFrames()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | class.cpp | 63 Class::UniqId Class::CalcUniqId(const panda_file::File *file, panda_file::File::EntityId fileId) in CalcUniqId() argument 68 uid |= fileId.GetOffset(); in CalcUniqId()
|
H A D | method.cpp | 194 Method::Method(Class *klass, const panda_file::File *pf, panda_file::File::EntityId fileId, in Method() argument 204 fileId_(fileId),
|
/arkcompiler/runtime_core/static_core/runtime/profilesaver/ |
H A D | profile_dump_info.h | 56 : pandaFile(file), fileId(pfFileId) in ExtractedMethod() 60 panda_file::File::EntityId fileId; // NOLINT(misc-non-private-member-variables-in-classes) member
|
H A D | profile_dump_info.cpp | 181 MethodWrapper(method.fileId.GetOffset()))) { in AddMethodsAndClasses() 220 return methods.find(MethodWrapper(methodRef.fileId.GetOffset())) != methods.end(); in ContainsMethod()
|
/arkcompiler/runtime_core/static_core/compiler/tools/aotdump/ |
H A D | aotdump.cpp | 85 auto fileId = panda_file::File::EntityId(id); in GetMethodName() local 86 panda_file::MethodDataAccessor mda(*file_, fileId); in GetMethodName() 87 panda_file::ProtoDataAccessor pda(*file_, panda_file::MethodDataAccessor::GetProtoId(*file_, fileId)); in GetMethodName()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | [all...] |