*** This commit represents a complete reformatting of the LLDB source code

*** to conform to clang-format’s LLVM style.  This kind of mass change has
*** two obvious implications:

Firstly, merging this particular commit into a downstream fork may be a huge
effort.  Alternatively, it may be worth merging all changes up to this commit,
performing the same reformatting operation locally, and then discarding the
merge for this particular commit.  The commands used to accomplish this
reformatting were as follows (with current working directory as the root of
the repository):

    find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} +
    find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ;

The version of clang-format used was 3.9.0, and autopep8 was 1.2.4.

Secondly, “blame” style tools will generally point to this commit instead of
a meaningful prior commit.  There are alternatives available that will attempt
to look through this change and find the appropriate prior commit.  YMMV.

llvm-svn: 280751
This commit is contained in:
Kate Stone
2016-09-06 20:57:50 +00:00
parent d5aa733769
commit b9c1b51e45
2780 changed files with 556690 additions and 597060 deletions

View File

@@ -1,4 +1,5 @@
//===-- SBUnixSignals.cpp -------------------------------------------*- C++ -*-===//
//===-- SBUnixSignals.cpp -------------------------------------------*- C++
//-*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -7,190 +8,136 @@
//
//===----------------------------------------------------------------------===//
#include "lldb/lldb-defines.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/Platform.h"
#include "lldb/Target/UnixSignals.h"
#include "lldb/Core/Log.h"
#include "lldb/Target/Platform.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/UnixSignals.h"
#include "lldb/lldb-defines.h"
#include "lldb/API/SBUnixSignals.h"
using namespace lldb;
using namespace lldb_private;
SBUnixSignals::SBUnixSignals ()
{}
SBUnixSignals::SBUnixSignals() {}
SBUnixSignals::SBUnixSignals (const SBUnixSignals &rhs) :
m_opaque_wp(rhs.m_opaque_wp)
{
SBUnixSignals::SBUnixSignals(const SBUnixSignals &rhs)
: m_opaque_wp(rhs.m_opaque_wp) {}
SBUnixSignals::SBUnixSignals(ProcessSP &process_sp)
: m_opaque_wp(process_sp ? process_sp->GetUnixSignals() : nullptr) {}
SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp)
: m_opaque_wp(platform_sp ? platform_sp->GetUnixSignals() : nullptr) {}
const SBUnixSignals &SBUnixSignals::operator=(const SBUnixSignals &rhs) {
if (this != &rhs)
m_opaque_wp = rhs.m_opaque_wp;
return *this;
}
SBUnixSignals::SBUnixSignals(ProcessSP &process_sp) :
m_opaque_wp(process_sp ? process_sp->GetUnixSignals() : nullptr)
{
SBUnixSignals::~SBUnixSignals() {}
UnixSignalsSP SBUnixSignals::GetSP() const { return m_opaque_wp.lock(); }
void SBUnixSignals::SetSP(const UnixSignalsSP &signals_sp) {
m_opaque_wp = signals_sp;
}
SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp) :
m_opaque_wp(platform_sp ? platform_sp->GetUnixSignals() : nullptr)
{
void SBUnixSignals::Clear() { m_opaque_wp.reset(); }
bool SBUnixSignals::IsValid() const { return static_cast<bool>(GetSP()); }
const char *SBUnixSignals::GetSignalAsCString(int32_t signo) const {
if (auto signals_sp = GetSP())
return signals_sp->GetSignalAsCString(signo);
return nullptr;
}
const SBUnixSignals&
SBUnixSignals::operator = (const SBUnixSignals& rhs)
{
if (this != &rhs)
m_opaque_wp = rhs.m_opaque_wp;
return *this;
int32_t SBUnixSignals::GetSignalNumberFromName(const char *name) const {
if (auto signals_sp = GetSP())
return signals_sp->GetSignalNumberFromName(name);
return LLDB_INVALID_SIGNAL_NUMBER;
}
SBUnixSignals::~SBUnixSignals()
{
bool SBUnixSignals::GetShouldSuppress(int32_t signo) const {
if (auto signals_sp = GetSP())
return signals_sp->GetShouldSuppress(signo);
return false;
}
UnixSignalsSP
SBUnixSignals::GetSP() const
{
return m_opaque_wp.lock();
bool SBUnixSignals::SetShouldSuppress(int32_t signo, bool value) {
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
auto signals_sp = GetSP();
if (log) {
log->Printf("SBUnixSignals(%p)::SetShouldSuppress (signo=%d, value=%d)",
static_cast<void *>(signals_sp.get()), signo, value);
}
if (signals_sp)
return signals_sp->SetShouldSuppress(signo, value);
return false;
}
void
SBUnixSignals::SetSP(const UnixSignalsSP &signals_sp)
{
m_opaque_wp = signals_sp;
bool SBUnixSignals::GetShouldStop(int32_t signo) const {
if (auto signals_sp = GetSP())
return signals_sp->GetShouldStop(signo);
return false;
}
void
SBUnixSignals::Clear ()
{
m_opaque_wp.reset();
bool SBUnixSignals::SetShouldStop(int32_t signo, bool value) {
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
auto signals_sp = GetSP();
if (log) {
log->Printf("SBUnixSignals(%p)::SetShouldStop (signo=%d, value=%d)",
static_cast<void *>(signals_sp.get()), signo, value);
}
if (signals_sp)
return signals_sp->SetShouldStop(signo, value);
return false;
}
bool
SBUnixSignals::IsValid() const
{
return static_cast<bool>(GetSP());
bool SBUnixSignals::GetShouldNotify(int32_t signo) const {
if (auto signals_sp = GetSP())
return signals_sp->GetShouldNotify(signo);
return false;
}
const char *
SBUnixSignals::GetSignalAsCString (int32_t signo) const
{
if (auto signals_sp = GetSP())
return signals_sp->GetSignalAsCString(signo);
bool SBUnixSignals::SetShouldNotify(int32_t signo, bool value) {
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
auto signals_sp = GetSP();
return nullptr;
if (log) {
log->Printf("SBUnixSignals(%p)::SetShouldNotify (signo=%d, value=%d)",
static_cast<void *>(signals_sp.get()), signo, value);
}
if (signals_sp)
return signals_sp->SetShouldNotify(signo, value);
return false;
}
int32_t
SBUnixSignals::GetSignalNumberFromName (const char *name) const
{
if (auto signals_sp = GetSP())
return signals_sp->GetSignalNumberFromName(name);
int32_t SBUnixSignals::GetNumSignals() const {
if (auto signals_sp = GetSP())
return signals_sp->GetNumSignals();
return LLDB_INVALID_SIGNAL_NUMBER;
return -1;
}
bool
SBUnixSignals::GetShouldSuppress (int32_t signo) const
{
if (auto signals_sp = GetSP())
return signals_sp->GetShouldSuppress(signo);
int32_t SBUnixSignals::GetSignalAtIndex(int32_t index) const {
if (auto signals_sp = GetSP())
return signals_sp->GetSignalAtIndex(index);
return false;
}
bool
SBUnixSignals::SetShouldSuppress (int32_t signo, bool value)
{
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
auto signals_sp = GetSP();
if (log)
{
log->Printf ("SBUnixSignals(%p)::SetShouldSuppress (signo=%d, value=%d)",
static_cast<void*>(signals_sp.get()),
signo,
value);
}
if (signals_sp)
return signals_sp->SetShouldSuppress(signo, value);
return false;
}
bool
SBUnixSignals::GetShouldStop (int32_t signo) const
{
if (auto signals_sp = GetSP())
return signals_sp->GetShouldStop(signo);
return false;
}
bool
SBUnixSignals::SetShouldStop (int32_t signo, bool value)
{
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
auto signals_sp = GetSP();
if (log)
{
log->Printf ("SBUnixSignals(%p)::SetShouldStop (signo=%d, value=%d)",
static_cast<void*>(signals_sp.get()),
signo,
value);
}
if (signals_sp)
return signals_sp->SetShouldStop(signo, value);
return false;
}
bool
SBUnixSignals::GetShouldNotify (int32_t signo) const
{
if (auto signals_sp = GetSP())
return signals_sp->GetShouldNotify(signo);
return false;
}
bool
SBUnixSignals::SetShouldNotify (int32_t signo, bool value)
{
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
auto signals_sp = GetSP();
if (log)
{
log->Printf ("SBUnixSignals(%p)::SetShouldNotify (signo=%d, value=%d)",
static_cast<void*>(signals_sp.get()),
signo,
value);
}
if (signals_sp)
return signals_sp->SetShouldNotify(signo, value);
return false;
}
int32_t
SBUnixSignals::GetNumSignals () const
{
if (auto signals_sp = GetSP())
return signals_sp->GetNumSignals();
return -1;
}
int32_t
SBUnixSignals::GetSignalAtIndex (int32_t index) const
{
if (auto signals_sp = GetSP())
return signals_sp->GetSignalAtIndex(index);
return LLDB_INVALID_SIGNAL_NUMBER;
return LLDB_INVALID_SIGNAL_NUMBER;
}