blob: 837ed19aa4102226a758c534402557da4296563b [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"
Alexey Samsonov5239d582013-06-04 07:57:38 +000022#include "llvm/Support/FileSystem.h"
Alexey Samsonov3e9997f2013-08-14 17:09:30 +000023#include "llvm/Support/MemoryBuffer.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000024#include "llvm/Support/Path.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000025#include <sstream>
Alexey Samsonova591ae62013-08-26 18:12:03 +000026#include <stdlib.h>
Alexey Samsonovea83baf2013-01-22 14:21:19 +000027
28namespace llvm {
29namespace symbolize {
30
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000031static bool error(error_code ec) {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000032 if (!ec)
33 return false;
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000034 errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n";
35 return true;
36}
37
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000038static uint32_t
39getDILineInfoSpecifierFlags(const LLVMSymbolizer::Options &Opts) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +000040 uint32_t Flags = llvm::DILineInfoSpecifier::FileLineInfo |
41 llvm::DILineInfoSpecifier::AbsoluteFilePath;
42 if (Opts.PrintFunctions)
43 Flags |= llvm::DILineInfoSpecifier::FunctionName;
44 return Flags;
45}
46
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000047ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx)
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000048 : Module(Obj), DebugInfoContext(DICtx) {
Alexey Samsonov464d2e42014-03-17 07:28:19 +000049 for (const SymbolRef &Symbol : Module->symbols()) {
50 addSymbol(Symbol);
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000051 }
Alexey Samsonova5f07682014-02-26 13:10:01 +000052 bool NoSymbolTable = (Module->symbol_begin() == Module->symbol_end());
53 if (NoSymbolTable && Module->isELF()) {
54 // Fallback to dynamic symbol table, if regular symbol table is stripped.
55 std::pair<symbol_iterator, symbol_iterator> IDyn =
56 getELFDynamicSymbolIterators(Module);
57 for (symbol_iterator si = IDyn.first, se = IDyn.second; si != se; ++si) {
Alexey Samsonov464d2e42014-03-17 07:28:19 +000058 addSymbol(*si);
Alexey Samsonova5f07682014-02-26 13:10:01 +000059 }
60 }
61}
62
Alexey Samsonov464d2e42014-03-17 07:28:19 +000063void ModuleInfo::addSymbol(const SymbolRef &Symbol) {
Alexey Samsonova5f07682014-02-26 13:10:01 +000064 SymbolRef::Type SymbolType;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000065 if (error(Symbol.getType(SymbolType)))
Alexey Samsonova5f07682014-02-26 13:10:01 +000066 return;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000067 if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
Alexey Samsonova5f07682014-02-26 13:10:01 +000068 return;
69 uint64_t SymbolAddress;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000070 if (error(Symbol.getAddress(SymbolAddress)) ||
Alexey Samsonova5f07682014-02-26 13:10:01 +000071 SymbolAddress == UnknownAddressOrSize)
72 return;
73 uint64_t SymbolSize;
74 // Getting symbol size is linear for Mach-O files, so assume that symbol
75 // occupies the memory range up to the following symbol.
76 if (isa<MachOObjectFile>(Module))
77 SymbolSize = 0;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000078 else if (error(Symbol.getSize(SymbolSize)) ||
Alexey Samsonova5f07682014-02-26 13:10:01 +000079 SymbolSize == UnknownAddressOrSize)
80 return;
81 StringRef SymbolName;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000082 if (error(Symbol.getName(SymbolName)))
Alexey Samsonova5f07682014-02-26 13:10:01 +000083 return;
84 // Mach-O symbol table names have leading underscore, skip it.
85 if (Module->isMachO() && SymbolName.size() > 0 && SymbolName[0] == '_')
86 SymbolName = SymbolName.drop_front();
87 // FIXME: If a function has alias, there are two entries in symbol table
88 // with same address size. Make sure we choose the correct one.
89 SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
90 SymbolDesc SD = { SymbolAddress, SymbolSize };
91 M.insert(std::make_pair(SD, SymbolName));
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000092}
93
94bool ModuleInfo::getNameFromSymbolTable(SymbolRef::Type Type, uint64_t Address,
95 std::string &Name, uint64_t &Addr,
96 uint64_t &Size) const {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000097 const SymbolMapTy &M = Type == SymbolRef::ST_Function ? Functions : Objects;
Alexey Samsonov5239d582013-06-04 07:57:38 +000098 if (M.empty())
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000099 return false;
Alexey Samsonov5239d582013-06-04 07:57:38 +0000100 SymbolDesc SD = { Address, Address };
101 SymbolMapTy::const_iterator it = M.upper_bound(SD);
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000102 if (it == M.begin())
103 return false;
Alexey Samsonov5239d582013-06-04 07:57:38 +0000104 --it;
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000105 if (it->first.Size != 0 && it->first.Addr + it->first.Size <= Address)
Dmitry Vyukovef8fb722013-02-14 13:06:18 +0000106 return false;
107 Name = it->second.str();
108 Addr = it->first.Addr;
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000109 Size = it->first.Size;
Dmitry Vyukovef8fb722013-02-14 13:06:18 +0000110 return true;
111}
112
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000113DILineInfo ModuleInfo::symbolizeCode(
114 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000115 DILineInfo LineInfo;
116 if (DebugInfoContext) {
117 LineInfo = DebugInfoContext->getLineInfoForAddress(
118 ModuleOffset, getDILineInfoSpecifierFlags(Opts));
119 }
120 // Override function name from symbol table if necessary.
121 if (Opts.PrintFunctions && Opts.UseSymbolTable) {
122 std::string FunctionName;
123 uint64_t Start, Size;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000124 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
125 FunctionName, Start, Size)) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000126 LineInfo.FunctionName = FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000127 }
128 }
129 return LineInfo;
130}
131
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000132DIInliningInfo ModuleInfo::symbolizeInlinedCode(
133 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000134 DIInliningInfo InlinedContext;
135 if (DebugInfoContext) {
136 InlinedContext = DebugInfoContext->getInliningInfoForAddress(
137 ModuleOffset, getDILineInfoSpecifierFlags(Opts));
138 }
139 // Make sure there is at least one frame in context.
140 if (InlinedContext.getNumberOfFrames() == 0) {
141 InlinedContext.addFrame(DILineInfo());
142 }
143 // Override the function name in lower frame with name from symbol table.
144 if (Opts.PrintFunctions && Opts.UseSymbolTable) {
145 DIInliningInfo PatchedInlinedContext;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000146 for (uint32_t i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000147 DILineInfo LineInfo = InlinedContext.getFrame(i);
148 if (i == n - 1) {
149 std::string FunctionName;
150 uint64_t Start, Size;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000151 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
152 FunctionName, Start, Size)) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000153 LineInfo.FunctionName = FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000154 }
155 }
156 PatchedInlinedContext.addFrame(LineInfo);
157 }
158 InlinedContext = PatchedInlinedContext;
159 }
160 return InlinedContext;
161}
162
163bool ModuleInfo::symbolizeData(uint64_t ModuleOffset, std::string &Name,
164 uint64_t &Start, uint64_t &Size) const {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000165 return getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset, Name, Start,
166 Size);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000167}
168
Alexey Samsonovd6cef102013-02-04 15:55:26 +0000169const char LLVMSymbolizer::kBadString[] = "??";
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000170
171std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
172 uint64_t ModuleOffset) {
173 ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
174 if (Info == 0)
175 return printDILineInfo(DILineInfo());
176 if (Opts.PrintInlining) {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000177 DIInliningInfo InlinedContext =
178 Info->symbolizeInlinedCode(ModuleOffset, Opts);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000179 uint32_t FramesNum = InlinedContext.getNumberOfFrames();
180 assert(FramesNum > 0);
181 std::string Result;
182 for (uint32_t i = 0; i < FramesNum; i++) {
183 DILineInfo LineInfo = InlinedContext.getFrame(i);
184 Result += printDILineInfo(LineInfo);
185 }
186 return Result;
187 }
188 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts);
189 return printDILineInfo(LineInfo);
190}
191
192std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
193 uint64_t ModuleOffset) {
194 std::string Name = kBadString;
195 uint64_t Start = 0;
196 uint64_t Size = 0;
197 if (Opts.UseSymbolTable) {
198 if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
Alexey Samsonov601beb72013-06-28 12:06:25 +0000199 if (Info->symbolizeData(ModuleOffset, Name, Start, Size) && Opts.Demangle)
Ed Masteef6fed72014-01-16 17:25:12 +0000200 Name = DemangleName(Name);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000201 }
202 }
203 std::stringstream ss;
204 ss << Name << "\n" << Start << " " << Size << "\n";
205 return ss.str();
206}
207
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000208void LLVMSymbolizer::flush() {
Alexey Samsonovdd71c5b2013-03-19 15:33:18 +0000209 DeleteContainerSeconds(Modules);
Alexey Samsonovfe3a5d92013-06-28 15:08:29 +0000210 BinaryForPath.clear();
211 ObjectFileForArch.clear();
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000212}
213
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000214static std::string getDarwinDWARFResourceForPath(const std::string &Path) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000215 StringRef Basename = sys::path::filename(Path);
216 const std::string &DSymDirectory = Path + ".dSYM";
217 SmallString<16> ResourceName = StringRef(DSymDirectory);
218 sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
219 sys::path::append(ResourceName, Basename);
220 return ResourceName.str();
221}
222
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000223static bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000224 std::unique_ptr<MemoryBuffer> MB;
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000225 if (MemoryBuffer::getFileOrSTDIN(Path, MB))
226 return false;
227 return !zlib::isAvailable() || CRCHash == zlib::crc32(MB->getBuffer());
228}
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)
235 if (char *RP = realpath(OrigPath.c_str(), NULL)) {
236 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;
301 Binary *Bin = 0;
302 Binary *DbgBin = 0;
Rafael Espindola63da2952014-01-15 19:37:43 +0000303 ErrorOr<Binary *> BinaryOrErr = createBinary(Path);
304 if (!error(BinaryOrErr.getError())) {
Ahmed Charles56440fd2014-03-06 05:51:42 +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);
315 error_code EC = BinaryOrErr.getError();
Rafael Espindola5cf52102014-01-15 04:49:50 +0000316 if (EC != errc::no_such_file_or_directory && !error(EC)) {
Rafael Espindola63da2952014-01-15 19:37:43 +0000317 DbgBin = BinaryOrErr.get();
David Blaikie2f2021a2014-04-22 05:26:14 +0000318 ParsedBinariesAndObjects.push_back(std::unique_ptr<Binary>(DbgBin));
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.
322 if (DbgBin == 0) {
323 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())) {
330 DbgBin = BinaryOrErr.get();
David Blaikie2f2021a2014-04-22 05:26:14 +0000331 ParsedBinariesAndObjects.push_back(std::unique_ptr<Binary>(DbgBin));
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 }
336 if (DbgBin == 0)
337 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) {
345 if (Bin == 0)
346 return 0;
347 ObjectFile *Res = 0;
348 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;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000353 std::unique_ptr<ObjectFile> ParsedObj;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000354 if (!UB->getObjectForArch(Triple(ArchName).getArch(), ParsedObj)) {
David Blaikie2f2021a2014-04-22 05:26:14 +0000355 Res = ParsedObj.get();
356 ParsedBinariesAndObjects.push_back(std::move(ParsedObj));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000357 }
358 ObjectFileForArch[std::make_pair(UB, ArchName)] = Res;
359 } else if (Bin->isObject()) {
360 Res = cast<ObjectFile>(Bin);
361 }
362 return Res;
363}
364
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000365ModuleInfo *
366LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000367 ModuleMapTy::iterator I = Modules.find(ModuleName);
368 if (I != Modules.end())
369 return I->second;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000370 std::string BinaryName = ModuleName;
371 std::string ArchName = Opts.DefaultArch;
Alexey Samsonovb119b462013-07-17 06:45:36 +0000372 size_t ColonPos = ModuleName.find_last_of(':');
373 // Verify that substring after colon form a valid arch name.
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000374 if (ColonPos != std::string::npos) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000375 std::string ArchStr = ModuleName.substr(ColonPos + 1);
NAKAMURA Takumi8ee89c62013-07-17 06:53:51 +0000376 if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000377 BinaryName = ModuleName.substr(0, ColonPos);
378 ArchName = ArchStr;
379 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000380 }
381 BinaryPair Binaries = getOrCreateBinary(BinaryName);
382 ObjectFile *Obj = getObjectFileFromBinary(Binaries.first, ArchName);
383 ObjectFile *DbgObj = getObjectFileFromBinary(Binaries.second, ArchName);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000384
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000385 if (Obj == 0) {
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000386 // Failed to find valid object file.
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000387 Modules.insert(make_pair(ModuleName, (ModuleInfo *)0));
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000388 return 0;
389 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000390 DIContext *Context = DIContext::getDWARFContext(DbgObj);
391 assert(Context);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000392 ModuleInfo *Info = new ModuleInfo(Obj, Context);
393 Modules.insert(make_pair(ModuleName, Info));
394 return Info;
395}
396
397std::string LLVMSymbolizer::printDILineInfo(DILineInfo LineInfo) const {
398 // By default, DILineInfo contains "<invalid>" for function/filename it
399 // cannot fetch. We replace it to "??" to make our output closer to addr2line.
400 static const std::string kDILineInfoBadString = "<invalid>";
401 std::stringstream Result;
402 if (Opts.PrintFunctions) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000403 std::string FunctionName = LineInfo.FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000404 if (FunctionName == kDILineInfoBadString)
405 FunctionName = kBadString;
Alexey Samsonov601beb72013-06-28 12:06:25 +0000406 else if (Opts.Demangle)
407 FunctionName = DemangleName(FunctionName);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000408 Result << FunctionName << "\n";
409 }
Alexey Samsonovd0109992014-04-18 21:36:39 +0000410 std::string Filename = LineInfo.FileName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000411 if (Filename == kDILineInfoBadString)
412 Filename = kBadString;
Alexey Samsonovd0109992014-04-18 21:36:39 +0000413 Result << Filename << ":" << LineInfo.Line << ":" << LineInfo.Column << "\n";
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000414 return Result.str();
415}
416
417#if !defined(_MSC_VER)
418// Assume that __cxa_demangle is provided by libcxxabi (except for Windows).
419extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer,
420 size_t *length, int *status);
421#endif
422
Alexey Samsonov601beb72013-06-28 12:06:25 +0000423std::string LLVMSymbolizer::DemangleName(const std::string &Name) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000424#if !defined(_MSC_VER)
Ed Masteef6fed72014-01-16 17:25:12 +0000425 // We can spoil names of symbols with C linkage, so use an heuristic
426 // approach to check if the name should be demangled.
427 if (Name.substr(0, 2) != "_Z")
428 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000429 int status = 0;
430 char *DemangledName = __cxa_demangle(Name.c_str(), 0, 0, &status);
431 if (status != 0)
Alexey Samsonov601beb72013-06-28 12:06:25 +0000432 return Name;
433 std::string Result = DemangledName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000434 free(DemangledName);
Alexey Samsonov601beb72013-06-28 12:06:25 +0000435 return Result;
436#else
437 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000438#endif
439}
440
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000441} // namespace symbolize
442} // namespace llvm