https://github.com/medismailben updated https://github.com/llvm/llvm-project/pull/97273
>From faa1aec645e26145467b94260df7ca3abc012f62 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani <ism...@bennani.ma> Date: Wed, 17 Jul 2024 02:21:21 -0700 Subject: [PATCH] [lldb/Commands] Add `scripting template list` command with auto discovery This patch introduces a new `template` multiword sub-command to the `scripting` top-level command. As the name suggests, this sub-command operates on scripting templates, and currently has the ability to automatically discover the various scripting extensions that lldb supports. Signed-off-by: Med Ismail Bennani <ism...@bennani.ma> --- lldb/include/lldb/Core/PluginManager.h | 20 +++ .../Interfaces/ScriptedInterface.h | 7 + .../Interfaces/ScriptedInterfaceUsages.h | 43 ++++++ lldb/include/lldb/lldb-private-interfaces.h | 3 + .../Commands/CommandObjectScripting.cpp | 127 +++++++++++++++++- lldb/source/Commands/Options.td | 6 + lldb/source/Core/PluginManager.cpp | 65 +++++++++ lldb/source/Interpreter/CMakeLists.txt | 4 + .../Interpreter/Interfaces/CMakeLists.txt | 10 ++ .../Interfaces/ScriptedInterfaceUsages.cpp | 37 +++++ lldb/source/Plugins/CMakeLists.txt | 3 + .../Python/Interfaces/CMakeLists.txt | 6 + .../OperatingSystemPythonInterface.cpp | 17 +++ .../OperatingSystemPythonInterface.h | 13 +- .../ScriptedProcessPythonInterface.cpp | 23 ++++ .../ScriptedProcessPythonInterface.h | 13 +- .../ScriptedThreadPlanPythonInterface.cpp | 18 +++ .../ScriptedThreadPlanPythonInterface.h | 13 +- 18 files changed, 423 insertions(+), 5 deletions(-) create mode 100644 lldb/include/lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h create mode 100644 lldb/source/Interpreter/Interfaces/CMakeLists.txt create mode 100644 lldb/source/Interpreter/Interfaces/ScriptedInterfaceUsages.cpp diff --git a/lldb/include/lldb/Core/PluginManager.h b/lldb/include/lldb/Core/PluginManager.h index f2296e2920238..8c1b93f1653d3 100644 --- a/lldb/include/lldb/Core/PluginManager.h +++ b/lldb/include/lldb/Core/PluginManager.h @@ -10,6 +10,7 @@ #define LLDB_CORE_PLUGINMANAGER_H #include "lldb/Core/Architecture.h" +#include "lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h" #include "lldb/Symbol/TypeSystem.h" #include "lldb/Utility/CompletionRequest.h" #include "lldb/Utility/FileSpec.h" @@ -487,6 +488,25 @@ class PluginManager { static LanguageSet GetAllTypeSystemSupportedLanguagesForExpressions(); + // Scripted Interface + static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, + ScriptedInterfaceCreateInstance create_callback, + lldb::ScriptLanguage language, + ScriptedInterfaceUsages usages); + + static bool UnregisterPlugin(ScriptedInterfaceCreateInstance create_callback); + + static uint32_t GetNumScriptedInterfaces(); + + static llvm::StringRef GetScriptedInterfaceNameAtIndex(uint32_t idx); + + static llvm::StringRef GetScriptedInterfaceDescriptionAtIndex(uint32_t idx); + + static lldb::ScriptLanguage GetScriptedInterfaceLanguageAtIndex(uint32_t idx); + + static ScriptedInterfaceUsages + GetScriptedInterfaceUsagesAtIndex(uint32_t idx); + // REPL static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, REPLCreateInstance create_callback, diff --git a/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h b/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h index 69504dbcda5dc..3ce47d0584a8a 100644 --- a/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h +++ b/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h @@ -9,6 +9,8 @@ #ifndef LLDB_INTERPRETER_INTERFACES_SCRIPTEDINTERFACE_H #define LLDB_INTERPRETER_INTERFACES_SCRIPTEDINTERFACE_H +#include "ScriptedInterfaceUsages.h" + #include "lldb/Core/StructuredDataImpl.h" #include "lldb/Utility/LLDBLog.h" #include "lldb/Utility/Log.h" @@ -68,6 +70,11 @@ class ScriptedInterface { return true; } + static bool CreateInstance(lldb::ScriptLanguage language, + ScriptedInterfaceUsages usages) { + return false; + } + protected: StructuredData::GenericSP m_object_instance_sp; }; diff --git a/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h b/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h new file mode 100644 index 0000000000000..36c0cfdca546e --- /dev/null +++ b/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h @@ -0,0 +1,43 @@ +//===-- ScriptedInterfaceUsages.h ---------------------------- -*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_INTERPRETER_SCRIPTEDINTERFACEUSAGES_H +#define LLDB_INTERPRETER_SCRIPTEDINTERFACEUSAGES_H + +#include "lldb/lldb-types.h" + +#include "lldb/Utility/Stream.h" +#include "llvm/ADT/StringRef.h" + +namespace lldb_private { +class ScriptedInterfaceUsages { +public: + ScriptedInterfaceUsages() = default; + ScriptedInterfaceUsages(const std::vector<llvm::StringRef> ci_usages, + const std::vector<llvm::StringRef> sbapi_usages) + : m_command_interpreter_usages(ci_usages), m_sbapi_usages(sbapi_usages) {} + + const std::vector<llvm::StringRef> &GetCommandInterpreterUsages() const { + return m_command_interpreter_usages; + } + + const std::vector<llvm::StringRef> &GetSBAPIUsages() const { + return m_sbapi_usages; + } + + enum class UsageKind { CommandInterpreter, API }; + + void Dump(Stream &s, UsageKind kind) const; + +private: + std::vector<llvm::StringRef> m_command_interpreter_usages; + std::vector<llvm::StringRef> m_sbapi_usages; +}; +} // namespace lldb_private + +#endif // LLDB_INTERPRETER_SCRIPTEDINTERFACEUSAGES_H diff --git a/lldb/include/lldb/lldb-private-interfaces.h b/lldb/include/lldb/lldb-private-interfaces.h index cdd9b51d9329c..0e552f45efb66 100644 --- a/lldb/include/lldb/lldb-private-interfaces.h +++ b/lldb/include/lldb/lldb-private-interfaces.h @@ -24,6 +24,7 @@ class Value; } // namespace llvm namespace lldb_private { +class ScriptedInterfaceUsages; typedef lldb::ABISP (*ABICreateInstance)(lldb::ProcessSP process_sp, const ArchSpec &arch); typedef std::unique_ptr<Architecture> (*ArchitectureCreateInstance)( @@ -124,6 +125,8 @@ typedef lldb::REPLSP (*REPLCreateInstance)(Status &error, lldb::LanguageType language, Debugger *debugger, Target *target, const char *repl_options); +typedef bool (*ScriptedInterfaceCreateInstance)(lldb::ScriptLanguage language, + ScriptedInterfaceUsages usages); typedef int (*ComparisonFunction)(const void *, const void *); typedef void (*DebuggerInitializeCallback)(Debugger &debugger); /// Trace diff --git a/lldb/source/Commands/CommandObjectScripting.cpp b/lldb/source/Commands/CommandObjectScripting.cpp index fee0565a7c48a..9e45919afd884 100644 --- a/lldb/source/Commands/CommandObjectScripting.cpp +++ b/lldb/source/Commands/CommandObjectScripting.cpp @@ -8,12 +8,14 @@ #include "CommandObjectScripting.h" #include "lldb/Core/Debugger.h" +#include "lldb/Core/PluginManager.h" #include "lldb/DataFormatters/DataVisualization.h" #include "lldb/Host/Config.h" #include "lldb/Host/OptionParser.h" #include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandOptionArgumentTable.h" #include "lldb/Interpreter/CommandReturnObject.h" +#include "lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h" #include "lldb/Interpreter/OptionArgParser.h" #include "lldb/Interpreter/ScriptInterpreter.h" #include "lldb/Utility/Args.h" @@ -127,9 +129,127 @@ class CommandObjectScriptingRun : public CommandObjectRaw { CommandOptions m_options; }; -#pragma mark CommandObjectMultiwordScripting +#define LLDB_OPTIONS_scripting_template_list +#include "CommandOptions.inc" + +class CommandObjectScriptingTemplateList : public CommandObjectParsed { +public: + CommandObjectScriptingTemplateList(CommandInterpreter &interpreter) + : CommandObjectParsed( + interpreter, "scripting template list", + "List all the available scripting extension templates. ", + "scripting template list [--language <scripting-language> --]") {} + + ~CommandObjectScriptingTemplateList() override = default; + + Options *GetOptions() override { return &m_options; } + + class CommandOptions : public Options { + public: + CommandOptions() = default; + ~CommandOptions() override = default; + Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, + ExecutionContext *execution_context) override { + Status error; + const int short_option = m_getopt_table[option_idx].val; -// CommandObjectMultiwordScripting + switch (short_option) { + case 'l': + m_language = (lldb::ScriptLanguage)OptionArgParser::ToOptionEnum( + option_arg, GetDefinitions()[option_idx].enum_values, + eScriptLanguageNone, error); + if (!error.Success()) + error.SetErrorStringWithFormat("unrecognized value for language '%s'", + option_arg.str().c_str()); + break; + default: + llvm_unreachable("Unimplemented option"); + } + + return error; + } + + void OptionParsingStarting(ExecutionContext *execution_context) override { + m_language = lldb::eScriptLanguageDefault; + } + + llvm::ArrayRef<OptionDefinition> GetDefinitions() override { + return llvm::ArrayRef(g_scripting_template_list_options); + } + + lldb::ScriptLanguage m_language = lldb::eScriptLanguageDefault; + }; + +protected: + void DoExecute(Args &command, CommandReturnObject &result) override { + Stream &s = result.GetOutputStream(); + s.Printf("Available scripted extension templates:"); + + auto print_field = [&s](llvm::StringRef key, llvm::StringRef value, + bool check_validity = false) { + if (!check_validity || !value.empty()) { + s.IndentMore(); + s.Indent(); + s << key << ": " << value << '\n'; + s.IndentLess(); + } + }; + + size_t num_listed_interface = 0; + size_t num_templates = PluginManager::GetNumScriptedInterfaces(); + for (size_t i = 0; i < num_templates; i++) { + llvm::StringRef plugin_name = + PluginManager::GetScriptedInterfaceNameAtIndex(i); + if (plugin_name.empty()) + break; + + lldb::ScriptLanguage lang = + PluginManager::GetScriptedInterfaceLanguageAtIndex(i); + if (lang != m_options.m_language) + continue; + + if (!num_listed_interface) + s.EOL(); + + num_listed_interface++; + + llvm::StringRef desc = + PluginManager::GetScriptedInterfaceDescriptionAtIndex(i); + ScriptedInterfaceUsages usages = + PluginManager::GetScriptedInterfaceUsagesAtIndex(i); + + print_field("Name", plugin_name); + print_field("Language", ScriptInterpreter::LanguageToString(lang)); + print_field("Description", desc); + usages.Dump(s, ScriptedInterfaceUsages::UsageKind::API); + usages.Dump(s, ScriptedInterfaceUsages::UsageKind::CommandInterpreter); + + if (i != num_templates - 1) + s.EOL(); + } + + if (!num_listed_interface) + s << " None\n"; + } + +private: + CommandOptions m_options; +}; + +class CommandObjectMultiwordScriptingTemplate : public CommandObjectMultiword { +public: + CommandObjectMultiwordScriptingTemplate(CommandInterpreter &interpreter) + : CommandObjectMultiword( + interpreter, "scripting template", + "Commands for operating on the scripting templates.", + "scripting template [<subcommand-options>]") { + LoadSubCommand( + "list", + CommandObjectSP(new CommandObjectScriptingTemplateList(interpreter))); + } + + ~CommandObjectMultiwordScriptingTemplate() override = default; +}; CommandObjectMultiwordScripting::CommandObjectMultiwordScripting( CommandInterpreter &interpreter) @@ -139,6 +259,9 @@ CommandObjectMultiwordScripting::CommandObjectMultiwordScripting( "scripting <subcommand> [<subcommand-options>]") { LoadSubCommand("run", CommandObjectSP(new CommandObjectScriptingRun(interpreter))); + LoadSubCommand("template", + CommandObjectSP( + new CommandObjectMultiwordScriptingTemplate(interpreter))); } CommandObjectMultiwordScripting::~CommandObjectMultiwordScripting() = default; diff --git a/lldb/source/Commands/Options.td b/lldb/source/Commands/Options.td index 24e97f3bb97d3..6e5ed21b22ad8 100644 --- a/lldb/source/Commands/Options.td +++ b/lldb/source/Commands/Options.td @@ -841,6 +841,12 @@ let Command = "scripting run" in { " language. If none is specific the default scripting language is used.">; } +let Command = "scripting template list" in { + def scripting_template_list_language : Option<"language", "l">, + EnumArg<"ScriptLang">, Desc<"Specify the scripting " + " language. If none is specified the default scripting language is used.">; +} + let Command = "source info" in { def source_info_count : Option<"count", "c">, Arg<"Count">, Desc<"The number of line entries to display.">; diff --git a/lldb/source/Core/PluginManager.cpp b/lldb/source/Core/PluginManager.cpp index b428370d7f333..a93756ee76af1 100644 --- a/lldb/source/Core/PluginManager.cpp +++ b/lldb/source/Core/PluginManager.cpp @@ -1479,6 +1479,70 @@ LanguageSet PluginManager::GetAllTypeSystemSupportedLanguagesForExpressions() { return all; } +#pragma mark ScriptedInterfaces + +struct ScriptedInterfaceInstance + : public PluginInstance<ScriptedInterfaceCreateInstance> { + ScriptedInterfaceInstance(llvm::StringRef name, llvm::StringRef description, + ScriptedInterfaceCreateInstance create_callback, + lldb::ScriptLanguage language, + ScriptedInterfaceUsages usages) + : PluginInstance<ScriptedInterfaceCreateInstance>(name, description, + create_callback), + language(language), usages(usages) {} + + lldb::ScriptLanguage language; + ScriptedInterfaceUsages usages; +}; + +typedef PluginInstances<ScriptedInterfaceInstance> ScriptedInterfaceInstances; + +static ScriptedInterfaceInstances &GetScriptedInterfaceInstances() { + static ScriptedInterfaceInstances g_instances; + return g_instances; +} + +bool PluginManager::RegisterPlugin( + llvm::StringRef name, llvm::StringRef description, + ScriptedInterfaceCreateInstance create_callback, + lldb::ScriptLanguage language, ScriptedInterfaceUsages usages) { + return GetScriptedInterfaceInstances().RegisterPlugin( + name, description, create_callback, language, usages); +} + +bool PluginManager::UnregisterPlugin( + ScriptedInterfaceCreateInstance create_callback) { + return GetScriptedInterfaceInstances().UnregisterPlugin(create_callback); +} + +uint32_t PluginManager::GetNumScriptedInterfaces() { + return GetScriptedInterfaceInstances().GetInstances().size(); +} + +llvm::StringRef PluginManager::GetScriptedInterfaceNameAtIndex(uint32_t index) { + return GetScriptedInterfaceInstances().GetNameAtIndex(index); +} + +llvm::StringRef +PluginManager::GetScriptedInterfaceDescriptionAtIndex(uint32_t index) { + return GetScriptedInterfaceInstances().GetDescriptionAtIndex(index); +} + +lldb::ScriptLanguage +PluginManager::GetScriptedInterfaceLanguageAtIndex(uint32_t idx) { + const auto &instances = GetScriptedInterfaceInstances().GetInstances(); + return idx < instances.size() ? instances[idx].language + : ScriptLanguage::eScriptLanguageNone; +} + +ScriptedInterfaceUsages +PluginManager::GetScriptedInterfaceUsagesAtIndex(uint32_t idx) { + const auto &instances = GetScriptedInterfaceInstances().GetInstances(); + if (idx >= instances.size()) + return {}; + return instances[idx].usages; +} + #pragma mark REPL struct REPLInstance : public PluginInstance<REPLCreateInstance> { @@ -1539,6 +1603,7 @@ void PluginManager::DebuggerInitialize(Debugger &debugger) { GetOperatingSystemInstances().PerformDebuggerCallback(debugger); GetStructuredDataPluginInstances().PerformDebuggerCallback(debugger); GetTracePluginInstances().PerformDebuggerCallback(debugger); + GetScriptedInterfaceInstances().PerformDebuggerCallback(debugger); } // This is the preferred new way to register plugin specific settings. e.g. diff --git a/lldb/source/Interpreter/CMakeLists.txt b/lldb/source/Interpreter/CMakeLists.txt index ae79b82d7c3e2..642263a8bda7f 100644 --- a/lldb/source/Interpreter/CMakeLists.txt +++ b/lldb/source/Interpreter/CMakeLists.txt @@ -6,6 +6,8 @@ lldb_tablegen(InterpreterPropertiesEnum.inc -gen-lldb-property-enum-defs SOURCE InterpreterProperties.td TARGET LLDBInterpreterPropertiesEnumGen) +add_subdirectory(Interfaces) + add_lldb_library(lldbInterpreter NO_PLUGIN_DEPENDENCIES CommandAlias.cpp CommandHistory.cpp @@ -54,6 +56,7 @@ add_lldb_library(lldbInterpreter NO_PLUGIN_DEPENDENCIES ScriptInterpreter.cpp LINK_LIBS + lldbInterpreterInterfaces lldbCommands lldbCore lldbDataFormatters @@ -66,6 +69,7 @@ add_lldb_library(lldbInterpreter NO_PLUGIN_DEPENDENCIES ) add_dependencies(lldbInterpreter + lldbInterpreterInterfaces LLDBInterpreterPropertiesGen LLDBInterpreterPropertiesEnumGen) diff --git a/lldb/source/Interpreter/Interfaces/CMakeLists.txt b/lldb/source/Interpreter/Interfaces/CMakeLists.txt new file mode 100644 index 0000000000000..f44672aa50b75 --- /dev/null +++ b/lldb/source/Interpreter/Interfaces/CMakeLists.txt @@ -0,0 +1,10 @@ +add_lldb_library(lldbInterpreterInterfaces NO_PLUGIN_DEPENDENCIES + ScriptedInterfaceUsages.cpp + + LINK_LIBS + lldbUtility + + LINK_COMPONENTS + Support + ) + diff --git a/lldb/source/Interpreter/Interfaces/ScriptedInterfaceUsages.cpp b/lldb/source/Interpreter/Interfaces/ScriptedInterfaceUsages.cpp new file mode 100644 index 0000000000000..05d7a5d852f8c --- /dev/null +++ b/lldb/source/Interpreter/Interfaces/ScriptedInterfaceUsages.cpp @@ -0,0 +1,37 @@ +//===-- ScriptedInterfaceUsages.cpp --------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h" + +using namespace lldb; +using namespace lldb_private; + +void ScriptedInterfaceUsages::Dump(Stream &s, UsageKind kind) const { + s.IndentMore(); + s.Indent(); + llvm::StringRef usage_kind = + (kind == UsageKind::CommandInterpreter) ? "Command Interpreter" : "API"; + s << usage_kind << " Usages:"; + const std::vector<llvm::StringRef> &usages = + (kind == UsageKind::CommandInterpreter) ? GetCommandInterpreterUsages() + : GetSBAPIUsages(); + if (usages.empty()) + s << " None\n"; + else if (usages.size() == 1) + s << " " << usages.front() << '\n'; + else { + s << '\n'; + for (llvm::StringRef usage : usages) { + s.IndentMore(); + s.Indent(); + s << usage << '\n'; + s.IndentLess(); + } + } + s.IndentLess(); +} diff --git a/lldb/source/Plugins/CMakeLists.txt b/lldb/source/Plugins/CMakeLists.txt index 854f589f45ae0..34dd8c1eb22f6 100644 --- a/lldb/source/Plugins/CMakeLists.txt +++ b/lldb/source/Plugins/CMakeLists.txt @@ -29,6 +29,9 @@ add_subdirectory(UnwindAssembly) set(LLDB_STRIPPED_PLUGINS) get_property(LLDB_ALL_PLUGINS GLOBAL PROPERTY LLDB_PLUGINS) +get_property(LLDB_EXTRA_PLUGINS GLOBAL PROPERTY LLDB_EXTRA_SCRIPT_PLUGINS) +list(APPEND LLDB_ALL_PLUGINS ${LLDB_EXTRA_PLUGINS}) + set(LLDB_ENUM_PLUGINS "") diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/CMakeLists.txt b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/CMakeLists.txt index c60e4bb503a37..9c4db7f3adb86 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/CMakeLists.txt +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/CMakeLists.txt @@ -19,6 +19,12 @@ if (LLDB_ENABLE_LIBEDIT) list(APPEND LLDB_LIBEDIT_LIBS LibEdit::LibEdit) endif() +set_property(GLOBAL PROPERTY LLDB_EXTRA_SCRIPT_PLUGINS + lldbPluginOperatingSystemPythonInterface + lldbPluginScriptedProcessPythonInterface + lldbPluginScriptedThreadPlanPythonInterface +) + add_lldb_library(lldbPluginScriptInterpreterPythonInterfaces OperatingSystemPythonInterface.cpp ScriptedPythonInterface.cpp diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.cpp index c162c7367c654..12af7f644b068 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.cpp @@ -19,12 +19,15 @@ #include "../SWIGPythonBridge.h" #include "../ScriptInterpreterPythonImpl.h" #include "OperatingSystemPythonInterface.h" +#include "lldb/Core/PluginManager.h" using namespace lldb; using namespace lldb_private; using namespace lldb_private::python; using Locker = ScriptInterpreterPythonImpl::Locker; +LLDB_PLUGIN_DEFINE(OperatingSystemPythonInterface) + OperatingSystemPythonInterface::OperatingSystemPythonInterface( ScriptInterpreterPythonImpl &interpreter) : OperatingSystemInterface(), ScriptedThreadPythonInterface(interpreter) {} @@ -79,4 +82,18 @@ OperatingSystemPythonInterface::GetRegisterContextForTID(lldb::tid_t tid) { return obj->GetAsString()->GetValue().str(); } +void OperatingSystemPythonInterface::Initialize() { + const std::vector<llvm::StringRef> ci_usages = { + "settings set target.process.python-os-plugin-path <script-path>", + "settings set process.experimental.os-plugin-reports-all-threads [0/1]"}; + const std::vector<llvm::StringRef> api_usages = {}; + PluginManager::RegisterPlugin( + GetPluginNameStatic(), llvm::StringRef("Mock thread state"), + CreateInstance, eScriptLanguagePython, {ci_usages, api_usages}); +} + +void OperatingSystemPythonInterface::Terminate() { + PluginManager::UnregisterPlugin(CreateInstance); +} + #endif diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.h b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.h index da7bbf13b1d55..ea8fd6a570076 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/OperatingSystemPythonInterface.h @@ -20,7 +20,8 @@ namespace lldb_private { class OperatingSystemPythonInterface : virtual public OperatingSystemInterface, - virtual public ScriptedThreadPythonInterface { + virtual public ScriptedThreadPythonInterface, + public PluginInterface { public: OperatingSystemPythonInterface(ScriptInterpreterPythonImpl &interpreter); @@ -41,6 +42,16 @@ class OperatingSystemPythonInterface StructuredData::DictionarySP GetRegisterInfo() override; std::optional<std::string> GetRegisterContextForTID(lldb::tid_t tid) override; + + static void Initialize(); + + static void Terminate(); + + static llvm::StringRef GetPluginNameStatic() { + return "OperatingSystemPythonInterface"; + } + + llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } }; } // namespace lldb_private diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.cpp index 313c597ce48f3..bfacaeea42755 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.cpp @@ -11,6 +11,7 @@ // LLDB Python header must be included first #include "../lldb-python.h" #endif +#include "lldb/Core/PluginManager.h" #include "lldb/Target/Process.h" #include "lldb/Utility/Log.h" #include "lldb/Utility/Status.h" @@ -29,6 +30,8 @@ using namespace lldb_private; using namespace lldb_private::python; using Locker = ScriptInterpreterPythonImpl::Locker; +LLDB_PLUGIN_DEFINE(ScriptedProcessPythonInterface) + ScriptedProcessPythonInterface::ScriptedProcessPythonInterface( ScriptInterpreterPythonImpl &interpreter) : ScriptedProcessInterface(), ScriptedPythonInterface(interpreter) {} @@ -208,4 +211,24 @@ StructuredData::DictionarySP ScriptedProcessPythonInterface::GetMetadata() { return dict; } +void ScriptedProcessPythonInterface::Initialize() { + const std::vector<llvm::StringRef> ci_usages = { + "process attach -C <script-name> [-k key -v value ...]", + "process launch -C <script-name> [-k key -v value ...]"}; + const std::vector<llvm::StringRef> api_usages = { + "SBAttachInfo.SetScriptedProcessClassName", + "SBAttachInfo.SetScriptedProcessDictionary", + "SBTarget.Attach", + "SBLaunchInfo.SetScriptedProcessClassName", + "SBLaunchInfo.SetScriptedProcessDictionary", + "SBTarget.Launch"}; + PluginManager::RegisterPlugin( + GetPluginNameStatic(), llvm::StringRef("Mock process state"), + CreateInstance, eScriptLanguagePython, {ci_usages, api_usages}); +} + +void ScriptedProcessPythonInterface::Terminate() { + PluginManager::UnregisterPlugin(CreateInstance); +} + #endif diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.h b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.h index c75caa9340f25..8bfc3f2c0757c 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedProcessPythonInterface.h @@ -19,7 +19,8 @@ namespace lldb_private { class ScriptedProcessPythonInterface : public ScriptedProcessInterface, - public ScriptedPythonInterface { + public ScriptedPythonInterface, + public PluginInterface { public: ScriptedProcessPythonInterface(ScriptInterpreterPythonImpl &interpreter); @@ -67,6 +68,16 @@ class ScriptedProcessPythonInterface : public ScriptedProcessInterface, StructuredData::DictionarySP GetMetadata() override; + static void Initialize(); + + static void Terminate(); + + static llvm::StringRef GetPluginNameStatic() { + return "ScriptedProcessPythonInterface"; + } + + llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } + private: lldb::ScriptedThreadInterfaceSP CreateScriptedThreadInterface() override; }; diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.cpp index f23858c01277c..b3a971ab6d838 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.cpp @@ -18,11 +18,14 @@ #include "../SWIGPythonBridge.h" #include "../ScriptInterpreterPythonImpl.h" #include "ScriptedThreadPlanPythonInterface.h" +#include "lldb/Core/PluginManager.h" using namespace lldb; using namespace lldb_private; using namespace lldb_private::python; +LLDB_PLUGIN_DEFINE(ScriptedThreadPlanPythonInterface) + ScriptedThreadPlanPythonInterface::ScriptedThreadPlanPythonInterface( ScriptInterpreterPythonImpl &interpreter) : ScriptedThreadPlanInterface(), ScriptedPythonInterface(interpreter) {} @@ -102,4 +105,19 @@ ScriptedThreadPlanPythonInterface::GetStopDescription(lldb::StreamSP &stream) { return llvm::Error::success(); } +void ScriptedThreadPlanPythonInterface::Initialize() { + const std::vector<llvm::StringRef> ci_usages = { + "thread step-scripted -C <script-name> [-k key -v value ...]"}; + const std::vector<llvm::StringRef> api_usages = { + "SBThread.StepUsingScriptedThreadPlan"}; + PluginManager::RegisterPlugin( + GetPluginNameStatic(), + llvm::StringRef("Alter thread stepping logic and stop reason"), + CreateInstance, eScriptLanguagePython, {ci_usages, api_usages}); +} + +void ScriptedThreadPlanPythonInterface::Terminate() { + PluginManager::UnregisterPlugin(CreateInstance); +} + #endif diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.h b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.h index 6ec89b9f59253..4dc4607fb9c9d 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedThreadPlanPythonInterface.h @@ -19,7 +19,8 @@ namespace lldb_private { class ScriptedThreadPlanPythonInterface : public ScriptedThreadPlanInterface, - public ScriptedPythonInterface { + public ScriptedPythonInterface, + public PluginInterface { public: ScriptedThreadPlanPythonInterface(ScriptInterpreterPythonImpl &interpreter); @@ -41,6 +42,16 @@ class ScriptedThreadPlanPythonInterface : public ScriptedThreadPlanInterface, lldb::StateType GetRunState() override; llvm::Error GetStopDescription(lldb::StreamSP &stream) override; + + static void Initialize(); + + static void Terminate(); + + static llvm::StringRef GetPluginNameStatic() { + return "ScriptedThreadPlanPythonInterface"; + } + + llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } }; } // namespace lldb_private _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits