2013-01-22 14:21:19 +00:00
|
|
|
//===-- LLVMSymbolize.cpp -------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implementation for LLVM symbolization library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "LLVMSymbolize.h"
|
2013-03-19 15:33:18 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2013-08-26 18:12:03 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2014-02-26 13:10:01 +00:00
|
|
|
#include "llvm/Object/ELFObjectFile.h"
|
2013-01-22 14:21:19 +00:00
|
|
|
#include "llvm/Object/MachO.h"
|
|
|
|
#include "llvm/Support/Casting.h"
|
2013-08-14 17:09:30 +00:00
|
|
|
#include "llvm/Support/Compression.h"
|
|
|
|
#include "llvm/Support/DataExtractor.h"
|
2013-06-04 07:57:38 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2013-08-14 17:09:30 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2013-01-22 14:21:19 +00:00
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include <sstream>
|
2013-08-26 18:12:03 +00:00
|
|
|
#include <stdlib.h>
|
2013-01-22 14:21:19 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace symbolize {
|
|
|
|
|
2013-02-14 13:06:18 +00:00
|
|
|
static bool error(error_code ec) {
|
2013-02-15 08:54:47 +00:00
|
|
|
if (!ec)
|
|
|
|
return false;
|
2013-02-14 13:06:18 +00:00
|
|
|
errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-15 21:24:32 +00:00
|
|
|
static DILineInfoSpecifier
|
|
|
|
getDILineInfoSpecifier(const LLVMSymbolizer::Options &Opts) {
|
|
|
|
return DILineInfoSpecifier(
|
|
|
|
DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath,
|
2014-05-17 00:07:48 +00:00
|
|
|
Opts.PrintFunctions);
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:06:18 +00:00
|
|
|
ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx)
|
2013-02-15 08:54:47 +00:00
|
|
|
: Module(Obj), DebugInfoContext(DICtx) {
|
2014-03-17 07:28:19 +00:00
|
|
|
for (const SymbolRef &Symbol : Module->symbols()) {
|
|
|
|
addSymbol(Symbol);
|
2013-02-14 13:06:18 +00:00
|
|
|
}
|
2014-02-26 13:10:01 +00:00
|
|
|
bool NoSymbolTable = (Module->symbol_begin() == Module->symbol_end());
|
|
|
|
if (NoSymbolTable && Module->isELF()) {
|
|
|
|
// Fallback to dynamic symbol table, if regular symbol table is stripped.
|
|
|
|
std::pair<symbol_iterator, symbol_iterator> IDyn =
|
|
|
|
getELFDynamicSymbolIterators(Module);
|
|
|
|
for (symbol_iterator si = IDyn.first, se = IDyn.second; si != se; ++si) {
|
2014-03-17 07:28:19 +00:00
|
|
|
addSymbol(*si);
|
2014-02-26 13:10:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-17 07:28:19 +00:00
|
|
|
void ModuleInfo::addSymbol(const SymbolRef &Symbol) {
|
2014-02-26 13:10:01 +00:00
|
|
|
SymbolRef::Type SymbolType;
|
2014-03-17 07:28:19 +00:00
|
|
|
if (error(Symbol.getType(SymbolType)))
|
2014-02-26 13:10:01 +00:00
|
|
|
return;
|
2014-03-17 07:28:19 +00:00
|
|
|
if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
|
2014-02-26 13:10:01 +00:00
|
|
|
return;
|
|
|
|
uint64_t SymbolAddress;
|
2014-03-17 07:28:19 +00:00
|
|
|
if (error(Symbol.getAddress(SymbolAddress)) ||
|
2014-02-26 13:10:01 +00:00
|
|
|
SymbolAddress == UnknownAddressOrSize)
|
|
|
|
return;
|
|
|
|
uint64_t SymbolSize;
|
|
|
|
// Getting symbol size is linear for Mach-O files, so assume that symbol
|
|
|
|
// occupies the memory range up to the following symbol.
|
|
|
|
if (isa<MachOObjectFile>(Module))
|
|
|
|
SymbolSize = 0;
|
2014-03-17 07:28:19 +00:00
|
|
|
else if (error(Symbol.getSize(SymbolSize)) ||
|
2014-02-26 13:10:01 +00:00
|
|
|
SymbolSize == UnknownAddressOrSize)
|
|
|
|
return;
|
|
|
|
StringRef SymbolName;
|
2014-03-17 07:28:19 +00:00
|
|
|
if (error(Symbol.getName(SymbolName)))
|
2014-02-26 13:10:01 +00:00
|
|
|
return;
|
|
|
|
// Mach-O symbol table names have leading underscore, skip it.
|
|
|
|
if (Module->isMachO() && SymbolName.size() > 0 && SymbolName[0] == '_')
|
|
|
|
SymbolName = SymbolName.drop_front();
|
|
|
|
// FIXME: If a function has alias, there are two entries in symbol table
|
|
|
|
// with same address size. Make sure we choose the correct one.
|
|
|
|
SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
|
|
|
|
SymbolDesc SD = { SymbolAddress, SymbolSize };
|
|
|
|
M.insert(std::make_pair(SD, SymbolName));
|
2013-02-14 13:06:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ModuleInfo::getNameFromSymbolTable(SymbolRef::Type Type, uint64_t Address,
|
|
|
|
std::string &Name, uint64_t &Addr,
|
|
|
|
uint64_t &Size) const {
|
2013-02-15 08:54:47 +00:00
|
|
|
const SymbolMapTy &M = Type == SymbolRef::ST_Function ? Functions : Objects;
|
2013-06-04 07:57:38 +00:00
|
|
|
if (M.empty())
|
2013-02-14 13:06:18 +00:00
|
|
|
return false;
|
2013-06-04 07:57:38 +00:00
|
|
|
SymbolDesc SD = { Address, Address };
|
|
|
|
SymbolMapTy::const_iterator it = M.upper_bound(SD);
|
2013-06-07 15:25:27 +00:00
|
|
|
if (it == M.begin())
|
|
|
|
return false;
|
2013-06-04 07:57:38 +00:00
|
|
|
--it;
|
2013-06-07 15:25:27 +00:00
|
|
|
if (it->first.Size != 0 && it->first.Addr + it->first.Size <= Address)
|
2013-02-14 13:06:18 +00:00
|
|
|
return false;
|
|
|
|
Name = it->second.str();
|
|
|
|
Addr = it->first.Addr;
|
2013-06-07 15:25:27 +00:00
|
|
|
Size = it->first.Size;
|
2013-02-14 13:06:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-15 08:54:47 +00:00
|
|
|
DILineInfo ModuleInfo::symbolizeCode(
|
|
|
|
uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
|
2013-01-22 14:21:19 +00:00
|
|
|
DILineInfo LineInfo;
|
|
|
|
if (DebugInfoContext) {
|
|
|
|
LineInfo = DebugInfoContext->getLineInfoForAddress(
|
2014-05-15 21:24:32 +00:00
|
|
|
ModuleOffset, getDILineInfoSpecifier(Opts));
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
// Override function name from symbol table if necessary.
|
2014-05-17 00:07:48 +00:00
|
|
|
if (Opts.PrintFunctions != FunctionNameKind::None && Opts.UseSymbolTable) {
|
2013-01-22 14:21:19 +00:00
|
|
|
std::string FunctionName;
|
|
|
|
uint64_t Start, Size;
|
2013-02-15 08:54:47 +00:00
|
|
|
if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
|
|
|
|
FunctionName, Start, Size)) {
|
2014-04-18 21:36:39 +00:00
|
|
|
LineInfo.FunctionName = FunctionName;
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return LineInfo;
|
|
|
|
}
|
|
|
|
|
2013-02-15 08:54:47 +00:00
|
|
|
DIInliningInfo ModuleInfo::symbolizeInlinedCode(
|
|
|
|
uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
|
2013-01-22 14:21:19 +00:00
|
|
|
DIInliningInfo InlinedContext;
|
|
|
|
if (DebugInfoContext) {
|
|
|
|
InlinedContext = DebugInfoContext->getInliningInfoForAddress(
|
2014-05-15 21:24:32 +00:00
|
|
|
ModuleOffset, getDILineInfoSpecifier(Opts));
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
// Make sure there is at least one frame in context.
|
|
|
|
if (InlinedContext.getNumberOfFrames() == 0) {
|
|
|
|
InlinedContext.addFrame(DILineInfo());
|
|
|
|
}
|
|
|
|
// Override the function name in lower frame with name from symbol table.
|
2014-05-17 00:07:48 +00:00
|
|
|
if (Opts.PrintFunctions != FunctionNameKind::None && Opts.UseSymbolTable) {
|
2013-01-22 14:21:19 +00:00
|
|
|
DIInliningInfo PatchedInlinedContext;
|
2013-02-15 08:54:47 +00:00
|
|
|
for (uint32_t i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
|
2013-01-22 14:21:19 +00:00
|
|
|
DILineInfo LineInfo = InlinedContext.getFrame(i);
|
|
|
|
if (i == n - 1) {
|
|
|
|
std::string FunctionName;
|
|
|
|
uint64_t Start, Size;
|
2013-02-15 08:54:47 +00:00
|
|
|
if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
|
|
|
|
FunctionName, Start, Size)) {
|
2014-04-18 21:36:39 +00:00
|
|
|
LineInfo.FunctionName = FunctionName;
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
PatchedInlinedContext.addFrame(LineInfo);
|
|
|
|
}
|
|
|
|
InlinedContext = PatchedInlinedContext;
|
|
|
|
}
|
|
|
|
return InlinedContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ModuleInfo::symbolizeData(uint64_t ModuleOffset, std::string &Name,
|
|
|
|
uint64_t &Start, uint64_t &Size) const {
|
2013-02-15 08:54:47 +00:00
|
|
|
return getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset, Name, Start,
|
|
|
|
Size);
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
|
2013-02-04 15:55:26 +00:00
|
|
|
const char LLVMSymbolizer::kBadString[] = "??";
|
2013-01-22 14:21:19 +00:00
|
|
|
|
|
|
|
std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
|
|
|
|
uint64_t ModuleOffset) {
|
|
|
|
ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!Info)
|
2013-01-22 14:21:19 +00:00
|
|
|
return printDILineInfo(DILineInfo());
|
|
|
|
if (Opts.PrintInlining) {
|
2013-02-15 08:54:47 +00:00
|
|
|
DIInliningInfo InlinedContext =
|
|
|
|
Info->symbolizeInlinedCode(ModuleOffset, Opts);
|
2013-01-22 14:21:19 +00:00
|
|
|
uint32_t FramesNum = InlinedContext.getNumberOfFrames();
|
|
|
|
assert(FramesNum > 0);
|
|
|
|
std::string Result;
|
|
|
|
for (uint32_t i = 0; i < FramesNum; i++) {
|
|
|
|
DILineInfo LineInfo = InlinedContext.getFrame(i);
|
|
|
|
Result += printDILineInfo(LineInfo);
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts);
|
|
|
|
return printDILineInfo(LineInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
|
|
|
|
uint64_t ModuleOffset) {
|
|
|
|
std::string Name = kBadString;
|
|
|
|
uint64_t Start = 0;
|
|
|
|
uint64_t Size = 0;
|
|
|
|
if (Opts.UseSymbolTable) {
|
|
|
|
if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
|
2013-06-28 12:06:25 +00:00
|
|
|
if (Info->symbolizeData(ModuleOffset, Name, Start, Size) && Opts.Demangle)
|
2014-01-16 17:25:12 +00:00
|
|
|
Name = DemangleName(Name);
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << Name << "\n" << Start << " " << Size << "\n";
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2013-03-19 10:24:42 +00:00
|
|
|
void LLVMSymbolizer::flush() {
|
2013-03-19 15:33:18 +00:00
|
|
|
DeleteContainerSeconds(Modules);
|
2013-06-28 15:08:29 +00:00
|
|
|
BinaryForPath.clear();
|
|
|
|
ObjectFileForArch.clear();
|
2013-03-19 10:24:42 +00:00
|
|
|
}
|
|
|
|
|
2013-06-28 08:15:40 +00:00
|
|
|
static std::string getDarwinDWARFResourceForPath(const std::string &Path) {
|
2013-01-22 14:21:19 +00:00
|
|
|
StringRef Basename = sys::path::filename(Path);
|
|
|
|
const std::string &DSymDirectory = Path + ".dSYM";
|
|
|
|
SmallString<16> ResourceName = StringRef(DSymDirectory);
|
|
|
|
sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
|
|
|
|
sys::path::append(ResourceName, Basename);
|
|
|
|
return ResourceName.str();
|
|
|
|
}
|
|
|
|
|
2013-08-14 17:09:30 +00:00
|
|
|
static bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> MB;
|
2013-08-14 17:09:30 +00:00
|
|
|
if (MemoryBuffer::getFileOrSTDIN(Path, MB))
|
|
|
|
return false;
|
|
|
|
return !zlib::isAvailable() || CRCHash == zlib::crc32(MB->getBuffer());
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool findDebugBinary(const std::string &OrigPath,
|
|
|
|
const std::string &DebuglinkName, uint32_t CRCHash,
|
|
|
|
std::string &Result) {
|
2013-08-26 18:12:03 +00:00
|
|
|
std::string OrigRealPath = OrigPath;
|
|
|
|
#if defined(HAVE_REALPATH)
|
2014-04-25 04:24:47 +00:00
|
|
|
if (char *RP = realpath(OrigPath.c_str(), nullptr)) {
|
2013-08-26 18:12:03 +00:00
|
|
|
OrigRealPath = RP;
|
|
|
|
free(RP);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
SmallString<16> OrigDir(OrigRealPath);
|
2013-08-14 17:09:30 +00:00
|
|
|
llvm::sys::path::remove_filename(OrigDir);
|
|
|
|
SmallString<16> DebugPath = OrigDir;
|
|
|
|
// Try /path/to/original_binary/debuglink_name
|
|
|
|
llvm::sys::path::append(DebugPath, DebuglinkName);
|
|
|
|
if (checkFileCRC(DebugPath, CRCHash)) {
|
|
|
|
Result = DebugPath.str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Try /path/to/original_binary/.debug/debuglink_name
|
2013-08-26 18:12:03 +00:00
|
|
|
DebugPath = OrigRealPath;
|
2013-08-14 17:09:30 +00:00
|
|
|
llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
|
|
|
|
if (checkFileCRC(DebugPath, CRCHash)) {
|
|
|
|
Result = DebugPath.str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Try /usr/lib/debug/path/to/original_binary/debuglink_name
|
|
|
|
DebugPath = "/usr/lib/debug";
|
|
|
|
llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
|
|
|
|
DebuglinkName);
|
|
|
|
if (checkFileCRC(DebugPath, CRCHash)) {
|
|
|
|
Result = DebugPath.str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool getGNUDebuglinkContents(const Binary *Bin, std::string &DebugName,
|
|
|
|
uint32_t &CRCHash) {
|
|
|
|
const ObjectFile *Obj = dyn_cast<ObjectFile>(Bin);
|
|
|
|
if (!Obj)
|
|
|
|
return false;
|
2014-03-13 14:37:36 +00:00
|
|
|
for (const SectionRef &Section : Obj->sections()) {
|
2013-08-14 17:09:30 +00:00
|
|
|
StringRef Name;
|
2014-03-13 14:37:36 +00:00
|
|
|
Section.getName(Name);
|
2013-08-14 17:09:30 +00:00
|
|
|
Name = Name.substr(Name.find_first_not_of("._"));
|
|
|
|
if (Name == "gnu_debuglink") {
|
|
|
|
StringRef Data;
|
2014-03-13 14:37:36 +00:00
|
|
|
Section.getContents(Data);
|
2013-08-14 17:09:30 +00:00
|
|
|
DataExtractor DE(Data, Obj->isLittleEndian(), 0);
|
|
|
|
uint32_t Offset = 0;
|
|
|
|
if (const char *DebugNameStr = DE.getCStr(&Offset)) {
|
|
|
|
// 4-byte align the offset.
|
|
|
|
Offset = (Offset + 3) & ~0x3;
|
|
|
|
if (DE.isValidOffsetForDataOfSize(Offset, 4)) {
|
|
|
|
DebugName = DebugNameStr;
|
|
|
|
CRCHash = DE.getU32(&Offset);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-28 08:15:40 +00:00
|
|
|
LLVMSymbolizer::BinaryPair
|
|
|
|
LLVMSymbolizer::getOrCreateBinary(const std::string &Path) {
|
|
|
|
BinaryMapTy::iterator I = BinaryForPath.find(Path);
|
|
|
|
if (I != BinaryForPath.end())
|
|
|
|
return I->second;
|
2014-04-25 04:24:47 +00:00
|
|
|
Binary *Bin = nullptr;
|
|
|
|
Binary *DbgBin = nullptr;
|
2014-01-15 19:37:43 +00:00
|
|
|
ErrorOr<Binary *> BinaryOrErr = createBinary(Path);
|
|
|
|
if (!error(BinaryOrErr.getError())) {
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<Binary> ParsedBinary(BinaryOrErr.get());
|
2013-06-28 08:15:40 +00:00
|
|
|
// Check if it's a universal binary.
|
2014-04-22 05:26:14 +00:00
|
|
|
Bin = ParsedBinary.get();
|
|
|
|
ParsedBinariesAndObjects.push_back(std::move(ParsedBinary));
|
2013-06-28 08:15:40 +00:00
|
|
|
if (Bin->isMachO() || Bin->isMachOUniversalBinary()) {
|
|
|
|
// On Darwin we may find DWARF in separate object file in
|
|
|
|
// resource directory.
|
|
|
|
const std::string &ResourcePath =
|
|
|
|
getDarwinDWARFResourceForPath(Path);
|
2014-01-15 19:37:43 +00:00
|
|
|
BinaryOrErr = createBinary(ResourcePath);
|
|
|
|
error_code EC = BinaryOrErr.getError();
|
2014-01-15 04:49:50 +00:00
|
|
|
if (EC != errc::no_such_file_or_directory && !error(EC)) {
|
2014-01-15 19:37:43 +00:00
|
|
|
DbgBin = BinaryOrErr.get();
|
2014-04-22 05:26:14 +00:00
|
|
|
ParsedBinariesAndObjects.push_back(std::unique_ptr<Binary>(DbgBin));
|
2013-06-28 08:15:40 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-14 17:09:30 +00:00
|
|
|
// Try to locate the debug binary using .gnu_debuglink section.
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!DbgBin) {
|
2013-08-14 17:09:30 +00:00
|
|
|
std::string DebuglinkName;
|
|
|
|
uint32_t CRCHash;
|
|
|
|
std::string DebugBinaryPath;
|
|
|
|
if (getGNUDebuglinkContents(Bin, DebuglinkName, CRCHash) &&
|
2014-01-15 19:37:43 +00:00
|
|
|
findDebugBinary(Path, DebuglinkName, CRCHash, DebugBinaryPath)) {
|
|
|
|
BinaryOrErr = createBinary(DebugBinaryPath);
|
|
|
|
if (!error(BinaryOrErr.getError())) {
|
|
|
|
DbgBin = BinaryOrErr.get();
|
2014-04-22 05:26:14 +00:00
|
|
|
ParsedBinariesAndObjects.push_back(std::unique_ptr<Binary>(DbgBin));
|
2014-01-15 19:37:43 +00:00
|
|
|
}
|
2013-08-14 17:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-28 08:15:40 +00:00
|
|
|
}
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!DbgBin)
|
2013-06-28 08:15:40 +00:00
|
|
|
DbgBin = Bin;
|
|
|
|
BinaryPair Res = std::make_pair(Bin, DbgBin);
|
|
|
|
BinaryForPath[Path] = Res;
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectFile *
|
|
|
|
LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin, const std::string &ArchName) {
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!Bin)
|
|
|
|
return nullptr;
|
|
|
|
ObjectFile *Res = nullptr;
|
2013-06-28 08:15:40 +00:00
|
|
|
if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
|
|
|
|
ObjectFileForArchMapTy::iterator I = ObjectFileForArch.find(
|
|
|
|
std::make_pair(UB, ArchName));
|
|
|
|
if (I != ObjectFileForArch.end())
|
|
|
|
return I->second;
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<ObjectFile> ParsedObj;
|
2013-06-28 08:15:40 +00:00
|
|
|
if (!UB->getObjectForArch(Triple(ArchName).getArch(), ParsedObj)) {
|
2014-04-22 05:26:14 +00:00
|
|
|
Res = ParsedObj.get();
|
|
|
|
ParsedBinariesAndObjects.push_back(std::move(ParsedObj));
|
2013-06-28 08:15:40 +00:00
|
|
|
}
|
|
|
|
ObjectFileForArch[std::make_pair(UB, ArchName)] = Res;
|
|
|
|
} else if (Bin->isObject()) {
|
|
|
|
Res = cast<ObjectFile>(Bin);
|
|
|
|
}
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
2013-02-15 08:54:47 +00:00
|
|
|
ModuleInfo *
|
|
|
|
LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
|
2013-01-22 14:21:19 +00:00
|
|
|
ModuleMapTy::iterator I = Modules.find(ModuleName);
|
|
|
|
if (I != Modules.end())
|
|
|
|
return I->second;
|
2013-06-28 08:15:40 +00:00
|
|
|
std::string BinaryName = ModuleName;
|
|
|
|
std::string ArchName = Opts.DefaultArch;
|
2013-07-17 06:45:36 +00:00
|
|
|
size_t ColonPos = ModuleName.find_last_of(':');
|
|
|
|
// Verify that substring after colon form a valid arch name.
|
2013-06-28 08:15:40 +00:00
|
|
|
if (ColonPos != std::string::npos) {
|
2013-07-17 06:45:36 +00:00
|
|
|
std::string ArchStr = ModuleName.substr(ColonPos + 1);
|
2013-07-17 06:53:51 +00:00
|
|
|
if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
|
2013-07-17 06:45:36 +00:00
|
|
|
BinaryName = ModuleName.substr(0, ColonPos);
|
|
|
|
ArchName = ArchStr;
|
|
|
|
}
|
2013-06-28 08:15:40 +00:00
|
|
|
}
|
|
|
|
BinaryPair Binaries = getOrCreateBinary(BinaryName);
|
|
|
|
ObjectFile *Obj = getObjectFileFromBinary(Binaries.first, ArchName);
|
|
|
|
ObjectFile *DbgObj = getObjectFileFromBinary(Binaries.second, ArchName);
|
2013-01-22 14:21:19 +00:00
|
|
|
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!Obj) {
|
2013-06-28 08:15:40 +00:00
|
|
|
// Failed to find valid object file.
|
2014-04-25 04:24:47 +00:00
|
|
|
Modules.insert(make_pair(ModuleName, (ModuleInfo *)nullptr));
|
|
|
|
return nullptr;
|
2013-01-22 14:21:19 +00:00
|
|
|
}
|
2013-06-28 08:15:40 +00:00
|
|
|
DIContext *Context = DIContext::getDWARFContext(DbgObj);
|
|
|
|
assert(Context);
|
2013-01-22 14:21:19 +00:00
|
|
|
ModuleInfo *Info = new ModuleInfo(Obj, Context);
|
|
|
|
Modules.insert(make_pair(ModuleName, Info));
|
|
|
|
return Info;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string LLVMSymbolizer::printDILineInfo(DILineInfo LineInfo) const {
|
|
|
|
// By default, DILineInfo contains "<invalid>" for function/filename it
|
|
|
|
// cannot fetch. We replace it to "??" to make our output closer to addr2line.
|
|
|
|
static const std::string kDILineInfoBadString = "<invalid>";
|
|
|
|
std::stringstream Result;
|
2014-05-17 00:07:48 +00:00
|
|
|
if (Opts.PrintFunctions != FunctionNameKind::None) {
|
2014-04-18 21:36:39 +00:00
|
|
|
std::string FunctionName = LineInfo.FunctionName;
|
2013-01-22 14:21:19 +00:00
|
|
|
if (FunctionName == kDILineInfoBadString)
|
|
|
|
FunctionName = kBadString;
|
2013-06-28 12:06:25 +00:00
|
|
|
else if (Opts.Demangle)
|
|
|
|
FunctionName = DemangleName(FunctionName);
|
2013-01-22 14:21:19 +00:00
|
|
|
Result << FunctionName << "\n";
|
|
|
|
}
|
2014-04-18 21:36:39 +00:00
|
|
|
std::string Filename = LineInfo.FileName;
|
2013-01-22 14:21:19 +00:00
|
|
|
if (Filename == kDILineInfoBadString)
|
|
|
|
Filename = kBadString;
|
2014-04-18 21:36:39 +00:00
|
|
|
Result << Filename << ":" << LineInfo.Line << ":" << LineInfo.Column << "\n";
|
2013-01-22 14:21:19 +00:00
|
|
|
return Result.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(_MSC_VER)
|
|
|
|
// Assume that __cxa_demangle is provided by libcxxabi (except for Windows).
|
|
|
|
extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer,
|
|
|
|
size_t *length, int *status);
|
|
|
|
#endif
|
|
|
|
|
2013-06-28 12:06:25 +00:00
|
|
|
std::string LLVMSymbolizer::DemangleName(const std::string &Name) {
|
2013-01-22 14:21:19 +00:00
|
|
|
#if !defined(_MSC_VER)
|
2014-01-16 17:25:12 +00:00
|
|
|
// We can spoil names of symbols with C linkage, so use an heuristic
|
|
|
|
// approach to check if the name should be demangled.
|
|
|
|
if (Name.substr(0, 2) != "_Z")
|
|
|
|
return Name;
|
2013-01-22 14:21:19 +00:00
|
|
|
int status = 0;
|
2014-04-25 04:24:47 +00:00
|
|
|
char *DemangledName = __cxa_demangle(Name.c_str(), nullptr, nullptr, &status);
|
2013-01-22 14:21:19 +00:00
|
|
|
if (status != 0)
|
2013-06-28 12:06:25 +00:00
|
|
|
return Name;
|
|
|
|
std::string Result = DemangledName;
|
2013-01-22 14:21:19 +00:00
|
|
|
free(DemangledName);
|
2013-06-28 12:06:25 +00:00
|
|
|
return Result;
|
|
|
|
#else
|
|
|
|
return Name;
|
2013-01-22 14:21:19 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-02-15 08:54:47 +00:00
|
|
|
} // namespace symbolize
|
|
|
|
} // namespace llvm
|