[compiler-rt] [ctxprof] Auto root detection: trie for stack samples (PR #133106)

Snehasish Kumar via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 13:24:21 PDT 2025


================
@@ -0,0 +1,68 @@
+/*===- RootAutodetector.h- auto-detect roots for ctxprof  -----------------===*\
+|*
+|* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+|* See https://llvm.org/LICENSE.txt for license information.
+|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+|*
+\*===----------------------------------------------------------------------===*/
+
+#ifndef CTX_PROFILE_ROOTAUTODETECTOR_H_
+#define CTX_PROFILE_ROOTAUTODETECTOR_H_
+
+#include "sanitizer_common/sanitizer_dense_map.h"
+#include "sanitizer_common/sanitizer_internal_defs.h"
+#include "sanitizer_common/sanitizer_stacktrace.h"
+#include <pthread.h>
+#include <sanitizer/common_interface_defs.h>
+
+using namespace __asan;
+using namespace __sanitizer;
+
+namespace __ctx_profile {
+
+template <typename T> using Set = DenseMap<T, bool>;
----------------
snehasish wrote:

This isn't used in this header in the PR. Can you move it to RootAutoDetector.cpp where it is used?

In general I'm wary of using convenience aliases in a header, particularly one with a generic name like `Set`.

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


More information about the llvm-commits mailing list