2010-06-09 00:52:24 +08:00
|
|
|
//===-- ThreadPlanCallFunction.cpp ------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Target/ThreadPlanCallFunction.h"
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
2010-11-03 09:37:52 +08:00
|
|
|
#include "llvm/Support/MachO.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
// Project includes
|
|
|
|
#include "lldb/lldb-private-log.h"
|
2010-10-26 08:27:45 +08:00
|
|
|
#include "lldb/Breakpoint/Breakpoint.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/Address.h"
|
|
|
|
#include "lldb/Core/Log.h"
|
|
|
|
#include "lldb/Core/Stream.h"
|
2010-11-04 06:19:38 +08:00
|
|
|
#include "lldb/Target/LanguageRuntime.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/RegisterContext.h"
|
2010-10-26 08:27:45 +08:00
|
|
|
#include "lldb/Target/StopInfo.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Target/ThreadPlanRunToAddress.h"
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// ThreadPlanCallFunction: Plan to call a single function
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
|
|
|
|
Address &function,
|
|
|
|
lldb::addr_t arg,
|
|
|
|
bool stop_other_threads,
|
Removed the hacky "#define this ___clang_this" handler
for C++ classes. Replaced it with a less hacky approach:
- If an expression is defined in the context of a
method of class A, then that expression is wrapped as
___clang_class::___clang_expr(void*) { ... }
instead of ___clang_expr(void*) { ... }.
- ___clang_class is resolved as the type of the target
of the "this" pointer in the method the expression
is defined in.
- When reporting the type of ___clang_class, a method
with the signature ___clang_expr(void*) is added to
that class, so that Clang doesn't complain about a
method being defined without a corresponding
declaration.
- Whenever the expression gets called, "this" gets
looked up, type-checked, and then passed in as the
first argument.
This required the following changes:
- The ABIs were changed to support passing of the "this"
pointer as part of trivial calls.
- ThreadPlanCallFunction and ClangFunction were changed
to support passing of an optional "this" pointer.
- ClangUserExpression was extended to perform the
wrapping described above.
- ClangASTSource was changed to revert the changes
required by the hack.
- ClangExpressionParser, IRForTarget, and
ClangExpressionDeclMap were changed to handle
different manglings of ___clang_expr flexibly. This
meant no longer searching for a function called
___clang_expr, but rather looking for a function whose
name *contains* ___clang_expr.
- ClangExpressionParser and ClangExpressionDeclMap now
remember whether "this" is required, and know how to
look it up as necessary.
A few inheritance bugs remain, and I'm trying to resolve
these. But it is now possible to use "this" as well as
refer implicitly to member variables, when in the proper
context.
llvm-svn: 114384
2010-09-21 08:44:12 +08:00
|
|
|
bool discard_on_error,
|
2010-12-14 06:46:15 +08:00
|
|
|
lldb::addr_t *this_arg,
|
|
|
|
lldb::addr_t *cmd_arg) :
|
2010-06-19 12:45:32 +08:00
|
|
|
ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion),
|
2010-07-16 20:32:33 +08:00
|
|
|
m_valid (false),
|
|
|
|
m_stop_other_threads (stop_other_threads),
|
2010-06-09 00:52:24 +08:00
|
|
|
m_arg_addr (arg),
|
|
|
|
m_args (NULL),
|
2010-07-16 20:32:33 +08:00
|
|
|
m_process (thread.GetProcess()),
|
2011-01-22 09:27:23 +08:00
|
|
|
m_thread (thread),
|
2011-05-10 06:04:36 +08:00
|
|
|
m_takedown_done (false),
|
|
|
|
m_function_sp(NULL)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
SetOkayToDiscard (discard_on_error);
|
|
|
|
|
|
|
|
Process& process = thread.GetProcess();
|
|
|
|
Target& target = process.GetTarget();
|
2011-05-12 02:39:18 +08:00
|
|
|
const ABI *abi = process.GetABI().get();
|
2010-11-03 09:37:52 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (!abi)
|
|
|
|
return;
|
2010-11-03 09:37:52 +08:00
|
|
|
|
2011-01-20 10:03:18 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
|
|
|
|
2010-11-03 09:37:52 +08:00
|
|
|
SetBreakpoints();
|
|
|
|
|
2011-05-10 06:04:36 +08:00
|
|
|
m_function_sp = thread.GetRegisterContext()->GetSP() - abi->GetRedZoneSize();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
ModuleSP executableModuleSP (target.GetExecutableModule());
|
|
|
|
|
2011-03-08 07:44:08 +08:00
|
|
|
if (!executableModuleSP)
|
|
|
|
{
|
|
|
|
log->Printf ("Can't execute code without an executable module.");
|
2010-06-09 00:52:24 +08:00
|
|
|
return;
|
2011-03-08 07:44:08 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ObjectFile *objectFile = executableModuleSP->GetObjectFile();
|
|
|
|
if (!objectFile)
|
|
|
|
{
|
|
|
|
log->Printf ("Could not find object file for module \"%s\".",
|
|
|
|
executableModuleSP->GetFileSpec().GetFilename().AsCString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_start_addr = objectFile->GetEntryPointAddress();
|
|
|
|
if (!m_start_addr.IsValid())
|
|
|
|
{
|
|
|
|
log->Printf ("Could not find entry point address for executable module \"%s\".",
|
|
|
|
executableModuleSP->GetFileSpec().GetFilename().AsCString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-09-15 07:36:40 +08:00
|
|
|
lldb::addr_t StartLoadAddr = m_start_addr.GetLoadAddress(&target);
|
2011-03-08 07:44:08 +08:00
|
|
|
|
2011-01-20 10:03:18 +08:00
|
|
|
// Checkpoint the thread state so we can restore it later.
|
2011-01-22 09:27:23 +08:00
|
|
|
if (log && log->GetVerbose())
|
|
|
|
ReportRegisterState ("About to checkpoint thread before function call. Original register state was:");
|
|
|
|
|
2011-01-20 10:03:18 +08:00
|
|
|
if (!thread.CheckpointThreadState (m_stored_thread_state))
|
|
|
|
{
|
|
|
|
if (log)
|
|
|
|
log->Printf ("Setting up ThreadPlanCallFunction, failed to checkpoint thread state.");
|
2010-06-09 00:52:24 +08:00
|
|
|
return;
|
2011-01-20 10:03:18 +08:00
|
|
|
}
|
|
|
|
// Now set the thread state to "no reason" so we don't run with whatever signal was outstanding...
|
|
|
|
thread.SetStopInfoToNothing();
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
m_function_addr = function;
|
2010-09-15 07:36:40 +08:00
|
|
|
lldb::addr_t FunctionLoadAddr = m_function_addr.GetLoadAddress(&target);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (!abi->PrepareTrivialCall(thread,
|
2011-05-10 06:04:36 +08:00
|
|
|
m_function_sp,
|
2010-06-09 00:52:24 +08:00
|
|
|
FunctionLoadAddr,
|
|
|
|
StartLoadAddr,
|
Removed the hacky "#define this ___clang_this" handler
for C++ classes. Replaced it with a less hacky approach:
- If an expression is defined in the context of a
method of class A, then that expression is wrapped as
___clang_class::___clang_expr(void*) { ... }
instead of ___clang_expr(void*) { ... }.
- ___clang_class is resolved as the type of the target
of the "this" pointer in the method the expression
is defined in.
- When reporting the type of ___clang_class, a method
with the signature ___clang_expr(void*) is added to
that class, so that Clang doesn't complain about a
method being defined without a corresponding
declaration.
- Whenever the expression gets called, "this" gets
looked up, type-checked, and then passed in as the
first argument.
This required the following changes:
- The ABIs were changed to support passing of the "this"
pointer as part of trivial calls.
- ThreadPlanCallFunction and ClangFunction were changed
to support passing of an optional "this" pointer.
- ClangUserExpression was extended to perform the
wrapping described above.
- ClangASTSource was changed to revert the changes
required by the hack.
- ClangExpressionParser, IRForTarget, and
ClangExpressionDeclMap were changed to handle
different manglings of ___clang_expr flexibly. This
meant no longer searching for a function called
___clang_expr, but rather looking for a function whose
name *contains* ___clang_expr.
- ClangExpressionParser and ClangExpressionDeclMap now
remember whether "this" is required, and know how to
look it up as necessary.
A few inheritance bugs remain, and I'm trying to resolve
these. But it is now possible to use "this" as well as
refer implicitly to member variables, when in the proper
context.
llvm-svn: 114384
2010-09-21 08:44:12 +08:00
|
|
|
m_arg_addr,
|
2010-12-14 06:46:15 +08:00
|
|
|
this_arg,
|
|
|
|
cmd_arg))
|
2010-06-09 00:52:24 +08:00
|
|
|
return;
|
|
|
|
|
2011-01-22 09:27:23 +08:00
|
|
|
ReportRegisterState ("Function call was set up. Register state was:");
|
|
|
|
|
|
|
|
m_valid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlanCallFunction::~ThreadPlanCallFunction ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::ReportRegisterState (const char *message)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-11-08 11:49:50 +08:00
|
|
|
if (log)
|
|
|
|
{
|
2011-01-07 06:15:06 +08:00
|
|
|
RegisterContext *reg_ctx = m_thread.GetRegisterContext().get();
|
2011-01-22 09:27:23 +08:00
|
|
|
|
|
|
|
log->PutCString(message);
|
|
|
|
|
2010-11-08 11:49:50 +08:00
|
|
|
for (uint32_t register_index = 0, num_registers = reg_ctx->GetRegisterCount();
|
|
|
|
register_index < num_registers;
|
|
|
|
++register_index)
|
|
|
|
{
|
|
|
|
const char *register_name = reg_ctx->GetRegisterName(register_index);
|
|
|
|
uint64_t register_value = reg_ctx->ReadRegisterAsUnsigned(register_index, LLDB_INVALID_ADDRESS);
|
|
|
|
|
|
|
|
log->Printf(" %s = 0x%llx", register_name, register_value);
|
|
|
|
}
|
|
|
|
}
|
2010-11-04 09:51:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::DoTakedown ()
|
|
|
|
{
|
2011-01-22 09:27:23 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
|
|
|
if (!m_takedown_done)
|
2011-01-20 10:03:18 +08:00
|
|
|
{
|
2011-01-22 09:27:23 +08:00
|
|
|
if (log)
|
|
|
|
log->Printf ("DoTakedown called for thread 0x%4.4x, m_valid: %d complete: %d.\n", m_thread.GetID(), m_valid, IsPlanComplete());
|
|
|
|
m_takedown_done = true;
|
2011-01-20 10:03:18 +08:00
|
|
|
m_thread.RestoreThreadStateFromCheckpoint(m_stored_thread_state);
|
|
|
|
SetPlanComplete();
|
|
|
|
ClearBreakpoints();
|
2011-01-22 09:27:23 +08:00
|
|
|
if (log && log->GetVerbose())
|
|
|
|
ReportRegisterState ("Restoring thread state after function call. Restored register state:");
|
2011-01-27 03:13:09 +08:00
|
|
|
|
2011-01-22 09:27:23 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (log)
|
|
|
|
log->Printf ("DoTakedown called as no-op for thread 0x%4.4x, m_valid: %d complete: %d.\n", m_thread.GetID(), m_valid, IsPlanComplete());
|
2011-01-20 10:03:18 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-01-18 09:58:06 +08:00
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::WillPop ()
|
|
|
|
{
|
2011-01-20 10:03:18 +08:00
|
|
|
DoTakedown();
|
2011-01-18 09:58:06 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::GetDescription (Stream *s, lldb::DescriptionLevel level)
|
|
|
|
{
|
|
|
|
if (level == lldb::eDescriptionLevelBrief)
|
|
|
|
{
|
|
|
|
s->Printf("Function call thread plan");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_args)
|
2010-09-15 07:36:40 +08:00
|
|
|
s->Printf("Thread plan to call 0x%llx with parsed arguments", m_function_addr.GetLoadAddress(&m_process.GetTarget()), m_arg_addr);
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
2010-09-15 07:36:40 +08:00
|
|
|
s->Printf("Thread plan to call 0x%llx void * argument at: 0x%llx", m_function_addr.GetLoadAddress(&m_process.GetTarget()), m_arg_addr);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::ValidatePlan (Stream *error)
|
|
|
|
{
|
|
|
|
if (!m_valid)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::PlanExplainsStop ()
|
2010-11-03 09:37:52 +08:00
|
|
|
{
|
2010-10-26 08:27:45 +08:00
|
|
|
// If our subplan knows why we stopped, even if it's done (which would forward the question to us)
|
|
|
|
// we answer yes.
|
|
|
|
if(m_subplan_sp.get() != NULL && m_subplan_sp->PlanExplainsStop())
|
|
|
|
return true;
|
2010-10-20 06:24:06 +08:00
|
|
|
|
2010-11-04 03:36:28 +08:00
|
|
|
// Check if the breakpoint is one of ours.
|
|
|
|
|
|
|
|
if (BreakpointsExplainStop())
|
|
|
|
return true;
|
|
|
|
|
2010-10-26 08:27:45 +08:00
|
|
|
// If we don't want to discard this plan, than any stop we don't understand should be propagated up the stack.
|
|
|
|
if (!OkayToDiscard())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Otherwise, check the case where we stopped for an internal breakpoint, in that case, continue on.
|
|
|
|
// If it is not an internal breakpoint, consult OkayToDiscard.
|
|
|
|
lldb::StopInfoSP stop_info_sp = GetPrivateStopReason();
|
2010-11-03 09:37:52 +08:00
|
|
|
|
2010-10-26 08:27:45 +08:00
|
|
|
if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint)
|
|
|
|
{
|
|
|
|
uint64_t break_site_id = stop_info_sp->GetValue();
|
|
|
|
lldb::BreakpointSiteSP bp_site_sp = m_thread.GetProcess().GetBreakpointSiteList().FindByID(break_site_id);
|
|
|
|
if (bp_site_sp)
|
|
|
|
{
|
|
|
|
uint32_t num_owners = bp_site_sp->GetNumberOfOwners();
|
|
|
|
bool is_internal = true;
|
|
|
|
for (uint32_t i = 0; i < num_owners; i++)
|
|
|
|
{
|
2010-11-03 09:37:52 +08:00
|
|
|
Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
|
|
|
|
|
|
|
|
if (!bp.IsInternal())
|
2010-10-26 08:27:45 +08:00
|
|
|
{
|
|
|
|
is_internal = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (is_internal)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OkayToDiscard();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If the subplan is running, any crashes are attributable to us.
|
2011-01-27 03:13:09 +08:00
|
|
|
// If we want to discard the plan, then we say we explain the stop
|
|
|
|
// but if we are going to be discarded, let whoever is above us
|
|
|
|
// explain the stop.
|
|
|
|
return ((m_subplan_sp.get() != NULL) && !OkayToDiscard());
|
2010-10-26 08:27:45 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::ShouldStop (Event *event_ptr)
|
|
|
|
{
|
|
|
|
if (PlanExplainsStop())
|
|
|
|
{
|
2011-01-22 09:27:23 +08:00
|
|
|
ReportRegisterState ("Function completed. Register state was:");
|
2010-07-31 09:32:05 +08:00
|
|
|
|
2010-11-04 09:51:38 +08:00
|
|
|
DoTakedown();
|
2010-11-03 09:37:52 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::StopOthers ()
|
|
|
|
{
|
|
|
|
return m_stop_other_threads;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::SetStopOthers (bool new_value)
|
|
|
|
{
|
|
|
|
if (m_subplan_sp)
|
|
|
|
{
|
|
|
|
ThreadPlanRunToAddress *address_plan = static_cast<ThreadPlanRunToAddress *>(m_subplan_sp.get());
|
|
|
|
address_plan->SetStopOthers(new_value);
|
|
|
|
}
|
|
|
|
m_stop_other_threads = new_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
StateType
|
2010-11-12 03:26:09 +08:00
|
|
|
ThreadPlanCallFunction::GetPlanRunState ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
return eStateRunning;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::DidPush ()
|
|
|
|
{
|
2010-10-26 08:31:56 +08:00
|
|
|
//#define SINGLE_STEP_EXPRESSIONS
|
|
|
|
|
|
|
|
#ifndef SINGLE_STEP_EXPRESSIONS
|
2010-06-09 00:52:24 +08:00
|
|
|
m_subplan_sp.reset(new ThreadPlanRunToAddress(m_thread, m_start_addr, m_stop_other_threads));
|
|
|
|
|
|
|
|
m_thread.QueueThreadPlan(m_subplan_sp, false);
|
2011-01-20 10:03:18 +08:00
|
|
|
m_subplan_sp->SetPrivate (true);
|
2010-10-26 08:31:56 +08:00
|
|
|
#endif
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::WillStop ()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::MischiefManaged ()
|
|
|
|
{
|
|
|
|
if (IsPlanComplete())
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
log->Printf("Completed call function plan.");
|
|
|
|
|
|
|
|
ThreadPlan::MischiefManaged ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-11-03 09:37:52 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::SetBreakpoints ()
|
|
|
|
{
|
2010-11-04 06:19:38 +08:00
|
|
|
m_cxx_language_runtime = m_process.GetLanguageRuntime(eLanguageTypeC_plus_plus);
|
|
|
|
m_objc_language_runtime = m_process.GetLanguageRuntime(eLanguageTypeObjC);
|
2010-11-03 09:37:52 +08:00
|
|
|
|
2010-11-04 06:19:38 +08:00
|
|
|
if (m_cxx_language_runtime)
|
|
|
|
m_cxx_language_runtime->SetExceptionBreakpoints();
|
|
|
|
if (m_objc_language_runtime)
|
|
|
|
m_objc_language_runtime->SetExceptionBreakpoints();
|
2010-11-03 09:37:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ThreadPlanCallFunction::ClearBreakpoints ()
|
|
|
|
{
|
2010-11-04 06:19:38 +08:00
|
|
|
if (m_cxx_language_runtime)
|
|
|
|
m_cxx_language_runtime->ClearExceptionBreakpoints();
|
|
|
|
if (m_objc_language_runtime)
|
|
|
|
m_objc_language_runtime->ClearExceptionBreakpoints();
|
2010-11-03 09:37:52 +08:00
|
|
|
}
|
2010-11-04 03:36:28 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
ThreadPlanCallFunction::BreakpointsExplainStop()
|
|
|
|
{
|
|
|
|
lldb::StopInfoSP stop_info_sp = GetPrivateStopReason();
|
|
|
|
|
2010-11-04 06:19:38 +08:00
|
|
|
if (m_cxx_language_runtime &&
|
|
|
|
m_cxx_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp))
|
|
|
|
return true;
|
2010-11-04 03:36:28 +08:00
|
|
|
|
2010-11-04 06:19:38 +08:00
|
|
|
if (m_objc_language_runtime &&
|
|
|
|
m_objc_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp))
|
|
|
|
return true;
|
2010-11-04 03:36:28 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|