2010-06-09 00:52:24 +08:00
|
|
|
//===-- SBThread.cpp --------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBThread.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
#include "lldb/API/SBSymbolContext.h"
|
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2010-06-23 09:19:29 +08:00
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Stream.h"
|
|
|
|
#include "lldb/Core/StreamFile.h"
|
2010-06-23 09:19:29 +08:00
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Symbol/SymbolContext.h"
|
|
|
|
#include "lldb/Symbol/CompileUnit.h"
|
2010-08-04 09:40:35 +08:00
|
|
|
#include "lldb/Target/StopInfo.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepInstruction.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepOut.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepRange.h"
|
|
|
|
#include "lldb/Target/ThreadPlanStepInRange.h"
|
|
|
|
|
|
|
|
|
2010-06-09 15:44:37 +08:00
|
|
|
#include "lldb/API/SBAddress.h"
|
|
|
|
#include "lldb/API/SBFrame.h"
|
|
|
|
#include "lldb/API/SBSourceManager.h"
|
|
|
|
#include "lldb/API/SBDebugger.h"
|
|
|
|
#include "lldb/API/SBProcess.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
SBThread::SBThread () :
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Thread constructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
SBThread::SBThread (const ThreadSP& lldb_object_sp) :
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp (lldb_object_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SBThread::SBThread (const SBThread &rhs)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp = rhs.m_opaque_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
SBThread::~SBThread()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBThread::IsValid() const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp != NULL;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-07-31 04:12:55 +08:00
|
|
|
void
|
|
|
|
SBThread::Clear ()
|
|
|
|
{
|
|
|
|
m_opaque_sp.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
StopReason
|
|
|
|
SBThread::GetStopReason()
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-08-04 09:40:35 +08:00
|
|
|
lldb_private::StopInfo *stop_info = m_opaque_sp->GetStopInfo ();
|
|
|
|
if (stop_info)
|
|
|
|
return stop_info->GetStopReason();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
return eStopReasonInvalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SBThread::GetStopDescription (char *dst, size_t dst_len)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-08-04 09:40:35 +08:00
|
|
|
lldb_private::StopInfo *stop_info = m_opaque_sp->GetStopInfo ();
|
|
|
|
if (stop_info)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-08-04 09:40:35 +08:00
|
|
|
const char *stop_desc = stop_info->GetDescription();
|
2010-06-09 00:52:24 +08:00
|
|
|
if (stop_desc)
|
|
|
|
{
|
|
|
|
if (dst)
|
|
|
|
return ::snprintf (dst, dst_len, "%s", stop_desc);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// NULL dst passed in, return the length needed to contain the description
|
|
|
|
return ::strlen (stop_desc) + 1; // Include the NULL byte for size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size_t stop_desc_len = 0;
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (stop_info->GetStopReason())
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
case eStopReasonTrace:
|
|
|
|
case eStopReasonPlanComplete:
|
|
|
|
{
|
|
|
|
static char trace_desc[] = "step";
|
|
|
|
stop_desc = trace_desc;
|
|
|
|
stop_desc_len = sizeof(trace_desc); // Include the NULL byte for size
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eStopReasonBreakpoint:
|
|
|
|
{
|
|
|
|
static char bp_desc[] = "breakpoint hit";
|
|
|
|
stop_desc = bp_desc;
|
|
|
|
stop_desc_len = sizeof(bp_desc); // Include the NULL byte for size
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eStopReasonWatchpoint:
|
|
|
|
{
|
|
|
|
static char wp_desc[] = "watchpoint hit";
|
|
|
|
stop_desc = wp_desc;
|
|
|
|
stop_desc_len = sizeof(wp_desc); // Include the NULL byte for size
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eStopReasonSignal:
|
|
|
|
{
|
2010-08-04 09:40:35 +08:00
|
|
|
stop_desc = m_opaque_sp->GetProcess().GetUnixSignals ().GetSignalAsCString (stop_info->GetValue());
|
2010-06-09 00:52:24 +08:00
|
|
|
if (stop_desc == NULL || stop_desc[0] == '\0')
|
|
|
|
{
|
|
|
|
static char signal_desc[] = "signal";
|
|
|
|
stop_desc = signal_desc;
|
|
|
|
stop_desc_len = sizeof(signal_desc); // Include the NULL byte for size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eStopReasonException:
|
|
|
|
{
|
|
|
|
char exc_desc[] = "exception";
|
|
|
|
stop_desc = exc_desc;
|
|
|
|
stop_desc_len = sizeof(exc_desc); // Include the NULL byte for size
|
|
|
|
}
|
2010-07-10 04:39:50 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (stop_desc && stop_desc[0])
|
|
|
|
{
|
|
|
|
if (dst)
|
|
|
|
return ::snprintf (dst, dst_len, "%s", stop_desc) + 1; // Include the NULL byte
|
|
|
|
|
|
|
|
if (stop_desc_len == 0)
|
|
|
|
stop_desc_len = ::strlen (stop_desc) + 1; // Include the NULL byte
|
|
|
|
|
|
|
|
return stop_desc_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dst)
|
|
|
|
*dst = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::SetThread (const ThreadSP& lldb_object_sp)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp = lldb_object_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
lldb::tid_t
|
|
|
|
SBThread::GetThreadID () const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetID();
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
return LLDB_INVALID_THREAD_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
SBThread::GetIndexID () const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetIndexID();
|
2010-06-09 00:52:24 +08:00
|
|
|
return LLDB_INVALID_INDEX32;
|
|
|
|
}
|
|
|
|
const char *
|
|
|
|
SBThread::GetName () const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetName();
|
2010-06-09 00:52:24 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SBThread::GetQueueName () const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetQueueName();
|
2010-06-09 00:52:24 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::DisplayFramesForCurrentContext (FILE *out,
|
|
|
|
FILE *err,
|
|
|
|
uint32_t first_frame,
|
|
|
|
uint32_t num_frames,
|
|
|
|
bool show_frame_info,
|
|
|
|
uint32_t num_frames_with_source,
|
|
|
|
uint32_t source_lines_before,
|
|
|
|
uint32_t source_lines_after)
|
|
|
|
{
|
|
|
|
if ((out == NULL) || (err == NULL))
|
|
|
|
return;
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
uint32_t num_stack_frames = m_opaque_sp->GetStackFrameCount ();
|
2010-06-09 00:52:24 +08:00
|
|
|
StackFrameSP frame_sp;
|
2010-07-10 04:39:50 +08:00
|
|
|
uint32_t frame_idx = 0;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
for (frame_idx = first_frame; frame_idx < first_frame + num_frames; ++frame_idx)
|
|
|
|
{
|
|
|
|
if (frame_idx >= num_stack_frames)
|
|
|
|
break;
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
frame_sp = m_opaque_sp->GetStackFrameAtIndex (frame_idx);
|
2010-06-09 00:52:24 +08:00
|
|
|
if (!frame_sp)
|
|
|
|
break;
|
|
|
|
|
|
|
|
SBFrame sb_frame (frame_sp);
|
|
|
|
if (DisplaySingleFrameForCurrentContext (out,
|
|
|
|
err,
|
|
|
|
sb_frame,
|
|
|
|
show_frame_info,
|
|
|
|
num_frames_with_source > first_frame - frame_idx,
|
|
|
|
source_lines_before,
|
|
|
|
source_lines_after) == false)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBThread::DisplaySingleFrameForCurrentContext (FILE *out,
|
|
|
|
FILE *err,
|
|
|
|
SBFrame &frame,
|
|
|
|
bool show_frame_info,
|
|
|
|
bool show_source,
|
|
|
|
uint32_t source_lines_after,
|
|
|
|
uint32_t source_lines_before)
|
|
|
|
{
|
|
|
|
bool success = false;
|
2010-06-23 09:19:29 +08:00
|
|
|
|
|
|
|
if ((out == NULL) || (err == NULL))
|
2010-06-09 00:52:24 +08:00
|
|
|
return false;
|
2010-06-23 09:19:29 +08:00
|
|
|
|
|
|
|
if (m_opaque_sp && frame.IsValid())
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
StreamFile str (out);
|
2010-06-23 09:19:29 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBSymbolContext sc(frame.GetSymbolContext(eSymbolContextEverything));
|
2010-06-23 09:19:29 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (show_frame_info && sc.IsValid())
|
|
|
|
{
|
|
|
|
user_id_t frame_idx = (user_id_t) frame.GetFrameID();
|
|
|
|
lldb::addr_t pc = frame.GetPC();
|
|
|
|
::fprintf (out,
|
|
|
|
" frame #%u: tid = 0x%4.4x, pc = 0x%llx ",
|
|
|
|
frame_idx,
|
|
|
|
GetThreadID(),
|
2010-07-10 06:53:18 +08:00
|
|
|
(long long)pc);
|
Added support for inlined stack frames being represented as real stack frames
which is now on by default. Frames are gotten from the unwinder as concrete
frames, then if inline frames are to be shown, extra information to track
and reconstruct these frames is cached with each Thread and exanded as needed.
I added an inline height as part of the lldb_private::StackID class, the class
that helps us uniquely identify stack frames. This allows for two frames to
shared the same call frame address, yet differ only in inline height.
Fixed setting breakpoint by address to not require addresses to resolve.
A quick example:
% cat main.cpp
% ./build/Debug/lldb test/stl/a.out
Current executable set to 'test/stl/a.out' (x86_64).
(lldb) breakpoint set --address 0x0000000100000d31
Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
(lldb) r
Launching 'a.out' (x86_64)
(lldb) Process 38031 Stopped
* thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
277
278 _CharT*
279 _M_data() const
280 -> { return _M_dataplus._M_p; }
281
282 _CharT*
283 _M_data(_CharT* __p)
(lldb) bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
Each inline frame contains only the variables that they contain and each inlined
stack frame is treated as a single entity.
llvm-svn: 111877
2010-08-24 08:45:41 +08:00
|
|
|
sc->DumpStopContext (&str, &m_opaque_sp->GetProcess(), *frame.GetPCAddress(), true, false);
|
2010-06-09 00:52:24 +08:00
|
|
|
fprintf (out, "\n");
|
|
|
|
success = true;
|
|
|
|
}
|
2010-06-23 09:19:29 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBCompileUnit comp_unit(sc.GetCompileUnit());
|
|
|
|
if (show_source && comp_unit.IsValid())
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
success = false;
|
2010-06-09 00:52:24 +08:00
|
|
|
SBLineEntry line_entry;
|
|
|
|
if (line_entry.IsValid())
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
SourceManager& source_manager = m_opaque_sp->GetProcess().GetTarget().GetDebugger().GetSourceManager();
|
|
|
|
SBFileSpec line_entry_file_spec (line_entry.GetFileSpec());
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (line_entry_file_spec.IsValid())
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
source_manager.DisplaySourceLinesWithLineNumbers (line_entry_file_spec.ref(),
|
2010-06-09 00:52:24 +08:00
|
|
|
line_entry.GetLine(),
|
|
|
|
source_lines_after,
|
|
|
|
source_lines_before, "->",
|
2010-06-23 09:19:29 +08:00
|
|
|
&str);
|
2010-06-09 00:52:24 +08:00
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::StepOver (lldb::RunMode stop_other_threads)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
bool abort_other_plans = true;
|
2010-06-23 09:19:29 +08:00
|
|
|
StackFrameSP frame_sp(m_opaque_sp->GetStackFrameAtIndex (0));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (frame_sp)
|
|
|
|
{
|
|
|
|
if (frame_sp->HasDebugInformation ())
|
|
|
|
{
|
|
|
|
SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForStepRange (abort_other_plans,
|
2010-06-09 00:52:24 +08:00
|
|
|
eStepTypeOver,
|
|
|
|
sc.line_entry.range,
|
|
|
|
sc,
|
2010-06-13 02:59:55 +08:00
|
|
|
stop_other_threads,
|
|
|
|
false);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForStepSingleInstruction (true,
|
2010-06-09 00:52:24 +08:00
|
|
|
abort_other_plans,
|
|
|
|
stop_other_threads);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
Process &process = m_opaque_sp->GetProcess();
|
2010-06-09 00:52:24 +08:00
|
|
|
// Why do we need to set the current thread by ID here???
|
2010-06-23 09:19:29 +08:00
|
|
|
process.GetThreadList().SetCurrentThreadByID (m_opaque_sp->GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
process.Resume();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::StepInto (lldb::RunMode stop_other_threads)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
bool abort_other_plans = true;
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
StackFrameSP frame_sp(m_opaque_sp->GetStackFrameAtIndex (0));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (frame_sp && frame_sp->HasDebugInformation ())
|
|
|
|
{
|
2010-06-13 02:59:55 +08:00
|
|
|
bool avoid_code_without_debug_info = true;
|
2010-06-09 00:52:24 +08:00
|
|
|
SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForStepRange (abort_other_plans,
|
2010-06-13 02:59:55 +08:00
|
|
|
eStepTypeInto,
|
|
|
|
sc.line_entry.range,
|
|
|
|
sc,
|
|
|
|
stop_other_threads,
|
|
|
|
avoid_code_without_debug_info);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForStepSingleInstruction (false,
|
2010-06-09 00:52:24 +08:00
|
|
|
abort_other_plans,
|
|
|
|
stop_other_threads);
|
|
|
|
}
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
Process &process = m_opaque_sp->GetProcess();
|
2010-06-09 00:52:24 +08:00
|
|
|
// Why do we need to set the current thread by ID here???
|
2010-06-23 09:19:29 +08:00
|
|
|
process.GetThreadList().SetCurrentThreadByID (m_opaque_sp->GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
process.Resume();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::StepOut ()
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
bool abort_other_plans = true;
|
|
|
|
bool stop_other_threads = true;
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForStepOut (abort_other_plans, NULL, false, stop_other_threads, eVoteYes, eVoteNoOpinion);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
Process &process = m_opaque_sp->GetProcess();
|
|
|
|
process.GetThreadList().SetCurrentThreadByID (m_opaque_sp->GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
process.Resume();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::StepInstruction (bool step_over)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForStepSingleInstruction (step_over, true, true);
|
|
|
|
Process &process = m_opaque_sp->GetProcess();
|
|
|
|
process.GetThreadList().SetCurrentThreadByID (m_opaque_sp->GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
process.Resume();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SBThread::RunToAddress (lldb::addr_t addr)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
bool abort_other_plans = true;
|
|
|
|
bool stop_other_threads = true;
|
|
|
|
|
|
|
|
Address target_addr (NULL, addr);
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp->QueueThreadPlanForRunToAddress (abort_other_plans, target_addr, stop_other_threads);
|
|
|
|
Process &process = m_opaque_sp->GetProcess();
|
|
|
|
process.GetThreadList().SetCurrentThreadByID (m_opaque_sp->GetID());
|
2010-06-09 00:52:24 +08:00
|
|
|
process.Resume();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SBProcess
|
|
|
|
SBThread::GetProcess ()
|
|
|
|
{
|
|
|
|
SBProcess process;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
// Have to go up to the target so we can get a shared pointer to our process...
|
2010-06-23 09:19:29 +08:00
|
|
|
process.SetProcess(m_opaque_sp->GetProcess().GetTarget().GetProcessSP());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
SBThread::GetNumFrames ()
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetStackFrameCount();
|
2010-06-09 00:52:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBFrame
|
|
|
|
SBThread::GetFrameAtIndex (uint32_t idx)
|
|
|
|
{
|
|
|
|
SBFrame sb_frame;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
|
|
|
sb_frame.SetFrame (m_opaque_sp->GetStackFrameAtIndex (idx));
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
const lldb::SBThread &
|
|
|
|
SBThread::operator = (const lldb::SBThread &rhs)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp = rhs.m_opaque_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBThread::operator == (const SBThread &rhs) const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get() == rhs.m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBThread::operator != (const SBThread &rhs) const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get() != rhs.m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb_private::Thread *
|
|
|
|
SBThread::GetLLDBObjectPtr ()
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const lldb_private::Thread *
|
|
|
|
SBThread::operator->() const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const lldb_private::Thread &
|
|
|
|
SBThread::operator*() const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return *m_opaque_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb_private::Thread *
|
|
|
|
SBThread::operator->()
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lldb_private::Thread &
|
|
|
|
SBThread::operator*()
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return *m_opaque_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|