2010-06-08 16:52:24 +00:00
|
|
|
//===-- ScriptInterpreterPython.h -------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
2015-07-30 20:28:07 +00:00
|
|
|
#ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHON_H
|
|
|
|
|
#define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHON_H
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2011-11-04 03:34:56 +00:00
|
|
|
#ifdef LLDB_DISABLE_PYTHON
|
|
|
|
|
|
|
|
|
|
// Python is disabled in this build
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
2010-11-10 19:18:14 +00:00
|
|
|
#include "lldb/lldb-private.h"
|
2015-07-30 20:28:07 +00:00
|
|
|
#include "PythonDataObjects.h"
|
2014-01-27 23:43:24 +00:00
|
|
|
#include "lldb/Core/IOHandler.h"
|
2010-06-08 16:52:24 +00:00
|
|
|
#include "lldb/Interpreter/ScriptInterpreter.h"
|
2011-02-07 23:24:47 +00:00
|
|
|
#include "lldb/Host/Terminal.h"
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2014-05-02 00:45:31 +00:00
|
|
|
class IOHandlerPythonInterpreter;
|
|
|
|
|
|
2010-06-08 16:52:24 +00:00
|
|
|
namespace lldb_private {
|
Redesign of the interaction between Python and frozen objects:
- introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
in frozen objects ; now such reads transparently move from host to target as required
- as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
removed code that enabled to recognize an expression result VO as such
- introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
representing a T* or T[], and doing dereferences transparently
in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
- as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
en lieu of doing the raw read itself
- introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
in public layer this returns an SBData, just like GetPointeeData()
- introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
- added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
Solved a bug where global pointers to global variables were not dereferenced correctly for display
New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
addresses that generate file address children UNLESS we have a live process)
Updated help text for summary-string
Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
Edited the syntax and help for some commands to have proper argument types
llvm-svn: 139160
2011-09-06 19:20:51 +00:00
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
class ScriptInterpreterPython :
|
|
|
|
|
public ScriptInterpreter,
|
|
|
|
|
public IOHandlerDelegateMultiline
|
2010-06-08 16:52:24 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2015-03-31 21:03:22 +00:00
|
|
|
typedef void (*SWIGInitCallback) (void);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGBreakpointCallbackFunction) (const char *python_function_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
const lldb::StackFrameSP& frame_sp,
|
|
|
|
|
const lldb::BreakpointLocationSP &bp_loc_sp);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGWatchpointCallbackFunction) (const char *python_function_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
const lldb::StackFrameSP& frame_sp,
|
|
|
|
|
const lldb::WatchpointSP &wp_sp);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonTypeScriptCallbackFunction) (const char *python_function_name,
|
|
|
|
|
void *session_dictionary,
|
|
|
|
|
const lldb::ValueObjectSP& valobj_sp,
|
|
|
|
|
void** pyfunct_wrapper,
|
|
|
|
|
const lldb::TypeSummaryOptionsSP& options,
|
|
|
|
|
std::string& retval);
|
|
|
|
|
|
|
|
|
|
typedef void* (*SWIGPythonCreateSyntheticProvider) (const char *python_class_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
const lldb::ValueObjectSP& valobj_sp);
|
|
|
|
|
|
|
|
|
|
typedef void* (*SWIGPythonCreateCommandObject) (const char *python_class_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
const lldb::DebuggerSP debugger_sp);
|
|
|
|
|
|
|
|
|
|
typedef void* (*SWIGPythonCreateScriptedThreadPlan) (const char *python_class_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
const lldb::ThreadPlanSP& thread_plan_sp);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonCallThreadPlan) (void *implementor, const char *method_name, Event *event_sp, bool &got_error);
|
|
|
|
|
|
|
|
|
|
typedef void* (*SWIGPythonCreateOSPlugin) (const char *python_class_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
const lldb::ProcessSP& process_sp);
|
|
|
|
|
|
|
|
|
|
typedef size_t (*SWIGPythonCalculateNumChildren) (void *implementor);
|
|
|
|
|
typedef void* (*SWIGPythonGetChildAtIndex) (void *implementor, uint32_t idx);
|
|
|
|
|
typedef int (*SWIGPythonGetIndexOfChildWithName) (void *implementor, const char* child_name);
|
|
|
|
|
typedef void* (*SWIGPythonCastPyObjectToSBValue) (void* data);
|
|
|
|
|
typedef lldb::ValueObjectSP (*SWIGPythonGetValueObjectSPFromSBValue) (void* data);
|
|
|
|
|
typedef bool (*SWIGPythonUpdateSynthProviderInstance) (void* data);
|
|
|
|
|
typedef bool (*SWIGPythonMightHaveChildrenSynthProviderInstance) (void* data);
|
|
|
|
|
typedef void* (*SWIGPythonGetValueSynthProviderInstance) (void *implementor);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonCallCommand) (const char *python_function_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
lldb::DebuggerSP& debugger,
|
|
|
|
|
const char* args,
|
|
|
|
|
lldb_private::CommandReturnObject& cmd_retobj,
|
|
|
|
|
lldb::ExecutionContextRefSP exe_ctx_ref_sp);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonCallCommandObject) (void *implementor,
|
|
|
|
|
lldb::DebuggerSP& debugger,
|
|
|
|
|
const char* args,
|
|
|
|
|
lldb_private::CommandReturnObject& cmd_retobj,
|
|
|
|
|
lldb::ExecutionContextRefSP exe_ctx_ref_sp);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonCallModuleInit) (const char *python_module_name,
|
|
|
|
|
const char *session_dictionary_name,
|
|
|
|
|
lldb::DebuggerSP& debugger);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonScriptKeyword_Process) (const char* python_function_name,
|
|
|
|
|
const char* session_dictionary_name,
|
|
|
|
|
lldb::ProcessSP& process,
|
|
|
|
|
std::string& output);
|
|
|
|
|
typedef bool (*SWIGPythonScriptKeyword_Thread) (const char* python_function_name,
|
|
|
|
|
const char* session_dictionary_name,
|
|
|
|
|
lldb::ThreadSP& thread,
|
|
|
|
|
std::string& output);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonScriptKeyword_Target) (const char* python_function_name,
|
|
|
|
|
const char* session_dictionary_name,
|
|
|
|
|
lldb::TargetSP& target,
|
|
|
|
|
std::string& output);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonScriptKeyword_Frame) (const char* python_function_name,
|
|
|
|
|
const char* session_dictionary_name,
|
|
|
|
|
lldb::StackFrameSP& frame,
|
|
|
|
|
std::string& output);
|
|
|
|
|
|
|
|
|
|
typedef bool (*SWIGPythonScriptKeyword_Value) (const char* python_function_name,
|
|
|
|
|
const char* session_dictionary_name,
|
|
|
|
|
lldb::ValueObjectSP& value,
|
|
|
|
|
std::string& output);
|
|
|
|
|
|
|
|
|
|
typedef void* (*SWIGPython_GetDynamicSetting) (void* module,
|
|
|
|
|
const char* setting,
|
|
|
|
|
const lldb::TargetSP& target_sp);
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2015-04-02 20:57:38 +00:00
|
|
|
friend class ::IOHandlerPythonInterpreter;
|
2015-02-25 19:52:41 +00:00
|
|
|
|
2010-06-23 01:19:29 +00:00
|
|
|
ScriptInterpreterPython (CommandInterpreter &interpreter);
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2015-08-18 08:39:09 +00:00
|
|
|
~ScriptInterpreterPython() override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2015-01-27 01:58:22 +00:00
|
|
|
bool
|
|
|
|
|
Interrupt() override;
|
|
|
|
|
|
2010-07-30 22:33:14 +00:00
|
|
|
bool
|
2012-10-18 22:40:37 +00:00
|
|
|
ExecuteOneLine (const char *command,
|
|
|
|
|
CommandReturnObject *result,
|
2015-01-28 20:47:27 +00:00
|
|
|
const ExecuteScriptOptions &options = ExecuteScriptOptions()) override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
|
|
|
|
void
|
2015-01-28 20:47:27 +00:00
|
|
|
ExecuteInterpreterLoop () override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
ExecuteOneLineWithReturn (const char *in_string,
|
2011-10-17 21:45:27 +00:00
|
|
|
ScriptInterpreter::ScriptReturnType return_type,
|
2012-06-07 00:17:18 +00:00
|
|
|
void *ret_value,
|
2015-01-28 20:47:27 +00:00
|
|
|
const ExecuteScriptOptions &options = ExecuteScriptOptions()) override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
lldb_private::Error
|
2012-10-18 22:40:37 +00:00
|
|
|
ExecuteMultipleLines (const char *in_string,
|
2015-01-28 20:47:27 +00:00
|
|
|
const ExecuteScriptOptions &options = ExecuteScriptOptions()) override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2014-04-02 01:04:55 +00:00
|
|
|
Error
|
2015-01-28 20:47:27 +00:00
|
|
|
ExportFunctionDefinitionToInterpreter (StringList &function_def) override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2011-07-15 02:26:42 +00:00
|
|
|
bool
|
2015-02-03 08:01:34 +00:00
|
|
|
GenerateTypeScriptFunction (StringList &input, std::string& output, const void* name_token = NULL) override;
|
2011-07-15 02:26:42 +00:00
|
|
|
|
2011-07-25 16:59:05 +00:00
|
|
|
bool
|
2015-02-03 08:01:34 +00:00
|
|
|
GenerateTypeSynthClass (StringList &input, std::string& output, const void* name_token = NULL) override;
|
2012-02-15 02:34:21 +00:00
|
|
|
|
|
|
|
|
bool
|
2015-02-03 08:01:34 +00:00
|
|
|
GenerateTypeSynthClass (const char* oneliner, std::string& output, const void* name_token = NULL) override;
|
2011-07-25 16:59:05 +00:00
|
|
|
|
2011-07-15 02:26:42 +00:00
|
|
|
// use this if the function code is just a one-liner script
|
|
|
|
|
bool
|
2015-02-03 08:01:34 +00:00
|
|
|
GenerateTypeScriptFunction (const char* oneliner, std::string& output, const void* name_token = NULL) override;
|
2011-07-15 02:26:42 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
|
|
|
|
GenerateScriptAliasFunction (StringList &input, std::string& output) override;
|
2014-09-29 23:17:18 +00:00
|
|
|
|
2015-03-17 20:04:04 +00:00
|
|
|
StructuredData::ObjectSP CreateSyntheticScriptedProvider(const char *class_name, lldb::ValueObjectSP valobj) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::GenericSP CreateScriptCommandObject (const char *class_name) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::ObjectSP CreateScriptedThreadPlan(const char *class_name, lldb::ThreadPlanSP thread_plan) override;
|
|
|
|
|
|
|
|
|
|
bool ScriptedThreadPlanExplainsStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) override;
|
|
|
|
|
bool ScriptedThreadPlanShouldStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) override;
|
|
|
|
|
lldb::StateType ScriptedThreadPlanGetRunState(StructuredData::ObjectSP implementor_sp, bool &script_error) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::GenericSP OSPlugin_CreatePluginObject(const char *class_name, lldb::ProcessSP process_sp) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::DictionarySP OSPlugin_RegisterInfo(StructuredData::ObjectSP os_plugin_object_sp) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::ArraySP OSPlugin_ThreadsInfo(StructuredData::ObjectSP os_plugin_object_sp) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::StringSP OSPlugin_RegisterContextData(StructuredData::ObjectSP os_plugin_object_sp, lldb::tid_t thread_id) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::DictionarySP OSPlugin_CreateThread(StructuredData::ObjectSP os_plugin_object_sp, lldb::tid_t tid,
|
|
|
|
|
lldb::addr_t context) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::ObjectSP LoadPluginModule(const FileSpec &file_spec, lldb_private::Error &error) override;
|
|
|
|
|
|
|
|
|
|
StructuredData::DictionarySP GetDynamicSettings(StructuredData::ObjectSP plugin_module_sp, Target *target, const char *setting_name,
|
|
|
|
|
lldb_private::Error &error) override;
|
|
|
|
|
|
|
|
|
|
size_t CalculateNumChildren(const StructuredData::ObjectSP &implementor) override;
|
|
|
|
|
|
|
|
|
|
lldb::ValueObjectSP GetChildAtIndex(const StructuredData::ObjectSP &implementor, uint32_t idx) override;
|
|
|
|
|
|
|
|
|
|
int GetIndexOfChildWithName(const StructuredData::ObjectSP &implementor, const char *child_name) override;
|
|
|
|
|
|
|
|
|
|
bool UpdateSynthProviderInstance(const StructuredData::ObjectSP &implementor) override;
|
|
|
|
|
|
|
|
|
|
bool MightHaveChildrenSynthProviderInstance(const StructuredData::ObjectSP &implementor) override;
|
|
|
|
|
|
|
|
|
|
lldb::ValueObjectSP GetSyntheticValue(const StructuredData::ObjectSP &implementor) override;
|
2014-09-29 23:17:18 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
2011-08-16 16:49:25 +00:00
|
|
|
RunScriptBasedCommand(const char* impl_function,
|
|
|
|
|
const char* args,
|
2011-11-07 22:57:04 +00:00
|
|
|
ScriptedCommandSynchronicity synchronicity,
|
2011-08-16 23:24:13 +00:00
|
|
|
lldb_private::CommandReturnObject& cmd_retobj,
|
2014-10-01 21:47:29 +00:00
|
|
|
Error& error,
|
2015-01-28 20:47:27 +00:00
|
|
|
const lldb_private::ExecutionContext& exe_ctx) override;
|
2011-08-16 16:49:25 +00:00
|
|
|
|
2015-03-13 02:20:41 +00:00
|
|
|
bool
|
2015-03-17 20:04:04 +00:00
|
|
|
RunScriptBasedCommand (StructuredData::GenericSP impl_obj_sp,
|
2015-03-13 02:20:41 +00:00
|
|
|
const char* args,
|
|
|
|
|
ScriptedCommandSynchronicity synchronicity,
|
|
|
|
|
lldb_private::CommandReturnObject& cmd_retobj,
|
|
|
|
|
Error& error,
|
|
|
|
|
const lldb_private::ExecutionContext& exe_ctx) override;
|
|
|
|
|
|
2014-04-02 01:04:55 +00:00
|
|
|
Error
|
2015-01-28 20:47:27 +00:00
|
|
|
GenerateFunction(const char *signature, const StringList &input) override;
|
2011-07-15 02:26:42 +00:00
|
|
|
|
2014-04-02 01:04:55 +00:00
|
|
|
Error
|
2015-01-28 20:47:27 +00:00
|
|
|
GenerateBreakpointCommandCallbackData (StringList &input, std::string& output) override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2012-08-09 23:09:42 +00:00
|
|
|
bool
|
2015-01-28 20:47:27 +00:00
|
|
|
GenerateWatchpointCommandCallbackData (StringList &input, std::string& output) override;
|
2012-08-09 23:09:42 +00:00
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
// static size_t
|
|
|
|
|
// GenerateBreakpointOptionsCommandCallback (void *baton,
|
|
|
|
|
// InputReader &reader,
|
|
|
|
|
// lldb::InputReaderAction notification,
|
|
|
|
|
// const char *bytes,
|
|
|
|
|
// size_t bytes_len);
|
|
|
|
|
//
|
|
|
|
|
// static size_t
|
|
|
|
|
// GenerateWatchpointOptionsCommandCallback (void *baton,
|
|
|
|
|
// InputReader &reader,
|
|
|
|
|
// lldb::InputReaderAction notification,
|
|
|
|
|
// const char *bytes,
|
|
|
|
|
// size_t bytes_len);
|
|
|
|
|
|
2010-06-08 16:52:24 +00:00
|
|
|
static bool
|
|
|
|
|
BreakpointCallbackFunction (void *baton,
|
|
|
|
|
StoppointCallbackContext *context,
|
|
|
|
|
lldb::user_id_t break_id,
|
|
|
|
|
lldb::user_id_t break_loc_id);
|
2011-07-15 02:26:42 +00:00
|
|
|
|
2012-08-09 23:09:42 +00:00
|
|
|
static bool
|
|
|
|
|
WatchpointCallbackFunction (void *baton,
|
|
|
|
|
StoppointCallbackContext *context,
|
|
|
|
|
lldb::user_id_t watch_id);
|
2015-03-17 20:04:04 +00:00
|
|
|
|
|
|
|
|
bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj, StructuredData::ObjectSP &callee_wrapper_sp,
|
|
|
|
|
const TypeSummaryOptions &options, std::string &retval) override;
|
|
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
void
|
|
|
|
|
Clear () override;
|
2014-04-25 23:55:12 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
|
|
|
|
GetDocumentationForItem (const char* item, std::string& dest) override;
|
2011-10-17 21:45:27 +00:00
|
|
|
|
2015-03-13 22:22:28 +00:00
|
|
|
bool
|
2015-03-17 20:04:04 +00:00
|
|
|
GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, std::string& dest) override;
|
2015-03-13 22:22:28 +00:00
|
|
|
|
2015-05-27 05:04:35 +00:00
|
|
|
uint32_t
|
|
|
|
|
GetFlagsForCommandObject (StructuredData::GenericSP cmd_obj_sp) override;
|
|
|
|
|
|
2015-03-13 22:22:28 +00:00
|
|
|
bool
|
2015-03-17 20:04:04 +00:00
|
|
|
GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, std::string& dest) override;
|
2015-03-13 22:22:28 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
|
|
|
|
CheckObjectExists (const char* name) override
|
2012-12-12 20:11:05 +00:00
|
|
|
{
|
|
|
|
|
if (!name || !name[0])
|
|
|
|
|
return false;
|
|
|
|
|
std::string temp;
|
|
|
|
|
return GetDocumentationForItem (name,temp);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
2013-06-20 23:40:21 +00:00
|
|
|
RunScriptFormatKeyword (const char* impl_function,
|
|
|
|
|
Process* process,
|
|
|
|
|
std::string& output,
|
2015-01-28 20:47:27 +00:00
|
|
|
Error& error) override;
|
2013-06-20 23:40:21 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
2013-06-20 23:40:21 +00:00
|
|
|
RunScriptFormatKeyword (const char* impl_function,
|
|
|
|
|
Thread* thread,
|
|
|
|
|
std::string& output,
|
2015-01-28 20:47:27 +00:00
|
|
|
Error& error) override;
|
2013-06-20 23:40:21 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
2013-06-20 23:40:21 +00:00
|
|
|
RunScriptFormatKeyword (const char* impl_function,
|
|
|
|
|
Target* target,
|
|
|
|
|
std::string& output,
|
2015-01-28 20:47:27 +00:00
|
|
|
Error& error) override;
|
2013-06-20 23:40:21 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
2013-06-20 23:40:21 +00:00
|
|
|
RunScriptFormatKeyword (const char* impl_function,
|
2013-11-04 09:33:30 +00:00
|
|
|
StackFrame* frame,
|
2013-06-20 23:40:21 +00:00
|
|
|
std::string& output,
|
2015-01-28 20:47:27 +00:00
|
|
|
Error& error) override;
|
2013-06-20 23:40:21 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
bool
|
2014-10-28 21:07:00 +00:00
|
|
|
RunScriptFormatKeyword (const char* impl_function,
|
|
|
|
|
ValueObject* value,
|
|
|
|
|
std::string& output,
|
2015-01-28 20:47:27 +00:00
|
|
|
Error& error) override;
|
2015-03-17 20:04:04 +00:00
|
|
|
|
|
|
|
|
bool LoadScriptingModule(const char *filename, bool can_reload, bool init_session, lldb_private::Error &error,
|
|
|
|
|
StructuredData::ObjectSP *module_sp = nullptr) override;
|
|
|
|
|
|
2015-02-26 01:37:26 +00:00
|
|
|
bool
|
|
|
|
|
IsReservedWord (const char* word) override;
|
2015-03-17 20:04:04 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
std::unique_ptr<ScriptInterpreterLocker>
|
|
|
|
|
AcquireInterpreterLock () override;
|
2013-03-27 22:38:11 +00:00
|
|
|
|
2010-06-08 16:52:24 +00:00
|
|
|
void
|
2014-08-29 17:34:17 +00:00
|
|
|
CollectDataForBreakpointCommandCallback (std::vector<BreakpointOptions *> &bp_options_vec,
|
2015-01-28 20:47:27 +00:00
|
|
|
CommandReturnObject &result) override;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2012-08-09 23:09:42 +00:00
|
|
|
void
|
|
|
|
|
CollectDataForWatchpointCommandCallback (WatchpointOptions *wp_options,
|
2015-01-28 20:47:27 +00:00
|
|
|
CommandReturnObject &result) override;
|
2012-08-09 23:09:42 +00:00
|
|
|
|
2014-04-02 01:04:55 +00:00
|
|
|
/// Set the callback body text into the callback for the breakpoint.
|
|
|
|
|
Error
|
2010-09-18 01:14:36 +00:00
|
|
|
SetBreakpointCommandCallback (BreakpointOptions *bp_options,
|
2015-01-28 20:47:27 +00:00
|
|
|
const char *callback_body) override;
|
2014-04-02 01:04:55 +00:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SetBreakpointCommandCallbackFunction (BreakpointOptions *bp_options,
|
2015-01-28 20:47:27 +00:00
|
|
|
const char *function_name) override;
|
Added the capability to specify a one-liner Python script as the callback
command for a breakpoint, for example:
(lldb) breakpoint command add -p 1 "conditional_break.stop_if_called_from_a()"
The ScriptInterpreter interface has an extra method:
/// Set a one-liner as the callback for the breakpoint command.
virtual void
SetBreakpointCommandCallback (CommandInterpreter &interpreter,
BreakpointOptions *bp_options,
const char *oneliner);
to accomplish the above.
Also added a test case to demonstrate lldb's use of breakpoint callback command
to stop at function c() only when its immediate caller is function a(). The
following session shows the user entering the following commands:
1) command source .lldb (set up executable, breakpoint, and breakpoint command)
2) run (the callback mechanism will skip two breakpoints where c()'s immeidate caller is not a())
3) bt (to see that indeed c()'s immediate caller is a())
4) c (to continue and finish the program)
test/conditional_break $ ../../build/Debug/lldb
(lldb) command source .lldb
Executing commands in '.lldb'.
(lldb) file a.out
Current executable set to 'a.out' (x86_64).
(lldb) breakpoint set -n c
Breakpoint created: 1: name = 'c', locations = 1
(lldb) script import sys, os
(lldb) script sys.path.append(os.path.join(os.getcwd(), os.pardir))
(lldb) script import conditional_break
(lldb) breakpoint command add -p 1 "conditional_break.stop_if_called_from_a()"
(lldb) run
run
Launching '/Volumes/data/lldb/svn/trunk/test/conditional_break/a.out' (x86_64)
(lldb) Checking call frames...
Stack trace for thread id=0x2e03 name=None queue=com.apple.main-thread:
frame #0: a.out`c at main.c:39
frame #1: a.out`b at main.c:34
frame #2: a.out`a at main.c:25
frame #3: a.out`main at main.c:44
frame #4: a.out`start
c called from b
Continuing...
Checking call frames...
Stack trace for thread id=0x2e03 name=None queue=com.apple.main-thread:
frame #0: a.out`c at main.c:39
frame #1: a.out`b at main.c:34
frame #2: a.out`main at main.c:47
frame #3: a.out`start
c called from b
Continuing...
Checking call frames...
Stack trace for thread id=0x2e03 name=None queue=com.apple.main-thread:
frame #0: a.out`c at main.c:39
frame #1: a.out`a at main.c:27
frame #2: a.out`main at main.c:50
frame #3: a.out`start
c called from a
Stopped at c() with immediate caller as a().
a(1) returns 4
b(2) returns 5
Process 20420 Stopped
* thread #1: tid = 0x2e03, 0x0000000100000de8 a.out`c + 7 at main.c:39, stop reason = breakpoint 1.1, queue = com.apple.main-thread
36
37 int c(int val)
38 {
39 -> return val + 3;
40 }
41
42 int main (int argc, char const *argv[])
(lldb) bt
bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: 0x0000000100000de8 a.out`c + 7 at main.c:39
frame #1: 0x0000000100000dbc a.out`a + 44 at main.c:27
frame #2: 0x0000000100000e4b a.out`main + 91 at main.c:50
frame #3: 0x0000000100000d88 a.out`start + 52
(lldb) c
c
Resuming process 20420
Process 20420 Exited
a(3) returns 6
(lldb)
llvm-svn: 113596
2010-09-10 18:21:10 +00:00
|
|
|
|
2012-08-09 23:09:42 +00:00
|
|
|
/// Set a one-liner as the callback for the watchpoint.
|
|
|
|
|
void
|
|
|
|
|
SetWatchpointCommandCallback (WatchpointOptions *wp_options,
|
2015-01-28 20:47:27 +00:00
|
|
|
const char *oneliner) override;
|
2012-08-09 23:09:42 +00:00
|
|
|
|
2010-06-08 16:52:24 +00:00
|
|
|
StringList
|
|
|
|
|
ReadCommandInputFromUser (FILE *in_file);
|
2015-04-08 17:22:09 +00:00
|
|
|
|
|
|
|
|
void ResetOutputFileHandle(FILE *new_fh) override;
|
|
|
|
|
|
2011-01-14 00:29:16 +00:00
|
|
|
static void
|
2011-03-22 01:14:58 +00:00
|
|
|
InitializePrivate ();
|
|
|
|
|
|
2011-01-14 00:29:16 +00:00
|
|
|
static void
|
2013-10-17 00:27:14 +00:00
|
|
|
InitializeInterpreter (SWIGInitCallback python_swig_init_callback,
|
|
|
|
|
SWIGBreakpointCallbackFunction swig_breakpoint_callback,
|
|
|
|
|
SWIGWatchpointCallbackFunction swig_watchpoint_callback,
|
|
|
|
|
SWIGPythonTypeScriptCallbackFunction swig_typescript_callback,
|
|
|
|
|
SWIGPythonCreateSyntheticProvider swig_synthetic_script,
|
2015-03-13 02:20:41 +00:00
|
|
|
SWIGPythonCreateCommandObject swig_create_cmd,
|
2013-10-17 00:27:14 +00:00
|
|
|
SWIGPythonCalculateNumChildren swig_calc_children,
|
|
|
|
|
SWIGPythonGetChildAtIndex swig_get_child_index,
|
|
|
|
|
SWIGPythonGetIndexOfChildWithName swig_get_index_child,
|
|
|
|
|
SWIGPythonCastPyObjectToSBValue swig_cast_to_sbvalue ,
|
|
|
|
|
SWIGPythonGetValueObjectSPFromSBValue swig_get_valobj_sp_from_sbvalue,
|
|
|
|
|
SWIGPythonUpdateSynthProviderInstance swig_update_provider,
|
|
|
|
|
SWIGPythonMightHaveChildrenSynthProviderInstance swig_mighthavechildren_provider,
|
Extend synthetic children to produce synthetic values (as in, those that GetValueAsUnsigned(), GetValueAsCString() would return)
The way to do this is to write a synthetic child provider for your type, and have it vend the (optional) get_value function.
If get_value is defined, and it returns a valid SBValue, that SBValue's value (as in lldb_private::Value) will be used as the synthetic ValueObject's Value
The rationale for doing things this way is twofold:
- there are many possible ways to define a "value" (SBData, a Python number, ...) but SBValue seems general enough as a thing that stores a "value", so we just trade values that way and that keeps our currency trivial
- we could introduce a new level of layering (ValueObjectSyntheticValue), a new kind of formatter (synthetic value producer), but that would complicate the model (can I have a dynamic with no synthetic children but synthetic value? synthetic value with synthetic children but no dynamic?), and I really couldn't see much benefit to be reaped from this added complexity in the matrix
On the other hand, just defining a synthetic child provider with a get_value but returning no actual children is easy enough that it's not a significant road-block to adoption of this feature
Comes with a test case
llvm-svn: 219330
2014-10-08 18:27:36 +00:00
|
|
|
SWIGPythonGetValueSynthProviderInstance swig_getvalue_provider,
|
2013-10-17 00:27:14 +00:00
|
|
|
SWIGPythonCallCommand swig_call_command,
|
2015-03-13 02:20:41 +00:00
|
|
|
SWIGPythonCallCommandObject swig_call_command_object,
|
2013-10-17 00:27:14 +00:00
|
|
|
SWIGPythonCallModuleInit swig_call_module_init,
|
|
|
|
|
SWIGPythonCreateOSPlugin swig_create_os_plugin,
|
|
|
|
|
SWIGPythonScriptKeyword_Process swig_run_script_keyword_process,
|
|
|
|
|
SWIGPythonScriptKeyword_Thread swig_run_script_keyword_thread,
|
|
|
|
|
SWIGPythonScriptKeyword_Target swig_run_script_keyword_target,
|
|
|
|
|
SWIGPythonScriptKeyword_Frame swig_run_script_keyword_frame,
|
2014-10-28 21:07:00 +00:00
|
|
|
SWIGPythonScriptKeyword_Value swig_run_script_keyword_value,
|
2014-09-29 23:17:18 +00:00
|
|
|
SWIGPython_GetDynamicSetting swig_plugin_get,
|
|
|
|
|
SWIGPythonCreateScriptedThreadPlan swig_thread_plan_script,
|
|
|
|
|
SWIGPythonCallThreadPlan swig_call_thread_plan);
|
2011-01-14 00:29:16 +00:00
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
const char *
|
|
|
|
|
GetDictionaryName ()
|
|
|
|
|
{
|
|
|
|
|
return m_dictionary_name.c_str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-05-02 00:45:31 +00:00
|
|
|
PyThreadState *
|
|
|
|
|
GetThreadState()
|
|
|
|
|
{
|
|
|
|
|
return m_command_thread_state;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SetThreadState (PyThreadState *s)
|
|
|
|
|
{
|
|
|
|
|
if (s)
|
|
|
|
|
m_command_thread_state = s;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
// IOHandlerDelegate
|
|
|
|
|
//----------------------------------------------------------------------
|
2015-01-28 20:47:27 +00:00
|
|
|
void
|
|
|
|
|
IOHandlerActivated (IOHandler &io_handler) override;
|
2014-01-27 23:43:24 +00:00
|
|
|
|
2015-01-28 20:47:27 +00:00
|
|
|
void
|
|
|
|
|
IOHandlerInputComplete (IOHandler &io_handler, std::string &data) override;
|
2014-01-27 23:43:24 +00:00
|
|
|
|
2015-07-30 20:28:07 +00:00
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
// Static Functions
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
static void
|
|
|
|
|
Initialize();
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
Terminate();
|
|
|
|
|
|
|
|
|
|
static lldb::ScriptInterpreterSP
|
|
|
|
|
CreateInstance(CommandInterpreter &interpreter);
|
|
|
|
|
|
|
|
|
|
static lldb_private::ConstString
|
|
|
|
|
GetPluginNameStatic();
|
|
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
|
GetPluginDescriptionStatic();
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
// PluginInterface protocol
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
virtual lldb_private::ConstString
|
2015-08-11 21:38:15 +00:00
|
|
|
GetPluginName() override;
|
2015-07-30 20:28:07 +00:00
|
|
|
|
|
|
|
|
virtual uint32_t
|
2015-08-11 21:38:15 +00:00
|
|
|
GetPluginVersion() override;
|
2015-07-30 20:28:07 +00:00
|
|
|
|
2011-01-14 00:29:16 +00:00
|
|
|
protected:
|
|
|
|
|
|
<rdar://problem/13010007>
Added the ability for OS plug-ins to lazily populate the thread this. The python OS plug-in classes can now implement the following method:
class OperatingSystemPlugin:
def create_thread(self, tid, context):
# Return a dictionary for a new thread to create it on demand
This will add a new thread to the thread list if it doesn't already exist. The example code in lldb/examples/python/operating_system.py has been updated to show how this call us used.
Cleaned up the code in PythonDataObjects.cpp/h:
- renamed all classes that started with PythonData* to be Python*.
- renamed PythonArray to PythonList. Cleaned up the code to use inheritance where
- Centralized the code that does ref counting in the PythonObject class to a single function.
- Made the "bool PythonObject::Reset(PyObject *)" function be virtual so each subclass can correctly check to ensure a PyObject is of the right type before adopting the object.
- Cleaned up all APIs and added new constructors for the Python* classes to they can all construct form:
- PyObject *
- const PythonObject &
- const lldb::ScriptInterpreterObjectSP &
Cleaned up code in ScriptInterpreterPython:
- Made calling python functions safer by templatizing the production of value formats. Python specifies the value formats based on built in C types (long, long long, etc), and code often uses typedefs for uint32_t, uint64_t, etc when passing arguments down to python. We will now always produce correct value formats as the templatized code will "do the right thing" all the time.
- Fixed issues with the ScriptInterpreterPython::Locker where entering the session and leaving the session had a bunch of issues that could cause the "lldb" module globals lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame to not be initialized.
llvm-svn: 172873
2013-01-18 23:41:08 +00:00
|
|
|
bool
|
2014-02-13 23:34:38 +00:00
|
|
|
EnterSession (uint16_t on_entry_flags,
|
2014-01-27 23:43:24 +00:00
|
|
|
FILE *in,
|
|
|
|
|
FILE *out,
|
|
|
|
|
FILE *err);
|
2011-01-14 00:29:16 +00:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
LeaveSession ();
|
|
|
|
|
|
2011-02-07 23:24:47 +00:00
|
|
|
void
|
|
|
|
|
SaveTerminalState (int fd);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
RestoreTerminalState ();
|
Redesign of the interaction between Python and frozen objects:
- introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
in frozen objects ; now such reads transparently move from host to target as required
- as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
removed code that enabled to recognize an expression result VO as such
- introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
representing a T* or T[], and doing dereferences transparently
in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
- as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
en lieu of doing the raw read itself
- introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
in public layer this returns an SBData, just like GetPointeeData()
- introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
- added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
Solved a bug where global pointers to global variables were not dereferenced correctly for display
New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
addresses that generate file address children UNLESS we have a live process)
Updated help text for summary-string
Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
Edited the syntax and help for some commands to have proper argument types
llvm-svn: 139160
2011-09-06 19:20:51 +00:00
|
|
|
|
2011-11-07 22:57:04 +00:00
|
|
|
class SynchronicityHandler
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
lldb::DebuggerSP m_debugger_sp;
|
|
|
|
|
ScriptedCommandSynchronicity m_synch_wanted;
|
|
|
|
|
bool m_old_asynch;
|
|
|
|
|
public:
|
|
|
|
|
SynchronicityHandler(lldb::DebuggerSP,
|
|
|
|
|
ScriptedCommandSynchronicity);
|
|
|
|
|
~SynchronicityHandler();
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
public:
|
2013-03-27 22:38:11 +00:00
|
|
|
class Locker : public ScriptInterpreterLocker
|
Redesign of the interaction between Python and frozen objects:
- introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
in frozen objects ; now such reads transparently move from host to target as required
- as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
removed code that enabled to recognize an expression result VO as such
- introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
representing a T* or T[], and doing dereferences transparently
in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
- as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
en lieu of doing the raw read itself
- introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
in public layer this returns an SBData, just like GetPointeeData()
- introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
- added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
Solved a bug where global pointers to global variables were not dereferenced correctly for display
New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
addresses that generate file address children UNLESS we have a live process)
Updated help text for summary-string
Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
Edited the syntax and help for some commands to have proper argument types
llvm-svn: 139160
2011-09-06 19:20:51 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2011-10-24 17:22:21 +00:00
|
|
|
|
|
|
|
|
enum OnEntry
|
|
|
|
|
{
|
|
|
|
|
AcquireLock = 0x0001,
|
2012-12-07 17:43:38 +00:00
|
|
|
InitSession = 0x0002,
|
2014-02-13 23:34:38 +00:00
|
|
|
InitGlobals = 0x0004,
|
|
|
|
|
NoSTDIN = 0x0008
|
2011-10-24 17:22:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum OnLeave
|
|
|
|
|
{
|
|
|
|
|
FreeLock = 0x0001,
|
|
|
|
|
FreeAcquiredLock = 0x0002, // do not free the lock if we already held it when calling constructor
|
|
|
|
|
TearDownSession = 0x0004
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Locker (ScriptInterpreterPython *py_interpreter = NULL,
|
|
|
|
|
uint16_t on_entry = AcquireLock | InitSession,
|
|
|
|
|
uint16_t on_leave = FreeLock | TearDownSession,
|
2014-01-27 23:43:24 +00:00
|
|
|
FILE *in = NULL,
|
|
|
|
|
FILE *out = NULL,
|
|
|
|
|
FILE *err = NULL);
|
2011-10-24 17:22:21 +00:00
|
|
|
|
2015-08-18 08:39:09 +00:00
|
|
|
~Locker () override;
|
2012-08-18 04:14:54 +00:00
|
|
|
|
Redesign of the interaction between Python and frozen objects:
- introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
in frozen objects ; now such reads transparently move from host to target as required
- as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
removed code that enabled to recognize an expression result VO as such
- introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
representing a T* or T[], and doing dereferences transparently
in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
- as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
en lieu of doing the raw read itself
- introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
in public layer this returns an SBData, just like GetPointeeData()
- introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
- added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
Solved a bug where global pointers to global variables were not dereferenced correctly for display
New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
addresses that generate file address children UNLESS we have a live process)
Updated help text for summary-string
Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
Edited the syntax and help for some commands to have proper argument types
llvm-svn: 139160
2011-09-06 19:20:51 +00:00
|
|
|
private:
|
2011-10-24 17:22:21 +00:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
DoAcquireLock ();
|
|
|
|
|
|
|
|
|
|
bool
|
2014-02-13 23:34:38 +00:00
|
|
|
DoInitSession (uint16_t on_entry_flags, FILE *in, FILE *out, FILE *err);
|
2011-10-24 17:22:21 +00:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
DoFreeLock ();
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
DoTearDownSession ();
|
2012-08-18 04:14:54 +00:00
|
|
|
|
2011-10-24 17:22:21 +00:00
|
|
|
static void
|
|
|
|
|
ReleasePythonLock ();
|
|
|
|
|
|
<rdar://problem/13010007>
Added the ability for OS plug-ins to lazily populate the thread this. The python OS plug-in classes can now implement the following method:
class OperatingSystemPlugin:
def create_thread(self, tid, context):
# Return a dictionary for a new thread to create it on demand
This will add a new thread to the thread list if it doesn't already exist. The example code in lldb/examples/python/operating_system.py has been updated to show how this call us used.
Cleaned up the code in PythonDataObjects.cpp/h:
- renamed all classes that started with PythonData* to be Python*.
- renamed PythonArray to PythonList. Cleaned up the code to use inheritance where
- Centralized the code that does ref counting in the PythonObject class to a single function.
- Made the "bool PythonObject::Reset(PyObject *)" function be virtual so each subclass can correctly check to ensure a PyObject is of the right type before adopting the object.
- Cleaned up all APIs and added new constructors for the Python* classes to they can all construct form:
- PyObject *
- const PythonObject &
- const lldb::ScriptInterpreterObjectSP &
Cleaned up code in ScriptInterpreterPython:
- Made calling python functions safer by templatizing the production of value formats. Python specifies the value formats based on built in C types (long, long long, etc), and code often uses typedefs for uint32_t, uint64_t, etc when passing arguments down to python. We will now always produce correct value formats as the templatized code will "do the right thing" all the time.
- Fixed issues with the ScriptInterpreterPython::Locker where entering the session and leaving the session had a bunch of issues that could cause the "lldb" module globals lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame to not be initialized.
llvm-svn: 172873
2013-01-18 23:41:08 +00:00
|
|
|
bool m_teardown_session;
|
Redesign of the interaction between Python and frozen objects:
- introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
in frozen objects ; now such reads transparently move from host to target as required
- as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
removed code that enabled to recognize an expression result VO as such
- introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
representing a T* or T[], and doing dereferences transparently
in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
- as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
en lieu of doing the raw read itself
- introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
in public layer this returns an SBData, just like GetPointeeData()
- introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
- added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
Solved a bug where global pointers to global variables were not dereferenced correctly for display
New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
addresses that generate file address children UNLESS we have a live process)
Updated help text for summary-string
Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
Edited the syntax and help for some commands to have proper argument types
llvm-svn: 139160
2011-09-06 19:20:51 +00:00
|
|
|
ScriptInterpreterPython *m_python_interpreter;
|
2014-01-27 23:43:24 +00:00
|
|
|
// FILE* m_tmp_fh;
|
2012-08-18 04:14:54 +00:00
|
|
|
PyGILState_STATE m_GILState;
|
Redesign of the interaction between Python and frozen objects:
- introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
in frozen objects ; now such reads transparently move from host to target as required
- as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
removed code that enabled to recognize an expression result VO as such
- introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
representing a T* or T[], and doing dereferences transparently
in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
- as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
en lieu of doing the raw read itself
- introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
in public layer this returns an SBData, just like GetPointeeData()
- introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
- added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
Solved a bug where global pointers to global variables were not dereferenced correctly for display
New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
addresses that generate file address children UNLESS we have a live process)
Updated help text for summary-string
Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
Edited the syntax and help for some commands to have proper argument types
llvm-svn: 139160
2011-09-06 19:20:51 +00:00
|
|
|
};
|
2014-05-02 00:45:31 +00:00
|
|
|
protected:
|
2015-04-09 18:08:50 +00:00
|
|
|
enum class AddLocation
|
|
|
|
|
{
|
|
|
|
|
Beginning,
|
|
|
|
|
End
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void AddToSysPath(AddLocation location, std::string path);
|
2014-01-27 23:43:24 +00:00
|
|
|
|
2015-01-27 01:58:22 +00:00
|
|
|
uint32_t
|
|
|
|
|
IsExecutingPython () const
|
|
|
|
|
{
|
|
|
|
|
return m_lock_count > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
|
IncrementLockCount()
|
|
|
|
|
{
|
|
|
|
|
return ++m_lock_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
|
DecrementLockCount()
|
|
|
|
|
{
|
|
|
|
|
if (m_lock_count > 0)
|
|
|
|
|
--m_lock_count;
|
|
|
|
|
return m_lock_count;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
enum ActiveIOHandler {
|
|
|
|
|
eIOHandlerNone,
|
|
|
|
|
eIOHandlerBreakpoint,
|
|
|
|
|
eIOHandlerWatchpoint
|
2012-06-07 00:17:18 +00:00
|
|
|
};
|
2014-01-27 23:43:24 +00:00
|
|
|
PythonObject &
|
|
|
|
|
GetMainModule ();
|
|
|
|
|
|
|
|
|
|
PythonDictionary &
|
|
|
|
|
GetSessionDictionary ();
|
|
|
|
|
|
|
|
|
|
PythonDictionary &
|
|
|
|
|
GetSysModuleDictionary ();
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2014-01-27 23:43:24 +00:00
|
|
|
bool
|
|
|
|
|
GetEmbeddedInterpreterModuleObjects ();
|
|
|
|
|
|
|
|
|
|
PythonObject m_saved_stdin;
|
|
|
|
|
PythonObject m_saved_stdout;
|
|
|
|
|
PythonObject m_saved_stderr;
|
|
|
|
|
PythonObject m_main_module;
|
|
|
|
|
PythonObject m_lldb_module;
|
|
|
|
|
PythonDictionary m_session_dict;
|
|
|
|
|
PythonDictionary m_sys_module_dict;
|
|
|
|
|
PythonObject m_run_one_line_function;
|
|
|
|
|
PythonObject m_run_one_line_str_global;
|
2011-01-14 00:29:16 +00:00
|
|
|
std::string m_dictionary_name;
|
2011-02-07 23:24:47 +00:00
|
|
|
TerminalState m_terminal_state;
|
2014-01-27 23:43:24 +00:00
|
|
|
ActiveIOHandler m_active_io_handler;
|
2011-01-14 00:29:16 +00:00
|
|
|
bool m_session_is_active;
|
|
|
|
|
bool m_pty_slave_is_open;
|
|
|
|
|
bool m_valid_session;
|
2015-01-27 01:58:22 +00:00
|
|
|
uint32_t m_lock_count;
|
2012-12-19 23:42:07 +00:00
|
|
|
PyThreadState *m_command_thread_state;
|
2010-06-08 16:52:24 +00:00
|
|
|
};
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
|
2015-08-18 08:39:09 +00:00
|
|
|
#endif // LLDB_DISABLE_PYTHON
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2015-08-18 08:39:09 +00:00
|
|
|
#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHON_H
|