2010-06-09 00:52:24 +08:00
|
|
|
//===-- SBTarget.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/SBTarget.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-03-25 05:19:54 +08:00
|
|
|
#include "lldb/lldb-public.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/API/SBDebugger.h"
|
|
|
|
#include "lldb/API/SBBreakpoint.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/API/SBFileSpec.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/API/SBListener.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/API/SBModule.h"
|
2011-09-13 08:29:56 +08:00
|
|
|
#include "lldb/API/SBSourceManager.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/API/SBProcess.h"
|
2010-09-20 13:20:02 +08:00
|
|
|
#include "lldb/API/SBStream.h"
|
2011-06-21 09:34:41 +08:00
|
|
|
#include "lldb/API/SBSymbolContextList.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Breakpoint/BreakpointID.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointIDList.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointList.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
|
|
|
#include "lldb/Core/Address.h"
|
|
|
|
#include "lldb/Core/AddressResolver.h"
|
|
|
|
#include "lldb/Core/AddressResolverName.h"
|
|
|
|
#include "lldb/Core/ArchSpec.h"
|
|
|
|
#include "lldb/Core/Debugger.h"
|
|
|
|
#include "lldb/Core/Disassembler.h"
|
2010-10-26 11:11:13 +08:00
|
|
|
#include "lldb/Core/Log.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Core/RegularExpression.h"
|
|
|
|
#include "lldb/Core/SearchFilter.h"
|
|
|
|
#include "lldb/Core/STLUtils.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/Core/ValueObjectList.h"
|
|
|
|
#include "lldb/Core/ValueObjectVariable.h"
|
|
|
|
#include "lldb/Host/FileSpec.h"
|
2011-02-01 09:31:41 +08:00
|
|
|
#include "lldb/Host/Host.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/Interpreter/Args.h"
|
2011-07-30 03:53:35 +08:00
|
|
|
#include "lldb/Symbol/SymbolVendor.h"
|
2011-06-30 06:09:02 +08:00
|
|
|
#include "lldb/Symbol/VariableList.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/TargetList.h"
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandReturnObject.h"
|
|
|
|
#include "../source/Commands/CommandObjectBreakpoint.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
#define DEFAULT_DISASM_BYTE_SIZE 32
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// SBTarget constructor
|
|
|
|
//----------------------------------------------------------------------
|
2010-12-15 13:08:08 +08:00
|
|
|
SBTarget::SBTarget () :
|
|
|
|
m_opaque_sp ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SBTarget::SBTarget (const SBTarget& rhs) :
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp (rhs.m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SBTarget::SBTarget(const TargetSP& target_sp) :
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp (target_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-06 07:17:00 +08:00
|
|
|
const SBTarget&
|
|
|
|
SBTarget::operator = (const SBTarget& rhs)
|
|
|
|
{
|
|
|
|
if (this != &rhs)
|
|
|
|
m_opaque_sp = rhs.m_opaque_sp;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
SBTarget::~SBTarget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::IsValid () const
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get() != NULL;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBProcess
|
|
|
|
SBTarget::GetProcess ()
|
|
|
|
{
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBProcess sb_process;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-06-23 09:19:29 +08:00
|
|
|
sb_process.SetProcess (m_opaque_sp->GetProcessSP());
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::GetProcess () => SBProcess(%p)",
|
|
|
|
m_opaque_sp.get(), sb_process.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
SBDebugger
|
|
|
|
SBTarget::GetDebugger () const
|
|
|
|
{
|
|
|
|
SBDebugger debugger;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
debugger.reset (m_opaque_sp->GetDebugger().GetSP());
|
|
|
|
return debugger;
|
|
|
|
}
|
|
|
|
|
2011-03-31 08:01:24 +08:00
|
|
|
SBProcess
|
|
|
|
SBTarget::LaunchSimple
|
|
|
|
(
|
|
|
|
char const **argv,
|
|
|
|
char const **envp,
|
|
|
|
const char *working_directory
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char *stdin_path = NULL;
|
|
|
|
char *stdout_path = NULL;
|
|
|
|
char *stderr_path = NULL;
|
|
|
|
uint32_t launch_flags = 0;
|
|
|
|
bool stop_at_entry = false;
|
|
|
|
SBError error;
|
|
|
|
SBListener listener = GetDebugger().GetListener();
|
|
|
|
return Launch (listener,
|
|
|
|
argv,
|
|
|
|
envp,
|
|
|
|
stdin_path,
|
|
|
|
stdout_path,
|
|
|
|
stderr_path,
|
|
|
|
working_directory,
|
|
|
|
launch_flags,
|
|
|
|
stop_at_entry,
|
|
|
|
error);
|
|
|
|
}
|
2010-10-07 12:19:01 +08:00
|
|
|
|
|
|
|
SBProcess
|
Added a new variant of SBTarget::Launch() that deprectates the old one that
takes separate file handles for stdin, stdout, and stder and also allows for
the working directory to be specified.
Added support to "process launch" to a new option: --working-dir=PATH. We
can now set the working directory. If this is not set, it defaults to that
of the process that has LLDB loaded. Added the working directory to the
host LaunchInNewTerminal function to allows the current working directory
to be set in processes that are spawned in their own terminal. Also hooked this
up to the lldb_private::Process and all mac plug-ins. The linux plug-in had its
API changed, but nothing is making use of it yet. Modfied "debugserver" and
"darwin-debug" to also handle the current working directory options and modified
the code in LLDB that spawns these tools to pass the info along.
Fixed ProcessGDBRemote to properly pass along all file handles for stdin, stdout
and stderr.
After clearing the default values for the stdin/out/err file handles for
process to be NULL, we had a crasher in UserSettingsController::UpdateStringVariable
which is now fixed. Also fixed the setting of boolean values to be able to
be set as "true", "yes", "on", "1" for true (case insensitive) and "false", "no",
"off", or "0" for false.
Fixed debugserver to properly handle files for STDIN, STDOUT and STDERR that are not
already opened. Previous to this fix debugserver would only correctly open and dupe
file handles for the slave side of a pseudo terminal. It now correctly handles
getting STDIN for the inferior from a file, and spitting STDOUT and STDERR out to
files. Also made sure the file handles were correctly opened with the NOCTTY flag
for terminals.
llvm-svn: 124060
2011-01-23 13:56:20 +08:00
|
|
|
SBTarget::Launch
|
2010-10-07 06:10:17 +08:00
|
|
|
(
|
2011-02-04 05:28:34 +08:00
|
|
|
SBListener &listener,
|
2010-10-07 06:10:17 +08:00
|
|
|
char const **argv,
|
|
|
|
char const **envp,
|
Added a new variant of SBTarget::Launch() that deprectates the old one that
takes separate file handles for stdin, stdout, and stder and also allows for
the working directory to be specified.
Added support to "process launch" to a new option: --working-dir=PATH. We
can now set the working directory. If this is not set, it defaults to that
of the process that has LLDB loaded. Added the working directory to the
host LaunchInNewTerminal function to allows the current working directory
to be set in processes that are spawned in their own terminal. Also hooked this
up to the lldb_private::Process and all mac plug-ins. The linux plug-in had its
API changed, but nothing is making use of it yet. Modfied "debugserver" and
"darwin-debug" to also handle the current working directory options and modified
the code in LLDB that spawns these tools to pass the info along.
Fixed ProcessGDBRemote to properly pass along all file handles for stdin, stdout
and stderr.
After clearing the default values for the stdin/out/err file handles for
process to be NULL, we had a crasher in UserSettingsController::UpdateStringVariable
which is now fixed. Also fixed the setting of boolean values to be able to
be set as "true", "yes", "on", "1" for true (case insensitive) and "false", "no",
"off", or "0" for false.
Fixed debugserver to properly handle files for STDIN, STDOUT and STDERR that are not
already opened. Previous to this fix debugserver would only correctly open and dupe
file handles for the slave side of a pseudo terminal. It now correctly handles
getting STDIN for the inferior from a file, and spitting STDOUT and STDERR out to
files. Also made sure the file handles were correctly opened with the NOCTTY flag
for terminals.
llvm-svn: 124060
2011-01-23 13:56:20 +08:00
|
|
|
const char *stdin_path,
|
|
|
|
const char *stdout_path,
|
|
|
|
const char *stderr_path,
|
|
|
|
const char *working_directory,
|
|
|
|
uint32_t launch_flags, // See LaunchFlags
|
2010-10-07 06:10:17 +08:00
|
|
|
bool stop_at_entry,
|
Added a new variant of SBTarget::Launch() that deprectates the old one that
takes separate file handles for stdin, stdout, and stder and also allows for
the working directory to be specified.
Added support to "process launch" to a new option: --working-dir=PATH. We
can now set the working directory. If this is not set, it defaults to that
of the process that has LLDB loaded. Added the working directory to the
host LaunchInNewTerminal function to allows the current working directory
to be set in processes that are spawned in their own terminal. Also hooked this
up to the lldb_private::Process and all mac plug-ins. The linux plug-in had its
API changed, but nothing is making use of it yet. Modfied "debugserver" and
"darwin-debug" to also handle the current working directory options and modified
the code in LLDB that spawns these tools to pass the info along.
Fixed ProcessGDBRemote to properly pass along all file handles for stdin, stdout
and stderr.
After clearing the default values for the stdin/out/err file handles for
process to be NULL, we had a crasher in UserSettingsController::UpdateStringVariable
which is now fixed. Also fixed the setting of boolean values to be able to
be set as "true", "yes", "on", "1" for true (case insensitive) and "false", "no",
"off", or "0" for false.
Fixed debugserver to properly handle files for STDIN, STDOUT and STDERR that are not
already opened. Previous to this fix debugserver would only correctly open and dupe
file handles for the slave side of a pseudo terminal. It now correctly handles
getting STDIN for the inferior from a file, and spitting STDOUT and STDERR out to
files. Also made sure the file handles were correctly opened with the NOCTTY flag
for terminals.
llvm-svn: 124060
2011-01-23 13:56:20 +08:00
|
|
|
lldb::SBError& error
|
2010-10-07 06:10:17 +08:00
|
|
|
)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2010-10-29 12:59:35 +08:00
|
|
|
{
|
Added a new variant of SBTarget::Launch() that deprectates the old one that
takes separate file handles for stdin, stdout, and stder and also allows for
the working directory to be specified.
Added support to "process launch" to a new option: --working-dir=PATH. We
can now set the working directory. If this is not set, it defaults to that
of the process that has LLDB loaded. Added the working directory to the
host LaunchInNewTerminal function to allows the current working directory
to be set in processes that are spawned in their own terminal. Also hooked this
up to the lldb_private::Process and all mac plug-ins. The linux plug-in had its
API changed, but nothing is making use of it yet. Modfied "debugserver" and
"darwin-debug" to also handle the current working directory options and modified
the code in LLDB that spawns these tools to pass the info along.
Fixed ProcessGDBRemote to properly pass along all file handles for stdin, stdout
and stderr.
After clearing the default values for the stdin/out/err file handles for
process to be NULL, we had a crasher in UserSettingsController::UpdateStringVariable
which is now fixed. Also fixed the setting of boolean values to be able to
be set as "true", "yes", "on", "1" for true (case insensitive) and "false", "no",
"off", or "0" for false.
Fixed debugserver to properly handle files for STDIN, STDOUT and STDERR that are not
already opened. Previous to this fix debugserver would only correctly open and dupe
file handles for the slave side of a pseudo terminal. It now correctly handles
getting STDIN for the inferior from a file, and spitting STDOUT and STDERR out to
files. Also made sure the file handles were correctly opened with the NOCTTY flag
for terminals.
llvm-svn: 124060
2011-01-23 13:56:20 +08:00
|
|
|
log->Printf ("SBTarget(%p)::Launch (argv=%p, envp=%p, stdin=%s, stdout=%s, stderr=%s, working-dir=%s, launch_flags=0x%x, stop_at_entry=%i, &error (%p))...",
|
|
|
|
m_opaque_sp.get(),
|
|
|
|
argv,
|
|
|
|
envp,
|
|
|
|
stdin_path ? stdin_path : "NULL",
|
|
|
|
stdout_path ? stdout_path : "NULL",
|
|
|
|
stderr_path ? stderr_path : "NULL",
|
|
|
|
working_directory ? working_directory : "NULL",
|
|
|
|
launch_flags,
|
|
|
|
stop_at_entry,
|
|
|
|
error.get());
|
2010-10-29 12:59:35 +08:00
|
|
|
}
|
2010-10-06 11:53:16 +08:00
|
|
|
SBProcess sb_process;
|
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-10-06 11:53:16 +08:00
|
|
|
|
2011-01-27 09:01:10 +08:00
|
|
|
if (getenv("LLDB_LAUNCH_FLAG_DISABLE_ASLR"))
|
|
|
|
launch_flags |= eLaunchFlagDisableASLR;
|
|
|
|
|
2011-04-30 09:09:13 +08:00
|
|
|
StateType state = eStateInvalid;
|
|
|
|
sb_process.SetProcess (m_opaque_sp->GetProcessSP());
|
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
state = sb_process->GetState();
|
|
|
|
|
|
|
|
if (sb_process->IsAlive() && state != eStateConnected)
|
|
|
|
{
|
|
|
|
if (state == eStateAttaching)
|
|
|
|
error.SetErrorString ("process attach is in progress");
|
|
|
|
else
|
|
|
|
error.SetErrorString ("a process is already being debugged");
|
|
|
|
sb_process.Clear();
|
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state == eStateConnected)
|
2011-01-27 14:44:37 +08:00
|
|
|
{
|
2011-04-30 09:09:13 +08:00
|
|
|
// If we are already connected, then we have already specified the
|
|
|
|
// listener, so if a valid listener is supplied, we need to error out
|
|
|
|
// to let the client know.
|
|
|
|
if (listener.IsValid())
|
2011-01-27 14:44:37 +08:00
|
|
|
{
|
2011-04-30 09:09:13 +08:00
|
|
|
error.SetErrorString ("process is connected and already has a listener, pass empty listener");
|
|
|
|
sb_process.Clear();
|
|
|
|
return sb_process;
|
2011-01-27 14:44:37 +08:00
|
|
|
}
|
|
|
|
}
|
2011-04-30 09:09:13 +08:00
|
|
|
else
|
2010-10-07 06:10:17 +08:00
|
|
|
{
|
2011-02-04 05:28:34 +08:00
|
|
|
if (listener.IsValid())
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (listener.ref()));
|
|
|
|
else
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (m_opaque_sp->GetDebugger().GetListener()));
|
2011-04-30 09:09:13 +08:00
|
|
|
}
|
2011-01-27 09:01:10 +08:00
|
|
|
|
2011-04-30 09:09:13 +08:00
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
if (getenv("LLDB_LAUNCH_FLAG_DISABLE_STDIO"))
|
|
|
|
launch_flags |= eLaunchFlagDisableSTDIO;
|
2011-01-27 09:01:10 +08:00
|
|
|
|
2011-04-30 09:09:13 +08:00
|
|
|
error.SetError (sb_process->Launch (argv, envp, launch_flags, stdin_path, stdout_path, stderr_path, working_directory));
|
|
|
|
if (error.Success())
|
|
|
|
{
|
|
|
|
// We we are stopping at the entry point, we can return now!
|
|
|
|
if (stop_at_entry)
|
|
|
|
return sb_process;
|
2011-01-27 09:01:10 +08:00
|
|
|
|
2011-04-30 09:09:13 +08:00
|
|
|
// Make sure we are stopped at the entry
|
|
|
|
StateType state = sb_process->WaitForProcessToStop (NULL);
|
|
|
|
if (state == eStateStopped)
|
2011-01-27 09:01:10 +08:00
|
|
|
{
|
2011-04-30 09:09:13 +08:00
|
|
|
// resume the process to skip the entry point
|
|
|
|
error.SetError (sb_process->Resume());
|
|
|
|
if (error.Success())
|
2011-01-27 09:01:10 +08:00
|
|
|
{
|
2011-04-30 09:09:13 +08:00
|
|
|
// If we are doing synchronous mode, then wait for the
|
|
|
|
// process to stop yet again!
|
|
|
|
if (m_opaque_sp->GetDebugger().GetAsyncExecution () == false)
|
|
|
|
sb_process->WaitForProcessToStop (NULL);
|
2011-01-27 09:01:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-30 09:09:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("unable to create lldb_private::Process");
|
2010-10-07 06:10:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("SBTarget is invalid");
|
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-10-30 05:48:37 +08:00
|
|
|
log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API);
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::Launch (...) => SBProceess(%p)",
|
|
|
|
m_opaque_sp.get(), sb_process.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-10-07 06:10:17 +08:00
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
lldb::SBProcess
|
2010-10-07 12:19:01 +08:00
|
|
|
SBTarget::AttachToProcessWithID
|
2010-10-07 06:10:17 +08:00
|
|
|
(
|
2011-02-04 05:28:34 +08:00
|
|
|
SBListener &listener,
|
2010-10-07 06:10:17 +08:00
|
|
|
lldb::pid_t pid,// The process ID to attach to
|
|
|
|
SBError& error // An error explaining what went wrong if attach fails
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SBProcess sb_process;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2011-06-24 11:21:43 +08:00
|
|
|
|
|
|
|
StateType state = eStateInvalid;
|
|
|
|
sb_process.SetProcess (m_opaque_sp->GetProcessSP());
|
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
state = sb_process->GetState();
|
|
|
|
|
|
|
|
if (sb_process->IsAlive() && state != eStateConnected)
|
|
|
|
{
|
|
|
|
if (state == eStateAttaching)
|
|
|
|
error.SetErrorString ("process attach is in progress");
|
|
|
|
else
|
|
|
|
error.SetErrorString ("a process is already being debugged");
|
|
|
|
sb_process.Clear();
|
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state == eStateConnected)
|
|
|
|
{
|
|
|
|
// If we are already connected, then we have already specified the
|
|
|
|
// listener, so if a valid listener is supplied, we need to error out
|
|
|
|
// to let the client know.
|
|
|
|
if (listener.IsValid())
|
|
|
|
{
|
|
|
|
error.SetErrorString ("process is connected and already has a listener, pass empty listener");
|
|
|
|
sb_process.Clear();
|
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
}
|
2011-02-04 05:28:34 +08:00
|
|
|
else
|
2011-06-24 11:21:43 +08:00
|
|
|
{
|
|
|
|
if (listener.IsValid())
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (listener.ref()));
|
|
|
|
else
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (m_opaque_sp->GetDebugger().GetListener()));
|
|
|
|
}
|
2010-10-07 06:10:17 +08:00
|
|
|
|
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
error.SetError (sb_process->Attach (pid));
|
2011-06-17 08:51:15 +08:00
|
|
|
// If we are doing synchronous mode, then wait for the
|
|
|
|
// process to stop!
|
|
|
|
if (m_opaque_sp->GetDebugger().GetAsyncExecution () == false)
|
|
|
|
sb_process->WaitForProcessToStop (NULL);
|
2010-10-07 06:10:17 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("unable to create lldb_private::Process");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("SBTarget is invalid");
|
|
|
|
}
|
|
|
|
return sb_process;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBProcess
|
2010-10-07 12:19:01 +08:00
|
|
|
SBTarget::AttachToProcessWithName
|
2010-10-07 06:10:17 +08:00
|
|
|
(
|
2011-02-04 05:28:34 +08:00
|
|
|
SBListener &listener,
|
2010-10-07 06:10:17 +08:00
|
|
|
const char *name, // basename of process to attach to
|
|
|
|
bool wait_for, // if true wait for a new instance of "name" to be launched
|
|
|
|
SBError& error // An error explaining what went wrong if attach fails
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SBProcess sb_process;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
|
2011-06-24 11:21:43 +08:00
|
|
|
StateType state = eStateInvalid;
|
|
|
|
sb_process.SetProcess (m_opaque_sp->GetProcessSP());
|
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
state = sb_process->GetState();
|
|
|
|
|
|
|
|
if (sb_process->IsAlive() && state != eStateConnected)
|
|
|
|
{
|
|
|
|
if (state == eStateAttaching)
|
|
|
|
error.SetErrorString ("process attach is in progress");
|
|
|
|
else
|
|
|
|
error.SetErrorString ("a process is already being debugged");
|
|
|
|
sb_process.Clear();
|
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state == eStateConnected)
|
|
|
|
{
|
|
|
|
// If we are already connected, then we have already specified the
|
|
|
|
// listener, so if a valid listener is supplied, we need to error out
|
|
|
|
// to let the client know.
|
|
|
|
if (listener.IsValid())
|
|
|
|
{
|
|
|
|
error.SetErrorString ("process is connected and already has a listener, pass empty listener");
|
|
|
|
sb_process.Clear();
|
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
}
|
2011-02-04 05:28:34 +08:00
|
|
|
else
|
2011-06-24 11:21:43 +08:00
|
|
|
{
|
|
|
|
if (listener.IsValid())
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (listener.ref()));
|
|
|
|
else
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (m_opaque_sp->GetDebugger().GetListener()));
|
|
|
|
}
|
2010-10-07 06:10:17 +08:00
|
|
|
|
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
error.SetError (sb_process->Attach (name, wait_for));
|
2011-06-18 03:21:30 +08:00
|
|
|
// If we are doing synchronous mode, then wait for the
|
|
|
|
// process to stop!
|
|
|
|
if (m_opaque_sp->GetDebugger().GetAsyncExecution () == false)
|
|
|
|
sb_process->WaitForProcessToStop (NULL);
|
2010-10-07 06:10:17 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("unable to create lldb_private::Process");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("SBTarget is invalid");
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-10-06 11:53:16 +08:00
|
|
|
return sb_process;
|
2010-10-07 06:10:17 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-03-04 08:31:13 +08:00
|
|
|
lldb::SBProcess
|
|
|
|
SBTarget::ConnectRemote
|
|
|
|
(
|
|
|
|
SBListener &listener,
|
|
|
|
const char *url,
|
|
|
|
const char *plugin_name,
|
|
|
|
SBError& error
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SBProcess sb_process;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
if (listener.IsValid())
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (listener.ref(), plugin_name));
|
|
|
|
else
|
|
|
|
sb_process.SetProcess (m_opaque_sp->CreateProcess (m_opaque_sp->GetDebugger().GetListener(), plugin_name));
|
|
|
|
|
|
|
|
|
|
|
|
if (sb_process.IsValid())
|
|
|
|
{
|
|
|
|
error.SetError (sb_process->ConnectRemote (url));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("unable to create lldb_private::Process");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error.SetErrorString ("SBTarget is invalid");
|
|
|
|
}
|
|
|
|
return sb_process;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBFileSpec
|
|
|
|
SBTarget::GetExecutable ()
|
|
|
|
{
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBFileSpec exe_file_spec;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2011-08-11 10:48:45 +08:00
|
|
|
Module *exe_module = m_opaque_sp->GetExecutableModulePointer();
|
|
|
|
if (exe_module)
|
|
|
|
exe_file_spec.SetFileSpec (exe_module->GetFileSpec());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::GetExecutable () => SBFileSpec(%p)",
|
|
|
|
m_opaque_sp.get(), exe_file_spec.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return exe_file_spec;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::operator == (const SBTarget &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
|
|
|
|
SBTarget::operator != (const SBTarget &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::Target *
|
2010-06-23 09:19:29 +08:00
|
|
|
SBTarget::operator ->() const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
return m_opaque_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2010-06-23 09:19:29 +08:00
|
|
|
|
|
|
|
lldb_private::Target *
|
|
|
|
SBTarget::get() const
|
|
|
|
{
|
|
|
|
return m_opaque_sp.get();
|
|
|
|
}
|
|
|
|
|
2011-10-01 10:59:24 +08:00
|
|
|
const lldb::TargetSP &
|
|
|
|
SBTarget::get_sp () const
|
|
|
|
{
|
|
|
|
return m_opaque_sp;
|
|
|
|
}
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
void
|
|
|
|
SBTarget::reset (const lldb::TargetSP& target_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
m_opaque_sp = target_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-07-23 00:46:35 +08:00
|
|
|
lldb::SBAddress
|
|
|
|
SBTarget::ResolveLoadAddress (lldb::addr_t vm_addr)
|
2010-12-13 03:25:26 +08:00
|
|
|
{
|
2011-07-23 00:46:35 +08:00
|
|
|
lldb::SBAddress sb_addr;
|
|
|
|
Address &addr = sb_addr.ref();
|
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2011-07-23 00:46:35 +08:00
|
|
|
if (m_opaque_sp->GetSectionLoadList().ResolveLoadAddress (vm_addr, addr))
|
|
|
|
return sb_addr;
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-12-13 03:25:26 +08:00
|
|
|
|
2011-07-23 00:46:35 +08:00
|
|
|
// We have a load address that isn't in a section, just return an address
|
|
|
|
// with the offset filled in (the address) and the section set to NULL
|
|
|
|
addr.SetSection(NULL);
|
|
|
|
addr.SetOffset(vm_addr);
|
|
|
|
return sb_addr;
|
2010-12-13 03:25:26 +08:00
|
|
|
}
|
|
|
|
|
2011-03-03 05:34:46 +08:00
|
|
|
SBSymbolContext
|
|
|
|
SBTarget::ResolveSymbolContextForAddress (const SBAddress& addr, uint32_t resolve_scope)
|
|
|
|
{
|
|
|
|
SBSymbolContext sc;
|
2011-06-29 08:05:40 +08:00
|
|
|
if (m_opaque_sp && addr.IsValid())
|
2011-07-23 00:46:35 +08:00
|
|
|
m_opaque_sp->GetImages().ResolveSymbolContextForAddress (addr.ref(), resolve_scope, sc.ref());
|
2011-03-03 05:34:46 +08:00
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByLocation (const char *file, uint32_t line)
|
|
|
|
{
|
2010-11-08 08:28:40 +08:00
|
|
|
return SBBreakpoint(BreakpointCreateByLocation (SBFileSpec (file, false), line));
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByLocation (const SBFileSpec &sb_file_spec, uint32_t line)
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBBreakpoint sb_bp;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp.get() && line != 0)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-06-23 09:19:29 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateBreakpoint (NULL, *sb_file_spec, line, true, false);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
SBStream sstr;
|
|
|
|
sb_bp.GetDescription (sstr);
|
2010-10-31 11:01:06 +08:00
|
|
|
char path[PATH_MAX];
|
|
|
|
sb_file_spec->GetPath (path, sizeof(path));
|
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByLocation ( %s:%u ) => SBBreakpoint(%p): %s",
|
2010-10-30 12:51:46 +08:00
|
|
|
m_opaque_sp.get(),
|
2010-10-31 11:01:06 +08:00
|
|
|
path,
|
2010-10-30 12:51:46 +08:00
|
|
|
line,
|
2010-10-31 11:01:06 +08:00
|
|
|
sb_bp.get(),
|
2010-10-26 11:11:13 +08:00
|
|
|
sstr.GetData());
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByName (const char *symbol_name, const char *module_name)
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBBreakpoint sb_bp;
|
2011-09-23 08:54:11 +08:00
|
|
|
if (m_opaque_sp.get())
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-06-09 00:52:24 +08:00
|
|
|
if (module_name && module_name[0])
|
|
|
|
{
|
2011-09-21 09:17:13 +08:00
|
|
|
FileSpecList module_spec_list;
|
|
|
|
module_spec_list.Append (FileSpec (module_name, false));
|
2011-09-23 08:54:11 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateBreakpoint (&module_spec_list, NULL, symbol_name, eFunctionNameTypeFull | eFunctionNameTypeBase, false);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-23 08:54:11 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateBreakpoint (NULL, NULL, symbol_name, eFunctionNameTypeFull | eFunctionNameTypeBase, false);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByName (symbol=\"%s\", module=\"%s\") => SBBreakpoint(%p)",
|
|
|
|
m_opaque_sp.get(), symbol_name, module_name, sb_bp.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_bp;
|
|
|
|
}
|
|
|
|
|
2011-09-23 08:54:11 +08:00
|
|
|
lldb::SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByName (const char *symbol_name,
|
|
|
|
const SBFileSpecList &module_list,
|
|
|
|
const SBFileSpecList &comp_unit_list)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBBreakpoint sb_bp;
|
|
|
|
if (m_opaque_sp.get() && symbol_name && symbol_name[0])
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
*sb_bp = m_opaque_sp->CreateBreakpoint (module_list.get(),
|
|
|
|
comp_unit_list.get(),
|
|
|
|
symbol_name,
|
|
|
|
eFunctionNameTypeFull | eFunctionNameTypeBase,
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByName (symbol=\"%s\") => SBBreakpoint(%p)",
|
|
|
|
m_opaque_sp.get(), symbol_name, sb_bp.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByRegex (const char *symbol_name_regex, const char *module_name)
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBBreakpoint sb_bp;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp.get() && symbol_name_regex && symbol_name_regex[0])
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-06-09 00:52:24 +08:00
|
|
|
RegularExpression regexp(symbol_name_regex);
|
|
|
|
|
|
|
|
if (module_name && module_name[0])
|
|
|
|
{
|
2011-09-21 09:17:13 +08:00
|
|
|
FileSpecList module_spec_list;
|
|
|
|
module_spec_list.Append (FileSpec (module_name, false));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-09-23 08:54:11 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateFuncRegexBreakpoint (&module_spec_list, NULL, regexp, false);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-23 08:54:11 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateFuncRegexBreakpoint (NULL, NULL, regexp, false);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByRegex (symbol_regex=\"%s\", module_name=\"%s\") => SBBreakpoint(%p)",
|
|
|
|
m_opaque_sp.get(), symbol_name_regex, module_name, sb_bp.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_bp;
|
|
|
|
}
|
|
|
|
|
2011-09-23 08:54:11 +08:00
|
|
|
lldb::SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByRegex (const char *symbol_name_regex,
|
|
|
|
const SBFileSpecList &module_list,
|
|
|
|
const SBFileSpecList &comp_unit_list)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBBreakpoint sb_bp;
|
|
|
|
if (m_opaque_sp.get() && symbol_name_regex && symbol_name_regex[0])
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
RegularExpression regexp(symbol_name_regex);
|
|
|
|
|
|
|
|
*sb_bp = m_opaque_sp->CreateFuncRegexBreakpoint (module_list.get(), comp_unit_list.get(), regexp, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByRegex (symbol_regex=\"%s\") => SBBreakpoint(%p)",
|
|
|
|
m_opaque_sp.get(), symbol_name_regex, sb_bp.get());
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-09-23 08:54:11 +08:00
|
|
|
return sb_bp;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateByAddress (addr_t address)
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBBreakpoint sb_bp;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp.get())
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-06-23 09:19:29 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateBreakpoint (address, false);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2011-09-21 05:44:10 +08:00
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByAddress (address=%llu) => SBBreakpoint(%p)", m_opaque_sp.get(), (uint64_t) address, sb_bp.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_bp;
|
|
|
|
}
|
|
|
|
|
2011-09-21 09:17:13 +08:00
|
|
|
lldb::SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, const char *module_name)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBBreakpoint sb_bp;
|
|
|
|
if (m_opaque_sp.get() && source_regex && source_regex[0])
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
RegularExpression regexp(source_regex);
|
2011-09-23 08:54:11 +08:00
|
|
|
FileSpecList source_file_spec_list;
|
|
|
|
source_file_spec_list.Append (source_file.ref());
|
2011-09-21 09:17:13 +08:00
|
|
|
|
|
|
|
if (module_name && module_name[0])
|
|
|
|
{
|
|
|
|
FileSpecList module_spec_list;
|
|
|
|
module_spec_list.Append (FileSpec (module_name, false));
|
|
|
|
|
2011-09-23 08:54:11 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateSourceRegexBreakpoint (&module_spec_list, &source_file_spec_list, regexp, false);
|
2011-09-21 09:17:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-23 08:54:11 +08:00
|
|
|
*sb_bp = m_opaque_sp->CreateSourceRegexBreakpoint (NULL, &source_file_spec_list, regexp, false);
|
2011-09-21 09:17:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
source_file->GetPath (path, sizeof(path));
|
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByRegex (source_regex=\"%s\", file=\"%s\", module_name=\"%s\") => SBBreakpoint(%p)",
|
2011-09-21 14:45:51 +08:00
|
|
|
m_opaque_sp.get(), source_regex, path, module_name, sb_bp.get());
|
2011-09-21 09:17:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return sb_bp;
|
|
|
|
}
|
|
|
|
|
2011-09-23 08:54:11 +08:00
|
|
|
lldb::SBBreakpoint
|
|
|
|
SBTarget::BreakpointCreateBySourceRegex (const char *source_regex,
|
|
|
|
const SBFileSpecList &module_list,
|
|
|
|
const lldb::SBFileSpecList &source_file_list)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBBreakpoint sb_bp;
|
|
|
|
if (m_opaque_sp.get() && source_regex && source_regex[0])
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
RegularExpression regexp(source_regex);
|
|
|
|
*sb_bp = m_opaque_sp->CreateSourceRegexBreakpoint (module_list.get(), source_file_list.get(), regexp, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBTarget(%p)::BreakpointCreateByRegex (source_regex=\"%s\") => SBBreakpoint(%p)",
|
|
|
|
m_opaque_sp.get(), source_regex, sb_bp.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_bp;
|
|
|
|
}
|
2011-09-21 09:17:13 +08:00
|
|
|
|
2011-09-27 06:40:50 +08:00
|
|
|
uint32_t
|
|
|
|
SBTarget::GetNumBreakpoints () const
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
// The breakpoint list is thread safe, no need to lock
|
|
|
|
return m_opaque_sp->GetBreakpointList().GetSize();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::GetBreakpointAtIndex (uint32_t idx) const
|
|
|
|
{
|
|
|
|
SBBreakpoint sb_breakpoint;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
// The breakpoint list is thread safe, no need to lock
|
|
|
|
*sb_breakpoint = m_opaque_sp->GetBreakpointList().GetBreakpointAtIndex(idx);
|
|
|
|
}
|
|
|
|
return sb_breakpoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::BreakpointDelete (break_id_t bp_id)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
result = m_opaque_sp->RemoveBreakpointByID (bp_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBTarget(%p)::BreakpointDelete (bp_id=%d) => %i", m_opaque_sp.get(), (uint32_t) bp_id, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
SBBreakpoint
|
|
|
|
SBTarget::FindBreakpointByID (break_id_t bp_id)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
SBBreakpoint sb_breakpoint;
|
|
|
|
if (m_opaque_sp && bp_id != LLDB_INVALID_BREAK_ID)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2010-07-24 07:33:17 +08:00
|
|
|
*sb_breakpoint = m_opaque_sp->GetBreakpointByID (bp_id);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::FindBreakpointByID (bp_id=%d) => SBBreakpoint(%p)",
|
|
|
|
m_opaque_sp.get(), (uint32_t) bp_id, sb_breakpoint.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
return sb_breakpoint;
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-09-27 06:40:50 +08:00
|
|
|
bool
|
|
|
|
SBTarget::EnableAllBreakpoints ()
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
m_opaque_sp->EnableAllBreakpoints ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::DisableAllBreakpoints ()
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
m_opaque_sp->DisableAllBreakpoints ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::DeleteAllBreakpoints ()
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
m_opaque_sp->RemoveAllBreakpoints ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-07-24 07:33:17 +08:00
|
|
|
uint32_t
|
2011-09-27 06:40:50 +08:00
|
|
|
SBTarget::GetNumWatchpointLocations () const
|
2010-07-24 07:33:17 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2011-09-28 04:29:45 +08:00
|
|
|
// The watchpoint location list is thread safe, no need to lock
|
2011-09-27 06:40:50 +08:00
|
|
|
return m_opaque_sp->GetWatchpointLocationList().GetSize();
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-07-24 07:33:17 +08:00
|
|
|
return 0;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-09-28 04:29:45 +08:00
|
|
|
SBWatchpointLocation
|
|
|
|
SBTarget::GetLastCreatedWatchpointLocation ()
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBWatchpointLocation sb_watchpoint_location;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
sb_watchpoint_location = m_opaque_sp->GetLastCreatedWatchpointLocation();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBTarget(%p)::GetLastCreateWatchpointLocation () => SBWatchpointLocation(%p)",
|
|
|
|
m_opaque_sp.get(), sb_watchpoint_location.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_watchpoint_location;
|
|
|
|
}
|
|
|
|
|
2011-09-27 06:40:50 +08:00
|
|
|
SBWatchpointLocation
|
|
|
|
SBTarget::GetWatchpointLocationAtIndex (uint32_t idx) const
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2011-09-27 06:40:50 +08:00
|
|
|
SBWatchpointLocation sb_watchpoint_location;
|
2010-07-24 07:33:17 +08:00
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
2011-09-28 04:29:45 +08:00
|
|
|
// The watchpoint location list is thread safe, no need to lock
|
2011-09-27 06:40:50 +08:00
|
|
|
*sb_watchpoint_location = m_opaque_sp->GetWatchpointLocationList().GetByIndex(idx);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2011-09-27 06:40:50 +08:00
|
|
|
return sb_watchpoint_location;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-09-27 06:40:50 +08:00
|
|
|
SBTarget::WatchpointLocationDelete (watch_id_t wp_id)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
bool result = false;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2011-09-27 06:40:50 +08:00
|
|
|
result = m_opaque_sp->RemoveWatchpointLocationByID (wp_id);
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2011-09-27 06:40:50 +08:00
|
|
|
log->Printf ("SBTarget(%p)::WatchpointLocationDelete (wp_id=%d) => %i", m_opaque_sp.get(), (uint32_t) wp_id, result);
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2011-09-27 06:40:50 +08:00
|
|
|
SBWatchpointLocation
|
|
|
|
SBTarget::FindWatchpointLocationByID (watch_id_t wp_id)
|
|
|
|
{
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
|
|
|
|
SBWatchpointLocation sb_watchpoint_location;
|
|
|
|
if (m_opaque_sp && wp_id != LLDB_INVALID_WATCH_ID)
|
|
|
|
{
|
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
|
|
|
*sb_watchpoint_location = m_opaque_sp->GetWatchpointLocationList().FindByID(wp_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
|
|
|
log->Printf ("SBTarget(%p)::FindWatchpointLocationByID (bp_id=%d) => SBWatchpointLocation(%p)",
|
|
|
|
m_opaque_sp.get(), (uint32_t) wp_id, sb_watchpoint_location.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_watchpoint_location;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
bool
|
2011-09-27 06:40:50 +08:00
|
|
|
SBTarget::EnableAllWatchpointLocations ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2011-09-27 06:40:50 +08:00
|
|
|
m_opaque_sp->EnableAllWatchpointLocations ();
|
2010-06-09 00:52:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-09-27 06:40:50 +08:00
|
|
|
SBTarget::DisableAllWatchpointLocations ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2011-09-27 06:40:50 +08:00
|
|
|
m_opaque_sp->DisableAllWatchpointLocations ();
|
2010-06-09 00:52:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-09-27 06:40:50 +08:00
|
|
|
SBTarget::DeleteAllWatchpointLocations ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-12-21 04:49:23 +08:00
|
|
|
Mutex::Locker api_locker (m_opaque_sp->GetAPIMutex());
|
2011-09-27 06:40:50 +08:00
|
|
|
m_opaque_sp->RemoveAllWatchpointLocations ();
|
2010-06-09 00:52:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
lldb::SBModule
|
|
|
|
SBTarget::AddModule (const char *path,
|
|
|
|
const char *triple,
|
|
|
|
const char *uuid_cstr)
|
|
|
|
{
|
|
|
|
lldb::SBModule sb_module;
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
FileSpec module_file_spec;
|
|
|
|
UUID module_uuid;
|
|
|
|
ArchSpec module_arch;
|
|
|
|
|
|
|
|
if (path)
|
|
|
|
module_file_spec.SetFile(path, false);
|
|
|
|
|
|
|
|
if (uuid_cstr)
|
|
|
|
module_uuid.SetfromCString(uuid_cstr);
|
|
|
|
|
|
|
|
if (triple)
|
|
|
|
module_arch.SetTriple (triple, m_opaque_sp->GetPlatform ().get());
|
|
|
|
|
|
|
|
sb_module.SetModule(m_opaque_sp->GetSharedModule (module_file_spec,
|
|
|
|
module_arch,
|
|
|
|
uuid_cstr ? &module_uuid : NULL));
|
|
|
|
}
|
|
|
|
return sb_module;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::AddModule (lldb::SBModule &module)
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
m_opaque_sp->GetImages().AppendIfNeeded (module.get_sp());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBModule
|
|
|
|
AddModule (const char *path,
|
|
|
|
const char *triple,
|
|
|
|
const char *uuid);
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
uint32_t
|
|
|
|
SBTarget::GetNumModules () const
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
uint32_t num = 0;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
// The module list is thread safe, no need to lock
|
|
|
|
num = m_opaque_sp->GetImages().GetSize();
|
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2010-10-29 12:59:35 +08:00
|
|
|
log->Printf ("SBTarget(%p)::GetNumModules () => %d", m_opaque_sp.get(), num);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
return num;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2010-07-31 04:12:55 +08:00
|
|
|
void
|
|
|
|
SBTarget::Clear ()
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2010-10-29 12:59:35 +08:00
|
|
|
log->Printf ("SBTarget(%p)::Clear ()", m_opaque_sp.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-07-31 04:12:55 +08:00
|
|
|
m_opaque_sp.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBModule
|
|
|
|
SBTarget::FindModule (const SBFileSpec &sb_file_spec)
|
|
|
|
{
|
|
|
|
SBModule sb_module;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp && sb_file_spec.IsValid())
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
// The module list is thread safe, no need to lock
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
sb_module.SetModule (m_opaque_sp->GetImages().FindFirstModuleForFileSpec (*sb_file_spec, NULL, NULL));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_module;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBModule
|
|
|
|
SBTarget::GetModuleAtIndex (uint32_t idx)
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
SBModule sb_module;
|
2010-06-23 09:19:29 +08:00
|
|
|
if (m_opaque_sp)
|
2010-12-21 04:49:23 +08:00
|
|
|
{
|
|
|
|
// The module list is thread safe, no need to lock
|
2010-06-23 09:19:29 +08:00
|
|
|
sb_module.SetModule(m_opaque_sp->GetImages().GetModuleAtIndex(idx));
|
2010-12-21 04:49:23 +08:00
|
|
|
}
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
|
|
|
{
|
2010-10-31 11:01:06 +08:00
|
|
|
log->Printf ("SBTarget(%p)::GetModuleAtIndex (idx=%d) => SBModule(%p)",
|
|
|
|
m_opaque_sp.get(), idx, sb_module.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return sb_module;
|
|
|
|
}
|
|
|
|
|
2011-09-24 08:52:29 +08:00
|
|
|
bool
|
|
|
|
SBTarget::RemoveModule (lldb::SBModule module)
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
return m_opaque_sp->GetImages().Remove(module.get_sp());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
SBBroadcaster
|
|
|
|
SBTarget::GetBroadcaster () const
|
|
|
|
{
|
2010-11-06 09:53:30 +08:00
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
SBBroadcaster broadcaster(m_opaque_sp.get(), false);
|
2010-10-26 11:11:13 +08:00
|
|
|
|
|
|
|
if (log)
|
2010-10-29 12:59:35 +08:00
|
|
|
log->Printf ("SBTarget(%p)::GetBroadcaster () => SBBroadcaster(%p)",
|
2010-10-27 07:49:36 +08:00
|
|
|
m_opaque_sp.get(), broadcaster.get());
|
2010-10-26 11:11:13 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return broadcaster;
|
|
|
|
}
|
|
|
|
|
2010-09-20 13:20:02 +08:00
|
|
|
|
|
|
|
bool
|
2010-10-26 11:11:13 +08:00
|
|
|
SBTarget::GetDescription (SBStream &description, lldb::DescriptionLevel description_level)
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
description.ref();
|
|
|
|
m_opaque_sp->Dump (description.get(), description_level);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
description.Printf ("No value");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SBTarget::GetDescription (SBStream &description, lldb::DescriptionLevel description_level) const
|
2010-09-20 13:20:02 +08:00
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
2010-09-21 00:21:41 +08:00
|
|
|
{
|
2010-09-23 07:01:29 +08:00
|
|
|
description.ref();
|
2010-10-26 11:11:13 +08:00
|
|
|
m_opaque_sp->Dump (description.get(), description_level);
|
2010-09-21 00:21:41 +08:00
|
|
|
}
|
2010-09-20 13:20:02 +08:00
|
|
|
else
|
|
|
|
description.Printf ("No value");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-06-21 09:34:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
SBTarget::FindFunctions (const char *name,
|
|
|
|
uint32_t name_type_mask,
|
|
|
|
bool append,
|
|
|
|
lldb::SBSymbolContextList& sc_list)
|
|
|
|
{
|
|
|
|
if (!append)
|
|
|
|
sc_list.Clear();
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
const bool symbols_ok = true;
|
|
|
|
return m_opaque_sp->GetImages().FindFunctions (ConstString(name),
|
|
|
|
name_type_mask,
|
|
|
|
symbols_ok,
|
|
|
|
append,
|
|
|
|
*sc_list);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-30 03:53:35 +08:00
|
|
|
lldb::SBType
|
|
|
|
SBTarget::FindFirstType (const char* type)
|
|
|
|
{
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
size_t count = m_opaque_sp->GetImages().GetSize();
|
|
|
|
for (size_t idx = 0; idx < count; idx++)
|
|
|
|
{
|
|
|
|
SBType found_at_idx = GetModuleAtIndex(idx).FindFirstType(type);
|
|
|
|
|
|
|
|
if (found_at_idx.IsValid())
|
|
|
|
return found_at_idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return SBType();
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBTypeList
|
|
|
|
SBTarget::FindTypes (const char* type)
|
|
|
|
{
|
|
|
|
|
|
|
|
SBTypeList retval;
|
|
|
|
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
ModuleList& images = m_opaque_sp->GetImages();
|
|
|
|
ConstString name_const(type);
|
|
|
|
SymbolContext sc;
|
|
|
|
TypeList type_list;
|
|
|
|
|
|
|
|
uint32_t num_matches = images.FindTypes(sc,
|
|
|
|
name_const,
|
|
|
|
true,
|
|
|
|
UINT32_MAX,
|
|
|
|
type_list);
|
|
|
|
|
|
|
|
for (size_t idx = 0; idx < num_matches; idx++)
|
|
|
|
{
|
2011-08-04 06:57:10 +08:00
|
|
|
TypeSP type_sp (type_list.GetTypeAtIndex(idx));
|
|
|
|
if (type_sp)
|
|
|
|
retval.Append(SBType(type_sp));
|
2011-07-30 03:53:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-06-30 06:09:02 +08:00
|
|
|
SBValueList
|
|
|
|
SBTarget::FindGlobalVariables (const char *name, uint32_t max_matches)
|
|
|
|
{
|
|
|
|
SBValueList sb_value_list;
|
|
|
|
|
|
|
|
if (m_opaque_sp)
|
|
|
|
{
|
|
|
|
VariableList variable_list;
|
|
|
|
const bool append = true;
|
|
|
|
const uint32_t match_count = m_opaque_sp->GetImages().FindGlobalVariables (ConstString (name),
|
|
|
|
append,
|
|
|
|
max_matches,
|
|
|
|
variable_list);
|
|
|
|
|
|
|
|
if (match_count > 0)
|
|
|
|
{
|
|
|
|
ExecutionContextScope *exe_scope = m_opaque_sp->GetProcessSP().get();
|
|
|
|
if (exe_scope == NULL)
|
|
|
|
exe_scope = m_opaque_sp.get();
|
|
|
|
ValueObjectList &value_object_list = sb_value_list.ref();
|
|
|
|
for (uint32_t i=0; i<match_count; ++i)
|
|
|
|
{
|
|
|
|
lldb::ValueObjectSP valobj_sp (ValueObjectVariable::Create (exe_scope, variable_list.GetVariableAtIndex(i)));
|
|
|
|
if (valobj_sp)
|
|
|
|
value_object_list.Append(valobj_sp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb_value_list;
|
|
|
|
}
|
|
|
|
|
2011-09-13 08:29:56 +08:00
|
|
|
SBSourceManager
|
|
|
|
SBTarget::GetSourceManager()
|
|
|
|
{
|
|
|
|
SBSourceManager source_manager (*this);
|
|
|
|
return source_manager;
|
|
|
|
}
|
2011-09-24 08:52:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBTarget::SetSectionLoadAddress (lldb::SBSection section,
|
|
|
|
lldb::addr_t section_base_addr)
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
|
|
|
|
|
|
|
if (IsValid())
|
|
|
|
{
|
|
|
|
if (!section.IsValid())
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid section");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_opaque_sp->GetSectionLoadList().SetSectionLoadAddress (section.GetSection(), section_base_addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid target");
|
|
|
|
}
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBTarget::ClearSectionLoadAddress (lldb::SBSection section)
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
|
|
|
|
|
|
|
if (IsValid())
|
|
|
|
{
|
|
|
|
if (!section.IsValid())
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid section");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_opaque_sp->GetSectionLoadList().SetSectionUnloaded (section.GetSection());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid target");
|
|
|
|
}
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBTarget::SetModuleLoadAddress (lldb::SBModule module, int64_t slide_offset)
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
|
|
|
|
|
|
|
char path[PATH_MAX];
|
|
|
|
if (IsValid())
|
|
|
|
{
|
|
|
|
if (!module.IsValid())
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid module");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ObjectFile *objfile = module->GetObjectFile();
|
|
|
|
if (objfile)
|
|
|
|
{
|
|
|
|
SectionList *section_list = objfile->GetSectionList();
|
|
|
|
if (section_list)
|
|
|
|
{
|
|
|
|
const size_t num_sections = section_list->GetSize();
|
|
|
|
for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx)
|
|
|
|
{
|
|
|
|
SectionSP section_sp (section_list->GetSectionAtIndex(sect_idx));
|
|
|
|
if (section_sp)
|
|
|
|
m_opaque_sp->GetSectionLoadList().SetSectionLoadAddress (section_sp.get(), section_sp->GetFileAddress() + slide_offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
module->GetFileSpec().GetPath (path, sizeof(path));
|
|
|
|
sb_error.SetErrorStringWithFormat ("no sections in object file '%s'", path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
module->GetFileSpec().GetPath (path, sizeof(path));
|
|
|
|
sb_error.SetErrorStringWithFormat ("no object file for module '%s'", path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid target");
|
|
|
|
}
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SBError
|
|
|
|
SBTarget::ClearModuleLoadAddress (lldb::SBModule module)
|
|
|
|
{
|
|
|
|
SBError sb_error;
|
|
|
|
|
|
|
|
char path[PATH_MAX];
|
|
|
|
if (IsValid())
|
|
|
|
{
|
|
|
|
if (!module.IsValid())
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid module");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ObjectFile *objfile = module->GetObjectFile();
|
|
|
|
if (objfile)
|
|
|
|
{
|
|
|
|
SectionList *section_list = objfile->GetSectionList();
|
|
|
|
if (section_list)
|
|
|
|
{
|
|
|
|
const size_t num_sections = section_list->GetSize();
|
|
|
|
for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx)
|
|
|
|
{
|
|
|
|
SectionSP section_sp (section_list->GetSectionAtIndex(sect_idx));
|
|
|
|
if (section_sp)
|
|
|
|
m_opaque_sp->GetSectionLoadList().SetSectionUnloaded (section_sp.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
module->GetFileSpec().GetPath (path, sizeof(path));
|
|
|
|
sb_error.SetErrorStringWithFormat ("no sections in object file '%s'", path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
module->GetFileSpec().GetPath (path, sizeof(path));
|
|
|
|
sb_error.SetErrorStringWithFormat ("no object file for module '%s'", path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sb_error.SetErrorStringWithFormat ("invalid target");
|
|
|
|
}
|
|
|
|
return sb_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|