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