blob: 14e193a53736848dd053353f571e393cc83dcf16 [file] [log] [blame]
Alexey Samsonovea83baf2013-01-22 14:21:19 +00001//===-- LLVMSymbolize.cpp -------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Implementation for LLVM symbolization library.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLVMSymbolize.h"
Alexey Samsonovdd71c5b2013-03-19 15:33:18 +000015#include "llvm/ADT/STLExtras.h"
Alexey Samsonova591ae62013-08-26 18:12:03 +000016#include "llvm/Config/config.h"
Alexey Samsonova5f07682014-02-26 13:10:01 +000017#include "llvm/Object/ELFObjectFile.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000018#include "llvm/Object/MachO.h"
19#include "llvm/Support/Casting.h"
Alexey Samsonov3e9997f2013-08-14 17:09:30 +000020#include "llvm/Support/Compression.h"
21#include "llvm/Support/DataExtractor.h"
Rafael Espindola2a826e42014-06-13 17:20:48 +000022#include "llvm/Support/Errc.h"
Alexey Samsonov5239d582013-06-04 07:57:38 +000023#include "llvm/Support/FileSystem.h"
Alexey Samsonov3e9997f2013-08-14 17:09:30 +000024#include "llvm/Support/MemoryBuffer.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000025#include "llvm/Support/Path.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000026#include <sstream>
Alexey Samsonova591ae62013-08-26 18:12:03 +000027#include <stdlib.h>
Alexey Samsonovea83baf2013-01-22 14:21:19 +000028
29namespace llvm {
30namespace symbolize {
31
Rafael Espindola4453e42942014-06-13 03:07:50 +000032static bool error(std::error_code ec) {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000033 if (!ec)
34 return false;
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000035 errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n";
36 return true;
37}
38
Alexey Samsonovdce67342014-05-15 21:24:32 +000039static DILineInfoSpecifier
40getDILineInfoSpecifier(const LLVMSymbolizer::Options &Opts) {
41 return DILineInfoSpecifier(
42 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath,
Alexey Samsonovcd014722014-05-17 00:07:48 +000043 Opts.PrintFunctions);
Alexey Samsonovea83baf2013-01-22 14:21:19 +000044}
45
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000046ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx)
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000047 : Module(Obj), DebugInfoContext(DICtx) {
Alexey Samsonov464d2e42014-03-17 07:28:19 +000048 for (const SymbolRef &Symbol : Module->symbols()) {
49 addSymbol(Symbol);
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000050 }
Alexey Samsonova5f07682014-02-26 13:10:01 +000051 bool NoSymbolTable = (Module->symbol_begin() == Module->symbol_end());
52 if (NoSymbolTable && Module->isELF()) {
53 // Fallback to dynamic symbol table, if regular symbol table is stripped.
54 std::pair<symbol_iterator, symbol_iterator> IDyn =
55 getELFDynamicSymbolIterators(Module);
56 for (symbol_iterator si = IDyn.first, se = IDyn.second; si != se; ++si) {
Alexey Samsonov464d2e42014-03-17 07:28:19 +000057 addSymbol(*si);
Alexey Samsonova5f07682014-02-26 13:10:01 +000058 }
59 }
60}
61
Alexey Samsonov464d2e42014-03-17 07:28:19 +000062void ModuleInfo::addSymbol(const SymbolRef &Symbol) {
Alexey Samsonova5f07682014-02-26 13:10:01 +000063 SymbolRef::Type SymbolType;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000064 if (error(Symbol.getType(SymbolType)))
Alexey Samsonova5f07682014-02-26 13:10:01 +000065 return;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000066 if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
Alexey Samsonova5f07682014-02-26 13:10:01 +000067 return;
68 uint64_t SymbolAddress;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000069 if (error(Symbol.getAddress(SymbolAddress)) ||
Alexey Samsonova5f07682014-02-26 13:10:01 +000070 SymbolAddress == UnknownAddressOrSize)
71 return;
72 uint64_t SymbolSize;
73 // Getting symbol size is linear for Mach-O files, so assume that symbol
74 // occupies the memory range up to the following symbol.
75 if (isa<MachOObjectFile>(Module))
76 SymbolSize = 0;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000077 else if (error(Symbol.getSize(SymbolSize)) ||
Alexey Samsonova5f07682014-02-26 13:10:01 +000078 SymbolSize == UnknownAddressOrSize)
79 return;
80 StringRef SymbolName;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000081 if (error(Symbol.getName(SymbolName)))
Alexey Samsonova5f07682014-02-26 13:10:01 +000082 return;
83 // Mach-O symbol table names have leading underscore, skip it.
84 if (Module->isMachO() && SymbolName.size() > 0 && SymbolName[0] == '_')
85 SymbolName = SymbolName.drop_front();
86 // FIXME: If a function has alias, there are two entries in symbol table
87 // with same address size. Make sure we choose the correct one.
88 SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
89 SymbolDesc SD = { SymbolAddress, SymbolSize };
90 M.insert(std::make_pair(SD, SymbolName));
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000091}
92
93bool ModuleInfo::getNameFromSymbolTable(SymbolRef::Type Type, uint64_t Address,
94 std::string &Name, uint64_t &Addr,
95 uint64_t &Size) const {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000096 const SymbolMapTy &M = Type == SymbolRef::ST_Function ? Functions : Objects;
Alexey Samsonov5239d582013-06-04 07:57:38 +000097 if (M.empty())
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000098 return false;
Alexey Samsonov5239d582013-06-04 07:57:38 +000099 SymbolDesc SD = { Address, Address };
100 SymbolMapTy::const_iterator it = M.upper_bound(SD);
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000101 if (it == M.begin())
102 return false;
Alexey Samsonov5239d582013-06-04 07:57:38 +0000103 --it;
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000104 if (it->first.Size != 0 && it->first.Addr + it->first.Size <= Address)
Dmitry Vyukovef8fb722013-02-14 13:06:18 +0000105 return false;
106 Name = it->second.str();
107 Addr = it->first.Addr;
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000108 Size = it->first.Size;
Dmitry Vyukovef8fb722013-02-14 13:06:18 +0000109 return true;
110}
111
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000112DILineInfo ModuleInfo::symbolizeCode(
113 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000114 DILineInfo LineInfo;
115 if (DebugInfoContext) {
116 LineInfo = DebugInfoContext->getLineInfoForAddress(
Alexey Samsonovdce67342014-05-15 21:24:32 +0000117 ModuleOffset, getDILineInfoSpecifier(Opts));
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000118 }
119 // Override function name from symbol table if necessary.
Alexey Samsonovcd014722014-05-17 00:07:48 +0000120 if (Opts.PrintFunctions != FunctionNameKind::None && Opts.UseSymbolTable) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000121 std::string FunctionName;
122 uint64_t Start, Size;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000123 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
124 FunctionName, Start, Size)) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000125 LineInfo.FunctionName = FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000126 }
127 }
128 return LineInfo;
129}
130
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000131DIInliningInfo ModuleInfo::symbolizeInlinedCode(
132 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000133 DIInliningInfo InlinedContext;
134 if (DebugInfoContext) {
135 InlinedContext = DebugInfoContext->getInliningInfoForAddress(
Alexey Samsonovdce67342014-05-15 21:24:32 +0000136 ModuleOffset, getDILineInfoSpecifier(Opts));
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000137 }
138 // Make sure there is at least one frame in context.
139 if (InlinedContext.getNumberOfFrames() == 0) {
140 InlinedContext.addFrame(DILineInfo());
141 }
142 // Override the function name in lower frame with name from symbol table.
Alexey Samsonovcd014722014-05-17 00:07:48 +0000143 if (Opts.PrintFunctions != FunctionNameKind::None && Opts.UseSymbolTable) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000144 DIInliningInfo PatchedInlinedContext;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000145 for (uint32_t i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000146 DILineInfo LineInfo = InlinedContext.getFrame(i);
147 if (i == n - 1) {
148 std::string FunctionName;
149 uint64_t Start, Size;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000150 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
151 FunctionName, Start, Size)) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000152 LineInfo.FunctionName = FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000153 }
154 }
155 PatchedInlinedContext.addFrame(LineInfo);
156 }
157 InlinedContext = PatchedInlinedContext;
158 }
159 return InlinedContext;
160}
161
162bool ModuleInfo::symbolizeData(uint64_t ModuleOffset, std::string &Name,
163 uint64_t &Start, uint64_t &Size) const {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000164 return getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset, Name, Start,
165 Size);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000166}
167
Alexey Samsonovd6cef102013-02-04 15:55:26 +0000168const char LLVMSymbolizer::kBadString[] = "??";
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000169
170std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
171 uint64_t ModuleOffset) {
172 ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000173 if (!Info)
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000174 return printDILineInfo(DILineInfo());
175 if (Opts.PrintInlining) {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000176 DIInliningInfo InlinedContext =
177 Info->symbolizeInlinedCode(ModuleOffset, Opts);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000178 uint32_t FramesNum = InlinedContext.getNumberOfFrames();
179 assert(FramesNum > 0);
180 std::string Result;
181 for (uint32_t i = 0; i < FramesNum; i++) {
182 DILineInfo LineInfo = InlinedContext.getFrame(i);
183 Result += printDILineInfo(LineInfo);
184 }
185 return Result;
186 }
187 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts);
188 return printDILineInfo(LineInfo);
189}
190
191std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
192 uint64_t ModuleOffset) {
193 std::string Name = kBadString;
194 uint64_t Start = 0;
195 uint64_t Size = 0;
196 if (Opts.UseSymbolTable) {
197 if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
Alexey Samsonov601beb72013-06-28 12:06:25 +0000198 if (Info->symbolizeData(ModuleOffset, Name, Start, Size) && Opts.Demangle)
Ed Masteef6fed72014-01-16 17:25:12 +0000199 Name = DemangleName(Name);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000200 }
201 }
202 std::stringstream ss;
203 ss << Name << "\n" << Start << " " << Size << "\n";
204 return ss.str();
205}
206
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000207void LLVMSymbolizer::flush() {
Alexey Samsonovdd71c5b2013-03-19 15:33:18 +0000208 DeleteContainerSeconds(Modules);
Alexey Samsonovfe3a5d92013-06-28 15:08:29 +0000209 BinaryForPath.clear();
210 ObjectFileForArch.clear();
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000211}
212
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000213static std::string getDarwinDWARFResourceForPath(const std::string &Path) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000214 StringRef Basename = sys::path::filename(Path);
215 const std::string &DSymDirectory = Path + ".dSYM";
216 SmallString<16> ResourceName = StringRef(DSymDirectory);
217 sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
218 sys::path::append(ResourceName, Basename);
219 return ResourceName.str();
220}
221
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000222static bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000223 ErrorOr<std::unique_ptr<MemoryBuffer>> MB =
224 MemoryBuffer::getFileOrSTDIN(Path);
225 if (!MB)
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000226 return false;
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000227 return !zlib::isAvailable() || CRCHash == zlib::crc32(MB.get()->getBuffer());
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000228}
229
230static bool findDebugBinary(const std::string &OrigPath,
231 const std::string &DebuglinkName, uint32_t CRCHash,
232 std::string &Result) {
Alexey Samsonova591ae62013-08-26 18:12:03 +0000233 std::string OrigRealPath = OrigPath;
234#if defined(HAVE_REALPATH)
Craig Toppere6cb63e2014-04-25 04:24:47 +0000235 if (char *RP = realpath(OrigPath.c_str(), nullptr)) {
Alexey Samsonova591ae62013-08-26 18:12:03 +0000236 OrigRealPath = RP;
237 free(RP);
238 }
239#endif
240 SmallString<16> OrigDir(OrigRealPath);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000241 llvm::sys::path::remove_filename(OrigDir);
242 SmallString<16> DebugPath = OrigDir;
243 // Try /path/to/original_binary/debuglink_name
244 llvm::sys::path::append(DebugPath, DebuglinkName);
245 if (checkFileCRC(DebugPath, CRCHash)) {
246 Result = DebugPath.str();
247 return true;
248 }
249 // Try /path/to/original_binary/.debug/debuglink_name
Alexey Samsonova591ae62013-08-26 18:12:03 +0000250 DebugPath = OrigRealPath;
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000251 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
252 if (checkFileCRC(DebugPath, CRCHash)) {
253 Result = DebugPath.str();
254 return true;
255 }
256 // Try /usr/lib/debug/path/to/original_binary/debuglink_name
257 DebugPath = "/usr/lib/debug";
258 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
259 DebuglinkName);
260 if (checkFileCRC(DebugPath, CRCHash)) {
261 Result = DebugPath.str();
262 return true;
263 }
264 return false;
265}
266
267static bool getGNUDebuglinkContents(const Binary *Bin, std::string &DebugName,
268 uint32_t &CRCHash) {
269 const ObjectFile *Obj = dyn_cast<ObjectFile>(Bin);
270 if (!Obj)
271 return false;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000272 for (const SectionRef &Section : Obj->sections()) {
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000273 StringRef Name;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000274 Section.getName(Name);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000275 Name = Name.substr(Name.find_first_not_of("._"));
276 if (Name == "gnu_debuglink") {
277 StringRef Data;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000278 Section.getContents(Data);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000279 DataExtractor DE(Data, Obj->isLittleEndian(), 0);
280 uint32_t Offset = 0;
281 if (const char *DebugNameStr = DE.getCStr(&Offset)) {
282 // 4-byte align the offset.
283 Offset = (Offset + 3) & ~0x3;
284 if (DE.isValidOffsetForDataOfSize(Offset, 4)) {
285 DebugName = DebugNameStr;
286 CRCHash = DE.getU32(&Offset);
287 return true;
288 }
289 }
290 break;
291 }
292 }
293 return false;
294}
295
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000296LLVMSymbolizer::BinaryPair
297LLVMSymbolizer::getOrCreateBinary(const std::string &Path) {
298 BinaryMapTy::iterator I = BinaryForPath.find(Path);
299 if (I != BinaryForPath.end())
300 return I->second;
Craig Toppere6cb63e2014-04-25 04:24:47 +0000301 Binary *Bin = nullptr;
302 Binary *DbgBin = nullptr;
Rafael Espindola437b0d52014-07-31 03:12:45 +0000303 ErrorOr<std::unique_ptr<Binary>> BinaryOrErr = createBinary(Path);
Rafael Espindola63da2952014-01-15 19:37:43 +0000304 if (!error(BinaryOrErr.getError())) {
Rafael Espindola3f6481d2014-08-01 14:31:55 +0000305 std::unique_ptr<Binary> &ParsedBinary = BinaryOrErr.get();
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000306 // Check if it's a universal binary.
David Blaikie2f2021a2014-04-22 05:26:14 +0000307 Bin = ParsedBinary.get();
308 ParsedBinariesAndObjects.push_back(std::move(ParsedBinary));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000309 if (Bin->isMachO() || Bin->isMachOUniversalBinary()) {
310 // On Darwin we may find DWARF in separate object file in
311 // resource directory.
312 const std::string &ResourcePath =
313 getDarwinDWARFResourceForPath(Path);
Rafael Espindola63da2952014-01-15 19:37:43 +0000314 BinaryOrErr = createBinary(ResourcePath);
Rafael Espindola4453e42942014-06-13 03:07:50 +0000315 std::error_code EC = BinaryOrErr.getError();
Rafael Espindola2a826e42014-06-13 17:20:48 +0000316 if (EC != errc::no_such_file_or_directory && !error(EC)) {
Rafael Espindola437b0d52014-07-31 03:12:45 +0000317 DbgBin = BinaryOrErr.get().get();
318 ParsedBinariesAndObjects.push_back(std::move(BinaryOrErr.get()));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000319 }
320 }
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000321 // Try to locate the debug binary using .gnu_debuglink section.
Craig Toppere6cb63e2014-04-25 04:24:47 +0000322 if (!DbgBin) {
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000323 std::string DebuglinkName;
324 uint32_t CRCHash;
325 std::string DebugBinaryPath;
326 if (getGNUDebuglinkContents(Bin, DebuglinkName, CRCHash) &&
Rafael Espindola63da2952014-01-15 19:37:43 +0000327 findDebugBinary(Path, DebuglinkName, CRCHash, DebugBinaryPath)) {
328 BinaryOrErr = createBinary(DebugBinaryPath);
329 if (!error(BinaryOrErr.getError())) {
Rafael Espindola437b0d52014-07-31 03:12:45 +0000330 DbgBin = BinaryOrErr.get().get();
331 ParsedBinariesAndObjects.push_back(std::move(BinaryOrErr.get()));
Rafael Espindola63da2952014-01-15 19:37:43 +0000332 }
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000333 }
334 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000335 }
Craig Toppere6cb63e2014-04-25 04:24:47 +0000336 if (!DbgBin)
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000337 DbgBin = Bin;
338 BinaryPair Res = std::make_pair(Bin, DbgBin);
339 BinaryForPath[Path] = Res;
340 return Res;
341}
342
343ObjectFile *
344LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin, const std::string &ArchName) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000345 if (!Bin)
346 return nullptr;
347 ObjectFile *Res = nullptr;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000348 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
349 ObjectFileForArchMapTy::iterator I = ObjectFileForArch.find(
350 std::make_pair(UB, ArchName));
351 if (I != ObjectFileForArch.end())
352 return I->second;
Rafael Espindola4f7932b2014-06-23 20:41:02 +0000353 ErrorOr<std::unique_ptr<ObjectFile>> ParsedObj =
354 UB->getObjectForArch(Triple(ArchName).getArch());
355 if (ParsedObj) {
356 Res = ParsedObj.get().get();
357 ParsedBinariesAndObjects.push_back(std::move(ParsedObj.get()));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000358 }
359 ObjectFileForArch[std::make_pair(UB, ArchName)] = Res;
360 } else if (Bin->isObject()) {
361 Res = cast<ObjectFile>(Bin);
362 }
363 return Res;
364}
365
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000366ModuleInfo *
367LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000368 ModuleMapTy::iterator I = Modules.find(ModuleName);
369 if (I != Modules.end())
370 return I->second;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000371 std::string BinaryName = ModuleName;
372 std::string ArchName = Opts.DefaultArch;
Alexey Samsonovb119b462013-07-17 06:45:36 +0000373 size_t ColonPos = ModuleName.find_last_of(':');
374 // Verify that substring after colon form a valid arch name.
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000375 if (ColonPos != std::string::npos) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000376 std::string ArchStr = ModuleName.substr(ColonPos + 1);
NAKAMURA Takumi8ee89c62013-07-17 06:53:51 +0000377 if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000378 BinaryName = ModuleName.substr(0, ColonPos);
379 ArchName = ArchStr;
380 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000381 }
382 BinaryPair Binaries = getOrCreateBinary(BinaryName);
383 ObjectFile *Obj = getObjectFileFromBinary(Binaries.first, ArchName);
384 ObjectFile *DbgObj = getObjectFileFromBinary(Binaries.second, ArchName);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000385
Craig Toppere6cb63e2014-04-25 04:24:47 +0000386 if (!Obj) {
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000387 // Failed to find valid object file.
Craig Toppere6cb63e2014-04-25 04:24:47 +0000388 Modules.insert(make_pair(ModuleName, (ModuleInfo *)nullptr));
389 return nullptr;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000390 }
Rafael Espindolaa04bb5b2014-07-31 20:19:36 +0000391 DIContext *Context = DIContext::getDWARFContext(*DbgObj);
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000392 assert(Context);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000393 ModuleInfo *Info = new ModuleInfo(Obj, Context);
394 Modules.insert(make_pair(ModuleName, Info));
395 return Info;
396}
397
398std::string LLVMSymbolizer::printDILineInfo(DILineInfo LineInfo) const {
399 // By default, DILineInfo contains "<invalid>" for function/filename it
400 // cannot fetch. We replace it to "??" to make our output closer to addr2line.
401 static const std::string kDILineInfoBadString = "<invalid>";
402 std::stringstream Result;
Alexey Samsonovcd014722014-05-17 00:07:48 +0000403 if (Opts.PrintFunctions != FunctionNameKind::None) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000404 std::string FunctionName = LineInfo.FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000405 if (FunctionName == kDILineInfoBadString)
406 FunctionName = kBadString;
Alexey Samsonov601beb72013-06-28 12:06:25 +0000407 else if (Opts.Demangle)
408 FunctionName = DemangleName(FunctionName);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000409 Result << FunctionName << "\n";
410 }
Alexey Samsonovd0109992014-04-18 21:36:39 +0000411 std::string Filename = LineInfo.FileName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000412 if (Filename == kDILineInfoBadString)
413 Filename = kBadString;
Alexey Samsonovd0109992014-04-18 21:36:39 +0000414 Result << Filename << ":" << LineInfo.Line << ":" << LineInfo.Column << "\n";
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000415 return Result.str();
416}
417
418#if !defined(_MSC_VER)
419// Assume that __cxa_demangle is provided by libcxxabi (except for Windows).
420extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer,
421 size_t *length, int *status);
422#endif
423
Alexey Samsonov601beb72013-06-28 12:06:25 +0000424std::string LLVMSymbolizer::DemangleName(const std::string &Name) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000425#if !defined(_MSC_VER)
Ed Masteef6fed72014-01-16 17:25:12 +0000426 // We can spoil names of symbols with C linkage, so use an heuristic
427 // approach to check if the name should be demangled.
428 if (Name.substr(0, 2) != "_Z")
429 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000430 int status = 0;
Craig Toppere6cb63e2014-04-25 04:24:47 +0000431 char *DemangledName = __cxa_demangle(Name.c_str(), nullptr, nullptr, &status);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000432 if (status != 0)
Alexey Samsonov601beb72013-06-28 12:06:25 +0000433 return Name;
434 std::string Result = DemangledName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000435 free(DemangledName);
Alexey Samsonov601beb72013-06-28 12:06:25 +0000436 return Result;
437#else
438 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000439#endif
440}
441
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000442} // namespace symbolize
443} // namespace llvm