
Extend support in LLDB for WebAssembly. This PR adds a new Process plugin (ProcessWasm) that extends ProcessGDBRemote for WebAssembly targets. It adds support for WebAssembly's memory model with separate address spaces, and the ability to fetch the call stack from the WebAssembly runtime. I have tested this change with the WebAssembly Micro Runtime (WAMR, https://github.com/bytecodealliance/wasm-micro-runtime) which implements a GDB debug stub and supports the qWasmCallStack packet. ``` (lldb) process connect --plugin wasm connect://localhost:4567 Process 1 stopped * thread #1, name = 'nobody', stop reason = trace frame #0: 0x40000000000001ad wasm32_args.wasm`main: -> 0x40000000000001ad <+3>: global.get 0 0x40000000000001b3 <+9>: i32.const 16 0x40000000000001b5 <+11>: i32.sub 0x40000000000001b6 <+12>: local.set 0 (lldb) b add Breakpoint 1: where = wasm32_args.wasm`add + 28 at test.c:4:12, address = 0x400000000000019c (lldb) c Process 1 resuming Process 1 stopped * thread #1, name = 'nobody', stop reason = breakpoint 1.1 frame #0: 0x400000000000019c wasm32_args.wasm`add(a=<unavailable>, b=<unavailable>) at test.c:4:12 1 int 2 add(int a, int b) 3 { -> 4 return a + b; 5 } 6 7 int (lldb) bt * thread #1, name = 'nobody', stop reason = breakpoint 1.1 * frame #0: 0x400000000000019c wasm32_args.wasm`add(a=<unavailable>, b=<unavailable>) at test.c:4:12 frame #1: 0x40000000000001e5 wasm32_args.wasm`main at test.c:12:12 frame #2: 0x40000000000001fe wasm32_args.wasm ``` This PR is based on an unmerged patch from Paolo Severini: https://reviews.llvm.org/D78801. I intentionally stuck to the foundations to keep this PR small. I have more PRs in the pipeline to support the other features/packets. My motivation for supporting Wasm is to support debugging Swift compiled to WebAssembly: https://www.swift.org/documentation/articles/wasm-getting-started.html
506 lines
18 KiB
C++
506 lines
18 KiB
C++
//===-- ProcessGDBRemote.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_PROCESS_GDB_REMOTE_PROCESSGDBREMOTE_H
|
|
#define LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_PROCESSGDBREMOTE_H
|
|
|
|
#include <atomic>
|
|
#include <map>
|
|
#include <mutex>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "lldb/Core/LoadedModuleInfoList.h"
|
|
#include "lldb/Core/ModuleSpec.h"
|
|
#include "lldb/Core/ThreadSafeValue.h"
|
|
#include "lldb/Host/HostThread.h"
|
|
#include "lldb/Target/DynamicRegisterInfo.h"
|
|
#include "lldb/Target/Process.h"
|
|
#include "lldb/Target/Thread.h"
|
|
#include "lldb/Utility/ArchSpec.h"
|
|
#include "lldb/Utility/Broadcaster.h"
|
|
#include "lldb/Utility/ConstString.h"
|
|
#include "lldb/Utility/GDBRemote.h"
|
|
#include "lldb/Utility/Status.h"
|
|
#include "lldb/Utility/StreamString.h"
|
|
#include "lldb/Utility/StringExtractor.h"
|
|
#include "lldb/Utility/StringList.h"
|
|
#include "lldb/Utility/StructuredData.h"
|
|
#include "lldb/lldb-private-forward.h"
|
|
|
|
#include "GDBRemoteCommunicationClient.h"
|
|
#include "GDBRemoteRegisterContext.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
namespace lldb_private {
|
|
namespace process_gdb_remote {
|
|
|
|
class ThreadGDBRemote;
|
|
|
|
class ProcessGDBRemote : public Process,
|
|
private GDBRemoteClientBase::ContinueDelegate {
|
|
public:
|
|
~ProcessGDBRemote() override;
|
|
|
|
static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
|
|
lldb::ListenerSP listener_sp,
|
|
const FileSpec *crash_file_path,
|
|
bool can_connect);
|
|
|
|
static void Initialize();
|
|
|
|
static void DebuggerInitialize(Debugger &debugger);
|
|
|
|
static void Terminate();
|
|
|
|
static llvm::StringRef GetPluginNameStatic() { return "gdb-remote"; }
|
|
|
|
static llvm::StringRef GetPluginDescriptionStatic();
|
|
|
|
static std::chrono::seconds GetPacketTimeout();
|
|
|
|
ArchSpec GetSystemArchitecture() override;
|
|
|
|
// Check if a given Process
|
|
bool CanDebug(lldb::TargetSP target_sp,
|
|
bool plugin_specified_by_name) override;
|
|
|
|
CommandObject *GetPluginCommandObject() override;
|
|
|
|
void DumpPluginHistory(Stream &s) override;
|
|
|
|
// Creating a new process, or attaching to an existing one
|
|
Status DoWillLaunch(Module *module) override;
|
|
|
|
Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
|
|
|
void DidLaunch() override;
|
|
|
|
Status DoWillAttachToProcessWithID(lldb::pid_t pid) override;
|
|
|
|
Status DoWillAttachToProcessWithName(const char *process_name,
|
|
bool wait_for_launch) override;
|
|
|
|
Status DoConnectRemote(llvm::StringRef remote_url) override;
|
|
|
|
Status WillLaunchOrAttach();
|
|
|
|
Status DoAttachToProcessWithID(lldb::pid_t pid,
|
|
const ProcessAttachInfo &attach_info) override;
|
|
|
|
Status
|
|
DoAttachToProcessWithName(const char *process_name,
|
|
const ProcessAttachInfo &attach_info) override;
|
|
|
|
void DidAttach(ArchSpec &process_arch) override;
|
|
|
|
// PluginInterface protocol
|
|
llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
|
|
|
|
// Process Control
|
|
Status WillResume() override;
|
|
|
|
bool SupportsReverseDirection() override;
|
|
|
|
Status DoResume(lldb::RunDirection direction) override;
|
|
|
|
Status DoHalt(bool &caused_stop) override;
|
|
|
|
Status DoDetach(bool keep_stopped) override;
|
|
|
|
bool DetachRequiresHalt() override { return true; }
|
|
|
|
Status DoSignal(int signal) override;
|
|
|
|
Status DoDestroy() override;
|
|
|
|
void RefreshStateAfterStop() override;
|
|
|
|
void SetUnixSignals(const lldb::UnixSignalsSP &signals_sp);
|
|
|
|
// Process Queries
|
|
bool IsAlive() override;
|
|
|
|
lldb::addr_t GetImageInfoAddress() override;
|
|
|
|
void WillPublicStop() override;
|
|
|
|
// Process Memory
|
|
size_t DoReadMemory(lldb::addr_t addr, void *buf, size_t size,
|
|
Status &error) override;
|
|
|
|
Status
|
|
WriteObjectFile(std::vector<ObjectFile::LoadableData> entries) override;
|
|
|
|
size_t DoWriteMemory(lldb::addr_t addr, const void *buf, size_t size,
|
|
Status &error) override;
|
|
|
|
lldb::addr_t DoAllocateMemory(size_t size, uint32_t permissions,
|
|
Status &error) override;
|
|
|
|
Status DoDeallocateMemory(lldb::addr_t ptr) override;
|
|
|
|
// Process STDIO
|
|
size_t PutSTDIN(const char *buf, size_t buf_size, Status &error) override;
|
|
|
|
// Process Breakpoints
|
|
Status EnableBreakpointSite(BreakpointSite *bp_site) override;
|
|
|
|
Status DisableBreakpointSite(BreakpointSite *bp_site) override;
|
|
|
|
// Process Watchpoints
|
|
Status EnableWatchpoint(lldb::WatchpointSP wp_sp,
|
|
bool notify = true) override;
|
|
|
|
Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
|
|
bool notify = true) override;
|
|
|
|
std::optional<uint32_t> GetWatchpointSlotCount() override;
|
|
|
|
llvm::Expected<TraceSupportedResponse> TraceSupported() override;
|
|
|
|
llvm::Error TraceStop(const TraceStopRequest &request) override;
|
|
|
|
llvm::Error TraceStart(const llvm::json::Value &request) override;
|
|
|
|
llvm::Expected<std::string> TraceGetState(llvm::StringRef type) override;
|
|
|
|
llvm::Expected<std::vector<uint8_t>>
|
|
TraceGetBinaryData(const TraceGetBinaryDataRequest &request) override;
|
|
|
|
std::optional<bool> DoGetWatchpointReportedAfter() override;
|
|
|
|
bool StartNoticingNewThreads() override;
|
|
|
|
bool StopNoticingNewThreads() override;
|
|
|
|
GDBRemoteCommunicationClient &GetGDBRemote() { return m_gdb_comm; }
|
|
|
|
Status SendEventData(const char *data) override;
|
|
|
|
// Override DidExit so we can disconnect from the remote GDB server
|
|
void DidExit() override;
|
|
|
|
void SetUserSpecifiedMaxMemoryTransferSize(uint64_t user_specified_max);
|
|
|
|
bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
|
|
ModuleSpec &module_spec) override;
|
|
|
|
void PrefetchModuleSpecs(llvm::ArrayRef<FileSpec> module_file_specs,
|
|
const llvm::Triple &triple) override;
|
|
|
|
llvm::VersionTuple GetHostOSVersion() override;
|
|
llvm::VersionTuple GetHostMacCatalystVersion() override;
|
|
|
|
llvm::Error LoadModules() override;
|
|
|
|
llvm::Expected<LoadedModuleInfoList> GetLoadedModuleList() override;
|
|
|
|
Status GetFileLoadAddress(const FileSpec &file, bool &is_loaded,
|
|
lldb::addr_t &load_addr) override;
|
|
|
|
void ModulesDidLoad(ModuleList &module_list) override;
|
|
|
|
StructuredData::ObjectSP
|
|
GetLoadedDynamicLibrariesInfos(lldb::addr_t image_list_address,
|
|
lldb::addr_t image_count) override;
|
|
|
|
Status
|
|
ConfigureStructuredData(llvm::StringRef type_name,
|
|
const StructuredData::ObjectSP &config_sp) override;
|
|
|
|
StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos() override;
|
|
|
|
StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos(
|
|
const std::vector<lldb::addr_t> &load_addresses) override;
|
|
|
|
StructuredData::ObjectSP
|
|
GetLoadedDynamicLibrariesInfos_sender(StructuredData::ObjectSP args);
|
|
|
|
StructuredData::ObjectSP GetSharedCacheInfo() override;
|
|
|
|
StructuredData::ObjectSP GetDynamicLoaderProcessState() override;
|
|
|
|
std::string HarmonizeThreadIdsForProfileData(
|
|
StringExtractorGDBRemote &inputStringExtractor);
|
|
|
|
void DidFork(lldb::pid_t child_pid, lldb::tid_t child_tid) override;
|
|
void DidVFork(lldb::pid_t child_pid, lldb::tid_t child_tid) override;
|
|
void DidVForkDone() override;
|
|
void DidExec() override;
|
|
|
|
llvm::Expected<bool> SaveCore(llvm::StringRef outfile) override;
|
|
|
|
protected:
|
|
friend class ThreadGDBRemote;
|
|
friend class GDBRemoteCommunicationClient;
|
|
friend class GDBRemoteRegisterContext;
|
|
|
|
ProcessGDBRemote(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp);
|
|
|
|
virtual std::shared_ptr<ThreadGDBRemote> CreateThread(lldb::tid_t tid);
|
|
|
|
bool SupportsMemoryTagging() override;
|
|
|
|
/// Broadcaster event bits definitions.
|
|
enum {
|
|
eBroadcastBitAsyncContinue = (1 << 0),
|
|
eBroadcastBitAsyncThreadShouldExit = (1 << 1),
|
|
eBroadcastBitAsyncThreadDidExit = (1 << 2)
|
|
};
|
|
|
|
GDBRemoteCommunicationClient m_gdb_comm;
|
|
std::atomic<lldb::pid_t> m_debugserver_pid;
|
|
|
|
std::optional<StringExtractorGDBRemote> m_last_stop_packet;
|
|
std::recursive_mutex m_last_stop_packet_mutex;
|
|
|
|
GDBRemoteDynamicRegisterInfoSP m_register_info_sp;
|
|
Broadcaster m_async_broadcaster;
|
|
lldb::ListenerSP m_async_listener_sp;
|
|
HostThread m_async_thread;
|
|
std::recursive_mutex m_async_thread_state_mutex;
|
|
typedef std::vector<lldb::tid_t> tid_collection;
|
|
typedef std::vector<std::pair<lldb::tid_t, int>> tid_sig_collection;
|
|
typedef std::map<lldb::addr_t, lldb::addr_t> MMapMap;
|
|
typedef std::map<uint32_t, std::string> ExpeditedRegisterMap;
|
|
tid_collection m_thread_ids; // Thread IDs for all threads. This list gets
|
|
// updated after stopping
|
|
std::vector<lldb::addr_t> m_thread_pcs; // PC values for all the threads.
|
|
StructuredData::ObjectSP m_jstopinfo_sp; // Stop info only for any threads
|
|
// that have valid stop infos
|
|
StructuredData::ObjectSP m_jthreadsinfo_sp; // Full stop info, expedited
|
|
// registers and memory for all
|
|
// threads if "jThreadsInfo"
|
|
// packet is supported
|
|
tid_collection m_continue_c_tids; // 'c' for continue
|
|
tid_sig_collection m_continue_C_tids; // 'C' for continue with signal
|
|
tid_collection m_continue_s_tids; // 's' for step
|
|
tid_sig_collection m_continue_S_tids; // 'S' for step with signal
|
|
uint64_t m_max_memory_size; // The maximum number of bytes to read/write when
|
|
// reading and writing memory
|
|
uint64_t m_remote_stub_max_memory_size; // The maximum memory size the remote
|
|
// gdb stub can handle
|
|
MMapMap m_addr_to_mmap_size;
|
|
lldb::BreakpointSP m_thread_create_bp_sp;
|
|
bool m_waiting_for_attach;
|
|
lldb::CommandObjectSP m_command_sp;
|
|
int64_t m_breakpoint_pc_offset;
|
|
lldb::tid_t m_initial_tid; // The initial thread ID, given by stub on attach
|
|
bool m_use_g_packet_for_reading;
|
|
|
|
bool m_allow_flash_writes;
|
|
using FlashRangeVector = lldb_private::RangeVector<lldb::addr_t, size_t>;
|
|
using FlashRange = FlashRangeVector::Entry;
|
|
FlashRangeVector m_erased_flash_ranges;
|
|
|
|
// Number of vfork() operations being handled.
|
|
uint32_t m_vfork_in_progress_count;
|
|
|
|
// Accessors
|
|
bool IsRunning(lldb::StateType state) {
|
|
return state == lldb::eStateRunning || IsStepping(state);
|
|
}
|
|
|
|
bool IsStepping(lldb::StateType state) {
|
|
return state == lldb::eStateStepping;
|
|
}
|
|
|
|
bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; }
|
|
|
|
bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; }
|
|
|
|
void Clear();
|
|
|
|
bool DoUpdateThreadList(ThreadList &old_thread_list,
|
|
ThreadList &new_thread_list) override;
|
|
|
|
Status EstablishConnectionIfNeeded(const ProcessInfo &process_info);
|
|
|
|
Status LaunchAndConnectToDebugserver(const ProcessInfo &process_info);
|
|
|
|
void KillDebugserverProcess();
|
|
|
|
void BuildDynamicRegisterInfo(bool force);
|
|
|
|
void SetLastStopPacket(const StringExtractorGDBRemote &response);
|
|
|
|
bool ParsePythonTargetDefinition(const FileSpec &target_definition_fspec);
|
|
|
|
DataExtractor GetAuxvData() override;
|
|
|
|
StructuredData::ObjectSP GetExtendedInfoForThread(lldb::tid_t tid);
|
|
|
|
void GetMaxMemorySize();
|
|
|
|
bool CalculateThreadStopInfo(ThreadGDBRemote *thread);
|
|
|
|
size_t UpdateThreadPCsFromStopReplyThreadsValue(llvm::StringRef value);
|
|
|
|
size_t UpdateThreadIDsFromStopReplyThreadsValue(llvm::StringRef value);
|
|
|
|
bool StartAsyncThread();
|
|
|
|
void StopAsyncThread();
|
|
|
|
lldb::thread_result_t AsyncThread();
|
|
|
|
static void
|
|
MonitorDebugserverProcess(std::weak_ptr<ProcessGDBRemote> process_wp,
|
|
lldb::pid_t pid, int signo, int exit_status);
|
|
|
|
lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
|
|
|
|
bool
|
|
GetThreadStopInfoFromJSON(ThreadGDBRemote *thread,
|
|
const StructuredData::ObjectSP &thread_infos_sp);
|
|
|
|
lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);
|
|
|
|
lldb::ThreadSP
|
|
SetThreadStopInfo(lldb::tid_t tid,
|
|
ExpeditedRegisterMap &expedited_register_map, uint8_t signo,
|
|
const std::string &thread_name, const std::string &reason,
|
|
const std::string &description, uint32_t exc_type,
|
|
const std::vector<lldb::addr_t> &exc_data,
|
|
lldb::addr_t thread_dispatch_qaddr, bool queue_vars_valid,
|
|
lldb_private::LazyBool associated_with_libdispatch_queue,
|
|
lldb::addr_t dispatch_queue_t, std::string &queue_name,
|
|
lldb::QueueKind queue_kind, uint64_t queue_serial);
|
|
|
|
void ClearThreadIDList();
|
|
|
|
bool UpdateThreadIDList();
|
|
|
|
void DidLaunchOrAttach(ArchSpec &process_arch);
|
|
void LoadStubBinaries();
|
|
void MaybeLoadExecutableModule();
|
|
|
|
Status ConnectToDebugserver(llvm::StringRef host_port);
|
|
|
|
const char *GetDispatchQueueNameForThread(lldb::addr_t thread_dispatch_qaddr,
|
|
std::string &dispatch_queue_name);
|
|
|
|
DynamicLoader *GetDynamicLoader() override;
|
|
|
|
bool GetGDBServerRegisterInfoXMLAndProcess(
|
|
ArchSpec &arch_to_use, std::string xml_filename,
|
|
std::vector<DynamicRegisterInfo::Register> ®isters);
|
|
|
|
// Convert DynamicRegisterInfo::Registers into RegisterInfos and add
|
|
// to the dynamic register list.
|
|
void AddRemoteRegisters(std::vector<DynamicRegisterInfo::Register> ®isters,
|
|
const ArchSpec &arch_to_use);
|
|
// Query remote GDBServer for register information
|
|
bool GetGDBServerRegisterInfo(ArchSpec &arch);
|
|
|
|
lldb::ModuleSP LoadModuleAtAddress(const FileSpec &file,
|
|
lldb::addr_t link_map,
|
|
lldb::addr_t base_addr,
|
|
bool value_is_offset);
|
|
|
|
Status UpdateAutomaticSignalFiltering() override;
|
|
|
|
Status FlashErase(lldb::addr_t addr, size_t size);
|
|
|
|
Status FlashDone();
|
|
|
|
bool HasErased(FlashRange range);
|
|
|
|
llvm::Expected<std::vector<uint8_t>>
|
|
DoReadMemoryTags(lldb::addr_t addr, size_t len, int32_t type) override;
|
|
|
|
Status DoWriteMemoryTags(lldb::addr_t addr, size_t len, int32_t type,
|
|
const std::vector<uint8_t> &tags) override;
|
|
|
|
Status DoGetMemoryRegionInfo(lldb::addr_t load_addr,
|
|
MemoryRegionInfo ®ion_info) override;
|
|
|
|
private:
|
|
// For ProcessGDBRemote only
|
|
std::string m_partial_profile_data;
|
|
std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
|
|
uint64_t m_last_signals_version = 0;
|
|
|
|
static bool NewThreadNotifyBreakpointHit(void *baton,
|
|
StoppointCallbackContext *context,
|
|
lldb::user_id_t break_id,
|
|
lldb::user_id_t break_loc_id);
|
|
|
|
/// Remove the breakpoints associated with thread creation from the Target.
|
|
void RemoveNewThreadBreakpoints();
|
|
|
|
// ContinueDelegate interface
|
|
void HandleAsyncStdout(llvm::StringRef out) override;
|
|
void HandleAsyncMisc(llvm::StringRef data) override;
|
|
void HandleStopReply() override;
|
|
void HandleAsyncStructuredDataPacket(llvm::StringRef data) override;
|
|
|
|
lldb::ThreadSP
|
|
HandleThreadAsyncInterrupt(uint8_t signo,
|
|
const std::string &description) override;
|
|
|
|
void SetThreadPc(const lldb::ThreadSP &thread_sp, uint64_t index);
|
|
using ModuleCacheKey = std::pair<std::string, std::string>;
|
|
// KeyInfo for the cached module spec DenseMap.
|
|
// The invariant is that all real keys will have the file and architecture
|
|
// set.
|
|
// The empty key has an empty file and an empty arch.
|
|
// The tombstone key has an invalid arch and an empty file.
|
|
// The comparison and hash functions take the file name and architecture
|
|
// triple into account.
|
|
struct ModuleCacheInfo {
|
|
static ModuleCacheKey getEmptyKey() { return ModuleCacheKey(); }
|
|
|
|
static ModuleCacheKey getTombstoneKey() { return ModuleCacheKey("", "T"); }
|
|
|
|
static unsigned getHashValue(const ModuleCacheKey &key) {
|
|
return llvm::hash_combine(key.first, key.second);
|
|
}
|
|
|
|
static bool isEqual(const ModuleCacheKey &LHS, const ModuleCacheKey &RHS) {
|
|
return LHS == RHS;
|
|
}
|
|
};
|
|
|
|
llvm::DenseMap<ModuleCacheKey, ModuleSpec, ModuleCacheInfo>
|
|
m_cached_module_specs;
|
|
|
|
ProcessGDBRemote(const ProcessGDBRemote &) = delete;
|
|
const ProcessGDBRemote &operator=(const ProcessGDBRemote &) = delete;
|
|
|
|
// fork helpers
|
|
void DidForkSwitchSoftwareBreakpoints(bool enable);
|
|
void DidForkSwitchHardwareTraps(bool enable);
|
|
|
|
void ParseExpeditedRegisters(ExpeditedRegisterMap &expedited_register_map,
|
|
lldb::ThreadSP thread_sp);
|
|
|
|
// Lists of register fields generated from the remote's target XML.
|
|
// Pointers to these RegisterFlags will be set in the register info passed
|
|
// back to the upper levels of lldb. Doing so is safe because this class will
|
|
// live at least as long as the debug session. We therefore do not store the
|
|
// data directly in the map because the map may reallocate it's storage as new
|
|
// entries are added. Which would invalidate any pointers set in the register
|
|
// info up to that point.
|
|
llvm::StringMap<std::unique_ptr<RegisterFlags>> m_registers_flags_types;
|
|
|
|
// Enum types are referenced by register fields. This does not store the data
|
|
// directly because the map may reallocate. Pointers to these are contained
|
|
// within instances of RegisterFlags.
|
|
llvm::StringMap<std::unique_ptr<FieldEnum>> m_registers_enum_types;
|
|
};
|
|
|
|
} // namespace process_gdb_remote
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_PROCESSGDBREMOTE_H
|