This revert #181334 and its follow-up PRs (including #181488, #181492, #181493, #181494 and #181498) as well as Ismail's documentation changes (#181594, #181717). The original commit causes a test failure in CI (https://github.com/llvm/llvm-project/issues/181938) but the more I look at the patch, the more I'm convinced it was not ready to land. It will be easier to iterate on the feedback by re-landing this than by using post-commit review.
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
//===-- ScriptInterpreterPythonInterfaces.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_SOURCE_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTINTERPRETERPYTHONINTERFACES_H
|
|
#define LLDB_SOURCE_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTINTERPRETERPYTHONINTERFACES_H
|
|
|
|
#include "lldb/Core/PluginInterface.h"
|
|
#include "lldb/Host/Config.h"
|
|
#include "lldb/lldb-private.h"
|
|
|
|
#if LLDB_ENABLE_PYTHON
|
|
|
|
#include "OperatingSystemPythonInterface.h"
|
|
#include "ScriptedBreakpointPythonInterface.h"
|
|
#include "ScriptedFrameProviderPythonInterface.h"
|
|
#include "ScriptedFramePythonInterface.h"
|
|
#include "ScriptedPlatformPythonInterface.h"
|
|
#include "ScriptedProcessPythonInterface.h"
|
|
#include "ScriptedStopHookPythonInterface.h"
|
|
#include "ScriptedThreadPlanPythonInterface.h"
|
|
|
|
namespace lldb_private {
|
|
class ScriptInterpreterPythonInterfaces : public PluginInterface {
|
|
public:
|
|
static void Initialize();
|
|
static void Terminate();
|
|
static llvm::StringRef GetPluginNameStatic() {
|
|
return "script-interpreter-python-interfaces";
|
|
}
|
|
static llvm::StringRef GetPluginDescriptionStatic();
|
|
};
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_ENABLE_PYTHON
|
|
#endif // LLDB_SOURCE_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTINTERPRETERPYTHONINTERFACES_H
|