[compiler-rt] [llvm] [ctxprof] Capture sampling info for context roots (PR #131201)
Mircea Trofin via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 12:24:49 PDT 2025
================
@@ -115,6 +118,9 @@ class PGOCtxProfContext final : public internal::IndexNode {
const SmallVectorImpl<uint64_t> &counters() const { return Counters; }
SmallVectorImpl<uint64_t> &counters() { return Counters; }
+ bool isRoot() const { return RootEntryCount.has_value(); }
+ uint64_t getTotalRootEntryCount() const { return *RootEntryCount; }
----------------
mtrofin wrote:
thanks, done.
https://github.com/llvm/llvm-project/pull/131201
More information about the llvm-commits
mailing list