Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 1 | //===-- 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 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" |
David Blaikie | f3cd7c5 | 2013-06-28 20:05:04 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCExpr.h" |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 25 | |
| 26 | namespace llvm { |
| 27 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 28 | class MachineLocation; |
| 29 | class MachineOperand; |
| 30 | class ConstantInt; |
David Blaikie | a39a76e | 2013-01-20 01:18:01 +0000 | [diff] [blame] | 31 | class ConstantFP; |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 32 | class DbgVariable; |
| 33 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 34 | //===----------------------------------------------------------------------===// |
Eric Christopher | 2b4f773 | 2011-11-07 09:18:32 +0000 | [diff] [blame] | 35 | /// CompileUnit - This dwarf writer support class manages information associated |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 36 | /// with a source file. |
Benjamin Kramer | 079b96e | 2013-09-11 18:05:11 +0000 | [diff] [blame] | 37 | class CompileUnit { |
Eli Bendersky | b42d146 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 38 | /// UniqueID - a numeric ID unique among all CUs in the module |
Eli Bendersky | b42d146 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 39 | unsigned UniqueID; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 40 | |
Eric Christopher | bfceb2f | 2013-08-26 23:50:38 +0000 | [diff] [blame] | 41 | /// Node - MDNode for the compile unit. |
David Blaikie | 5a15240 | 2013-11-15 23:52:02 +0000 | [diff] [blame] | 42 | DICompileUnit Node; |
Eric Christopher | 3a2656b | 2012-02-22 08:46:13 +0000 | [diff] [blame] | 43 | |
Eric Christopher | bca5c63 | 2013-11-21 01:14:00 +0000 | [diff] [blame] | 44 | /// Language - Language for the translation unit associated with this CU. |
| 45 | uint16_t Language; |
| 46 | |
Eric Christopher | e341167 | 2013-10-24 21:54:58 +0000 | [diff] [blame] | 47 | /// CUDie - Compile unit debug information entry. |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 48 | const OwningPtr<DIE> CUDie; |
| 49 | |
Eric Christopher | a16725b | 2013-11-21 01:29:16 +0000 | [diff] [blame^] | 50 | /// Offset of the CUDie from beginning of debug info section. |
| 51 | unsigned DebugInfoOffset; |
| 52 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 53 | /// Asm - Target of Dwarf emission. |
| 54 | AsmPrinter *Asm; |
| 55 | |
Eric Christopher | e698f53 | 2012-12-20 21:58:36 +0000 | [diff] [blame] | 56 | // Holders for some common dwarf information. |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 57 | DwarfDebug *DD; |
Eric Christopher | e698f53 | 2012-12-20 21:58:36 +0000 | [diff] [blame] | 58 | DwarfUnits *DU; |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 59 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 60 | /// IndexTyDie - An anonymous type for index type. Owned by CUDie. |
| 61 | DIE *IndexTyDie; |
| 62 | |
Eric Christopher | 6156011 | 2013-05-08 00:11:10 +0000 | [diff] [blame] | 63 | /// MDNodeToDieMap - Tracks the mapping of unit level debug information |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 64 | /// variables to debug information entries. |
| 65 | DenseMap<const MDNode *, DIE *> MDNodeToDieMap; |
| 66 | |
Eric Christopher | 6156011 | 2013-05-08 00:11:10 +0000 | [diff] [blame] | 67 | /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 68 | /// descriptors to debug information entries using a DIEEntry proxy. |
| 69 | DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap; |
| 70 | |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 71 | /// GlobalNames - A map of globally visible named entities for this unit. |
Eric Christopher | 0fe676a | 2013-11-21 00:48:22 +0000 | [diff] [blame] | 72 | StringMap<const DIE *> GlobalNames; |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 73 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 74 | /// GlobalTypes - A map of globally visible types for this unit. |
Eric Christopher | 0fe676a | 2013-11-21 00:48:22 +0000 | [diff] [blame] | 75 | StringMap<const DIE *> GlobalTypes; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 76 | |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 77 | /// AccelNames - A map of names for the name accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 78 | StringMap<std::vector<const DIE *> > AccelNames; |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 79 | |
| 80 | /// AccelObjC - A map of objc spec for the objc accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 81 | StringMap<std::vector<const DIE *> > AccelObjC; |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 82 | |
| 83 | /// AccelNamespace - A map of names for the namespace accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 84 | StringMap<std::vector<const DIE *> > AccelNamespace; |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 85 | |
| 86 | /// AccelTypes - A map of names for the type accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 87 | StringMap<std::vector<std::pair<const DIE *, unsigned> > > AccelTypes; |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 88 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 89 | /// DIEBlocks - A list of all the DIEBlocks in use. |
| 90 | std::vector<DIEBlock *> DIEBlocks; |
| 91 | |
Devang Patel | 8954371 | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 92 | /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that |
| 93 | /// need DW_AT_containing_type attribute. This attribute points to a DIE that |
| 94 | /// corresponds to the MDNode mapped with the subprogram DIE. |
| 95 | DenseMap<DIE *, const MDNode *> ContainingTypeMap; |
| 96 | |
Eric Christopher | 3264a48 | 2013-10-05 00:39:55 +0000 | [diff] [blame] | 97 | // DIEValueAllocator - All DIEValues are allocated through this allocator. |
| 98 | BumpPtrAllocator DIEValueAllocator; |
| 99 | |
| 100 | // DIEIntegerOne - A preallocated DIEValue because 1 is used frequently. |
| 101 | DIEInteger *DIEIntegerOne; |
| 102 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 103 | public: |
David Blaikie | 5a15240 | 2013-11-15 23:52:02 +0000 | [diff] [blame] | 104 | CompileUnit(unsigned UID, DIE *D, DICompileUnit CU, AsmPrinter *A, |
Eric Christopher | bf2d23c | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 105 | DwarfDebug *DW, DwarfUnits *DWU); |
David Blaikie | 409dd9c | 2013-11-19 23:08:21 +0000 | [diff] [blame] | 106 | CompileUnit(unsigned UID, DIE *D, uint16_t Language, AsmPrinter *A, |
| 107 | DwarfDebug *DW, DwarfUnits *DWU); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 108 | ~CompileUnit(); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 109 | |
| 110 | // Accessors. |
Eric Christopher | ca68bbf | 2013-08-26 23:58:22 +0000 | [diff] [blame] | 111 | unsigned getUniqueID() const { return UniqueID; } |
David Blaikie | 409dd9c | 2013-11-19 23:08:21 +0000 | [diff] [blame] | 112 | uint16_t getLanguage() const { return Language; } |
David Blaikie | b01f13e | 2013-11-15 23:54:45 +0000 | [diff] [blame] | 113 | DICompileUnit getNode() const { return Node; } |
Eric Christopher | ca68bbf | 2013-08-26 23:58:22 +0000 | [diff] [blame] | 114 | DIE *getCUDie() const { return CUDie.get(); } |
Eric Christopher | 0fe676a | 2013-11-21 00:48:22 +0000 | [diff] [blame] | 115 | const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; } |
| 116 | const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; } |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 117 | |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 118 | const StringMap<std::vector<const DIE *> > &getAccelNames() const { |
Eric Christopher | d9843b3 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 119 | return AccelNames; |
| 120 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 121 | const StringMap<std::vector<const DIE *> > &getAccelObjC() const { |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 122 | return AccelObjC; |
| 123 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 124 | const StringMap<std::vector<const DIE *> > &getAccelNamespace() const { |
Eric Christopher | 66b37db | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 125 | return AccelNamespace; |
| 126 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 127 | const StringMap<std::vector<std::pair<const DIE *, unsigned> > > & |
Eric Christopher | ca68bbf | 2013-08-26 23:58:22 +0000 | [diff] [blame] | 128 | getAccelTypes() const { |
Eric Christopher | 66b37db | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 129 | return AccelTypes; |
| 130 | } |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 131 | |
Manman Ren | ce20d46 | 2013-10-29 22:57:10 +0000 | [diff] [blame] | 132 | unsigned getDebugInfoOffset() const { return DebugInfoOffset; } |
| 133 | void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; } |
| 134 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 135 | /// hasContent - Return true if this compile unit has something to write out. |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 136 | bool hasContent() const { return !CUDie->getChildren().empty(); } |
| 137 | |
Eric Christopher | 2c8b790 | 2013-10-17 02:06:06 +0000 | [diff] [blame] | 138 | /// getParentContextString - Get a string containing the language specific |
| 139 | /// context for a global name. |
| 140 | std::string getParentContextString(DIScope Context) const; |
| 141 | |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 142 | /// addGlobalName - Add a new global entity to the compile unit. |
| 143 | /// |
Eric Christopher | 2c8b790 | 2013-10-17 02:06:06 +0000 | [diff] [blame] | 144 | void addGlobalName(StringRef Name, DIE *Die, DIScope Context); |
Krzysztof Parzyszek | 228daa6 | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 145 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 146 | /// addGlobalType - Add a new global type to the compile unit. |
Devang Patel | 562c742 | 2011-06-01 00:23:24 +0000 | [diff] [blame] | 147 | void addGlobalType(DIType Ty); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 148 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 149 | /// addPubTypes - Add a set of types from the subprogram to the global types. |
| 150 | void addPubTypes(DISubprogram SP); |
| 151 | |
Eric Christopher | 4996c70 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 152 | /// addAccelName - Add a new name to the name accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 153 | void addAccelName(StringRef Name, const DIE *Die); |
Eric Christopher | 9cd26af | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 154 | |
| 155 | /// addAccelObjC - Add a new name to the ObjC accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 156 | void addAccelObjC(StringRef Name, const DIE *Die); |
Eric Christopher | 9cd26af | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 157 | |
| 158 | /// addAccelNamespace - Add a new name to the namespace accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 159 | void addAccelNamespace(StringRef Name, const DIE *Die); |
Eric Christopher | 9cd26af | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 160 | |
| 161 | /// addAccelType - Add a new type to the type accelerator table. |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 162 | void addAccelType(StringRef Name, std::pair<const DIE *, unsigned> Die); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 163 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 164 | /// getDIE - Returns the debug information entry map slot for the |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 165 | /// specified debug variable. We delegate the request to DwarfDebug |
| 166 | /// when the MDNode can be part of the type system, since DIEs for |
| 167 | /// the type system can be shared across CUs and the mappings are |
| 168 | /// kept in DwarfDebug. |
David Blaikie | 2ad0016 | 2013-11-15 23:09:13 +0000 | [diff] [blame] | 169 | DIE *getDIE(DIDescriptor D) const; |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 170 | |
Eric Christopher | 4affe8c | 2013-11-21 01:29:13 +0000 | [diff] [blame] | 171 | /// getDIEBlock - Returns a fresh newly allocated DIEBlock. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 172 | DIEBlock *getDIEBlock() { return new (DIEValueAllocator) DIEBlock(); } |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 173 | |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 174 | /// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug |
| 175 | /// when the MDNode can be part of the type system, since DIEs for |
| 176 | /// the type system can be shared across CUs and the mappings are |
| 177 | /// kept in DwarfDebug. |
David Blaikie | 2ad0016 | 2013-11-15 23:09:13 +0000 | [diff] [blame] | 178 | void insertDIE(DIDescriptor Desc, DIE *D); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 179 | |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 180 | /// addDie - Adds or interns the DIE to the compile unit. |
| 181 | /// |
Eric Christopher | fe3ae44 | 2013-10-04 23:49:31 +0000 | [diff] [blame] | 182 | void addDie(DIE *Buffer) { CUDie->addChild(Buffer); } |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 183 | |
Eric Christopher | bb69a27 | 2012-08-24 01:14:27 +0000 | [diff] [blame] | 184 | /// addFlag - Add a flag that is true to the DIE. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 185 | void addFlag(DIE *Die, dwarf::Attribute Attribute); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 186 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 187 | /// addUInt - Add an unsigned integer attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 188 | void addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, |
| 189 | uint64_t Integer); |
| 190 | |
| 191 | void addUInt(DIEBlock *Block, dwarf::Form Form, uint64_t Integer); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 192 | |
| 193 | /// addSInt - Add an signed integer attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 194 | void addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, |
| 195 | int64_t Integer); |
| 196 | |
| 197 | void addSInt(DIEBlock *Die, Optional<dwarf::Form> Form, int64_t Integer); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 198 | |
| 199 | /// addString - Add a string attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 200 | void addString(DIE *Die, dwarf::Attribute Attribute, const StringRef Str); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 201 | |
Eric Christopher | 2cbd576 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 202 | /// addLocalString - Add a string attribute data and value. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 203 | void addLocalString(DIE *Die, dwarf::Attribute Attribute, |
| 204 | const StringRef Str); |
Eric Christopher | 2cbd576 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 205 | |
Ulrich Weigand | 396ba8b | 2013-07-02 18:46:26 +0000 | [diff] [blame] | 206 | /// addExpr - Add a Dwarf expression attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 207 | void addExpr(DIEBlock *Die, dwarf::Form Form, const MCExpr *Expr); |
Ulrich Weigand | 396ba8b | 2013-07-02 18:46:26 +0000 | [diff] [blame] | 208 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 209 | /// addLabel - Add a Dwarf label attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 210 | void addLabel(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form, |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 211 | const MCSymbol *Label); |
| 212 | |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 213 | void addLabel(DIEBlock *Die, dwarf::Form Form, const MCSymbol *Label); |
| 214 | |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 215 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 216 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 217 | void addLabelAddress(DIE *Die, dwarf::Attribute Attribute, MCSymbol *Label); |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 218 | |
Eric Christopher | e9ec245 | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 219 | /// addOpAddress - Add a dwarf op address data and value using the |
| 220 | /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 221 | void addOpAddress(DIEBlock *Die, const MCSymbol *Label); |
Eric Christopher | e9ec245 | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 222 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 223 | /// addDelta - Add a label delta attribute data and value. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 224 | void addDelta(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form, |
| 225 | const MCSymbol *Hi, const MCSymbol *Lo); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 226 | |
| 227 | /// addDIEEntry - Add a DIE attribute data and value. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 228 | void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIE *Entry); |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 229 | |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 230 | /// addDIEEntry - Add a DIE attribute data and value. |
Manman Ren | 4dbdc90 | 2013-10-31 17:54:35 +0000 | [diff] [blame] | 231 | void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIEEntry *Entry); |
| 232 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 233 | /// addBlock - Add block data. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 234 | void addBlock(DIE *Die, dwarf::Attribute Attribute, DIEBlock *Block); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 235 | |
| 236 | /// addSourceLine - Add location information to specified debug information |
| 237 | /// entry. |
| 238 | void addSourceLine(DIE *Die, DIVariable V); |
| 239 | void addSourceLine(DIE *Die, DIGlobalVariable G); |
| 240 | void addSourceLine(DIE *Die, DISubprogram SP); |
| 241 | void addSourceLine(DIE *Die, DIType Ty); |
| 242 | void addSourceLine(DIE *Die, DINameSpace NS); |
Eric Christopher | 70e1bd8 | 2012-03-29 08:42:56 +0000 | [diff] [blame] | 243 | void addSourceLine(DIE *Die, DIObjCProperty Ty); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 244 | |
| 245 | /// addAddress - Add an address attribute to a die based on the location |
| 246 | /// provided. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 247 | void addAddress(DIE *Die, dwarf::Attribute Attribute, |
| 248 | const MachineLocation &Location, bool Indirect = false); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 249 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 250 | /// addConstantValue - Add constant value entry in variable DIE. |
Eric Christopher | 78fcf490 | 2013-07-03 01:08:30 +0000 | [diff] [blame] | 251 | void addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty); |
| 252 | void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned); |
| 253 | void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 254 | |
| 255 | /// addConstantFPValue - Add constant value entry in variable DIE. |
Eric Christopher | 78fcf490 | 2013-07-03 01:08:30 +0000 | [diff] [blame] | 256 | void addConstantFPValue(DIE *Die, const MachineOperand &MO); |
| 257 | void addConstantFPValue(DIE *Die, const ConstantFP *CFP); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 258 | |
| 259 | /// addTemplateParams - Add template parameters in buffer. |
| 260 | void addTemplateParams(DIE &Buffer, DIArray TParams); |
| 261 | |
Devang Patel | ba5fbf1 | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 262 | /// addRegisterOp - Add register operand. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 263 | void addRegisterOp(DIEBlock *TheDie, unsigned Reg); |
Devang Patel | ba5fbf1 | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 264 | |
| 265 | /// addRegisterOffset - Add register offset. |
David Blaikie | f244319 | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 266 | void addRegisterOffset(DIEBlock *TheDie, unsigned Reg, int64_t Offset); |
Devang Patel | ba5fbf1 | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 267 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 268 | /// addComplexAddress - Start with the address based on the location provided, |
| 269 | /// and generate the DWARF information necessary to find the actual variable |
| 270 | /// (navigating the extra location information encoded in the type) based on |
| 271 | /// the starting location. Add the DWARF information to the die. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 272 | void addComplexAddress(const DbgVariable &DV, DIE *Die, |
| 273 | dwarf::Attribute Attribute, |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 274 | const MachineLocation &Location); |
| 275 | |
| 276 | // FIXME: Should be reformulated in terms of addComplexAddress. |
| 277 | /// addBlockByrefAddress - Start with the address based on the location |
| 278 | /// provided, and generate the DWARF information necessary to find the |
| 279 | /// actual Block variable (navigating the Block struct) based on the |
| 280 | /// starting location. Add the DWARF information to the die. Obsolete, |
| 281 | /// please use addComplexAddress instead. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 282 | void addBlockByrefAddress(const DbgVariable &DV, DIE *Die, |
| 283 | dwarf::Attribute Attribute, |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 284 | const MachineLocation &Location); |
| 285 | |
Eric Christopher | 48fef59 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 286 | /// addVariableAddress - Add DW_AT_location attribute for a |
Devang Patel | 77dc541 | 2011-04-27 22:45:24 +0000 | [diff] [blame] | 287 | /// DbgVariable based on provided MachineLocation. |
Eric Christopher | bf2d23c | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 288 | void addVariableAddress(const DbgVariable &DV, DIE *Die, |
| 289 | MachineLocation Location); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 290 | |
Eric Christopher | 7285c7d | 2012-03-28 07:34:31 +0000 | [diff] [blame] | 291 | /// addType - Add a new type attribute to the specified entity. This takes |
| 292 | /// and attribute parameter because DW_AT_friend attributes are also |
| 293 | /// type references. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 294 | void addType(DIE *Entity, DIType Ty, |
| 295 | dwarf::Attribute Attribute = dwarf::DW_AT_type); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 296 | |
| 297 | /// getOrCreateNameSpace - Create a DIE for DINameSpace. |
| 298 | DIE *getOrCreateNameSpace(DINameSpace NS); |
| 299 | |
Devang Patel | 8954371 | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 300 | /// getOrCreateSubprogramDIE - Create new DIE using SP. |
| 301 | DIE *getOrCreateSubprogramDIE(DISubprogram SP); |
| 302 | |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 303 | /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the |
| 304 | /// given DIType. |
Devang Patel | eb1bb4e | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 305 | DIE *getOrCreateTypeDIE(const MDNode *N); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 306 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 307 | /// getOrCreateContextDIE - Get context owner's DIE. |
David Blaikie | 409dd9c | 2013-11-19 23:08:21 +0000 | [diff] [blame] | 308 | DIE *createTypeDIE(DICompositeType Ty); |
| 309 | |
| 310 | /// getOrCreateContextDIE - Get context owner's DIE. |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 311 | DIE *getOrCreateContextDIE(DIScope Context); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 312 | |
Devang Patel | dfd6ec3 | 2011-08-15 17:57:41 +0000 | [diff] [blame] | 313 | /// createGlobalVariableDIE - create global variable DIE. |
David Blaikie | a781b25b | 2013-11-17 21:55:13 +0000 | [diff] [blame] | 314 | void createGlobalVariableDIE(DIGlobalVariable GV); |
Devang Patel | dfd6ec3 | 2011-08-15 17:57:41 +0000 | [diff] [blame] | 315 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 316 | /// constructContainingTypeDIEs - Construct DIEs for types that contain |
| 317 | /// vtables. |
| 318 | void constructContainingTypeDIEs(); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 319 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 320 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
Eric Christopher | 34a2c87 | 2013-11-15 01:43:19 +0000 | [diff] [blame] | 321 | DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract); |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 322 | |
Manman Ren | b987e51 | 2013-10-29 00:53:03 +0000 | [diff] [blame] | 323 | /// Create a DIE with the given Tag, add the DIE to its parent, and |
| 324 | /// call insertDIE if MD is not null. |
Eric Christopher | a07e4f5 | 2013-11-19 09:28:34 +0000 | [diff] [blame] | 325 | DIE *createAndAddDIE(unsigned Tag, DIE &Parent, |
| 326 | DIDescriptor N = DIDescriptor()); |
Manman Ren | b987e51 | 2013-10-29 00:53:03 +0000 | [diff] [blame] | 327 | |
David Blaikie | 409dd9c | 2013-11-19 23:08:21 +0000 | [diff] [blame] | 328 | /// constructTypeDIEImpl - Construct type DIE that is not a type unit |
| 329 | /// reference from a DICompositeType. |
| 330 | void constructTypeDIEImpl(DIE &Buffer, DICompositeType CTy); |
| 331 | |
David Blaikie | 6b288cf | 2013-10-30 20:42:41 +0000 | [diff] [blame] | 332 | /// Compute the size of a header for this unit, not including the initial |
| 333 | /// length field. |
| 334 | unsigned getHeaderSize() const { |
| 335 | return sizeof(int16_t) + // DWARF version number |
| 336 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 337 | sizeof(int8_t); // Pointer Size (in bytes) |
| 338 | } |
| 339 | |
| 340 | /// Emit the header for this unit, not including the initial length field. |
| 341 | void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym); |
| 342 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 343 | private: |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 344 | /// constructTypeDIE - Construct basic type die from DIBasicType. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 345 | void constructTypeDIE(DIE &Buffer, DIBasicType BTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 346 | |
| 347 | /// constructTypeDIE - Construct derived type die from DIDerivedType. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 348 | void constructTypeDIE(DIE &Buffer, DIDerivedType DTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 349 | |
| 350 | /// constructTypeDIE - Construct type DIE from DICompositeType. |
Eric Christopher | f0388b7 | 2013-10-04 23:49:29 +0000 | [diff] [blame] | 351 | void constructTypeDIE(DIE &Buffer, DICompositeType CTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 352 | |
| 353 | /// constructSubrangeDIE - Construct subrange DIE from DISubrange. |
| 354 | void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy); |
| 355 | |
| 356 | /// constructArrayTypeDIE - Construct array type DIE from DICompositeType. |
Eric Christopher | df9955d | 2013-11-11 18:52:31 +0000 | [diff] [blame] | 357 | void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 358 | |
| 359 | /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator. |
Eric Christopher | aeb105f | 2013-11-11 18:52:39 +0000 | [diff] [blame] | 360 | void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 361 | |
Manman Ren | 230ec86 | 2013-10-23 23:00:44 +0000 | [diff] [blame] | 362 | /// constructMemberDIE - Construct member DIE from DIDerivedType. |
| 363 | void constructMemberDIE(DIE &Buffer, DIDerivedType DT); |
Manman Ren | 7cc6270 | 2013-10-18 21:14:19 +0000 | [diff] [blame] | 364 | |
Manman Ren | ffc9a71 | 2013-10-23 23:05:28 +0000 | [diff] [blame] | 365 | /// constructTemplateTypeParameterDIE - Construct new DIE for the given |
| 366 | /// DITemplateTypeParameter. |
| 367 | void constructTemplateTypeParameterDIE(DIE &Buffer, |
| 368 | DITemplateTypeParameter TP); |
Manman Ren | 7cc6270 | 2013-10-18 21:14:19 +0000 | [diff] [blame] | 369 | |
Manman Ren | ffc9a71 | 2013-10-23 23:05:28 +0000 | [diff] [blame] | 370 | /// constructTemplateValueParameterDIE - Construct new DIE for the given |
| 371 | /// DITemplateValueParameter. |
| 372 | void constructTemplateValueParameterDIE(DIE &Buffer, |
| 373 | DITemplateValueParameter TVP); |
Devang Patel | f20c4f7 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 374 | |
Manman Ren | c6b6392 | 2013-10-14 20:33:57 +0000 | [diff] [blame] | 375 | /// getOrCreateStaticMemberDIE - Create new static data member DIE. |
| 376 | DIE *getOrCreateStaticMemberDIE(DIDerivedType DT); |
Eric Christopher | 4d23a4a | 2013-01-16 01:22:23 +0000 | [diff] [blame] | 377 | |
Eric Christopher | fa205ca | 2013-10-05 00:05:51 +0000 | [diff] [blame] | 378 | /// getLowerBoundDefault - Return the default lower bound for an array. If the |
| 379 | /// DWARF version doesn't handle the language, return -1. |
| 380 | int64_t getDefaultLowerBound() const; |
| 381 | |
| 382 | /// getDIEEntry - Returns the debug information entry for the specified |
| 383 | /// debug variable. |
| 384 | DIEEntry *getDIEEntry(const MDNode *N) const { |
| 385 | return MDNodeToDIEEntryMap.lookup(N); |
| 386 | } |
| 387 | |
| 388 | /// insertDIEEntry - Insert debug information entry into the map. |
| 389 | void insertDIEEntry(const MDNode *N, DIEEntry *E) { |
| 390 | MDNodeToDIEEntryMap.insert(std::make_pair(N, E)); |
| 391 | } |
| 392 | |
| 393 | // getIndexTyDie - Get an anonymous type for index type. |
| 394 | DIE *getIndexTyDie() { return IndexTyDie; } |
| 395 | |
| 396 | // setIndexTyDie - Set D as anonymous type for index which can be reused |
| 397 | // later. |
| 398 | void setIndexTyDie(DIE *D) { IndexTyDie = D; } |
| 399 | |
| 400 | /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug |
| 401 | /// information entry. |
| 402 | DIEEntry *createDIEEntry(DIE *Entry); |
David Blaikie | 684fc53 | 2013-05-06 23:33:07 +0000 | [diff] [blame] | 403 | |
Eric Christopher | 9e429ae | 2013-10-05 00:27:02 +0000 | [diff] [blame] | 404 | /// resolve - Look in the DwarfDebug map for the MDNode that |
Eric Christopher | 87b9c49 | 2013-10-05 00:32:34 +0000 | [diff] [blame] | 405 | /// corresponds to the reference. |
Eric Christopher | 9e429ae | 2013-10-05 00:27:02 +0000 | [diff] [blame] | 406 | template <typename T> T resolve(DIRef<T> Ref) const { |
| 407 | return DD->resolve(Ref); |
| 408 | } |
David Blaikie | 2ea848b | 2013-11-19 22:51:04 +0000 | [diff] [blame] | 409 | |
| 410 | /// If this is a named finished type then include it in the list of types for |
| 411 | /// the accelerator tables. |
| 412 | void updateAcceleratorTables(DIType Ty, const DIE *TyDIE); |
Devang Patel | 5eb4319 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 413 | }; |
| 414 | |
| 415 | } // end llvm namespace |
| 416 | #endif |