
Introduce a new object and symbol file format with the goal of mapping addresses to symbol names. I'd like to think of is as an extremely simple textual symtab. The file format consists of a triple, a UUID and a list of symbols. JSON is used for the encoding, but that's mostly an implementation detail. The goal of the format was to be simple and human readable. The new file format is motivated by two use cases: - Stripped binaries: when a binary is stripped, you lose the ability to do thing like setting symbolic breakpoints. You can keep the unstripped binary around, but if all you need is the stripped symbols then that's a lot of overhead. Instead, we could save the stripped symbols to a file and load them in the debugger when needed. I want to extend llvm-strip to have a mode where it emits this new file format. - Interactive crashlogs: with interactive crashlogs, if we don't have the binary or the dSYM for a particular module, we currently show an unnamed symbol for those frames. This is a regression compared to the textual format, that has these frames pre-symbolicated. Given that this information is available in the JSON crashlog, we need a way to tell LLDB about it. With the new symbol file format, we can easily synthesize a symbol file for each of those modules and load them to symbolicate those frames. Here's an example of the file format: { "triple": "arm64-apple-macosx13.0.0", "uuid": "36D0CCE7-8ED2-3CA3-96B0-48C1764DA908", "symbols": [ { "name": "main", "type": "code", "size": 32, "address": 4294983568 }, { "name": "foo", "type": "code", "size": 8, "address": 4294983560 } ] } Differential revision: https://reviews.llvm.org/D145180
106 lines
3.1 KiB
C++
106 lines
3.1 KiB
C++
//===-- SymbolFileJSON.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 "SymbolFileJSON.h"
|
|
|
|
#include "Plugins/ObjectFile/JSON/ObjectFileJSON.h"
|
|
#include "lldb/Core/Module.h"
|
|
#include "lldb/Core/PluginManager.h"
|
|
#include "lldb/Symbol/CompileUnit.h"
|
|
#include "lldb/Symbol/Function.h"
|
|
#include "lldb/Symbol/ObjectFile.h"
|
|
#include "lldb/Symbol/Symbol.h"
|
|
#include "lldb/Symbol/SymbolContext.h"
|
|
#include "lldb/Symbol/Symtab.h"
|
|
#include "lldb/Symbol/TypeList.h"
|
|
#include "lldb/Utility/LLDBLog.h"
|
|
#include "lldb/Utility/Log.h"
|
|
#include "lldb/Utility/RegularExpression.h"
|
|
#include "lldb/Utility/Timer.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
|
|
using namespace llvm;
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
LLDB_PLUGIN_DEFINE(SymbolFileJSON)
|
|
|
|
char SymbolFileJSON::ID;
|
|
|
|
SymbolFileJSON::SymbolFileJSON(lldb::ObjectFileSP objfile_sp)
|
|
: SymbolFileCommon(std::move(objfile_sp)) {}
|
|
|
|
void SymbolFileJSON::Initialize() {
|
|
PluginManager::RegisterPlugin(GetPluginNameStatic(),
|
|
GetPluginDescriptionStatic(), CreateInstance);
|
|
}
|
|
|
|
void SymbolFileJSON::Terminate() {
|
|
PluginManager::UnregisterPlugin(CreateInstance);
|
|
}
|
|
|
|
llvm::StringRef SymbolFileJSON::GetPluginDescriptionStatic() {
|
|
return "Reads debug symbols from a textual symbol table.";
|
|
}
|
|
|
|
SymbolFile *SymbolFileJSON::CreateInstance(ObjectFileSP objfile_sp) {
|
|
return new SymbolFileJSON(std::move(objfile_sp));
|
|
}
|
|
|
|
uint32_t SymbolFileJSON::CalculateAbilities() {
|
|
if (!m_objfile_sp || !llvm::isa<ObjectFileJSON>(*m_objfile_sp))
|
|
return 0;
|
|
|
|
return GlobalVariables | Functions;
|
|
}
|
|
|
|
uint32_t SymbolFileJSON::ResolveSymbolContext(const Address &so_addr,
|
|
SymbolContextItem resolve_scope,
|
|
SymbolContext &sc) {
|
|
std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
|
|
if (m_objfile_sp->GetSymtab() == nullptr)
|
|
return 0;
|
|
|
|
uint32_t resolved_flags = 0;
|
|
if (resolve_scope & eSymbolContextSymbol) {
|
|
sc.symbol = m_objfile_sp->GetSymtab()->FindSymbolContainingFileAddress(
|
|
so_addr.GetFileAddress());
|
|
if (sc.symbol)
|
|
resolved_flags |= eSymbolContextSymbol;
|
|
}
|
|
return resolved_flags;
|
|
}
|
|
|
|
CompUnitSP SymbolFileJSON::ParseCompileUnitAtIndex(uint32_t idx) { return {}; }
|
|
|
|
void SymbolFileJSON::GetTypes(SymbolContextScope *sc_scope, TypeClass type_mask,
|
|
lldb_private::TypeList &type_list) {}
|
|
|
|
void SymbolFileJSON::AddSymbols(Symtab &symtab) {
|
|
if (!m_objfile_sp)
|
|
return;
|
|
|
|
Symtab *json_symtab = m_objfile_sp->GetSymtab();
|
|
if (!json_symtab)
|
|
return;
|
|
|
|
if (&symtab == json_symtab)
|
|
return;
|
|
|
|
// Merge the two symbol tables.
|
|
const size_t num_new_symbols = json_symtab->GetNumSymbols();
|
|
for (size_t i = 0; i < num_new_symbols; ++i) {
|
|
Symbol *s = json_symtab->SymbolAtIndex(i);
|
|
symtab.AddSymbol(*s);
|
|
}
|
|
symtab.Finalize();
|
|
}
|