blob: 9805fb4874e40fd60dfabd8629327a51cc1f9e06 [file] [log] [blame]
David Blaikie37c52312014-10-04 15:49:50 +00001//===-- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit ---*- 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 dwarf compile unit.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
15#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
16
17#include "DwarfUnit.h"
18#include "llvm/Support/Dwarf.h"
19#include "llvm/ADT/StringRef.h"
20#include "llvm/IR/DebugInfo.h"
21
22namespace llvm {
23
24class AsmPrinter;
25class DIE;
26class DwarfDebug;
27class DwarfFile;
28class MCSymbol;
David Blaikie9c65b132014-10-08 22:20:02 +000029class LexicalScope;
David Blaikie37c52312014-10-04 15:49:50 +000030
31class DwarfCompileUnit : public DwarfUnit {
32 /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding
33 /// the need to search for it in applyStmtList.
34 unsigned stmtListIndex;
35
David Blaikieee7df552014-10-09 17:56:36 +000036 /// \brief Construct a DIE for the given DbgVariable without initializing the
37 /// DbgVariable's DIE reference.
38 std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV,
39 bool Abstract);
40
David Blaikie37c52312014-10-04 15:49:50 +000041public:
42 DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A,
43 DwarfDebug *DW, DwarfFile *DWU);
44
David Blaikiea33cd6a2014-11-01 00:50:34 +000045 DwarfCompileUnit *getSkeleton() const {
46 return static_cast<DwarfCompileUnit *>(Skeleton);
47 }
48
David Blaikie37c52312014-10-04 15:49:50 +000049 void initStmtList(MCSymbol *DwarfLineSectionSym);
50
51 /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
52 void applyStmtList(DIE &D);
53
54 /// getOrCreateGlobalVariableDIE - get or create global variable DIE.
55 DIE *getOrCreateGlobalVariableDIE(DIGlobalVariable GV);
56
57 /// addLabelAddress - Add a dwarf label attribute data and value using
58 /// either DW_FORM_addr or DW_FORM_GNU_addr_index.
59 void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
60 const MCSymbol *Label);
61
62 /// addLocalLabelAddress - Add a dwarf label attribute data and value using
63 /// DW_FORM_addr only.
64 void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
65 const MCSymbol *Label);
66
David Blaikiee5feec52014-10-08 23:30:05 +000067 /// addSectionDelta - Add a label delta attribute data and value.
68 void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
69 const MCSymbol *Lo);
70
David Blaikie37c52312014-10-04 15:49:50 +000071 DwarfCompileUnit &getCU() override { return *this; }
72
73 unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override;
74
75 /// addRange - Add an address range to the list of ranges for this unit.
76 void addRange(RangeSpan Range);
David Blaikie14499a72014-10-04 15:58:47 +000077
78 void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End);
David Blaikiecda2aa82014-10-04 16:24:00 +000079
David Blaikie6c0ee4e2014-10-08 22:46:27 +000080 /// addSectionLabel - Add a Dwarf section label attribute data and value.
81 ///
82 void addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
83 const MCSymbol *Label, const MCSymbol *Sec);
84
David Blaikiecda2aa82014-10-04 16:24:00 +000085 /// \brief Find DIE for the given subprogram and attach appropriate
86 /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
87 /// variables in this scope then create and insert DIEs for these
88 /// variables.
89 DIE &updateSubprogramScopeDIE(DISubprogram SP);
David Blaikie9c65b132014-10-08 22:20:02 +000090
91 void constructScopeDIE(LexicalScope *Scope,
92 SmallVectorImpl<std::unique_ptr<DIE>> &FinalChildren);
David Blaikie52400202014-10-09 00:11:39 +000093
94 /// \brief A helper function to construct a RangeSpanList for a given
95 /// lexical scope.
96 void addScopeRangeList(DIE &ScopeDIE,
97 const SmallVectorImpl<InsnRange> &Range);
David Blaikiede123752014-10-09 00:21:42 +000098
99 void attachRangesOrLowHighPC(DIE &D,
100 const SmallVectorImpl<InsnRange> &Ranges);
David Blaikie01b48a82014-10-09 16:50:53 +0000101
102 /// \brief This scope represents inlined body of a function. Construct
103 /// DIE to represent this concrete inlined copy of the function.
104 std::unique_ptr<DIE> constructInlinedScopeDIE(LexicalScope *Scope);
David Blaikie0fbf8bd2014-10-09 17:08:42 +0000105
106 /// \brief Construct new DW_TAG_lexical_block for this scope and
107 /// attach DW_AT_low_pc/DW_AT_high_pc labels.
108 std::unique_ptr<DIE> constructLexicalScopeDIE(LexicalScope *Scope);
David Blaikieee7df552014-10-09 17:56:36 +0000109
110 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
111 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
112 bool Abstract = false);
David Blaikie4a1a44e2014-10-09 17:56:39 +0000113
114 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
115 const LexicalScope &Scope,
116 DIE *&ObjectPointer);
David Blaikie8b2fdb82014-10-09 18:24:28 +0000117
118 /// A helper function to create children of a Scope DIE.
119 DIE *createScopeChildrenDIE(LexicalScope *Scope,
120 SmallVectorImpl<std::unique_ptr<DIE>> &Children,
121 unsigned *ChildScopeCount = nullptr);
David Blaikie1d072342014-10-09 20:21:36 +0000122
123 /// \brief Construct a DIE for this subprogram scope.
124 void constructSubprogramScopeDIE(LexicalScope *Scope);
David Blaikie78b65b62014-10-09 20:26:15 +0000125
126 DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE);
David Blaikie58410f22014-10-10 06:39:26 +0000127
David Blaikie49be5b32014-10-31 21:57:02 +0000128 void constructAbstractSubprogramScopeDIE(LexicalScope *Scope);
David Blaikie4191cbc2014-10-10 06:39:29 +0000129
Frederic Riss987fe222014-10-24 21:31:09 +0000130 /// \brief Construct import_module DIE.
131 std::unique_ptr<DIE>
132 constructImportedEntityDIE(const DIImportedEntity &Module);
133
David Blaikie4191cbc2014-10-10 06:39:29 +0000134 void finishSubprogramDefinition(DISubprogram SP);
David Blaikie1d96cc22014-10-31 22:30:30 +0000135
136 void collectDeadVariables(DISubprogram SP);
David Blaikie37c52312014-10-04 15:49:50 +0000137};
138
139} // end llvm namespace
140
141#endif