[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 15:23:27 +08:00
|
|
|
//===-- ExecutionContext.cpp ----------------------------------------------===//
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Target/ExecutionContext.h"
|
|
|
|
#include "lldb/Target/ExecutionContextScope.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
2013-11-04 17:33:30 +08:00
|
|
|
#include "lldb/Target/StackFrame.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/Thread.h"
|
2018-08-07 19:07:21 +08:00
|
|
|
#include "lldb/Utility/State.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
ExecutionContext::ExecutionContext()
|
2011-09-22 12:58:26 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-09-22 12:58:26 +08:00
|
|
|
ExecutionContext::ExecutionContext(const ExecutionContext &rhs)
|
|
|
|
: m_target_sp(rhs.m_target_sp), m_process_sp(rhs.m_process_sp),
|
2012-02-17 15:49:44 +08:00
|
|
|
m_thread_sp(rhs.m_thread_sp), m_frame_sp(rhs.m_frame_sp) {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp,
|
|
|
|
bool get_process)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
if (target_sp)
|
|
|
|
SetContext(target_sp, get_process);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::ProcessSP &process_sp)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
if (process_sp)
|
|
|
|
SetContext(process_sp);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::ThreadSP &thread_sp)
|
2012-02-17 15:49:44 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
if (thread_sp)
|
|
|
|
SetContext(thread_sp);
|
2011-09-22 12:58:26 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::StackFrameSP &frame_sp)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
if (frame_sp)
|
|
|
|
SetContext(frame_sp);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::TargetWP &target_wp,
|
|
|
|
bool get_process)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
lldb::TargetSP target_sp(target_wp.lock());
|
|
|
|
if (target_sp)
|
|
|
|
SetContext(target_sp, get_process);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::ProcessWP &process_wp)
|
2012-02-21 08:09:25 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
2013-11-04 17:33:30 +08:00
|
|
|
lldb::ProcessSP process_sp(process_wp.lock());
|
2012-02-21 08:09:25 +08:00
|
|
|
if (process_sp)
|
|
|
|
SetContext(process_sp);
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::ThreadWP &thread_wp)
|
2015-02-12 08:34:25 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
lldb::ThreadSP thread_sp(thread_wp.lock());
|
|
|
|
if (thread_sp)
|
|
|
|
SetContext(thread_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
ExecutionContext::ExecutionContext(const lldb::StackFrameWP &frame_wp)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
lldb::StackFrameSP frame_sp(frame_wp.lock());
|
2012-02-17 15:49:44 +08:00
|
|
|
if (frame_sp)
|
2013-11-04 17:33:30 +08:00
|
|
|
SetContext(frame_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
ExecutionContext::ExecutionContext(Target *t,
|
|
|
|
bool fill_current_process_thread_frame)
|
2015-02-12 08:34:25 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
2012-01-30 04:56:30 +08:00
|
|
|
if (t) {
|
2015-02-12 08:34:25 +08:00
|
|
|
m_target_sp = t->shared_from_this();
|
2010-06-09 00:52:24 +08:00
|
|
|
if (fill_current_process_thread_frame) {
|
2015-02-12 08:34:25 +08:00
|
|
|
m_process_sp = t->GetProcessSP();
|
2012-01-30 04:56:30 +08:00
|
|
|
if (m_process_sp) {
|
|
|
|
m_thread_sp = m_process_sp->GetThreadList().GetSelectedThread();
|
2011-09-22 12:58:26 +08:00
|
|
|
if (m_thread_sp)
|
2012-01-30 04:56:30 +08:00
|
|
|
m_frame_sp = m_thread_sp->GetSelectedFrame();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2015-02-12 08:34:25 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-21 08:09:25 +08:00
|
|
|
ExecutionContext::ExecutionContext(Process *process, Thread *thread,
|
2013-11-04 17:33:30 +08:00
|
|
|
StackFrame *frame)
|
2016-05-19 13:13:57 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
2012-01-30 04:56:30 +08:00
|
|
|
if (process) {
|
|
|
|
m_process_sp = process->shared_from_this();
|
2012-02-17 15:49:44 +08:00
|
|
|
m_target_sp = process->GetTarget().shared_from_this();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2015-02-12 08:34:25 +08:00
|
|
|
if (thread)
|
|
|
|
m_thread_sp = thread->shared_from_this();
|
|
|
|
if (frame)
|
|
|
|
m_frame_sp = frame->shared_from_this();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref)
|
|
|
|
: m_target_sp(exe_ctx_ref.GetTargetSP()),
|
|
|
|
m_process_sp(exe_ctx_ref.GetProcessSP()),
|
|
|
|
m_thread_sp(exe_ctx_ref.GetThreadSP()),
|
|
|
|
m_frame_sp(exe_ctx_ref.GetFrameSP()) {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-01-28 07:43:24 +08:00
|
|
|
ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr,
|
|
|
|
bool thread_and_frame_only_if_stopped)
|
2012-02-17 15:49:44 +08:00
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
if (exe_ctx_ref_ptr) {
|
|
|
|
m_target_sp = exe_ctx_ref_ptr->GetTargetSP();
|
|
|
|
m_process_sp = exe_ctx_ref_ptr->GetProcessSP();
|
2014-01-28 07:43:24 +08:00
|
|
|
if (!thread_and_frame_only_if_stopped ||
|
|
|
|
(m_process_sp && StateIsStoppedState(m_process_sp->GetState(), true))) {
|
|
|
|
m_thread_sp = exe_ctx_ref_ptr->GetThreadSP();
|
|
|
|
m_frame_sp = exe_ctx_ref_ptr->GetFrameSP();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr,
|
|
|
|
std::unique_lock<std::recursive_mutex> &lock)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
2012-08-23 05:34:33 +08:00
|
|
|
if (exe_ctx_ref_ptr) {
|
2016-05-19 13:13:57 +08:00
|
|
|
m_target_sp = exe_ctx_ref_ptr->GetTargetSP();
|
2012-08-23 05:34:33 +08:00
|
|
|
if (m_target_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
lock = std::unique_lock<std::recursive_mutex>(m_target_sp->GetAPIMutex());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
m_process_sp = exe_ctx_ref_ptr->GetProcessSP();
|
|
|
|
m_thread_sp = exe_ctx_ref_ptr->GetThreadSP();
|
|
|
|
m_frame_sp = exe_ctx_ref_ptr->GetFrameSP();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-08-23 05:34:33 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 13:13:57 +08:00
|
|
|
ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref,
|
|
|
|
std::unique_lock<std::recursive_mutex> &lock)
|
|
|
|
: m_target_sp(exe_ctx_ref.GetTargetSP()), m_process_sp(), m_thread_sp(),
|
|
|
|
m_frame_sp() {
|
2012-08-23 05:34:33 +08:00
|
|
|
if (m_target_sp) {
|
2016-05-19 13:13:57 +08:00
|
|
|
lock = std::unique_lock<std::recursive_mutex>(m_target_sp->GetAPIMutex());
|
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
m_process_sp = exe_ctx_ref.GetProcessSP();
|
2016-05-19 13:13:57 +08:00
|
|
|
m_thread_sp = exe_ctx_ref.GetThreadSP();
|
|
|
|
m_frame_sp = exe_ctx_ref.GetFrameSP();
|
2012-08-23 05:34:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
ExecutionContext::ExecutionContext(ExecutionContextScope *exe_scope_ptr)
|
|
|
|
: m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {
|
|
|
|
if (exe_scope_ptr)
|
|
|
|
exe_scope_ptr->CalculateExecutionContext(*this);
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
ExecutionContext::ExecutionContext(ExecutionContextScope &exe_scope_ref) {
|
2010-10-04 09:05:56 +08:00
|
|
|
exe_scope_ref.CalculateExecutionContext(*this);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::Clear() {
|
2011-09-22 12:58:26 +08:00
|
|
|
m_target_sp.reset();
|
|
|
|
m_process_sp.reset();
|
|
|
|
m_thread_sp.reset();
|
|
|
|
m_frame_sp.reset();
|
|
|
|
}
|
|
|
|
|
2016-02-18 08:10:17 +08:00
|
|
|
ExecutionContext::~ExecutionContext() = default;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
uint32_t ExecutionContext::GetAddressByteSize() const {
|
|
|
|
if (m_target_sp && m_target_sp->GetArchitecture().IsValid())
|
2015-02-26 00:01:12 +08:00
|
|
|
return m_target_sp->GetArchitecture().GetAddressByteSize();
|
2012-02-17 15:49:44 +08:00
|
|
|
if (m_process_sp)
|
2015-02-26 00:01:12 +08:00
|
|
|
return m_process_sp->GetAddressByteSize();
|
2012-02-17 15:49:44 +08:00
|
|
|
return sizeof(void *);
|
|
|
|
}
|
|
|
|
|
2013-10-09 05:49:02 +08:00
|
|
|
lldb::ByteOrder ExecutionContext::GetByteOrder() const {
|
|
|
|
if (m_target_sp && m_target_sp->GetArchitecture().IsValid())
|
2019-08-08 00:09:35 +08:00
|
|
|
return m_target_sp->GetArchitecture().GetByteOrder();
|
2013-10-09 05:49:02 +08:00
|
|
|
if (m_process_sp)
|
2019-08-08 00:09:35 +08:00
|
|
|
return m_process_sp->GetByteOrder();
|
2015-11-07 12:40:13 +08:00
|
|
|
return endian::InlHostByteOrder();
|
2013-10-09 05:49:02 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
RegisterContext *ExecutionContext::GetRegisterContext() const {
|
2011-09-22 12:58:26 +08:00
|
|
|
if (m_frame_sp)
|
|
|
|
return m_frame_sp->GetRegisterContext().get();
|
|
|
|
else if (m_thread_sp)
|
|
|
|
return m_thread_sp->GetRegisterContext().get();
|
2016-02-18 08:10:17 +08:00
|
|
|
return nullptr;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-09-22 12:58:26 +08:00
|
|
|
Target *ExecutionContext::GetTargetPtr() const {
|
|
|
|
if (m_target_sp)
|
|
|
|
return m_target_sp.get();
|
|
|
|
if (m_process_sp)
|
|
|
|
return &m_process_sp->GetTarget();
|
2016-02-18 08:10:17 +08:00
|
|
|
return nullptr;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2011-07-07 09:59:51 +08:00
|
|
|
|
2011-09-22 12:58:26 +08:00
|
|
|
Process *ExecutionContext::GetProcessPtr() const {
|
|
|
|
if (m_process_sp)
|
|
|
|
return m_process_sp.get();
|
|
|
|
if (m_target_sp)
|
|
|
|
return m_target_sp->GetProcessSP().get();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExecutionContextScope *ExecutionContext::GetBestExecutionContextScope() const {
|
|
|
|
if (m_frame_sp)
|
|
|
|
return m_frame_sp.get();
|
2012-02-21 08:09:25 +08:00
|
|
|
if (m_thread_sp)
|
|
|
|
return m_thread_sp.get();
|
2016-02-18 08:10:17 +08:00
|
|
|
if (m_process_sp)
|
|
|
|
return m_process_sp.get();
|
2011-09-22 12:58:26 +08:00
|
|
|
return m_target_sp.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
Target &ExecutionContext::GetTargetRef() const {
|
2016-02-18 08:10:17 +08:00
|
|
|
assert(m_target_sp);
|
2011-09-22 12:58:26 +08:00
|
|
|
return *m_target_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
Process &ExecutionContext::GetProcessRef() const {
|
2016-02-18 08:10:17 +08:00
|
|
|
assert(m_process_sp);
|
2011-09-22 12:58:26 +08:00
|
|
|
return *m_process_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thread &ExecutionContext::GetThreadRef() const {
|
2016-02-18 08:10:17 +08:00
|
|
|
assert(m_thread_sp);
|
2011-09-22 12:58:26 +08:00
|
|
|
return *m_thread_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
StackFrame &ExecutionContext::GetFrameRef() const {
|
|
|
|
assert(m_frame_sp);
|
|
|
|
return *m_frame_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) {
|
|
|
|
m_target_sp = target_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetProcessSP(const lldb::ProcessSP &process_sp) {
|
|
|
|
m_process_sp = process_sp;
|
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
void ExecutionContext::SetThreadSP(const lldb::ThreadSP &thread_sp) {
|
2011-09-22 12:58:26 +08:00
|
|
|
m_thread_sp = thread_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetFrameSP(const lldb::StackFrameSP &frame_sp) {
|
2012-01-30 04:56:30 +08:00
|
|
|
m_frame_sp = frame_sp;
|
2011-09-22 12:58:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetTargetPtr(Target *target) {
|
2012-01-30 04:56:30 +08:00
|
|
|
if (target)
|
|
|
|
m_target_sp = target->shared_from_this();
|
|
|
|
else
|
|
|
|
m_target_sp.reset();
|
2011-09-22 12:58:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetProcessPtr(Process *process) {
|
2012-01-30 04:56:30 +08:00
|
|
|
if (process)
|
|
|
|
m_process_sp = process->shared_from_this();
|
|
|
|
else
|
|
|
|
m_process_sp.reset();
|
2011-09-22 12:58:26 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
void ExecutionContext::SetThreadPtr(Thread *thread) {
|
2012-01-30 04:56:30 +08:00
|
|
|
if (thread)
|
|
|
|
m_thread_sp = thread->shared_from_this();
|
|
|
|
else
|
|
|
|
m_thread_sp.reset();
|
2011-09-22 12:58:26 +08:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
void ExecutionContext::SetFramePtr(StackFrame *frame) {
|
|
|
|
if (frame)
|
|
|
|
m_frame_sp = frame->shared_from_this();
|
|
|
|
else
|
|
|
|
m_frame_sp.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetContext(const lldb::TargetSP &target_sp,
|
|
|
|
bool get_process) {
|
|
|
|
m_target_sp = target_sp;
|
|
|
|
if (get_process && target_sp)
|
|
|
|
m_process_sp = target_sp->GetProcessSP();
|
|
|
|
else
|
|
|
|
m_process_sp.reset();
|
|
|
|
m_thread_sp.reset();
|
|
|
|
m_frame_sp.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContext::SetContext(const lldb::ProcessSP &process_sp) {
|
2012-02-21 08:09:25 +08:00
|
|
|
m_process_sp = process_sp;
|
2012-02-17 15:49:44 +08:00
|
|
|
if (process_sp)
|
|
|
|
m_target_sp = process_sp->GetTarget().shared_from_this();
|
|
|
|
else
|
|
|
|
m_target_sp.reset();
|
|
|
|
m_thread_sp.reset();
|
|
|
|
m_frame_sp.reset();
|
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
void ExecutionContext::SetContext(const lldb::ThreadSP &thread_sp) {
|
2012-02-17 15:49:44 +08:00
|
|
|
m_frame_sp.reset();
|
2012-02-18 13:35:26 +08:00
|
|
|
m_thread_sp = thread_sp;
|
2012-02-17 15:49:44 +08:00
|
|
|
if (thread_sp) {
|
2012-02-21 08:09:25 +08:00
|
|
|
m_process_sp = thread_sp->GetProcess();
|
2012-02-17 15:49:44 +08:00
|
|
|
if (m_process_sp)
|
|
|
|
m_target_sp = m_process_sp->GetTarget().shared_from_this();
|
|
|
|
else
|
2012-01-30 04:56:30 +08:00
|
|
|
m_target_sp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
} else {
|
2012-01-30 04:56:30 +08:00
|
|
|
m_target_sp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
m_process_sp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
void ExecutionContext::SetContext(const lldb::StackFrameSP &frame_sp) {
|
2012-02-17 15:49:44 +08:00
|
|
|
m_frame_sp = frame_sp;
|
|
|
|
if (frame_sp) {
|
2012-04-05 04:43:47 +08:00
|
|
|
m_thread_sp = frame_sp->CalculateThread();
|
2011-09-22 12:58:26 +08:00
|
|
|
if (m_thread_sp) {
|
2012-04-06 00:12:35 +08:00
|
|
|
m_process_sp = m_thread_sp->GetProcess();
|
2011-09-22 12:58:26 +08:00
|
|
|
if (m_process_sp)
|
2012-04-06 00:12:35 +08:00
|
|
|
m_target_sp = m_process_sp->GetTarget().shared_from_this();
|
2016-09-07 04:57:50 +08:00
|
|
|
else
|
2012-02-17 15:49:44 +08:00
|
|
|
m_target_sp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-01-30 04:56:30 +08:00
|
|
|
m_target_sp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
m_process_sp.reset();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-01-30 04:56:30 +08:00
|
|
|
m_target_sp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
m_process_sp.reset();
|
|
|
|
m_thread_sp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
ExecutionContext &ExecutionContext::operator=(const ExecutionContext &rhs) {
|
|
|
|
if (this != &rhs) {
|
|
|
|
m_target_sp = rhs.m_target_sp;
|
|
|
|
m_process_sp = rhs.m_process_sp;
|
|
|
|
m_thread_sp = rhs.m_thread_sp;
|
|
|
|
m_frame_sp = rhs.m_frame_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-02-17 15:49:44 +08:00
|
|
|
return *this;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
bool ExecutionContext::operator==(const ExecutionContext &rhs) const {
|
|
|
|
// Check that the frame shared pointers match, or both are valid and their
|
2018-05-01 00:49:04 +08:00
|
|
|
// stack IDs match since sometimes we get new objects that represent the same
|
2012-02-17 15:49:44 +08:00
|
|
|
// frame within a thread.
|
|
|
|
if ((m_frame_sp == rhs.m_frame_sp) ||
|
|
|
|
(m_frame_sp && rhs.m_frame_sp &&
|
|
|
|
m_frame_sp->GetStackID() == rhs.m_frame_sp->GetStackID())) {
|
2018-05-01 00:49:04 +08:00
|
|
|
// Check that the thread shared pointers match, or both are valid and their
|
|
|
|
// thread IDs match since sometimes we get new objects that represent the
|
|
|
|
// same thread within a process.
|
2012-02-17 15:49:44 +08:00
|
|
|
if ((m_thread_sp == rhs.m_thread_sp) ||
|
|
|
|
(m_thread_sp && rhs.m_thread_sp &&
|
|
|
|
m_thread_sp->GetID() == rhs.m_thread_sp->GetID())) {
|
|
|
|
// Processes and targets don't change much
|
|
|
|
return m_process_sp == rhs.m_process_sp && m_target_sp == rhs.m_target_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
2012-02-17 15:49:44 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ExecutionContext::operator!=(const ExecutionContext &rhs) const {
|
|
|
|
return !(*this == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ExecutionContext::HasTargetScope() const {
|
2012-04-06 00:12:35 +08:00
|
|
|
return ((bool)m_target_sp && m_target_sp->IsValid());
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ExecutionContext::HasProcessScope() const {
|
|
|
|
return (HasTargetScope() && ((bool)m_process_sp && m_process_sp->IsValid()));
|
|
|
|
}
|
|
|
|
|
2016-02-18 08:10:17 +08:00
|
|
|
bool ExecutionContext::HasThreadScope() const {
|
|
|
|
return (HasProcessScope() && ((bool)m_thread_sp && m_thread_sp->IsValid()));
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-02-17 15:49:44 +08:00
|
|
|
|
|
|
|
bool ExecutionContext::HasFrameScope() const {
|
|
|
|
return HasThreadScope() && m_frame_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExecutionContextRef::ExecutionContextRef()
|
|
|
|
: m_target_wp(), m_process_wp(), m_thread_wp(),
|
|
|
|
m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
ExecutionContextRef::ExecutionContextRef(const ExecutionContext *exe_ctx)
|
2012-04-06 00:12:35 +08:00
|
|
|
: m_target_wp(), m_process_wp(), m_thread_wp(),
|
|
|
|
m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() {
|
2012-02-17 15:49:44 +08:00
|
|
|
if (exe_ctx)
|
2012-04-06 00:12:35 +08:00
|
|
|
*this = *exe_ctx;
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ExecutionContextRef::ExecutionContextRef(const ExecutionContext &exe_ctx)
|
2012-04-06 00:12:35 +08:00
|
|
|
: m_target_wp(), m_process_wp(), m_thread_wp(),
|
2012-02-17 15:49:44 +08:00
|
|
|
m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() {
|
|
|
|
*this = exe_ctx;
|
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
ExecutionContextRef::ExecutionContextRef(Target *target, bool adopt_selected)
|
2012-02-17 15:49:44 +08:00
|
|
|
: m_target_wp(), m_process_wp(), m_thread_wp(),
|
|
|
|
m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() {
|
2012-04-06 00:12:35 +08:00
|
|
|
SetTargetPtr(target, adopt_selected);
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ExecutionContextRef::ExecutionContextRef(const ExecutionContextRef &rhs)
|
|
|
|
: m_target_wp(rhs.m_target_wp), m_process_wp(rhs.m_process_wp),
|
|
|
|
m_thread_wp(rhs.m_thread_wp), m_tid(rhs.m_tid),
|
2015-01-20 07:51:51 +08:00
|
|
|
m_stack_id(rhs.m_stack_id) {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-01-20 07:51:51 +08:00
|
|
|
ExecutionContextRef &ExecutionContextRef::
|
|
|
|
operator=(const ExecutionContextRef &rhs) {
|
|
|
|
if (this != &rhs) {
|
|
|
|
m_target_wp = rhs.m_target_wp;
|
|
|
|
m_process_wp = rhs.m_process_wp;
|
2012-07-31 06:05:39 +08:00
|
|
|
m_thread_wp = rhs.m_thread_wp;
|
2013-11-04 17:33:30 +08:00
|
|
|
m_tid = rhs.m_tid;
|
2012-07-31 06:05:39 +08:00
|
|
|
m_stack_id = rhs.m_stack_id;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-07-31 06:05:39 +08:00
|
|
|
return *this;
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ExecutionContextRef &ExecutionContextRef::
|
|
|
|
operator=(const ExecutionContext &exe_ctx) {
|
|
|
|
m_target_wp = exe_ctx.GetTargetSP();
|
2012-04-06 00:12:35 +08:00
|
|
|
m_process_wp = exe_ctx.GetProcessSP();
|
|
|
|
lldb::ThreadSP thread_sp(exe_ctx.GetThreadSP());
|
2012-02-17 15:49:44 +08:00
|
|
|
m_thread_wp = thread_sp;
|
|
|
|
if (thread_sp)
|
2012-04-06 00:12:35 +08:00
|
|
|
m_tid = thread_sp->GetID();
|
|
|
|
else
|
|
|
|
m_tid = LLDB_INVALID_THREAD_ID;
|
|
|
|
lldb::StackFrameSP frame_sp(exe_ctx.GetFrameSP());
|
2012-02-17 15:49:44 +08:00
|
|
|
if (frame_sp)
|
2012-04-06 00:12:35 +08:00
|
|
|
m_stack_id = frame_sp->GetStackID();
|
2016-09-07 04:57:50 +08:00
|
|
|
else
|
2012-04-06 00:12:35 +08:00
|
|
|
m_stack_id.Clear();
|
2012-02-17 15:49:44 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExecutionContextRef::Clear() {
|
2012-04-06 00:12:35 +08:00
|
|
|
m_target_wp.reset();
|
|
|
|
m_process_wp.reset();
|
|
|
|
ClearThread();
|
|
|
|
ClearFrame();
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 17:33:30 +08:00
|
|
|
ExecutionContextRef::~ExecutionContextRef() = default;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
void ExecutionContextRef::SetTargetSP(const lldb::TargetSP &target_sp) {
|
|
|
|
m_target_wp = target_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
void ExecutionContextRef::SetProcessSP(const lldb::ProcessSP &process_sp) {
|
|
|
|
if (process_sp) {
|
|
|
|
m_process_wp = process_sp;
|
|
|
|
SetTargetSP(process_sp->GetTarget().shared_from_this());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
m_process_wp.reset();
|
2012-08-23 05:34:33 +08:00
|
|
|
m_target_wp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
void ExecutionContextRef::SetThreadSP(const lldb::ThreadSP &thread_sp) {
|
|
|
|
if (thread_sp) {
|
|
|
|
m_thread_wp = thread_sp;
|
2012-04-06 00:12:35 +08:00
|
|
|
m_tid = thread_sp->GetID();
|
|
|
|
SetProcessSP(thread_sp->GetProcess());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
ClearThread();
|
|
|
|
m_process_wp.reset();
|
2012-08-23 05:34:33 +08:00
|
|
|
m_target_wp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-08-23 05:34:33 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
void ExecutionContextRef::SetFrameSP(const lldb::StackFrameSP &frame_sp) {
|
|
|
|
if (frame_sp) {
|
|
|
|
m_stack_id = frame_sp->GetStackID();
|
|
|
|
SetThreadSP(frame_sp->GetThread());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
ClearFrame();
|
|
|
|
ClearThread();
|
2012-08-23 05:34:33 +08:00
|
|
|
m_process_wp.reset();
|
|
|
|
m_target_wp.reset();
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
void ExecutionContextRef::SetTargetPtr(Target *target, bool adopt_selected) {
|
|
|
|
Clear();
|
|
|
|
if (target) {
|
|
|
|
lldb::TargetSP target_sp(target->shared_from_this());
|
2012-04-05 04:43:47 +08:00
|
|
|
if (target_sp) {
|
|
|
|
m_target_wp = target_sp;
|
2012-02-17 15:49:44 +08:00
|
|
|
if (adopt_selected) {
|
2012-04-05 04:43:47 +08:00
|
|
|
lldb::ProcessSP process_sp(target_sp->GetProcessSP());
|
2012-08-23 05:34:33 +08:00
|
|
|
if (process_sp) {
|
|
|
|
m_process_wp = process_sp;
|
2012-04-06 00:12:35 +08:00
|
|
|
if (process_sp) {
|
2012-08-23 05:34:33 +08:00
|
|
|
// Only fill in the thread and frame if our process is stopped
|
|
|
|
// Don't just check the state, since we might be in the middle of
|
2015-01-20 07:51:51 +08:00
|
|
|
// resuming.
|
|
|
|
Process::StopLocker stop_locker;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
if (stop_locker.TryLock(&process_sp->GetRunLock()) &&
|
2012-04-05 04:43:47 +08:00
|
|
|
StateIsStoppedState(process_sp->GetState(), true)) {
|
|
|
|
lldb::ThreadSP thread_sp(
|
|
|
|
process_sp->GetThreadList().GetSelectedThread());
|
2012-07-31 06:05:39 +08:00
|
|
|
if (!thread_sp)
|
2012-04-05 04:43:47 +08:00
|
|
|
thread_sp = process_sp->GetThreadList().GetThreadAtIndex(0);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-06 00:12:35 +08:00
|
|
|
if (thread_sp) {
|
2012-07-31 06:05:39 +08:00
|
|
|
SetThreadSP(thread_sp);
|
2012-04-05 04:43:47 +08:00
|
|
|
lldb::StackFrameSP frame_sp(thread_sp->GetSelectedFrame());
|
2012-07-31 06:05:39 +08:00
|
|
|
if (!frame_sp)
|
2012-04-05 04:43:47 +08:00
|
|
|
frame_sp = thread_sp->GetStackFrameAtIndex(0);
|
2012-04-06 00:12:35 +08:00
|
|
|
if (frame_sp)
|
2012-07-31 06:05:39 +08:00
|
|
|
SetFrameSP(frame_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-04-05 04:43:47 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-18 08:10:17 +08:00
|
|
|
void ExecutionContextRef::SetProcessPtr(Process *process) {
|
|
|
|
if (process) {
|
|
|
|
SetProcessSP(process->shared_from_this());
|
|
|
|
} else {
|
|
|
|
m_process_wp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
m_target_wp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-18 08:10:17 +08:00
|
|
|
void ExecutionContextRef::SetThreadPtr(Thread *thread) {
|
2012-08-23 05:34:33 +08:00
|
|
|
if (thread) {
|
|
|
|
SetThreadSP(thread->shared_from_this());
|
2016-09-07 04:57:50 +08:00
|
|
|
} else {
|
2012-04-06 00:12:35 +08:00
|
|
|
ClearThread();
|
|
|
|
m_process_wp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
m_target_wp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
void ExecutionContextRef::SetFramePtr(StackFrame *frame) {
|
|
|
|
if (frame)
|
2012-08-23 05:34:33 +08:00
|
|
|
SetFrameSP(frame->shared_from_this());
|
2016-09-07 04:57:50 +08:00
|
|
|
else
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
lldb::TargetSP ExecutionContextRef::GetTargetSP() const {
|
2012-02-21 08:09:25 +08:00
|
|
|
lldb::TargetSP target_sp(m_target_wp.lock());
|
2012-08-23 05:34:33 +08:00
|
|
|
if (target_sp && !target_sp->IsValid())
|
|
|
|
target_sp.reset();
|
2012-02-17 15:49:44 +08:00
|
|
|
return target_sp;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-17 15:49:44 +08:00
|
|
|
lldb::ProcessSP ExecutionContextRef::GetProcessSP() const {
|
2013-05-24 08:58:29 +08:00
|
|
|
lldb::ProcessSP process_sp(m_process_wp.lock());
|
|
|
|
if (process_sp && !process_sp->IsValid())
|
2012-02-17 15:49:44 +08:00
|
|
|
process_sp.reset();
|
|
|
|
return process_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2013-05-24 08:58:29 +08:00
|
|
|
lldb::ThreadSP ExecutionContextRef::GetThreadSP() const {
|
|
|
|
lldb::ThreadSP thread_sp(m_thread_wp.lock());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-04-05 04:43:47 +08:00
|
|
|
if (m_tid != LLDB_INVALID_THREAD_ID) {
|
2018-05-01 00:49:04 +08:00
|
|
|
// We check if the thread has been destroyed in cases where clients might
|
|
|
|
// still have shared pointer to a thread, but the thread is not valid
|
|
|
|
// anymore (not part of the process)
|
2013-05-24 08:58:29 +08:00
|
|
|
if (!thread_sp || !thread_sp->IsValid()) {
|
|
|
|
lldb::ProcessSP process_sp(GetProcessSP());
|
|
|
|
if (process_sp && process_sp->IsValid()) {
|
|
|
|
thread_sp = process_sp->GetThreadList().FindThreadByID(m_tid);
|
2012-04-06 00:12:35 +08:00
|
|
|
m_thread_wp = thread_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-05-24 08:58:29 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2018-05-01 00:49:04 +08:00
|
|
|
// Check that we aren't about to return an invalid thread sp. We might
|
|
|
|
// return a nullptr thread_sp, but don't return an invalid one.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
if (thread_sp && !thread_sp->IsValid())
|
2012-02-17 15:49:44 +08:00
|
|
|
thread_sp.reset();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-08-23 05:34:33 +08:00
|
|
|
return thread_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2014-01-28 07:43:24 +08:00
|
|
|
lldb::StackFrameSP ExecutionContextRef::GetFrameSP() const {
|
2012-02-17 15:49:44 +08:00
|
|
|
if (m_stack_id.IsValid()) {
|
2012-04-06 00:12:35 +08:00
|
|
|
lldb::ThreadSP thread_sp(GetThreadSP());
|
|
|
|
if (thread_sp)
|
|
|
|
return thread_sp->GetFrameWithStackID(m_stack_id);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2013-11-04 17:33:30 +08:00
|
|
|
return lldb::StackFrameSP();
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ExecutionContext
|
2014-01-28 07:43:24 +08:00
|
|
|
ExecutionContextRef::Lock(bool thread_and_frame_only_if_stopped) const {
|
|
|
|
return ExecutionContext(this, thread_and_frame_only_if_stopped);
|
2012-02-17 15:49:44 +08:00
|
|
|
}
|