mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
Removing static initializer from Debug.cpp by converting to a ManagedStatic.
This is part of our larger effort to remove static initializers from LLVM libraries. Reviewed by: chandlerc git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217053 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
413eadfac9
commit
b9053f6cbc
@ -27,6 +27,7 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/Signals.h"
|
#include "llvm/Support/Signals.h"
|
||||||
#include "llvm/Support/circular_raw_ostream.h"
|
#include "llvm/Support/circular_raw_ostream.h"
|
||||||
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
@ -50,14 +51,14 @@ DebugBufferSize("debug-buffer-size",
|
|||||||
cl::Hidden,
|
cl::Hidden,
|
||||||
cl::init(0));
|
cl::init(0));
|
||||||
|
|
||||||
static std::string CurrentDebugType;
|
static ManagedStatic<std::string> CurrentDebugType;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
struct DebugOnlyOpt {
|
struct DebugOnlyOpt {
|
||||||
void operator=(const std::string &Val) const {
|
void operator=(const std::string &Val) const {
|
||||||
DebugFlag |= !Val.empty();
|
DebugFlag |= !Val.empty();
|
||||||
CurrentDebugType = Val;
|
*CurrentDebugType = Val;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -86,7 +87,7 @@ static void debug_user_sig_handler(void *Cookie) {
|
|||||||
// with the -debug-only=X option.
|
// with the -debug-only=X option.
|
||||||
//
|
//
|
||||||
bool llvm::isCurrentDebugType(const char *DebugType) {
|
bool llvm::isCurrentDebugType(const char *DebugType) {
|
||||||
return CurrentDebugType.empty() || DebugType == CurrentDebugType;
|
return CurrentDebugType->empty() || DebugType == *CurrentDebugType;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// setCurrentDebugType - Set the current debug type, as if the -debug-only=X
|
/// setCurrentDebugType - Set the current debug type, as if the -debug-only=X
|
||||||
@ -94,7 +95,7 @@ bool llvm::isCurrentDebugType(const char *DebugType) {
|
|||||||
/// debug output to be produced.
|
/// debug output to be produced.
|
||||||
///
|
///
|
||||||
void llvm::setCurrentDebugType(const char *Type) {
|
void llvm::setCurrentDebugType(const char *Type) {
|
||||||
CurrentDebugType = Type;
|
*CurrentDebugType = Type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// dbgs - Return a circular-buffered debug stream.
|
/// dbgs - Return a circular-buffered debug stream.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user