2010-06-09 00:52:24 +08:00
|
|
|
//===-- CommandObjectBreakpointCommand.cpp ----------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
|
|
|
|
|
|
|
|
#include "CommandObjectBreakpointCommand.h"
|
|
|
|
#include "CommandObjectBreakpoint.h"
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
|
|
|
#include "lldb/Interpreter/CommandReturnObject.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointIDList.h"
|
|
|
|
#include "lldb/Breakpoint/Breakpoint.h"
|
|
|
|
#include "lldb/Breakpoint/BreakpointLocation.h"
|
|
|
|
#include "lldb/Breakpoint/StoppointCallbackContext.h"
|
|
|
|
#include "lldb/Core/State.h"
|
2011-05-17 03:20:50 +08:00
|
|
|
#include "lldb/Core/StreamAsynchronousIO.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectBreakpointCommandAdd::CommandOptions
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2011-04-08 06:46:35 +08:00
|
|
|
CommandObjectBreakpointCommandAdd::CommandOptions::CommandOptions (CommandInterpreter &interpreter) :
|
|
|
|
Options (interpreter),
|
2010-09-11 08:18:09 +08:00
|
|
|
m_use_commands (false),
|
|
|
|
m_use_script_language (false),
|
|
|
|
m_script_language (eScriptLanguageNone),
|
|
|
|
m_use_one_liner (false),
|
|
|
|
m_one_liner()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandObjectBreakpointCommandAdd::CommandOptions::~CommandOptions ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-18 08:54:25 +08:00
|
|
|
// FIXME: "script-type" needs to have its contents determined dynamically, so somebody can add a new scripting
|
|
|
|
// language to lldb and have it pickable here without having to change this enumeration by hand and rebuild lldb proper.
|
|
|
|
|
2011-03-25 05:19:54 +08:00
|
|
|
static OptionEnumValueElement
|
2011-02-18 08:54:25 +08:00
|
|
|
g_script_option_enumeration[4] =
|
|
|
|
{
|
|
|
|
{ eScriptLanguageNone, "command", "Commands are in the lldb command interpreter language"},
|
|
|
|
{ eScriptLanguagePython, "python", "Commands are in the Python language."},
|
|
|
|
{ eSortOrderByName, "default-script", "Commands are in the default scripting language."},
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2011-03-25 05:19:54 +08:00
|
|
|
OptionDefinition
|
2010-06-09 00:52:24 +08:00
|
|
|
CommandObjectBreakpointCommandAdd::CommandOptions::g_option_table[] =
|
|
|
|
{
|
2010-10-02 03:59:14 +08:00
|
|
|
{ LLDB_OPT_SET_ALL, false, "one-liner", 'o', required_argument, NULL, NULL, eArgTypeOneLiner,
|
2010-09-22 07:25:40 +08:00
|
|
|
"Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
|
2010-09-11 08:18:09 +08:00
|
|
|
|
2011-02-18 08:54:25 +08:00
|
|
|
{ LLDB_OPT_SET_ALL, false, "stop-on-error", 'e', required_argument, NULL, NULL, eArgTypeBoolean,
|
|
|
|
"Specify whether breakpoint command execution should terminate on error." },
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2011-02-18 08:54:25 +08:00
|
|
|
{ LLDB_OPT_SET_ALL, false, "script-type", 's', required_argument, g_script_option_enumeration, NULL, eArgTypeNone,
|
|
|
|
"Specify the language for the commands - if none is specified, the lldb command interpreter will be used."},
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-10-02 03:59:14 +08:00
|
|
|
{ 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
2011-03-25 05:19:54 +08:00
|
|
|
const OptionDefinition*
|
2010-06-09 00:52:24 +08:00
|
|
|
CommandObjectBreakpointCommandAdd::CommandOptions::GetDefinitions ()
|
|
|
|
{
|
|
|
|
return g_option_table;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Error
|
|
|
|
CommandObjectBreakpointCommandAdd::CommandOptions::SetOptionValue
|
|
|
|
(
|
2011-04-13 08:18:08 +08:00
|
|
|
uint32_t option_idx,
|
2010-06-09 00:52:24 +08:00
|
|
|
const char *option_arg
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Error error;
|
|
|
|
char short_option = (char) m_getopt_table[option_idx].val;
|
|
|
|
|
|
|
|
switch (short_option)
|
|
|
|
{
|
2010-09-11 08:18:09 +08:00
|
|
|
case 'o':
|
2011-02-18 08:54:25 +08:00
|
|
|
m_use_one_liner = true;
|
|
|
|
m_one_liner = option_arg;
|
|
|
|
break;
|
|
|
|
break;
|
2010-06-09 00:52:24 +08:00
|
|
|
case 's':
|
2011-02-18 08:54:25 +08:00
|
|
|
{
|
|
|
|
bool found_one = false;
|
|
|
|
m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
|
|
|
|
g_option_table[option_idx].enum_values,
|
|
|
|
eScriptLanguageNone,
|
|
|
|
&found_one);
|
|
|
|
if (!found_one)
|
|
|
|
error.SetErrorStringWithFormat("Invalid enumeration value '%s' for option '%c'.\n",
|
|
|
|
option_arg,
|
|
|
|
short_option);
|
|
|
|
|
|
|
|
if (m_script_language == eScriptLanguagePython || m_script_language == eScriptLanguageDefault)
|
|
|
|
{
|
|
|
|
m_use_commands = false;
|
|
|
|
m_use_script_language = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_use_commands = true;
|
|
|
|
m_use_script_language = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
bool success_ptr;
|
|
|
|
m_stop_on_error = Args::StringToBoolean(option_arg, false, &success_ptr);
|
|
|
|
if (!success_ptr)
|
|
|
|
error.SetErrorStringWithFormat("Invalid value for stop-on-error: \"%s\".\n", option_arg);
|
|
|
|
break;
|
2010-06-09 00:52:24 +08:00
|
|
|
default:
|
2011-02-18 08:54:25 +08:00
|
|
|
break;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-04-13 08:18:08 +08:00
|
|
|
CommandObjectBreakpointCommandAdd::CommandOptions::OptionParsingStarting ()
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2011-02-18 08:54:25 +08:00
|
|
|
m_use_commands = true;
|
2010-06-09 00:52:24 +08:00
|
|
|
m_use_script_language = false;
|
|
|
|
m_script_language = eScriptLanguageNone;
|
2010-09-11 08:18:09 +08:00
|
|
|
|
|
|
|
m_use_one_liner = false;
|
2011-02-18 08:54:25 +08:00
|
|
|
m_stop_on_error = true;
|
2010-09-11 08:18:09 +08:00
|
|
|
m_one_liner.clear();
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectBreakpointCommandAdd
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2010-09-18 09:14:36 +08:00
|
|
|
CommandObjectBreakpointCommandAdd::CommandObjectBreakpointCommandAdd (CommandInterpreter &interpreter) :
|
|
|
|
CommandObject (interpreter,
|
|
|
|
"add",
|
2010-09-09 05:06:11 +08:00
|
|
|
"Add a set of commands to a breakpoint, to be executed whenever the breakpoint is hit.",
|
2011-04-08 06:46:35 +08:00
|
|
|
NULL),
|
|
|
|
m_options (interpreter)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
SetHelpLong (
|
|
|
|
"\nGeneral information about entering breakpoint commands \n\
|
|
|
|
------------------------------------------------------ \n\
|
|
|
|
\n\
|
|
|
|
This command will cause you to be prompted to enter the command or set \n\
|
|
|
|
of commands you wish to be executed when the specified breakpoint is \n\
|
|
|
|
hit. You will be told to enter your command(s), and will see a '> ' \n\
|
|
|
|
prompt. Because you can enter one or many commands to be executed when \n\
|
|
|
|
a breakpoint is hit, you will continue to be prompted after each \n\
|
|
|
|
new-line that you enter, until you enter the word 'DONE', which will \n\
|
|
|
|
cause the commands you have entered to be stored with the breakpoint \n\
|
|
|
|
and executed when the breakpoint is hit. \n\
|
|
|
|
\n\
|
|
|
|
Syntax checking is not necessarily done when breakpoint commands are \n\
|
|
|
|
entered. An improperly written breakpoint command will attempt to get \n\
|
|
|
|
executed when the breakpoint gets hit, and usually silently fail. If \n\
|
|
|
|
your breakpoint command does not appear to be getting executed, go \n\
|
|
|
|
back and check your syntax. \n\
|
|
|
|
\n\
|
|
|
|
\n\
|
|
|
|
Special information about PYTHON breakpoint commands \n\
|
|
|
|
---------------------------------------------------- \n\
|
|
|
|
\n\
|
|
|
|
You may enter either one line of Python or multiple lines of Python \n\
|
|
|
|
(including defining whole functions, if desired). If you enter a \n\
|
|
|
|
single line of Python, that will be passed to the Python interpreter \n\
|
|
|
|
'as is' when the breakpoint gets hit. If you enter function \n\
|
|
|
|
definitions, they will be passed to the Python interpreter as soon as \n\
|
|
|
|
you finish entering the breakpoint command, and they can be called \n\
|
|
|
|
later (don't forget to add calls to them, if you want them called when \n\
|
|
|
|
the breakpoint is hit). If you enter multiple lines of Python that \n\
|
|
|
|
are not function definitions, they will be collected into a new, \n\
|
|
|
|
automatically generated Python function, and a call to the newly \n\
|
|
|
|
generated function will be attached to the breakpoint. Important \n\
|
|
|
|
Note: Because loose Python code gets collected into functions, if you \n\
|
|
|
|
want to access global variables in the 'loose' code, you need to \n\
|
|
|
|
specify that they are global, using the 'global' keyword. Be sure to \n\
|
|
|
|
use correct Python syntax, including indentation, when entering Python \n\
|
|
|
|
breakpoint commands. \n\
|
|
|
|
\n\
|
|
|
|
Example Python one-line breakpoint command: \n\
|
|
|
|
\n\
|
2011-02-18 08:54:25 +08:00
|
|
|
(lldb) breakpoint command add -s python 1 \n\
|
2010-06-09 00:52:24 +08:00
|
|
|
Enter your Python command(s). Type 'DONE' to end. \n\
|
|
|
|
> print \"Hit this breakpoint!\" \n\
|
|
|
|
> DONE \n\
|
|
|
|
\n\
|
2010-09-11 03:34:12 +08:00
|
|
|
As a convenience, this also works for a short Python one-liner: \n\
|
2011-02-18 08:54:25 +08:00
|
|
|
(lldb) breakpoint command add -s python 1 -o \"import time; print time.asctime()\" \n\
|
2010-09-11 03:34:12 +08:00
|
|
|
(lldb) run \n\
|
|
|
|
Launching '.../a.out' (x86_64) \n\
|
|
|
|
(lldb) Fri Sep 10 12:17:45 2010 \n\
|
|
|
|
Process 21778 Stopped \n\
|
|
|
|
* thread #1: tid = 0x2e03, 0x0000000100000de8 a.out`c + 7 at main.c:39, stop reason = breakpoint 1.1, queue = com.apple.main-thread \n\
|
|
|
|
36 \n\
|
|
|
|
37 int c(int val)\n\
|
|
|
|
38 {\n\
|
|
|
|
39 -> return val + 3;\n\
|
|
|
|
40 }\n\
|
|
|
|
41 \n\
|
|
|
|
42 int main (int argc, char const *argv[])\n\
|
|
|
|
(lldb) \n\
|
|
|
|
\n\
|
2010-06-09 00:52:24 +08:00
|
|
|
Example multiple line Python breakpoint command, using function definition: \n\
|
|
|
|
\n\
|
2011-02-18 08:54:25 +08:00
|
|
|
(lldb) breakpoint command add -s python 1 \n\
|
2010-06-09 00:52:24 +08:00
|
|
|
Enter your Python command(s). Type 'DONE' to end. \n\
|
|
|
|
> def breakpoint_output (bp_no): \n\
|
|
|
|
> out_string = \"Hit breakpoint number \" + repr (bp_no) \n\
|
|
|
|
> print out_string \n\
|
|
|
|
> return True \n\
|
|
|
|
> breakpoint_output (1) \n\
|
|
|
|
> DONE \n\
|
|
|
|
\n\
|
|
|
|
\n\
|
|
|
|
Example multiple line Python breakpoint command, using 'loose' Python: \n\
|
|
|
|
\n\
|
2011-02-18 08:54:25 +08:00
|
|
|
(lldb) breakpoint command add -s p 1 \n\
|
2010-06-09 00:52:24 +08:00
|
|
|
Enter your Python command(s). Type 'DONE' to end. \n\
|
|
|
|
> global bp_count \n\
|
|
|
|
> bp_count = bp_count + 1 \n\
|
|
|
|
> print \"Hit this breakpoint \" + repr(bp_count) + \" times!\" \n\
|
|
|
|
> DONE \n\
|
|
|
|
\n\
|
|
|
|
In this case, since there is a reference to a global variable, \n\
|
|
|
|
'bp_count', you will also need to make sure 'bp_count' exists and is \n\
|
|
|
|
initialized: \n\
|
|
|
|
\n\
|
|
|
|
(lldb) script \n\
|
|
|
|
>>> bp_count = 0 \n\
|
|
|
|
>>> quit() \n\
|
|
|
|
\n\
|
|
|
|
(lldb) \n\
|
|
|
|
\n\
|
2010-09-22 03:25:28 +08:00
|
|
|
\n\
|
|
|
|
Final Note: If you get a warning that no breakpoint command was generated, \n\
|
|
|
|
but you did not get any syntax errors, you probably forgot to add a call \n\
|
|
|
|
to your functions. \n\
|
|
|
|
\n\
|
2010-09-09 05:06:11 +08:00
|
|
|
Special information about debugger command breakpoint commands \n\
|
|
|
|
-------------------------------------------------------------- \n\
|
2010-06-09 00:52:24 +08:00
|
|
|
\n\
|
|
|
|
You may enter any debugger command, exactly as you would at the \n\
|
|
|
|
debugger prompt. You may enter as many debugger commands as you like, \n\
|
|
|
|
but do NOT enter more than one command per line. \n" );
|
2010-10-05 06:28:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
CommandArgumentEntry arg;
|
|
|
|
CommandArgumentData bp_id_arg;
|
|
|
|
|
|
|
|
// Define the first (and only) variant of this arg.
|
|
|
|
bp_id_arg.arg_type = eArgTypeBreakpointID;
|
|
|
|
bp_id_arg.arg_repetition = eArgRepeatPlain;
|
|
|
|
|
|
|
|
// There is only one variant this argument could be; put it into the argument entry.
|
|
|
|
arg.push_back (bp_id_arg);
|
|
|
|
|
|
|
|
// Push the data for the first argument into the m_arguments vector.
|
|
|
|
m_arguments.push_back (arg);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CommandObjectBreakpointCommandAdd::~CommandObjectBreakpointCommandAdd ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CommandObjectBreakpointCommandAdd::Execute
|
|
|
|
(
|
|
|
|
Args& command,
|
|
|
|
CommandReturnObject &result
|
|
|
|
)
|
|
|
|
{
|
2010-09-18 09:14:36 +08:00
|
|
|
Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (target == NULL)
|
|
|
|
{
|
|
|
|
result.AppendError ("There is not a current executable; there are no breakpoints to which to add commands");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BreakpointList &breakpoints = target->GetBreakpointList();
|
|
|
|
size_t num_breakpoints = breakpoints.GetSize();
|
|
|
|
|
|
|
|
if (num_breakpoints == 0)
|
|
|
|
{
|
|
|
|
result.AppendError ("No breakpoints exist to have commands added");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointIDList valid_bp_ids;
|
|
|
|
CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids);
|
|
|
|
|
|
|
|
if (result.Succeeded())
|
|
|
|
{
|
2010-07-10 04:39:50 +08:00
|
|
|
const size_t count = valid_bp_ids.GetSize();
|
|
|
|
for (size_t i = 0; i < count; ++i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
|
|
|
|
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID)
|
|
|
|
{
|
|
|
|
Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get();
|
2010-09-11 08:18:09 +08:00
|
|
|
BreakpointOptions *bp_options = NULL;
|
|
|
|
if (cur_bp_id.GetLocationID() == LLDB_INVALID_BREAK_ID)
|
|
|
|
{
|
|
|
|
// This breakpoint does not have an associated location.
|
|
|
|
bp_options = bp->GetOptions();
|
|
|
|
}
|
|
|
|
else
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID()));
|
2010-09-11 08:18:09 +08:00
|
|
|
// This breakpoint does have an associated location.
|
|
|
|
// Get its breakpoint options.
|
2010-06-09 00:52:24 +08:00
|
|
|
if (bp_loc_sp)
|
2010-09-11 08:18:09 +08:00
|
|
|
bp_options = bp_loc_sp->GetLocationOptions();
|
|
|
|
}
|
|
|
|
|
2011-02-18 08:54:25 +08:00
|
|
|
// Skip this breakpoint if bp_options is not good.
|
2010-09-11 08:18:09 +08:00
|
|
|
if (bp_options == NULL) continue;
|
|
|
|
|
|
|
|
// If we are using script language, get the script interpreter
|
|
|
|
// in order to set or collect command callback. Otherwise, call
|
|
|
|
// the methods associated with this object.
|
|
|
|
if (m_options.m_use_script_language)
|
|
|
|
{
|
|
|
|
// Special handling for one-liner specified inline.
|
|
|
|
if (m_options.m_use_one_liner)
|
2010-09-18 09:14:36 +08:00
|
|
|
m_interpreter.GetScriptInterpreter()->SetBreakpointCommandCallback (bp_options,
|
|
|
|
m_options.m_one_liner.c_str());
|
2010-09-11 08:18:09 +08:00
|
|
|
else
|
2010-09-18 09:14:36 +08:00
|
|
|
m_interpreter.GetScriptInterpreter()->CollectDataForBreakpointCommandCallback (bp_options,
|
|
|
|
result);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-11 08:18:09 +08:00
|
|
|
// Special handling for one-liner specified inline.
|
|
|
|
if (m_options.m_use_one_liner)
|
2010-09-18 09:14:36 +08:00
|
|
|
SetBreakpointCommandCallback (bp_options,
|
2010-09-11 08:18:09 +08:00
|
|
|
m_options.m_one_liner.c_str());
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
2010-09-18 09:14:36 +08:00
|
|
|
CollectDataForBreakpointCommandCallback (bp_options,
|
2010-07-14 08:18:15 +08:00
|
|
|
result);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result.Succeeded();
|
|
|
|
}
|
|
|
|
|
|
|
|
Options *
|
|
|
|
CommandObjectBreakpointCommandAdd::GetOptions ()
|
|
|
|
{
|
|
|
|
return &m_options;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *g_reader_instructions = "Enter your debugger command(s). Type 'DONE' to end.";
|
|
|
|
|
|
|
|
void
|
|
|
|
CommandObjectBreakpointCommandAdd::CollectDataForBreakpointCommandCallback
|
|
|
|
(
|
|
|
|
BreakpointOptions *bp_options,
|
|
|
|
CommandReturnObject &result
|
|
|
|
)
|
|
|
|
{
|
2010-09-18 09:14:36 +08:00
|
|
|
InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
|
2010-06-09 00:52:24 +08:00
|
|
|
std::auto_ptr<BreakpointOptions::CommandData> data_ap(new BreakpointOptions::CommandData());
|
|
|
|
if (reader_sp && data_ap.get())
|
|
|
|
{
|
|
|
|
BatonSP baton_sp (new BreakpointOptions::CommandBaton (data_ap.release()));
|
|
|
|
bp_options->SetCallback (CommandObjectBreakpointCommand::BreakpointOptionsCallbackFunction, baton_sp);
|
|
|
|
|
|
|
|
Error err (reader_sp->Initialize (CommandObjectBreakpointCommandAdd::GenerateBreakpointCommandCallback,
|
|
|
|
bp_options, // baton
|
|
|
|
eInputReaderGranularityLine, // token size, to pass to callback function
|
|
|
|
"DONE", // end token
|
|
|
|
"> ", // prompt
|
|
|
|
true)); // echo input
|
|
|
|
if (err.Success())
|
|
|
|
{
|
2010-09-18 09:14:36 +08:00
|
|
|
m_interpreter.GetDebugger().PushInputReader (reader_sp);
|
2010-06-09 00:52:24 +08:00
|
|
|
result.SetStatus (eReturnStatusSuccessFinishNoResult);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.AppendError (err.AsCString());
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.AppendError("out of memory");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-11 08:23:59 +08:00
|
|
|
// Set a one-liner as the callback for the breakpoint.
|
2010-09-11 08:18:09 +08:00
|
|
|
void
|
2010-09-18 09:14:36 +08:00
|
|
|
CommandObjectBreakpointCommandAdd::SetBreakpointCommandCallback (BreakpointOptions *bp_options,
|
2010-09-11 08:18:09 +08:00
|
|
|
const char *oneliner)
|
|
|
|
{
|
|
|
|
std::auto_ptr<BreakpointOptions::CommandData> data_ap(new BreakpointOptions::CommandData());
|
|
|
|
|
|
|
|
// It's necessary to set both user_source and script_source to the oneliner.
|
|
|
|
// The former is used to generate callback description (as in breakpoint command list)
|
|
|
|
// while the latter is used for Python to interpret during the actual callback.
|
|
|
|
data_ap->user_source.AppendString (oneliner);
|
|
|
|
data_ap->script_source.AppendString (oneliner);
|
2011-02-18 08:54:25 +08:00
|
|
|
data_ap->stop_on_error = m_options.m_stop_on_error;
|
2010-09-11 08:18:09 +08:00
|
|
|
|
|
|
|
BatonSP baton_sp (new BreakpointOptions::CommandBaton (data_ap.release()));
|
|
|
|
bp_options->SetCallback (CommandObjectBreakpointCommand::BreakpointOptionsCallbackFunction, baton_sp);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
size_t
|
|
|
|
CommandObjectBreakpointCommandAdd::GenerateBreakpointCommandCallback
|
|
|
|
(
|
|
|
|
void *baton,
|
2010-06-23 09:19:29 +08:00
|
|
|
InputReader &reader,
|
2010-06-09 00:52:24 +08:00
|
|
|
lldb::InputReaderAction notification,
|
|
|
|
const char *bytes,
|
|
|
|
size_t bytes_len
|
|
|
|
)
|
|
|
|
{
|
2011-02-09 09:08:52 +08:00
|
|
|
File &out_file = reader.GetDebugger().GetOutputFile();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
switch (notification)
|
|
|
|
{
|
|
|
|
case eInputReaderActivate:
|
2011-02-09 09:08:52 +08:00
|
|
|
out_file.Printf ("%s\n", g_reader_instructions);
|
|
|
|
if (reader.GetPrompt())
|
|
|
|
out_file.Printf ("%s", reader.GetPrompt());
|
|
|
|
out_file.Flush();
|
2010-06-09 00:52:24 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case eInputReaderDeactivate:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eInputReaderReactivate:
|
2011-02-09 09:08:52 +08:00
|
|
|
if (reader.GetPrompt())
|
2010-10-28 02:34:42 +08:00
|
|
|
{
|
2011-02-09 09:08:52 +08:00
|
|
|
out_file.Printf ("%s", reader.GetPrompt());
|
|
|
|
out_file.Flush();
|
2010-10-28 02:34:42 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
break;
|
|
|
|
|
This patch captures and serializes all output being written by the
command line driver, including the lldb prompt being output by
editline, the asynchronous process output & error messages, and
asynchronous messages written by target stop-hooks.
As part of this it introduces a new Stream class,
StreamAsynchronousIO. A StreamAsynchronousIO object is created with a
broadcaster, who will eventually broadcast the stream's data for a
listener to handle, and an event type indicating what type of event
the broadcaster will broadcast. When the Write method is called on a
StreamAsynchronousIO object, the data is appended to an internal
string. When the Flush method is called on a StreamAsynchronousIO
object, it broadcasts it's data string and clears the string.
Anything in lldb-core that needs to generate asynchronous output for
the end-user should use the StreamAsynchronousIO objects.
I have also added a new notification type for InputReaders, to let
them know that a asynchronous output has been written. This is to
allow the input readers to, for example, refresh their prompts and
lines, if desired. I added the case statements to all the input
readers to catch this notification, but I haven't added any code for
handling them yet (except to the IOChannel input reader).
llvm-svn: 130721
2011-05-03 04:41:46 +08:00
|
|
|
case eInputReaderAsynchronousOutputWritten:
|
|
|
|
break;
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
case eInputReaderGotToken:
|
|
|
|
if (bytes && bytes_len && baton)
|
|
|
|
{
|
|
|
|
BreakpointOptions *bp_options = (BreakpointOptions *) baton;
|
|
|
|
if (bp_options)
|
|
|
|
{
|
|
|
|
Baton *bp_options_baton = bp_options->GetBaton();
|
|
|
|
if (bp_options_baton)
|
|
|
|
((BreakpointOptions::CommandData *)bp_options_baton->m_data)->user_source.AppendString (bytes, bytes_len);
|
|
|
|
}
|
|
|
|
}
|
2011-02-09 09:08:52 +08:00
|
|
|
if (!reader.IsDone() && reader.GetPrompt())
|
2010-10-28 02:34:42 +08:00
|
|
|
{
|
2011-02-09 09:08:52 +08:00
|
|
|
out_file.Printf ("%s", reader.GetPrompt());
|
|
|
|
out_file.Flush();
|
2010-10-28 02:34:42 +08:00
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
break;
|
|
|
|
|
2010-11-20 04:47:54 +08:00
|
|
|
case eInputReaderInterrupt:
|
|
|
|
{
|
|
|
|
// Finish, and cancel the breakpoint command.
|
|
|
|
reader.SetIsDone (true);
|
|
|
|
BreakpointOptions *bp_options = (BreakpointOptions *) baton;
|
|
|
|
if (bp_options)
|
|
|
|
{
|
|
|
|
Baton *bp_options_baton = bp_options->GetBaton ();
|
|
|
|
if (bp_options_baton)
|
|
|
|
{
|
|
|
|
((BreakpointOptions::CommandData *) bp_options_baton->m_data)->user_source.Clear();
|
|
|
|
((BreakpointOptions::CommandData *) bp_options_baton->m_data)->script_source.Clear();
|
|
|
|
}
|
|
|
|
}
|
2011-02-09 09:08:52 +08:00
|
|
|
out_file.Printf ("Warning: No command attached to breakpoint.\n");
|
|
|
|
out_file.Flush();
|
2010-11-20 04:47:54 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eInputReaderEndOfFile:
|
|
|
|
reader.SetIsDone (true);
|
|
|
|
break;
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
case eInputReaderDone:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bytes_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectBreakpointCommandRemove
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2010-09-18 09:14:36 +08:00
|
|
|
CommandObjectBreakpointCommandRemove::CommandObjectBreakpointCommandRemove (CommandInterpreter &interpreter) :
|
|
|
|
CommandObject (interpreter,
|
|
|
|
"remove",
|
2010-06-09 00:52:24 +08:00
|
|
|
"Remove the set of commands from a breakpoint.",
|
2010-10-05 06:28:36 +08:00
|
|
|
NULL)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-05 06:28:36 +08:00
|
|
|
CommandArgumentEntry arg;
|
|
|
|
CommandArgumentData bp_id_arg;
|
|
|
|
|
|
|
|
// Define the first (and only) variant of this arg.
|
|
|
|
bp_id_arg.arg_type = eArgTypeBreakpointID;
|
|
|
|
bp_id_arg.arg_repetition = eArgRepeatPlain;
|
|
|
|
|
|
|
|
// There is only one variant this argument could be; put it into the argument entry.
|
|
|
|
arg.push_back (bp_id_arg);
|
|
|
|
|
|
|
|
// Push the data for the first argument into the m_arguments vector.
|
|
|
|
m_arguments.push_back (arg);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CommandObjectBreakpointCommandRemove::~CommandObjectBreakpointCommandRemove ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-06-23 09:19:29 +08:00
|
|
|
CommandObjectBreakpointCommandRemove::Execute
|
|
|
|
(
|
|
|
|
Args& command,
|
|
|
|
CommandReturnObject &result
|
|
|
|
)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-09-18 09:14:36 +08:00
|
|
|
Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (target == NULL)
|
|
|
|
{
|
|
|
|
result.AppendError ("There is not a current executable; there are no breakpoints from which to remove commands");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BreakpointList &breakpoints = target->GetBreakpointList();
|
|
|
|
size_t num_breakpoints = breakpoints.GetSize();
|
|
|
|
|
|
|
|
if (num_breakpoints == 0)
|
|
|
|
{
|
|
|
|
result.AppendError ("No breakpoints exist to have commands removed");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (command.GetArgumentCount() == 0)
|
|
|
|
{
|
|
|
|
result.AppendError ("No breakpoint specified from which to remove the commands");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointIDList valid_bp_ids;
|
|
|
|
CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids);
|
|
|
|
|
|
|
|
if (result.Succeeded())
|
|
|
|
{
|
2010-07-10 04:39:50 +08:00
|
|
|
const size_t count = valid_bp_ids.GetSize();
|
|
|
|
for (size_t i = 0; i < count; ++i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
|
|
|
|
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID)
|
|
|
|
{
|
|
|
|
Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get();
|
|
|
|
if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID)
|
|
|
|
{
|
|
|
|
BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID()));
|
|
|
|
if (bp_loc_sp)
|
|
|
|
bp_loc_sp->ClearCallback();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.AppendErrorWithFormat("Invalid breakpoint ID: %u.%u.\n",
|
|
|
|
cur_bp_id.GetBreakpointID(),
|
|
|
|
cur_bp_id.GetLocationID());
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bp->ClearCallback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result.Succeeded();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectBreakpointCommandList
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2010-09-18 09:14:36 +08:00
|
|
|
CommandObjectBreakpointCommandList::CommandObjectBreakpointCommandList (CommandInterpreter &interpreter) :
|
|
|
|
CommandObject (interpreter,
|
|
|
|
"list",
|
2010-06-09 00:52:24 +08:00
|
|
|
"List the script or set of commands to be executed when the breakpoint is hit.",
|
2010-10-05 06:28:36 +08:00
|
|
|
NULL)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-10-05 06:28:36 +08:00
|
|
|
CommandArgumentEntry arg;
|
|
|
|
CommandArgumentData bp_id_arg;
|
|
|
|
|
|
|
|
// Define the first (and only) variant of this arg.
|
|
|
|
bp_id_arg.arg_type = eArgTypeBreakpointID;
|
|
|
|
bp_id_arg.arg_repetition = eArgRepeatPlain;
|
|
|
|
|
|
|
|
// There is only one variant this argument could be; put it into the argument entry.
|
|
|
|
arg.push_back (bp_id_arg);
|
|
|
|
|
|
|
|
// Push the data for the first argument into the m_arguments vector.
|
|
|
|
m_arguments.push_back (arg);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CommandObjectBreakpointCommandList::~CommandObjectBreakpointCommandList ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-06-23 09:19:29 +08:00
|
|
|
CommandObjectBreakpointCommandList::Execute
|
|
|
|
(
|
|
|
|
Args& command,
|
|
|
|
CommandReturnObject &result
|
|
|
|
)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2010-09-18 09:14:36 +08:00
|
|
|
Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
if (target == NULL)
|
|
|
|
{
|
|
|
|
result.AppendError ("There is not a current executable; there are no breakpoints for which to list commands");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BreakpointList &breakpoints = target->GetBreakpointList();
|
|
|
|
size_t num_breakpoints = breakpoints.GetSize();
|
|
|
|
|
|
|
|
if (num_breakpoints == 0)
|
|
|
|
{
|
|
|
|
result.AppendError ("No breakpoints exist for which to list commands");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (command.GetArgumentCount() == 0)
|
|
|
|
{
|
|
|
|
result.AppendError ("No breakpoint specified for which to list the commands");
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BreakpointIDList valid_bp_ids;
|
|
|
|
CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids);
|
|
|
|
|
|
|
|
if (result.Succeeded())
|
|
|
|
{
|
2010-07-10 04:39:50 +08:00
|
|
|
const size_t count = valid_bp_ids.GetSize();
|
|
|
|
for (size_t i = 0; i < count; ++i)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
|
|
|
|
if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID)
|
|
|
|
{
|
|
|
|
Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get();
|
|
|
|
|
|
|
|
if (bp)
|
|
|
|
{
|
2010-06-16 10:00:15 +08:00
|
|
|
const BreakpointOptions *bp_options = NULL;
|
2010-06-09 00:52:24 +08:00
|
|
|
if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID)
|
|
|
|
{
|
|
|
|
BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID()));
|
|
|
|
if (bp_loc_sp)
|
2010-06-23 05:12:54 +08:00
|
|
|
bp_options = bp_loc_sp->GetOptionsNoCreate();
|
2010-06-09 00:52:24 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
result.AppendErrorWithFormat("Invalid breakpoint ID: %u.%u.\n",
|
|
|
|
cur_bp_id.GetBreakpointID(),
|
|
|
|
cur_bp_id.GetLocationID());
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bp_options = bp->GetOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bp_options)
|
|
|
|
{
|
|
|
|
StreamString id_str;
|
2011-02-18 08:54:25 +08:00
|
|
|
BreakpointID::GetCanonicalReference (&id_str,
|
|
|
|
cur_bp_id.GetBreakpointID(),
|
|
|
|
cur_bp_id.GetLocationID());
|
2010-06-16 10:00:15 +08:00
|
|
|
const Baton *baton = bp_options->GetBaton();
|
2010-06-09 00:52:24 +08:00
|
|
|
if (baton)
|
|
|
|
{
|
|
|
|
result.GetOutputStream().Printf ("Breakpoint %s:\n", id_str.GetData());
|
|
|
|
result.GetOutputStream().IndentMore ();
|
|
|
|
baton->GetDescription(&result.GetOutputStream(), eDescriptionLevelFull);
|
|
|
|
result.GetOutputStream().IndentLess ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-02-18 08:54:25 +08:00
|
|
|
result.AppendMessageWithFormat ("Breakpoint %s does not have an associated command.\n",
|
|
|
|
id_str.GetData());
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
result.SetStatus (eReturnStatusSuccessFinishResult);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.AppendErrorWithFormat("Invalid breakpoint ID: %u.\n", cur_bp_id.GetBreakpointID());
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result.Succeeded();
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectBreakpointCommand
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
CommandObjectBreakpointCommand::CommandObjectBreakpointCommand (CommandInterpreter &interpreter) :
|
2010-09-18 09:14:36 +08:00
|
|
|
CommandObjectMultiword (interpreter,
|
|
|
|
"command",
|
2010-06-09 00:52:24 +08:00
|
|
|
"A set of commands for adding, removing and examining bits of code to be executed when the breakpoint is hit (breakpoint 'commmands').",
|
|
|
|
"command <sub-command> [<sub-command-options>] <breakpoint-id>")
|
|
|
|
{
|
|
|
|
bool status;
|
2010-09-18 09:14:36 +08:00
|
|
|
CommandObjectSP add_command_object (new CommandObjectBreakpointCommandAdd (interpreter));
|
|
|
|
CommandObjectSP remove_command_object (new CommandObjectBreakpointCommandRemove (interpreter));
|
|
|
|
CommandObjectSP list_command_object (new CommandObjectBreakpointCommandList (interpreter));
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
add_command_object->SetCommandName ("breakpoint command add");
|
|
|
|
remove_command_object->SetCommandName ("breakpoint command remove");
|
|
|
|
list_command_object->SetCommandName ("breakpoint command list");
|
|
|
|
|
2010-09-18 09:14:36 +08:00
|
|
|
status = LoadSubCommand ("add", add_command_object);
|
|
|
|
status = LoadSubCommand ("remove", remove_command_object);
|
|
|
|
status = LoadSubCommand ("list", list_command_object);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CommandObjectBreakpointCommand::~CommandObjectBreakpointCommand ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CommandObjectBreakpointCommand::BreakpointOptionsCallbackFunction
|
|
|
|
(
|
|
|
|
void *baton,
|
|
|
|
StoppointCallbackContext *context,
|
|
|
|
lldb::user_id_t break_id,
|
|
|
|
lldb::user_id_t break_loc_id
|
|
|
|
)
|
|
|
|
{
|
|
|
|
bool ret_value = true;
|
|
|
|
if (baton == NULL)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
BreakpointOptions::CommandData *data = (BreakpointOptions::CommandData *) baton;
|
|
|
|
StringList &commands = data->user_source;
|
2011-02-19 10:53:09 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
if (commands.GetSize() > 0)
|
|
|
|
{
|
2010-06-23 09:19:29 +08:00
|
|
|
if (context->exe_ctx.target)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
2011-02-19 10:53:09 +08:00
|
|
|
CommandReturnObject result;
|
2010-06-23 09:19:29 +08:00
|
|
|
Debugger &debugger = context->exe_ctx.target->GetDebugger();
|
2011-02-19 10:53:09 +08:00
|
|
|
// Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
|
|
|
|
// if the debugger is set up that way.
|
|
|
|
|
2011-05-17 03:20:50 +08:00
|
|
|
StreamSP output_stream (new StreamAsynchronousIO (debugger.GetCommandInterpreter(),
|
|
|
|
CommandInterpreter::eBroadcastBitAsynchronousOutputData));
|
|
|
|
StreamSP error_stream (new StreamAsynchronousIO (debugger.GetCommandInterpreter(),
|
|
|
|
CommandInterpreter::eBroadcastBitAsynchronousErrorData));
|
|
|
|
result.SetImmediateOutputStream (output_stream);
|
|
|
|
result.SetImmediateErrorStream (error_stream);
|
|
|
|
|
2011-02-18 08:54:25 +08:00
|
|
|
bool stop_on_continue = true;
|
|
|
|
bool echo_commands = false;
|
|
|
|
bool print_results = true;
|
|
|
|
|
|
|
|
debugger.GetCommandInterpreter().HandleCommands (commands,
|
|
|
|
&(context->exe_ctx),
|
|
|
|
stop_on_continue,
|
|
|
|
data->stop_on_error,
|
|
|
|
echo_commands,
|
|
|
|
print_results,
|
|
|
|
result);
|
2011-05-17 03:20:50 +08:00
|
|
|
result.GetImmediateOutputStream()->Flush();
|
|
|
|
result.GetImmediateErrorStream()->Flush();
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
return ret_value;
|
|
|
|
}
|
|
|
|
|