Lines Matching full:funcid
78 static Expected<std::vector<Profile::FuncID>> readPath(DataExtractor &Extractor, in readPath()
81 std::vector<Profile::FuncID> Path; in readPath()
83 int32_t FuncId; in readPath() local
85 FuncId = Extractor.getSigned(&Offset, 4); in readPath()
91 Path.push_back(FuncId); in readPath()
92 } while (FuncId != 0); in readPath()
131 Expected<std::vector<Profile::FuncID>> Profile::expandPath(PathID P) const { in expandPath()
137 std::vector<Profile::FuncID> Path; in expandPath()
143 Profile::PathID Profile::internPath(ArrayRef<FuncID> P) { in internPath()
321 Profile::FuncID FuncId; member
345 TSD.push_back({E.TSC, E.FuncId}); in profileFromTrace()
358 SmallVector<Profile::FuncID, 16> Path; in profileFromTrace()
360 std::mem_fn(&StackEntry::FuncId)); in profileFromTrace()
369 if (Top.FuncId == E.FuncId) in profileFromTrace()