blob: 76de0d8f9e7eff28c1ef614b96b67cf21b6dc2fa [file] [log] [blame]
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +00001//===- NativeSession.cpp - Native implementation of IPDBSession -*- C++ -*-===//
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#include "llvm/DebugInfo/PDB/Native/NativeSession.h"
11
12#include "llvm/ADT/STLExtras.h"
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000013#include "llvm/DebugInfo/CodeView/TypeIndex.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000014#include "llvm/DebugInfo/PDB/GenericError.h"
15#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
16#include "llvm/DebugInfo/PDB/IPDBSourceFile.h"
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000017#include "llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h"
Adrian McCarthybf0afc32017-06-28 22:47:40 +000018#include "llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h"
Adrian McCarthy4d93d662017-03-29 19:27:08 +000019#include "llvm/DebugInfo/PDB/Native/NativeExeSymbol.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000020#include "llvm/DebugInfo/PDB/Native/PDBFile.h"
21#include "llvm/DebugInfo/PDB/Native/RawError.h"
22#include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
23#include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
24#include "llvm/Support/Allocator.h"
Zachary Turnerd9dc2822017-03-02 20:52:51 +000025#include "llvm/Support/BinaryByteStream.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000026#include "llvm/Support/Error.h"
27#include "llvm/Support/ErrorOr.h"
28#include "llvm/Support/MemoryBuffer.h"
Adrian McCarthybf0afc32017-06-28 22:47:40 +000029
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000030#include <algorithm>
31#include <memory>
Adrian McCarthybf0afc32017-06-28 22:47:40 +000032#include <utility>
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000033
34using namespace llvm;
35using namespace llvm::msf;
36using namespace llvm::pdb;
37
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000038namespace {
39// Maps codeview::SimpleTypeKind of a built-in type to the parameters necessary
40// to instantiate a NativeBuiltinSymbol for that type.
Reid Kleckner0962cb22017-07-12 19:46:35 +000041static const struct BuiltinTypeEntry {
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000042 codeview::SimpleTypeKind Kind;
43 PDB_BuiltinType Type;
44 uint32_t Size;
45} BuiltinTypes[] = {
46 {codeview::SimpleTypeKind::Int32, PDB_BuiltinType::Int, 4},
47 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4},
48 {codeview::SimpleTypeKind::UInt32Long, PDB_BuiltinType::UInt, 4},
49 {codeview::SimpleTypeKind::UInt64Quad, PDB_BuiltinType::UInt, 8},
50 {codeview::SimpleTypeKind::NarrowCharacter, PDB_BuiltinType::Char, 1},
51 {codeview::SimpleTypeKind::SignedCharacter, PDB_BuiltinType::Char, 1},
52 {codeview::SimpleTypeKind::UnsignedCharacter, PDB_BuiltinType::UInt, 1},
53 {codeview::SimpleTypeKind::UInt16Short, PDB_BuiltinType::UInt, 2},
54 {codeview::SimpleTypeKind::Boolean8, PDB_BuiltinType::Bool, 1}
55 // This table can be grown as necessary, but these are the only types we've
56 // needed so far.
57};
58} // namespace
59
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000060NativeSession::NativeSession(std::unique_ptr<PDBFile> PdbFile,
61 std::unique_ptr<BumpPtrAllocator> Allocator)
62 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)) {}
63
64NativeSession::~NativeSession() = default;
65
66Error NativeSession::createFromPdb(StringRef Path,
67 std::unique_ptr<IPDBSession> &Session) {
68 ErrorOr<std::unique_ptr<MemoryBuffer>> ErrorOrBuffer =
69 MemoryBuffer::getFileOrSTDIN(Path, /*FileSize=*/-1,
70 /*RequiresNullTerminator=*/false);
71 if (!ErrorOrBuffer)
72 return make_error<GenericError>(generic_error_code::invalid_path);
73
74 std::unique_ptr<MemoryBuffer> Buffer = std::move(*ErrorOrBuffer);
Zachary Turner695ed562017-02-28 00:04:07 +000075 auto Stream = llvm::make_unique<MemoryBufferByteStream>(
76 std::move(Buffer), llvm::support::little);
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000077
78 auto Allocator = llvm::make_unique<BumpPtrAllocator>();
Zachary Turner7b327d02017-02-16 23:35:45 +000079 auto File = llvm::make_unique<PDBFile>(Path, std::move(Stream), *Allocator);
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000080 if (auto EC = File->parseFileHeaders())
81 return EC;
82 if (auto EC = File->parseStreamData())
83 return EC;
84
85 Session =
86 llvm::make_unique<NativeSession>(std::move(File), std::move(Allocator));
87
88 return Error::success();
89}
90
91Error NativeSession::createFromExe(StringRef Path,
92 std::unique_ptr<IPDBSession> &Session) {
93 return make_error<RawError>(raw_error_code::feature_unsupported);
94}
95
Adrian McCarthybf0afc32017-06-28 22:47:40 +000096std::unique_ptr<PDBSymbolCompiland>
97NativeSession::createCompilandSymbol(DbiModuleDescriptor MI) {
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000098 const auto Id = static_cast<SymIndexId>(SymbolCache.size());
Adrian McCarthybf0afc32017-06-28 22:47:40 +000099 SymbolCache.push_back(
100 llvm::make_unique<NativeCompilandSymbol>(*this, Id, MI));
101 return llvm::make_unique<PDBSymbolCompiland>(
102 *this, std::unique_ptr<IPDBRawSymbol>(SymbolCache[Id]->clone()));
103}
104
Adrian McCarthy8d090fc2017-07-12 19:38:11 +0000105SymIndexId NativeSession::findSymbolByTypeIndex(codeview::TypeIndex Index) {
106 // First see if it's already in our cache.
107 const auto Entry = TypeIndexToSymbolId.find(Index);
108 if (Entry != TypeIndexToSymbolId.end())
109 return Entry->second;
110
111 // Symbols for built-in types are created on the fly.
112 if (Index.isSimple()) {
113 // FIXME: We will eventually need to handle pointers to other simple types,
114 // which are still simple types in the world of CodeView TypeIndexes.
115 if (Index.getSimpleMode() != codeview::SimpleTypeMode::Direct)
116 return 0;
117 const auto Kind = Index.getSimpleKind();
Reid Kleckner0962cb22017-07-12 19:46:35 +0000118 const auto It =
119 std::find_if(std::begin(BuiltinTypes), std::end(BuiltinTypes),
120 [Kind](const BuiltinTypeEntry &Builtin) {
121 return Builtin.Kind == Kind;
122 });
Adrian McCarthy8d090fc2017-07-12 19:38:11 +0000123 if (It == std::end(BuiltinTypes))
124 return 0;
125 SymIndexId Id = SymbolCache.size();
126 SymbolCache.emplace_back(
Reid Kleckner0962cb22017-07-12 19:46:35 +0000127 llvm::make_unique<NativeBuiltinSymbol>(*this, Id, It->Type, It->Size));
Adrian McCarthy8d090fc2017-07-12 19:38:11 +0000128 TypeIndexToSymbolId[Index] = Id;
129 return Id;
130 }
131
132 // TODO: Look up PDB type by type index
133
134 return 0;
135}
136
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +0000137uint64_t NativeSession::getLoadAddress() const { return 0; }
138
139void NativeSession::setLoadAddress(uint64_t Address) {}
140
Adrian McCarthy6a4b0802017-06-22 18:42:23 +0000141std::unique_ptr<PDBSymbolExe> NativeSession::getGlobalScope() {
Adrian McCarthy8d090fc2017-07-12 19:38:11 +0000142 const auto Id = static_cast<SymIndexId>(SymbolCache.size());
Adrian McCarthybf0afc32017-06-28 22:47:40 +0000143 SymbolCache.push_back(llvm::make_unique<NativeExeSymbol>(*this, Id));
144 auto RawSymbol = SymbolCache[Id]->clone();
Adrian McCarthy649b8e02017-02-24 00:10:47 +0000145 auto PdbSymbol(PDBSymbol::create(*this, std::move(RawSymbol)));
146 std::unique_ptr<PDBSymbolExe> ExeSymbol(
Adrian McCarthy6a4b0802017-06-22 18:42:23 +0000147 static_cast<PDBSymbolExe *>(PdbSymbol.release()));
Adrian McCarthy649b8e02017-02-24 00:10:47 +0000148 return ExeSymbol;
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +0000149}
150
151std::unique_ptr<PDBSymbol>
152NativeSession::getSymbolById(uint32_t SymbolId) const {
Adrian McCarthybf0afc32017-06-28 22:47:40 +0000153 // If the caller has a SymbolId, it'd better be in our SymbolCache.
154 return SymbolId < SymbolCache.size()
155 ? PDBSymbol::create(*this, SymbolCache[SymbolId]->clone())
156 : nullptr;
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +0000157}
158
159std::unique_ptr<PDBSymbol>
160NativeSession::findSymbolByAddress(uint64_t Address, PDB_SymType Type) const {
161 return nullptr;
162}
163
164std::unique_ptr<IPDBEnumLineNumbers>
165NativeSession::findLineNumbers(const PDBSymbolCompiland &Compiland,
166 const IPDBSourceFile &File) const {
167 return nullptr;
168}
169
170std::unique_ptr<IPDBEnumLineNumbers>
171NativeSession::findLineNumbersByAddress(uint64_t Address,
172 uint32_t Length) const {
173 return nullptr;
174}
175
176std::unique_ptr<IPDBEnumSourceFiles>
177NativeSession::findSourceFiles(const PDBSymbolCompiland *Compiland,
178 StringRef Pattern,
179 PDB_NameSearchFlags Flags) const {
180 return nullptr;
181}
182
183std::unique_ptr<IPDBSourceFile>
184NativeSession::findOneSourceFile(const PDBSymbolCompiland *Compiland,
185 StringRef Pattern,
186 PDB_NameSearchFlags Flags) const {
187 return nullptr;
188}
189
190std::unique_ptr<IPDBEnumChildren<PDBSymbolCompiland>>
191NativeSession::findCompilandsForSourceFile(StringRef Pattern,
192 PDB_NameSearchFlags Flags) const {
193 return nullptr;
194}
195
196std::unique_ptr<PDBSymbolCompiland>
197NativeSession::findOneCompilandForSourceFile(StringRef Pattern,
198 PDB_NameSearchFlags Flags) const {
199 return nullptr;
200}
201
202std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getAllSourceFiles() const {
203 return nullptr;
204}
205
206std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getSourceFilesForCompiland(
207 const PDBSymbolCompiland &Compiland) const {
208 return nullptr;
209}
210
211std::unique_ptr<IPDBSourceFile>
212NativeSession::getSourceFileById(uint32_t FileId) const {
213 return nullptr;
214}
215
216std::unique_ptr<IPDBEnumDataStreams> NativeSession::getDebugStreams() const {
217 return nullptr;
218}