blob: 208ff33b9646aedfe46ffc10be574148589f7ae9 [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 Kleckner2280f932016-05-23 20:23:46 +000023#include "llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h"
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000024#include "llvm/DebugInfo/CodeView/TypeIndex.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;
34
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000035/// \brief Collects and handles line tables information in a CodeView format.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000036class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
Reid Klecknerdac21b42016-02-03 21:15:48 +000037 MCStreamer &OS;
Reid Kleckner2280f932016-05-23 20:23:46 +000038 codeview::MemoryTypeTableBuilder TypeTable;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000039
Reid Kleckner876330d2016-02-12 21:48:30 +000040 /// Represents the most general definition range.
41 struct LocalVarDefRange {
42 /// Indicates that variable data is stored in memory relative to the
43 /// specified register.
44 int InMemory : 1;
45
46 /// Offset of variable data in memory.
47 int DataOffset : 31;
48
49 /// Offset of the data into the user level struct. If zero, no splitting
50 /// occurred.
51 uint16_t StructOffset;
52
53 /// Register containing the data or the register base of the memory
54 /// location containing the data.
55 uint16_t CVRegister;
56
57 /// Compares all location fields. This includes all fields except the label
58 /// ranges.
59 bool isDifferentLocation(LocalVarDefRange &O) {
60 return InMemory != O.InMemory || DataOffset != O.DataOffset ||
61 StructOffset != O.StructOffset || CVRegister != O.CVRegister;
62 }
63
64 SmallVector<std::pair<const MCSymbol *, const MCSymbol *>, 1> Ranges;
65 };
66
67 static LocalVarDefRange createDefRangeMem(uint16_t CVRegister, int Offset);
68 static LocalVarDefRange createDefRangeReg(uint16_t CVRegister);
69
Reid Klecknerf9c275f2016-02-10 20:55:49 +000070 /// Similar to DbgVariable in DwarfDebug, but not dwarf-specific.
71 struct LocalVariable {
72 const DILocalVariable *DIVar = nullptr;
Reid Kleckner876330d2016-02-12 21:48:30 +000073 SmallVector<LocalVarDefRange, 1> DefRanges;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000074 };
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000075
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000076 struct InlineSite {
Reid Klecknerf9c275f2016-02-10 20:55:49 +000077 SmallVector<LocalVariable, 1> InlinedLocals;
78 SmallVector<const DILocation *, 1> ChildSites;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000079 const DISubprogram *Inlinee = nullptr;
80 unsigned SiteFuncId = 0;
81 };
82
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000083 // For each function, store a vector of labels to its instructions, as well as
84 // to the end of the function.
85 struct FunctionInfo {
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000086 /// Map from inlined call site to inlined instructions and child inlined
87 /// call sites. Listed in program order.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000088 std::unordered_map<const DILocation *, InlineSite> InlineSites;
89
90 /// Ordered list of top-level inlined call sites.
91 SmallVector<const DILocation *, 1> ChildSites;
92
93 SmallVector<LocalVariable, 1> Locals;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000094
Reid Kleckner9533af42016-01-16 00:09:09 +000095 DebugLoc LastLoc;
Reid Kleckner1fcd6102016-02-02 17:41:18 +000096 const MCSymbol *Begin = nullptr;
97 const MCSymbol *End = nullptr;
Reid Kleckner2214ed82016-01-29 00:49:42 +000098 unsigned FuncId = 0;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000099 unsigned LastFileId = 0;
Reid Kleckner2214ed82016-01-29 00:49:42 +0000100 bool HaveLineInfo = false;
Reid Kleckner9533af42016-01-16 00:09:09 +0000101 };
102 FunctionInfo *CurFn;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000103
Reid Kleckner5d122f82016-05-25 23:16:12 +0000104 /// The set of comdat .debug$S sections that we've seen so far. Each section
105 /// must start with a magic version number that must only be emitted once.
106 /// This set tracks which sections we've already opened.
107 DenseSet<MCSectionCOFF *> ComdatDebugSections;
108
109 /// Switch to the appropriate .debug$S section for GVSym. If GVSym, the symbol
110 /// of an emitted global value, is in a comdat COFF section, this will switch
111 /// to a new .debug$S section in that comdat. This method ensures that the
112 /// section starts with the magic version number on first use. If GVSym is
113 /// null, uses the main .debug$S section.
114 void switchToDebugSectionForSymbol(const MCSymbol *GVSym);
115
Reid Klecknerfbd77872016-03-18 18:54:32 +0000116 /// The next available function index for use with our .cv_* directives. Not
117 /// to be confused with type indices for LF_FUNC_ID records.
Reid Kleckner2214ed82016-01-29 00:49:42 +0000118 unsigned NextFuncId = 0;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000119
Reid Kleckner876330d2016-02-12 21:48:30 +0000120 InlineSite &getInlineSite(const DILocation *InlinedAt,
121 const DISubprogram *Inlinee);
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000122
David Majnemer75c3ebf2016-06-02 17:13:53 +0000123 codeview::TypeIndex getFuncIdForSubprogram(const DISubprogram *SP);
Reid Kleckner2280f932016-05-23 20:23:46 +0000124
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000125 static void collectInlineSiteChildren(SmallVectorImpl<unsigned> &Children,
126 const FunctionInfo &FI,
127 const InlineSite &Site);
128
Reid Kleckner2214ed82016-01-29 00:49:42 +0000129 /// Remember some debug info about each function. Keep it in a stable order to
130 /// emit at the end of the TU.
131 MapVector<const Function *, FunctionInfo> FnDebugInfo;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000132
Reid Kleckner2214ed82016-01-29 00:49:42 +0000133 /// Map from DIFile to .cv_file id.
134 DenseMap<const DIFile *, unsigned> FileIdMap;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000135
Reid Klecknerfbd77872016-03-18 18:54:32 +0000136 /// All inlined subprograms in the order they should be emitted.
Reid Kleckner2280f932016-05-23 20:23:46 +0000137 SmallSetVector<const DISubprogram *, 4> InlinedSubprograms;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000138
Reid Kleckner2280f932016-05-23 20:23:46 +0000139 /// Map from DI metadata nodes to CodeView type indices. Primarily indexed by
140 /// DIType* and DISubprogram*.
141 DenseMap<const DINode *, codeview::TypeIndex> TypeIndices;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000142
Reid Klecknera8d57402016-06-03 15:58:20 +0000143 /// Map from DICompositeType* to complete type index. Non-record types are
144 /// always looked up in the normal TypeIndices map.
145 DenseMap<const DICompositeType *, codeview::TypeIndex> CompleteTypeIndices;
146
Reid Kleckner9533af42016-01-16 00:09:09 +0000147 typedef std::map<const DIFile *, std::string> FileToFilepathMapTy;
148 FileToFilepathMapTy FileToFilepathMap;
149 StringRef getFullFilepath(const DIFile *S);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000150
Reid Kleckner2214ed82016-01-29 00:49:42 +0000151 unsigned maybeRecordFile(const DIFile *F);
152
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000153 void maybeRecordLocation(DebugLoc DL, const MachineFunction *MF);
154
155 void clear() {
Craig Toppere73658d2014-04-28 04:05:08 +0000156 assert(CurFn == nullptr);
Reid Kleckner2214ed82016-01-29 00:49:42 +0000157 FileIdMap.clear();
158 FnDebugInfo.clear();
159 FileToFilepathMap.clear();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000160 }
161
Reid Kleckner5d122f82016-05-25 23:16:12 +0000162 /// Emit the magic version number at the start of a CodeView type or symbol
163 /// section. Appears at the front of every .debug$S or .debug$T section.
164 void emitCodeViewMagicVersion();
165
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000166 void emitTypeInformation();
167
Reid Kleckner5d122f82016-05-25 23:16:12 +0000168 void emitInlineeLinesSubsection();
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000169
Reid Kleckner2214ed82016-01-29 00:49:42 +0000170 void emitDebugInfoForFunction(const Function *GV, FunctionInfo &FI);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000171
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000172 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
173 const InlineSite &Site);
174
Reid Kleckner876330d2016-02-12 21:48:30 +0000175 typedef DbgValueHistoryMap::InlinedVariable InlinedVariable;
176
177 void collectVariableInfo(const DISubprogram *SP);
178
179 void collectVariableInfoFromMMITable(DenseSet<InlinedVariable> &Processed);
180
181 /// Records information about a local variable in the appropriate scope. In
182 /// particular, locals from inlined code live inside the inlining site.
183 void recordLocalVariable(LocalVariable &&Var, const DILocation *Loc);
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000184
185 void emitLocalVariable(const LocalVariable &Var);
186
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000187 /// Translates the DIType to codeview if necessary and returns a type index
188 /// for it.
Reid Klecknera8d57402016-06-03 15:58:20 +0000189 codeview::TypeIndex getTypeIndex(DITypeRef TypeRef);
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000190
191 codeview::TypeIndex lowerType(const DIType *Ty);
David Majnemerd065e232016-06-02 06:21:37 +0000192 codeview::TypeIndex lowerTypeAlias(const DIDerivedType *Ty);
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000193 codeview::TypeIndex lowerTypeBasic(const DIBasicType *Ty);
194 codeview::TypeIndex lowerTypePointer(const DIDerivedType *Ty);
195 codeview::TypeIndex lowerTypeMemberPointer(const DIDerivedType *Ty);
196 codeview::TypeIndex lowerTypeModifier(const DIDerivedType *Ty);
David Majnemer75c3ebf2016-06-02 17:13:53 +0000197 codeview::TypeIndex lowerTypeFunction(const DISubroutineType *Ty);
Reid Klecknera8d57402016-06-03 15:58:20 +0000198 codeview::TypeIndex lowerTypeClass(const DICompositeType *Ty);
199 codeview::TypeIndex lowerTypeUnion(const DICompositeType *Ty);
200
201 /// Symbol records should point to complete types, but type records should
202 /// always point to incomplete types to avoid cycles in the type graph. Only
203 /// use this entry point when generating symbol records. The complete and
204 /// incomplete type indices only differ for record types. All other types use
205 /// the same index.
206 codeview::TypeIndex getCompleteTypeIndex(DITypeRef TypeRef);
207
208 codeview::TypeIndex lowerCompleteTypeClass(const DICompositeType *Ty);
209 codeview::TypeIndex lowerCompleteTypeUnion(const DICompositeType *Ty);
210
211 /// Common record member lowering functionality for record types, which are
212 /// structs, classes, and unions. Returns the field list index and the member
213 /// count.
214 std::pair<codeview::TypeIndex, unsigned>
215 lowerRecordFieldList(const DICompositeType *Ty);
216
217 /// Inserts {Node, TI} into TypeIndices and checks for duplicates.
218 void recordTypeIndexForDINode(const DINode *Node, codeview::TypeIndex TI);
Reid Kleckner5acacbb2016-06-01 17:05:51 +0000219
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000220public:
Reid Kleckner70f5bc92016-01-14 19:25:04 +0000221 CodeViewDebug(AsmPrinter *Asm);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000222
Craig Topper7b883b32014-03-08 06:31:39 +0000223 void setSymbolSize(const llvm::MCSymbol *, uint64_t) override {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000224
225 /// \brief Emit the COFF section that holds the line table information.
Craig Topper7b883b32014-03-08 06:31:39 +0000226 void endModule() override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000227
228 /// \brief Gather pre-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000229 void beginFunction(const MachineFunction *MF) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000230
231 /// \brief Gather post-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000232 void endFunction(const MachineFunction *) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000233
234 /// \brief Process beginning of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000235 void beginInstruction(const MachineInstr *MI) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000236};
237} // End of namespace llvm
238
239#endif