blob: 3da1963bb791da7424f85078215e871595e5d694 [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
Alexey Samsonov57f88372015-10-26 17:56:12 +000014#include "llvm/DebugInfo/Symbolize/Symbolize.h"
15
Alexey Samsonov8df3a072015-10-29 22:21:37 +000016#include "SymbolizableObjectFile.h"
17
Alexey Samsonovdd71c5b2013-03-19 15:33:18 +000018#include "llvm/ADT/STLExtras.h"
Alexey Samsonova591ae62013-08-26 18:12:03 +000019#include "llvm/Config/config.h"
Zachary Turner6489d7b2015-04-23 17:37:47 +000020#include "llvm/DebugInfo/DWARF/DWARFContext.h"
Zachary Turner20dbd0d2015-04-27 17:19:51 +000021#include "llvm/DebugInfo/PDB/PDB.h"
22#include "llvm/DebugInfo/PDB/PDBContext.h"
Alexey Samsonova5f07682014-02-26 13:10:01 +000023#include "llvm/Object/ELFObjectFile.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000024#include "llvm/Object/MachO.h"
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +000025#include "llvm/Object/MachOUniversal.h"
Reid Klecknerc25c7942015-08-10 21:47:11 +000026#include "llvm/Support/COFF.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000027#include "llvm/Support/Casting.h"
Alexey Samsonov3e9997f2013-08-14 17:09:30 +000028#include "llvm/Support/Compression.h"
29#include "llvm/Support/DataExtractor.h"
Rafael Espindola2a826e42014-06-13 17:20:48 +000030#include "llvm/Support/Errc.h"
Alexey Samsonov5239d582013-06-04 07:57:38 +000031#include "llvm/Support/FileSystem.h"
Alexey Samsonov3e9997f2013-08-14 17:09:30 +000032#include "llvm/Support/MemoryBuffer.h"
Alexey Samsonovea83baf2013-01-22 14:21:19 +000033#include "llvm/Support/Path.h"
Alexey Samsonova591ae62013-08-26 18:12:03 +000034#include <stdlib.h>
Alexey Samsonovea83baf2013-01-22 14:21:19 +000035
Zachary Turnerc007aa42015-05-06 22:26:30 +000036#if defined(_MSC_VER)
37#include <Windows.h>
38#include <DbgHelp.h>
Leny Kholodovbebb27b2015-07-02 14:34:57 +000039#pragma comment(lib, "dbghelp.lib")
Reid Klecknerc25c7942015-08-10 21:47:11 +000040
41// Windows.h conflicts with our COFF header definitions.
42#ifdef IMAGE_FILE_MACHINE_I386
43#undef IMAGE_FILE_MACHINE_I386
44#endif
Zachary Turnerc007aa42015-05-06 22:26:30 +000045#endif
46
Alexey Samsonovea83baf2013-01-22 14:21:19 +000047namespace llvm {
48namespace symbolize {
49
Alexey Samsonov884adda2015-11-04 00:30:24 +000050ErrorOr<DILineInfo> LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
51 uint64_t ModuleOffset) {
52 auto InfoOrErr = getOrCreateModuleInfo(ModuleName);
53 if (auto EC = InfoOrErr.getError())
54 return EC;
55 SymbolizableModule *Info = InfoOrErr.get();
Reid Klecknere94fef72015-10-09 00:15:01 +000056
57 // If the user is giving us relative addresses, add the preferred base of the
58 // object to the offset before we do the query. It's what DIContext expects.
59 if (Opts.RelativeAddresses)
60 ModuleOffset += Info->getModulePreferredBase();
61
Alexey Samsonov0fb64512015-10-26 22:34:56 +000062 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts.PrintFunctions,
63 Opts.UseSymbolTable);
Alexey Samsonov68812492015-11-03 21:36:13 +000064 if (Opts.Demangle)
65 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info);
Alexey Samsonovd6aa8202015-11-03 22:20:52 +000066 return LineInfo;
Alexey Samsonovea83baf2013-01-22 14:21:19 +000067}
68
Alexey Samsonov884adda2015-11-04 00:30:24 +000069ErrorOr<DIInliningInfo>
Alexey Samsonovd6aa8202015-11-03 22:20:52 +000070LLVMSymbolizer::symbolizeInlinedCode(const std::string &ModuleName,
71 uint64_t ModuleOffset) {
Alexey Samsonov884adda2015-11-04 00:30:24 +000072 auto InfoOrErr = getOrCreateModuleInfo(ModuleName);
73 if (auto EC = InfoOrErr.getError())
74 return EC;
75 SymbolizableModule *Info = InfoOrErr.get();
Alexey Samsonov46c1ce62015-10-30 00:40:20 +000076
77 // If the user is giving us relative addresses, add the preferred base of the
78 // object to the offset before we do the query. It's what DIContext expects.
79 if (Opts.RelativeAddresses)
80 ModuleOffset += Info->getModulePreferredBase();
81
82 DIInliningInfo InlinedContext = Info->symbolizeInlinedCode(
83 ModuleOffset, Opts.PrintFunctions, Opts.UseSymbolTable);
Alexey Samsonov68812492015-11-03 21:36:13 +000084 if (Opts.Demangle) {
85 for (int i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
86 auto *Frame = InlinedContext.getMutableFrame(i);
87 Frame->FunctionName = DemangleName(Frame->FunctionName, Info);
88 }
89 }
Alexey Samsonovd6aa8202015-11-03 22:20:52 +000090 return InlinedContext;
Alexey Samsonov46c1ce62015-10-30 00:40:20 +000091}
92
Alexey Samsonov884adda2015-11-04 00:30:24 +000093ErrorOr<DIGlobal> LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
94 uint64_t ModuleOffset) {
95 auto InfoOrErr = getOrCreateModuleInfo(ModuleName);
96 if (auto EC = InfoOrErr.getError())
97 return EC;
98 SymbolizableModule *Info = InfoOrErr.get();
Alexey Samsonov68812492015-11-03 21:36:13 +000099
100 // If the user is giving us relative addresses, add the preferred base of
101 // the object to the offset before we do the query. It's what DIContext
102 // expects.
103 if (Opts.RelativeAddresses)
104 ModuleOffset += Info->getModulePreferredBase();
105
106 DIGlobal Global = Info->symbolizeData(ModuleOffset);
107 if (Opts.Demangle)
108 Global.Name = DemangleName(Global.Name, Info);
Alexey Samsonovd6aa8202015-11-03 22:20:52 +0000109 return Global;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000110}
111
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000112void LLVMSymbolizer::flush() {
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000113 ObjectForUBPathAndArch.clear();
114 BinaryForPath.clear();
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000115 ObjectPairForPathArch.clear();
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000116 Modules.clear();
Dmitry Vyukove8504e22013-03-19 10:24:42 +0000117}
118
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000119// For Path="/path/to/foo" and Basename="foo" assume that debug info is in
120// /path/to/foo.dSYM/Contents/Resources/DWARF/foo.
121// For Path="/path/to/bar.dSYM" and Basename="foo" assume that debug info is in
122// /path/to/bar.dSYM/Contents/Resources/DWARF/foo.
123static
124std::string getDarwinDWARFResourceForPath(
125 const std::string &Path, const std::string &Basename) {
126 SmallString<16> ResourceName = StringRef(Path);
127 if (sys::path::extension(Path) != ".dSYM") {
128 ResourceName += ".dSYM";
129 }
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000130 sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
131 sys::path::append(ResourceName, Basename);
132 return ResourceName.str();
133}
134
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000135static bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000136 ErrorOr<std::unique_ptr<MemoryBuffer>> MB =
137 MemoryBuffer::getFileOrSTDIN(Path);
138 if (!MB)
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000139 return false;
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000140 return !zlib::isAvailable() || CRCHash == zlib::crc32(MB.get()->getBuffer());
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000141}
142
143static bool findDebugBinary(const std::string &OrigPath,
144 const std::string &DebuglinkName, uint32_t CRCHash,
145 std::string &Result) {
Alexey Samsonova591ae62013-08-26 18:12:03 +0000146 std::string OrigRealPath = OrigPath;
147#if defined(HAVE_REALPATH)
Craig Toppere6cb63e2014-04-25 04:24:47 +0000148 if (char *RP = realpath(OrigPath.c_str(), nullptr)) {
Alexey Samsonova591ae62013-08-26 18:12:03 +0000149 OrigRealPath = RP;
150 free(RP);
151 }
152#endif
153 SmallString<16> OrigDir(OrigRealPath);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000154 llvm::sys::path::remove_filename(OrigDir);
155 SmallString<16> DebugPath = OrigDir;
156 // Try /path/to/original_binary/debuglink_name
157 llvm::sys::path::append(DebugPath, DebuglinkName);
158 if (checkFileCRC(DebugPath, CRCHash)) {
159 Result = DebugPath.str();
160 return true;
161 }
162 // Try /path/to/original_binary/.debug/debuglink_name
Alexey Samsonova591ae62013-08-26 18:12:03 +0000163 DebugPath = OrigRealPath;
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000164 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
165 if (checkFileCRC(DebugPath, CRCHash)) {
166 Result = DebugPath.str();
167 return true;
168 }
169 // Try /usr/lib/debug/path/to/original_binary/debuglink_name
170 DebugPath = "/usr/lib/debug";
171 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
172 DebuglinkName);
173 if (checkFileCRC(DebugPath, CRCHash)) {
174 Result = DebugPath.str();
175 return true;
176 }
177 return false;
178}
179
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000180static bool getGNUDebuglinkContents(const ObjectFile *Obj, std::string &DebugName,
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000181 uint32_t &CRCHash) {
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000182 if (!Obj)
183 return false;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000184 for (const SectionRef &Section : Obj->sections()) {
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000185 StringRef Name;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000186 Section.getName(Name);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000187 Name = Name.substr(Name.find_first_not_of("._"));
188 if (Name == "gnu_debuglink") {
189 StringRef Data;
Alexey Samsonov48803e52014-03-13 14:37:36 +0000190 Section.getContents(Data);
Alexey Samsonov3e9997f2013-08-14 17:09:30 +0000191 DataExtractor DE(Data, Obj->isLittleEndian(), 0);
192 uint32_t Offset = 0;
193 if (const char *DebugNameStr = DE.getCStr(&Offset)) {
194 // 4-byte align the offset.
195 Offset = (Offset + 3) & ~0x3;
196 if (DE.isValidOffsetForDataOfSize(Offset, 4)) {
197 DebugName = DebugNameStr;
198 CRCHash = DE.getU32(&Offset);
199 return true;
200 }
201 }
202 break;
203 }
204 }
205 return false;
206}
207
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000208static
209bool darwinDsymMatchesBinary(const MachOObjectFile *DbgObj,
210 const MachOObjectFile *Obj) {
211 ArrayRef<uint8_t> dbg_uuid = DbgObj->getUuid();
212 ArrayRef<uint8_t> bin_uuid = Obj->getUuid();
213 if (dbg_uuid.empty() || bin_uuid.empty())
214 return false;
215 return !memcmp(dbg_uuid.data(), bin_uuid.data(), dbg_uuid.size());
216}
217
218ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath,
219 const MachOObjectFile *MachExeObj, const std::string &ArchName) {
220 // On Darwin we may find DWARF in separate object file in
221 // resource directory.
222 std::vector<std::string> DsymPaths;
223 StringRef Filename = sys::path::filename(ExePath);
224 DsymPaths.push_back(getDarwinDWARFResourceForPath(ExePath, Filename));
225 for (const auto &Path : Opts.DsymHints) {
226 DsymPaths.push_back(getDarwinDWARFResourceForPath(Path, Filename));
227 }
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000228 for (const auto &Path : DsymPaths) {
229 auto DbgObjOrErr = getOrCreateObject(Path, ArchName);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000230 if (!DbgObjOrErr)
231 continue;
232 ObjectFile *DbgObj = DbgObjOrErr.get();
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000233 const MachOObjectFile *MachDbgObj = dyn_cast<const MachOObjectFile>(DbgObj);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000234 if (!MachDbgObj)
235 continue;
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000236 if (darwinDsymMatchesBinary(MachDbgObj, MachExeObj))
Alexey Samsonov884adda2015-11-04 00:30:24 +0000237 return DbgObj;
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000238 }
239 return nullptr;
240}
241
Alexey Samsonov5365a012015-11-04 00:30:26 +0000242ObjectFile *LLVMSymbolizer::lookUpDebuglinkObject(const std::string &Path,
243 const ObjectFile *Obj,
244 const std::string &ArchName) {
245 std::string DebuglinkName;
246 uint32_t CRCHash;
247 std::string DebugBinaryPath;
248 if (!getGNUDebuglinkContents(Obj, DebuglinkName, CRCHash))
249 return nullptr;
250 if (!findDebugBinary(Path, DebuglinkName, CRCHash, DebugBinaryPath))
251 return nullptr;
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000252 auto DbgObjOrErr = getOrCreateObject(DebugBinaryPath, ArchName);
Alexey Samsonov5365a012015-11-04 00:30:26 +0000253 if (!DbgObjOrErr)
254 return nullptr;
Alexey Samsonov5365a012015-11-04 00:30:26 +0000255 return DbgObjOrErr.get();
256}
257
Alexey Samsonov884adda2015-11-04 00:30:24 +0000258ErrorOr<LLVMSymbolizer::ObjectPair>
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000259LLVMSymbolizer::getOrCreateObjectPair(const std::string &Path,
260 const std::string &ArchName) {
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000261 const auto &I = ObjectPairForPathArch.find(std::make_pair(Path, ArchName));
262 if (I != ObjectPairForPathArch.end())
263 return I->second;
Alexey Samsonov884adda2015-11-04 00:30:24 +0000264
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000265 auto ObjOrErr = getOrCreateObject(Path, ArchName);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000266 if (auto EC = ObjOrErr.getError()) {
267 ObjectPairForPathArch.insert(
268 std::make_pair(std::make_pair(Path, ArchName), EC));
269 return EC;
270 }
Alexey Samsonov884adda2015-11-04 00:30:24 +0000271
272 ObjectFile *Obj = ObjOrErr.get();
273 assert(Obj != nullptr);
274 ObjectFile *DbgObj = nullptr;
275
276 if (auto MachObj = dyn_cast<const MachOObjectFile>(Obj))
277 DbgObj = lookUpDsymFile(Path, MachObj, ArchName);
Alexey Samsonov5365a012015-11-04 00:30:26 +0000278 if (!DbgObj)
279 DbgObj = lookUpDebuglinkObject(Path, Obj, ArchName);
Alexander Potapenko7aaf5142014-10-17 00:50:19 +0000280 if (!DbgObj)
281 DbgObj = Obj;
282 ObjectPair Res = std::make_pair(Obj, DbgObj);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000283 ObjectPairForPathArch.insert(
284 std::make_pair(std::make_pair(Path, ArchName), Res));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000285 return Res;
286}
287
Alexey Samsonov884adda2015-11-04 00:30:24 +0000288ErrorOr<ObjectFile *>
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000289LLVMSymbolizer::getOrCreateObject(const std::string &Path,
290 const std::string &ArchName) {
291 const auto &I = BinaryForPath.find(Path);
292 Binary *Bin = nullptr;
293 if (I == BinaryForPath.end()) {
294 ErrorOr<OwningBinary<Binary>> BinOrErr = createBinary(Path);
295 if (auto EC = BinOrErr.getError()) {
296 BinaryForPath.insert(std::make_pair(Path, EC));
Alexey Samsonov884adda2015-11-04 00:30:24 +0000297 return EC;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000298 }
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000299 Bin = BinOrErr->getBinary();
300 BinaryForPath.insert(std::make_pair(Path, std::move(BinOrErr.get())));
301 } else if (auto EC = I->second.getError()) {
302 return EC;
303 } else {
304 Bin = I->second->getBinary();
305 }
306
307 assert(Bin != nullptr);
308
309 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
310 const auto &I = ObjectForUBPathAndArch.find(std::make_pair(Path, ArchName));
311 if (I != ObjectForUBPathAndArch.end()) {
312 if (auto EC = I->second.getError())
313 return EC;
314 return I->second->get();
315 }
316 ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr =
317 UB->getObjectForArch(ArchName);
318 if (auto EC = ObjOrErr.getError()) {
319 ObjectForUBPathAndArch.insert(
320 std::make_pair(std::make_pair(Path, ArchName), EC));
321 return EC;
322 }
323 ObjectFile *Res = ObjOrErr->get();
324 ObjectForUBPathAndArch.insert(std::make_pair(std::make_pair(Path, ArchName),
325 std::move(ObjOrErr.get())));
Alexey Samsonov884adda2015-11-04 00:30:24 +0000326 return Res;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000327 }
Alexey Samsonov884adda2015-11-04 00:30:24 +0000328 if (Bin->isObject()) {
329 return cast<ObjectFile>(Bin);
330 }
331 return object_error::arch_not_found;
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000332}
333
Alexey Samsonov884adda2015-11-04 00:30:24 +0000334ErrorOr<SymbolizableModule *>
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000335LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
Alexander Potapenko45bfe372014-10-14 13:40:44 +0000336 const auto &I = Modules.find(ModuleName);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000337 if (I != Modules.end()) {
338 auto &InfoOrErr = I->second;
339 if (auto EC = InfoOrErr.getError())
340 return EC;
341 return InfoOrErr->get();
342 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000343 std::string BinaryName = ModuleName;
344 std::string ArchName = Opts.DefaultArch;
Alexey Samsonovb119b462013-07-17 06:45:36 +0000345 size_t ColonPos = ModuleName.find_last_of(':');
346 // Verify that substring after colon form a valid arch name.
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000347 if (ColonPos != std::string::npos) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000348 std::string ArchStr = ModuleName.substr(ColonPos + 1);
NAKAMURA Takumi8ee89c62013-07-17 06:53:51 +0000349 if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
Alexey Samsonovb119b462013-07-17 06:45:36 +0000350 BinaryName = ModuleName.substr(0, ColonPos);
351 ArchName = ArchStr;
352 }
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000353 }
Alexey Samsonov1eaae4c2015-12-18 22:02:14 +0000354 auto ObjectsOrErr = getOrCreateObjectPair(BinaryName, ArchName);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000355 if (auto EC = ObjectsOrErr.getError()) {
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000356 // Failed to find valid object file.
Alexey Samsonov884adda2015-11-04 00:30:24 +0000357 Modules.insert(std::make_pair(ModuleName, EC));
358 return EC;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000359 }
Alexey Samsonov884adda2015-11-04 00:30:24 +0000360 ObjectPair Objects = ObjectsOrErr.get();
361
Alexey Samsonov7a952e52015-10-26 19:41:23 +0000362 std::unique_ptr<DIContext> Context;
Zachary Turner20dbd0d2015-04-27 17:19:51 +0000363 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) {
364 // If this is a COFF object, assume it contains PDB debug information. If
365 // we don't find any we will fall back to the DWARF case.
366 std::unique_ptr<IPDBSession> Session;
367 PDB_ErrorCode Error = loadDataForEXE(PDB_ReaderType::DIA,
368 Objects.first->getFileName(), Session);
Zachary Turnerc007aa42015-05-06 22:26:30 +0000369 if (Error == PDB_ErrorCode::Success) {
Alexey Samsonov7a952e52015-10-26 19:41:23 +0000370 Context.reset(new PDBContext(*CoffObject, std::move(Session)));
Zachary Turnerc007aa42015-05-06 22:26:30 +0000371 }
Zachary Turner20dbd0d2015-04-27 17:19:51 +0000372 }
373 if (!Context)
Alexey Samsonov7a952e52015-10-26 19:41:23 +0000374 Context.reset(new DWARFContextInMemory(*Objects.second));
Alexey Samsonov2ca65362013-06-28 08:15:40 +0000375 assert(Context);
Alexey Samsonov884adda2015-11-04 00:30:24 +0000376 auto InfoOrErr =
Alexey Samsonov8df3a072015-10-29 22:21:37 +0000377 SymbolizableObjectFile::create(Objects.first, std::move(Context));
Alexey Samsonov884adda2015-11-04 00:30:24 +0000378 auto InsertResult =
379 Modules.insert(std::make_pair(ModuleName, std::move(InfoOrErr)));
380 assert(InsertResult.second);
381 if (auto EC = InsertResult.first->second.getError())
382 return EC;
383 return InsertResult.first->second->get();
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000384}
385
Reid Klecknerc25c7942015-08-10 21:47:11 +0000386// Undo these various manglings for Win32 extern "C" functions:
387// cdecl - _foo
388// stdcall - _foo@12
389// fastcall - @foo@12
390// vectorcall - foo@@12
391// These are all different linkage names for 'foo'.
392static StringRef demanglePE32ExternCFunc(StringRef SymbolName) {
393 // Remove any '_' or '@' prefix.
394 char Front = SymbolName.empty() ? '\0' : SymbolName[0];
395 if (Front == '_' || Front == '@')
396 SymbolName = SymbolName.drop_front();
397
398 // Remove any '@[0-9]+' suffix.
399 if (Front != '?') {
400 size_t AtPos = SymbolName.rfind('@');
401 if (AtPos != StringRef::npos &&
402 std::all_of(SymbolName.begin() + AtPos + 1, SymbolName.end(),
403 [](char C) { return C >= '0' && C <= '9'; })) {
404 SymbolName = SymbolName.substr(0, AtPos);
405 }
406 }
407
408 // Remove any ending '@' for vectorcall.
409 if (SymbolName.endswith("@"))
410 SymbolName = SymbolName.drop_back();
411
412 return SymbolName;
413}
414
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000415#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
Reid Klecknerc25c7942015-08-10 21:47:11 +0000421std::string LLVMSymbolizer::DemangleName(const std::string &Name,
Alexey Samsonov8df3a072015-10-29 22:21:37 +0000422 const SymbolizableModule *ModInfo) {
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000423#if !defined(_MSC_VER)
Ed Masteef6fed72014-01-16 17:25:12 +0000424 // We can spoil names of symbols with C linkage, so use an heuristic
425 // approach to check if the name should be demangled.
Reid Klecknerc25c7942015-08-10 21:47:11 +0000426 if (Name.substr(0, 2) == "_Z") {
427 int status = 0;
428 char *DemangledName = __cxa_demangle(Name.c_str(), nullptr, nullptr, &status);
429 if (status != 0)
430 return Name;
431 std::string Result = DemangledName;
432 free(DemangledName);
433 return Result;
434 }
Alexey Samsonov601beb72013-06-28 12:06:25 +0000435#else
Reid Klecknerc25c7942015-08-10 21:47:11 +0000436 if (!Name.empty() && Name.front() == '?') {
437 // Only do MSVC C++ demangling on symbols starting with '?'.
438 char DemangledName[1024] = {0};
439 DWORD result = ::UnDecorateSymbolName(
440 Name.c_str(), DemangledName, 1023,
441 UNDNAME_NO_ACCESS_SPECIFIERS | // Strip public, private, protected
442 UNDNAME_NO_ALLOCATION_LANGUAGE | // Strip __thiscall, __stdcall, etc
443 UNDNAME_NO_THROW_SIGNATURES | // Strip throw() specifications
444 UNDNAME_NO_MEMBER_TYPE | // Strip virtual, static, etc specifiers
445 UNDNAME_NO_MS_KEYWORDS | // Strip all MS extension keywords
446 UNDNAME_NO_FUNCTION_RETURNS); // Strip function return types
447 return (result == 0) ? Name : std::string(DemangledName);
448 }
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000449#endif
Alexey Samsonov76f7ecb2015-10-29 23:49:19 +0000450 if (ModInfo && ModInfo->isWin32Module())
Reid Klecknerc25c7942015-08-10 21:47:11 +0000451 return std::string(demanglePE32ExternCFunc(Name));
452 return Name;
Alexey Samsonovea83baf2013-01-22 14:21:19 +0000453}
454
Alexey Samsonovd5d7bb52013-02-15 08:54:47 +0000455} // namespace symbolize
456} // namespace llvm