[llvm] Reapply "Make llvm::telemetry::Manager::preDispatch protected. (#127114) (PR #127431)

Vy Nguyen via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 16 20:16:23 PST 2025


https://github.com/oontvoo created https://github.com/llvm/llvm-project/pull/127431

This reverts commit 66465c3b0ab1b32403ad5a1c3114174d87830f54.

New change: added missing return statement.

>From 8091299d4c9cbdd46cde0be7ccd766c8c7a70312 Mon Sep 17 00:00:00 2001
From: Vy Nguyen <vyng at google.com>
Date: Sun, 16 Feb 2025 23:13:46 -0500
Subject: [PATCH] Reapply "Make llvm::telemetry::Manager::preDispatch
 protected.  (#127114)"

This reverts commit 66465c3b0ab1b32403ad5a1c3114174d87830f54.

New change: added missing return statement.
---
 llvm/include/llvm/Telemetry/Telemetry.h |  9 +++++----
 llvm/lib/Telemetry/Telemetry.cpp        | 15 +++++++++++++++
 2 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/llvm/include/llvm/Telemetry/Telemetry.h b/llvm/include/llvm/Telemetry/Telemetry.h
index 344a49df5cbf0..42319f3ef51f2 100644
--- a/llvm/include/llvm/Telemetry/Telemetry.h
+++ b/llvm/include/llvm/Telemetry/Telemetry.h
@@ -138,10 +138,6 @@ class Manager {
 public:
   virtual ~Manager() = default;
 
-  // Optional callback for subclasses to perform additional tasks before
-  // dispatching to Destinations.
-  virtual Error preDispatch(TelemetryInfo *Entry) = 0;
-
   // Dispatch Telemetry data to the Destination(s).
   // The argument is non-const because the Manager may add or remove
   // data from the entry.
@@ -150,6 +146,11 @@ class Manager {
   // Register a Destination.
   void addDestination(std::unique_ptr<Destination> Destination);
 
+protected:
+  // Optional callback for subclasses to perform additional tasks before
+  // dispatching to Destinations.
+  virtual Error preDispatch(TelemetryInfo *Entry);
+
 private:
   std::vector<std::unique_ptr<Destination>> Destinations;
 };
diff --git a/llvm/lib/Telemetry/Telemetry.cpp b/llvm/lib/Telemetry/Telemetry.cpp
index 9e13d08334e3b..d86ad9c1c37bb 100644
--- a/llvm/lib/Telemetry/Telemetry.cpp
+++ b/llvm/lib/Telemetry/Telemetry.cpp
@@ -1,3 +1,16 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// This file provides the basic framework for Telemetry.
+/// Refer to its documentation at llvm/docs/Telemetry.rst for more details.
+//===---------------------------------------------------------------------===//
+
 #include "llvm/Telemetry/Telemetry.h"
 
 namespace llvm {
@@ -22,5 +35,7 @@ void Manager::addDestination(std::unique_ptr<Destination> Dest) {
   Destinations.push_back(std::move(Dest));
 }
 
+Error Manager::preDispatch(TelemetryInfo *Entry) { return Error::success(); }
+
 } // namespace telemetry
 } // namespace llvm



More information about the llvm-commits mailing list