Searched defs:ProfiledFrame (Results 1 – 1 of 1) sorted by relevance
205 struct ProfiledFrame { struct206 const uint64_t Address = 0;207 ProfiledFrame *Parent;208 SampleVector RangeSamples;209 SampleVector BranchSamples;210 std::unordered_map<uint64_t, std::unique_ptr<ProfiledFrame>> Children;213 : Address(Addr), Parent(P) {} in Address()214 ProfiledFrame *getOrCreateChildFrame(uint64_t Address) { in getOrCreateChildFrame()220 void recordRangeCount(uint64_t Start, uint64_t End, uint64_t Count) { in recordRangeCount()223 void recordBranchCount(uint64_t Source, uint64_t Target, uint64_t Count) { in recordBranchCount()[all …]