blob: 5fb2ea3fec5db2859b17f9aedac7db232e6e25fc [file] [log] [blame]
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +00001//===- NativeSession.cpp - Native implementation of IPDBSession -*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/DebugInfo/PDB/Native/NativeSession.h"
10
11#include "llvm/ADT/STLExtras.h"
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000012#include "llvm/DebugInfo/CodeView/TypeIndex.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000013#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
14#include "llvm/DebugInfo/PDB/IPDBSourceFile.h"
Adrian McCarthybf0afc32017-06-28 22:47:40 +000015#include "llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h"
Adrian McCarthyb41f03e2017-08-04 22:37:58 +000016#include "llvm/DebugInfo/PDB/Native/NativeEnumTypes.h"
Adrian McCarthy4d93d662017-03-29 19:27:08 +000017#include "llvm/DebugInfo/PDB/Native/NativeExeSymbol.h"
Zachary Turner5d629962018-09-07 00:12:56 +000018#include "llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h"
19#include "llvm/DebugInfo/PDB/Native/NativeTypeEnum.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000020#include "llvm/DebugInfo/PDB/Native/PDBFile.h"
21#include "llvm/DebugInfo/PDB/Native/RawError.h"
Zachary Turner8ab7dd602018-09-07 00:12:34 +000022#include "llvm/DebugInfo/PDB/Native/SymbolCache.h"
Adrian McCarthyb41f03e2017-08-04 22:37:58 +000023#include "llvm/DebugInfo/PDB/Native/TpiStream.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000024#include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
25#include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
Adrian McCarthyb41f03e2017-08-04 22:37:58 +000026#include "llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000027#include "llvm/Support/Allocator.h"
Zachary Turnerd9dc2822017-03-02 20:52:51 +000028#include "llvm/Support/BinaryByteStream.h"
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000029#include "llvm/Support/Error.h"
30#include "llvm/Support/ErrorOr.h"
31#include "llvm/Support/MemoryBuffer.h"
Adrian McCarthybf0afc32017-06-28 22:47:40 +000032
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000033#include <algorithm>
Adrian McCarthyb41f03e2017-08-04 22:37:58 +000034#include <cassert>
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000035#include <memory>
Adrian McCarthybf0afc32017-06-28 22:47:40 +000036#include <utility>
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000037
38using namespace llvm;
39using namespace llvm::msf;
40using namespace llvm::pdb;
41
Zachary Turner8ab7dd602018-09-07 00:12:34 +000042static DbiStream *getDbiStreamPtr(PDBFile &File) {
43 Expected<DbiStream &> DbiS = File.getPDBDbiStream();
44 if (DbiS)
45 return &DbiS.get();
46
47 consumeError(DbiS.takeError());
48 return nullptr;
49}
Adrian McCarthy8d090fc2017-07-12 19:38:11 +000050
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000051NativeSession::NativeSession(std::unique_ptr<PDBFile> PdbFile,
52 std::unique_ptr<BumpPtrAllocator> Allocator)
Zachary Turner8ab7dd602018-09-07 00:12:34 +000053 : Pdb(std::move(PdbFile)), Allocator(std::move(Allocator)),
54 Cache(*this, getDbiStreamPtr(*Pdb)) {}
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000055
56NativeSession::~NativeSession() = default;
57
Peter Collingbourne75257bc2017-10-20 19:48:26 +000058Error NativeSession::createFromPdb(std::unique_ptr<MemoryBuffer> Buffer,
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000059 std::unique_ptr<IPDBSession> &Session) {
Peter Collingbourne75257bc2017-10-20 19:48:26 +000060 StringRef Path = Buffer->getBufferIdentifier();
Zachary Turner695ed562017-02-28 00:04:07 +000061 auto Stream = llvm::make_unique<MemoryBufferByteStream>(
62 std::move(Buffer), llvm::support::little);
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000063
64 auto Allocator = llvm::make_unique<BumpPtrAllocator>();
Zachary Turner7b327d02017-02-16 23:35:45 +000065 auto File = llvm::make_unique<PDBFile>(Path, std::move(Stream), *Allocator);
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000066 if (auto EC = File->parseFileHeaders())
67 return EC;
68 if (auto EC = File->parseStreamData())
69 return EC;
70
71 Session =
72 llvm::make_unique<NativeSession>(std::move(File), std::move(Allocator));
73
74 return Error::success();
75}
76
77Error NativeSession::createFromExe(StringRef Path,
78 std::unique_ptr<IPDBSession> &Session) {
79 return make_error<RawError>(raw_error_code::feature_unsupported);
80}
81
82uint64_t NativeSession::getLoadAddress() const { return 0; }
83
Aaron Smith89a19ac2018-02-23 00:02:27 +000084bool NativeSession::setLoadAddress(uint64_t Address) { return false; }
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000085
Adrian McCarthy6a4b0802017-06-22 18:42:23 +000086std::unique_ptr<PDBSymbolExe> NativeSession::getGlobalScope() {
Zachary Turner7999b4f2018-09-05 23:30:38 +000087 return PDBSymbol::createAs<PDBSymbolExe>(*this, getNativeGlobalScope());
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000088}
89
90std::unique_ptr<PDBSymbol>
Zachary Turnercae734582018-09-10 21:30:59 +000091NativeSession::getSymbolById(SymIndexId SymbolId) const {
Zachary Turner8ab7dd602018-09-07 00:12:34 +000092 return Cache.getSymbolById(SymbolId);
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +000093}
94
Aaron Smith53708a52018-03-26 22:10:02 +000095bool NativeSession::addressForVA(uint64_t VA, uint32_t &Section,
96 uint32_t &Offset) const {
97 return false;
98}
99
100bool NativeSession::addressForRVA(uint32_t VA, uint32_t &Section,
101 uint32_t &Offset) const {
102 return false;
103}
104
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +0000105std::unique_ptr<PDBSymbol>
106NativeSession::findSymbolByAddress(uint64_t Address, PDB_SymType Type) const {
107 return nullptr;
108}
109
Aaron Smith3dca0be2018-04-10 17:33:18 +0000110std::unique_ptr<PDBSymbol>
111NativeSession::findSymbolByRVA(uint32_t RVA, PDB_SymType Type) const {
112 return nullptr;
113}
114
115std::unique_ptr<PDBSymbol>
116NativeSession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset,
117 PDB_SymType Type) const {
118 return nullptr;
119}
120
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +0000121std::unique_ptr<IPDBEnumLineNumbers>
122NativeSession::findLineNumbers(const PDBSymbolCompiland &Compiland,
123 const IPDBSourceFile &File) const {
124 return nullptr;
125}
126
127std::unique_ptr<IPDBEnumLineNumbers>
128NativeSession::findLineNumbersByAddress(uint64_t Address,
129 uint32_t Length) const {
130 return nullptr;
131}
132
Aaron Smith40198f52018-03-15 06:04:51 +0000133std::unique_ptr<IPDBEnumLineNumbers>
Aaron Smithed81a9d2018-03-26 22:13:22 +0000134NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const {
135 return nullptr;
136}
137
138std::unique_ptr<IPDBEnumLineNumbers>
Aaron Smith40198f52018-03-15 06:04:51 +0000139NativeSession::findLineNumbersBySectOffset(uint32_t Section, uint32_t Offset,
140 uint32_t Length) const {
141 return nullptr;
142}
143
Adrian McCarthy6b6b8c42017-01-25 22:38:55 +0000144std::unique_ptr<IPDBEnumSourceFiles>
145NativeSession::findSourceFiles(const PDBSymbolCompiland *Compiland,
146 StringRef Pattern,
147 PDB_NameSearchFlags Flags) const {
148 return nullptr;
149}
150
151std::unique_ptr<IPDBSourceFile>
152NativeSession::findOneSourceFile(const PDBSymbolCompiland *Compiland,
153 StringRef Pattern,
154 PDB_NameSearchFlags Flags) const {
155 return nullptr;
156}
157
158std::unique_ptr<IPDBEnumChildren<PDBSymbolCompiland>>
159NativeSession::findCompilandsForSourceFile(StringRef Pattern,
160 PDB_NameSearchFlags Flags) const {
161 return nullptr;
162}
163
164std::unique_ptr<PDBSymbolCompiland>
165NativeSession::findOneCompilandForSourceFile(StringRef Pattern,
166 PDB_NameSearchFlags Flags) const {
167 return nullptr;
168}
169
170std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getAllSourceFiles() const {
171 return nullptr;
172}
173
174std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getSourceFilesForCompiland(
175 const PDBSymbolCompiland &Compiland) const {
176 return nullptr;
177}
178
179std::unique_ptr<IPDBSourceFile>
180NativeSession::getSourceFileById(uint32_t FileId) const {
181 return nullptr;
182}
183
184std::unique_ptr<IPDBEnumDataStreams> NativeSession::getDebugStreams() const {
185 return nullptr;
186}
Aaron Smith89bca9e2017-11-16 14:33:09 +0000187
188std::unique_ptr<IPDBEnumTables> NativeSession::getEnumTables() const {
189 return nullptr;
190}
Zachary Turner679aead2018-03-13 17:46:06 +0000191
192std::unique_ptr<IPDBEnumInjectedSources>
193NativeSession::getInjectedSources() const {
194 return nullptr;
195}
Aaron Smith523de052018-03-22 04:08:15 +0000196
197std::unique_ptr<IPDBEnumSectionContribs>
198NativeSession::getSectionContribs() const {
199 return nullptr;
200}
Zachary Turner7999b4f2018-09-05 23:30:38 +0000201
Aleksandr Urakovc43e0862018-10-23 08:14:53 +0000202std::unique_ptr<IPDBEnumFrameData>
203NativeSession::getFrameData() const {
204 return nullptr;
205}
206
Zachary Turner8ab7dd602018-09-07 00:12:34 +0000207void NativeSession::initializeExeSymbol() {
208 if (ExeSymbol == 0)
209 ExeSymbol = Cache.createSymbol<NativeExeSymbol>();
210}
211
212NativeExeSymbol &NativeSession::getNativeGlobalScope() const {
213 const_cast<NativeSession &>(*this).initializeExeSymbol();
214
215 return Cache.getNativeSymbolById<NativeExeSymbol>(ExeSymbol);
Zachary Turner7999b4f2018-09-05 23:30:38 +0000216}