Home
last modified time | relevance | path

Searched defs:ProfiledFrame (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DPerfReader.h231 struct ProfiledFrame { struct
232 const uint64_t Address = DummyRoot;
233 ProfiledFrame *Parent;
234 SampleVector RangeSamples;
235 SampleVector BranchSamples;
236 std::unordered_map<uint64_t, std::unique_ptr<ProfiledFrame>> Children;
239 : Address(Addr), Parent(P) {} in Address()
240 ProfiledFrame *getOrCreateChildFrame(uint64_t Address) { in getOrCreateChildFrame()
246 void recordRangeCount(uint64_t Start, uint64_t End, uint64_t Count) { in recordRangeCount()
249 void recordBranchCount(uint64_t Source, uint64_t Target, uint64_t Count) { in recordBranchCount()
[all …]