[compiler-rt] [llvm] [ctxprof] Capture sampling info for context roots (PR #131201)
Snehasish Kumar via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 11:24:27 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; }
----------------
snehasish wrote:
Dereferencing std::optional using operator* when it doesn't have a value is undefined behaviour. Prefer `.value()` which throws an exception (or fails with -fno-exception) or maybe add a `has_value()` check for value and return a default?
https://en.cppreference.com/w/cpp/utility/optional/operator*
https://github.com/llvm/llvm-project/pull/131201
More information about the llvm-commits
mailing list