blob: 49fba173b203a6ae6d86e33cf21be7b0d263f5d9 [file] [log] [blame]
Eugene Zelenkofb69e662017-06-06 22:22:41 +00001//===- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h --------------*- C++ -*-===//
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00002//
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//
Reid Kleckner70f5bc92016-01-14 19:25:04 +000010// This file contains support for writing Microsoft CodeView debug info.
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000011//
12//===----------------------------------------------------------------------===//
13
Reid Kleckner70f5bc92016-01-14 19:25:04 +000014#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_CODEVIEWDEBUG_H
15#define LLVM_LIB_CODEGEN_ASMPRINTER_CODEVIEWDEBUG_H
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000016
Hsiangkai Wang2532ac82018-08-17 15:22:04 +000017#include "DbgEntityHistoryCalculator.h"
Reid Klecknerf9c275f2016-02-10 20:55:49 +000018#include "DebugHandlerBase.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000019#include "llvm/ADT/ArrayRef.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000020#include "llvm/ADT/DenseMap.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000021#include "llvm/ADT/DenseSet.h"
22#include "llvm/ADT/MapVector.h"
23#include "llvm/ADT/SetVector.h"
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/DebugInfo/CodeView/CodeView.h"
Zachary Turner048f8f92017-12-13 22:33:58 +000026#include "llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h"
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000027#include "llvm/DebugInfo/CodeView/TypeIndex.h"
Chandler Carruth92051402014-03-05 10:30:38 +000028#include "llvm/IR/DebugLoc.h"
Eugene Zelenkofb69e662017-06-06 22:22:41 +000029#include "llvm/Support/Allocator.h"
30#include "llvm/Support/Compiler.h"
31#include <cstdint>
32#include <map>
33#include <string>
34#include <tuple>
35#include <unordered_map>
36#include <utility>
37#include <vector>
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000038
39namespace llvm {
Reid Klecknerf9c275f2016-02-10 20:55:49 +000040
Amjad Aboud76c9eb92016-06-18 10:25:07 +000041struct ClassInfo;
Eugene Zelenkofb69e662017-06-06 22:22:41 +000042class StringRef;
43class AsmPrinter;
44class Function;
45class GlobalVariable;
46class MCSectionCOFF;
47class MCStreamer;
48class MCSymbol;
49class MachineFunction;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000050
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000051/// Collects and handles line tables information in a CodeView format.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000052class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
Reid Klecknerdac21b42016-02-03 21:15:48 +000053 MCStreamer &OS;
Eugene Zelenkofb69e662017-06-06 22:22:41 +000054 BumpPtrAllocator Allocator;
Zachary Turner048f8f92017-12-13 22:33:58 +000055 codeview::GlobalTypeTableBuilder TypeTable;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000056
Reid Kleckner75557712018-11-16 18:47:41 +000057 /// Whether to emit type record hashes into .debug$H.
58 bool EmitDebugGlobalHashes = false;
59
Reid Kleckner9ea2c012018-10-01 21:59:45 +000060 /// The codeview CPU type used by the translation unit.
61 codeview::CPUType TheCPU;
62
Reid Kleckner876330d2016-02-12 21:48:30 +000063 /// Represents the most general definition range.
64 struct LocalVarDefRange {
65 /// Indicates that variable data is stored in memory relative to the
66 /// specified register.
67 int InMemory : 1;
68
69 /// Offset of variable data in memory.
70 int DataOffset : 31;
71
Reid Kleckner2b3e6422016-10-05 21:21:33 +000072 /// Non-zero if this is a piece of an aggregate.
73 uint16_t IsSubfield : 1;
74
75 /// Offset into aggregate.
76 uint16_t StructOffset : 15;
Reid Kleckner876330d2016-02-12 21:48:30 +000077
78 /// Register containing the data or the register base of the memory
79 /// location containing the data.
80 uint16_t CVRegister;
81
82 /// Compares all location fields. This includes all fields except the label
83 /// ranges.
84 bool isDifferentLocation(LocalVarDefRange &O) {
85 return InMemory != O.InMemory || DataOffset != O.DataOffset ||
Reid Kleckner2b3e6422016-10-05 21:21:33 +000086 IsSubfield != O.IsSubfield || StructOffset != O.StructOffset ||
87 CVRegister != O.CVRegister;
Reid Kleckner876330d2016-02-12 21:48:30 +000088 }
89
90 SmallVector<std::pair<const MCSymbol *, const MCSymbol *>, 1> Ranges;
91 };
92
93 static LocalVarDefRange createDefRangeMem(uint16_t CVRegister, int Offset);
Reid Kleckner876330d2016-02-12 21:48:30 +000094
Reid Klecknerf9c275f2016-02-10 20:55:49 +000095 /// Similar to DbgVariable in DwarfDebug, but not dwarf-specific.
96 struct LocalVariable {
97 const DILocalVariable *DIVar = nullptr;
Reid Kleckner876330d2016-02-12 21:48:30 +000098 SmallVector<LocalVarDefRange, 1> DefRanges;
Reid Kleckner08f5fd52017-08-31 15:56:49 +000099 bool UseReferenceType = false;
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000100 };
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000101
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000102 struct InlineSite {
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000103 SmallVector<LocalVariable, 1> InlinedLocals;
104 SmallVector<const DILocation *, 1> ChildSites;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000105 const DISubprogram *Inlinee = nullptr;
Reid Klecknerc29b4f02016-07-14 23:47:15 +0000106
107 /// The ID of the inline site or function used with .cv_loc. Not a type
108 /// index.
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000109 unsigned SiteFuncId = 0;
110 };
111
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000112 // Combines information from DILexicalBlock and LexicalScope.
113 struct LexicalBlock {
114 SmallVector<LocalVariable, 1> Locals;
115 SmallVector<LexicalBlock *, 1> Children;
116 const MCSymbol *Begin;
117 const MCSymbol *End;
118 StringRef Name;
119 };
120
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000121 // For each function, store a vector of labels to its instructions, as well as
122 // to the end of the function.
123 struct FunctionInfo {
Reid Kleckner55baeef2018-03-15 21:12:21 +0000124 FunctionInfo() = default;
125
126 // Uncopyable.
127 FunctionInfo(const FunctionInfo &FI) = delete;
128
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000129 /// Map from inlined call site to inlined instructions and child inlined
130 /// call sites. Listed in program order.
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000131 std::unordered_map<const DILocation *, InlineSite> InlineSites;
132
133 /// Ordered list of top-level inlined call sites.
134 SmallVector<const DILocation *, 1> ChildSites;
135
136 SmallVector<LocalVariable, 1> Locals;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000137
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000138 std::unordered_map<const DILexicalBlockBase*, LexicalBlock> LexicalBlocks;
139
140 // Lexical blocks containing local variables.
141 SmallVector<LexicalBlock *, 1> ChildBlocks;
142
Reid Klecknere33c94f2017-09-05 20:14:58 +0000143 std::vector<std::pair<MCSymbol *, MDNode *>> Annotations;
144
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000145 const MCSymbol *Begin = nullptr;
146 const MCSymbol *End = nullptr;
Reid Kleckner2214ed82016-01-29 00:49:42 +0000147 unsigned FuncId = 0;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000148 unsigned LastFileId = 0;
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000149
150 /// Number of bytes allocated in the prologue for all local stack objects.
151 unsigned FrameSize = 0;
152
153 /// Number of bytes of parameters on the stack.
154 unsigned ParamSize = 0;
155
156 /// Number of bytes pushed to save CSRs.
157 unsigned CSRSize = 0;
158
Reid Kleckner2bcb2882018-11-03 00:41:52 +0000159 /// Adjustment to apply on x86 when using the VFRAME frame pointer.
160 int OffsetAdjustment = 0;
161
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000162 /// Two-bit value indicating which register is the designated frame pointer
163 /// register for local variables. Included in S_FRAMEPROC.
164 codeview::EncodedFramePtrReg EncodedLocalFramePtrReg =
165 codeview::EncodedFramePtrReg::None;
166
167 /// Two-bit value indicating which register is the designated frame pointer
168 /// register for stack parameters. Included in S_FRAMEPROC.
169 codeview::EncodedFramePtrReg EncodedParamFramePtrReg =
170 codeview::EncodedFramePtrReg::None;
171
172 codeview::FrameProcedureOptions FrameProcOpts;
173
Reid Klecknerd5e4ec72018-10-02 16:43:52 +0000174 bool HasStackRealignment = false;
175
Reid Kleckner2214ed82016-01-29 00:49:42 +0000176 bool HaveLineInfo = false;
Reid Kleckner9533af42016-01-16 00:09:09 +0000177 };
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000178 FunctionInfo *CurFn = nullptr;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000179
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000180 // Map used to seperate variables according to the lexical scope they belong
181 // in. This is populated by recordLocalVariable() before
182 // collectLexicalBlocks() separates the variables between the FunctionInfo
183 // and LexicalBlocks.
184 DenseMap<const LexicalScope *, SmallVector<LocalVariable, 1>> ScopeVariables;
185
Reid Kleckner5d122f82016-05-25 23:16:12 +0000186 /// The set of comdat .debug$S sections that we've seen so far. Each section
187 /// must start with a magic version number that must only be emitted once.
188 /// This set tracks which sections we've already opened.
189 DenseSet<MCSectionCOFF *> ComdatDebugSections;
190
191 /// Switch to the appropriate .debug$S section for GVSym. If GVSym, the symbol
192 /// of an emitted global value, is in a comdat COFF section, this will switch
193 /// to a new .debug$S section in that comdat. This method ensures that the
194 /// section starts with the magic version number on first use. If GVSym is
195 /// null, uses the main .debug$S section.
196 void switchToDebugSectionForSymbol(const MCSymbol *GVSym);
197
Reid Klecknerfbd77872016-03-18 18:54:32 +0000198 /// The next available function index for use with our .cv_* directives. Not
199 /// to be confused with type indices for LF_FUNC_ID records.
Reid Kleckner2214ed82016-01-29 00:49:42 +0000200 unsigned NextFuncId = 0;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000201
Reid Kleckner876330d2016-02-12 21:48:30 +0000202 InlineSite &getInlineSite(const DILocation *InlinedAt,
203 const DISubprogram *Inlinee);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000204
David Majnemer75c3ebf2016-06-02 17:13:53 +0000205 codeview::TypeIndex getFuncIdForSubprogram(const DISubprogram *SP);
Reid Kleckner2280f932016-05-23 20:23:46 +0000206
Bob Haarman223303c2017-08-29 20:59:25 +0000207 void calculateRanges(LocalVariable &Var,
208 const DbgValueHistoryMap::InstrRanges &Ranges);
209
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000210 static void collectInlineSiteChildren(SmallVectorImpl<unsigned> &Children,
211 const FunctionInfo &FI,
212 const InlineSite &Site);
213
Reid Kleckner2214ed82016-01-29 00:49:42 +0000214 /// Remember some debug info about each function. Keep it in a stable order to
215 /// emit at the end of the TU.
Reid Kleckner55baeef2018-03-15 21:12:21 +0000216 MapVector<const Function *, std::unique_ptr<FunctionInfo>> FnDebugInfo;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000217
Reid Klecknerbc6f52d2017-10-31 21:52:15 +0000218 /// Map from full file path to .cv_file id. Full paths are built from DIFiles
219 /// and are stored in FileToFilepathMap;
220 DenseMap<StringRef, unsigned> FileIdMap;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000221
Reid Klecknerfbd77872016-03-18 18:54:32 +0000222 /// All inlined subprograms in the order they should be emitted.
Reid Kleckner2280f932016-05-23 20:23:46 +0000223 SmallSetVector<const DISubprogram *, 4> InlinedSubprograms;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000224
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000225 /// Map from a pair of DI metadata nodes and its DI type (or scope) that can
226 /// be nullptr, to CodeView type indices. Primarily indexed by
227 /// {DIType*, DIType*} and {DISubprogram*, DIType*}.
228 ///
229 /// The second entry in the key is needed for methods as DISubroutineType
230 /// representing static method type are shared with non-method function type.
231 DenseMap<std::pair<const DINode *, const DIType *>, codeview::TypeIndex>
232 TypeIndices;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000233
Reid Klecknera8d57402016-06-03 15:58:20 +0000234 /// Map from DICompositeType* to complete type index. Non-record types are
235 /// always looked up in the normal TypeIndices map.
236 DenseMap<const DICompositeType *, codeview::TypeIndex> CompleteTypeIndices;
237
Reid Kleckner643dd832016-06-22 17:15:28 +0000238 /// Complete record types to emit after all active type lowerings are
239 /// finished.
240 SmallVector<const DICompositeType *, 4> DeferredCompleteTypes;
241
242 /// Number of type lowering frames active on the stack.
243 unsigned TypeEmissionLevel = 0;
244
Reid Kleckner9f7f3e12016-06-24 16:24:24 +0000245 codeview::TypeIndex VBPType;
246
David Majnemer3128b102016-06-15 18:00:01 +0000247 const DISubprogram *CurrentSubprogram = nullptr;
248
249 // The UDTs we have seen while processing types; each entry is a pair of type
250 // index and type name.
Zachary Turnera7b04172017-08-28 18:49:04 +0000251 std::vector<std::pair<std::string, const DIType *>> LocalUDTs;
252 std::vector<std::pair<std::string, const DIType *>> GlobalUDTs;
David Majnemer3128b102016-06-15 18:00:01 +0000253
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000254 using FileToFilepathMapTy = std::map<const DIFile *, std::string>;
Reid Kleckner9533af42016-01-16 00:09:09 +0000255 FileToFilepathMapTy FileToFilepathMap;
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000256
Fangrui Songcb0bab82018-07-16 18:51:40 +0000257 StringRef getFullFilepath(const DIFile *File);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000258
Reid Kleckner2214ed82016-01-29 00:49:42 +0000259 unsigned maybeRecordFile(const DIFile *F);
260
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000261 void maybeRecordLocation(const DebugLoc &DL, const MachineFunction *MF);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000262
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000263 void clear();
David Majnemer3128b102016-06-15 18:00:01 +0000264
265 void setCurrentSubprogram(const DISubprogram *SP) {
266 CurrentSubprogram = SP;
267 LocalUDTs.clear();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000268 }
269
Reid Kleckner5d122f82016-05-25 23:16:12 +0000270 /// Emit the magic version number at the start of a CodeView type or symbol
Alexandre Ganead9e96742018-04-09 20:17:56 +0000271 /// section. Appears at the front of every .debug$S or .debug$T or .debug$P
272 /// section.
Reid Kleckner5d122f82016-05-25 23:16:12 +0000273 void emitCodeViewMagicVersion();
274
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000275 void emitTypeInformation();
276
Zachary Turner048f8f92017-12-13 22:33:58 +0000277 void emitTypeGlobalHashes();
278
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000279 void emitCompilerInformation();
280
Reid Kleckner810687c2018-10-12 18:19:06 +0000281 void emitBuildInfo();
282
Reid Kleckner5d122f82016-05-25 23:16:12 +0000283 void emitInlineeLinesSubsection();
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000284
Brock Wyma94ece8f2018-04-16 16:53:57 +0000285 void emitDebugInfoForThunk(const Function *GV,
286 FunctionInfo &FI,
287 const MCSymbol *Fn);
288
Reid Kleckner2214ed82016-01-29 00:49:42 +0000289 void emitDebugInfoForFunction(const Function *GV, FunctionInfo &FI);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000290
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000291 void emitDebugInfoForGlobals();
292
Hans Wennborgb510b452016-06-23 16:33:53 +0000293 void emitDebugInfoForRetainedTypes();
294
Zachary Turnera7b04172017-08-28 18:49:04 +0000295 void
296 emitDebugInfoForUDTs(ArrayRef<std::pair<std::string, const DIType *>> UDTs);
David Majnemer3128b102016-06-15 18:00:01 +0000297
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000298 void emitDebugInfoForGlobal(const DIGlobalVariable *DIGV,
299 const GlobalVariable *GV, MCSymbol *GVSym);
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000300
301 /// Opens a subsection of the given kind in a .debug$S codeview section.
302 /// Returns an end label for use with endCVSubsection when the subsection is
303 /// finished.
Zachary Turner8c099fe2017-05-30 16:36:15 +0000304 MCSymbol *beginCVSubsection(codeview::DebugSubsectionKind Kind);
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000305 void endCVSubsection(MCSymbol *EndLabel);
306
Reid Kleckner5bf71d12018-12-14 22:40:28 +0000307 /// Opens a symbol record of the given kind. Returns an end label for use with
308 /// endSymbolRecord.
309 MCSymbol *beginSymbolRecord(codeview::SymbolKind Kind);
310 void endSymbolRecord(MCSymbol *SymEnd);
311
312 /// Emits an S_END, S_INLINESITE_END, or S_PROC_ID_END record. These records
313 /// are empty, so we emit them with a simpler assembly sequence that doesn't
314 /// involve labels.
315 void emitEndSymbolRecord(codeview::SymbolKind EndKind);
316
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000317 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
318 const InlineSite &Site);
319
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +0000320 using InlinedEntity = DbgValueHistoryMap::InlinedEntity;
Reid Kleckner876330d2016-02-12 21:48:30 +0000321
322 void collectVariableInfo(const DISubprogram *SP);
323
Hsiangkai Wang760c1ab2018-09-06 02:22:06 +0000324 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
Reid Kleckner876330d2016-02-12 21:48:30 +0000325
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000326 // Construct the lexical block tree for a routine, pruning emptpy lexical
327 // scopes, and populate it with local variables.
328 void collectLexicalBlockInfo(SmallVectorImpl<LexicalScope *> &Scopes,
329 SmallVectorImpl<LexicalBlock *> &Blocks,
330 SmallVectorImpl<LocalVariable> &Locals);
331 void collectLexicalBlockInfo(LexicalScope &Scope,
332 SmallVectorImpl<LexicalBlock *> &ParentBlocks,
333 SmallVectorImpl<LocalVariable> &ParentLocals);
334
Reid Kleckner876330d2016-02-12 21:48:30 +0000335 /// Records information about a local variable in the appropriate scope. In
336 /// particular, locals from inlined code live inside the inlining site.
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000337 void recordLocalVariable(LocalVariable &&Var, const LexicalScope *LS);
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000338
Reid Kleckner10dd55c2016-06-24 17:55:40 +0000339 /// Emits local variables in the appropriate order.
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000340 void emitLocalVariableList(const FunctionInfo &FI,
341 ArrayRef<LocalVariable> Locals);
Reid Kleckner10dd55c2016-06-24 17:55:40 +0000342
343 /// Emits an S_LOCAL record and its associated defined ranges.
Reid Kleckner9ea2c012018-10-01 21:59:45 +0000344 void emitLocalVariable(const FunctionInfo &FI, const LocalVariable &Var);
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000345
Reid Kleckner5a791ee2018-03-15 21:24:04 +0000346 /// Emits a sequence of lexical block scopes and their children.
347 void emitLexicalBlockList(ArrayRef<LexicalBlock *> Blocks,
348 const FunctionInfo& FI);
349
350 /// Emit a lexical block scope and its children.
351 void emitLexicalBlock(const LexicalBlock &Block, const FunctionInfo& FI);
352
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000353 /// Translates the DIType to codeview if necessary and returns a type index
354 /// for it.
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000355 codeview::TypeIndex getTypeIndex(DITypeRef TypeRef,
356 DITypeRef ClassTyRef = DITypeRef());
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000357
Zachary Turnerc68f8952018-11-20 22:13:43 +0000358 codeview::TypeIndex
359 getTypeIndexForThisPtr(DITypeRef TypeRef,
360 const DISubroutineType *SubroutineTy);
361
Bob Haarman223303c2017-08-29 20:59:25 +0000362 codeview::TypeIndex getTypeIndexForReferenceTo(DITypeRef TypeRef);
363
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000364 codeview::TypeIndex getMemberFunctionType(const DISubprogram *SP,
365 const DICompositeType *Class);
366
367 codeview::TypeIndex getScopeIndex(const DIScope *Scope);
368
Reid Kleckner9f7f3e12016-06-24 16:24:24 +0000369 codeview::TypeIndex getVBPTypeIndex();
370
Zachary Turnera7b04172017-08-28 18:49:04 +0000371 void addToUDTs(const DIType *Ty);
Hans Wennborg4b63a982016-06-23 22:57:25 +0000372
Aaron Smith122d9e72018-03-06 18:20:22 +0000373 void addUDTSrcLine(const DIType *Ty, codeview::TypeIndex TI);
374
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000375 codeview::TypeIndex lowerType(const DIType *Ty, const DIType *ClassTy);
David Majnemerd065e232016-06-02 06:21:37 +0000376 codeview::TypeIndex lowerTypeAlias(const DIDerivedType *Ty);
Adrian McCarthyf3c3c132016-06-08 18:22:59 +0000377 codeview::TypeIndex lowerTypeArray(const DICompositeType *Ty);
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000378 codeview::TypeIndex lowerTypeBasic(const DIBasicType *Ty);
Reid Kleckner3acdc672018-02-27 22:08:15 +0000379 codeview::TypeIndex lowerTypePointer(
380 const DIDerivedType *Ty,
381 codeview::PointerOptions PO = codeview::PointerOptions::None);
382 codeview::TypeIndex lowerTypeMemberPointer(
383 const DIDerivedType *Ty,
384 codeview::PointerOptions PO = codeview::PointerOptions::None);
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000385 codeview::TypeIndex lowerTypeModifier(const DIDerivedType *Ty);
David Majnemer75c3ebf2016-06-02 17:13:53 +0000386 codeview::TypeIndex lowerTypeFunction(const DISubroutineType *Ty);
Reid Kleckner9dac4732016-08-31 15:59:30 +0000387 codeview::TypeIndex lowerTypeVFTableShape(const DIDerivedType *Ty);
Aaron Smith802b0332018-10-02 20:21:05 +0000388 codeview::TypeIndex lowerTypeMemberFunction(
389 const DISubroutineType *Ty, const DIType *ClassTy, int ThisAdjustment,
390 bool IsStaticMethod,
391 codeview::FunctionOptions FO = codeview::FunctionOptions::None);
David Majnemer979cb882016-06-16 21:32:16 +0000392 codeview::TypeIndex lowerTypeEnum(const DICompositeType *Ty);
Reid Klecknera8d57402016-06-03 15:58:20 +0000393 codeview::TypeIndex lowerTypeClass(const DICompositeType *Ty);
394 codeview::TypeIndex lowerTypeUnion(const DICompositeType *Ty);
395
396 /// Symbol records should point to complete types, but type records should
397 /// always point to incomplete types to avoid cycles in the type graph. Only
398 /// use this entry point when generating symbol records. The complete and
399 /// incomplete type indices only differ for record types. All other types use
400 /// the same index.
401 codeview::TypeIndex getCompleteTypeIndex(DITypeRef TypeRef);
402
403 codeview::TypeIndex lowerCompleteTypeClass(const DICompositeType *Ty);
404 codeview::TypeIndex lowerCompleteTypeUnion(const DICompositeType *Ty);
405
Reid Kleckner643dd832016-06-22 17:15:28 +0000406 struct TypeLoweringScope;
407
408 void emitDeferredCompleteTypes();
409
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000410 void collectMemberInfo(ClassInfo &Info, const DIDerivedType *DDTy);
Reid Kleckner1ab7eac2016-06-22 16:06:42 +0000411 ClassInfo collectClassInfo(const DICompositeType *Ty);
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000412
Reid Klecknera8d57402016-06-03 15:58:20 +0000413 /// Common record member lowering functionality for record types, which are
414 /// structs, classes, and unions. Returns the field list index and the member
415 /// count.
Adrian McCarthy820ca542016-07-06 19:49:51 +0000416 std::tuple<codeview::TypeIndex, codeview::TypeIndex, unsigned, bool>
Reid Klecknera8d57402016-06-03 15:58:20 +0000417 lowerRecordFieldList(const DICompositeType *Ty);
418
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000419 /// Inserts {{Node, ClassTy}, TI} into TypeIndices and checks for duplicates.
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000420 codeview::TypeIndex recordTypeIndexForDINode(const DINode *Node,
421 codeview::TypeIndex TI,
422 const DIType *ClassTy = nullptr);
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000423
424 unsigned getPointerSizeInBytes();
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000425
David Blaikieb2fbb4b2017-02-16 18:48:33 +0000426protected:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000427 /// Gather pre-function debug information.
David Blaikieb2fbb4b2017-02-16 18:48:33 +0000428 void beginFunctionImpl(const MachineFunction *MF) override;
429
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000430 /// Gather post-function debug information.
David Blaikieb2fbb4b2017-02-16 18:48:33 +0000431 void endFunctionImpl(const MachineFunction *) override;
432
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000433public:
Fangrui Songcb0bab82018-07-16 18:51:40 +0000434 CodeViewDebug(AsmPrinter *AP);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000435
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000436 void setSymbolSize(const MCSymbol *, uint64_t) override {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000437
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000438 /// Emit the COFF section that holds the line table information.
Craig Topper7b883b32014-03-08 06:31:39 +0000439 void endModule() override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000440
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000441 /// Process beginning of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000442 void beginInstruction(const MachineInstr *MI) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000443};
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000444
Eugene Zelenkofb69e662017-06-06 22:22:41 +0000445} // end namespace llvm
446
447#endif // LLVM_LIB_CODEGEN_ASMPRINTER_CODEVIEWDEBUG_H