blob: 1c8fa11660af7744b577e3db7e0eb292a971fb38 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- Symbolize.h ----------------------------------------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8//
9// Header for LLVM symbolization library.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZE_H
14#define LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZE_H
15
16#include "llvm/DebugInfo/Symbolize/SymbolizableModule.h"
17#include "llvm/Object/Binary.h"
18#include "llvm/Object/ObjectFile.h"
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020019#include "llvm/Object/ELFObjectFile.h"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010020#include "llvm/Support/Error.h"
21#include <algorithm>
22#include <cstdint>
23#include <map>
24#include <memory>
25#include <string>
26#include <utility>
27#include <vector>
28
29namespace llvm {
30namespace symbolize {
31
32using namespace object;
33
34using FunctionNameKind = DILineInfoSpecifier::FunctionNameKind;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020035using FileLineInfoKind = DILineInfoSpecifier::FileLineInfoKind;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010036
37class LLVMSymbolizer {
38public:
39 struct Options {
Andrew Walbran3d2c1972020-04-07 12:24:26 +010040 FunctionNameKind PrintFunctions = FunctionNameKind::LinkageName;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020041 FileLineInfoKind PathStyle = FileLineInfoKind::AbsoluteFilePath;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010042 bool UseSymbolTable = true;
43 bool Demangle = true;
44 bool RelativeAddresses = false;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020045 bool UntagAddresses = false;
46 bool UseDIA = false;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010047 std::string DefaultArch;
48 std::vector<std::string> DsymHints;
Andrew Walbran16937d02019-10-22 13:54:20 +010049 std::string FallbackDebugPath;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010050 std::string DWPName;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020051 std::vector<std::string> DebugFileDirectory;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010052 };
53
Andrew Walbran3d2c1972020-04-07 12:24:26 +010054 LLVMSymbolizer() = default;
55 LLVMSymbolizer(const Options &Opts) : Opts(Opts) {}
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010056
57 ~LLVMSymbolizer() {
58 flush();
59 }
60
Andrew Walbran3d2c1972020-04-07 12:24:26 +010061 Expected<DILineInfo> symbolizeCode(const ObjectFile &Obj,
62 object::SectionedAddress ModuleOffset);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010063 Expected<DILineInfo> symbolizeCode(const std::string &ModuleName,
Andrew Walbran3d2c1972020-04-07 12:24:26 +010064 object::SectionedAddress ModuleOffset);
65 Expected<DIInliningInfo>
66 symbolizeInlinedCode(const std::string &ModuleName,
67 object::SectionedAddress ModuleOffset);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010068 Expected<DIGlobal> symbolizeData(const std::string &ModuleName,
Andrew Walbran3d2c1972020-04-07 12:24:26 +010069 object::SectionedAddress ModuleOffset);
70 Expected<std::vector<DILocal>>
71 symbolizeFrame(const std::string &ModuleName,
72 object::SectionedAddress ModuleOffset);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010073 void flush();
74
75 static std::string
76 DemangleName(const std::string &Name,
77 const SymbolizableModule *DbiModuleDescriptor);
78
79private:
80 // Bundles together object file with code/data and object file with
81 // corresponding debug info. These objects can be the same.
Andrew Walbran3d2c1972020-04-07 12:24:26 +010082 using ObjectPair = std::pair<const ObjectFile *, const ObjectFile *>;
83
84 Expected<DILineInfo>
85 symbolizeCodeCommon(SymbolizableModule *Info,
86 object::SectionedAddress ModuleOffset);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010087
88 /// Returns a SymbolizableModule or an error if loading debug info failed.
89 /// Only one attempt is made to load a module, and errors during loading are
90 /// only reported once. Subsequent calls to get module info for a module that
91 /// failed to load will return nullptr.
92 Expected<SymbolizableModule *>
Andrew Walbran3d2c1972020-04-07 12:24:26 +010093 getOrCreateModuleInfo(const std::string &ModuleName);
94
95 Expected<SymbolizableModule *>
96 createModuleInfo(const ObjectFile *Obj,
97 std::unique_ptr<DIContext> Context,
98 StringRef ModuleName);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010099
100 ObjectFile *lookUpDsymFile(const std::string &Path,
101 const MachOObjectFile *ExeObj,
102 const std::string &ArchName);
103 ObjectFile *lookUpDebuglinkObject(const std::string &Path,
104 const ObjectFile *Obj,
105 const std::string &ArchName);
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200106 ObjectFile *lookUpBuildIDObject(const std::string &Path,
107 const ELFObjectFileBase *Obj,
108 const std::string &ArchName);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100109
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100110 /// Returns pair of pointers to object and debug object.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100111 Expected<ObjectPair> getOrCreateObjectPair(const std::string &Path,
112 const std::string &ArchName);
113
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100114 /// Return a pointer to object file at specified path, for a specified
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100115 /// architecture (e.g. if path refers to a Mach-O universal binary, only one
116 /// object file from it will be returned).
117 Expected<ObjectFile *> getOrCreateObject(const std::string &Path,
118 const std::string &ArchName);
119
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200120 std::map<std::string, std::unique_ptr<SymbolizableModule>, std::less<>>
121 Modules;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100122
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100123 /// Contains cached results of getOrCreateObjectPair().
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100124 std::map<std::pair<std::string, std::string>, ObjectPair>
125 ObjectPairForPathArch;
126
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100127 /// Contains parsed binary for each path, or parsing error.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100128 std::map<std::string, OwningBinary<Binary>> BinaryForPath;
129
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100130 /// Parsed object file for path/architecture pair, where "path" refers
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100131 /// to Mach-O universal binary.
132 std::map<std::pair<std::string, std::string>, std::unique_ptr<ObjectFile>>
133 ObjectForUBPathAndArch;
134
135 Options Opts;
136};
137
138} // end namespace symbolize
139} // end namespace llvm
140
141#endif // LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZE_H