Home
last modified time | relevance | path

Searched refs:PGOMethodId (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.h53 using PGOMethodId = EntityId; variable
338 explicit PGOMethodInfo(PGOMethodId id) : id_(id) {} in PGOMethodInfo()
340 PGOMethodInfo(PGOMethodId id, uint32_t count, SampleMode mode, const char *methodName) in PGOMethodInfo()
398 PGOMethodId GetMethodId() const in GetMethodId()
461 PGOMethodId id_;
687 explicit PGODecodeMethodInfo(PGOMethodId id) : methodId_(id) {} in PGODecodeMethodInfo()
689 PGOMethodId GetMethodId() const in GetMethodId()
702 PGOMethodId methodId_ {0};
839 bool AddType(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType type);
840 bool AddCallTargetType(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType type);
[all …]
Dpgo_profiler_info.cpp618 PGOMethodId methodId(jsMethod->GetMethodId()); in AddMethod()
639 PGOMethodTypeSet *PGOMethodInfoMap::GetOrInsertMethodTypeSet(Chunk *chunk, PGOMethodId methodId) in GetOrInsertMethodTypeSet()
651 bool PGOMethodInfoMap::AddType(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType ty… in AddType()
659 bool PGOMethodInfoMap::AddCallTargetType(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSam… in AddCallTargetType()
667 bool PGOMethodInfoMap::AddObjectInfo(Chunk *chunk, PGOMethodId methodId, int32_t offset, const PGOO… in AddObjectInfo()
676 Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType superType) in AddDefine()
838 … auto info = new (infoAddr) PGOMethodInfo(PGOMethodId(methodId), count, mode, methodName.c_str()); in ParseFromText()
993 bool PGORecordDetailInfos::AddType(const CString &recordName, PGOMethodId methodId, int32_t offset,… in AddType()
1000 bool PGORecordDetailInfos::AddCallTargetType(const CString &recordName, PGOMethodId methodId, int32… in AddCallTargetType()
1017 …const CString &recordName, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType… in AddDefine()
Dpgo_profiler_decoder.h41 bool PUBLIC_API Match(const CString &recordName, PGOMethodId methodId);
Dpgo_profiler_decoder.cpp176 bool PGOProfilerDecoder::Match(const CString &recordName, PGOMethodId methodId) in Match()