mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-01-31 01:35:20 +01:00
This reverts commit e35afbe535f96086141f57a5ce7d679429b4405f, reapplying
022ccedde8877e877b45e49641544b5e4fff0b42 and
e7ed5c920db3f537a85d962c1c918a1bb6de99fd.
- The first attempt missed defining `SignpostEmitterImpl`.
- The second attempt missed defining `llvm::SignpostEmitterImpl`.
Not sure how I failed to test both versions locally before; I thought
I'd turned the feature off via rerunning `cmake` but it must have been
stuck in place. This time I confirmed via `clang -E` that I was testing
both build configurations.
Original commit message:
Replace some manual memory management with std::unique_ptr.
Differential Revision: https://reviews.llvm.org/D100151
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
//===-- llvm/Support/Signposts.h - Interval debug annotations ---*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// \file Some OS's provide profilers that allow applications to provide custom
|
|
/// annotations to the profiler. For example, on Xcode 10 and later 'signposts'
|
|
/// can be emitted by the application and these will be rendered to the Points
|
|
/// of Interest track on the instruments timeline.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_SUPPORT_SIGNPOSTS_H
|
|
#define LLVM_SUPPORT_SIGNPOSTS_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include <memory>
|
|
|
|
namespace llvm {
|
|
class SignpostEmitterImpl;
|
|
|
|
/// Manages the emission of signposts into the recording method supported by
|
|
/// the OS.
|
|
class SignpostEmitter {
|
|
std::unique_ptr<SignpostEmitterImpl> Impl;
|
|
|
|
public:
|
|
SignpostEmitter();
|
|
~SignpostEmitter();
|
|
|
|
bool isEnabled() const;
|
|
|
|
/// Begin a signposted interval for a given object.
|
|
void startInterval(const void *O, StringRef Name);
|
|
/// End a signposted interval for a given object.
|
|
void endInterval(const void *O, StringRef Name);
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_SUPPORT_SIGNPOSTS_H
|