Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 1 | //===-- 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 Samsonov | 57f8837 | 2015-10-26 17:56:12 +0000 | [diff] [blame] | 14 | #include "llvm/DebugInfo/Symbolize/Symbolize.h" |
| 15 | |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 16 | #include "SymbolizableObjectFile.h" |
| 17 | |
Alexey Samsonov | dd71c5b | 2013-03-19 15:33:18 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Alexey Samsonov | a591ae6 | 2013-08-26 18:12:03 +0000 | [diff] [blame] | 19 | #include "llvm/Config/config.h" |
Zachary Turner | 6489d7b | 2015-04-23 17:37:47 +0000 | [diff] [blame] | 20 | #include "llvm/DebugInfo/DWARF/DWARFContext.h" |
Zachary Turner | 20dbd0d | 2015-04-27 17:19:51 +0000 | [diff] [blame] | 21 | #include "llvm/DebugInfo/PDB/PDB.h" |
| 22 | #include "llvm/DebugInfo/PDB/PDBContext.h" |
Alexey Samsonov | a5f0768 | 2014-02-26 13:10:01 +0000 | [diff] [blame] | 23 | #include "llvm/Object/ELFObjectFile.h" |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 24 | #include "llvm/Object/MachO.h" |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 25 | #include "llvm/Support/COFF.h" |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Casting.h" |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Compression.h" |
| 28 | #include "llvm/Support/DataExtractor.h" |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Errc.h" |
Alexey Samsonov | 5239d58 | 2013-06-04 07:57:38 +0000 | [diff] [blame] | 30 | #include "llvm/Support/FileSystem.h" |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 31 | #include "llvm/Support/MemoryBuffer.h" |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Path.h" |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 33 | #include <sstream> |
Alexey Samsonov | a591ae6 | 2013-08-26 18:12:03 +0000 | [diff] [blame] | 34 | #include <stdlib.h> |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 35 | |
Zachary Turner | c007aa4 | 2015-05-06 22:26:30 +0000 | [diff] [blame] | 36 | #if defined(_MSC_VER) |
| 37 | #include <Windows.h> |
| 38 | #include <DbgHelp.h> |
Leny Kholodov | bebb27b | 2015-07-02 14:34:57 +0000 | [diff] [blame] | 39 | #pragma comment(lib, "dbghelp.lib") |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 40 | |
| 41 | // Windows.h conflicts with our COFF header definitions. |
| 42 | #ifdef IMAGE_FILE_MACHINE_I386 |
| 43 | #undef IMAGE_FILE_MACHINE_I386 |
| 44 | #endif |
Zachary Turner | c007aa4 | 2015-05-06 22:26:30 +0000 | [diff] [blame] | 45 | #endif |
| 46 | |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 47 | namespace llvm { |
| 48 | namespace symbolize { |
| 49 | |
Alexey Samsonov | 57f8837 | 2015-10-26 17:56:12 +0000 | [diff] [blame] | 50 | // FIXME: Move this to llvm-symbolizer tool. |
Rafael Espindola | 4453e4294 | 2014-06-13 03:07:50 +0000 | [diff] [blame] | 51 | static bool error(std::error_code ec) { |
Alexey Samsonov | d5d7bb5 | 2013-02-15 08:54:47 +0000 | [diff] [blame] | 52 | if (!ec) |
| 53 | return false; |
Dmitry Vyukov | ef8fb72 | 2013-02-14 13:06:18 +0000 | [diff] [blame] | 54 | errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n"; |
| 55 | return true; |
| 56 | } |
| 57 | |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 58 | |
Alexey Samsonov | 76f7ecb | 2015-10-29 23:49:19 +0000 | [diff] [blame] | 59 | // By default, DILineInfo contains "<invalid>" for function/filename it |
| 60 | // cannot fetch. We replace it to "??" to make our output closer to addr2line. |
| 61 | static const char kDILineInfoBadString[] = "<invalid>"; |
| 62 | |
Alexey Samsonov | d6cef10 | 2013-02-04 15:55:26 +0000 | [diff] [blame] | 63 | const char LLVMSymbolizer::kBadString[] = "??"; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 64 | |
| 65 | std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName, |
| 66 | uint64_t ModuleOffset) { |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 67 | SymbolizableModule *Info = getOrCreateModuleInfo(ModuleName); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 68 | if (!Info) |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 69 | return printDILineInfo(DILineInfo(), Info); |
Reid Kleckner | e94fef7 | 2015-10-09 00:15:01 +0000 | [diff] [blame] | 70 | |
| 71 | // If the user is giving us relative addresses, add the preferred base of the |
| 72 | // object to the offset before we do the query. It's what DIContext expects. |
| 73 | if (Opts.RelativeAddresses) |
| 74 | ModuleOffset += Info->getModulePreferredBase(); |
| 75 | |
Alexey Samsonov | 0fb6451 | 2015-10-26 22:34:56 +0000 | [diff] [blame] | 76 | DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts.PrintFunctions, |
| 77 | Opts.UseSymbolTable); |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 78 | return printDILineInfo(LineInfo, Info); |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Alexey Samsonov | 46c1ce6 | 2015-10-30 00:40:20 +0000 | [diff] [blame^] | 81 | std::string LLVMSymbolizer::symbolizeInlinedCode(const std::string &ModuleName, |
| 82 | uint64_t ModuleOffset) { |
| 83 | SymbolizableModule *Info = getOrCreateModuleInfo(ModuleName); |
| 84 | if (!Info) |
| 85 | return printDIInliningInfo(DIInliningInfo(), nullptr); |
| 86 | |
| 87 | // If the user is giving us relative addresses, add the preferred base of the |
| 88 | // object to the offset before we do the query. It's what DIContext expects. |
| 89 | if (Opts.RelativeAddresses) |
| 90 | ModuleOffset += Info->getModulePreferredBase(); |
| 91 | |
| 92 | DIInliningInfo InlinedContext = Info->symbolizeInlinedCode( |
| 93 | ModuleOffset, Opts.PrintFunctions, Opts.UseSymbolTable); |
| 94 | return printDIInliningInfo(InlinedContext, Info); |
| 95 | } |
| 96 | |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 97 | std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName, |
| 98 | uint64_t ModuleOffset) { |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 99 | if (Opts.UseSymbolTable) { |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 100 | if (SymbolizableModule *Info = getOrCreateModuleInfo(ModuleName)) { |
| 101 | // If the user is giving us relative addresses, add the preferred base of |
| 102 | // the object to the offset before we do the query. It's what DIContext |
| 103 | // expects. |
Reid Kleckner | e94fef7 | 2015-10-09 00:15:01 +0000 | [diff] [blame] | 104 | if (Opts.RelativeAddresses) |
| 105 | ModuleOffset += Info->getModulePreferredBase(); |
Alexey Samsonov | 76f7ecb | 2015-10-29 23:49:19 +0000 | [diff] [blame] | 106 | DIGlobal Global = Info->symbolizeData(ModuleOffset); |
| 107 | return printDIGlobal(Global, Info); |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 108 | } |
| 109 | } |
Alexey Samsonov | 76f7ecb | 2015-10-29 23:49:19 +0000 | [diff] [blame] | 110 | return printDIGlobal(DIGlobal(), nullptr); |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Dmitry Vyukov | e8504e2 | 2013-03-19 10:24:42 +0000 | [diff] [blame] | 113 | void LLVMSymbolizer::flush() { |
Alexey Samsonov | 7a952e5 | 2015-10-26 19:41:23 +0000 | [diff] [blame] | 114 | Modules.clear(); |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 115 | ObjectPairForPathArch.clear(); |
Alexey Samsonov | fe3a5d9 | 2013-06-28 15:08:29 +0000 | [diff] [blame] | 116 | ObjectFileForArch.clear(); |
Dmitry Vyukov | e8504e2 | 2013-03-19 10:24:42 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 119 | // 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. |
| 123 | static |
| 124 | std::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 Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 130 | sys::path::append(ResourceName, "Contents", "Resources", "DWARF"); |
| 131 | sys::path::append(ResourceName, Basename); |
| 132 | return ResourceName.str(); |
| 133 | } |
| 134 | |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 135 | static bool checkFileCRC(StringRef Path, uint32_t CRCHash) { |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 136 | ErrorOr<std::unique_ptr<MemoryBuffer>> MB = |
| 137 | MemoryBuffer::getFileOrSTDIN(Path); |
| 138 | if (!MB) |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 139 | return false; |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 140 | return !zlib::isAvailable() || CRCHash == zlib::crc32(MB.get()->getBuffer()); |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | static bool findDebugBinary(const std::string &OrigPath, |
| 144 | const std::string &DebuglinkName, uint32_t CRCHash, |
| 145 | std::string &Result) { |
Alexey Samsonov | a591ae6 | 2013-08-26 18:12:03 +0000 | [diff] [blame] | 146 | std::string OrigRealPath = OrigPath; |
| 147 | #if defined(HAVE_REALPATH) |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 148 | if (char *RP = realpath(OrigPath.c_str(), nullptr)) { |
Alexey Samsonov | a591ae6 | 2013-08-26 18:12:03 +0000 | [diff] [blame] | 149 | OrigRealPath = RP; |
| 150 | free(RP); |
| 151 | } |
| 152 | #endif |
| 153 | SmallString<16> OrigDir(OrigRealPath); |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 154 | 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 Samsonov | a591ae6 | 2013-08-26 18:12:03 +0000 | [diff] [blame] | 163 | DebugPath = OrigRealPath; |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 164 | 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 Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 180 | static bool getGNUDebuglinkContents(const ObjectFile *Obj, std::string &DebugName, |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 181 | uint32_t &CRCHash) { |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 182 | if (!Obj) |
| 183 | return false; |
Alexey Samsonov | 48803e5 | 2014-03-13 14:37:36 +0000 | [diff] [blame] | 184 | for (const SectionRef &Section : Obj->sections()) { |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 185 | StringRef Name; |
Alexey Samsonov | 48803e5 | 2014-03-13 14:37:36 +0000 | [diff] [blame] | 186 | Section.getName(Name); |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 187 | Name = Name.substr(Name.find_first_not_of("._")); |
| 188 | if (Name == "gnu_debuglink") { |
| 189 | StringRef Data; |
Alexey Samsonov | 48803e5 | 2014-03-13 14:37:36 +0000 | [diff] [blame] | 190 | Section.getContents(Data); |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 191 | 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 Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 208 | static |
| 209 | bool 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 | |
| 218 | ObjectFile *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 | } |
| 228 | for (const auto &path : DsymPaths) { |
| 229 | ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(path); |
| 230 | std::error_code EC = BinaryOrErr.getError(); |
| 231 | if (EC != errc::no_such_file_or_directory && !error(EC)) { |
| 232 | OwningBinary<Binary> B = std::move(BinaryOrErr.get()); |
| 233 | ObjectFile *DbgObj = |
Lang Hames | f04de6e | 2014-10-31 21:37:49 +0000 | [diff] [blame] | 234 | getObjectFileFromBinary(B.getBinary(), ArchName); |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 235 | const MachOObjectFile *MachDbgObj = |
| 236 | dyn_cast<const MachOObjectFile>(DbgObj); |
| 237 | if (!MachDbgObj) continue; |
| 238 | if (darwinDsymMatchesBinary(MachDbgObj, MachExeObj)) { |
Rafael Espindola | 48af1c2 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 239 | addOwningBinary(std::move(B)); |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 240 | return DbgObj; |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 241 | } |
| 242 | } |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 243 | } |
| 244 | return nullptr; |
| 245 | } |
| 246 | |
| 247 | LLVMSymbolizer::ObjectPair |
| 248 | LLVMSymbolizer::getOrCreateObjects(const std::string &Path, |
| 249 | const std::string &ArchName) { |
| 250 | const auto &I = ObjectPairForPathArch.find(std::make_pair(Path, ArchName)); |
| 251 | if (I != ObjectPairForPathArch.end()) |
| 252 | return I->second; |
| 253 | ObjectFile *Obj = nullptr; |
| 254 | ObjectFile *DbgObj = nullptr; |
| 255 | ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(Path); |
| 256 | if (!error(BinaryOrErr.getError())) { |
| 257 | OwningBinary<Binary> &B = BinaryOrErr.get(); |
Lang Hames | f04de6e | 2014-10-31 21:37:49 +0000 | [diff] [blame] | 258 | Obj = getObjectFileFromBinary(B.getBinary(), ArchName); |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 259 | if (!Obj) { |
| 260 | ObjectPair Res = std::make_pair(nullptr, nullptr); |
| 261 | ObjectPairForPathArch[std::make_pair(Path, ArchName)] = Res; |
| 262 | return Res; |
| 263 | } |
| 264 | addOwningBinary(std::move(B)); |
| 265 | if (auto MachObj = dyn_cast<const MachOObjectFile>(Obj)) |
| 266 | DbgObj = lookUpDsymFile(Path, MachObj, ArchName); |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 267 | // Try to locate the debug binary using .gnu_debuglink section. |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 268 | if (!DbgObj) { |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 269 | std::string DebuglinkName; |
| 270 | uint32_t CRCHash; |
| 271 | std::string DebugBinaryPath; |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 272 | if (getGNUDebuglinkContents(Obj, DebuglinkName, CRCHash) && |
Rafael Espindola | 63da295 | 2014-01-15 19:37:43 +0000 | [diff] [blame] | 273 | findDebugBinary(Path, DebuglinkName, CRCHash, DebugBinaryPath)) { |
| 274 | BinaryOrErr = createBinary(DebugBinaryPath); |
| 275 | if (!error(BinaryOrErr.getError())) { |
Rafael Espindola | 48af1c2 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 276 | OwningBinary<Binary> B = std::move(BinaryOrErr.get()); |
Lang Hames | f04de6e | 2014-10-31 21:37:49 +0000 | [diff] [blame] | 277 | DbgObj = getObjectFileFromBinary(B.getBinary(), ArchName); |
Rafael Espindola | 48af1c2 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 278 | addOwningBinary(std::move(B)); |
Rafael Espindola | 63da295 | 2014-01-15 19:37:43 +0000 | [diff] [blame] | 279 | } |
Alexey Samsonov | 3e9997f | 2013-08-14 17:09:30 +0000 | [diff] [blame] | 280 | } |
| 281 | } |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 282 | } |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 283 | if (!DbgObj) |
| 284 | DbgObj = Obj; |
| 285 | ObjectPair Res = std::make_pair(Obj, DbgObj); |
| 286 | ObjectPairForPathArch[std::make_pair(Path, ArchName)] = Res; |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 287 | return Res; |
| 288 | } |
| 289 | |
| 290 | ObjectFile * |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 291 | LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin, |
| 292 | const std::string &ArchName) { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 293 | if (!Bin) |
| 294 | return nullptr; |
| 295 | ObjectFile *Res = nullptr; |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 296 | if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) { |
Alexander Potapenko | 45bfe37 | 2014-10-14 13:40:44 +0000 | [diff] [blame] | 297 | const auto &I = ObjectFileForArch.find( |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 298 | std::make_pair(UB, ArchName)); |
| 299 | if (I != ObjectFileForArch.end()) |
| 300 | return I->second; |
Rafael Espindola | 4f7932b | 2014-06-23 20:41:02 +0000 | [diff] [blame] | 301 | ErrorOr<std::unique_ptr<ObjectFile>> ParsedObj = |
Frederic Riss | ebc162a | 2015-06-22 21:33:24 +0000 | [diff] [blame] | 302 | UB->getObjectForArch(ArchName); |
Rafael Espindola | 4f7932b | 2014-06-23 20:41:02 +0000 | [diff] [blame] | 303 | if (ParsedObj) { |
| 304 | Res = ParsedObj.get().get(); |
| 305 | ParsedBinariesAndObjects.push_back(std::move(ParsedObj.get())); |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 306 | } |
| 307 | ObjectFileForArch[std::make_pair(UB, ArchName)] = Res; |
| 308 | } else if (Bin->isObject()) { |
| 309 | Res = cast<ObjectFile>(Bin); |
| 310 | } |
| 311 | return Res; |
| 312 | } |
| 313 | |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 314 | SymbolizableModule * |
Alexey Samsonov | d5d7bb5 | 2013-02-15 08:54:47 +0000 | [diff] [blame] | 315 | LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) { |
Alexander Potapenko | 45bfe37 | 2014-10-14 13:40:44 +0000 | [diff] [blame] | 316 | const auto &I = Modules.find(ModuleName); |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 317 | if (I != Modules.end()) |
Alexey Samsonov | 7a952e5 | 2015-10-26 19:41:23 +0000 | [diff] [blame] | 318 | return I->second.get(); |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 319 | std::string BinaryName = ModuleName; |
| 320 | std::string ArchName = Opts.DefaultArch; |
Alexey Samsonov | b119b46 | 2013-07-17 06:45:36 +0000 | [diff] [blame] | 321 | size_t ColonPos = ModuleName.find_last_of(':'); |
| 322 | // Verify that substring after colon form a valid arch name. |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 323 | if (ColonPos != std::string::npos) { |
Alexey Samsonov | b119b46 | 2013-07-17 06:45:36 +0000 | [diff] [blame] | 324 | std::string ArchStr = ModuleName.substr(ColonPos + 1); |
NAKAMURA Takumi | 8ee89c6 | 2013-07-17 06:53:51 +0000 | [diff] [blame] | 325 | if (Triple(ArchStr).getArch() != Triple::UnknownArch) { |
Alexey Samsonov | b119b46 | 2013-07-17 06:45:36 +0000 | [diff] [blame] | 326 | BinaryName = ModuleName.substr(0, ColonPos); |
| 327 | ArchName = ArchStr; |
| 328 | } |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 329 | } |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 330 | ObjectPair Objects = getOrCreateObjects(BinaryName, ArchName); |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 331 | |
Alexander Potapenko | 7aaf514 | 2014-10-17 00:50:19 +0000 | [diff] [blame] | 332 | if (!Objects.first) { |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 333 | // Failed to find valid object file. |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 334 | Modules.insert(std::make_pair(ModuleName, nullptr)); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 335 | return nullptr; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 336 | } |
Alexey Samsonov | 7a952e5 | 2015-10-26 19:41:23 +0000 | [diff] [blame] | 337 | std::unique_ptr<DIContext> Context; |
Zachary Turner | 20dbd0d | 2015-04-27 17:19:51 +0000 | [diff] [blame] | 338 | if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) { |
| 339 | // If this is a COFF object, assume it contains PDB debug information. If |
| 340 | // we don't find any we will fall back to the DWARF case. |
| 341 | std::unique_ptr<IPDBSession> Session; |
| 342 | PDB_ErrorCode Error = loadDataForEXE(PDB_ReaderType::DIA, |
| 343 | Objects.first->getFileName(), Session); |
Zachary Turner | c007aa4 | 2015-05-06 22:26:30 +0000 | [diff] [blame] | 344 | if (Error == PDB_ErrorCode::Success) { |
Alexey Samsonov | 7a952e5 | 2015-10-26 19:41:23 +0000 | [diff] [blame] | 345 | Context.reset(new PDBContext(*CoffObject, std::move(Session))); |
Zachary Turner | c007aa4 | 2015-05-06 22:26:30 +0000 | [diff] [blame] | 346 | } |
Zachary Turner | 20dbd0d | 2015-04-27 17:19:51 +0000 | [diff] [blame] | 347 | } |
| 348 | if (!Context) |
Alexey Samsonov | 7a952e5 | 2015-10-26 19:41:23 +0000 | [diff] [blame] | 349 | Context.reset(new DWARFContextInMemory(*Objects.second)); |
Alexey Samsonov | 2ca6536 | 2013-06-28 08:15:40 +0000 | [diff] [blame] | 350 | assert(Context); |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 351 | auto ErrOrInfo = |
| 352 | SymbolizableObjectFile::create(Objects.first, std::move(Context)); |
| 353 | if (error(ErrOrInfo.getError())) { |
| 354 | Modules.insert(std::make_pair(ModuleName, nullptr)); |
| 355 | return nullptr; |
| 356 | } |
| 357 | SymbolizableModule *Res = ErrOrInfo.get().get(); |
| 358 | Modules.insert(std::make_pair(ModuleName, std::move(ErrOrInfo.get()))); |
Alexey Samsonov | 7a952e5 | 2015-10-26 19:41:23 +0000 | [diff] [blame] | 359 | return Res; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 360 | } |
| 361 | |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 362 | std::string |
| 363 | LLVMSymbolizer::printDILineInfo(DILineInfo LineInfo, |
| 364 | const SymbolizableModule *ModInfo) const { |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 365 | std::stringstream Result; |
Alexey Samsonov | cd01472 | 2014-05-17 00:07:48 +0000 | [diff] [blame] | 366 | if (Opts.PrintFunctions != FunctionNameKind::None) { |
Alexey Samsonov | d010999 | 2014-04-18 21:36:39 +0000 | [diff] [blame] | 367 | std::string FunctionName = LineInfo.FunctionName; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 368 | if (FunctionName == kDILineInfoBadString) |
| 369 | FunctionName = kBadString; |
Alexey Samsonov | 601beb7 | 2013-06-28 12:06:25 +0000 | [diff] [blame] | 370 | else if (Opts.Demangle) |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 371 | FunctionName = DemangleName(FunctionName, ModInfo); |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 372 | Result << FunctionName << "\n"; |
| 373 | } |
Alexey Samsonov | d010999 | 2014-04-18 21:36:39 +0000 | [diff] [blame] | 374 | std::string Filename = LineInfo.FileName; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 375 | if (Filename == kDILineInfoBadString) |
| 376 | Filename = kBadString; |
Alexey Samsonov | d010999 | 2014-04-18 21:36:39 +0000 | [diff] [blame] | 377 | Result << Filename << ":" << LineInfo.Line << ":" << LineInfo.Column << "\n"; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 378 | return Result.str(); |
| 379 | } |
| 380 | |
Alexey Samsonov | 76f7ecb | 2015-10-29 23:49:19 +0000 | [diff] [blame] | 381 | std::string |
Alexey Samsonov | 46c1ce6 | 2015-10-30 00:40:20 +0000 | [diff] [blame^] | 382 | LLVMSymbolizer::printDIInliningInfo(DIInliningInfo InlinedContext, |
| 383 | const SymbolizableModule *ModInfo) const { |
| 384 | uint32_t FramesNum = InlinedContext.getNumberOfFrames(); |
| 385 | if (FramesNum == 0) |
| 386 | return printDILineInfo(DILineInfo(), ModInfo); |
| 387 | std::string Result; |
| 388 | for (uint32_t i = 0; i < FramesNum; i++) { |
| 389 | DILineInfo LineInfo = InlinedContext.getFrame(i); |
| 390 | Result += printDILineInfo(LineInfo, ModInfo); |
| 391 | } |
| 392 | return Result; |
| 393 | } |
| 394 | |
| 395 | std::string |
Alexey Samsonov | 76f7ecb | 2015-10-29 23:49:19 +0000 | [diff] [blame] | 396 | LLVMSymbolizer::printDIGlobal(DIGlobal Global, |
| 397 | const SymbolizableModule *ModInfo) const { |
| 398 | std::stringstream Result; |
| 399 | std::string Name = Global.Name; |
| 400 | if (Name == kDILineInfoBadString) |
| 401 | Name = kBadString; |
| 402 | else if (Opts.Demangle) |
| 403 | Name = DemangleName(Name, ModInfo); |
| 404 | Result << Name << "\n"; |
| 405 | Result << Global.Start << " " << Global.Size << "\n"; |
| 406 | return Result.str(); |
| 407 | } |
| 408 | |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 409 | // Undo these various manglings for Win32 extern "C" functions: |
| 410 | // cdecl - _foo |
| 411 | // stdcall - _foo@12 |
| 412 | // fastcall - @foo@12 |
| 413 | // vectorcall - foo@@12 |
| 414 | // These are all different linkage names for 'foo'. |
| 415 | static StringRef demanglePE32ExternCFunc(StringRef SymbolName) { |
| 416 | // Remove any '_' or '@' prefix. |
| 417 | char Front = SymbolName.empty() ? '\0' : SymbolName[0]; |
| 418 | if (Front == '_' || Front == '@') |
| 419 | SymbolName = SymbolName.drop_front(); |
| 420 | |
| 421 | // Remove any '@[0-9]+' suffix. |
| 422 | if (Front != '?') { |
| 423 | size_t AtPos = SymbolName.rfind('@'); |
| 424 | if (AtPos != StringRef::npos && |
| 425 | std::all_of(SymbolName.begin() + AtPos + 1, SymbolName.end(), |
| 426 | [](char C) { return C >= '0' && C <= '9'; })) { |
| 427 | SymbolName = SymbolName.substr(0, AtPos); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | // Remove any ending '@' for vectorcall. |
| 432 | if (SymbolName.endswith("@")) |
| 433 | SymbolName = SymbolName.drop_back(); |
| 434 | |
| 435 | return SymbolName; |
| 436 | } |
| 437 | |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 438 | #if !defined(_MSC_VER) |
| 439 | // Assume that __cxa_demangle is provided by libcxxabi (except for Windows). |
| 440 | extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer, |
| 441 | size_t *length, int *status); |
| 442 | #endif |
| 443 | |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 444 | std::string LLVMSymbolizer::DemangleName(const std::string &Name, |
Alexey Samsonov | 8df3a07 | 2015-10-29 22:21:37 +0000 | [diff] [blame] | 445 | const SymbolizableModule *ModInfo) { |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 446 | #if !defined(_MSC_VER) |
Ed Maste | ef6fed7 | 2014-01-16 17:25:12 +0000 | [diff] [blame] | 447 | // We can spoil names of symbols with C linkage, so use an heuristic |
| 448 | // approach to check if the name should be demangled. |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 449 | if (Name.substr(0, 2) == "_Z") { |
| 450 | int status = 0; |
| 451 | char *DemangledName = __cxa_demangle(Name.c_str(), nullptr, nullptr, &status); |
| 452 | if (status != 0) |
| 453 | return Name; |
| 454 | std::string Result = DemangledName; |
| 455 | free(DemangledName); |
| 456 | return Result; |
| 457 | } |
Alexey Samsonov | 601beb7 | 2013-06-28 12:06:25 +0000 | [diff] [blame] | 458 | #else |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 459 | if (!Name.empty() && Name.front() == '?') { |
| 460 | // Only do MSVC C++ demangling on symbols starting with '?'. |
| 461 | char DemangledName[1024] = {0}; |
| 462 | DWORD result = ::UnDecorateSymbolName( |
| 463 | Name.c_str(), DemangledName, 1023, |
| 464 | UNDNAME_NO_ACCESS_SPECIFIERS | // Strip public, private, protected |
| 465 | UNDNAME_NO_ALLOCATION_LANGUAGE | // Strip __thiscall, __stdcall, etc |
| 466 | UNDNAME_NO_THROW_SIGNATURES | // Strip throw() specifications |
| 467 | UNDNAME_NO_MEMBER_TYPE | // Strip virtual, static, etc specifiers |
| 468 | UNDNAME_NO_MS_KEYWORDS | // Strip all MS extension keywords |
| 469 | UNDNAME_NO_FUNCTION_RETURNS); // Strip function return types |
| 470 | return (result == 0) ? Name : std::string(DemangledName); |
| 471 | } |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 472 | #endif |
Alexey Samsonov | 76f7ecb | 2015-10-29 23:49:19 +0000 | [diff] [blame] | 473 | if (ModInfo && ModInfo->isWin32Module()) |
Reid Kleckner | c25c794 | 2015-08-10 21:47:11 +0000 | [diff] [blame] | 474 | return std::string(demanglePE32ExternCFunc(Name)); |
| 475 | return Name; |
Alexey Samsonov | ea83baf | 2013-01-22 14:21:19 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Alexey Samsonov | d5d7bb5 | 2013-02-15 08:54:47 +0000 | [diff] [blame] | 478 | } // namespace symbolize |
| 479 | } // namespace llvm |