1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
//===-- ProtocolUtils.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 "ProtocolUtils.h"
#include "JSONUtils.h"
#include "LLDBUtils.h"
#include "lldb/API/SBDebugger.h"
#include "lldb/API/SBDeclaration.h"
#include "lldb/API/SBFormat.h"
#include "lldb/API/SBMutex.h"
#include "lldb/API/SBStream.h"
#include "lldb/API/SBTarget.h"
#include "lldb/API/SBThread.h"
#include "lldb/Host/PosixApi.h" // Adds PATH_MAX for windows
#include <iomanip>
#include <optional>
#include <sstream>
using namespace lldb_dap::protocol;
namespace lldb_dap {
static bool ShouldDisplayAssemblySource(
lldb::SBAddress address,
lldb::StopDisassemblyType stop_disassembly_display) {
if (stop_disassembly_display == lldb::eStopDisassemblyTypeNever)
return false;
if (stop_disassembly_display == lldb::eStopDisassemblyTypeAlways)
return true;
// A line entry of 0 indicates the line is compiler generated i.e. no source
// file is associated with the frame.
auto line_entry = address.GetLineEntry();
auto file_spec = line_entry.GetFileSpec();
if (!file_spec.IsValid() || line_entry.GetLine() == 0 ||
line_entry.GetLine() == LLDB_INVALID_LINE_NUMBER)
return true;
if (stop_disassembly_display == lldb::eStopDisassemblyTypeNoSource &&
!file_spec.Exists()) {
return true;
}
return false;
}
static uint64_t GetDebugInfoSizeInSection(lldb::SBSection section) {
uint64_t debug_info_size = 0;
const llvm::StringRef section_name(section.GetName());
if (section_name.starts_with(".debug") ||
section_name.starts_with("__debug") ||
section_name.starts_with(".apple") || section_name.starts_with("__apple"))
debug_info_size += section.GetFileByteSize();
const size_t num_sub_sections = section.GetNumSubSections();
for (size_t i = 0; i < num_sub_sections; i++)
debug_info_size +=
GetDebugInfoSizeInSection(section.GetSubSectionAtIndex(i));
return debug_info_size;
}
static uint64_t GetDebugInfoSize(lldb::SBModule module) {
uint64_t debug_info_size = 0;
const size_t num_sections = module.GetNumSections();
for (size_t i = 0; i < num_sections; i++)
debug_info_size += GetDebugInfoSizeInSection(module.GetSectionAtIndex(i));
return debug_info_size;
}
std::string ConvertDebugInfoSizeToString(uint64_t debug_size) {
std::ostringstream oss;
oss << std::fixed << std::setprecision(1);
if (debug_size < 1024) {
oss << debug_size << "B";
} else if (debug_size < static_cast<uint64_t>(1024 * 1024)) {
double kb = double(debug_size) / 1024.0;
oss << kb << "KB";
} else if (debug_size < 1024 * 1024 * 1024) {
double mb = double(debug_size) / (1024.0 * 1024.0);
oss << mb << "MB";
} else {
double gb = double(debug_size) / (1024.0 * 1024.0 * 1024.0);
oss << gb << "GB";
}
return oss.str();
}
std::optional<protocol::Module> CreateModule(const lldb::SBTarget &target,
lldb::SBModule &module,
bool id_only) {
if (!target.IsValid() || !module.IsValid())
return std::nullopt;
const llvm::StringRef uuid = module.GetUUIDString();
if (uuid.empty())
return std::nullopt;
protocol::Module p_module;
p_module.id = uuid;
if (id_only)
return p_module;
std::array<char, PATH_MAX> path_buffer{};
if (const lldb::SBFileSpec file_spec = module.GetFileSpec()) {
p_module.name = file_spec.GetFilename();
const uint32_t path_size =
file_spec.GetPath(path_buffer.data(), path_buffer.size());
p_module.path = std::string(path_buffer.data(), path_size);
}
if (const uint32_t num_compile_units = module.GetNumCompileUnits();
num_compile_units > 0) {
p_module.symbolStatus = "Symbols loaded.";
p_module.debugInfoSizeBytes = GetDebugInfoSize(module);
if (const lldb::SBFileSpec symbol_fspec = module.GetSymbolFileSpec()) {
const uint32_t path_size =
symbol_fspec.GetPath(path_buffer.data(), path_buffer.size());
p_module.symbolFilePath = std::string(path_buffer.data(), path_size);
}
} else {
p_module.symbolStatus = "Symbols not found.";
}
const auto load_address = module.GetObjectFileHeaderAddress();
if (const lldb::addr_t raw_address = load_address.GetLoadAddress(target);
raw_address != LLDB_INVALID_ADDRESS)
p_module.addressRange = llvm::formatv("{0:x}", raw_address);
std::array<uint32_t, 3> version_nums{};
const uint32_t num_versions =
module.GetVersion(version_nums.data(), version_nums.size());
if (num_versions > 0) {
p_module.version = llvm::formatv(
"{:$[.]}", llvm::make_range(version_nums.begin(),
version_nums.begin() + num_versions));
}
return p_module;
}
std::optional<protocol::Source> CreateSource(const lldb::SBFileSpec &file) {
if (!file.IsValid())
return std::nullopt;
protocol::Source source;
if (const char *name = file.GetFilename())
source.name = name;
char path[PATH_MAX] = "";
if (file.GetPath(path, sizeof(path)) &&
lldb::SBFileSpec::ResolvePath(path, path, PATH_MAX))
source.path = path;
return source;
}
bool IsAssemblySource(const protocol::Source &source) {
// According to the specification, a source must have either `path` or
// `sourceReference` specified. We use `path` for sources with known source
// code, and `sourceReferences` when falling back to assembly.
return source.sourceReference.value_or(LLDB_DAP_INVALID_SRC_REF) >
LLDB_DAP_INVALID_SRC_REF;
}
bool DisplayAssemblySource(lldb::SBDebugger &debugger,
lldb::SBAddress address) {
const lldb::StopDisassemblyType stop_disassembly_display =
GetStopDisassemblyDisplay(debugger);
return ShouldDisplayAssemblySource(address, stop_disassembly_display);
}
std::string GetLoadAddressString(const lldb::addr_t addr) {
return "0x" + llvm::utohexstr(addr, false, 16);
}
protocol::Thread CreateThread(lldb::SBThread &thread, lldb::SBFormat &format) {
std::string name;
lldb::SBStream stream;
if (format && thread.GetDescriptionWithFormat(format, stream).Success()) {
name = stream.GetData();
} else {
llvm::StringRef thread_name(thread.GetName());
llvm::StringRef queue_name(thread.GetQueueName());
if (!thread_name.empty()) {
name = thread_name.str();
} else if (!queue_name.empty()) {
auto kind = thread.GetQueue().GetKind();
std::string queue_kind_label = "";
if (kind == lldb::eQueueKindSerial)
queue_kind_label = " (serial)";
else if (kind == lldb::eQueueKindConcurrent)
queue_kind_label = " (concurrent)";
name = llvm::formatv("Thread {0} Queue: {1}{2}", thread.GetIndexID(),
queue_name, queue_kind_label)
.str();
} else {
name = llvm::formatv("Thread {0}", thread.GetIndexID()).str();
}
}
return protocol::Thread{thread.GetThreadID(), name};
}
std::vector<protocol::Thread> GetThreads(lldb::SBProcess process,
lldb::SBFormat &format) {
lldb::SBMutex lock = process.GetTarget().GetAPIMutex();
std::lock_guard<lldb::SBMutex> guard(lock);
std::vector<protocol::Thread> threads;
const uint32_t num_threads = process.GetNumThreads();
threads.reserve(num_threads);
for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) {
lldb::SBThread thread = process.GetThreadAtIndex(thread_idx);
threads.emplace_back(CreateThread(thread, format));
}
return threads;
}
ExceptionBreakpointsFilter
CreateExceptionBreakpointFilter(const ExceptionBreakpoint &bp) {
ExceptionBreakpointsFilter filter;
filter.filter = bp.GetFilter();
filter.label = bp.GetLabel();
filter.description = bp.GetLabel();
filter.defaultState = ExceptionBreakpoint::kDefaultValue;
filter.supportsCondition = true;
return filter;
}
Variable CreateVariable(lldb::SBValue v, int64_t var_ref, bool format_hex,
bool auto_variable_summaries,
bool synthetic_child_debugging, bool is_name_duplicated,
std::optional<std::string> custom_name) {
VariableDescription desc(v, auto_variable_summaries, format_hex,
is_name_duplicated, custom_name);
Variable var;
var.name = desc.name;
var.value = desc.display_value;
var.type = desc.display_type_name;
if (!desc.evaluate_name.empty())
var.evaluateName = desc.evaluate_name;
// If we have a type with many children, we would like to be able to
// give a hint to the IDE that the type has indexed children so that the
// request can be broken up in grabbing only a few children at a time. We
// want to be careful and only call "v.GetNumChildren()" if we have an array
// type or if we have a synthetic child provider producing indexed children.
// We don't want to call "v.GetNumChildren()" on all objects as class, struct
// and union types don't need to be completed if they are never expanded. So
// we want to avoid calling this to only cases where we it makes sense to keep
// performance high during normal debugging.
// If we have an array type, say that it is indexed and provide the number
// of children in case we have a huge array. If we don't do this, then we
// might take a while to produce all children at onces which can delay your
// debug session.
if (desc.type_obj.IsArrayType()) {
var.indexedVariables = v.GetNumChildren();
} else if (v.IsSynthetic()) {
// For a type with a synthetic child provider, the SBType of "v" won't tell
// us anything about what might be displayed. Instead, we check if the first
// child's name is "[0]" and then say it is indexed. We call
// GetNumChildren() only if the child name matches to avoid a potentially
// expensive operation.
if (lldb::SBValue first_child = v.GetChildAtIndex(0)) {
llvm::StringRef first_child_name = first_child.GetName();
if (first_child_name == "[0]") {
size_t num_children = v.GetNumChildren();
// If we are creating a "[raw]" fake child for each synthetic type, we
// have to account for it when returning indexed variables.
if (synthetic_child_debugging)
++num_children;
var.indexedVariables = num_children;
}
}
}
if (v.MightHaveChildren())
var.variablesReference = var_ref;
if (v.GetDeclaration().IsValid())
var.declarationLocationReference = PackLocation(var_ref, false);
if (ValuePointsToCode(v))
var.valueLocationReference = PackLocation(var_ref, true);
if (lldb::addr_t addr = v.GetLoadAddress(); addr != LLDB_INVALID_ADDRESS)
var.memoryReference = addr;
return var;
}
} // namespace lldb_dap
|