Files
llvm/lldb/source/Initialization/SystemLifetimeManager.cpp
Jonas Devlieghere 936c62422f [Reproducers] Initialize reproducers before initializing the debugger.
As per the discussion on the mailing list:
http://lists.llvm.org/pipermail/lldb-commits/Week-of-Mon-20190218/048007.html

This commit implements option (3):

> Go back to initializing the reproducer before the rest of the debugger.
> The method wouldn't be instrumented and guarantee no other SB methods are
> called or SB objects are constructed. The initialization then becomes part
> of the replay.

Differential revision: https://reviews.llvm.org/D58410

llvm-svn: 354631
2019-02-21 22:26:16 +00:00

57 lines
1.6 KiB
C++

//===-- SystemLifetimeManager.cpp ------------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "lldb/Initialization/SystemLifetimeManager.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Initialization/SystemInitializer.h"
#include <utility>
using namespace lldb_private;
SystemLifetimeManager::SystemLifetimeManager()
: m_mutex(), m_initialized(false) {}
SystemLifetimeManager::~SystemLifetimeManager() {
assert(!m_initialized &&
"SystemLifetimeManager destroyed without calling Terminate!");
}
llvm::Error SystemLifetimeManager::Initialize(
std::unique_ptr<SystemInitializer> initializer,
LoadPluginCallbackType plugin_callback) {
std::lock_guard<std::recursive_mutex> guard(m_mutex);
if (!m_initialized) {
assert(!m_initializer && "Attempting to call "
"SystemLifetimeManager::Initialize() when it is "
"already initialized");
m_initialized = true;
m_initializer = std::move(initializer);
if (auto e = m_initializer->Initialize())
return e;
Debugger::Initialize(plugin_callback);
}
return llvm::Error::success();
}
void SystemLifetimeManager::Terminate() {
std::lock_guard<std::recursive_mutex> guard(m_mutex);
if (m_initialized) {
Debugger::Terminate();
m_initializer->Terminate();
m_initializer.reset();
m_initialized = false;
}
}