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