Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/DwarfDebug.h - Dwarf Debug Framework ------*- 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 debug info into asm files. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef CODEGEN_ASMPRINTER_DWARFDEBUG_H__ |
| 15 | #define CODEGEN_ASMPRINTER_DWARFDEBUG_H__ |
| 16 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/AsmPrinter.h" |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 18 | #include "llvm/CodeGen/LexicalScopes.h" |
Evan Cheng | 2d28617 | 2011-07-18 22:29:13 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MachineLocation.h" |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/DebugInfo.h" |
Chris Lattner | d2c4f19 | 2010-04-05 06:12:01 +0000 | [diff] [blame] | 21 | #include "DIE.h" |
Devang Patel | 622b026 | 2010-01-19 06:19:05 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/DenseMap.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/FoldingSet.h" |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallPtrSet.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/StringMap.h" |
| 26 | #include "llvm/ADT/UniqueVector.h" |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Allocator.h" |
Benjamin Kramer | 12ea765 | 2010-09-13 20:04:49 +0000 | [diff] [blame] | 28 | #include "llvm/Support/DebugLoc.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 29 | |
| 30 | namespace llvm { |
| 31 | |
| 32 | class CompileUnit; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 33 | class DbgConcreteScope; |
Nick Lewycky | 381afae | 2009-11-17 09:17:08 +0000 | [diff] [blame] | 34 | class DbgVariable; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 35 | class MachineFrameInfo; |
| 36 | class MachineModuleInfo; |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 37 | class MachineOperand; |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 38 | class MCAsmInfo; |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 39 | class DIEAbbrev; |
| 40 | class DIE; |
| 41 | class DIEBlock; |
| 42 | class DIEEntry; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 43 | |
| 44 | //===----------------------------------------------------------------------===// |
| 45 | /// SrcLineInfo - This class is used to record source line correspondence. |
| 46 | /// |
Nick Lewycky | 381afae | 2009-11-17 09:17:08 +0000 | [diff] [blame] | 47 | class SrcLineInfo { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 48 | unsigned Line; // Source line number. |
| 49 | unsigned Column; // Source column. |
| 50 | unsigned SourceID; // Source ID number. |
Chris Lattner | 25b68c6 | 2010-03-14 08:15:55 +0000 | [diff] [blame] | 51 | MCSymbol *Label; // Label in code ID number. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 52 | public: |
Chris Lattner | 25b68c6 | 2010-03-14 08:15:55 +0000 | [diff] [blame] | 53 | SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label) |
| 54 | : Line(L), Column(C), SourceID(S), Label(label) {} |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 55 | |
| 56 | // Accessors |
| 57 | unsigned getLine() const { return Line; } |
| 58 | unsigned getColumn() const { return Column; } |
| 59 | unsigned getSourceID() const { return SourceID; } |
Chris Lattner | 25b68c6 | 2010-03-14 08:15:55 +0000 | [diff] [blame] | 60 | MCSymbol *getLabel() const { return Label; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 63 | /// DotDebugLocEntry - This struct describes location entries emitted in |
| 64 | /// .debug_loc section. |
| 65 | typedef struct DotDebugLocEntry { |
| 66 | const MCSymbol *Begin; |
| 67 | const MCSymbol *End; |
| 68 | MachineLocation Loc; |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 69 | const MDNode *Variable; |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 70 | bool Merged; |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 71 | bool Constant; |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 72 | enum EntryType { |
| 73 | E_Location, |
| 74 | E_Integer, |
| 75 | E_ConstantFP, |
| 76 | E_ConstantInt |
| 77 | }; |
| 78 | enum EntryType EntryKind; |
| 79 | |
| 80 | union { |
| 81 | int64_t Int; |
| 82 | const ConstantFP *CFP; |
| 83 | const ConstantInt *CIP; |
| 84 | } Constants; |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 85 | DotDebugLocEntry() |
| 86 | : Begin(0), End(0), Variable(0), Merged(false), |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 87 | Constant(false) { Constants.Int = 0;} |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 88 | DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L, |
| 89 | const MDNode *V) |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 90 | : Begin(B), End(E), Loc(L), Variable(V), Merged(false), |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 91 | Constant(false) { Constants.Int = 0; EntryKind = E_Location; } |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 92 | DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i) |
| 93 | : Begin(B), End(E), Variable(0), Merged(false), |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 94 | Constant(true) { Constants.Int = i; EntryKind = E_Integer; } |
| 95 | DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr) |
| 96 | : Begin(B), End(E), Variable(0), Merged(false), |
| 97 | Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; } |
| 98 | DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr) |
| 99 | : Begin(B), End(E), Variable(0), Merged(false), |
| 100 | Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; } |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 101 | |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 102 | /// Empty entries are also used as a trigger to emit temp label. Such |
| 103 | /// labels are referenced is used to find debug_loc offset for a given DIE. |
| 104 | bool isEmpty() { return Begin == 0 && End == 0; } |
| 105 | bool isMerged() { return Merged; } |
| 106 | void Merge(DotDebugLocEntry *Next) { |
| 107 | if (!(Begin && Loc == Next->Loc && End == Next->Begin)) |
| 108 | return; |
| 109 | Next->Begin = Begin; |
| 110 | Merged = true; |
| 111 | } |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 112 | bool isLocation() const { return EntryKind == E_Location; } |
| 113 | bool isInt() const { return EntryKind == E_Integer; } |
| 114 | bool isConstantFP() const { return EntryKind == E_ConstantFP; } |
| 115 | bool isConstantInt() const { return EntryKind == E_ConstantInt; } |
| 116 | int64_t getInt() { return Constants.Int; } |
| 117 | const ConstantFP *getConstantFP() { return Constants.CFP; } |
| 118 | const ConstantInt *getConstantInt() { return Constants.CIP; } |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 119 | } DotDebugLocEntry; |
| 120 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 121 | //===----------------------------------------------------------------------===// |
| 122 | /// DbgVariable - This class is used to track local variable information. |
| 123 | /// |
| 124 | class DbgVariable { |
| 125 | DIVariable Var; // Variable Descriptor. |
| 126 | DIE *TheDIE; // Variable DIE. |
| 127 | unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries. |
| 128 | public: |
| 129 | // AbsVar may be NULL. |
| 130 | DbgVariable(DIVariable V) : Var(V), TheDIE(0), DotDebugLocOffset(~0U) {} |
| 131 | |
| 132 | // Accessors. |
| 133 | DIVariable getVariable() const { return Var; } |
| 134 | void setDIE(DIE *D) { TheDIE = D; } |
| 135 | DIE *getDIE() const { return TheDIE; } |
| 136 | void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; } |
| 137 | unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; } |
| 138 | StringRef getName() const { return Var.getName(); } |
| 139 | unsigned getTag() const { return Var.getTag(); } |
| 140 | bool variableHasComplexAddress() const { |
| 141 | assert(Var.Verify() && "Invalid complex DbgVariable!"); |
| 142 | return Var.hasComplexAddress(); |
| 143 | } |
| 144 | bool isBlockByrefVariable() const { |
| 145 | assert(Var.Verify() && "Invalid complex DbgVariable!"); |
| 146 | return Var.isBlockByrefVariable(); |
| 147 | } |
| 148 | unsigned getNumAddrElements() const { |
| 149 | assert(Var.Verify() && "Invalid complex DbgVariable!"); |
| 150 | return Var.getNumAddrElements(); |
| 151 | } |
| 152 | uint64_t getAddrElement(unsigned i) const { |
| 153 | return Var.getAddrElement(i); |
| 154 | } |
| 155 | DIType getType() const; |
| 156 | }; |
| 157 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 158 | class DwarfDebug { |
| 159 | /// Asm - Target of Dwarf emission. |
| 160 | AsmPrinter *Asm; |
Chris Lattner | 105d697 | 2010-04-05 05:31:04 +0000 | [diff] [blame] | 161 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 162 | /// MMI - Collected machine module information. |
| 163 | MachineModuleInfo *MMI; |
| 164 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 165 | //===--------------------------------------------------------------------===// |
| 166 | // Attributes used to construct specific Dwarf sections. |
| 167 | // |
| 168 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 169 | CompileUnit *FirstCU; |
| 170 | DenseMap <const MDNode *, CompileUnit *> CUMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 171 | |
| 172 | /// AbbreviationsSet - Used to uniquely define abbreviations. |
| 173 | /// |
| 174 | FoldingSet<DIEAbbrev> AbbreviationsSet; |
| 175 | |
| 176 | /// Abbreviations - A list of all the unique abbreviations in use. |
| 177 | /// |
| 178 | std::vector<DIEAbbrev *> Abbreviations; |
| 179 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 180 | /// SourceIdMap - Source id map, i.e. pair of directory id and source file |
| 181 | /// id mapped to a unique id. |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 182 | StringMap<unsigned> SourceIdMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 183 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 184 | /// StringPool - A String->Symbol mapping of strings used by indirect |
| 185 | /// references. |
| 186 | StringMap<std::pair<MCSymbol*, unsigned> > StringPool; |
| 187 | unsigned NextStringPoolNumber; |
| 188 | |
| 189 | MCSymbol *getStringPoolEntry(StringRef Str); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 190 | |
| 191 | /// SectionMap - Provides a unique id per text section. |
| 192 | /// |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 193 | UniqueVector<const MCSection*> SectionMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 194 | |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 195 | /// CurrentFnArguments - List of Arguments (DbgValues) for current function. |
| 196 | SmallVector<DbgVariable *, 8> CurrentFnArguments; |
| 197 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 198 | LexicalScopes LScopes; |
Devang Patel | 2ddefec | 2010-03-25 15:09:44 +0000 | [diff] [blame] | 199 | |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 200 | /// AbstractSPDies - Collection of abstract subprogram DIEs. |
| 201 | DenseMap<const MDNode *, DIE *> AbstractSPDies; |
| 202 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 203 | /// ScopeVariables - Collection of dbg variables of a scope. |
| 204 | DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 205 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 206 | /// AbstractVariables - Collection on abstract variables. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 207 | DenseMap<const MDNode *, DbgVariable *> AbstractVariables; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 208 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 209 | /// DbgVariableToFrameIndexMap - Tracks frame index used to find |
| 210 | /// variable's value. |
| 211 | DenseMap<const DbgVariable *, int> DbgVariableToFrameIndexMap; |
| 212 | |
| 213 | /// DbgVariableToDbgInstMap - Maps DbgVariable to corresponding DBG_VALUE |
| 214 | /// machine instruction. |
| 215 | DenseMap<const DbgVariable *, const MachineInstr *> DbgVariableToDbgInstMap; |
| 216 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 217 | /// DotDebugLocEntries - Collection of DotDebugLocEntry. |
| 218 | SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries; |
| 219 | |
| 220 | /// UseDotDebugLocEntry - DW_AT_location attributes for the DIEs in this set |
| 221 | /// idetifies corresponding .debug_loc entry offset. |
| 222 | SmallPtrSet<const DIE *, 4> UseDotDebugLocEntry; |
| 223 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 224 | /// VarToAbstractVarMap - Maps DbgVariable with corresponding Abstract |
| 225 | /// DbgVariable, if any. |
| 226 | DenseMap<const DbgVariable *, const DbgVariable *> VarToAbstractVarMap; |
| 227 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 228 | /// InliendSubprogramDIEs - Collection of subprgram DIEs that are marked |
| 229 | /// (at the end of the module) as DW_AT_inline. |
| 230 | SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs; |
| 231 | |
Devang Patel | f8a2e01 | 2010-04-15 00:02:49 +0000 | [diff] [blame] | 232 | /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that |
| 233 | /// need DW_AT_containing_type attribute. This attribute points to a DIE that |
| 234 | /// corresponds to the MDNode mapped with the subprogram DIE. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 235 | DenseMap<DIE *, const MDNode *> ContainingTypeMap; |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 236 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 237 | /// InlineInfo - Keep track of inlined functions and their location. This |
| 238 | /// information is used to populate debug_inlined section. |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 239 | typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels; |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 240 | DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo; |
| 241 | SmallVector<const MDNode *, 4> InlinedSPNodes; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 242 | |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 243 | // ProcessedSPNodes - This is a collection of subprogram MDNodes that |
| 244 | // are processed to create DIEs. |
| 245 | SmallPtrSet<const MDNode *, 16> ProcessedSPNodes; |
| 246 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 247 | /// LabelsBeforeInsn - Maps instruction with label emitted before |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 248 | /// instruction. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 249 | DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn; |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 250 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 251 | /// LabelsAfterInsn - Maps instruction with label emitted after |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 252 | /// instruction. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 253 | DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn; |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 254 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 255 | /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction |
| 256 | /// in order of appearance. |
| 257 | SmallVector<const MDNode*, 8> UserVariables; |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 258 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 259 | /// DbgValues - For each user variable, keep a list of DBG_VALUE |
| 260 | /// instructions in order. The list can also contain normal instructions that |
| 261 | /// clobber the previous DBG_VALUE. |
| 262 | typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> > |
| 263 | DbgValueHistoryMap; |
| 264 | DbgValueHistoryMap DbgValues; |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 265 | |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 266 | SmallVector<const MCSymbol *, 8> DebugRangeSymbols; |
Devang Patel | c04d545 | 2010-04-22 20:56:35 +0000 | [diff] [blame] | 267 | |
Devang Patel | 553881b | 2010-03-29 17:20:31 +0000 | [diff] [blame] | 268 | /// Previous instruction's location information. This is used to determine |
| 269 | /// label location to indicate scope boundries in dwarf debug info. |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 270 | DebugLoc PrevInstLoc; |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 271 | MCSymbol *PrevLabel; |
Devang Patel | 553881b | 2010-03-29 17:20:31 +0000 | [diff] [blame] | 272 | |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 273 | /// PrologEndLoc - This location indicates end of function prologue and |
| 274 | /// beginning of function body. |
| 275 | DebugLoc PrologEndLoc; |
| 276 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 277 | struct FunctionDebugFrameInfo { |
| 278 | unsigned Number; |
| 279 | std::vector<MachineMove> Moves; |
| 280 | |
| 281 | FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M) |
| 282 | : Number(Num), Moves(M) {} |
| 283 | }; |
| 284 | |
| 285 | std::vector<FunctionDebugFrameInfo> DebugFrames; |
| 286 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 287 | // DIEValueAllocator - All DIEValues are allocated through this allocator. |
| 288 | BumpPtrAllocator DIEValueAllocator; |
| 289 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 290 | // Section Symbols: these are assembler temporary labels that are emitted at |
| 291 | // the beginning of each supported dwarf section. These are used to form |
| 292 | // section offsets and are created by EmitSectionLabels. |
Rafael Espindola | f2b0423 | 2011-05-06 14:56:22 +0000 | [diff] [blame] | 293 | MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym; |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 294 | MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 295 | MCSymbol *DwarfDebugLocSectionSym; |
| 296 | MCSymbol *FunctionBeginSym, *FunctionEndSym; |
Devang Patel | ca76f6f | 2010-07-08 20:10:35 +0000 | [diff] [blame] | 297 | |
Devang Patel | e62dfcf | 2011-03-31 16:53:49 +0000 | [diff] [blame] | 298 | private: |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 299 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 300 | /// assignAbbrevNumber - Define a unique number for the abbreviation. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 301 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 302 | void assignAbbrevNumber(DIEAbbrev &Abbrev); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 303 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 304 | void addScopeVariable(LexicalScope *LS, DbgVariable *Var); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 305 | |
| 306 | /// findAbstractVariable - Find abstract variable associated with Var. |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 307 | DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 308 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 309 | /// updateSubprogramScopeDIE - Find DIE for the given subprogram and |
| 310 | /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes. |
| 311 | /// If there are global variables in this scope then create and insert |
| 312 | /// DIEs for these variables. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 313 | DIE *updateSubprogramScopeDIE(const MDNode *SPNode); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 314 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 315 | /// constructLexicalScope - Construct new DW_TAG_lexical_block |
| 316 | /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 317 | DIE *constructLexicalScopeDIE(LexicalScope *Scope); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 318 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 319 | /// constructInlinedScopeDIE - This scope represents inlined body of |
| 320 | /// a function. Construct DIE to represent this concrete inlined copy |
| 321 | /// of the function. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 322 | DIE *constructInlinedScopeDIE(LexicalScope *Scope); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 323 | |
| 324 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 325 | DIE *constructVariableDIE(DbgVariable *DV, LexicalScope *S); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 326 | |
| 327 | /// constructScopeDIE - Construct a DIE for this scope. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 328 | DIE *constructScopeDIE(LexicalScope *Scope); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 329 | |
Chris Lattner | fa070b0 | 2010-04-04 22:33:59 +0000 | [diff] [blame] | 330 | /// EmitSectionLabels - Emit initial Dwarf sections with a label at |
| 331 | /// the start of each one. |
| 332 | void EmitSectionLabels(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 333 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 334 | /// emitDIE - Recusively Emits a debug information entry. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 335 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 336 | void emitDIE(DIE *Die); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 337 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 338 | /// computeSizeAndOffset - Compute the size and offset of a DIE. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 339 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 340 | unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 341 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 342 | /// computeSizeAndOffsets - Compute the size and offset of all the DIEs. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 343 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 344 | void computeSizeAndOffsets(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 345 | |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 346 | /// EmitDebugInfo - Emit the debug info section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 347 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 348 | void emitDebugInfo(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 349 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 350 | /// emitAbbreviations - Emit the abbreviation section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 351 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 352 | void emitAbbreviations() const; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 353 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 354 | /// emitEndOfLineMatrix - Emit the last address of the section and the end of |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 355 | /// the line matrix. |
| 356 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 357 | void emitEndOfLineMatrix(unsigned SectionEnd); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 358 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 359 | /// emitDebugPubNames - Emit visible names into a debug pubnames section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 360 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 361 | void emitDebugPubNames(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 362 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 363 | /// emitDebugPubTypes - Emit visible types into a debug pubtypes section. |
| 364 | /// |
| 365 | void emitDebugPubTypes(); |
| 366 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 367 | /// emitDebugStr - Emit visible names into a debug str section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 368 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 369 | void emitDebugStr(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 370 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 371 | /// emitDebugLoc - Emit visible names into a debug loc section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 372 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 373 | void emitDebugLoc(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 374 | |
| 375 | /// EmitDebugARanges - Emit visible names into a debug aranges section. |
| 376 | /// |
| 377 | void EmitDebugARanges(); |
| 378 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 379 | /// emitDebugRanges - Emit visible names into a debug ranges section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 380 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 381 | void emitDebugRanges(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 382 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 383 | /// emitDebugMacInfo - Emit visible names into a debug macinfo section. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 384 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 385 | void emitDebugMacInfo(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 386 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 387 | /// emitDebugInlineInfo - Emit inline info using following format. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 388 | /// Section Header: |
| 389 | /// 1. length of section |
| 390 | /// 2. Dwarf version number |
| 391 | /// 3. address size. |
| 392 | /// |
| 393 | /// Entries (one "entry" for each function that was inlined): |
| 394 | /// |
| 395 | /// 1. offset into __debug_str section for MIPS linkage name, if exists; |
| 396 | /// otherwise offset into __debug_str for regular function name. |
| 397 | /// 2. offset into __debug_str section for regular function name. |
| 398 | /// 3. an unsigned LEB128 number indicating the number of distinct inlining |
| 399 | /// instances for the function. |
| 400 | /// |
| 401 | /// The rest of the entry consists of a {die_offset, low_pc} pair for each |
| 402 | /// inlined instance; the die_offset points to the inlined_subroutine die in |
| 403 | /// the __debug_info section, and the low_pc is the starting address for the |
| 404 | /// inlining instance. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 405 | void emitDebugInlineInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 406 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 407 | /// constructCompileUnit - Create new CompileUnit for the given |
| 408 | /// metadata node with tag DW_TAG_compile_unit. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 409 | void constructCompileUnit(const MDNode *N); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 410 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 411 | /// getCompielUnit - Get CompileUnit DIE. |
| 412 | CompileUnit *getCompileUnit(const MDNode *N) const; |
| 413 | |
| 414 | /// constructGlobalVariableDIE - Construct global variable DIE. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 415 | void constructGlobalVariableDIE(const MDNode *N); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 416 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 417 | /// construct SubprogramDIE - Construct subprogram DIE. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 418 | void constructSubprogramDIE(const MDNode *N); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 419 | |
Chris Lattner | 2b1b331 | 2010-04-05 05:32:45 +0000 | [diff] [blame] | 420 | /// recordSourceLine - Register a source line with debug info. Returns the |
| 421 | /// unique label that was emitted and which provides correspondence to |
| 422 | /// the source line list. |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 423 | void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope, |
| 424 | unsigned Flags); |
Chris Lattner | 2b1b331 | 2010-04-05 05:32:45 +0000 | [diff] [blame] | 425 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 426 | /// recordVariableFrameIndex - Record a variable's index. |
| 427 | void recordVariableFrameIndex(const DbgVariable *V, int Index); |
| 428 | |
| 429 | /// findVariableFrameIndex - Return true if frame index for the variable |
| 430 | /// is found. Update FI to hold value of the index. |
| 431 | bool findVariableFrameIndex(const DbgVariable *V, int *FI); |
| 432 | |
Devang Patel | e37b0c6 | 2010-04-08 18:43:56 +0000 | [diff] [blame] | 433 | /// identifyScopeMarkers() - Indentify instructions that are marking |
| 434 | /// beginning of or end of a scope. |
| 435 | void identifyScopeMarkers(); |
Devang Patel | 6122a4d | 2010-04-08 15:37:09 +0000 | [diff] [blame] | 436 | |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 437 | /// addCurrentFnArgument - If Var is an current function argument that add |
| 438 | /// it in CurrentFnArguments list. |
| 439 | bool addCurrentFnArgument(const MachineFunction *MF, |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 440 | DbgVariable *Var, LexicalScope *Scope); |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 441 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame^] | 442 | /// collectVariableInfo - Populate LexicalScope entries with variables' info. |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 443 | void collectVariableInfo(const MachineFunction *, |
| 444 | SmallPtrSet<const MDNode *, 16> &ProcessedVars); |
Chris Lattner | 2b1b331 | 2010-04-05 05:32:45 +0000 | [diff] [blame] | 445 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 446 | /// collectVariableInfoFromMMITable - Collect variable information from |
| 447 | /// side table maintained by MMI. |
| 448 | void collectVariableInfoFromMMITable(const MachineFunction * MF, |
| 449 | SmallPtrSet<const MDNode *, 16> &P); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 450 | |
| 451 | /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI. |
| 452 | void requestLabelBeforeInsn(const MachineInstr *MI) { |
| 453 | LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0)); |
| 454 | } |
| 455 | |
| 456 | /// getLabelBeforeInsn - Return Label preceding the instruction. |
| 457 | const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI); |
| 458 | |
| 459 | /// requestLabelAfterInsn - Ensure that a label will be emitted after MI. |
| 460 | void requestLabelAfterInsn(const MachineInstr *MI) { |
| 461 | LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0)); |
| 462 | } |
| 463 | |
| 464 | /// getLabelAfterInsn - Return Label immediately following the instruction. |
| 465 | const MCSymbol *getLabelAfterInsn(const MachineInstr *MI); |
| 466 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 467 | public: |
| 468 | //===--------------------------------------------------------------------===// |
| 469 | // Main entry points. |
| 470 | // |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 471 | DwarfDebug(AsmPrinter *A, Module *M); |
Chris Lattner | 2b1b331 | 2010-04-05 05:32:45 +0000 | [diff] [blame] | 472 | ~DwarfDebug(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 473 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 474 | /// beginModule - Emit all Dwarf sections that should come prior to the |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 475 | /// content. |
Chris Lattner | 75f5072 | 2010-04-04 07:48:20 +0000 | [diff] [blame] | 476 | void beginModule(Module *M); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 477 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 478 | /// endModule - Emit all Dwarf sections that should come after the content. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 479 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 480 | void endModule(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 481 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 482 | /// beginFunction - Gather pre-function debug information. Assumes being |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 483 | /// emitted immediately after the function entry point. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 484 | void beginFunction(const MachineFunction *MF); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 485 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 486 | /// endFunction - Gather and emit post-function debug information. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 487 | /// |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 488 | void endFunction(const MachineFunction *MF); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 489 | |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 490 | /// beginInstruction - Process beginning of an instruction. |
| 491 | void beginInstruction(const MachineInstr *MI); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 492 | |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 493 | /// endInstruction - Prcess end of an instruction. |
| 494 | void endInstruction(const MachineInstr *MI); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 495 | |
| 496 | /// GetOrCreateSourceID - Look up the source id with the given directory and |
| 497 | /// source file names. If none currently exists, create a new id and insert it |
| 498 | /// in the SourceIds map. |
| 499 | unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName); |
| 500 | |
| 501 | /// createSubprogramDIE - Create new DIE using SP. |
| 502 | DIE *createSubprogramDIE(DISubprogram SP); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 503 | }; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 504 | } // End of namespace llvm |
| 505 | |
| 506 | #endif |