[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:24 PST 2025


================
@@ -114,9 +114,14 @@ class ContextNode final {
 };
 
 /// Abstraction for the parameter passed to `__llvm_ctx_profile_fetch`.
+/// `startContextSection` is called before any context roots are sent for
+/// writing. Then one or more `writeContextual` calls are made; finally,
+/// `endContextSection` is called.
 class ProfileWriter {
 public:
+  virtual void startContextSection() = 0;
----------------
snehasish wrote:

You could have this method return an object which runs `endContextSection` on destruction. Then we wouldn't have to worry about pairing up the calls to start and end each time. Perhaps it's too much for a simple interface like this though. 

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


More information about the llvm-commits mailing list