blob: c66d141837d0c7029ac2b0e603632455f5860045 [file] [log] [blame]
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00001//===-- llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h ----*- C++ -*--===//
2//
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//
10// This file contains support for writing line tables info into COFF files.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_WINCODEVIEWLINETABLES_H
15#define LLVM_LIB_CODEGEN_ASMPRINTER_WINCODEVIEWLINETABLES_H
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000016
17#include "AsmPrinterHandler.h"
18#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"
Chandler Carruth442f7842014-03-04 10:07:28 +000022#include "llvm/CodeGen/LexicalScopes.h"
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineModuleInfo.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 {
31/// \brief Collects and handles line tables information in a CodeView format.
32class WinCodeViewLineTables : public AsmPrinterHandler {
33 AsmPrinter *Asm;
34 DebugLoc PrevInstLoc;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000035
36 // For each function, store a vector of labels to its instructions, as well as
37 // to the end of the function.
38 struct FunctionInfo {
39 SmallVector<MCSymbol *, 10> Instrs;
40 MCSymbol *End;
Craig Toppere73658d2014-04-28 04:05:08 +000041 FunctionInfo() : End(nullptr) {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +000042 } *CurFn;
43
44 typedef DenseMap<const Function *, FunctionInfo> FnDebugInfoTy;
45 FnDebugInfoTy FnDebugInfo;
46 // Store the functions we've visited in a vector so we can maintain a stable
47 // order while emitting subsections.
48 SmallVector<const Function *, 10> VisitedFunctions;
49
50 // InstrInfoTy - Holds the Filename:LineNumber information for every
51 // instruction with a unique debug location.
52 struct InstrInfoTy {
53 StringRef Filename;
54 unsigned LineNumber;
55
56 InstrInfoTy() : LineNumber(0) {}
57
58 InstrInfoTy(StringRef Filename, unsigned LineNumber)
59 : Filename(Filename), LineNumber(LineNumber) {}
60 };
61 DenseMap<MCSymbol *, InstrInfoTy> InstrInfo;
62
63 // FileNameRegistry - Manages filenames observed while generating debug info
64 // by filtering out duplicates and bookkeeping the offsets in the string
65 // table to be generated.
66 struct FileNameRegistryTy {
67 SmallVector<StringRef, 10> Filenames;
68 struct PerFileInfo {
69 size_t FilenameID, StartOffset;
70 };
71 StringMap<PerFileInfo> Infos;
72
73 // The offset in the string table where we'll write the next unique
74 // filename.
75 size_t LastOffset;
76
77 FileNameRegistryTy() {
78 clear();
79 }
80
81 // Add Filename to the registry, if it was not observed before.
82 void add(StringRef Filename) {
83 if (Infos.count(Filename))
84 return;
85 size_t OldSize = Infos.size();
86 Infos[Filename].FilenameID = OldSize;
87 Infos[Filename].StartOffset = LastOffset;
88 LastOffset += Filename.size() + 1;
89 Filenames.push_back(Filename);
90 }
91
92 void clear() {
93 LastOffset = 1;
94 Infos.clear();
95 Filenames.clear();
96 }
97 } FileNameRegistry;
98
99 typedef std::map<std::pair<StringRef, StringRef>, char *>
100 DirAndFilenameToFilepathMapTy;
101 DirAndFilenameToFilepathMapTy DirAndFilenameToFilepathMap;
102 StringRef getFullFilepath(const MDNode *S);
103
104 void maybeRecordLocation(DebugLoc DL, const MachineFunction *MF);
105
106 void clear() {
Craig Toppere73658d2014-04-28 04:05:08 +0000107 assert(CurFn == nullptr);
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000108 FileNameRegistry.clear();
109 InstrInfo.clear();
110 }
111
112 void emitDebugInfoForFunction(const Function *GV);
113
114public:
115 WinCodeViewLineTables(AsmPrinter *Asm);
116
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000117 ~WinCodeViewLineTables() override {
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000118 for (DirAndFilenameToFilepathMapTy::iterator
119 I = DirAndFilenameToFilepathMap.begin(),
120 E = DirAndFilenameToFilepathMap.end();
121 I != E; ++I)
122 free(I->second);
123 }
124
Craig Topper7b883b32014-03-08 06:31:39 +0000125 void setSymbolSize(const llvm::MCSymbol *, uint64_t) override {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000126
127 /// \brief Emit the COFF section that holds the line table information.
Craig Topper7b883b32014-03-08 06:31:39 +0000128 void endModule() override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000129
130 /// \brief Gather pre-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000131 void beginFunction(const MachineFunction *MF) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000132
133 /// \brief Gather post-function debug information.
Craig Topper7b883b32014-03-08 06:31:39 +0000134 void endFunction(const MachineFunction *) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000135
136 /// \brief Process beginning of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000137 void beginInstruction(const MachineInstr *MI) override;
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000138
139 /// \brief Process end of an instruction.
Craig Topper7b883b32014-03-08 06:31:39 +0000140 void endInstruction() override {}
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +0000141};
142} // End of namespace llvm
143
144#endif