25#include "lldb/Host/Config.h"
69#include "llvm/ADT/STLExtras.h"
70#include "llvm/ADT/StringRef.h"
71#include "llvm/ADT/iterator.h"
72#include "llvm/Config/llvm-config.h"
73#include "llvm/Support/DynamicLibrary.h"
74#include "llvm/Support/FileSystem.h"
75#include "llvm/Support/FormatAdapters.h"
76#include "llvm/Support/Process.h"
77#include "llvm/Support/ThreadPool.h"
78#include "llvm/Support/Threading.h"
79#include "llvm/Support/raw_ostream.h"
91#include <system_error>
112 static std::mutex g_mutex;
123 "Never show disassembly when displaying a stop context.",
128 "Show disassembly when there is no debug information.",
133 "Show disassembly when there is no source information, or the source "
135 "is missing when displaying a stop context.",
140 "Always show disassembly when displaying a stop context.",
148 "Disable scripting languages.",
153 "Select python as the default scripting language.",
158 "Select the lldb default as the default scripting language.",
164 "Use no verbosity when running dwim-print."},
166 "Use partial verbosity when running dwim-print - display a message when "
167 "`expression` evaluation is used."},
169 "Use full verbosity when running dwim-print."},
176 "Highlight the stop column with ANSI terminal codes when color/ANSI "
177 "mode is enabled; otherwise, fall back to using a text-only caret (^) "
178 "as if \"caret-only\" mode was selected.",
183 "Highlight the stop column with ANSI terminal codes when running LLDB "
184 "with color/ANSI enabled.",
189 "Highlight the stop column with a caret character (^) underneath the "
190 "stop column. This method introduces a new line in source listings "
191 "that display thread stop locations.",
196 "Do not highlight the stop column.",
204 "Do not show any autosuggestion.",
209 "Show a suggestion sourced from previously entered commands.",
214 "Show the prefix that tab completion would insert for the current "
219#define LLDB_PROPERTIES_debugger
220#include "CoreProperties.inc"
223#define LLDB_PROPERTIES_debugger
224#include "CorePropertiesEnum.inc"
228#define LLDB_PROPERTIES_testing
229#include "CoreProperties.inc"
232#define LLDB_PROPERTIES_testing
233#include "CorePropertiesEnum.inc"
241 const llvm::SmallVector<llvm::StringRef> kVendorSafePaths = {
242#include "SafeAutoloadPaths.inc"
245 for (
auto path : kVendorSafePaths) {
246 assert(!path.empty());
265 const uint32_t idx = ePropertyInjectVarLocListError;
267 idx, g_testing_properties[idx].default_uint_value != 0);
272 return g_testing_properties;
276 const uint32_t idx = ePropertySafeAutoloadPaths;
279 assert(option_value);
284 const uint32_t idx = ePropertySafeAutoloadPaths;
287 assert(option_value);
292 const uint32_t idx = ePropertySafeAutoloadPaths;
301 llvm::StringRef property_path,
302 llvm::StringRef value) {
303 bool is_load_script =
304 (property_path ==
"target.load-script-from-symbol-file");
306 bool invalidate_data_vis = (property_path ==
"escape-non-printables");
307 invalidate_data_vis |=
308 (property_path ==
"target.max-zero-padding-in-float-format");
309 if (invalidate_data_vis) {
315 if (is_load_script && exe_ctx && exe_ctx->
GetTargetSP()) {
317 load_script_old_value =
318 target_sp->TargetProperties::GetLoadScriptFromSymbolFile();
321 if (
error.Success()) {
323 if (property_path == g_debugger_properties[ePropertyPrompt].name) {
324 llvm::StringRef new_prompt =
GetPrompt();
330 auto bytes = std::make_unique<EventDataBytes>(new_prompt);
331 auto prompt_change_event_sp = std::make_shared<Event>(
334 }
else if (property_path == g_debugger_properties[ePropertyUseColor].name) {
338 }
else if (property_path ==
339 g_debugger_properties[ePropertyPromptAnsiPrefix].name ||
341 g_debugger_properties[ePropertyPromptAnsiSuffix].name) {
345 }
else if (property_path ==
346 g_debugger_properties[ePropertyShowStatusline].name) {
357 }
else if (property_path ==
358 g_debugger_properties[ePropertyStatuslineFormat].name ||
360 g_debugger_properties[ePropertySeparator].name) {
363 }
else if (property_path ==
364 g_debugger_properties[ePropertyUseSourceCache].name) {
370 }
else if (is_load_script && target_sp &&
372 if (target_sp->TargetProperties::GetLoadScriptFromSymbolFile() ==
374 std::list<Status> errors;
375 if (!target_sp->LoadScriptingResources(errors)) {
377 for (
auto &
error : errors)
378 s->Printf(
"%s\n",
error.AsCString());
387 constexpr uint32_t idx = ePropertyAutoConfirm;
389 idx, g_debugger_properties[idx].default_uint_value != 0);
393 constexpr uint32_t idx = ePropertyDisassemblyFormat;
398 constexpr uint32_t idx = ePropertyFrameFormat;
403 constexpr uint32_t idx = ePropertyFrameFormatUnique;
408 constexpr uint32_t idx = ePropertyStopDisassemblyMaxSize;
410 idx, g_debugger_properties[idx].default_uint_value);
414 constexpr uint32_t idx = ePropertyNotiftVoid;
416 idx, g_debugger_properties[idx].default_uint_value != 0);
420 constexpr uint32_t idx = ePropertyPrompt;
422 idx, g_debugger_properties[idx].default_cstr_value);
426 const uint32_t idx = ePropertyPromptAnsiPrefix;
428 idx, g_debugger_properties[idx].default_cstr_value);
432 const uint32_t idx = ePropertyPromptAnsiSuffix;
434 idx, g_debugger_properties[idx].default_cstr_value);
438 constexpr uint32_t idx = ePropertyPrompt;
440 llvm::StringRef new_prompt =
GetPrompt();
449 constexpr uint32_t idx = ePropertyThreadFormat;
454 constexpr uint32_t idx = ePropertyThreadStopFormat;
459 const uint32_t idx = ePropertyScriptLanguage;
462 g_debugger_properties[idx].default_uint_value));
466 const uint32_t idx = ePropertyScriptLanguage;
471 const uint32_t idx = ePropertyREPLLanguage;
476 const uint32_t idx = ePropertyREPLLanguage;
481 const uint32_t idx = ePropertyTerminalWidth;
483 idx, g_debugger_properties[idx].default_uint_value);
491 const uint32_t idx = ePropertyTerminalHeight;
493 idx, g_debugger_properties[idx].default_uint_value);
501 uint64_t term_height) {
504 const bool width_success =
506 const bool height_success =
510 handler_sp->TerminalSizeChanged();
518 return width_success && height_success;
522 const uint32_t idx = ePropertyUseExternalEditor;
524 idx, g_debugger_properties[idx].default_uint_value != 0);
528 const uint32_t idx = ePropertyUseExternalEditor;
533 const uint32_t idx = ePropertyExternalEditor;
535 idx, g_debugger_properties[idx].default_cstr_value);
539 const uint32_t idx = ePropertyExternalEditor;
544 const uint32_t idx = ePropertyUseColor;
546 idx, g_debugger_properties[idx].default_uint_value != 0);
550 const uint32_t idx = ePropertyUseColor;
559 const uint32_t idx = ePropertyShowProgress;
561 idx, g_debugger_properties[idx].default_uint_value != 0);
565 const uint32_t idx = ePropertyShowProgress;
570 const uint32_t idx = ePropertyShowProgressAnsiPrefix;
572 idx, g_debugger_properties[idx].default_cstr_value);
576 const uint32_t idx = ePropertyShowProgressAnsiSuffix;
578 idx, g_debugger_properties[idx].default_cstr_value);
582 const uint32_t idx = ePropertyShowStatusline;
584 idx, g_debugger_properties[idx].default_uint_value != 0);
588 constexpr uint32_t idx = ePropertyStatuslineFormat;
593 constexpr uint32_t idx = ePropertyStatuslineFormat;
600 constexpr uint32_t idx = ePropertySeparator;
602 idx, g_debugger_properties[idx].default_cstr_value);
606 const uint32_t idx = ePropertyShowDisabledAnsiPrefix;
608 idx, g_debugger_properties[idx].default_cstr_value);
612 const uint32_t idx = ePropertyShowDisabledAnsiSuffix;
614 idx, g_debugger_properties[idx].default_cstr_value);
618 constexpr uint32_t idx = ePropertySeparator;
625 const uint32_t idx = ePropertyShowAutosuggestion;
628 g_debugger_properties[idx].default_uint_value));
632 const uint32_t idx = ePropertyShowAutosuggestionAnsiPrefix;
634 idx, g_debugger_properties[idx].default_cstr_value);
638 const uint32_t idx = ePropertyShowAutosuggestionAnsiSuffix;
640 idx, g_debugger_properties[idx].default_cstr_value);
644 const uint32_t idx = ePropertyShowRegexMatchAnsiPrefix;
646 idx, g_debugger_properties[idx].default_cstr_value);
650 const uint32_t idx = ePropertyShowRegexMatchAnsiSuffix;
652 idx, g_debugger_properties[idx].default_cstr_value);
656 const uint32_t idx = ePropertyShowDontUsePoHint;
658 idx, g_debugger_properties[idx].default_uint_value != 0);
662 const uint32_t idx = ePropertyUseSourceCache;
664 idx, g_debugger_properties[idx].default_uint_value != 0);
668 const uint32_t idx = ePropertyUseSourceCache;
677 const uint32_t idx = ePropertyMarkHiddenFrames;
679 idx, g_debugger_properties[idx].default_uint_value != 0);
683 const uint32_t idx = ePropertyHighlightSource;
685 idx, g_debugger_properties[idx].default_uint_value != 0);
689 const uint32_t idx = ePropertyStopShowColumn;
692 g_debugger_properties[idx].default_uint_value));
696 const uint32_t idx = ePropertyStopShowColumnAnsiPrefix;
698 idx, g_debugger_properties[idx].default_cstr_value);
702 const uint32_t idx = ePropertyStopShowColumnAnsiSuffix;
704 idx, g_debugger_properties[idx].default_cstr_value);
708 const uint32_t idx = ePropertyStopShowLineMarkerAnsiPrefix;
710 idx, g_debugger_properties[idx].default_cstr_value);
714 const uint32_t idx = ePropertyStopShowLineMarkerAnsiSuffix;
716 idx, g_debugger_properties[idx].default_cstr_value);
721 before ? ePropertyStopLineCountBefore : ePropertyStopLineCountAfter;
723 idx, g_debugger_properties[idx].default_uint_value);
727 const uint32_t idx = ePropertyStopDisassemblyDisplay;
730 g_debugger_properties[idx].default_uint_value));
734 const uint32_t idx = ePropertyStopDisassemblyCount;
736 idx, g_debugger_properties[idx].default_uint_value);
740 const uint32_t idx = ePropertyAutoOneLineSummaries;
742 idx, g_debugger_properties[idx].default_uint_value != 0);
746 const uint32_t idx = ePropertyEscapeNonPrintables;
748 idx, g_debugger_properties[idx].default_uint_value != 0);
752 const uint32_t idx = ePropertyAutoIndent;
754 idx, g_debugger_properties[idx].default_uint_value != 0);
758 const uint32_t idx = ePropertyAutoIndent;
763 const uint32_t idx = ePropertyPrintDecls;
765 idx, g_debugger_properties[idx].default_uint_value != 0);
769 const uint32_t idx = ePropertyPrintDecls;
774 const uint32_t idx = ePropertyTabSize;
776 idx, g_debugger_properties[idx].default_uint_value);
780 const uint32_t idx = ePropertyTabSize;
785 const uint32_t idx = ePropertyDWIMPrintVerbosity;
788 g_debugger_properties[idx].default_uint_value != 0));
792 const uint32_t idx = ePropertyShowInlineDiagnostics;
794 idx, g_debugger_properties[idx].default_uint_value);
798 const uint32_t idx = ePropertyShowInlineDiagnostics;
813 "Debugger::Initialize called more than once!");
816 g_thread_pool =
new llvm::DefaultThreadPool(llvm::optimal_concurrency());
822 "Debugger::Terminate called without a matching Debugger::Initialize!");
828 debugger->HandleDestroyCallback();
855 llvm::sys::DynamicLibrary dynlib =
857 if (dynlib.isValid()) {
872 llvm::StringRef path) {
875 static constexpr llvm::StringLiteral g_dylibext(
".dylib");
876 static constexpr llvm::StringLiteral g_solibext(
".so");
883 namespace fs = llvm::sys::fs;
888 if (ft == fs::file_type::regular_file || ft == fs::file_type::symlink_file ||
889 ft == fs::file_type::type_unknown) {
899 debugger->
LoadPlugin(plugin_file_spec, plugin_load_error);
902 }
else if (ft == fs::file_type::directory_file ||
903 ft == fs::file_type::symlink_file ||
904 ft == fs::file_type::type_unknown) {
916 const bool find_directories =
true;
917 const bool find_files =
true;
918 const bool find_other =
true;
920 if (
FileSpec dir_spec = HostInfo::GetSystemPluginDir()) {
922 dir_spec.GetPath(dir_path,
sizeof(dir_path))) {
924 find_files, find_other,
929 if (
FileSpec dir_spec = HostInfo::GetUserPluginDir()) {
931 dir_spec.GetPath(dir_path,
sizeof(dir_path))) {
933 find_files, find_other,
949 helper.SetDebugger(debugger_sp.get());
955 debugger_sp->InstanceInitialize();
989 debugger_sp->HandleDestroyCallback();
996 (*debugger_sp->GetAsyncOutputStream())
999 (*debugger_sp->GetAsyncErrorStream()) << result.
GetErrorString() <<
'\n';
1002 debugger_sp->Clear();
1008 if ((*pos).get() == debugger_sp.get()) {
1023 if (llvm::StringRef(debugger_sp->GetInstanceName()) == instance_name)
1031 static constexpr llvm::StringLiteral class_name(
"lldb.debugger");
1061 "target",
"Settings specify to debugging targets.",
true,
1064 "platform",
"Platform settings.",
true,
1067 "symbols",
"Symbol lookup and cache settings.",
true,
1073 "diagnostics",
"Diagnostics settings.",
true,
1078 "Settings specify to the debugger's command interpreter.",
true,
1083 "testing",
"Testing-only settings.",
true,
1089 std::make_shared<CallbackLogHandler>(log_callback, baton);
1093 assert(default_platform_sp);
1100 arch = HostInfo::GetArchitecture();
1101 assert(arch.
IsValid() &&
"No valid default or host archspec");
1102 const bool is_dummy_target =
true;
1104 new Target(*
this, arch, default_platform_sp, is_dummy_target));
1110 ePropertyTerminalWidth);
1115 ePropertyTerminalHeight);
1119 const char *term = getenv(
"TERM");
1120 auto disable_color = [&]() {
1125 if (term && !strcmp(term,
"dumb"))
1131#if defined(_WIN32) && defined(ENABLE_VIRTUAL_TERMINAL_PROCESSING)
1134 llvm::sys::Process::UseANSIEscapeCodes(
true);
1163 if (
ProcessSP process_sp = target_sp->GetProcessSP())
1164 process_sp->Finalize(
false );
1165 target_sp->Destroy();
1187static inline int OpenPipe(
int fds[2], std::size_t size) {
1189 return _pipe(fds, size, O_BINARY);
1199 int fds[2] = {-1, -1};
1201 if (data ==
nullptr) {
1206 size_t size = strlen(data);
1214 "can't create pipe file descriptors for LLDB commands");
1218 int r = write(fds[
WRITE], data, size);
1222 llvm::sys::Process::SafelyCloseFileDescriptor(fds[
WRITE]);
1226 FILE *commands_file = fdopen(fds[
READ],
"rb");
1227 if (commands_file ==
nullptr) {
1229 "fdopen(%i, \"rb\") failed (errno = %i) "
1230 "when trying to open LLDB commands pipe",
1232 llvm::sys::Process::SafelyCloseFileDescriptor(fds[
READ]);
1242 assert(file_sp && file_sp->IsValid());
1250 assert(file_sp && file_sp->IsValid());
1256 assert(file_sp && file_sp->IsValid());
1283 std::optional<ExecutionContextRef> exe_ctx_ref) {
1312 if (adopt_dummy_target)
1323 reader_sp->Interrupt();
1330 reader_sp->GotEOF();
1352 std::lock_guard<std::recursive_mutex> guard(
1358 if (top_reader_sp && top_reader_sp->GetIsDone())
1375 while (top_reader_sp) {
1376 top_reader_sp->Run();
1379 if (top_reader_sp.get() == reader_sp.get()) {
1388 if (top_reader_sp && top_reader_sp->GetIsDone()) {
1391 if (top_reader_sp.get() == reader_sp.get())
1415 locked_stream.
Write(s, len);
1436 bool cancel_top_handler) {
1451 if (!in || !in->IsValid()) {
1453 in = top_reader_sp->GetInputFileSP();
1462 if (!out || !out->GetUnlockedFile().IsValid()) {
1464 out = top_reader_sp->GetOutputStreamFileSP();
1473 if (!err || !err->GetUnlockedFile().IsValid()) {
1475 err = top_reader_sp->GetErrorStreamFileSP();
1486 bool cancel_top_handler) {
1496 if (reader_sp == top_reader_sp)
1501 reader_sp->Activate();
1505 if (top_reader_sp) {
1506 top_reader_sp->Deactivate();
1507 if (cancel_top_handler)
1508 top_reader_sp->Cancel();
1525 if (pop_reader_sp != reader_sp)
1528 reader_sp->Deactivate();
1529 reader_sp->Cancel();
1534 reader_sp->Activate();
1543 reader_sp->Refresh();
1547 return std::make_unique<StreamAsynchronousIO>(*
this,
1552 return std::make_unique<StreamAsynchronousIO>(*
this,
1580 std::string function_name,
const llvm::formatv_object_base &payload)
1585 desc << payload <<
"\n";
1599 if (debugger_sp->InterruptRequested())
1600 result.push_back(debugger_sp);
1619 if (index < g_debugger_list_ptr->size())
1631 if (debugger_sp->GetID() ==
id)
1645 if (format ==
nullptr) {
1649 format = &format_entry;
1651 if (format ==
nullptr) {
1653 format = &format_entry;
1656 bool function_changed =
false;
1657 bool initial_function =
false;
1663 function_changed =
true;
1667 function_changed =
true;
1677 initial_function =
true;
1685 llvm::StringRef backtrace,
1686 llvm::StringRef prompt) {
1698 std::make_shared<CallbackLogHandler>(log_callback, baton);
1701std::vector<std::string>
1703 std::vector<std::string> copied;
1705 llvm::StringRef log_path = entry.first();
1706 llvm::StringRef file_name = llvm::sys::path::filename(log_path);
1709 if (!llvm::sys::fs::copy_file(log_path, destination.
GetPath()))
1710 copied.push_back(file_name.str());
1735 if (it->token == token) {
1744 std::string title, std::string details,
1745 uint64_t completed, uint64_t total,
1746 bool is_debugger_specific,
1747 uint32_t progress_broadcast_bit) {
1753 progress_broadcast_bit,
1755 completed, total, is_debugger_specific)));
1760 std::string details, uint64_t completed,
1762 std::optional<lldb::user_id_t> debugger_id,
1763 uint32_t progress_broadcast_bit) {
1771 std::move(details), completed, total,
1773 progress_broadcast_bit);
1784 progress_broadcast_bit);
1789 std::string message,
1790 bool debugger_specific) {
1791 uint32_t event_type = 0;
1794 assert(
false &&
"eSeverityInfo should not be broadcast");
1813 EventSP event_sp = std::make_shared<Event>(
1820 std::optional<lldb::user_id_t> debugger_id,
1821 std::once_flag *once) {
1822 auto ReportDiagnosticLambda = [&]() {
1855 std::call_once(*once, ReportDiagnosticLambda);
1857 ReportDiagnosticLambda();
1861 std::optional<lldb::user_id_t> debugger_id,
1862 std::once_flag *once) {
1867 std::optional<lldb::user_id_t> debugger_id,
1868 std::once_flag *once) {
1873 std::optional<lldb::user_id_t> debugger_id,
1874 std::once_flag *once) {
1884 EventSP event_sp = std::make_shared<Event>(
1887 debugger_sp->GetBroadcaster().BroadcastEvent(event_sp);
1891static std::shared_ptr<LogHandler>
1893 size_t buffer_size) {
1894 switch (log_handler_kind) {
1896 return std::make_shared<StreamLogHandler>(fd, should_close, buffer_size);
1898 return std::make_shared<RotatingLogHandler>(buffer_size);
1900 return std::make_shared<SystemLogHandler>();
1908 llvm::ArrayRef<const char *> categories,
1909 llvm::StringRef log_file, uint32_t log_options,
1913 std::shared_ptr<LogHandler> log_handler_sp;
1919 }
else if (log_file.empty()) {
1922 false, buffer_size);
1926 log_handler_sp = pos->second.lock();
1927 if (!log_handler_sp) {
1935 FileSpec(log_file), flags, lldb::eFilePermissionsFileDefault,
false);
1937 return llvm::createStringErrorV(
"Unable to open log file '{}': {}",
1939 llvm::fmt_consume(file.takeError()));
1947 assert(log_handler_sp);
1949 if (log_options == 0)
1958 std::optional<lldb::ScriptLanguage> language) {
1981 using namespace lldb;
1982 const uint32_t event_type =
1999 if (event_type & eBreakpointEventTypeLocationsAdded) {
2000 uint32_t num_new_locations =
2003 if (num_new_locations > 0) {
2007 output_up->Printf(
"%d location%s added to breakpoint %d\n",
2008 num_new_locations, num_new_locations == 1 ?
"" :
"s",
2009 breakpoint->GetID());
2027 bool flush_stderr) {
2028 const auto &flush = [&](
Stream &stream,
2033 while ((len = (process.*get)(buffer,
sizeof(buffer),
error)) > 0)
2034 stream.
Write(buffer, len);
2047 const uint32_t event_type = event_sp->GetType();
2058 bool pop_process_io_handler =
false;
2061 bool state_is_stopped =
false;
2062 const bool got_state_changed =
2066 const bool got_structured_data =
2069 if (got_state_changed) {
2076 if (got_state_changed && !state_is_stopped) {
2081 pop_process_io_handler);
2086 got_stderr || got_state_changed);
2089 if (got_structured_data) {
2093 auto structured_data_sp =
2097 plugin_sp->GetDescription(structured_data_sp, content_stream);
2098 if (
error.Success()) {
2099 if (!content_stream.
GetString().empty()) {
2102 content_stream.
Flush();
2105 output_stream_up->PutCString(content_stream.
GetString());
2108 error_stream_up->Format(
"Failed to print structured "
2109 "data with plugin {0}: {1}",
2110 plugin_sp->GetPluginName(),
error);
2116 if (got_state_changed && state_is_stopped) {
2119 pop_process_io_handler);
2122 output_stream_up->Flush();
2123 error_stream_up->Flush();
2125 if (pop_process_io_handler)
2126 process_sp->PopProcessIOHandler();
2134 const uint32_t event_type = event_sp->GetType();
2135 const bool stop_format =
true;
2165 static std::once_flag g_once_flag;
2166 static bool g_supports_osc_progress =
false;
2168 std::call_once(g_once_flag, []() {
2171 if (
const char *term_program = std::getenv(
"TERM_PROGRAM")) {
2172 llvm::StringRef term_program_str(term_program);
2173 if (term_program_str.starts_with(
"ghostty") ||
2174 term_program_str.starts_with(
"wezterm")) {
2175 g_supports_osc_progress =
true;
2181 std::array<const char *, 3> known_env_vars = {
2183 "GHOSTTY_RESOURCES_DIR",
2186 for (
const char *env_var : known_env_vars) {
2187 if (std::getenv(env_var)) {
2188 g_supports_osc_progress =
true;
2194 return g_supports_osc_progress;
2200 File &file = stream_sp->GetUnlockedFile();
2225 llvm::StringRef broadcaster_class_process(
2232 broadcaster_class_process,
2243 process_event_spec);
2246 listener_sp->StartListeningForEvents(
2252 listener_sp->StartListeningForEvents(
2274 if (listener_sp->GetEvent(event_sp, std::nullopt)) {
2275 std::optional<ExecutionContextRef> exe_ctx_ref = std::nullopt;
2277 Broadcaster *broadcaster = event_sp->GetBroadcaster();
2279 uint32_t event_type = event_sp->GetType();
2281 if (broadcaster_class == broadcaster_class_process) {
2287 const bool adopt_selected =
2295 }
else if (broadcaster_class == broadcaster_class_target) {
2300 }
else if (broadcaster_class == broadcaster_class_thread) {
2309 }
else if (event_type &
2311 const char *data =
static_cast<const char *
>(
2313 if (data && data[0]) {
2315 error_up->PutCString(data);
2319 eBroadcastBitAsynchronousOutputData) {
2320 const char *data =
static_cast<const char *
>(
2322 if (data && data[0]) {
2324 output_up->PutCString(data);
2361 ConstString full_name(
"lldb.debugger.event-handler");
2367 llvm::StringRef thread_name =
2368 full_name.
GetLength() < llvm::get_max_thread_name_length()
2370 :
"dbg.evt-handler";
2373 llvm::Expected<HostThread> event_handler_thread =
2378 if (event_handler_thread) {
2382 "failed to launch host thread: {0}");
2391 listener_sp->GetEvent(event_sp, std::nullopt);
2416 ProgressReport progress_report{data->GetID(), data->GetCompleted(),
2417 data->GetTotal(), data->GetMessage()};
2425 return report.id == progress_report.
id;
2428 const bool complete = data->GetCompleted() == data->GetTotal();
2432 *it = progress_report;
2464std::optional<Debugger::ProgressReport>
2468 return std::nullopt;
2495 if (io_handler_thread) {
2499 "failed to launch host thread: {0}");
2527 if (!prefer_dummy) {
2545 language = *single_lang;
2546 }
else if (repl_languages.
Empty()) {
2548 "LLDB isn't configured with REPL support for any languages.");
2552 "Multiple possible REPL languages. Please specify a language.");
2568 "couldn't find a REPL for %s",
2573 repl_sp->SetCompilerOptions(repl_options);
2581 "Debugger::GetThreadPool called before Debugger::Initialize");
2586 llvm::StringRef name,
bool value,
2587 llvm::StringRef description) {
2588 auto entry_up = std::make_unique<StructuredData::Dictionary>();
2589 entry_up->AddBooleanItem(
"value", value);
2590 entry_up->AddStringItem(
"description", description);
2591 dict.
AddItem(name, std::move(entry_up));
2595 auto array_up = std::make_unique<StructuredData::Array>();
2596#define LLVM_TARGET(target) \
2597 array_up->AddItem(std::make_unique<StructuredData::String>(#target));
2598#include "llvm/Config/Targets.def"
2599 auto entry_up = std::make_unique<StructuredData::Dictionary>();
2600 entry_up->AddItem(
"value", std::move(array_up));
2601 entry_up->AddStringItem(
"description",
"A list of configured LLVM targets.");
2602 dict.
AddItem(
"targets", std::move(entry_up));
2606 auto config_up = std::make_unique<StructuredData::Dictionary>();
2609 "A boolean value that indicates if XML support is enabled in LLDB");
2611 *config_up,
"curl", LLVM_ENABLE_CURL,
2612 "A boolean value that indicates if CURL support is enabled in LLDB");
2614 *config_up,
"curses", LLDB_ENABLE_CURSES,
2615 "A boolean value that indicates if curses support is enabled in LLDB");
2617 *config_up,
"editline", LLDB_ENABLE_LIBEDIT,
2618 "A boolean value that indicates if editline support is enabled in LLDB");
2620 "A boolean value that indicates if editline wide "
2621 "characters support is enabled in LLDB");
2623 *config_up,
"zlib", LLVM_ENABLE_ZLIB,
2624 "A boolean value that indicates if zlib support is enabled in LLDB");
2626 *config_up,
"lzma", LLDB_ENABLE_LZMA,
2627 "A boolean value that indicates if lzma support is enabled in LLDB");
2629 *config_up,
"python", LLDB_ENABLE_PYTHON,
2630 "A boolean value that indicates if python support is enabled in LLDB");
2632 *config_up,
"lua", LLDB_ENABLE_LUA,
2633 "A boolean value that indicates if lua support is enabled in LLDB");
#define OSC_PROGRESS_REMOVE
#define OSC_PROGRESS_INDETERMINATE
#define OSC_PROGRESS_SHOW
static llvm::raw_ostream & error(Stream &strm)
static bool RequiresFollowChildWorkaround(const Process &process)
static llvm::DefaultThreadPool * g_thread_pool
static constexpr OptionEnumValueElement g_show_disassembly_enum_values[]
static bool TerminalSupportsOSCProgress()
Conservative heuristic to detect whether OSC 9;4 progress is supported by the current terminal.
static lldb::user_id_t g_unique_id
static constexpr OptionEnumValueElement g_language_enumerators[]
static void PrivateReportDiagnostic(Debugger &debugger, Severity severity, std::string message, bool debugger_specific)
static constexpr OptionEnumValueElement g_dwim_print_verbosities[]
static constexpr OptionEnumValueElement s_stop_show_column_values[]
static void PrivateReportProgress(Debugger &debugger, uint64_t progress_id, std::string title, std::string details, uint64_t completed, uint64_t total, bool is_debugger_specific, uint32_t progress_broadcast_bit)
static Debugger::DebuggerList * g_debugger_list_ptr
static int OpenPipe(int fds[2], std::size_t size)
static size_t g_debugger_event_thread_stack_bytes
static constexpr OptionEnumValueElement g_show_autosuggestion_enum_values[]
static std::mutex & GetDebuggerListMutex()
static FileSystem::EnumerateDirectoryResult LoadPluginCallback(void *baton, llvm::sys::fs::file_type ft, llvm::StringRef path)
static std::shared_ptr< LogHandler > CreateLogHandler(LogHandlerKind log_handler_kind, int fd, bool should_close, size_t buffer_size)
static void AddBoolConfigEntry(StructuredData::Dictionary &dict, llvm::StringRef name, bool value, llvm::StringRef description)
static void AddLLVMTargets(StructuredData::Dictionary &dict)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOG_OPTION_APPEND
#define LLDB_LOG_ERROR(log, error,...)
#define LLDB_LOG_OPTION_PREPEND_TIMESTAMP
#define LLDB_LOG_OPTION_PREPEND_THREAD_NAME
A section + offset based address class.
An architecture specification class.
bool IsValid() const
Tests if this ArchSpec is valid.
static lldb::BreakpointEventType GetBreakpointEventTypeFromEvent(const lldb::EventSP &event_sp)
static lldb::BreakpointSP GetBreakpointFromEvent(const lldb::EventSP &event_sp)
static const BreakpointEventData * GetEventDataFromEvent(const Event *event_sp)
static size_t GetNumBreakpointLocationsFromEvent(const lldb::EventSP &event_sp)
An event broadcasting class.
bool EventTypeHasListeners(uint32_t event_type)
virtual llvm::StringRef GetBroadcasterClass() const
This needs to be filled in if you are going to register the broadcaster with the broadcaster manager ...
void BroadcastEvent(lldb::EventSP &event_sp)
Broadcast an event which has no associated data.
void UpdatePrompt(llvm::StringRef prompt)
void UpdateUseColor(bool use_color)
@ eBroadcastBitAsynchronousOutputData
@ eBroadcastBitQuitCommandReceived
@ eBroadcastBitAsynchronousErrorData
@ eBroadcastBitResetPrompt
bool WasInterrupted() const
bool SaveTranscript(CommandReturnObject &result, std::optional< std::string > output_file=std::nullopt)
Save the current debugger session transcript to a file on disk.
bool GetSaveSessionOnQuit() const
std::string GetErrorString(bool with_diagnostics=true) const
Return the errors as a string.
llvm::StringRef GetOutputString() const
A uniqued constant string class.
size_t GetLength() const
Get the length in bytes of string value.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
const char * AsCString(const char *value_if_empty) const
Get the string value as a C string.
static void ForceUpdate()
std::string m_function_name
const std::chrono::time_point< std::chrono::system_clock > m_interrupt_time
const uint64_t m_thread_id
InterruptionReport(std::string function_name, std::string description)
std::string m_description
A class to manage flag bits.
static void AssertCallback(llvm::StringRef message, llvm::StringRef backtrace, llvm::StringRef prompt)
llvm::StringRef GetAutosuggestionAnsiPrefix() const
bool SetUseExternalEditor(bool use_external_editor_p)
PlatformList m_platform_list
HostThread m_event_handler_thread
FormatEntity::Entry GetDisassemblyFormat() const
uint64_t GetDisassemblyLineCount() const
llvm::StringRef GetDisabledAnsiSuffix() const
uint64_t GetTerminalHeight() const
lldb::LockableStreamFileSP m_output_stream_sp
bool SetExternalEditor(llvm::StringRef editor)
void RequestInterrupt()
Interruption in LLDB:
void ReportInterruption(const InterruptionReport &report)
const std::string m_instance_name
lldb::ThreadSP HandleThreadEvent(const lldb::EventSP &event_sp)
void HandleProgressEvent(const lldb::EventSP &event_sp)
SourceManager & GetSourceManager()
bool SetTerminalDimensions(uint64_t term_width, uint64_t term_height)
Set the terminal width and height together, so observers are notified once with both dimensions curre...
bool SetShowProgress(bool show_progress)
bool StartEventHandlerThread()
Manually start the global event handler thread.
bool SetUseSourceCache(bool use_source_cache)
static const FileSpecList & GetDefaultSafeAutoLoadPaths()
void StopEventHandlerThread()
Manually stop the debugger's default event handler.
static void ReportInfo(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report info events.
void SetAsyncExecution(bool async)
ExecutionContext GetSelectedExecutionContext(bool adopt_dummy_target)
Get the execution context representing the selected entities in the selected target.
HostThread SetIOHandlerThread(HostThread &new_thread)
void CancelForwardEvents(const lldb::ListenerSP &listener_sp)
bool GetPrintDecls() const
lldb::FileSP GetInputFileSP()
void StopIOHandlerThread()
bool GetHighlightSource() const
llvm::StringMap< std::weak_ptr< LogHandler > > m_stream_handlers
bool IsEscapeCodeCapableTTY()
CommandInterpreter & GetCommandInterpreter()
FormatEntity::Entry GetStatuslineFormat() const
void SaveInputTerminalState()
LoadedPluginsList m_loaded_plugins
bool GetShowInlineDiagnostics() const
void InstanceInitialize()
bool SetTabSize(uint64_t tab_size)
void HandleDiagnosticEvent(const lldb::EventSP &event_sp)
bool StartIOHandlerThread()
static lldb::DebuggerSP GetDebuggerAtIndex(size_t index)
llvm::StringRef GetAutosuggestionAnsiSuffix() const
lldb::ListenerSP m_listener_sp
void PushIOHandler(const lldb::IOHandlerSP &reader_sp, bool cancel_top_handler=true)
std::mutex m_destroy_callback_mutex
lldb::callback_token_t AddDestroyCallback(lldb_private::DebuggerDestroyCallback destroy_callback, void *baton)
Add a callback for when the debugger is destroyed.
lldb::thread_result_t IOHandlerThread()
FormatEntity::Entry GetFrameFormatUnique() const
std::optional< ProgressReport > GetCurrentProgressReport() const
llvm::StringRef GetDisabledAnsiPrefix() const
bool GetUseExternalEditor() const
TerminalState m_terminal_state
lldb::StreamUP GetAsyncErrorStream()
bool InterruptRequested()
bool GetEscapeNonPrintables() const
lldb::TargetSP m_dummy_target_sp
llvm::SmallVector< DestroyCallbackInfo, 2 > m_destroy_callbacks
std::unique_ptr< CommandInterpreter > m_command_interpreter_up
static void ReportWarning(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report warning events.
static bool FormatDisassemblerAddress(const FormatEntity::Entry *format, const SymbolContext *sc, const SymbolContext *prev_sc, const ExecutionContext *exe_ctx, const Address *addr, Stream &s)
static void SettingsInitialize()
LockableStreamFile::Mutex m_output_mutex
static llvm::ThreadPoolInterface & GetThreadPool()
Shared thread pool. Use only with ThreadPoolTaskGroup.
llvm::StringRef GetShowProgressAnsiSuffix() const
bool IsTopIOHandler(const lldb::IOHandlerSP &reader_sp)
bool HasIOHandlerThread() const
void DispatchInputEndOfFile()
llvm::SmallVector< ProgressReport, 4 > m_progress_reports
Bookkeeping for command line progress events.
bool IsIOHandlerThreadCurrentThread() const
ExecutionContextRef GetSelectedExecutionContextRef(bool adopt_dummy_target)
Like GetSelectedExecutionContext but returns an ExecutionContextRef.
void DispatchClientTelemetry(const lldb_private::StructuredDataImpl &entry)
std::mutex m_progress_reports_mutex
lldb::ProcessSP HandleProcessEvent(const lldb::EventSP &event_sp)
lldb::ListenerSP m_forward_listener_sp
std::array< lldb::ScriptInterpreterSP, lldb::eScriptLanguageUnknown > m_script_interpreters
std::shared_ptr< CallbackLogHandler > m_callback_handler_sp
void SetDestroyCallback(lldb_private::DebuggerDestroyCallback destroy_callback, void *baton)
DEPRECATED: We used to only support one Destroy callback.
lldb::FileSP GetOutputFileSP()
Broadcaster m_broadcaster
Public Debugger event broadcaster.
void DispatchInputInterrupt()
static void Initialize(LoadPluginCallbackType load_plugin_callback)
static lldb::DebuggerSP FindDebuggerWithInstanceName(llvm::StringRef instance_name)
uint64_t GetTerminalWidth() const
std::mutex m_interrupt_mutex
std::recursive_mutex m_io_handler_synchronous_mutex
bool RemoveIOHandler(const lldb::IOHandlerSP &reader_sp)
Remove the given IO handler if it's currently active.
bool GetAutoOneLineSummaries() const
const char * GetIOHandlerCommandPrefix()
std::optional< Statusline > m_statusline
lldb::BroadcasterManagerSP m_broadcaster_manager_sp
void FlushStatusLine()
Flush cached state (e.g. stale execution context in the statusline).
Status RunREPL(lldb::LanguageType language, const char *repl_options)
bool PopIOHandler(const lldb::IOHandlerSP &reader_sp)
static StructuredData::DictionarySP GetBuildConfiguration()
Get the build configuration as structured data.
bool RemoveDestroyCallback(lldb::callback_token_t token)
Remove the specified callback. Return true if successful.
static LoadPluginCallbackType g_load_plugin_callback
bool GetShowStatusline() const
std::recursive_mutex m_script_interpreter_mutex
void RunIOHandlerAsync(const lldb::IOHandlerSP &reader_sp, bool cancel_top_handler=true)
Run the given IO handler and return immediately.
void SetInputFile(lldb::FileSP file)
lldb::LockableStreamFileSP GetOutputStreamSP()
Except for Debugger and IOHandler, GetOutputStreamSP and GetErrorStreamSP should not be used directly...
void SetPrompt(llvm::StringRef p)
llvm::StringRef GetSeparator() const
bool StatuslineSupported()
Whether the statusline can be drawn: show-statusline is enabled and the output is an escape-code-capa...
uint64_t GetStopDisassemblyMaxSize() const
bool SetTerminalHeight(uint64_t term_height)
Broadcaster m_sync_broadcaster
Private debugger synchronization.
void RestoreInputTerminalState()
bool GetUseSourceCache() const
HostThread m_io_handler_thread
llvm::StringRef GetRegexMatchAnsiSuffix() const
static llvm::StringRef GetStaticBroadcasterClass()
lldb::FileSP m_input_file_sp
bool SetREPLLanguage(lldb::LanguageType repl_lang)
@ eBroadcastBitEventThreadIsListening
bool GetAutoIndent() const
AutosuggestionMode GetAutosuggestionMode() const
llvm::StringRef GetStopShowColumnAnsiSuffix() const
Status SetPropertyValue(const ExecutionContext *exe_ctx, VarSetOperationType op, llvm::StringRef property_path, llvm::StringRef value) override
llvm::StringRef GetPromptAnsiSuffix() const
FormatEntity::Entry GetThreadStopFormat() const
void SetErrorFile(lldb::FileSP file)
bool GetAutoConfirm() const
lldb::ScriptLanguage GetScriptLanguage() const
lldb::callback_token_t m_destroy_callback_next_token
std::unique_ptr< SourceManager > m_source_manager_up
static lldb::DebuggerSP CreateInstance(lldb::LogOutputCallback log_callback=nullptr, void *baton=nullptr)
lldb::StopShowColumn GetStopShowColumn() const
static void ReportSymbolChange(const ModuleSpec &module_spec)
static void ReportError(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report error events.
bool SetPrintDecls(bool b)
bool SetScriptLanguage(lldb::ScriptLanguage script_lang)
lldb::LockableStreamFileSP m_error_stream_sp
bool SetShowInlineDiagnostics(bool)
bool LoadPlugin(const FileSpec &spec, Status &error)
void SetOutputFile(lldb::FileSP file)
uint64_t GetStopSourceLineCount(bool before) const
bool SetStatuslineFormat(const FormatEntity::Entry &format)
void EnableForwardEvents(const lldb::ListenerSP &listener_sp)
static lldb::DebuggerSP FindDebuggerWithID(lldb::user_id_t id)
void HandleBreakpointEvent(const lldb::EventSP &event_sp)
void JoinIOHandlerThread()
bool CheckTopIOHandlerTypes(IOHandler::Type top_type, IOHandler::Type second_top_type)
Target & GetDummyTarget()
lldb::ListenerSP GetListener()
static void Destroy(lldb::DebuggerSP &debugger_sp)
SourceManager::SourceFileCache m_source_file_cache
llvm::StringRef GetPromptAnsiPrefix() const
lldb::StreamUP GetAsyncOutputStream()
void RedrawStatusline(std::optional< ExecutionContextRef > exe_ctx_ref)
Redraw the statusline if enabled.
void RunIOHandlerSync(const lldb::IOHandlerSP &reader_sp)
Run the given IO handler and block until it's complete.
Broadcaster & GetBroadcaster()
Get the public broadcaster for this debugger.
llvm::StringRef GetStopShowLineMarkerAnsiPrefix() const
bool GetShowDontUsePoHint() const
uint64_t GetTabSize() const
bool GetShowProgress() const
llvm::StringRef GetRegexMatchAnsiPrefix() const
void HandleDestroyCallback()
std::mutex m_output_flush_mutex
llvm::StringRef GetStopShowLineMarkerAnsiSuffix() const
bool SetSeparator(llvm::StringRef s)
bool SetUseColor(bool use_color)
std::mutex m_statusline_mutex
Mutex protecting the m_statusline member.
const char * GetIOHandlerHelpPrologue()
Status SetInputString(const char *data)
Target & GetSelectedOrDummyTarget(bool prefer_dummy=false)
std::vector< std::string > CopyLogFilesToDirectory(const FileSpec &dir)
Copy this debugger's file-backed log files into the given directory, for inclusion in a diagnostics b...
IOHandlerStack m_io_handler_stack
llvm::once_flag m_clear_once
static void SettingsTerminate()
static void ReportProgress(uint64_t progress_id, std::string title, std::string details, uint64_t completed, uint64_t total, std::optional< lldb::user_id_t > debugger_id, uint32_t progress_category_bit=lldb::eBroadcastBitProgress)
Report progress events.
lldb::LanguageType GetREPLLanguage() const
ScriptInterpreter * GetScriptInterpreter(bool can_create=true, std::optional< lldb::ScriptLanguage > language={})
void SetLoggingCallback(lldb::LogOutputCallback log_callback, void *baton)
bool SetTerminalWidth(uint64_t term_width)
Debugger(lldb::LogOutputCallback m_log_callback, void *baton)
llvm::StringRef GetExternalEditor() const
static size_t GetNumDebuggers()
FormatEntity::Entry GetThreadFormat() const
uint32_t m_interrupt_requested
Tracks interrupt requests.
lldb::DWIMPrintVerbosity GetDWIMPrintVerbosity() const
bool GetMarkHiddenFrames() const
lldb::thread_result_t DefaultEventHandler()
void PrintAsync(const char *s, size_t len, bool is_stdout)
lldb::LockableStreamFileSP GetErrorStreamSP()
llvm::Error EnableLog(llvm::StringRef channel, llvm::ArrayRef< const char * > categories, llvm::StringRef log_file, uint32_t log_options, size_t buffer_size, LogHandlerKind log_handler_kind)
bool IsForwardingEvents()
llvm::StringRef GetPrompt() const
bool GetNotifyVoid() const
llvm::StringRef GetShowProgressAnsiPrefix() const
void AdoptTopIOHandlerFilesIfInvalid(lldb::FileSP &in, lldb::LockableStreamFileSP &out, lldb::LockableStreamFileSP &err)
FormatEntity::Entry GetFrameFormat() const
lldb::StopDisassemblyType GetStopDisassemblyDisplay() const
llvm::StringRef GetTopIOHandlerControlSequence(char ch)
void FlushProcessOutput(Process &process, bool flush_stdout, bool flush_stderr)
Force flushing the process's pending stdout and stderr to the debugger's asynchronous stdout and stde...
void CancelInterruptRequest()
Decrement the "interrupt requested" counter.
static void ReportDiagnosticImpl(lldb::Severity severity, std::string message, std::optional< lldb::user_id_t > debugger_id, std::once_flag *once)
std::vector< lldb::DebuggerSP > DebuggerList
bool SetAutoIndent(bool b)
friend class CommandInterpreter
llvm::StringRef GetStopShowColumnAnsiPrefix() const
static DebuggerList DebuggersRequestingInterruption()
void Dump(Stream *s) const override
static const DiagnosticEventData * GetEventDataFromEvent(const Event *event_ptr)
static DiagnosticsProperties & GetGlobalProperties()
void Record(llvm::StringRef message)
Record a diagnostic message into the always-on, in-memory log.
static Diagnostics & Instance()
static const void * GetBytesFromEvent(const Event *event_ptr)
static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr)
static lldb::StructuredDataPluginSP GetPluginFromEvent(const Event *event_ptr)
static StructuredData::ObjectSP GetObjectFromEvent(const Event *event_ptr)
Execution context objects refer to objects in the execution of the program that is being debugged.
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
const lldb::TargetSP & GetTargetSP() const
Get accessor to get the target shared pointer.
bool HasTargetScope() const
Returns true the ExecutionContext object contains a valid target.
Target & GetTargetRef() const
Returns a reference to the target object.
void EmplaceBack(Args &&...args)
Inserts a new FileSpec into the FileSpecList constructed in-place with the given arguments.
FileSpec CopyByAppendingPathComponent(llvm::StringRef component) const
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
llvm::StringRef GetFileNameExtension() const
Extract the extension of the file.
void EnumerateDirectory(llvm::Twine path, bool find_directories, bool find_files, bool find_other, EnumerateDirectoryCallbackType callback, void *callback_baton)
@ eEnumerateDirectoryResultEnter
Recurse into the current entry if it is a directory or symlink, or next if not.
@ eEnumerateDirectoryResultNext
Enumerate next entry in the current directory.
@ eEnumerateDirectoryResultQuit
Stop directory enumerations at any level.
int Open(const char *path, int flags, int mode=0600)
Wraps open in a platform-independent way.
static FileSystem & Instance()
void Resolve(llvm::SmallVectorImpl< char > &path, bool force_make_absolute=false)
Resolve path to make it canonical.
An abstract base class for files.
bool GetIsRealTerminal()
Return true if this file from a real terminal.
static int kInvalidDescriptor
virtual int GetDescriptor() const
Get underlying OS file descriptor for this file, or kInvalidDescriptor.
bool GetIsTerminalWithColors()
Return true if this file is a terminal which supports colors.
Status Close() override
Flush any buffers and release any resources owned by the file.
bool GetIsInteractive()
Return true if this file is interactive.
const Mangled & GetMangled() const
static void SystemLog(lldb::Severity severity, llvm::StringRef message)
Emit the given message to the operating system log.
static lldb::thread_t GetCurrentThread()
Get the thread token (the one returned by ThreadCreate when the thread was created) for the calling t...
static llvm::StringRef GetSettingName()
static LanguageSet GetLanguagesSupportingREPLs()
static const char * GetNameForLanguageType(lldb::LanguageType language)
Returns the internal LLDB name for the specified language.
static LanguageProperties & GetGlobalLanguageProperties()
static lldb::ListenerSP MakeListener(const char *name)
static llvm::Error EnableLogChannel(const std::shared_ptr< LogHandler > &log_handler_sp, uint32_t log_options, llvm::StringRef channel, llvm::ArrayRef< const char * > categories)
static ModuleListProperties & GetGlobalModuleListProperties()
void AppendCurrentValue(const FileSpec &value)
void SetCurrentValue(const FileSpecList &value)
void SetMinimumValue(uint64_t v)
static lldb::ScriptInterpreterSP GetScriptInterpreterForLanguage(lldb::ScriptLanguage script_lang, Debugger &debugger)
static void DebuggerInitialize(Debugger &debugger)
FollowForkMode GetFollowForkMode() const
static bool GetRestartedFromEvent(const Event *event_ptr)
static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr)
static lldb::StateType GetStateFromEvent(const Event *event_ptr)
A plug-in interface definition class for debugging a process.
static bool HandleProcessStateChangedEvent(const lldb::EventSP &event_sp, Stream *stream, SelectMostRelevant select_most_relevant, bool &pop_process_io_handler)
Centralize the code that handles and prints descriptions for process state changes.
static llvm::StringRef GetStaticBroadcasterClass()
@ eBroadcastBitStructuredData
@ eBroadcastBitStateChanged
virtual size_t GetSTDERR(char *buf, size_t buf_size, Status &error)
Get any available STDERR.
virtual size_t GetSTDOUT(char *buf, size_t buf_size, Status &error)
Get any available STDOUT.
static const ProgressEventData * GetEventDataFromEvent(const Event *event_ptr)
lldb::OptionValuePropertiesSP m_collection_sp
virtual Status SetPropertyValue(const ExecutionContext *exe_ctx, VarSetOperationType op, llvm::StringRef property_path, llvm::StringRef value)
T GetPropertyAtIndexAs(uint32_t idx, T default_value, const ExecutionContext *exe_ctx=nullptr) const
bool SetPropertyAtIndex(uint32_t idx, T t, const ExecutionContext *exe_ctx=nullptr) const
lldb::OptionValuePropertiesSP GetValueProperties() const
static lldb::REPLSP Create(Status &Status, lldb::LanguageType language, Debugger *debugger, Target *target, const char *repl_options)
Get a REPL with an existing target (or, failing that, a debugger to use), and (optional) extra argume...
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
bool Success() const
Test for success condition.
void Flush() override
Flush the stream.
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
size_t Write(const void *src, size_t src_len)
Output character bytes to the stream.
virtual void Flush()=0
Flush the stream.
void AddItem(llvm::StringRef key, ObjectSP value_sp)
std::shared_ptr< Dictionary > DictionarySP
Defines a symbol context baton that can be handed other debug core functions.
Function * function
The Function for a given query.
Symbol * symbol
The Symbol for a given query.
bool Compare(ConstString name, lldb::SymbolType type) const
ConstString GetName() const
lldb::SymbolType GetType() const
Debugger & GetDebugger() const
static void SettingsTerminate()
static llvm::StringRef GetStaticBroadcasterClass()
static TargetProperties & GetGlobalProperties()
static ArchSpec GetDefaultArchitecture()
@ eBroadcastBitBreakpointChanged
static void SettingsInitialize()
static llvm::Expected< HostThread > LaunchThread(llvm::StringRef name, std::function< lldb::thread_result_t()> thread_function, size_t min_stack_byte_size=0)
static lldb::ThreadSP GetThreadFromEvent(const Event *event_ptr)
@ eBroadcastBitThreadSelected
@ eBroadcastBitStackChanged
static llvm::StringRef GetStaticBroadcasterClass()
virtual void DispatchClientTelemetry(const lldb_private::StructuredDataImpl &entry, Debugger *debugger)
static TelemetryManager * GetInstance()
@ SelectMostRelevantFrame
#define LLDB_INVALID_HOST_THREAD
std::string FormatAnsiTerminalCodes(llvm::StringRef format, bool do_color=true)
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
@ eLoadScriptFromSymFileTrue
@ eLoadScriptFromSymFileFalse
@ eLoadScriptFromSymFileWarn
const char * GetVersion()
Retrieves a string representing the complete LLDB version, which includes the lldb version number,...
void(* DebuggerDestroyCallback)(lldb::user_id_t debugger_id, void *baton)
bool StateIsStoppedState(lldb::StateType state, bool must_exist)
Check if a state represents a state where the process or thread is stopped.
NativeFilePosix NativeFile
llvm::sys::DynamicLibrary(* LoadPluginCallbackType)(const lldb::DebuggerSP &debugger_sp, const FileSpec &spec, Status &error)
VarSetOperationType
Settable state variable types.
AutosuggestionMode
Controls how the show-autosuggestion setting drives inline suggestions in the interactive command lin...
@ eAutosuggestionTabMode
Show the prefix that tab completion would insert for the current line.
@ eAutosuggestionOn
Show a suggestion sourced from previously entered commands.
@ eAutosuggestionOff
Do not show any autosuggestion.
ScriptLanguage
Script interpreter types.
Severity
Used for expressing severity in logs and diagnostics.
@ eBroadcastBitExternalProgress
std::shared_ptr< lldb_private::IOHandler > IOHandlerSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::Platform > PlatformSP
DWIMPrintVerbosity
Enum to control the verbosity level of dwim-print execution.
@ eDWIMPrintVerbosityFull
Always print a message indicating how dwim-print is evaluating its expression.
@ eDWIMPrintVerbosityNone
Run dwim-print with no verbosity.
@ eDWIMPrintVerbosityExpression
Print a message when dwim-print uses expression evaluation.
StateType
Process and Thread States.
@ eStateStopped
Process or thread is stopped and can be examined.
LanguageType
Programming language type.
@ eLanguageTypeUnknown
Unknown or invalid language value.
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
std::shared_ptr< lldb_private::StructuredDataPlugin > StructuredDataPluginSP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::Debugger > DebuggerSP
StopDisassemblyType
Used to determine when to show disassembly.
@ eStopDisassemblyTypeNever
@ eStopDisassemblyTypeNoSource
@ eStopDisassemblyTypeAlways
@ eStopDisassemblyTypeNoDebugInfo
@ eStopShowColumnAnsiOrCaret
std::shared_ptr< lldb_private::Event > EventSP
std::shared_ptr< lldb_private::Listener > ListenerSP
std::shared_ptr< lldb_private::LockableStreamFile > LockableStreamFileSP
void(* LogOutputCallback)(const char *, void *baton)
std::shared_ptr< lldb_private::Target > TargetSP
std::unique_ptr< lldb_private::Stream > StreamUP
std::shared_ptr< lldb_private::File > FileSP
std::shared_ptr< lldb_private::REPL > REPLSP
lldb_private::DebuggerDestroyCallback callback
A SmallBitVector that represents a set of source languages (lldb::LanguageType).
std::optional< lldb::LanguageType > GetSingularLanguage()
If the set contains a single language only, return it.
void AppendSafeAutoLoadPaths(FileSpec path)
Appends a path to the testing.safe-auto-load-paths setting.
static TestingProperties & GetGlobalTestingProperties()
FileSpecList GetSafeAutoLoadPaths() const
Callers should use Debugger::GetSafeAutoLoadPaths since it accounts for default paths configured via ...
void SetSafeAutoLoadPaths(FileSpecList paths)
Overwrites the testing.safe-auto-load-paths settings.
bool GetInjectVarLocListError() const
UserID(lldb::user_id_t uid=LLDB_INVALID_UID)
Construct with optional user ID.
lldb::user_id_t GetID() const
Get accessor for the user ID.
Helper RAII class for collecting telemetry.