[compiler-rt] [llvm] [ctxprof][nfc] Share the definition of FunctionData between compiler-rt and llvm (PR #132136)
Snehasish Kumar via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 09:37:20 PDT 2025
================
@@ -113,6 +113,24 @@ class ContextNode final {
uint64_t entrycount() const { return counters()[0]; }
};
+/// The internal structure of FunctionData. This makes sure that changes to
+/// the fields of FunctionData either get automatically captured on the llvm
+/// side, or force a manual corresponding update.
+///
+/// The macro arguments (see CtxInstrProfiling.h for example):
+///
+/// PTRDECL is a macro taking 2 parameters: a type and the name of the field.
+/// The field is a pointer of that type;
+///
+/// VOLATILE_PTRDECL is the same as above, but for volatile pointers;
+///
+/// MUTEXDECL takes one parameter, the name of a field that is a mutex.
+#define CTXPROF_FUNCTION_DATA(PTRDECL, VOLATILE_PTRDECL, MUTEXDECL) \
+ PTRDECL(FunctionData, Next) \
+ VOLATILE_PTRDECL(ContextRoot, CtxRoot) \
+ VOLATILE_PTRDECL(ContextNode, FlatCtx) \
+ MUTEXDECL(Mutex)
+
----------------
snehasish wrote:
This macro should go in InstrProfData.inc in compiler-rt and llvm. I believe we have some tests to make sure they are kept in sync.
https://github.com/llvm/llvm-project/pull/132136
More information about the llvm-commits
mailing list