2010-06-09 00:52:24 +08:00
|
|
|
//===-- Driver.h ------------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-02-18 07:57:45 +08:00
|
|
|
#ifndef LLDB_TOOLS_DRIVER_DRIVER_H
|
|
|
|
#define LLDB_TOOLS_DRIVER_DRIVER_H
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2013-10-15 23:46:40 +08:00
|
|
|
#include "Platform.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-06-09 14:50:29 +08:00
|
|
|
#include "lldb/API/SBBroadcaster.h"
|
2010-06-23 09:19:29 +08:00
|
|
|
#include "lldb/API/SBDebugger.h"
|
2010-06-09 14:50:29 +08:00
|
|
|
#include "lldb/API/SBDefines.h"
|
|
|
|
#include "lldb/API/SBError.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2018-11-28 05:00:32 +08:00
|
|
|
#include "llvm/Option/Arg.h"
|
|
|
|
#include "llvm/Option/ArgList.h"
|
|
|
|
#include "llvm/Option/Option.h"
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
class Driver : public lldb::SBBroadcaster {
|
|
|
|
public:
|
2019-05-14 16:55:50 +08:00
|
|
|
enum CommandPlacement {
|
2014-11-19 09:28:13 +08:00
|
|
|
eCommandPlacementBeforeFile,
|
|
|
|
eCommandPlacementAfterFile,
|
2010-06-09 00:52:24 +08:00
|
|
|
eCommandPlacementAfterCrash,
|
2019-05-14 16:55:50 +08:00
|
|
|
};
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
Driver();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-07-08 08:59:59 +08:00
|
|
|
virtual ~Driver();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-07-12 01:18:01 +08:00
|
|
|
/// Runs the main loop.
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
/// \return The exit code that the process should return.
|
2018-07-12 01:18:01 +08:00
|
|
|
int MainLoop();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-01-05 08:01:04 +08:00
|
|
|
lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-07-08 08:59:59 +08:00
|
|
|
void WriteCommandsForSourcing(CommandPlacement placement,
|
2014-11-19 09:28:13 +08:00
|
|
|
lldb::SBStream &strm);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-12-12 04:19:53 +08:00
|
|
|
struct OptionData {
|
2018-11-28 05:00:32 +08:00
|
|
|
void AddInitialCommand(std::string command, CommandPlacement placement,
|
2015-07-08 08:59:59 +08:00
|
|
|
bool is_file, lldb::SBError &error);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-11-22 09:33:22 +08:00
|
|
|
struct InitialCmdEntry {
|
2018-11-28 05:00:32 +08:00
|
|
|
InitialCmdEntry(std::string contents, bool in_is_file,
|
2019-05-07 04:45:31 +08:00
|
|
|
bool in_quiet = false)
|
2018-11-28 05:00:32 +08:00
|
|
|
: contents(std::move(contents)), is_file(in_is_file),
|
2019-05-07 04:45:31 +08:00
|
|
|
source_quietly(in_quiet) {}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-11-22 09:33:22 +08:00
|
|
|
std::string contents;
|
|
|
|
bool is_file;
|
|
|
|
bool source_quietly;
|
2016-09-07 04:57:50 +08:00
|
|
|
};
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-12-09 06:23:24 +08:00
|
|
|
std::vector<std::string> m_args;
|
2018-12-12 04:19:53 +08:00
|
|
|
|
|
|
|
lldb::LanguageType m_repl_lang = lldb::eLanguageTypeUnknown;
|
|
|
|
lldb::pid_t m_process_pid = LLDB_INVALID_PROCESS_ID;
|
|
|
|
|
2012-08-16 06:10:42 +08:00
|
|
|
std::string m_core_file;
|
2010-06-09 00:52:24 +08:00
|
|
|
std::string m_crash_log;
|
2018-12-12 04:19:53 +08:00
|
|
|
std::string m_repl_options;
|
|
|
|
std::string m_process_name;
|
|
|
|
|
2014-11-22 09:33:22 +08:00
|
|
|
std::vector<InitialCmdEntry> m_initial_commands;
|
|
|
|
std::vector<InitialCmdEntry> m_after_file_commands;
|
|
|
|
std::vector<InitialCmdEntry> m_after_crash_commands;
|
2018-12-12 04:19:53 +08:00
|
|
|
|
|
|
|
bool m_debug_mode = false;
|
|
|
|
bool m_source_quietly = false;
|
|
|
|
bool m_print_version = false;
|
|
|
|
bool m_print_python_path = false;
|
[lldb] make it easier to find LLDB's python
It is surprisingly difficult to write a simple python script that
can reliably `import lldb` without failing, or crashing. I'm
currently resorting to convolutions like this:
def find_lldb(may_reexec=False):
if prefix := os.environ.get('LLDB_PYTHON_PREFIX'):
if os.path.realpath(prefix) != os.path.realpath(sys.prefix):
raise Exception("cannot import lldb.\n"
f" sys.prefix should be: {prefix}\n"
f" but it is: {sys.prefix}")
else:
line1, line2 = subprocess.run(
['lldb', '-x', '-b', '-o', 'script print(sys.prefix)'],
encoding='utf8', stdout=subprocess.PIPE,
check=True).stdout.strip().splitlines()
assert line1.strip() == '(lldb) script print(sys.prefix)'
prefix = line2.strip()
os.environ['LLDB_PYTHON_PREFIX'] = prefix
if sys.prefix != prefix:
if not may_reexec:
raise Exception(
"cannot import lldb.\n" +
f" This python, at {sys.prefix}\n"
f" does not math LLDB's python at {prefix}")
os.environ['LLDB_PYTHON_PREFIX'] = prefix
python_exe = os.path.join(prefix, 'bin', 'python3')
os.execl(python_exe, python_exe, *sys.argv)
lldb_path = subprocess.run(['lldb', '-P'],
check=True, stdout=subprocess.PIPE,
encoding='utf8').stdout.strip()
sys.path = [lldb_path] + sys.path
This patch aims to replace all that with:
#!/usr/bin/env lldb-python
import lldb
...
... by adding the following features:
* new command line option: --print-script-interpreter-info. This
prints language-specific information about the script interpreter
in JSON format.
* new tool (unix only): lldb-python which finds python and exec's it.
Reviewed By: JDevlieghere
Differential Revision: https://reviews.llvm.org/D112973
2021-11-11 02:33:33 +08:00
|
|
|
bool m_print_script_interpreter_info = false;
|
2018-12-12 04:19:53 +08:00
|
|
|
bool m_wait_for = false;
|
|
|
|
bool m_repl = false;
|
|
|
|
bool m_batch = false;
|
|
|
|
|
|
|
|
// FIXME: When we have set/show variables we can remove this from here.
|
|
|
|
bool m_use_external_editor = false;
|
|
|
|
|
2019-01-05 08:01:04 +08:00
|
|
|
using OptionSet = std::set<char>;
|
2010-06-09 00:52:24 +08:00
|
|
|
OptionSet m_seen_options;
|
2016-09-07 04:57:50 +08:00
|
|
|
};
|
|
|
|
|
2010-06-23 09:19:29 +08:00
|
|
|
lldb::SBDebugger &GetDebugger() { return m_debugger; }
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-02-23 06:56:55 +08:00
|
|
|
void ResizeWindow(unsigned short col);
|
2012-02-29 12:21:24 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
private:
|
2010-06-23 09:19:29 +08:00
|
|
|
lldb::SBDebugger m_debugger;
|
2010-06-09 00:52:24 +08:00
|
|
|
OptionData m_option_data;
|
|
|
|
};
|
|
|
|
|
2020-02-18 07:57:45 +08:00
|
|
|
#endif // LLDB_TOOLS_DRIVER_DRIVER_H
|