[compiler-rt] [ctxprof] Fix warnings post PR #130655 (PR #131198)
Mircea Trofin via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 12:50:22 PDT 2025
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/131198
>From c1099430adb9a3a2c361928417ae47d327ab6b14 Mon Sep 17 00:00:00 2001
From: Mircea Trofin <mtrofin at google.com>
Date: Thu, 13 Mar 2025 12:45:23 -0700
Subject: [PATCH] [ctxprof] Fix warnings post PR #130655
---
compiler-rt/lib/ctx_profile/CtxInstrProfiling.h | 4 ++++
.../ctx_profile/tests/CtxInstrProfilingTest.cpp | 15 ++++++++-------
2 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/compiler-rt/lib/ctx_profile/CtxInstrProfiling.h b/compiler-rt/lib/ctx_profile/CtxInstrProfiling.h
index c41a77457178c..ab6df6d15e704 100644
--- a/compiler-rt/lib/ctx_profile/CtxInstrProfiling.h
+++ b/compiler-rt/lib/ctx_profile/CtxInstrProfiling.h
@@ -130,6 +130,10 @@ struct ContextRoot {
// The current design trades off a bit of overhead at the first time a function
// is encountered *for flat profiling* for avoiding size penalties.
struct FunctionData {
+ // Constructor for test only - since this is expected to be
+ // initialized by the compiler.
+ FunctionData() { Mutex.Init(); }
+
FunctionData *Next = nullptr;
ContextNode *volatile FlatCtx = nullptr;
::__sanitizer::StaticSpinMutex Mutex;
diff --git a/compiler-rt/lib/ctx_profile/tests/CtxInstrProfilingTest.cpp b/compiler-rt/lib/ctx_profile/tests/CtxInstrProfilingTest.cpp
index 01a8274774ecb..f837424ccca52 100644
--- a/compiler-rt/lib/ctx_profile/tests/CtxInstrProfilingTest.cpp
+++ b/compiler-rt/lib/ctx_profile/tests/CtxInstrProfilingTest.cpp
@@ -69,7 +69,7 @@ TEST_F(ContextTest, Callsite) {
__llvm_ctx_profile_expected_callee[0] = &FakeCalleeAddress;
__llvm_ctx_profile_callsite[0] = &Ctx->subContexts()[2];
// This is what the callee does
- FunctionData FData = {0};
+ FunctionData FData;
auto *Subctx =
__llvm_ctx_profile_get_context(&FData, &FakeCalleeAddress, 2, 3, 1);
// This should not have required creating a flat context.
@@ -93,7 +93,7 @@ TEST_F(ContextTest, ScratchNoCollectionProfilingNotStarted) {
int FakeCalleeAddress = 0;
// this would be the very first function executing this. the TLS is empty,
// too.
- FunctionData FData = {0};
+ FunctionData FData;
auto *Ctx =
__llvm_ctx_profile_get_context(&FData, &FakeCalleeAddress, 2, 3, 1);
// We never entered a context (_start_context was never called) - so the
@@ -111,7 +111,7 @@ TEST_F(ContextTest, ScratchNoCollectionProfilingStarted) {
__llvm_ctx_profile_start_collection();
// this would be the very first function executing this. the TLS is empty,
// too.
- FunctionData FData = {0};
+ FunctionData FData;
auto *Ctx =
__llvm_ctx_profile_get_context(&FData, &FakeCalleeAddress, 2, 3, 1);
// We never entered a context (_start_context was never called) - so the
@@ -130,7 +130,7 @@ TEST_F(ContextTest, ScratchDuringCollection) {
int OtherFakeCalleeAddress = 0;
__llvm_ctx_profile_expected_callee[0] = &FakeCalleeAddress;
__llvm_ctx_profile_callsite[0] = &Ctx->subContexts()[2];
- FunctionData FData[3] = {0};
+ FunctionData FData[3];
auto *Subctx = __llvm_ctx_profile_get_context(
&FData[0], &OtherFakeCalleeAddress, 2, 3, 1);
// We expected a different callee - so return scratch. It mimics what happens
@@ -175,7 +175,7 @@ TEST_F(ContextTest, NeedMoreMemory) {
const auto *CurrentMem = Root.CurrentMem;
__llvm_ctx_profile_expected_callee[0] = &FakeCalleeAddress;
__llvm_ctx_profile_callsite[0] = &Ctx->subContexts()[2];
- FunctionData FData = {0};
+ FunctionData FData;
// Allocate a massive subcontext to force new arena allocation
auto *Subctx =
__llvm_ctx_profile_get_context(&FData, &FakeCalleeAddress, 3, 1 << 20, 1);
@@ -216,7 +216,7 @@ TEST_F(ContextTest, Dump) {
int FakeCalleeAddress = 0;
__llvm_ctx_profile_expected_callee[0] = &FakeCalleeAddress;
__llvm_ctx_profile_callsite[0] = &Ctx->subContexts()[2];
- FunctionData FData = {0};
+ FunctionData FData;
auto *Subctx =
__llvm_ctx_profile_get_context(&FData, &FakeCalleeAddress, 2, 3, 1);
(void)Subctx;
@@ -267,7 +267,7 @@ TEST_F(ContextTest, Dump) {
void writeFlat(GUID Guid, const uint64_t *Buffer,
size_t BufferSize) override {
++FlatsWritten;
- EXPECT_EQ(BufferSize, 3);
+ EXPECT_EQ(BufferSize, 3U);
EXPECT_EQ(Buffer[0], 15U);
EXPECT_EQ(Buffer[1], 0U);
EXPECT_EQ(Buffer[2], 0U);
@@ -284,6 +284,7 @@ TEST_F(ContextTest, Dump) {
__llvm_ctx_profile_start_collection();
auto *Flat =
__llvm_ctx_profile_get_context(&FData, &FakeCalleeAddress, 2, 3, 1);
+ (void)Flat;
EXPECT_NE(FData.FlatCtx, nullptr);
FData.FlatCtx->counters()[0] = 15U;
TestProfileWriter W2(&Root, 0);
More information about the llvm-commits
mailing list