blob: cec2499fa7f7d5fd485f5611ead78aa1d8aeb9d3 [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"
20#include "llvm/ADT/StringRef.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000021#include "llvm/CodeGen/AsmPrinter.h"
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineModuleInfo.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
32class LexicalScope;
33
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000034/// \brief Collects and handles line tables information in a CodeView format.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000035class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
Reid Klecknerdac21b42016-02-03 21:15:48 +000036 MCStreamer &OS;
Reid Klecknerf9c275f2016-02-10 20:55:49 +000037
38 /// Similar to DbgVariable in DwarfDebug, but not dwarf-specific.
39 struct LocalVariable {
40 const DILocalVariable *DIVar = nullptr;
41 SmallVector<std::pair<const MCSymbol *, const MCSymbol *>, 1> Ranges;
42 unsigned CVRegister = 0;
43 int RegisterOffset = 0;
44 // FIXME: Add support for DIExpressions.
45 };
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000046
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000047 struct InlineSite {
Reid Klecknerf9c275f2016-02-10 20:55:49 +000048 SmallVector<LocalVariable, 1> InlinedLocals;
49 SmallVector<const DILocation *, 1> ChildSites;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000050 const DISubprogram *Inlinee = nullptr;
51 unsigned SiteFuncId = 0;
52 };
53
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000054 // For each function, store a vector of labels to its instructions, as well as
55 // to the end of the function.
56 struct FunctionInfo {
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000057 /// Map from inlined call site to inlined instructions and child inlined
58 /// call sites. Listed in program order.
Reid Klecknerf9c275f2016-02-10 20:55:49 +000059 std::unordered_map<const DILocation *, InlineSite> InlineSites;
60
61 /// Ordered list of top-level inlined call sites.
62 SmallVector<const DILocation *, 1> ChildSites;
63
64 SmallVector<LocalVariable, 1> Locals;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000065
Reid Kleckner9533af42016-01-16 00:09:09 +000066 DebugLoc LastLoc;
Reid Kleckner1fcd6102016-02-02 17:41:18 +000067 const MCSymbol *Begin = nullptr;
68 const MCSymbol *End = nullptr;
Reid Kleckner2214ed82016-01-29 00:49:42 +000069 unsigned FuncId = 0;
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000070 unsigned LastFileId = 0;
Reid Kleckner2214ed82016-01-29 00:49:42 +000071 bool HaveLineInfo = false;
Reid Kleckner9533af42016-01-16 00:09:09 +000072 };
73 FunctionInfo *CurFn;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000074
Reid Kleckner2214ed82016-01-29 00:49:42 +000075 unsigned NextFuncId = 0;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000076
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000077 InlineSite &getInlineSite(const DILocation *Loc);
78
Reid Kleckner1fcd6102016-02-02 17:41:18 +000079 static void collectInlineSiteChildren(SmallVectorImpl<unsigned> &Children,
80 const FunctionInfo &FI,
81 const InlineSite &Site);
82
Reid Kleckner2214ed82016-01-29 00:49:42 +000083 /// Remember some debug info about each function. Keep it in a stable order to
84 /// emit at the end of the TU.
85 MapVector<const Function *, FunctionInfo> FnDebugInfo;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000086
Reid Kleckner2214ed82016-01-29 00:49:42 +000087 /// Map from DIFile to .cv_file id.
88 DenseMap<const DIFile *, unsigned> FileIdMap;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000089
Reid Kleckner1fcd6102016-02-02 17:41:18 +000090 SmallSetVector<const DISubprogram *, 4> InlinedSubprograms;
91
Reid Klecknerf3b9ba42016-01-29 18:16:43 +000092 DenseMap<const DISubprogram *, codeview::TypeIndex> SubprogramToFuncId;
93
94 unsigned TypeCount = 0;
95
96 /// Gets the next type index and increments the count of types streamed so
97 /// far.
98 codeview::TypeIndex getNextTypeIndex() {
99 return codeview::TypeIndex(codeview::TypeIndex::FirstNonSimpleIndex + TypeCount++);
100 }
101
Reid Kleckner9533af42016-01-16 00:09:09 +0000102 typedef std::map<const DIFile *, std::string> FileToFilepathMapTy;
103 FileToFilepathMapTy FileToFilepathMap;
104 StringRef getFullFilepath(const DIFile *S);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000105
Reid Kleckner2214ed82016-01-29 00:49:42 +0000106 unsigned maybeRecordFile(const DIFile *F);
107
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000108 void maybeRecordLocation(DebugLoc DL, const MachineFunction *MF);
109
110 void clear() {
Craig Toppere73658d2014-04-28 04:05:08 +0000111 assert(CurFn == nullptr);
Reid Kleckner2214ed82016-01-29 00:49:42 +0000112 FileIdMap.clear();
113 FnDebugInfo.clear();
114 FileToFilepathMap.clear();
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000115 }
116
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000117 void emitTypeInformation();
118
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000119 void emitInlineeLinesSubsection();
120
Reid Kleckner2214ed82016-01-29 00:49:42 +0000121 void emitDebugInfoForFunction(const Function *GV, FunctionInfo &FI);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000122
Reid Klecknerf3b9ba42016-01-29 18:16:43 +0000123 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
124 const InlineSite &Site);
125
Reid Klecknerf9c275f2016-02-10 20:55:49 +0000126 void collectVariableInfoFromMMITable();
127
128 void emitLocalVariable(const LocalVariable &Var);
129
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000130public:
Reid Kleckner70f5bc92016-01-14 19:25:04 +0000131 CodeViewDebug(AsmPrinter *Asm);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000132
Craig Topper7b883b32014-03-08 06:31:39 +0000133 void setSymbolSize(const llvm::MCSymbol *, uint64_t) override {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000134
135 /// \brief Emit the COFF section that holds the line table information.
Craig Topper7b883b32014-03-08 06:31:39 +0000136 void endModule() override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000137
138 /// \brief Gather pre-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000139 void beginFunction(const MachineFunction *MF) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000140
141 /// \brief Gather post-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000142 void endFunction(const MachineFunction *) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000143
144 /// \brief Process beginning of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000145 void beginInstruction(const MachineInstr *MI) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000146};
147} // End of namespace llvm
148
149#endif