blob: c6bd4e7abfc4648b37a7eaa56ffb69a563df14f8 [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
Rafael Espindola4453e42942014-06-13 03:07:50 +000031static bool error(std::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 Samsonovdce67342014-05-15 21:24:32 +000038static DILineInfoSpecifier
39getDILineInfoSpecifier(const LLVMSymbolizer::Options &Opts) {
40 return DILineInfoSpecifier(
41 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath,
Alexey Samsonovcd014722014-05-17 00:07:48 +000042 Opts.PrintFunctions);
Alexey Samsonovea83baf2013-01-22 14:21:19 +000043}
44
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000045ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx)
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000046 : Module(Obj), DebugInfoContext(DICtx) {
Alexey Samsonov464d2e42014-03-17 07:28:19 +000047 for (const SymbolRef &Symbol : Module->symbols()) {
48 addSymbol(Symbol);
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000049 }
Alexey Samsonova5f07682014-02-26 13:10:01 +000050 bool NoSymbolTable = (Module->symbol_begin() == Module->symbol_end());
51 if (NoSymbolTable && Module->isELF()) {
52 // Fallback to dynamic symbol table, if regular symbol table is stripped.
53 std::pair<symbol_iterator, symbol_iterator> IDyn =
54 getELFDynamicSymbolIterators(Module);
55 for (symbol_iterator si = IDyn.first, se = IDyn.second; si != se; ++si) {
Alexey Samsonov464d2e42014-03-17 07:28:19 +000056 addSymbol(*si);
Alexey Samsonova5f07682014-02-26 13:10:01 +000057 }
58 }
59}
60
Alexey Samsonov464d2e42014-03-17 07:28:19 +000061void ModuleInfo::addSymbol(const SymbolRef &Symbol) {
Alexey Samsonova5f07682014-02-26 13:10:01 +000062 SymbolRef::Type SymbolType;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000063 if (error(Symbol.getType(SymbolType)))
Alexey Samsonova5f07682014-02-26 13:10:01 +000064 return;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000065 if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
Alexey Samsonova5f07682014-02-26 13:10:01 +000066 return;
67 uint64_t SymbolAddress;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000068 if (error(Symbol.getAddress(SymbolAddress)) ||
Alexey Samsonova5f07682014-02-26 13:10:01 +000069 SymbolAddress == UnknownAddressOrSize)
70 return;
71 uint64_t SymbolSize;
72 // Getting symbol size is linear for Mach-O files, so assume that symbol
73 // occupies the memory range up to the following symbol.
74 if (isa<MachOObjectFile>(Module))
75 SymbolSize = 0;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000076 else if (error(Symbol.getSize(SymbolSize)) ||
Alexey Samsonova5f07682014-02-26 13:10:01 +000077 SymbolSize == UnknownAddressOrSize)
78 return;
79 StringRef SymbolName;
Alexey Samsonov464d2e42014-03-17 07:28:19 +000080 if (error(Symbol.getName(SymbolName)))
Alexey Samsonova5f07682014-02-26 13:10:01 +000081 return;
82 // Mach-O symbol table names have leading underscore, skip it.
83 if (Module->isMachO() && SymbolName.size() > 0 && SymbolName[0] == '_')
84 SymbolName = SymbolName.drop_front();
85 // FIXME: If a function has alias, there are two entries in symbol table
86 // with same address size. Make sure we choose the correct one.
87 SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
88 SymbolDesc SD = { SymbolAddress, SymbolSize };
89 M.insert(std::make_pair(SD, SymbolName));
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000090}
91
92bool ModuleInfo::getNameFromSymbolTable(SymbolRef::Type Type, uint64_t Address,
93 std::string &Name, uint64_t &Addr,
94 uint64_t &Size) const {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +000095 const SymbolMapTy &M = Type == SymbolRef::ST_Function ? Functions : Objects;
Alexey Samsonov5239d582013-06-04 07:57:38 +000096 if (M.empty())
Dmitry Vyukovef8fb722013-02-14 13:06:18 +000097 return false;
Alexey Samsonov5239d582013-06-04 07:57:38 +000098 SymbolDesc SD = { Address, Address };
99 SymbolMapTy::const_iterator it = M.upper_bound(SD);
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000100 if (it == M.begin())
101 return false;
Alexey Samsonov5239d582013-06-04 07:57:38 +0000102 --it;
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000103 if (it->first.Size != 0 && it->first.Addr + it->first.Size <= Address)
Dmitry Vyukovef8fb722013-02-14 13:06:18 +0000104 return false;
105 Name = it->second.str();
106 Addr = it->first.Addr;
Alexey Samsonov35c987d2013-06-07 15:25:27 +0000107 Size = it->first.Size;
Dmitry Vyukovef8fb722013-02-14 13:06:18 +0000108 return true;
109}
110
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000111DILineInfo ModuleInfo::symbolizeCode(
112 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000113 DILineInfo LineInfo;
114 if (DebugInfoContext) {
115 LineInfo = DebugInfoContext->getLineInfoForAddress(
Alexey Samsonovdce67342014-05-15 21:24:32 +0000116 ModuleOffset, getDILineInfoSpecifier(Opts));
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000117 }
118 // Override function name from symbol table if necessary.
Alexey Samsonovcd014722014-05-17 00:07:48 +0000119 if (Opts.PrintFunctions != FunctionNameKind::None && Opts.UseSymbolTable) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000120 std::string FunctionName;
121 uint64_t Start, Size;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000122 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
123 FunctionName, Start, Size)) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000124 LineInfo.FunctionName = FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000125 }
126 }
127 return LineInfo;
128}
129
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000130DIInliningInfo ModuleInfo::symbolizeInlinedCode(
131 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000132 DIInliningInfo InlinedContext;
133 if (DebugInfoContext) {
134 InlinedContext = DebugInfoContext->getInliningInfoForAddress(
Alexey Samsonovdce67342014-05-15 21:24:32 +0000135 ModuleOffset, getDILineInfoSpecifier(Opts));
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000136 }
137 // Make sure there is at least one frame in context.
138 if (InlinedContext.getNumberOfFrames() == 0) {
139 InlinedContext.addFrame(DILineInfo());
140 }
141 // Override the function name in lower frame with name from symbol table.
Alexey Samsonovcd014722014-05-17 00:07:48 +0000142 if (Opts.PrintFunctions != FunctionNameKind::None && Opts.UseSymbolTable) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000143 DIInliningInfo PatchedInlinedContext;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000144 for (uint32_t i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000145 DILineInfo LineInfo = InlinedContext.getFrame(i);
146 if (i == n - 1) {
147 std::string FunctionName;
148 uint64_t Start, Size;
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000149 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
150 FunctionName, Start, Size)) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000151 LineInfo.FunctionName = FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000152 }
153 }
154 PatchedInlinedContext.addFrame(LineInfo);
155 }
156 InlinedContext = PatchedInlinedContext;
157 }
158 return InlinedContext;
159}
160
161bool ModuleInfo::symbolizeData(uint64_t ModuleOffset, std::string &Name,
162 uint64_t &Start, uint64_t &Size) const {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000163 return getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset, Name, Start,
164 Size);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000165}
166
Alexey Samsonovd6cef102013-02-04 15:55:26 +0000167const char LLVMSymbolizer::kBadString[] = "??";
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000168
169std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
170 uint64_t ModuleOffset) {
171 ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000172 if (!Info)
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000173 return printDILineInfo(DILineInfo());
174 if (Opts.PrintInlining) {
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000175 DIInliningInfo InlinedContext =
176 Info->symbolizeInlinedCode(ModuleOffset, Opts);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000177 uint32_t FramesNum = InlinedContext.getNumberOfFrames();
178 assert(FramesNum > 0);
179 std::string Result;
180 for (uint32_t i = 0; i < FramesNum; i++) {
181 DILineInfo LineInfo = InlinedContext.getFrame(i);
182 Result += printDILineInfo(LineInfo);
183 }
184 return Result;
185 }
186 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts);
187 return printDILineInfo(LineInfo);
188}
189
190std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
191 uint64_t ModuleOffset) {
192 std::string Name = kBadString;
193 uint64_t Start = 0;
194 uint64_t Size = 0;
195 if (Opts.UseSymbolTable) {
196 if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
Alexey Samsonov601beb72013-06-28 12:06:25 +0000197 if (Info->symbolizeData(ModuleOffset, Name, Start, Size) && Opts.Demangle)
Ed Masteef6fed72014-01-16 17:25:12 +0000198 Name = DemangleName(Name);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000199 }
200 }
201 std::stringstream ss;
202 ss << Name << "\n" << Start << " " << Size << "\n";
203 return ss.str();
204}
205
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000206void LLVMSymbolizer::flush() {
Alexey Samsonovdd71c5b2013-03-19 15:33:18 +0000207 DeleteContainerSeconds(Modules);
Alexey Samsonovfe3a5d92013-06-28 15:08:29 +0000208 BinaryForPath.clear();
209 ObjectFileForArch.clear();
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000210}
211
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000212static std::string getDarwinDWARFResourceForPath(const std::string &Path) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000213 StringRef Basename = sys::path::filename(Path);
214 const std::string &DSymDirectory = Path + ".dSYM";
215 SmallString<16> ResourceName = StringRef(DSymDirectory);
216 sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
217 sys::path::append(ResourceName, Basename);
218 return ResourceName.str();
219}
220
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000221static bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000222 std::unique_ptr<MemoryBuffer> MB;
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000223 if (MemoryBuffer::getFileOrSTDIN(Path, MB))
224 return false;
225 return !zlib::isAvailable() || CRCHash == zlib::crc32(MB->getBuffer());
226}
227
228static bool findDebugBinary(const std::string &OrigPath,
229 const std::string &DebuglinkName, uint32_t CRCHash,
230 std::string &Result) {
Alexey Samsonova591ae62013-08-26 18:12:03 +0000231 std::string OrigRealPath = OrigPath;
232#if defined(HAVE_REALPATH)
Craig Toppere6cb63e2014-04-25 04:24:47 +0000233 if (char *RP = realpath(OrigPath.c_str(), nullptr)) {
Alexey Samsonova591ae62013-08-26 18:12:03 +0000234 OrigRealPath = RP;
235 free(RP);
236 }
237#endif
238 SmallString<16> OrigDir(OrigRealPath);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000239 llvm::sys::path::remove_filename(OrigDir);
240 SmallString<16> DebugPath = OrigDir;
241 // Try /path/to/original_binary/debuglink_name
242 llvm::sys::path::append(DebugPath, DebuglinkName);
243 if (checkFileCRC(DebugPath, CRCHash)) {
244 Result = DebugPath.str();
245 return true;
246 }
247 // Try /path/to/original_binary/.debug/debuglink_name
Alexey Samsonova591ae62013-08-26 18:12:03 +0000248 DebugPath = OrigRealPath;
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000249 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
250 if (checkFileCRC(DebugPath, CRCHash)) {
251 Result = DebugPath.str();
252 return true;
253 }
254 // Try /usr/lib/debug/path/to/original_binary/debuglink_name
255 DebugPath = "/usr/lib/debug";
256 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
257 DebuglinkName);
258 if (checkFileCRC(DebugPath, CRCHash)) {
259 Result = DebugPath.str();
260 return true;
261 }
262 return false;
263}
264
265static bool getGNUDebuglinkContents(const Binary *Bin, std::string &DebugName,
266 uint32_t &CRCHash) {
267 const ObjectFile *Obj = dyn_cast<ObjectFile>(Bin);
268 if (!Obj)
269 return false;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000270 for (const SectionRef &Section : Obj->sections()) {
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000271 StringRef Name;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000272 Section.getName(Name);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000273 Name = Name.substr(Name.find_first_not_of("._"));
274 if (Name == "gnu_debuglink") {
275 StringRef Data;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000276 Section.getContents(Data);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000277 DataExtractor DE(Data, Obj->isLittleEndian(), 0);
278 uint32_t Offset = 0;
279 if (const char *DebugNameStr = DE.getCStr(&Offset)) {
280 // 4-byte align the offset.
281 Offset = (Offset + 3) & ~0x3;
282 if (DE.isValidOffsetForDataOfSize(Offset, 4)) {
283 DebugName = DebugNameStr;
284 CRCHash = DE.getU32(&Offset);
285 return true;
286 }
287 }
288 break;
289 }
290 }
291 return false;
292}
293
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000294LLVMSymbolizer::BinaryPair
295LLVMSymbolizer::getOrCreateBinary(const std::string &Path) {
296 BinaryMapTy::iterator I = BinaryForPath.find(Path);
297 if (I != BinaryForPath.end())
298 return I->second;
Craig Toppere6cb63e2014-04-25 04:24:47 +0000299 Binary *Bin = nullptr;
300 Binary *DbgBin = nullptr;
Rafael Espindola63da2952014-01-15 19:37:43 +0000301 ErrorOr<Binary *> BinaryOrErr = createBinary(Path);
302 if (!error(BinaryOrErr.getError())) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000303 std::unique_ptr<Binary> ParsedBinary(BinaryOrErr.get());
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000304 // Check if it's a universal binary.
David Blaikie2f2021a2014-04-22 05:26:14 +0000305 Bin = ParsedBinary.get();
306 ParsedBinariesAndObjects.push_back(std::move(ParsedBinary));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000307 if (Bin->isMachO() || Bin->isMachOUniversalBinary()) {
308 // On Darwin we may find DWARF in separate object file in
309 // resource directory.
310 const std::string &ResourcePath =
311 getDarwinDWARFResourceForPath(Path);
Rafael Espindola63da2952014-01-15 19:37:43 +0000312 BinaryOrErr = createBinary(ResourcePath);
Rafael Espindola4453e42942014-06-13 03:07:50 +0000313 std::error_code EC = BinaryOrErr.getError();
Rafael Espindola5c4f8292014-06-11 19:05:50 +0000314 if (EC != std::errc::no_such_file_or_directory && !error(EC)) {
Rafael Espindola63da2952014-01-15 19:37:43 +0000315 DbgBin = BinaryOrErr.get();
David Blaikie2f2021a2014-04-22 05:26:14 +0000316 ParsedBinariesAndObjects.push_back(std::unique_ptr<Binary>(DbgBin));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000317 }
318 }
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000319 // Try to locate the debug binary using .gnu_debuglink section.
Craig Toppere6cb63e2014-04-25 04:24:47 +0000320 if (!DbgBin) {
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000321 std::string DebuglinkName;
322 uint32_t CRCHash;
323 std::string DebugBinaryPath;
324 if (getGNUDebuglinkContents(Bin, DebuglinkName, CRCHash) &&
Rafael Espindola63da2952014-01-15 19:37:43 +0000325 findDebugBinary(Path, DebuglinkName, CRCHash, DebugBinaryPath)) {
326 BinaryOrErr = createBinary(DebugBinaryPath);
327 if (!error(BinaryOrErr.getError())) {
328 DbgBin = BinaryOrErr.get();
David Blaikie2f2021a2014-04-22 05:26:14 +0000329 ParsedBinariesAndObjects.push_back(std::unique_ptr<Binary>(DbgBin));
Rafael Espindola63da2952014-01-15 19:37:43 +0000330 }
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000331 }
332 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000333 }
Craig Toppere6cb63e2014-04-25 04:24:47 +0000334 if (!DbgBin)
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000335 DbgBin = Bin;
336 BinaryPair Res = std::make_pair(Bin, DbgBin);
337 BinaryForPath[Path] = Res;
338 return Res;
339}
340
341ObjectFile *
342LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin, const std::string &ArchName) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000343 if (!Bin)
344 return nullptr;
345 ObjectFile *Res = nullptr;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000346 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
347 ObjectFileForArchMapTy::iterator I = ObjectFileForArch.find(
348 std::make_pair(UB, ArchName));
349 if (I != ObjectFileForArch.end())
350 return I->second;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000351 std::unique_ptr<ObjectFile> ParsedObj;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000352 if (!UB->getObjectForArch(Triple(ArchName).getArch(), ParsedObj)) {
David Blaikie2f2021a2014-04-22 05:26:14 +0000353 Res = ParsedObj.get();
354 ParsedBinariesAndObjects.push_back(std::move(ParsedObj));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000355 }
356 ObjectFileForArch[std::make_pair(UB, ArchName)] = Res;
357 } else if (Bin->isObject()) {
358 Res = cast<ObjectFile>(Bin);
359 }
360 return Res;
361}
362
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000363ModuleInfo *
364LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000365 ModuleMapTy::iterator I = Modules.find(ModuleName);
366 if (I != Modules.end())
367 return I->second;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000368 std::string BinaryName = ModuleName;
369 std::string ArchName = Opts.DefaultArch;
Alexey Samsonovb119b462013-07-17 06:45:36 +0000370 size_t ColonPos = ModuleName.find_last_of(':');
371 // Verify that substring after colon form a valid arch name.
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000372 if (ColonPos != std::string::npos) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000373 std::string ArchStr = ModuleName.substr(ColonPos + 1);
NAKAMURA Takumi8ee89c62013-07-17 06:53:51 +0000374 if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000375 BinaryName = ModuleName.substr(0, ColonPos);
376 ArchName = ArchStr;
377 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000378 }
379 BinaryPair Binaries = getOrCreateBinary(BinaryName);
380 ObjectFile *Obj = getObjectFileFromBinary(Binaries.first, ArchName);
381 ObjectFile *DbgObj = getObjectFileFromBinary(Binaries.second, ArchName);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000382
Craig Toppere6cb63e2014-04-25 04:24:47 +0000383 if (!Obj) {
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000384 // Failed to find valid object file.
Craig Toppere6cb63e2014-04-25 04:24:47 +0000385 Modules.insert(make_pair(ModuleName, (ModuleInfo *)nullptr));
386 return nullptr;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000387 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000388 DIContext *Context = DIContext::getDWARFContext(DbgObj);
389 assert(Context);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000390 ModuleInfo *Info = new ModuleInfo(Obj, Context);
391 Modules.insert(make_pair(ModuleName, Info));
392 return Info;
393}
394
395std::string LLVMSymbolizer::printDILineInfo(DILineInfo LineInfo) const {
396 // By default, DILineInfo contains "<invalid>" for function/filename it
397 // cannot fetch. We replace it to "??" to make our output closer to addr2line.
398 static const std::string kDILineInfoBadString = "<invalid>";
399 std::stringstream Result;
Alexey Samsonovcd014722014-05-17 00:07:48 +0000400 if (Opts.PrintFunctions != FunctionNameKind::None) {
Alexey Samsonovd0109992014-04-18 21:36:39 +0000401 std::string FunctionName = LineInfo.FunctionName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000402 if (FunctionName == kDILineInfoBadString)
403 FunctionName = kBadString;
Alexey Samsonov601beb72013-06-28 12:06:25 +0000404 else if (Opts.Demangle)
405 FunctionName = DemangleName(FunctionName);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000406 Result << FunctionName << "\n";
407 }
Alexey Samsonovd0109992014-04-18 21:36:39 +0000408 std::string Filename = LineInfo.FileName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000409 if (Filename == kDILineInfoBadString)
410 Filename = kBadString;
Alexey Samsonovd0109992014-04-18 21:36:39 +0000411 Result << Filename << ":" << LineInfo.Line << ":" << LineInfo.Column << "\n";
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000412 return Result.str();
413}
414
415#if !defined(_MSC_VER)
416// Assume that __cxa_demangle is provided by libcxxabi (except for Windows).
417extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer,
418 size_t *length, int *status);
419#endif
420
Alexey Samsonov601beb72013-06-28 12:06:25 +0000421std::string LLVMSymbolizer::DemangleName(const std::string &Name) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000422#if !defined(_MSC_VER)
Ed Masteef6fed72014-01-16 17:25:12 +0000423 // We can spoil names of symbols with C linkage, so use an heuristic
424 // approach to check if the name should be demangled.
425 if (Name.substr(0, 2) != "_Z")
426 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000427 int status = 0;
Craig Toppere6cb63e2014-04-25 04:24:47 +0000428 char *DemangledName = __cxa_demangle(Name.c_str(), nullptr, nullptr, &status);
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000429 if (status != 0)
Alexey Samsonov601beb72013-06-28 12:06:25 +0000430 return Name;
431 std::string Result = DemangledName;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000432 free(DemangledName);
Alexey Samsonov601beb72013-06-28 12:06:25 +0000433 return Result;
434#else
435 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000436#endif
437}
438
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000439} // namespace symbolize
440} // namespace llvm