Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPerfReader.h205 struct ProfiledFrame { struct
206 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 …]