Searched refs:superType (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler.cpp | 133 PGOSampleType superType = PGOSampleType::CreateClassType(0); in ProfileDefineClass() local 139 superType = PGOSampleType::CreateClassType(superMethodId); in ProfileDefineClass() 142 recordInfos_->AddDefine(recordName, funcMethodId, offset, currentType, superType); in ProfileDefineClass() 188 auto superType = PGOSampleType::CreateClassType(0); in ProfileCreateObject() local 189 recordInfos_->AddDefine(recordName, funcMethodId, offset, currentType, superType); in ProfileCreateObject() 195 auto superType = PGOSampleType::CreateClassType(0); in ProfileCreateObject() local 196 recordInfos_->AddDefine(recordName, funcMethodId, offset, currentType, superType); in ProfileCreateObject()
|
D | pgo_profiler_layout.h | 114 void SetSuperClassType(ClassType superType) in SetSuperClassType() argument 116 superType_ = superType; in SetSuperClassType()
|
D | pgo_profiler_info.h | 508 void AddDefine(uint32_t offset, PGOSampleType type, PGOSampleType superType) in AddDefine() argument 510 auto result = objDefOpTypeInfos_.find(ObjDefOpTypeInfo(offset, type, superType)); in AddDefine() 514 objDefOpTypeInfos_.emplace(offset, type, superType); in AddDefine() 655 ObjDefOpTypeInfo(uint32_t offset, PGOSampleType type, PGOSampleType superType) in ObjDefOpTypeInfo() argument 657 superType_(superType) {} in ObjDefOpTypeInfo() 673 … uint32_t size, InfoType infoType, uint32_t offset, PGOSampleType type, PGOSampleType superType) in ObjDefOpTypeInfo() argument 674 : ScalarOpTypeInfo(size, infoType, offset, type), superType_(superType) {} in ObjDefOpTypeInfo() 708 …PGOHClassLayoutDescInner(size_t size, PGOSampleType type, PGOSampleType superType, ElementsKind ki… in PGOHClassLayoutDescInner() argument 709 : size_(size), type_(type), superType_(superType) in PGOHClassLayoutDescInner() 842 …e(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType superType); [all …]
|
D | pgo_profiler_info.cpp | 676 Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType superType) in AddDefine() argument 680 typeInfoSet->AddDefine(offset, type, superType); in AddDefine() 1017 …ing &recordName, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType superType) in AddDefine() argument 1021 curMethodInfos->AddDefine(chunk_.get(), methodId, offset, type, superType); in AddDefine() 1024 descInfo.SetSuperClassType(superType.GetClassType()); in AddDefine() 1166 auto superType = PGOSampleType(typeInfo.GetSuperClassType()); in ProcessToBinaryForLayout() local 1168 … auto descInfos = new (addr) PGOHClassLayoutDescInner(size, classType, superType, elementsKind); in ProcessToBinaryForLayout()
|