[compiler-rt] [ctxprof][nfc] Remove redundant `SANITIZER_NO_THREAD_SAFETY_ANALYSIS` (PR #133784)

Mircea Trofin via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 12:40:46 PDT 2025


https://github.com/mtrofin created https://github.com/llvm/llvm-project/pull/133784

With the refactoring in PR #133744, `__llvm_ctx_profile_start_context` doesn't need to be marked `SANITIZER_NO_THREAD_SAFETY_ANALYSIS` because `tryStartContextGivenRoot` (where the bulk of the logic went) is.

>From 5e490a312d91e61af6edd163c639bb8f56f5d9d4 Mon Sep 17 00:00:00 2001
From: Mircea Trofin <mtrofin at google.com>
Date: Mon, 31 Mar 2025 12:36:36 -0700
Subject: [PATCH] [ctxprof][nfc] Remove redundant
 `SANITIZER_NO_THREAD_SAFETY_ANALYSIS`

With the refactoring in PR #133744, `__llvm_ctx_profile_start_context`
doesn't need to be marked `SANITIZER_NO_THREAD_SAFETY_ANALYSIS` because
`tryStartContextGivenRoot` (where the bulk of the logic went) is.
---
 compiler-rt/lib/ctx_profile/CtxInstrProfiling.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler-rt/lib/ctx_profile/CtxInstrProfiling.cpp b/compiler-rt/lib/ctx_profile/CtxInstrProfiling.cpp
index 10a6a8c1f71e5..e08d555c61ff7 100644
--- a/compiler-rt/lib/ctx_profile/CtxInstrProfiling.cpp
+++ b/compiler-rt/lib/ctx_profile/CtxInstrProfiling.cpp
@@ -385,9 +385,9 @@ ContextNode *__llvm_ctx_profile_get_context(FunctionData *Data, void *Callee,
   return Ret;
 }
 
-ContextNode *__llvm_ctx_profile_start_context(
-    FunctionData *FData, GUID Guid, uint32_t Counters,
-    uint32_t Callsites) SANITIZER_NO_THREAD_SAFETY_ANALYSIS {
+ContextNode *__llvm_ctx_profile_start_context(FunctionData *FData, GUID Guid,
+                                              uint32_t Counters,
+                                              uint32_t Callsites) {
   return tryStartContextGivenRoot(FData->getOrAllocateContextRoot(), Guid,
                                   Counters, Callsites);
 }



More information about the llvm-commits mailing list