[compiler-rt] [llvm] [ctxprof] Prepare profile format for flat profiles (PR #129626)

Mircea Trofin via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 13:00:07 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 &);
----------------
mtrofin wrote:

addressed in PR #129626

https://github.com/llvm/llvm-project/pull/129626


More information about the llvm-commits mailing list