[compiler-rt] [llvm] [ctxprof] Prepare profile format for flat profiles (PR #129626)
Snehasish Kumar via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 19:13:25 PST 2025
================
@@ -190,8 +190,12 @@ class PGOCtxProfileReader final {
Error unsupported(const Twine &);
Expected<std::pair<std::optional<uint32_t>, PGOCtxProfContext>>
- readContext(bool ExpectIndex);
- bool canReadContext();
+ readProfile(PGOCtxProfileBlockIDs Kind);
+
+ bool canEnterBlockWithID(PGOCtxProfileBlockIDs ID);
+ Error enterBlockWithID(PGOCtxProfileBlockIDs ID);
+
+ Error loadContexts(CtxProfContextualProfiles &);
----------------
snehasish wrote:
nit: name the parameter.
https://github.com/llvm/llvm-project/pull/129626
More information about the llvm-commits
mailing list