David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/DwarfUnit.h - Dwarf Compile Unit ---*- C++ -*--===// |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 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 CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H |
| 15 | #define CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H |
| 16 | |
| 17 | #include "DIE.h" |
Eric Christopher | 9e429ae | 2013-10-05 00:27:02 +0000 | [diff] [blame] | 18 | #include "DwarfDebug.h" |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/DenseMap.h" |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/Optional.h" |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/OwningPtr.h" |
Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringMap.h" |
| 23 | #include "llvm/DebugInfo.h" |
Eric Christopher | 740a833 | 2014-02-27 01:25:00 +0000 | [diff] [blame] | 24 | #include "llvm/DIBuilder.h" |
David Blaikie | f3cd7c5 | 2013-06-28 20:05:04 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCExpr.h" |
David Blaikie | 7d73460 | 2013-12-06 22:33:05 +0000 | [diff] [blame] | 26 | #include "llvm/MC/MCSection.h" |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 27 | |
| 28 | namespace llvm { |
| 29 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 30 | class MachineLocation; |
| 31 | class MachineOperand; |
| 32 | class ConstantInt; |
David Blaikie | a39a76e | 2013-01-20 01:18:01 +0000 | [diff] [blame] | 33 | class ConstantFP; |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 34 | class DbgVariable; |
David Blaikie | 15632ae | 2014-02-12 00:31:30 +0000 | [diff] [blame] | 35 | class DwarfCompileUnit; |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 36 | |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 37 | // Data structure to hold a range for range lists. |
| 38 | class RangeSpan { |
| 39 | public: |
| 40 | RangeSpan(MCSymbol *S, MCSymbol *E) : Start(S), End(E) {} |
Eric Christopher | 270ba4a | 2013-12-04 19:06:58 +0000 | [diff] [blame] | 41 | const MCSymbol *getStart() const { return Start; } |
| 42 | const MCSymbol *getEnd() const { return End; } |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 43 | |
| 44 | private: |
| 45 | const MCSymbol *Start, *End; |
| 46 | }; |
| 47 | |
| 48 | class RangeSpanList { |
| 49 | private: |
| 50 | // Index for locating within the debug_range section this particular span. |
Eric Christopher | f879064 | 2013-12-04 22:04:50 +0000 | [diff] [blame] | 51 | MCSymbol *RangeSym; |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 52 | // List of ranges. |
| 53 | SmallVector<RangeSpan, 2> Ranges; |
| 54 | |
| 55 | public: |
Eric Christopher | f879064 | 2013-12-04 22:04:50 +0000 | [diff] [blame] | 56 | RangeSpanList(MCSymbol *Sym) : RangeSym(Sym) {} |
| 57 | MCSymbol *getSym() const { return RangeSym; } |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 58 | const SmallVectorImpl<RangeSpan> &getRanges() const { return Ranges; } |
| 59 | void addRange(RangeSpan Range) { Ranges.push_back(Range); } |
| 60 | }; |
| 61 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 62 | //===----------------------------------------------------------------------===// |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 63 | /// Unit - This dwarf writer support class manages information associated |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 64 | /// with a source file. |
Eric Christopher | a5a7942 | 2013-12-09 23:32:48 +0000 | [diff] [blame] | 65 | class DwarfUnit { |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 66 | protected: |
Eli Bendersky | b42d146 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 67 | /// UniqueID - a numeric ID unique among all CUs in the module |
Eli Bendersky | b42d146 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 68 | unsigned UniqueID; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 69 | |
David Blaikie | 7480ae6 | 2014-01-09 03:03:27 +0000 | [diff] [blame] | 70 | /// Node - MDNode for the compile unit. |
David Blaikie | f645f96 | 2014-01-09 03:23:41 +0000 | [diff] [blame] | 71 | DICompileUnit CUNode; |
David Blaikie | 7480ae6 | 2014-01-09 03:03:27 +0000 | [diff] [blame] | 72 | |
David Blaikie | 2a80e44 | 2013-12-02 22:09:48 +0000 | [diff] [blame] | 73 | /// Unit debug information entry. |
| 74 | const OwningPtr<DIE> UnitDie; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 75 | |
David Blaikie | 2a80e44 | 2013-12-02 22:09:48 +0000 | [diff] [blame] | 76 | /// Offset of the UnitDie from beginning of debug info section. |
Eric Christopher | a16725b | 2013-11-21 01:29:16 +0000 | [diff] [blame] | 77 | unsigned DebugInfoOffset; |
| 78 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 79 | /// Asm - Target of Dwarf emission. |
| 80 | AsmPrinter *Asm; |
| 81 | |
Eric Christopher | e698f53 | 2012-12-20 21:58:36 +0000 | [diff] [blame] | 82 | // Holders for some common dwarf information. |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 83 | DwarfDebug *DD; |
Eric Christopher | f819485 | 2013-12-05 18:06:10 +0000 | [diff] [blame] | 84 | DwarfFile *DU; |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 85 | |
David Blaikie | 2a80e44 | 2013-12-02 22:09:48 +0000 | [diff] [blame] | 86 | /// IndexTyDie - An anonymous type for index type. Owned by UnitDie. |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 87 | DIE *IndexTyDie; |
| 88 | |
Eric Christopher | 6156011 | 2013-05-08 00:11:10 +0000 | [diff] [blame] | 89 | /// MDNodeToDieMap - Tracks the mapping of unit level debug information |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 90 | /// variables to debug information entries. |
| 91 | DenseMap<const MDNode *, DIE *> MDNodeToDieMap; |
| 92 | |
Eric Christopher | 6156011 | 2013-05-08 00:11:10 +0000 | [diff] [blame] | 93 | /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 94 | /// descriptors to debug information entries using a DIEEntry proxy. |
| 95 | DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap; |
| 96 | |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 97 | /// GlobalNames - A map of globally visible named entities for this unit. |
Eric Christopher | 0fe676a | 2013-11-21 00:48:22 +0000 | [diff] [blame] | 98 | StringMap<const DIE *> GlobalNames; |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 99 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 100 | /// GlobalTypes - A map of globally visible types for this unit. |
Eric Christopher | 0fe676a | 2013-11-21 00:48:22 +0000 | [diff] [blame] | 101 | StringMap<const DIE *> GlobalTypes; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 102 | |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 103 | /// AccelNames - A map of names for the name accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 104 | StringMap<std::vector<const DIE *> > AccelNames; |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 105 | |
| 106 | /// AccelObjC - A map of objc spec for the objc accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 107 | StringMap<std::vector<const DIE *> > AccelObjC; |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 108 | |
| 109 | /// AccelNamespace - A map of names for the namespace accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 110 | StringMap<std::vector<const DIE *> > AccelNamespace; |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 111 | |
| 112 | /// AccelTypes - A map of names for the type accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 113 | StringMap<std::vector<std::pair<const DIE *, unsigned> > > AccelTypes; |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 114 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 115 | /// DIEBlocks - A list of all the DIEBlocks in use. |
| 116 | std::vector<DIEBlock *> DIEBlocks; |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 117 | |
| 118 | /// DIELocs - A list of all the DIELocs in use. |
| 119 | std::vector<DIELoc *> DIELocs; |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 120 | |
Devang Patel | 8954371 | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 121 | /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that |
| 122 | /// need DW_AT_containing_type attribute. This attribute points to a DIE that |
| 123 | /// corresponds to the MDNode mapped with the subprogram DIE. |
| 124 | DenseMap<DIE *, const MDNode *> ContainingTypeMap; |
| 125 | |
Eric Christopher | 46e2343 | 2013-12-20 04:16:18 +0000 | [diff] [blame] | 126 | // List of ranges for a given compile unit. |
| 127 | SmallVector<RangeSpan, 1> CURanges; |
| 128 | |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 129 | // List of range lists for a given compile unit, separate from the ranges for |
| 130 | // the CU itself. |
Eric Christopher | 270ba4a | 2013-12-04 19:06:58 +0000 | [diff] [blame] | 131 | SmallVector<RangeSpanList, 1> CURangeLists; |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 132 | |
Eric Christopher | 3264a48 | 2013-10-05 00:39:55 +0000 | [diff] [blame] | 133 | // DIEValueAllocator - All DIEValues are allocated through this allocator. |
| 134 | BumpPtrAllocator DIEValueAllocator; |
| 135 | |
| 136 | // DIEIntegerOne - A preallocated DIEValue because 1 is used frequently. |
| 137 | DIEInteger *DIEIntegerOne; |
| 138 | |
David Blaikie | 03073f7 | 2013-12-06 22:14:48 +0000 | [diff] [blame] | 139 | /// The section this unit will be emitted in. |
| 140 | const MCSection *Section; |
| 141 | |
| 142 | /// A label at the start of the non-dwo section related to this unit. |
| 143 | MCSymbol *SectionSym; |
| 144 | |
David Blaikie | 7d73460 | 2013-12-06 22:33:05 +0000 | [diff] [blame] | 145 | /// The start of the unit within its section. |
| 146 | MCSymbol *LabelBegin; |
| 147 | |
| 148 | /// The end of the unit within its section. |
| 149 | MCSymbol *LabelEnd; |
| 150 | |
David Blaikie | 1ab7c2d | 2013-12-09 17:51:30 +0000 | [diff] [blame] | 151 | /// The label for the start of the range sets for the elements of this unit. |
| 152 | MCSymbol *LabelRange; |
| 153 | |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 154 | /// Skeleton unit associated with this unit. |
| 155 | DwarfUnit *Skeleton; |
| 156 | |
David Blaikie | 7480ae6 | 2014-01-09 03:03:27 +0000 | [diff] [blame] | 157 | DwarfUnit(unsigned UID, DIE *D, DICompileUnit CU, AsmPrinter *A, |
| 158 | DwarfDebug *DW, DwarfFile *DWU); |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 159 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 160 | public: |
Eric Christopher | a5a7942 | 2013-12-09 23:32:48 +0000 | [diff] [blame] | 161 | virtual ~DwarfUnit(); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 162 | |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 163 | /// Set the skeleton unit associated with this unit. |
| 164 | void setSkeleton(DwarfUnit *Skel) { Skeleton = Skel; } |
| 165 | |
| 166 | /// Get the skeleton unit associated with this unit. |
| 167 | DwarfUnit *getSkeleton() const { return Skeleton; } |
| 168 | |
David Blaikie | 03073f7 | 2013-12-06 22:14:48 +0000 | [diff] [blame] | 169 | /// Pass in the SectionSym even though we could recreate it in every compile |
| 170 | /// unit (type units will have actually distinct symbols once they're in |
| 171 | /// comdat sections). |
| 172 | void initSection(const MCSection *Section, MCSymbol *SectionSym) { |
| 173 | assert(!this->Section); |
| 174 | this->Section = Section; |
| 175 | this->SectionSym = SectionSym; |
David Blaikie | 7d73460 | 2013-12-06 22:33:05 +0000 | [diff] [blame] | 176 | this->LabelBegin = |
| 177 | Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID()); |
| 178 | this->LabelEnd = |
| 179 | Asm->GetTempSymbol(Section->getLabelEndName(), getUniqueID()); |
David Blaikie | 1ab7c2d | 2013-12-09 17:51:30 +0000 | [diff] [blame] | 180 | this->LabelRange = Asm->GetTempSymbol("gnu_ranges", getUniqueID()); |
David Blaikie | 03073f7 | 2013-12-06 22:14:48 +0000 | [diff] [blame] | 181 | } |
David Blaikie | 1ab7c2d | 2013-12-09 17:51:30 +0000 | [diff] [blame] | 182 | |
David Blaikie | 03073f7 | 2013-12-06 22:14:48 +0000 | [diff] [blame] | 183 | const MCSection *getSection() const { |
| 184 | assert(Section); |
| 185 | return Section; |
| 186 | } |
| 187 | |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 188 | /// If there's a skeleton then return the section symbol for the skeleton |
| 189 | /// unit, otherwise return the section symbol for this unit. |
| 190 | MCSymbol *getLocalSectionSym() const { |
| 191 | if (Skeleton) |
| 192 | return Skeleton->getSectionSym(); |
Eric Christopher | d4368fd | 2014-01-02 21:03:28 +0000 | [diff] [blame] | 193 | return getSectionSym(); |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 194 | } |
| 195 | |
David Blaikie | 7d73460 | 2013-12-06 22:33:05 +0000 | [diff] [blame] | 196 | MCSymbol *getSectionSym() const { |
David Blaikie | 03073f7 | 2013-12-06 22:14:48 +0000 | [diff] [blame] | 197 | assert(Section); |
| 198 | return SectionSym; |
| 199 | } |
| 200 | |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 201 | /// If there's a skeleton then return the begin label for the skeleton unit, |
| 202 | /// otherwise return the local label for this unit. |
| 203 | MCSymbol *getLocalLabelBegin() const { |
| 204 | if (Skeleton) |
| 205 | return Skeleton->getLabelBegin(); |
Eric Christopher | d4368fd | 2014-01-02 21:03:28 +0000 | [diff] [blame] | 206 | return getLabelBegin(); |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 207 | } |
| 208 | |
David Blaikie | 7d73460 | 2013-12-06 22:33:05 +0000 | [diff] [blame] | 209 | MCSymbol *getLabelBegin() const { |
| 210 | assert(Section); |
| 211 | return LabelBegin; |
| 212 | } |
| 213 | |
| 214 | MCSymbol *getLabelEnd() const { |
| 215 | assert(Section); |
| 216 | return LabelEnd; |
| 217 | } |
| 218 | |
David Blaikie | 1ab7c2d | 2013-12-09 17:51:30 +0000 | [diff] [blame] | 219 | MCSymbol *getLabelRange() const { |
| 220 | assert(Section); |
| 221 | return LabelRange; |
| 222 | } |
| 223 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 224 | // Accessors. |
Eric Christopher | ca68bbf | 2013-08-26 23:58:22 +0000 | [diff] [blame] | 225 | unsigned getUniqueID() const { return UniqueID; } |
David Blaikie | f645f96 | 2014-01-09 03:23:41 +0000 | [diff] [blame] | 226 | uint16_t getLanguage() const { return CUNode.getLanguage(); } |
| 227 | DICompileUnit getCUNode() const { return CUNode; } |
David Blaikie | 2a80e44 | 2013-12-02 22:09:48 +0000 | [diff] [blame] | 228 | DIE *getUnitDie() const { return UnitDie.get(); } |
Eric Christopher | 0fe676a | 2013-11-21 00:48:22 +0000 | [diff] [blame] | 229 | const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; } |
| 230 | const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; } |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 231 | |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 232 | const StringMap<std::vector<const DIE *> > &getAccelNames() const { |
Eric Christopher | d9843b3 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 233 | return AccelNames; |
| 234 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 235 | const StringMap<std::vector<const DIE *> > &getAccelObjC() const { |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 236 | return AccelObjC; |
| 237 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 238 | const StringMap<std::vector<const DIE *> > &getAccelNamespace() const { |
Eric Christopher | 66b37db | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 239 | return AccelNamespace; |
| 240 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 241 | const StringMap<std::vector<std::pair<const DIE *, unsigned> > > & |
Eric Christopher | ca68bbf | 2013-08-26 23:58:22 +0000 | [diff] [blame] | 242 | getAccelTypes() const { |
Eric Christopher | 66b37db | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 243 | return AccelTypes; |
| 244 | } |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 245 | |
Manman Ren | ce20d46 | 2013-10-29 22:57:10 +0000 | [diff] [blame] | 246 | unsigned getDebugInfoOffset() const { return DebugInfoOffset; } |
| 247 | void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; } |
| 248 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 249 | /// hasContent - Return true if this compile unit has something to write out. |
David Blaikie | 2a80e44 | 2013-12-02 22:09:48 +0000 | [diff] [blame] | 250 | bool hasContent() const { return !UnitDie->getChildren().empty(); } |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 251 | |
Eric Christopher | 46e2343 | 2013-12-20 04:16:18 +0000 | [diff] [blame] | 252 | /// addRange - Add an address range to the list of ranges for this unit. |
Eric Christopher | 740a833 | 2014-02-27 01:25:00 +0000 | [diff] [blame] | 253 | void addRange(RangeSpan Range) { |
| 254 | // Only add a range for this unit if we're emitting full debug. |
| 255 | if (getCUNode().getEmissionKind() == DIBuilder::FullDebug) |
| 256 | CURanges.push_back(Range); |
| 257 | } |
Eric Christopher | 46e2343 | 2013-12-20 04:16:18 +0000 | [diff] [blame] | 258 | |
| 259 | /// getRanges - Get the list of ranges for this unit. |
| 260 | const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } |
| 261 | SmallVectorImpl<RangeSpan> &getRanges() { return CURanges; } |
| 262 | |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 263 | /// addRangeList - Add an address range list to the list of range lists. |
Eric Christopher | 270ba4a | 2013-12-04 19:06:58 +0000 | [diff] [blame] | 264 | void addRangeList(RangeSpanList Ranges) { CURangeLists.push_back(Ranges); } |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 265 | |
| 266 | /// getRangeLists - Get the vector of range lists. |
Eric Christopher | 270ba4a | 2013-12-04 19:06:58 +0000 | [diff] [blame] | 267 | const SmallVectorImpl<RangeSpanList> &getRangeLists() const { |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 268 | return CURangeLists; |
| 269 | } |
Eric Christopher | 270ba4a | 2013-12-04 19:06:58 +0000 | [diff] [blame] | 270 | SmallVectorImpl<RangeSpanList> &getRangeLists() { return CURangeLists; } |
Eric Christopher | 0f63d06 | 2013-12-03 00:45:45 +0000 | [diff] [blame] | 271 | |
Eric Christopher | 2c8b790 | 2013-10-17 02:06:06 +0000 | [diff] [blame] | 272 | /// getParentContextString - Get a string containing the language specific |
| 273 | /// context for a global name. |
| 274 | std::string getParentContextString(DIScope Context) const; |
| 275 | |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 276 | /// addGlobalName - Add a new global entity to the compile unit. |
| 277 | /// |
Eric Christopher | 2c8b790 | 2013-10-17 02:06:06 +0000 | [diff] [blame] | 278 | void addGlobalName(StringRef Name, DIE *Die, DIScope Context); |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 279 | |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 280 | /// addAccelName - Add a new name to the name accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 281 | void addAccelName(StringRef Name, const DIE *Die); |
Eric Christopher | 9cd26af | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 282 | |
| 283 | /// addAccelObjC - Add a new name to the ObjC accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 284 | void addAccelObjC(StringRef Name, const DIE *Die); |
Eric Christopher | 9cd26af | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 285 | |
| 286 | /// addAccelNamespace - Add a new name to the namespace accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 287 | void addAccelNamespace(StringRef Name, const DIE *Die); |
Eric Christopher | 9cd26af | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 288 | |
| 289 | /// addAccelType - Add a new type to the type accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 290 | void addAccelType(StringRef Name, std::pair<const DIE *, unsigned> Die); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 291 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 292 | /// getDIE - Returns the debug information entry map slot for the |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 293 | /// specified debug variable. We delegate the request to DwarfDebug |
| 294 | /// when the MDNode can be part of the type system, since DIEs for |
| 295 | /// the type system can be shared across CUs and the mappings are |
| 296 | /// kept in DwarfDebug. |
David Blaikie | 2ad0016 | 2013-11-15 23:09:13 +0000 | [diff] [blame] | 297 | DIE *getDIE(DIDescriptor D) const; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 298 | |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 299 | /// getDIELoc - Returns a fresh newly allocated DIELoc. |
| 300 | DIELoc *getDIELoc() { return new (DIEValueAllocator) DIELoc(); } |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 301 | |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 302 | /// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug |
| 303 | /// when the MDNode can be part of the type system, since DIEs for |
| 304 | /// the type system can be shared across CUs and the mappings are |
| 305 | /// kept in DwarfDebug. |
David Blaikie | 2ad0016 | 2013-11-15 23:09:13 +0000 | [diff] [blame] | 306 | void insertDIE(DIDescriptor Desc, DIE *D); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 307 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 308 | /// addDie - Adds or interns the DIE to the compile unit. |
| 309 | /// |
David Blaikie | 2a80e44 | 2013-12-02 22:09:48 +0000 | [diff] [blame] | 310 | void addDie(DIE *Buffer) { UnitDie->addChild(Buffer); } |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 311 | |
Eric Christopher | bb69a27 | 2012-08-24 01:14:27 +0000 | [diff] [blame] | 312 | /// addFlag - Add a flag that is true to the DIE. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 313 | void addFlag(DIE *Die, dwarf::Attribute Attribute); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 314 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 315 | /// addUInt - Add an unsigned integer attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 316 | void addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, |
| 317 | uint64_t Integer); |
| 318 | |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 319 | void addUInt(DIE *Block, dwarf::Form Form, uint64_t Integer); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 320 | |
| 321 | /// addSInt - Add an signed integer attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 322 | void addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, |
| 323 | int64_t Integer); |
| 324 | |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 325 | void addSInt(DIELoc *Die, Optional<dwarf::Form> Form, int64_t Integer); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 326 | |
| 327 | /// addString - Add a string attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 328 | void addString(DIE *Die, dwarf::Attribute Attribute, const StringRef Str); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 329 | |
Eric Christopher | 2cbd576 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 330 | /// addLocalString - Add a string attribute data and value. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 331 | void addLocalString(DIE *Die, dwarf::Attribute Attribute, |
| 332 | const StringRef Str); |
Eric Christopher | 2cbd576 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 333 | |
Ulrich Weigand | 396ba8b | 2013-07-02 18:46:26 +0000 | [diff] [blame] | 334 | /// addExpr - Add a Dwarf expression attribute data and value. |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 335 | void addExpr(DIELoc *Die, dwarf::Form Form, const MCExpr *Expr); |
Ulrich Weigand | 396ba8b | 2013-07-02 18:46:26 +0000 | [diff] [blame] | 336 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 337 | /// addLabel - Add a Dwarf label attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 338 | void addLabel(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form, |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 339 | const MCSymbol *Label); |
| 340 | |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 341 | void addLabel(DIELoc *Die, dwarf::Form Form, const MCSymbol *Label); |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 342 | |
Eric Christopher | 33ff697 | 2013-11-21 23:46:41 +0000 | [diff] [blame] | 343 | /// addSectionLabel - Add a Dwarf section label attribute data and value. |
| 344 | /// |
Eric Christopher | f52eddf | 2013-11-26 22:23:27 +0000 | [diff] [blame] | 345 | void addSectionLabel(DIE *Die, dwarf::Attribute Attribute, |
| 346 | const MCSymbol *Label); |
Eric Christopher | 33ff697 | 2013-11-21 23:46:41 +0000 | [diff] [blame] | 347 | |
| 348 | /// addSectionOffset - Add an offset into a section attribute data and value. |
| 349 | /// |
| 350 | void addSectionOffset(DIE *Die, dwarf::Attribute Attribute, uint64_t Integer); |
| 351 | |
Eric Christopher | e9ec245 | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 352 | /// addOpAddress - Add a dwarf op address data and value using the |
| 353 | /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index. |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 354 | void addOpAddress(DIELoc *Die, const MCSymbol *Label); |
Eric Christopher | e9ec245 | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 355 | |
Eric Christopher | 33ff697 | 2013-11-21 23:46:41 +0000 | [diff] [blame] | 356 | /// addSectionDelta - Add a label delta attribute data and value. |
| 357 | void addSectionDelta(DIE *Die, dwarf::Attribute Attribute, const MCSymbol *Hi, |
| 358 | const MCSymbol *Lo); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 359 | |
| 360 | /// addDIEEntry - Add a DIE attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 361 | void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIE *Entry); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 362 | |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 363 | /// addDIEEntry - Add a DIE attribute data and value. |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 364 | void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIEEntry *Entry); |
| 365 | |
David Blaikie | 47f615e | 2013-12-17 23:32:35 +0000 | [diff] [blame] | 366 | void addDIETypeSignature(DIE *Die, const DwarfTypeUnit &Type); |
| 367 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 368 | /// addBlock - Add block data. |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 369 | void addBlock(DIE *Die, dwarf::Attribute Attribute, DIELoc *Block); |
| 370 | |
| 371 | /// addBlock - Add block data. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 372 | void addBlock(DIE *Die, dwarf::Attribute Attribute, DIEBlock *Block); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 373 | |
| 374 | /// addSourceLine - Add location information to specified debug information |
| 375 | /// entry. |
David Blaikie | 101613e | 2014-02-12 00:11:25 +0000 | [diff] [blame] | 376 | void addSourceLine(DIE *Die, unsigned Line, StringRef File, |
| 377 | StringRef Directory); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 378 | void addSourceLine(DIE *Die, DIVariable V); |
| 379 | void addSourceLine(DIE *Die, DIGlobalVariable G); |
| 380 | void addSourceLine(DIE *Die, DISubprogram SP); |
| 381 | void addSourceLine(DIE *Die, DIType Ty); |
| 382 | void addSourceLine(DIE *Die, DINameSpace NS); |
Eric Christopher | 70e1bd8 | 2012-03-29 08:42:56 +0000 | [diff] [blame] | 383 | void addSourceLine(DIE *Die, DIObjCProperty Ty); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 384 | |
| 385 | /// addAddress - Add an address attribute to a die based on the location |
| 386 | /// provided. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 387 | void addAddress(DIE *Die, dwarf::Attribute Attribute, |
| 388 | const MachineLocation &Location, bool Indirect = false); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 389 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 390 | /// addConstantValue - Add constant value entry in variable DIE. |
Eric Christopher | 78fcf490 | 2013-07-03 01:08:30 +0000 | [diff] [blame] | 391 | void addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty); |
| 392 | void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned); |
| 393 | void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 394 | |
| 395 | /// addConstantFPValue - Add constant value entry in variable DIE. |
Eric Christopher | 78fcf490 | 2013-07-03 01:08:30 +0000 | [diff] [blame] | 396 | void addConstantFPValue(DIE *Die, const MachineOperand &MO); |
| 397 | void addConstantFPValue(DIE *Die, const ConstantFP *CFP); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 398 | |
| 399 | /// addTemplateParams - Add template parameters in buffer. |
| 400 | void addTemplateParams(DIE &Buffer, DIArray TParams); |
| 401 | |
Devang Patel | ba5fbf1 | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 402 | /// addRegisterOp - Add register operand. |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 403 | void addRegisterOp(DIELoc *TheDie, unsigned Reg); |
Devang Patel | ba5fbf1 | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 404 | |
| 405 | /// addRegisterOffset - Add register offset. |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 406 | void addRegisterOffset(DIELoc *TheDie, unsigned Reg, int64_t Offset); |
Devang Patel | ba5fbf1 | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 407 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 408 | /// addComplexAddress - Start with the address based on the location provided, |
| 409 | /// and generate the DWARF information necessary to find the actual variable |
| 410 | /// (navigating the extra location information encoded in the type) based on |
| 411 | /// the starting location. Add the DWARF information to the die. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 412 | void addComplexAddress(const DbgVariable &DV, DIE *Die, |
| 413 | dwarf::Attribute Attribute, |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 414 | const MachineLocation &Location); |
| 415 | |
| 416 | // FIXME: Should be reformulated in terms of addComplexAddress. |
| 417 | /// addBlockByrefAddress - Start with the address based on the location |
| 418 | /// provided, and generate the DWARF information necessary to find the |
| 419 | /// actual Block variable (navigating the Block struct) based on the |
| 420 | /// starting location. Add the DWARF information to the die. Obsolete, |
| 421 | /// please use addComplexAddress instead. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 422 | void addBlockByrefAddress(const DbgVariable &DV, DIE *Die, |
| 423 | dwarf::Attribute Attribute, |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 424 | const MachineLocation &Location); |
| 425 | |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 426 | /// addVariableAddress - Add DW_AT_location attribute for a |
Devang Patel | 77dc541 | 2011-04-27 22:45:24 +0000 | [diff] [blame] | 427 | /// DbgVariable based on provided MachineLocation. |
Eric Christopher | bf2d23c | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 428 | void addVariableAddress(const DbgVariable &DV, DIE *Die, |
| 429 | MachineLocation Location); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 430 | |
Eric Christopher | 7285c7d | 2012-03-28 07:34:31 +0000 | [diff] [blame] | 431 | /// addType - Add a new type attribute to the specified entity. This takes |
| 432 | /// and attribute parameter because DW_AT_friend attributes are also |
| 433 | /// type references. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 434 | void addType(DIE *Entity, DIType Ty, |
| 435 | dwarf::Attribute Attribute = dwarf::DW_AT_type); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 436 | |
| 437 | /// getOrCreateNameSpace - Create a DIE for DINameSpace. |
| 438 | DIE *getOrCreateNameSpace(DINameSpace NS); |
| 439 | |
Devang Patel | 8954371 | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 440 | /// getOrCreateSubprogramDIE - Create new DIE using SP. |
| 441 | DIE *getOrCreateSubprogramDIE(DISubprogram SP); |
| 442 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 443 | /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the |
| 444 | /// given DIType. |
Devang Patel | eb1bb4e | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 445 | DIE *getOrCreateTypeDIE(const MDNode *N); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 446 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 447 | /// getOrCreateContextDIE - Get context owner's DIE. |
David Blaikie | 409dd9c | 2013-11-19 23:08:21 +0000 | [diff] [blame] | 448 | DIE *createTypeDIE(DICompositeType Ty); |
| 449 | |
| 450 | /// getOrCreateContextDIE - Get context owner's DIE. |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 451 | DIE *getOrCreateContextDIE(DIScope Context); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 452 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 453 | /// constructContainingTypeDIEs - Construct DIEs for types that contain |
| 454 | /// vtables. |
| 455 | void constructContainingTypeDIEs(); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 456 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 457 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
Eric Christopher | 34a2c87 | 2013-11-15 01:43:19 +0000 | [diff] [blame] | 458 | DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract); |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 459 | |
Adrian Prantl | 69140d2 | 2014-02-25 22:27:14 +0000 | [diff] [blame] | 460 | /// constructSubprogramArguments - Construct function argument DIEs. |
| 461 | void constructSubprogramArguments(DIE &Buffer, DIArray Args); |
| 462 | |
Manman Ren | b987e51 | 2013-10-29 00:53:03 +0000 | [diff] [blame] | 463 | /// Create a DIE with the given Tag, add the DIE to its parent, and |
| 464 | /// call insertDIE if MD is not null. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 465 | DIE *createAndAddDIE(unsigned Tag, DIE &Parent, |
| 466 | DIDescriptor N = DIDescriptor()); |
Manman Ren | b987e51 | 2013-10-29 00:53:03 +0000 | [diff] [blame] | 467 | |
David Blaikie | 6b288cf | 2013-10-30 20:42:41 +0000 | [diff] [blame] | 468 | /// Compute the size of a header for this unit, not including the initial |
| 469 | /// length field. |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 470 | virtual unsigned getHeaderSize() const { |
David Blaikie | 6b288cf | 2013-10-30 20:42:41 +0000 | [diff] [blame] | 471 | return sizeof(int16_t) + // DWARF version number |
| 472 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 473 | sizeof(int8_t); // Pointer Size (in bytes) |
| 474 | } |
| 475 | |
| 476 | /// Emit the header for this unit, not including the initial length field. |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 477 | virtual void emitHeader(const MCSection *ASection, |
| 478 | const MCSymbol *ASectionSym) const; |
David Blaikie | 6b288cf | 2013-10-30 20:42:41 +0000 | [diff] [blame] | 479 | |
David Blaikie | 15632ae | 2014-02-12 00:31:30 +0000 | [diff] [blame] | 480 | virtual DwarfCompileUnit &getCU() = 0; |
David Blaikie | d696fac | 2014-02-12 00:32:05 +0000 | [diff] [blame] | 481 | |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 482 | protected: |
| 483 | /// getOrCreateStaticMemberDIE - Create new static data member DIE. |
| 484 | DIE *getOrCreateStaticMemberDIE(DIDerivedType DT); |
| 485 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 486 | private: |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 487 | /// constructTypeDIE - Construct basic type die from DIBasicType. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 488 | void constructTypeDIE(DIE &Buffer, DIBasicType BTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 489 | |
| 490 | /// constructTypeDIE - Construct derived type die from DIDerivedType. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 491 | void constructTypeDIE(DIE &Buffer, DIDerivedType DTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 492 | |
| 493 | /// constructTypeDIE - Construct type DIE from DICompositeType. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 494 | void constructTypeDIE(DIE &Buffer, DICompositeType CTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 495 | |
| 496 | /// constructSubrangeDIE - Construct subrange DIE from DISubrange. |
| 497 | void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy); |
| 498 | |
| 499 | /// constructArrayTypeDIE - Construct array type DIE from DICompositeType. |
Eric Christopher | df9955d | 2013-11-11 18:52:31 +0000 | [diff] [blame] | 500 | void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 501 | |
| 502 | /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator. |
Eric Christopher | aeb105f | 2013-11-11 18:52:39 +0000 | [diff] [blame] | 503 | void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 504 | |
Manman Ren | 230ec86 | 2013-10-23 23:00:44 +0000 | [diff] [blame] | 505 | /// constructMemberDIE - Construct member DIE from DIDerivedType. |
| 506 | void constructMemberDIE(DIE &Buffer, DIDerivedType DT); |
Manman Ren | 7cc6270 | 2013-10-18 21:14:19 +0000 | [diff] [blame] | 507 | |
Manman Ren | ffc9a71 | 2013-10-23 23:05:28 +0000 | [diff] [blame] | 508 | /// constructTemplateTypeParameterDIE - Construct new DIE for the given |
| 509 | /// DITemplateTypeParameter. |
| 510 | void constructTemplateTypeParameterDIE(DIE &Buffer, |
| 511 | DITemplateTypeParameter TP); |
Manman Ren | 7cc6270 | 2013-10-18 21:14:19 +0000 | [diff] [blame] | 512 | |
Manman Ren | ffc9a71 | 2013-10-23 23:05:28 +0000 | [diff] [blame] | 513 | /// constructTemplateValueParameterDIE - Construct new DIE for the given |
| 514 | /// DITemplateValueParameter. |
| 515 | void constructTemplateValueParameterDIE(DIE &Buffer, |
| 516 | DITemplateValueParameter TVP); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 517 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 518 | /// getLowerBoundDefault - Return the default lower bound for an array. If the |
| 519 | /// DWARF version doesn't handle the language, return -1. |
| 520 | int64_t getDefaultLowerBound() const; |
| 521 | |
| 522 | /// getDIEEntry - Returns the debug information entry for the specified |
| 523 | /// debug variable. |
| 524 | DIEEntry *getDIEEntry(const MDNode *N) const { |
| 525 | return MDNodeToDIEEntryMap.lookup(N); |
| 526 | } |
| 527 | |
| 528 | /// insertDIEEntry - Insert debug information entry into the map. |
| 529 | void insertDIEEntry(const MDNode *N, DIEEntry *E) { |
| 530 | MDNodeToDIEEntryMap.insert(std::make_pair(N, E)); |
| 531 | } |
| 532 | |
| 533 | // getIndexTyDie - Get an anonymous type for index type. |
| 534 | DIE *getIndexTyDie() { return IndexTyDie; } |
| 535 | |
| 536 | // setIndexTyDie - Set D as anonymous type for index which can be reused |
| 537 | // later. |
| 538 | void setIndexTyDie(DIE *D) { IndexTyDie = D; } |
| 539 | |
| 540 | /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug |
| 541 | /// information entry. |
| 542 | DIEEntry *createDIEEntry(DIE *Entry); |
David Blaikie | 684fc53 | 2013-05-06 23:33:07 +0000 | [diff] [blame] | 543 | |
Eric Christopher | 9e429ae | 2013-10-05 00:27:02 +0000 | [diff] [blame] | 544 | /// resolve - Look in the DwarfDebug map for the MDNode that |
Eric Christopher | 87b9c49 | 2013-10-05 00:32:34 +0000 | [diff] [blame] | 545 | /// corresponds to the reference. |
Eric Christopher | 9e429ae | 2013-10-05 00:27:02 +0000 | [diff] [blame] | 546 | template <typename T> T resolve(DIRef<T> Ref) const { |
| 547 | return DD->resolve(Ref); |
| 548 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 549 | |
| 550 | /// If this is a named finished type then include it in the list of types for |
| 551 | /// the accelerator tables. |
David Blaikie | 9d861be | 2013-11-26 00:15:27 +0000 | [diff] [blame] | 552 | void updateAcceleratorTables(DIScope Context, DIType Ty, const DIE *TyDIE); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 553 | }; |
| 554 | |
Eric Christopher | 4287a49 | 2013-12-09 23:57:44 +0000 | [diff] [blame] | 555 | class DwarfCompileUnit : public DwarfUnit { |
David Blaikie | 60e6386 | 2014-02-14 23:58:13 +0000 | [diff] [blame] | 556 | /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding |
| 557 | /// the need to search for it in applyStmtList. |
| 558 | unsigned stmtListIndex; |
| 559 | |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 560 | public: |
Eric Christopher | 4287a49 | 2013-12-09 23:57:44 +0000 | [diff] [blame] | 561 | DwarfCompileUnit(unsigned UID, DIE *D, DICompileUnit Node, AsmPrinter *A, |
| 562 | DwarfDebug *DW, DwarfFile *DWU); |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 563 | |
David Blaikie | 2494fdb | 2014-02-14 22:41:51 +0000 | [diff] [blame] | 564 | void initStmtList(MCSymbol *DwarfLineSectionSym); |
| 565 | |
David Blaikie | 60e6386 | 2014-02-14 23:58:13 +0000 | [diff] [blame] | 566 | /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE. |
| 567 | void applyStmtList(DIE &D); |
| 568 | |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 569 | /// createGlobalVariableDIE - create global variable DIE. |
| 570 | void createGlobalVariableDIE(DIGlobalVariable GV); |
| 571 | |
| 572 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 573 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 574 | void addLabelAddress(DIE *Die, dwarf::Attribute Attribute, MCSymbol *Label); |
David Blaikie | 15632ae | 2014-02-12 00:31:30 +0000 | [diff] [blame] | 575 | |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame^] | 576 | DwarfCompileUnit &getCU() override { return *this; } |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 577 | }; |
| 578 | |
Eric Christopher | 4287a49 | 2013-12-09 23:57:44 +0000 | [diff] [blame] | 579 | class DwarfTypeUnit : public DwarfUnit { |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 580 | private: |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 581 | uint64_t TypeSignature; |
| 582 | const DIE *Ty; |
David Blaikie | 15632ae | 2014-02-12 00:31:30 +0000 | [diff] [blame] | 583 | DwarfCompileUnit &CU; |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 584 | |
| 585 | public: |
David Blaikie | 15632ae | 2014-02-12 00:31:30 +0000 | [diff] [blame] | 586 | DwarfTypeUnit(unsigned UID, DIE *D, DwarfCompileUnit &CU, AsmPrinter *A, |
Eric Christopher | 4287a49 | 2013-12-09 23:57:44 +0000 | [diff] [blame] | 587 | DwarfDebug *DW, DwarfFile *DWU); |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 588 | |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 589 | void setTypeSignature(uint64_t Signature) { TypeSignature = Signature; } |
David Blaikie | 47f615e | 2013-12-17 23:32:35 +0000 | [diff] [blame] | 590 | uint64_t getTypeSignature() const { return TypeSignature; } |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 591 | void setType(const DIE *Ty) { this->Ty = Ty; } |
| 592 | |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 593 | /// Emit the header for this unit, not including the initial length field. |
| 594 | void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym) const |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame^] | 595 | override; |
| 596 | unsigned getHeaderSize() const override { |
David Blaikie | bc56327 | 2013-12-13 21:33:40 +0000 | [diff] [blame] | 597 | return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature |
| 598 | sizeof(uint32_t); // Type DIE Offset |
| 599 | } |
| 600 | void initSection(const MCSection *Section); |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame^] | 601 | DwarfCompileUnit &getCU() override { return CU; } |
David Blaikie | 319a05f | 2013-12-02 19:33:10 +0000 | [diff] [blame] | 602 | }; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 603 | } // end llvm namespace |
| 604 | #endif |