Devang Patel | 8b9df62 | 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" |
| 18 | #include "llvm/ADT/DenseMap.h" |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/OwningPtr.h" |
Chandler Carruth | a1514e2 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/StringMap.h" |
| 21 | #include "llvm/DebugInfo.h" |
David Blaikie | 95e72c9 | 2013-06-28 20:05:04 +0000 | [diff] [blame^] | 22 | #include "llvm/MC/MCExpr.h" |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 23 | |
| 24 | namespace llvm { |
| 25 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 26 | class DwarfDebug; |
Eric Christopher | 2e5d870 | 2012-12-20 21:58:36 +0000 | [diff] [blame] | 27 | class DwarfUnits; |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 28 | class MachineLocation; |
| 29 | class MachineOperand; |
| 30 | class ConstantInt; |
David Blaikie | 1426841 | 2013-01-20 01:18:01 +0000 | [diff] [blame] | 31 | class ConstantFP; |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 32 | class DbgVariable; |
| 33 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 34 | //===----------------------------------------------------------------------===// |
Eric Christopher | 33aa20f | 2011-11-07 09:18:32 +0000 | [diff] [blame] | 35 | /// CompileUnit - This dwarf writer support class manages information associated |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 36 | /// with a source file. |
| 37 | class CompileUnit { |
Eli Bendersky | d4a05e0 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 38 | /// UniqueID - a numeric ID unique among all CUs in the module |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 39 | /// |
Eli Bendersky | d4a05e0 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 40 | unsigned UniqueID; |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 41 | |
Eric Christopher | 438b092 | 2012-02-22 08:46:13 +0000 | [diff] [blame] | 42 | /// Language - The DW_AT_language of the compile unit |
| 43 | /// |
| 44 | unsigned Language; |
| 45 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 46 | /// Die - Compile unit debug information entry. |
| 47 | /// |
| 48 | const OwningPtr<DIE> CUDie; |
| 49 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 50 | /// Asm - Target of Dwarf emission. |
| 51 | AsmPrinter *Asm; |
| 52 | |
Eric Christopher | 2e5d870 | 2012-12-20 21:58:36 +0000 | [diff] [blame] | 53 | // Holders for some common dwarf information. |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 54 | DwarfDebug *DD; |
Eric Christopher | 2e5d870 | 2012-12-20 21:58:36 +0000 | [diff] [blame] | 55 | DwarfUnits *DU; |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 56 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 57 | /// IndexTyDie - An anonymous type for index type. Owned by CUDie. |
| 58 | DIE *IndexTyDie; |
| 59 | |
Eric Christopher | 1db3d08 | 2013-05-08 00:11:10 +0000 | [diff] [blame] | 60 | /// MDNodeToDieMap - Tracks the mapping of unit level debug information |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 61 | /// variables to debug information entries. |
| 62 | DenseMap<const MDNode *, DIE *> MDNodeToDieMap; |
| 63 | |
Eric Christopher | 1db3d08 | 2013-05-08 00:11:10 +0000 | [diff] [blame] | 64 | /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 65 | /// descriptors to debug information entries using a DIEEntry proxy. |
| 66 | DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap; |
| 67 | |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 68 | /// GlobalNames - A map of globally visible named entities for this unit. |
| 69 | /// |
| 70 | StringMap<DIE*> GlobalNames; |
| 71 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 72 | /// GlobalTypes - A map of globally visible types for this unit. |
| 73 | /// |
| 74 | StringMap<DIE*> GlobalTypes; |
| 75 | |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 76 | /// AccelNames - A map of names for the name accelerator table. |
| 77 | /// |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 78 | StringMap<std::vector<DIE*> > AccelNames; |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 79 | StringMap<std::vector<DIE*> > AccelObjC; |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 80 | StringMap<std::vector<DIE*> > AccelNamespace; |
Eric Christopher | c36145f | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 81 | StringMap<std::vector<std::pair<DIE*, unsigned> > > AccelTypes; |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 82 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 83 | /// DIEBlocks - A list of all the DIEBlocks in use. |
| 84 | std::vector<DIEBlock *> DIEBlocks; |
| 85 | |
Devang Patel | dbc64af | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 86 | /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that |
| 87 | /// need DW_AT_containing_type attribute. This attribute points to a DIE that |
| 88 | /// corresponds to the MDNode mapped with the subprogram DIE. |
| 89 | DenseMap<DIE *, const MDNode *> ContainingTypeMap; |
| 90 | |
Manman Ren | bc3e96f | 2013-03-12 18:27:15 +0000 | [diff] [blame] | 91 | /// Offset of the CUDie from beginning of debug info section. |
| 92 | unsigned DebugInfoOffset; |
| 93 | |
Bill Wendling | 6afe478 | 2012-12-06 07:55:19 +0000 | [diff] [blame] | 94 | /// getLowerBoundDefault - Return the default lower bound for an array. If the |
| 95 | /// DWARF version doesn't handle the language, return -1. |
| 96 | int64_t getDefaultLowerBound() const; |
Bill Wendling | 222c2fd | 2012-12-06 07:38:10 +0000 | [diff] [blame] | 97 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 98 | public: |
Eric Christopher | 9c57ad2 | 2013-05-08 00:58:51 +0000 | [diff] [blame] | 99 | CompileUnit(unsigned UID, unsigned L, DIE *D, const MDNode *N, AsmPrinter *A, |
Eric Christopher | f61dbc1 | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 100 | DwarfDebug *DW, DwarfUnits *DWU); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 101 | ~CompileUnit(); |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 102 | |
| 103 | // Accessors. |
Eli Bendersky | d4a05e0 | 2012-12-03 18:45:45 +0000 | [diff] [blame] | 104 | unsigned getUniqueID() const { return UniqueID; } |
Eric Christopher | 438b092 | 2012-02-22 08:46:13 +0000 | [diff] [blame] | 105 | unsigned getLanguage() const { return Language; } |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 106 | DIE* getCUDie() const { return CUDie.get(); } |
Manman Ren | bc3e96f | 2013-03-12 18:27:15 +0000 | [diff] [blame] | 107 | unsigned getDebugInfoOffset() const { return DebugInfoOffset; } |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 108 | const StringMap<DIE*> &getGlobalNames() const { return GlobalNames; } |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 109 | const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; } |
| 110 | |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 111 | const StringMap<std::vector<DIE*> > &getAccelNames() const { |
| 112 | return AccelNames; |
| 113 | } |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 114 | const StringMap<std::vector<DIE*> > &getAccelObjC() const { |
| 115 | return AccelObjC; |
| 116 | } |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 117 | const StringMap<std::vector<DIE*> > &getAccelNamespace() const { |
| 118 | return AccelNamespace; |
| 119 | } |
Eric Christopher | c36145f | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 120 | const StringMap<std::vector<std::pair<DIE*, unsigned > > > |
| 121 | &getAccelTypes() const { |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 122 | return AccelTypes; |
| 123 | } |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 124 | |
Manman Ren | bc3e96f | 2013-03-12 18:27:15 +0000 | [diff] [blame] | 125 | void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; } |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 126 | /// hasContent - Return true if this compile unit has something to write out. |
| 127 | /// |
| 128 | bool hasContent() const { return !CUDie->getChildren().empty(); } |
| 129 | |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 130 | /// addGlobalName - Add a new global entity to the compile unit. |
| 131 | /// |
| 132 | void addGlobalName(StringRef Name, DIE *Die) { GlobalNames[Name] = Die; } |
| 133 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 134 | /// addGlobalType - Add a new global type to the compile unit. |
| 135 | /// |
Devang Patel | c20bdf1 | 2011-06-01 00:23:24 +0000 | [diff] [blame] | 136 | void addGlobalType(DIType Ty); |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 137 | |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 138 | |
| 139 | /// addAccelName - Add a new name to the name accelerator table. |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 140 | void addAccelName(StringRef Name, DIE *Die) { |
| 141 | std::vector<DIE*> &DIEs = AccelNames[Name]; |
| 142 | DIEs.push_back(Die); |
| 143 | } |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 144 | void addAccelObjC(StringRef Name, DIE *Die) { |
| 145 | std::vector<DIE*> &DIEs = AccelObjC[Name]; |
| 146 | DIEs.push_back(Die); |
| 147 | } |
| 148 | void addAccelNamespace(StringRef Name, DIE *Die) { |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 149 | std::vector<DIE*> &DIEs = AccelNamespace[Name]; |
| 150 | DIEs.push_back(Die); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 151 | } |
Eric Christopher | c36145f | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 152 | void addAccelType(StringRef Name, std::pair<DIE *, unsigned> Die) { |
| 153 | std::vector<std::pair<DIE*, unsigned > > &DIEs = AccelTypes[Name]; |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 154 | DIEs.push_back(Die); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 155 | } |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 156 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 157 | /// getDIE - Returns the debug information entry map slot for the |
| 158 | /// specified debug variable. |
| 159 | DIE *getDIE(const MDNode *N) { return MDNodeToDieMap.lookup(N); } |
| 160 | |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 161 | DIEBlock *getDIEBlock() { |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 162 | return new (DIEValueAllocator) DIEBlock(); |
| 163 | } |
| 164 | |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 165 | /// insertDIE - Insert DIE into the map. |
| 166 | void insertDIE(const MDNode *N, DIE *D) { |
| 167 | MDNodeToDieMap.insert(std::make_pair(N, D)); |
| 168 | } |
| 169 | |
Jim Grosbach | 1585ce7 | 2011-05-20 21:35:39 +0000 | [diff] [blame] | 170 | /// getDIEEntry - Returns the debug information entry for the specified |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 171 | /// debug variable. |
| 172 | DIEEntry *getDIEEntry(const MDNode *N) { |
| 173 | DenseMap<const MDNode *, DIEEntry *>::iterator I = |
| 174 | MDNodeToDIEEntryMap.find(N); |
| 175 | if (I == MDNodeToDIEEntryMap.end()) |
| 176 | return NULL; |
| 177 | return I->second; |
| 178 | } |
| 179 | |
| 180 | /// insertDIEEntry - Insert debug information entry into the map. |
| 181 | void insertDIEEntry(const MDNode *N, DIEEntry *E) { |
| 182 | MDNodeToDIEEntryMap.insert(std::make_pair(N, E)); |
| 183 | } |
| 184 | |
| 185 | /// addDie - Adds or interns the DIE to the compile unit. |
| 186 | /// |
| 187 | void addDie(DIE *Buffer) { |
| 188 | this->CUDie->addChild(Buffer); |
| 189 | } |
| 190 | |
| 191 | // getIndexTyDie - Get an anonymous type for index type. |
| 192 | DIE *getIndexTyDie() { |
| 193 | return IndexTyDie; |
| 194 | } |
| 195 | |
| 196 | // setIndexTyDie - Set D as anonymous type for index which can be reused |
| 197 | // later. |
| 198 | void setIndexTyDie(DIE *D) { |
| 199 | IndexTyDie = D; |
| 200 | } |
| 201 | |
Eric Christopher | 873cf0a | 2012-08-24 01:14:27 +0000 | [diff] [blame] | 202 | /// addFlag - Add a flag that is true to the DIE. |
| 203 | void addFlag(DIE *Die, unsigned Attribute); |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 204 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 205 | /// addUInt - Add an unsigned integer attribute data and value. |
| 206 | /// |
| 207 | void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer); |
| 208 | |
| 209 | /// addSInt - Add an signed integer attribute data and value. |
| 210 | /// |
| 211 | void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer); |
| 212 | |
| 213 | /// addString - Add a string attribute data and value. |
| 214 | /// |
Nick Lewycky | 390c40d | 2011-10-27 06:44:11 +0000 | [diff] [blame] | 215 | void addString(DIE *Die, unsigned Attribute, const StringRef Str); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 216 | |
Eric Christopher | dd8e9f3 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 217 | /// addLocalString - Add a string attribute data and value. |
| 218 | /// |
| 219 | void addLocalString(DIE *Die, unsigned Attribute, const StringRef Str); |
| 220 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 221 | /// addLabel - Add a Dwarf label attribute data and value. |
| 222 | /// |
| 223 | void addLabel(DIE *Die, unsigned Attribute, unsigned Form, |
David Blaikie | 95e72c9 | 2013-06-28 20:05:04 +0000 | [diff] [blame^] | 224 | const MCSymbolRefExpr *Label); |
| 225 | void addLabel(DIE *Die, unsigned Attribute, unsigned Form, |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 226 | const MCSymbol *Label); |
| 227 | |
Eric Christopher | 72f7bfb | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 228 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 229 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 230 | /// |
| 231 | void addLabelAddress(DIE *Die, unsigned Attribute, MCSymbol *Label); |
| 232 | |
Eric Christopher | 0969ddf | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 233 | /// addOpAddress - Add a dwarf op address data and value using the |
| 234 | /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 235 | /// |
David Blaikie | 95e72c9 | 2013-06-28 20:05:04 +0000 | [diff] [blame^] | 236 | void addOpAddress(DIE *Die, const MCSymbol *Label); |
| 237 | void addOpAddress(DIE *Die, const MCSymbolRefExpr *Label); |
Eric Christopher | 0969ddf | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 238 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 239 | /// addDelta - Add a label delta attribute data and value. |
| 240 | /// |
| 241 | void addDelta(DIE *Die, unsigned Attribute, unsigned Form, |
| 242 | const MCSymbol *Hi, const MCSymbol *Lo); |
| 243 | |
| 244 | /// addDIEEntry - Add a DIE attribute data and value. |
| 245 | /// |
| 246 | void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry); |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 247 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 248 | /// addBlock - Add block data. |
| 249 | /// |
| 250 | void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block); |
| 251 | |
| 252 | /// addSourceLine - Add location information to specified debug information |
| 253 | /// entry. |
| 254 | void addSourceLine(DIE *Die, DIVariable V); |
| 255 | void addSourceLine(DIE *Die, DIGlobalVariable G); |
| 256 | void addSourceLine(DIE *Die, DISubprogram SP); |
| 257 | void addSourceLine(DIE *Die, DIType Ty); |
| 258 | void addSourceLine(DIE *Die, DINameSpace NS); |
Eric Christopher | b8ca988 | 2012-03-29 08:42:56 +0000 | [diff] [blame] | 259 | void addSourceLine(DIE *Die, DIObjCProperty Ty); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 260 | |
| 261 | /// addAddress - Add an address attribute to a die based on the location |
| 262 | /// provided. |
| 263 | void addAddress(DIE *Die, unsigned Attribute, |
David Blaikie | 4532c28 | 2013-06-20 00:25:24 +0000 | [diff] [blame] | 264 | const MachineLocation &Location, bool Indirect = false); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 265 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 266 | /// addConstantValue - Add constant value entry in variable DIE. |
Devang Patel | b58128e | 2011-05-27 16:45:18 +0000 | [diff] [blame] | 267 | bool addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty); |
Devang Patel | 8594d42 | 2011-06-24 20:46:11 +0000 | [diff] [blame] | 268 | bool addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned); |
David Blaikie | 1426841 | 2013-01-20 01:18:01 +0000 | [diff] [blame] | 269 | bool addConstantValue(DIE *Die, const APInt &Val, bool Unsigned); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 270 | |
| 271 | /// addConstantFPValue - Add constant value entry in variable DIE. |
| 272 | bool addConstantFPValue(DIE *Die, const MachineOperand &MO); |
David Blaikie | 1426841 | 2013-01-20 01:18:01 +0000 | [diff] [blame] | 273 | bool addConstantFPValue(DIE *Die, const ConstantFP *CFP); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 274 | |
| 275 | /// addTemplateParams - Add template parameters in buffer. |
| 276 | void addTemplateParams(DIE &Buffer, DIArray TParams); |
| 277 | |
Devang Patel | 116da2f | 2011-04-26 19:06:18 +0000 | [diff] [blame] | 278 | /// addRegisterOp - Add register operand. |
| 279 | void addRegisterOp(DIE *TheDie, unsigned Reg); |
| 280 | |
| 281 | /// addRegisterOffset - Add register offset. |
| 282 | void addRegisterOffset(DIE *TheDie, unsigned Reg, int64_t Offset); |
| 283 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 284 | /// addComplexAddress - Start with the address based on the location provided, |
| 285 | /// and generate the DWARF information necessary to find the actual variable |
| 286 | /// (navigating the extra location information encoded in the type) based on |
| 287 | /// the starting location. Add the DWARF information to the die. |
| 288 | /// |
Eric Christopher | f61dbc1 | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 289 | void addComplexAddress(const DbgVariable &DV, DIE *Die, unsigned Attribute, |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 290 | const MachineLocation &Location); |
| 291 | |
| 292 | // FIXME: Should be reformulated in terms of addComplexAddress. |
| 293 | /// addBlockByrefAddress - Start with the address based on the location |
| 294 | /// provided, and generate the DWARF information necessary to find the |
| 295 | /// actual Block variable (navigating the Block struct) based on the |
| 296 | /// starting location. Add the DWARF information to the die. Obsolete, |
| 297 | /// please use addComplexAddress instead. |
| 298 | /// |
Eric Christopher | f61dbc1 | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 299 | void addBlockByrefAddress(const DbgVariable &DV, DIE *Die, unsigned Attribute, |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 300 | const MachineLocation &Location); |
| 301 | |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 302 | /// addVariableAddress - Add DW_AT_location attribute for a |
Devang Patel | e1cdf84 | 2011-04-27 22:45:24 +0000 | [diff] [blame] | 303 | /// DbgVariable based on provided MachineLocation. |
Eric Christopher | f61dbc1 | 2013-06-24 21:07:27 +0000 | [diff] [blame] | 304 | void addVariableAddress(const DbgVariable &DV, DIE *Die, |
| 305 | MachineLocation Location); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 306 | |
| 307 | /// addToContextOwner - Add Die into the list of its context owner's children. |
| 308 | void addToContextOwner(DIE *Die, DIDescriptor Context); |
| 309 | |
Eric Christopher | 663e0cf | 2012-03-28 07:34:31 +0000 | [diff] [blame] | 310 | /// addType - Add a new type attribute to the specified entity. This takes |
| 311 | /// and attribute parameter because DW_AT_friend attributes are also |
| 312 | /// type references. |
| 313 | void addType(DIE *Entity, DIType Ty, unsigned Attribute = dwarf::DW_AT_type); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 314 | |
| 315 | /// getOrCreateNameSpace - Create a DIE for DINameSpace. |
| 316 | DIE *getOrCreateNameSpace(DINameSpace NS); |
| 317 | |
Devang Patel | dbc64af | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 318 | /// getOrCreateSubprogramDIE - Create new DIE using SP. |
| 319 | DIE *getOrCreateSubprogramDIE(DISubprogram SP); |
| 320 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 321 | /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the |
| 322 | /// given DIType. |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 323 | DIE *getOrCreateTypeDIE(const MDNode *N); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 324 | |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 325 | /// getOrCreateTemplateTypeParameterDIE - Find existing DIE or create new DIE |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 326 | /// for the given DITemplateTypeParameter. |
| 327 | DIE *getOrCreateTemplateTypeParameterDIE(DITemplateTypeParameter TP); |
| 328 | |
Eric Christopher | 4984e01 | 2012-09-10 23:34:03 +0000 | [diff] [blame] | 329 | /// getOrCreateTemplateValueParameterDIE - Find existing DIE or create |
| 330 | /// new DIE for the given DITemplateValueParameter. |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 331 | DIE *getOrCreateTemplateValueParameterDIE(DITemplateValueParameter TVP); |
| 332 | |
| 333 | /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug |
| 334 | /// information entry. |
| 335 | DIEEntry *createDIEEntry(DIE *Entry); |
| 336 | |
Devang Patel | 6f9d8ff | 2011-08-15 17:57:41 +0000 | [diff] [blame] | 337 | /// createGlobalVariableDIE - create global variable DIE. |
| 338 | void createGlobalVariableDIE(const MDNode *N); |
| 339 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 340 | void addPubTypes(DISubprogram SP); |
| 341 | |
| 342 | /// constructTypeDIE - Construct basic type die from DIBasicType. |
| 343 | void constructTypeDIE(DIE &Buffer, |
| 344 | DIBasicType BTy); |
| 345 | |
| 346 | /// constructTypeDIE - Construct derived type die from DIDerivedType. |
| 347 | void constructTypeDIE(DIE &Buffer, |
| 348 | DIDerivedType DTy); |
| 349 | |
| 350 | /// constructTypeDIE - Construct type DIE from DICompositeType. |
| 351 | void constructTypeDIE(DIE &Buffer, |
| 352 | DICompositeType CTy); |
| 353 | |
| 354 | /// constructSubrangeDIE - Construct subrange DIE from DISubrange. |
| 355 | void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy); |
| 356 | |
| 357 | /// constructArrayTypeDIE - Construct array type DIE from DICompositeType. |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 358 | void constructArrayTypeDIE(DIE &Buffer, |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 359 | DICompositeType *CTy); |
| 360 | |
| 361 | /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator. |
| 362 | DIE *constructEnumTypeDIE(DIEnumerator ETy); |
| 363 | |
Devang Patel | dbc64af | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 364 | /// constructContainingTypeDIEs - Construct DIEs for types that contain |
| 365 | /// vtables. |
| 366 | void constructContainingTypeDIEs(); |
| 367 | |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 368 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
| 369 | DIE *constructVariableDIE(DbgVariable *DV, bool isScopeAbstract); |
| 370 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 371 | /// createMemberDIE - Create new member DIE. |
| 372 | DIE *createMemberDIE(DIDerivedType DT); |
| 373 | |
Eric Christopher | 6b6061f | 2013-01-16 01:22:23 +0000 | [diff] [blame] | 374 | /// createStaticMemberDIE - Create new static data member DIE. |
| 375 | DIE *createStaticMemberDIE(DIDerivedType DT); |
| 376 | |
David Blaikie | d2e0f7e | 2013-05-06 23:33:07 +0000 | [diff] [blame] | 377 | /// getOrCreateContextDIE - Get context owner's DIE. |
| 378 | DIE *getOrCreateContextDIE(DIDescriptor Context); |
| 379 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 380 | private: |
| 381 | |
| 382 | // DIEValueAllocator - All DIEValues are allocated through this allocator. |
| 383 | BumpPtrAllocator DIEValueAllocator; |
| 384 | DIEInteger *DIEIntegerOne; |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 385 | }; |
| 386 | |
| 387 | } // end llvm namespace |
| 388 | #endif |