blob: 3dd4315e4c2f1d110af58679f83e76b0f594f413 [file] [log] [blame]
Reid Kleckner70f5bc92016-01-14 19:25:04 +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
Reid Klecknerf9c275f2016-02-10 20:55:49 +000017#include "DebugHandlerBase.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000018#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/StringMap.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000020#include "llvm/CodeGen/AsmPrinter.h"
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineModuleInfo.h"
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000023#include "llvm/DebugInfo/CodeView/TypeIndex.h"
Zachary Turner4efa0a42016-11-08 22:24:53 +000024#include "llvm/DebugInfo/CodeView/TypeTableBuilder.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000025#include "llvm/IR/DebugInfo.h"
Chandler Carruth92051402014-03-05 10:30:38 +000026#include "llvm/IR/DebugLoc.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000027#include "llvm/MC/MCStreamer.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000028#include "llvm/Target/TargetLoweringObjectFile.h"
29
30namespace llvm {
Reid Klecknerf9c275f2016-02-10 20:55:49 +000031
Mehdi Aminib550cb12016-04-18 09:17:29 +000032class StringRef;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000033class LexicalScope;
Amjad Aboud76c9eb92016-06-18 10:25:07 +000034struct ClassInfo;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000035
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000036/// \brief Collects and handles line tables information in a CodeView format.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000037class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
Reid Klecknerdac21b42016-02-03 21:15:48 +000038 MCStreamer &OS;
Zachary Turnerc6d54da2016-09-09 17:46:17 +000039 llvm::BumpPtrAllocator Allocator;
Zachary Turner4efa0a42016-11-08 22:24:53 +000040 codeview::TypeTableBuilder TypeTable;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000041
Reid Kleckner876330d2016-02-12 21:48:30 +000042 /// Represents the most general definition range.
43 struct LocalVarDefRange {
44 /// Indicates that variable data is stored in memory relative to the
45 /// specified register.
46 int InMemory : 1;
47
48 /// Offset of variable data in memory.
49 int DataOffset : 31;
50
Reid Kleckner2b3e6422016-10-05 21:21:33 +000051 /// Non-zero if this is a piece of an aggregate.
52 uint16_t IsSubfield : 1;
53
54 /// Offset into aggregate.
55 uint16_t StructOffset : 15;
Reid Kleckner876330d2016-02-12 21:48:30 +000056
57 /// Register containing the data or the register base of the memory
58 /// location containing the data.
59 uint16_t CVRegister;
60
61 /// Compares all location fields. This includes all fields except the label
62 /// ranges.
63 bool isDifferentLocation(LocalVarDefRange &O) {
64 return InMemory != O.InMemory || DataOffset != O.DataOffset ||
Reid Kleckner2b3e6422016-10-05 21:21:33 +000065 IsSubfield != O.IsSubfield || StructOffset != O.StructOffset ||
66 CVRegister != O.CVRegister;
Reid Kleckner876330d2016-02-12 21:48:30 +000067 }
68
69 SmallVector<std::pair<const MCSymbol *, const MCSymbol *>, 1> Ranges;
70 };
71
72 static LocalVarDefRange createDefRangeMem(uint16_t CVRegister, int Offset);
Reid Kleckner2b3e6422016-10-05 21:21:33 +000073 static LocalVarDefRange createDefRangeGeneral(uint16_t CVRegister,
74 bool InMemory, int Offset,
75 bool IsSubfield,
76 uint16_t StructOffset);
Reid Kleckner876330d2016-02-12 21:48:30 +000077
Reid Klecknerf9c275f2016-02-10 20:55:49 +000078 /// Similar to DbgVariable in DwarfDebug, but not dwarf-specific.
79 struct LocalVariable {
80 const DILocalVariable *DIVar = nullptr;
Reid Kleckner876330d2016-02-12 21:48:30 +000081 SmallVector<LocalVarDefRange, 1> DefRanges;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000082 };
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000083
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000084 struct InlineSite {
Reid Klecknerf9c275f2016-02-10 20:55:49 +000085 SmallVector<LocalVariable, 1> InlinedLocals;
86 SmallVector<const DILocation *, 1> ChildSites;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000087 const DISubprogram *Inlinee = nullptr;
Reid Klecknerc29b4f02016-07-14 23:47:15 +000088
89 /// The ID of the inline site or function used with .cv_loc. Not a type
90 /// index.
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000091 unsigned SiteFuncId = 0;
92 };
93
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000094 // For each function, store a vector of labels to its instructions, as well as
95 // to the end of the function.
96 struct FunctionInfo {
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000097 /// Map from inlined call site to inlined instructions and child inlined
98 /// call sites. Listed in program order.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000099 std::unordered_map<const DILocation *, InlineSite> InlineSites;
100
101 /// Ordered list of top-level inlined call sites.
102 SmallVector<const DILocation *, 1> ChildSites;
103
104 SmallVector<LocalVariable, 1> Locals;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000105
Reid Kleckner9533af42016-01-16 00:09:09 +0000106 DebugLoc LastLoc;
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000107 const MCSymbol *Begin = nullptr;
108 const MCSymbol *End = nullptr;
Reid Kleckner2214ed82016-01-29 00:49:42 +0000109 unsigned FuncId = 0;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000110 unsigned LastFileId = 0;
Reid Kleckner2214ed82016-01-29 00:49:42 +0000111 bool HaveLineInfo = false;
Reid Kleckner9533af42016-01-16 00:09:09 +0000112 };
113 FunctionInfo *CurFn;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000114
Reid Kleckner5d122f82016-05-25 23:16:12 +0000115 /// The set of comdat .debug$S sections that we've seen so far. Each section
116 /// must start with a magic version number that must only be emitted once.
117 /// This set tracks which sections we've already opened.
118 DenseSet<MCSectionCOFF *> ComdatDebugSections;
119
120 /// Switch to the appropriate .debug$S section for GVSym. If GVSym, the symbol
121 /// of an emitted global value, is in a comdat COFF section, this will switch
122 /// to a new .debug$S section in that comdat. This method ensures that the
123 /// section starts with the magic version number on first use. If GVSym is
124 /// null, uses the main .debug$S section.
125 void switchToDebugSectionForSymbol(const MCSymbol *GVSym);
126
Reid Klecknerfbd77872016-03-18 18:54:32 +0000127 /// The next available function index for use with our .cv_* directives. Not
128 /// to be confused with type indices for LF_FUNC_ID records.
Reid Kleckner2214ed82016-01-29 00:49:42 +0000129 unsigned NextFuncId = 0;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000130
Reid Kleckner876330d2016-02-12 21:48:30 +0000131 InlineSite &getInlineSite(const DILocation *InlinedAt,
132 const DISubprogram *Inlinee);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000133
David Majnemer75c3ebf2016-06-02 17:13:53 +0000134 codeview::TypeIndex getFuncIdForSubprogram(const DISubprogram *SP);
Reid Kleckner2280f932016-05-23 20:23:46 +0000135
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000136 static void collectInlineSiteChildren(SmallVectorImpl<unsigned> &Children,
137 const FunctionInfo &FI,
138 const InlineSite &Site);
139
Reid Kleckner2214ed82016-01-29 00:49:42 +0000140 /// Remember some debug info about each function. Keep it in a stable order to
141 /// emit at the end of the TU.
142 MapVector<const Function *, FunctionInfo> FnDebugInfo;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000143
Reid Kleckner2214ed82016-01-29 00:49:42 +0000144 /// Map from DIFile to .cv_file id.
145 DenseMap<const DIFile *, unsigned> FileIdMap;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000146
Reid Klecknerfbd77872016-03-18 18:54:32 +0000147 /// All inlined subprograms in the order they should be emitted.
Reid Kleckner2280f932016-05-23 20:23:46 +0000148 SmallSetVector<const DISubprogram *, 4> InlinedSubprograms;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000149
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000150 /// Map from a pair of DI metadata nodes and its DI type (or scope) that can
151 /// be nullptr, to CodeView type indices. Primarily indexed by
152 /// {DIType*, DIType*} and {DISubprogram*, DIType*}.
153 ///
154 /// The second entry in the key is needed for methods as DISubroutineType
155 /// representing static method type are shared with non-method function type.
156 DenseMap<std::pair<const DINode *, const DIType *>, codeview::TypeIndex>
157 TypeIndices;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000158
Reid Klecknera8d57402016-06-03 15:58:20 +0000159 /// Map from DICompositeType* to complete type index. Non-record types are
160 /// always looked up in the normal TypeIndices map.
161 DenseMap<const DICompositeType *, codeview::TypeIndex> CompleteTypeIndices;
162
Reid Kleckner643dd832016-06-22 17:15:28 +0000163 /// Complete record types to emit after all active type lowerings are
164 /// finished.
165 SmallVector<const DICompositeType *, 4> DeferredCompleteTypes;
166
167 /// Number of type lowering frames active on the stack.
168 unsigned TypeEmissionLevel = 0;
169
Reid Kleckner9f7f3e12016-06-24 16:24:24 +0000170 codeview::TypeIndex VBPType;
171
David Majnemer3128b102016-06-15 18:00:01 +0000172 const DISubprogram *CurrentSubprogram = nullptr;
173
174 // The UDTs we have seen while processing types; each entry is a pair of type
175 // index and type name.
176 std::vector<std::pair<std::string, codeview::TypeIndex>> LocalUDTs,
177 GlobalUDTs;
178
Reid Kleckner9533af42016-01-16 00:09:09 +0000179 typedef std::map<const DIFile *, std::string> FileToFilepathMapTy;
180 FileToFilepathMapTy FileToFilepathMap;
181 StringRef getFullFilepath(const DIFile *S);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000182
Reid Kleckner2214ed82016-01-29 00:49:42 +0000183 unsigned maybeRecordFile(const DIFile *F);
184
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000185 void maybeRecordLocation(const DebugLoc &DL, const MachineFunction *MF);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000186
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000187 void clear();
David Majnemer3128b102016-06-15 18:00:01 +0000188
189 void setCurrentSubprogram(const DISubprogram *SP) {
190 CurrentSubprogram = SP;
191 LocalUDTs.clear();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000192 }
193
Reid Kleckner5d122f82016-05-25 23:16:12 +0000194 /// Emit the magic version number at the start of a CodeView type or symbol
195 /// section. Appears at the front of every .debug$S or .debug$T section.
196 void emitCodeViewMagicVersion();
197
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000198 void emitTypeInformation();
199
Adrian McCarthyc64acfd2016-09-20 17:20:51 +0000200 void emitCompilerInformation();
201
Reid Kleckner5d122f82016-05-25 23:16:12 +0000202 void emitInlineeLinesSubsection();
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000203
Reid Kleckner2214ed82016-01-29 00:49:42 +0000204 void emitDebugInfoForFunction(const Function *GV, FunctionInfo &FI);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000205
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000206 void emitDebugInfoForGlobals();
207
Hans Wennborgb510b452016-06-23 16:33:53 +0000208 void emitDebugInfoForRetainedTypes();
209
David Majnemer3128b102016-06-15 18:00:01 +0000210 void emitDebugInfoForUDTs(
211 ArrayRef<std::pair<std::string, codeview::TypeIndex>> UDTs);
212
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000213 void emitDebugInfoForGlobal(const DIGlobalVariable *DIGV,
214 const GlobalVariable *GV, MCSymbol *GVSym);
Reid Kleckner6f3406d2016-06-07 00:02:03 +0000215
216 /// Opens a subsection of the given kind in a .debug$S codeview section.
217 /// Returns an end label for use with endCVSubsection when the subsection is
218 /// finished.
219 MCSymbol *beginCVSubsection(codeview::ModuleSubstreamKind Kind);
220
221 void endCVSubsection(MCSymbol *EndLabel);
222
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000223 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
224 const InlineSite &Site);
225
Reid Kleckner876330d2016-02-12 21:48:30 +0000226 typedef DbgValueHistoryMap::InlinedVariable InlinedVariable;
227
228 void collectVariableInfo(const DISubprogram *SP);
229
Matthias Braunef331ef2016-11-30 23:48:50 +0000230 void collectVariableInfoFromMFTable(DenseSet<InlinedVariable> &Processed);
Reid Kleckner876330d2016-02-12 21:48:30 +0000231
232 /// Records information about a local variable in the appropriate scope. In
233 /// particular, locals from inlined code live inside the inlining site.
234 void recordLocalVariable(LocalVariable &&Var, const DILocation *Loc);
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000235
Reid Kleckner10dd55c2016-06-24 17:55:40 +0000236 /// Emits local variables in the appropriate order.
237 void emitLocalVariableList(ArrayRef<LocalVariable> Locals);
238
239 /// Emits an S_LOCAL record and its associated defined ranges.
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000240 void emitLocalVariable(const LocalVariable &Var);
241
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000242 /// Translates the DIType to codeview if necessary and returns a type index
243 /// for it.
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000244 codeview::TypeIndex getTypeIndex(DITypeRef TypeRef,
245 DITypeRef ClassTyRef = DITypeRef());
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000246
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000247 codeview::TypeIndex getMemberFunctionType(const DISubprogram *SP,
248 const DICompositeType *Class);
249
250 codeview::TypeIndex getScopeIndex(const DIScope *Scope);
251
Reid Kleckner9f7f3e12016-06-24 16:24:24 +0000252 codeview::TypeIndex getVBPTypeIndex();
253
Hans Wennborg4b63a982016-06-23 22:57:25 +0000254 void addToUDTs(const DIType *Ty, codeview::TypeIndex TI);
255
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000256 codeview::TypeIndex lowerType(const DIType *Ty, const DIType *ClassTy);
David Majnemerd065e232016-06-02 06:21:37 +0000257 codeview::TypeIndex lowerTypeAlias(const DIDerivedType *Ty);
Adrian McCarthyf3c3c132016-06-08 18:22:59 +0000258 codeview::TypeIndex lowerTypeArray(const DICompositeType *Ty);
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000259 codeview::TypeIndex lowerTypeBasic(const DIBasicType *Ty);
260 codeview::TypeIndex lowerTypePointer(const DIDerivedType *Ty);
261 codeview::TypeIndex lowerTypeMemberPointer(const DIDerivedType *Ty);
262 codeview::TypeIndex lowerTypeModifier(const DIDerivedType *Ty);
David Majnemer75c3ebf2016-06-02 17:13:53 +0000263 codeview::TypeIndex lowerTypeFunction(const DISubroutineType *Ty);
Reid Kleckner9dac4732016-08-31 15:59:30 +0000264 codeview::TypeIndex lowerTypeVFTableShape(const DIDerivedType *Ty);
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000265 codeview::TypeIndex lowerTypeMemberFunction(const DISubroutineType *Ty,
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000266 const DIType *ClassTy,
267 int ThisAdjustment);
David Majnemer979cb882016-06-16 21:32:16 +0000268 codeview::TypeIndex lowerTypeEnum(const DICompositeType *Ty);
Reid Klecknera8d57402016-06-03 15:58:20 +0000269 codeview::TypeIndex lowerTypeClass(const DICompositeType *Ty);
270 codeview::TypeIndex lowerTypeUnion(const DICompositeType *Ty);
271
272 /// Symbol records should point to complete types, but type records should
273 /// always point to incomplete types to avoid cycles in the type graph. Only
274 /// use this entry point when generating symbol records. The complete and
275 /// incomplete type indices only differ for record types. All other types use
276 /// the same index.
277 codeview::TypeIndex getCompleteTypeIndex(DITypeRef TypeRef);
278
279 codeview::TypeIndex lowerCompleteTypeClass(const DICompositeType *Ty);
280 codeview::TypeIndex lowerCompleteTypeUnion(const DICompositeType *Ty);
281
Reid Kleckner643dd832016-06-22 17:15:28 +0000282 struct TypeLoweringScope;
283
284 void emitDeferredCompleteTypes();
285
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000286 void collectMemberInfo(ClassInfo &Info, const DIDerivedType *DDTy);
Reid Kleckner1ab7eac2016-06-22 16:06:42 +0000287 ClassInfo collectClassInfo(const DICompositeType *Ty);
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000288
Reid Klecknera8d57402016-06-03 15:58:20 +0000289 /// Common record member lowering functionality for record types, which are
290 /// structs, classes, and unions. Returns the field list index and the member
291 /// count.
Adrian McCarthy820ca542016-07-06 19:49:51 +0000292 std::tuple<codeview::TypeIndex, codeview::TypeIndex, unsigned, bool>
Reid Klecknera8d57402016-06-03 15:58:20 +0000293 lowerRecordFieldList(const DICompositeType *Ty);
294
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000295 /// Inserts {{Node, ClassTy}, TI} into TypeIndices and checks for duplicates.
Reid Kleckner0c5d8742016-06-22 01:32:56 +0000296 codeview::TypeIndex recordTypeIndexForDINode(const DINode *Node,
297 codeview::TypeIndex TI,
298 const DIType *ClassTy = nullptr);
Amjad Aboud76c9eb92016-06-18 10:25:07 +0000299
300 unsigned getPointerSizeInBytes();
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000301
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000302public:
Reid Kleckner70f5bc92016-01-14 19:25:04 +0000303 CodeViewDebug(AsmPrinter *Asm);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000304
Craig Topper7b883b32014-03-08 06:31:39 +0000305 void setSymbolSize(const llvm::MCSymbol *, uint64_t) override {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000306
307 /// \brief Emit the COFF section that holds the line table information.
Craig Topper7b883b32014-03-08 06:31:39 +0000308 void endModule() override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000309
310 /// \brief Gather pre-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000311 void beginFunction(const MachineFunction *MF) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000312
313 /// \brief Gather post-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000314 void endFunction(const MachineFunction *) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000315
316 /// \brief Process beginning of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000317 void beginInstruction(const MachineInstr *MI) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000318};
319} // End of namespace llvm
320
321#endif