Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===// |
| 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 | //===----------------------------------------------------------------------===// |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 13 | #define DEBUG_TYPE "dwarfdebug" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 14 | #include "DwarfDebug.h" |
| 15 | #include "llvm/Module.h" |
David Greene | b2c66fc | 2009-08-19 21:52:55 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineFunction.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCSection.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCStreamer.h" |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCAsmInfo.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetData.h" |
| 22 | #include "llvm/Target/TargetFrameInfo.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetLoweringObjectFile.h" |
| 24 | #include "llvm/Target/TargetRegisterInfo.h" |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/StringExtras.h" |
Daniel Dunbar | 6e4bdfc | 2009-10-13 06:47:08 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Debug.h" |
| 27 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | 334fd1f | 2009-09-16 00:08:41 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Mangler.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Timer.h" |
| 30 | #include "llvm/System/Path.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 31 | using namespace llvm; |
| 32 | |
| 33 | static TimerGroup &getDwarfTimerGroup() { |
| 34 | static TimerGroup DwarfTimerGroup("Dwarf Debugging"); |
| 35 | return DwarfTimerGroup; |
| 36 | } |
| 37 | |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
| 40 | /// Configuration values for initial hash set sizes (log2). |
| 41 | /// |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 42 | static const unsigned InitAbbreviationsSetSize = 9; // log2(512) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 43 | |
| 44 | namespace llvm { |
| 45 | |
| 46 | //===----------------------------------------------------------------------===// |
| 47 | /// CompileUnit - This dwarf writer support class manages information associate |
| 48 | /// with a source file. |
Nick Lewycky | 5f9843f | 2009-11-17 08:11:44 +0000 | [diff] [blame] | 49 | class CompileUnit { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 50 | /// ID - File identifier for source. |
| 51 | /// |
| 52 | unsigned ID; |
| 53 | |
| 54 | /// Die - Compile unit debug information entry. |
| 55 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 56 | DIE *CUDie; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 57 | |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 58 | /// IndexTyDie - An anonymous type for index type. |
| 59 | DIE *IndexTyDie; |
| 60 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 61 | /// GVToDieMap - Tracks the mapping of unit level debug informaton |
| 62 | /// variables to debug information entries. |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 63 | /// FIXME : Rename GVToDieMap -> NodeToDieMap |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 64 | ValueMap<MDNode *, DIE *> GVToDieMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 65 | |
| 66 | /// GVToDIEEntryMap - Tracks the mapping of unit level debug informaton |
| 67 | /// descriptors to debug information entries using a DIEEntry proxy. |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 68 | /// FIXME : Rename |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 69 | ValueMap<MDNode *, DIEEntry *> GVToDIEEntryMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 70 | |
| 71 | /// Globals - A map of globally visible named entities for this unit. |
| 72 | /// |
| 73 | StringMap<DIE*> Globals; |
| 74 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 75 | /// GlobalTypes - A map of globally visible types for this unit. |
| 76 | /// |
| 77 | StringMap<DIE*> GlobalTypes; |
| 78 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 79 | public: |
| 80 | CompileUnit(unsigned I, DIE *D) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 81 | : ID(I), CUDie(D), IndexTyDie(0) {} |
| 82 | ~CompileUnit() { delete CUDie; delete IndexTyDie; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 83 | |
| 84 | // Accessors. |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 85 | unsigned getID() const { return ID; } |
| 86 | DIE* getCUDie() const { return CUDie; } |
| 87 | const StringMap<DIE*> &getGlobals() const { return Globals; } |
| 88 | const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 89 | |
| 90 | /// hasContent - Return true if this compile unit has something to write out. |
| 91 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 92 | bool hasContent() const { return !CUDie->getChildren().empty(); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 93 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 94 | /// addGlobal - Add a new global entity to the compile unit. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 95 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 96 | void addGlobal(const std::string &Name, DIE *Die) { Globals[Name] = Die; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 97 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 98 | /// addGlobalType - Add a new global type to the compile unit. |
| 99 | /// |
| 100 | void addGlobalType(const std::string &Name, DIE *Die) { |
| 101 | GlobalTypes[Name] = Die; |
| 102 | } |
| 103 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 104 | /// getDIE - Returns the debug information entry map slot for the |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 105 | /// specified debug variable. |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 106 | DIE *getDIE(MDNode *N) { return GVToDieMap.lookup(N); } |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 107 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 108 | /// insertDIE - Insert DIE into the map. |
| 109 | void insertDIE(MDNode *N, DIE *D) { |
| 110 | GVToDieMap.insert(std::make_pair(N, D)); |
| 111 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 112 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 113 | /// getDIEEntry - Returns the debug information entry for the speciefied |
| 114 | /// debug variable. |
| 115 | DIEEntry *getDIEEntry(MDNode *N) { return GVToDIEEntryMap.lookup(N); } |
| 116 | |
| 117 | /// insertDIEEntry - Insert debug information entry into the map. |
| 118 | void insertDIEEntry(MDNode *N, DIEEntry *E) { |
| 119 | GVToDIEEntryMap.insert(std::make_pair(N, E)); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 122 | /// addDie - Adds or interns the DIE to the compile unit. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 123 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 124 | void addDie(DIE *Buffer) { |
| 125 | this->CUDie->addChild(Buffer); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 126 | } |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 127 | |
| 128 | // getIndexTyDie - Get an anonymous type for index type. |
| 129 | DIE *getIndexTyDie() { |
| 130 | return IndexTyDie; |
| 131 | } |
| 132 | |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 133 | // setIndexTyDie - Set D as anonymous type for index which can be reused |
| 134 | // later. |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 135 | void setIndexTyDie(DIE *D) { |
| 136 | IndexTyDie = D; |
| 137 | } |
| 138 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | //===----------------------------------------------------------------------===// |
| 142 | /// DbgVariable - This class is used to track local variable information. |
| 143 | /// |
Devang Patel | f76a3d6 | 2009-11-16 21:53:40 +0000 | [diff] [blame] | 144 | class DbgVariable { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 145 | DIVariable Var; // Variable Descriptor. |
| 146 | unsigned FrameIndex; // Variable frame index. |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 147 | DbgVariable *AbstractVar; // Abstract variable for this variable. |
| 148 | DIE *TheDIE; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 149 | public: |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 150 | DbgVariable(DIVariable V, unsigned I) |
| 151 | : Var(V), FrameIndex(I), AbstractVar(0), TheDIE(0) {} |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 152 | |
| 153 | // Accessors. |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 154 | DIVariable getVariable() const { return Var; } |
| 155 | unsigned getFrameIndex() const { return FrameIndex; } |
| 156 | void setAbstractVariable(DbgVariable *V) { AbstractVar = V; } |
| 157 | DbgVariable *getAbstractVariable() const { return AbstractVar; } |
| 158 | void setDIE(DIE *D) { TheDIE = D; } |
| 159 | DIE *getDIE() const { return TheDIE; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 160 | }; |
| 161 | |
| 162 | //===----------------------------------------------------------------------===// |
| 163 | /// DbgScope - This class is used to track scope information. |
| 164 | /// |
Devang Patel | f76a3d6 | 2009-11-16 21:53:40 +0000 | [diff] [blame] | 165 | class DbgScope { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 166 | DbgScope *Parent; // Parent to this scope. |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 167 | DIDescriptor Desc; // Debug info descriptor for scope. |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 168 | WeakVH InlinedAtLocation; // Location at which scope is inlined. |
| 169 | bool AbstractScope; // Abstract Scope |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 170 | unsigned StartLabelID; // Label ID of the beginning of scope. |
| 171 | unsigned EndLabelID; // Label ID of the end of scope. |
Devang Patel | d38dd11 | 2009-10-01 18:25:23 +0000 | [diff] [blame] | 172 | const MachineInstr *LastInsn; // Last instruction of this scope. |
| 173 | const MachineInstr *FirstInsn; // First instruction of this scope. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 174 | SmallVector<DbgScope *, 4> Scopes; // Scopes defined in scope. |
| 175 | SmallVector<DbgVariable *, 8> Variables;// Variables declared in scope. |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 176 | |
Owen Anderson | 04c05f7 | 2009-06-24 22:53:20 +0000 | [diff] [blame] | 177 | // Private state for dump() |
| 178 | mutable unsigned IndentLevel; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 179 | public: |
Devang Patel | c90aefe | 2009-10-14 21:08:09 +0000 | [diff] [blame] | 180 | DbgScope(DbgScope *P, DIDescriptor D, MDNode *I = 0) |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 181 | : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(false), |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 182 | StartLabelID(0), EndLabelID(0), |
Devang Patel | c90aefe | 2009-10-14 21:08:09 +0000 | [diff] [blame] | 183 | LastInsn(0), FirstInsn(0), IndentLevel(0) {} |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 184 | virtual ~DbgScope(); |
| 185 | |
| 186 | // Accessors. |
| 187 | DbgScope *getParent() const { return Parent; } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 188 | void setParent(DbgScope *P) { Parent = P; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 189 | DIDescriptor getDesc() const { return Desc; } |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 190 | MDNode *getInlinedAt() const { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 191 | return dyn_cast_or_null<MDNode>(InlinedAtLocation); |
Devang Patel | c90aefe | 2009-10-14 21:08:09 +0000 | [diff] [blame] | 192 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 193 | MDNode *getScopeNode() const { return Desc.getNode(); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 194 | unsigned getStartLabelID() const { return StartLabelID; } |
| 195 | unsigned getEndLabelID() const { return EndLabelID; } |
| 196 | SmallVector<DbgScope *, 4> &getScopes() { return Scopes; } |
| 197 | SmallVector<DbgVariable *, 8> &getVariables() { return Variables; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 198 | void setStartLabelID(unsigned S) { StartLabelID = S; } |
| 199 | void setEndLabelID(unsigned E) { EndLabelID = E; } |
Devang Patel | d38dd11 | 2009-10-01 18:25:23 +0000 | [diff] [blame] | 200 | void setLastInsn(const MachineInstr *MI) { LastInsn = MI; } |
| 201 | const MachineInstr *getLastInsn() { return LastInsn; } |
| 202 | void setFirstInsn(const MachineInstr *MI) { FirstInsn = MI; } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 203 | void setAbstractScope() { AbstractScope = true; } |
| 204 | bool isAbstractScope() const { return AbstractScope; } |
Devang Patel | d38dd11 | 2009-10-01 18:25:23 +0000 | [diff] [blame] | 205 | const MachineInstr *getFirstInsn() { return FirstInsn; } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 206 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 207 | /// addScope - Add a scope to the scope. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 208 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 209 | void addScope(DbgScope *S) { Scopes.push_back(S); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 210 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 211 | /// addVariable - Add a variable to the scope. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 212 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 213 | void addVariable(DbgVariable *V) { Variables.push_back(V); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 214 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 215 | void fixInstructionMarkers() { |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 216 | assert (getFirstInsn() && "First instruction is missing!"); |
| 217 | if (getLastInsn()) |
| 218 | return; |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 219 | |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 220 | // If a scope does not have an instruction to mark an end then use |
| 221 | // the end of last child scope. |
| 222 | SmallVector<DbgScope *, 4> &Scopes = getScopes(); |
| 223 | assert (!Scopes.empty() && "Inner most scope does not have last insn!"); |
| 224 | DbgScope *L = Scopes.back(); |
| 225 | if (!L->getLastInsn()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 226 | L->fixInstructionMarkers(); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 227 | setLastInsn(L->getLastInsn()); |
| 228 | } |
| 229 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 230 | #ifndef NDEBUG |
| 231 | void dump() const; |
| 232 | #endif |
| 233 | }; |
| 234 | |
| 235 | #ifndef NDEBUG |
| 236 | void DbgScope::dump() const { |
Chris Lattner | c281de1 | 2009-08-23 00:51:00 +0000 | [diff] [blame] | 237 | raw_ostream &err = errs(); |
| 238 | err.indent(IndentLevel); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 239 | MDNode *N = Desc.getNode(); |
| 240 | N->dump(); |
Chris Lattner | c281de1 | 2009-08-23 00:51:00 +0000 | [diff] [blame] | 241 | err << " [" << StartLabelID << ", " << EndLabelID << "]\n"; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 242 | if (AbstractScope) |
| 243 | err << "Abstract Scope\n"; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 244 | |
| 245 | IndentLevel += 2; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 246 | if (!Scopes.empty()) |
| 247 | err << "Children ...\n"; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 248 | for (unsigned i = 0, e = Scopes.size(); i != e; ++i) |
| 249 | if (Scopes[i] != this) |
| 250 | Scopes[i]->dump(); |
| 251 | |
| 252 | IndentLevel -= 2; |
| 253 | } |
| 254 | #endif |
| 255 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 256 | DbgScope::~DbgScope() { |
| 257 | for (unsigned i = 0, N = Scopes.size(); i < N; ++i) |
| 258 | delete Scopes[i]; |
| 259 | for (unsigned j = 0, M = Variables.size(); j < M; ++j) |
| 260 | delete Variables[j]; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | } // end llvm namespace |
| 264 | |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 265 | DwarfDebug::DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T) |
Devang Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 266 | : Dwarf(OS, A, T, "dbg"), ModuleCU(0), |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 267 | AbbreviationsSet(InitAbbreviationsSetSize), Abbreviations(), |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 268 | DIEValues(), StringPool(), |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 269 | SectionSourceLines(), didInitial(false), shouldEmit(false), |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 270 | CurrentFnDbgScope(0), DebugTimer(0) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 271 | if (TimePassesIsEnabled) |
| 272 | DebugTimer = new Timer("Dwarf Debug Writer", |
| 273 | getDwarfTimerGroup()); |
| 274 | } |
| 275 | DwarfDebug::~DwarfDebug() { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 276 | for (unsigned j = 0, M = DIEValues.size(); j < M; ++j) |
| 277 | delete DIEValues[j]; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 278 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 279 | delete DebugTimer; |
| 280 | } |
| 281 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 282 | /// assignAbbrevNumber - Define a unique number for the abbreviation. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 283 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 284 | void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 285 | // Profile the node so that we can make it unique. |
| 286 | FoldingSetNodeID ID; |
| 287 | Abbrev.Profile(ID); |
| 288 | |
| 289 | // Check the set for priors. |
| 290 | DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev); |
| 291 | |
| 292 | // If it's newly added. |
| 293 | if (InSet == &Abbrev) { |
| 294 | // Add to abbreviation list. |
| 295 | Abbreviations.push_back(&Abbrev); |
| 296 | |
| 297 | // Assign the vector position + 1 as its number. |
| 298 | Abbrev.setNumber(Abbreviations.size()); |
| 299 | } else { |
| 300 | // Assign existing abbreviation number. |
| 301 | Abbrev.setNumber(InSet->getNumber()); |
| 302 | } |
| 303 | } |
| 304 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 305 | /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug |
Bill Wendling | 995f80a | 2009-05-20 23:24:48 +0000 | [diff] [blame] | 306 | /// information entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 307 | DIEEntry *DwarfDebug::createDIEEntry(DIE *Entry) { |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 308 | DIEEntry *Value = new DIEEntry(Entry); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 309 | DIEValues.push_back(Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 310 | return Value; |
| 311 | } |
| 312 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 313 | /// addUInt - Add an unsigned integer attribute data and value. |
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 | void DwarfDebug::addUInt(DIE *Die, unsigned Attribute, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 316 | unsigned Form, uint64_t Integer) { |
| 317 | if (!Form) Form = DIEInteger::BestForm(false, Integer); |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 318 | DIEValue *Value = new DIEInteger(Integer); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 319 | DIEValues.push_back(Value); |
| 320 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 323 | /// addSInt - Add an signed integer attribute data and value. |
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 | void DwarfDebug::addSInt(DIE *Die, unsigned Attribute, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 326 | unsigned Form, int64_t Integer) { |
| 327 | if (!Form) Form = DIEInteger::BestForm(true, Integer); |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 328 | DIEValue *Value = new DIEInteger(Integer); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 329 | DIEValues.push_back(Value); |
| 330 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Devang Patel | 69f57b1 | 2009-12-02 15:25:16 +0000 | [diff] [blame] | 333 | /// addString - Add a string attribute data and value. DIEString only |
| 334 | /// keeps string reference. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 335 | void DwarfDebug::addString(DIE *Die, unsigned Attribute, unsigned Form, |
Devang Patel | e9a0597 | 2009-11-24 19:42:17 +0000 | [diff] [blame] | 336 | const StringRef String) { |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 337 | DIEValue *Value = new DIEString(String); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 338 | DIEValues.push_back(Value); |
| 339 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 342 | /// addLabel - Add a Dwarf label attribute data and value. |
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 DwarfDebug::addLabel(DIE *Die, unsigned Attribute, unsigned Form, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 345 | const DWLabel &Label) { |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 346 | DIEValue *Value = new DIEDwarfLabel(Label); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 347 | DIEValues.push_back(Value); |
| 348 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 349 | } |
| 350 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 351 | /// addObjectLabel - Add an non-Dwarf label attribute data and value. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 352 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 353 | void DwarfDebug::addObjectLabel(DIE *Die, unsigned Attribute, unsigned Form, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 354 | const std::string &Label) { |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 355 | DIEValue *Value = new DIEObjectLabel(Label); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 356 | DIEValues.push_back(Value); |
| 357 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 358 | } |
| 359 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 360 | /// addSectionOffset - Add a section offset label attribute data and value. |
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 | void DwarfDebug::addSectionOffset(DIE *Die, unsigned Attribute, unsigned Form, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 363 | const DWLabel &Label, const DWLabel &Section, |
| 364 | bool isEH, bool useSet) { |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 365 | DIEValue *Value = new DIESectionOffset(Label, Section, isEH, useSet); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 366 | DIEValues.push_back(Value); |
| 367 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 370 | /// addDelta - Add a label delta attribute data and value. |
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 | void DwarfDebug::addDelta(DIE *Die, unsigned Attribute, unsigned Form, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 373 | const DWLabel &Hi, const DWLabel &Lo) { |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 374 | DIEValue *Value = new DIEDelta(Hi, Lo); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 375 | DIEValues.push_back(Value); |
| 376 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 377 | } |
| 378 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 379 | /// addBlock - Add block data. |
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 DwarfDebug::addBlock(DIE *Die, unsigned Attribute, unsigned Form, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 382 | DIEBlock *Block) { |
| 383 | Block->ComputeSize(TD); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 384 | DIEValues.push_back(Block); |
| 385 | Die->addValue(Attribute, Block->BestForm(), Block); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 388 | /// addSourceLine - Add location information to specified debug information |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 389 | /// entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 390 | void DwarfDebug::addSourceLine(DIE *Die, const DIVariable *V) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 391 | // If there is no compile unit specified, don't add a line #. |
| 392 | if (V->getCompileUnit().isNull()) |
| 393 | return; |
| 394 | |
| 395 | unsigned Line = V->getLineNumber(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 396 | unsigned FileID = findCompileUnit(V->getCompileUnit()).getID(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 397 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 398 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 399 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 400 | } |
| 401 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 402 | /// addSourceLine - Add location information to specified debug information |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 403 | /// entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 404 | void DwarfDebug::addSourceLine(DIE *Die, const DIGlobal *G) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 405 | // If there is no compile unit specified, don't add a line #. |
| 406 | if (G->getCompileUnit().isNull()) |
| 407 | return; |
| 408 | |
| 409 | unsigned Line = G->getLineNumber(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 410 | unsigned FileID = findCompileUnit(G->getCompileUnit()).getID(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 411 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 412 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 413 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 414 | } |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 415 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 416 | /// addSourceLine - Add location information to specified debug information |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 417 | /// entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 418 | void DwarfDebug::addSourceLine(DIE *Die, const DISubprogram *SP) { |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 419 | // If there is no compile unit specified, don't add a line #. |
| 420 | if (SP->getCompileUnit().isNull()) |
| 421 | return; |
Caroline Tice | c6f9d62 | 2009-09-11 18:25:54 +0000 | [diff] [blame] | 422 | // If the line number is 0, don't add it. |
| 423 | if (SP->getLineNumber() == 0) |
| 424 | return; |
| 425 | |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 426 | |
| 427 | unsigned Line = SP->getLineNumber(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 428 | unsigned FileID = findCompileUnit(SP->getCompileUnit()).getID(); |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 429 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 430 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 431 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 434 | /// addSourceLine - Add location information to specified debug information |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 435 | /// entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 436 | void DwarfDebug::addSourceLine(DIE *Die, const DIType *Ty) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 437 | // If there is no compile unit specified, don't add a line #. |
| 438 | DICompileUnit CU = Ty->getCompileUnit(); |
| 439 | if (CU.isNull()) |
| 440 | return; |
| 441 | |
| 442 | unsigned Line = Ty->getLineNumber(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 443 | unsigned FileID = findCompileUnit(CU).getID(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 444 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 445 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 446 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 449 | /* Byref variables, in Blocks, are declared by the programmer as |
| 450 | "SomeType VarName;", but the compiler creates a |
| 451 | __Block_byref_x_VarName struct, and gives the variable VarName |
| 452 | either the struct, or a pointer to the struct, as its type. This |
| 453 | is necessary for various behind-the-scenes things the compiler |
| 454 | needs to do with by-reference variables in blocks. |
| 455 | |
| 456 | However, as far as the original *programmer* is concerned, the |
| 457 | variable should still have type 'SomeType', as originally declared. |
| 458 | |
| 459 | The following function dives into the __Block_byref_x_VarName |
| 460 | struct to find the original type of the variable. This will be |
| 461 | passed back to the code generating the type for the Debug |
| 462 | Information Entry for the variable 'VarName'. 'VarName' will then |
| 463 | have the original type 'SomeType' in its debug information. |
| 464 | |
| 465 | The original type 'SomeType' will be the type of the field named |
| 466 | 'VarName' inside the __Block_byref_x_VarName struct. |
| 467 | |
| 468 | NOTE: In order for this to not completely fail on the debugger |
| 469 | side, the Debug Information Entry for the variable VarName needs to |
| 470 | have a DW_AT_location that tells the debugger how to unwind through |
| 471 | the pointers and __Block_byref_x_VarName struct to find the actual |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 472 | value of the variable. The function addBlockByrefType does this. */ |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 473 | |
| 474 | /// Find the type the programmer originally declared the variable to be |
| 475 | /// and return that type. |
| 476 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 477 | DIType DwarfDebug::getBlockByrefType(DIType Ty, std::string Name) { |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 478 | |
| 479 | DIType subType = Ty; |
| 480 | unsigned tag = Ty.getTag(); |
| 481 | |
| 482 | if (tag == dwarf::DW_TAG_pointer_type) { |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 483 | DIDerivedType DTy = DIDerivedType(Ty.getNode()); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 484 | subType = DTy.getTypeDerivedFrom(); |
| 485 | } |
| 486 | |
| 487 | DICompositeType blockStruct = DICompositeType(subType.getNode()); |
| 488 | |
| 489 | DIArray Elements = blockStruct.getTypeArray(); |
| 490 | |
| 491 | if (Elements.isNull()) |
| 492 | return Ty; |
| 493 | |
| 494 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 495 | DIDescriptor Element = Elements.getElement(i); |
| 496 | DIDerivedType DT = DIDerivedType(Element.getNode()); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 497 | if (Name == DT.getName()) |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 498 | return (DT.getTypeDerivedFrom()); |
| 499 | } |
| 500 | |
| 501 | return Ty; |
| 502 | } |
| 503 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 504 | /// addComplexAddress - Start with the address based on the location provided, |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 505 | /// and generate the DWARF information necessary to find the actual variable |
| 506 | /// given the extra address information encoded in the DIVariable, starting from |
| 507 | /// the starting location. Add the DWARF information to the die. |
| 508 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 509 | void DwarfDebug::addComplexAddress(DbgVariable *&DV, DIE *Die, |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 510 | unsigned Attribute, |
| 511 | const MachineLocation &Location) { |
| 512 | const DIVariable &VD = DV->getVariable(); |
| 513 | DIType Ty = VD.getType(); |
| 514 | |
| 515 | // Decode the original location, and use that as the start of the byref |
| 516 | // variable's location. |
| 517 | unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false); |
| 518 | DIEBlock *Block = new DIEBlock(); |
| 519 | |
| 520 | if (Location.isReg()) { |
| 521 | if (Reg < 32) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 522 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 523 | } else { |
| 524 | Reg = Reg - dwarf::DW_OP_reg0; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 525 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
| 526 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 527 | } |
| 528 | } else { |
| 529 | if (Reg < 32) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 530 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 531 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 532 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx); |
| 533 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 534 | } |
| 535 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 536 | addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | for (unsigned i = 0, N = VD.getNumAddrElements(); i < N; ++i) { |
| 540 | uint64_t Element = VD.getAddrElement(i); |
| 541 | |
| 542 | if (Element == DIFactory::OpPlus) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 543 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
| 544 | addUInt(Block, 0, dwarf::DW_FORM_udata, VD.getAddrElement(++i)); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 545 | } else if (Element == DIFactory::OpDeref) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 546 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 547 | } else llvm_unreachable("unknown DIFactory Opcode"); |
| 548 | } |
| 549 | |
| 550 | // Now attach the location information to the DIE. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 551 | addBlock(Die, Attribute, 0, Block); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 552 | } |
| 553 | |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 554 | /* Byref variables, in Blocks, are declared by the programmer as "SomeType |
| 555 | VarName;", but the compiler creates a __Block_byref_x_VarName struct, and |
| 556 | gives the variable VarName either the struct, or a pointer to the struct, as |
| 557 | its type. This is necessary for various behind-the-scenes things the |
| 558 | compiler needs to do with by-reference variables in Blocks. |
| 559 | |
| 560 | However, as far as the original *programmer* is concerned, the variable |
| 561 | should still have type 'SomeType', as originally declared. |
| 562 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 563 | The function getBlockByrefType dives into the __Block_byref_x_VarName |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 564 | struct to find the original type of the variable, which is then assigned to |
| 565 | the variable's Debug Information Entry as its real type. So far, so good. |
| 566 | However now the debugger will expect the variable VarName to have the type |
| 567 | SomeType. So we need the location attribute for the variable to be an |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 568 | expression that explains to the debugger how to navigate through the |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 569 | pointers and struct to find the actual variable of type SomeType. |
| 570 | |
| 571 | The following function does just that. We start by getting |
| 572 | the "normal" location for the variable. This will be the location |
| 573 | of either the struct __Block_byref_x_VarName or the pointer to the |
| 574 | struct __Block_byref_x_VarName. |
| 575 | |
| 576 | The struct will look something like: |
| 577 | |
| 578 | struct __Block_byref_x_VarName { |
| 579 | ... <various fields> |
| 580 | struct __Block_byref_x_VarName *forwarding; |
| 581 | ... <various other fields> |
| 582 | SomeType VarName; |
| 583 | ... <maybe more fields> |
| 584 | }; |
| 585 | |
| 586 | If we are given the struct directly (as our starting point) we |
| 587 | need to tell the debugger to: |
| 588 | |
| 589 | 1). Add the offset of the forwarding field. |
| 590 | |
| 591 | 2). Follow that pointer to get the the real __Block_byref_x_VarName |
| 592 | struct to use (the real one may have been copied onto the heap). |
| 593 | |
| 594 | 3). Add the offset for the field VarName, to find the actual variable. |
| 595 | |
| 596 | If we started with a pointer to the struct, then we need to |
| 597 | dereference that pointer first, before the other steps. |
| 598 | Translating this into DWARF ops, we will need to append the following |
| 599 | to the current location description for the variable: |
| 600 | |
| 601 | DW_OP_deref -- optional, if we start with a pointer |
| 602 | DW_OP_plus_uconst <forward_fld_offset> |
| 603 | DW_OP_deref |
| 604 | DW_OP_plus_uconst <varName_fld_offset> |
| 605 | |
| 606 | That is what this function does. */ |
| 607 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 608 | /// addBlockByrefAddress - Start with the address based on the location |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 609 | /// provided, and generate the DWARF information necessary to find the |
| 610 | /// actual Block variable (navigating the Block struct) based on the |
| 611 | /// starting location. Add the DWARF information to the die. For |
| 612 | /// more information, read large comment just above here. |
| 613 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 614 | void DwarfDebug::addBlockByrefAddress(DbgVariable *&DV, DIE *Die, |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 615 | unsigned Attribute, |
| 616 | const MachineLocation &Location) { |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 617 | const DIVariable &VD = DV->getVariable(); |
| 618 | DIType Ty = VD.getType(); |
| 619 | DIType TmpTy = Ty; |
| 620 | unsigned Tag = Ty.getTag(); |
| 621 | bool isPointer = false; |
| 622 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 623 | StringRef varName = VD.getName(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 624 | |
| 625 | if (Tag == dwarf::DW_TAG_pointer_type) { |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 626 | DIDerivedType DTy = DIDerivedType(Ty.getNode()); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 627 | TmpTy = DTy.getTypeDerivedFrom(); |
| 628 | isPointer = true; |
| 629 | } |
| 630 | |
| 631 | DICompositeType blockStruct = DICompositeType(TmpTy.getNode()); |
| 632 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 633 | // Find the __forwarding field and the variable field in the __Block_byref |
| 634 | // struct. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 635 | DIArray Fields = blockStruct.getTypeArray(); |
| 636 | DIDescriptor varField = DIDescriptor(); |
| 637 | DIDescriptor forwardingField = DIDescriptor(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 638 | |
| 639 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 640 | for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) { |
| 641 | DIDescriptor Element = Fields.getElement(i); |
| 642 | DIDerivedType DT = DIDerivedType(Element.getNode()); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 643 | StringRef fieldName = DT.getName(); |
| 644 | if (fieldName == "__forwarding") |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 645 | forwardingField = Element; |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 646 | else if (fieldName == varName) |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 647 | varField = Element; |
| 648 | } |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 649 | |
Mike Stump | 7e3720d | 2009-09-24 23:21:26 +0000 | [diff] [blame] | 650 | assert(!varField.isNull() && "Can't find byref variable in Block struct"); |
| 651 | assert(!forwardingField.isNull() |
| 652 | && "Can't find forwarding field in Block struct"); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 653 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 654 | // Get the offsets for the forwarding field and the variable field. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 655 | unsigned int forwardingFieldOffset = |
| 656 | DIDerivedType(forwardingField.getNode()).getOffsetInBits() >> 3; |
| 657 | unsigned int varFieldOffset = |
| 658 | DIDerivedType(varField.getNode()).getOffsetInBits() >> 3; |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 659 | |
Mike Stump | 7e3720d | 2009-09-24 23:21:26 +0000 | [diff] [blame] | 660 | // Decode the original location, and use that as the start of the byref |
| 661 | // variable's location. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 662 | unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false); |
| 663 | DIEBlock *Block = new DIEBlock(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 664 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 665 | if (Location.isReg()) { |
| 666 | if (Reg < 32) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 667 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 668 | else { |
| 669 | Reg = Reg - dwarf::DW_OP_reg0; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 670 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
| 671 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 672 | } |
| 673 | } else { |
| 674 | if (Reg < 32) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 675 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 676 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 677 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx); |
| 678 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 679 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 680 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 681 | addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 682 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 683 | |
Mike Stump | 7e3720d | 2009-09-24 23:21:26 +0000 | [diff] [blame] | 684 | // If we started with a pointer to the __Block_byref... struct, then |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 685 | // the first thing we need to do is dereference the pointer (DW_OP_deref). |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 686 | if (isPointer) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 687 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 688 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 689 | // Next add the offset for the '__forwarding' field: |
| 690 | // DW_OP_plus_uconst ForwardingFieldOffset. Note there's no point in |
| 691 | // adding the offset if it's 0. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 692 | if (forwardingFieldOffset > 0) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 693 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
| 694 | addUInt(Block, 0, dwarf::DW_FORM_udata, forwardingFieldOffset); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 695 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 696 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 697 | // Now dereference the __forwarding field to get to the real __Block_byref |
| 698 | // struct: DW_OP_deref. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 699 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 700 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 701 | // Now that we've got the real __Block_byref... struct, add the offset |
| 702 | // for the variable's field to get to the location of the actual variable: |
| 703 | // DW_OP_plus_uconst varFieldOffset. Again, don't add if it's 0. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 704 | if (varFieldOffset > 0) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 705 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
| 706 | addUInt(Block, 0, dwarf::DW_FORM_udata, varFieldOffset); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 707 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 708 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 709 | // Now attach the location information to the DIE. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 710 | addBlock(Die, Attribute, 0, Block); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 711 | } |
| 712 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 713 | /// addAddress - Add an address attribute to a die based on the location |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 714 | /// provided. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 715 | void DwarfDebug::addAddress(DIE *Die, unsigned Attribute, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 716 | const MachineLocation &Location) { |
| 717 | unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false); |
| 718 | DIEBlock *Block = new DIEBlock(); |
| 719 | |
| 720 | if (Location.isReg()) { |
| 721 | if (Reg < 32) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 722 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 723 | } else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 724 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx); |
| 725 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 726 | } |
| 727 | } else { |
| 728 | if (Reg < 32) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 729 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 730 | } else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 731 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx); |
| 732 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 733 | } |
| 734 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 735 | addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 736 | } |
| 737 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 738 | addBlock(Die, Attribute, 0, Block); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 739 | } |
| 740 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 741 | /// addType - Add a new type attribute to the specified entity. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 742 | void DwarfDebug::addType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 743 | if (Ty.isNull()) |
| 744 | return; |
| 745 | |
| 746 | // Check for pre-existence. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 747 | DIEEntry *Entry = DW_Unit->getDIEEntry(Ty.getNode()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 748 | |
| 749 | // If it exists then use the existing value. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 750 | if (Entry) { |
| 751 | Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 752 | return; |
| 753 | } |
| 754 | |
| 755 | // Set up proxy. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 756 | Entry = createDIEEntry(); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 757 | DW_Unit->insertDIEEntry(Ty.getNode(), Entry); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 758 | |
| 759 | // Construct type. |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 760 | DIE *Buffer = new DIE(dwarf::DW_TAG_base_type); |
Devang Patel | b3235d2 | 2009-12-03 23:46:57 +0000 | [diff] [blame] | 761 | ModuleCU->insertDIE(Ty.getNode(), Buffer); |
Devang Patel | 6ceea33 | 2009-08-31 18:49:10 +0000 | [diff] [blame] | 762 | if (Ty.isBasicType()) |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 763 | constructTypeDIE(DW_Unit, *Buffer, DIBasicType(Ty.getNode())); |
Devang Patel | 6ceea33 | 2009-08-31 18:49:10 +0000 | [diff] [blame] | 764 | else if (Ty.isCompositeType()) |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 765 | constructTypeDIE(DW_Unit, *Buffer, DICompositeType(Ty.getNode())); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 766 | else { |
Devang Patel | 6ceea33 | 2009-08-31 18:49:10 +0000 | [diff] [blame] | 767 | assert(Ty.isDerivedType() && "Unknown kind of DIType"); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 768 | constructTypeDIE(DW_Unit, *Buffer, DIDerivedType(Ty.getNode())); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | // Add debug information entry to entity and appropriate context. |
| 772 | DIE *Die = NULL; |
| 773 | DIDescriptor Context = Ty.getContext(); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 774 | if (!Context.isNull()) |
| 775 | Die = DW_Unit->getDIE(Context.getNode()); |
| 776 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 777 | if (Die) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 778 | Die->addChild(Buffer); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 779 | else |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 780 | DW_Unit->addDie(Buffer); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 781 | Entry->setEntry(Buffer); |
| 782 | Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 783 | } |
| 784 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 785 | /// constructTypeDIE - Construct basic type die from DIBasicType. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 786 | void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 787 | DIBasicType BTy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 788 | // Get core information. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 789 | StringRef Name = BTy.getName(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 790 | Buffer.setTag(dwarf::DW_TAG_base_type); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 791 | addUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 792 | BTy.getEncoding()); |
| 793 | |
| 794 | // Add name if not anonymous or intermediate type. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 795 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 796 | addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 797 | uint64_t Size = BTy.getSizeInBits() >> 3; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 798 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 799 | } |
| 800 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 801 | /// constructTypeDIE - Construct derived type die from DIDerivedType. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 802 | void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 803 | DIDerivedType DTy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 804 | // Get core information. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 805 | StringRef Name = DTy.getName(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 806 | uint64_t Size = DTy.getSizeInBits() >> 3; |
| 807 | unsigned Tag = DTy.getTag(); |
| 808 | |
| 809 | // FIXME - Workaround for templates. |
| 810 | if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type; |
| 811 | |
| 812 | Buffer.setTag(Tag); |
| 813 | |
| 814 | // Map to main type, void will not have a type. |
| 815 | DIType FromTy = DTy.getTypeDerivedFrom(); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 816 | addType(DW_Unit, &Buffer, FromTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 817 | |
| 818 | // Add name if not anonymous or intermediate type. |
Devang Patel | deea564 | 2009-11-30 23:56:56 +0000 | [diff] [blame] | 819 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 820 | addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 821 | |
| 822 | // Add size if non-zero (derived types might be zero-sized.) |
| 823 | if (Size) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 824 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 825 | |
| 826 | // Add source line info if available and TyDesc is not a forward declaration. |
Devang Patel | 05f6fa8 | 2009-11-23 18:43:37 +0000 | [diff] [blame] | 827 | if (!DTy.isForwardDecl()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 828 | addSourceLine(&Buffer, &DTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 829 | } |
| 830 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 831 | /// constructTypeDIE - Construct type DIE from DICompositeType. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 832 | void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 833 | DICompositeType CTy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 834 | // Get core information. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 835 | StringRef Name = CTy.getName(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 836 | |
| 837 | uint64_t Size = CTy.getSizeInBits() >> 3; |
| 838 | unsigned Tag = CTy.getTag(); |
| 839 | Buffer.setTag(Tag); |
| 840 | |
| 841 | switch (Tag) { |
| 842 | case dwarf::DW_TAG_vector_type: |
| 843 | case dwarf::DW_TAG_array_type: |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 844 | constructArrayTypeDIE(DW_Unit, Buffer, &CTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 845 | break; |
| 846 | case dwarf::DW_TAG_enumeration_type: { |
| 847 | DIArray Elements = CTy.getTypeArray(); |
| 848 | |
| 849 | // Add enumerators to enumeration type. |
| 850 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 851 | DIE *ElemDie = NULL; |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 852 | DIEnumerator Enum(Elements.getElement(i).getNode()); |
Devang Patel | c525472 | 2009-10-09 17:51:49 +0000 | [diff] [blame] | 853 | if (!Enum.isNull()) { |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 854 | ElemDie = constructEnumTypeDIE(DW_Unit, &Enum); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 855 | Buffer.addChild(ElemDie); |
Devang Patel | c525472 | 2009-10-09 17:51:49 +0000 | [diff] [blame] | 856 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 857 | } |
| 858 | } |
| 859 | break; |
| 860 | case dwarf::DW_TAG_subroutine_type: { |
| 861 | // Add return type. |
| 862 | DIArray Elements = CTy.getTypeArray(); |
| 863 | DIDescriptor RTy = Elements.getElement(0); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 864 | addType(DW_Unit, &Buffer, DIType(RTy.getNode())); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 865 | |
| 866 | // Add prototype flag. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 867 | addUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 868 | |
| 869 | // Add arguments. |
| 870 | for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) { |
| 871 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
| 872 | DIDescriptor Ty = Elements.getElement(i); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 873 | addType(DW_Unit, Arg, DIType(Ty.getNode())); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 874 | Buffer.addChild(Arg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 875 | } |
| 876 | } |
| 877 | break; |
| 878 | case dwarf::DW_TAG_structure_type: |
| 879 | case dwarf::DW_TAG_union_type: |
| 880 | case dwarf::DW_TAG_class_type: { |
| 881 | // Add elements to structure type. |
| 882 | DIArray Elements = CTy.getTypeArray(); |
| 883 | |
| 884 | // A forward struct declared type may not have elements available. |
| 885 | if (Elements.isNull()) |
| 886 | break; |
| 887 | |
| 888 | // Add elements to structure type. |
| 889 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 890 | DIDescriptor Element = Elements.getElement(i); |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 891 | if (Element.isNull()) |
| 892 | continue; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 893 | DIE *ElemDie = NULL; |
| 894 | if (Element.getTag() == dwarf::DW_TAG_subprogram) |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 895 | ElemDie = createMemberSubprogramDIE(DW_Unit, |
| 896 | DISubprogram(Element.getNode())); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 897 | else |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 898 | ElemDie = createMemberDIE(DW_Unit, |
| 899 | DIDerivedType(Element.getNode())); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 900 | Buffer.addChild(ElemDie); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 901 | } |
| 902 | |
Devang Patel | a1ba269 | 2009-08-27 23:51:51 +0000 | [diff] [blame] | 903 | if (CTy.isAppleBlockExtension()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 904 | addUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 905 | |
| 906 | unsigned RLang = CTy.getRunTimeLang(); |
| 907 | if (RLang) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 908 | addUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 909 | dwarf::DW_FORM_data1, RLang); |
| 910 | break; |
| 911 | } |
| 912 | default: |
| 913 | break; |
| 914 | } |
| 915 | |
| 916 | // Add name if not anonymous or intermediate type. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 917 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 918 | addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 919 | |
| 920 | if (Tag == dwarf::DW_TAG_enumeration_type || |
| 921 | Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) { |
| 922 | // Add size if non-zero (derived types might be zero-sized.) |
| 923 | if (Size) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 924 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 925 | else { |
| 926 | // Add zero size if it is not a forward declaration. |
| 927 | if (CTy.isForwardDecl()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 928 | addUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 929 | else |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 930 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | // Add source line info if available. |
| 934 | if (!CTy.isForwardDecl()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 935 | addSourceLine(&Buffer, &CTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 939 | /// constructSubrangeDIE - Construct subrange DIE from DISubrange. |
| 940 | void DwarfDebug::constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){ |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 941 | int64_t L = SR.getLo(); |
| 942 | int64_t H = SR.getHi(); |
| 943 | DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type); |
| 944 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 945 | addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy); |
Devang Patel | 6325a53 | 2009-08-14 20:59:16 +0000 | [diff] [blame] | 946 | if (L) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 947 | addSInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L); |
Devang Patel | d55224c | 2009-12-04 23:10:24 +0000 | [diff] [blame] | 948 | addSInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 949 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 950 | Buffer.addChild(DW_Subrange); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 951 | } |
| 952 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 953 | /// constructArrayTypeDIE - Construct array type DIE from DICompositeType. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 954 | void DwarfDebug::constructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 955 | DICompositeType *CTy) { |
| 956 | Buffer.setTag(dwarf::DW_TAG_array_type); |
| 957 | if (CTy->getTag() == dwarf::DW_TAG_vector_type) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 958 | addUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 959 | |
| 960 | // Emit derived type. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 961 | addType(DW_Unit, &Buffer, CTy->getTypeDerivedFrom()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 962 | DIArray Elements = CTy->getTypeArray(); |
| 963 | |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 964 | // Get an anonymous type for index type. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 965 | DIE *IdxTy = DW_Unit->getIndexTyDie(); |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 966 | if (!IdxTy) { |
| 967 | // Construct an anonymous type for index type. |
| 968 | IdxTy = new DIE(dwarf::DW_TAG_base_type); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 969 | addUInt(IdxTy, dwarf::DW_AT_byte_size, 0, sizeof(int32_t)); |
| 970 | addUInt(IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1, |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 971 | dwarf::DW_ATE_signed); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 972 | DW_Unit->addDie(IdxTy); |
| 973 | DW_Unit->setIndexTyDie(IdxTy); |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 974 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 975 | |
| 976 | // Add subranges to array type. |
| 977 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 978 | DIDescriptor Element = Elements.getElement(i); |
| 979 | if (Element.getTag() == dwarf::DW_TAG_subrange_type) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 980 | constructSubrangeDIE(Buffer, DISubrange(Element.getNode()), IdxTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 981 | } |
| 982 | } |
| 983 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 984 | /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 985 | DIE *DwarfDebug::constructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 986 | DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 987 | StringRef Name = ETy->getName(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 988 | addString(Enumerator, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 989 | int64_t Value = ETy->getEnumValue(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 990 | addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 991 | return Enumerator; |
| 992 | } |
| 993 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 994 | /// createGlobalVariableDIE - Create new DIE using GV. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 995 | DIE *DwarfDebug::createGlobalVariableDIE(CompileUnit *DW_Unit, |
| 996 | const DIGlobalVariable &GV) { |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 997 | // If the global variable was optmized out then no need to create debug info |
| 998 | // entry. |
Devang Patel | 84c73e9 | 2009-11-06 17:58:12 +0000 | [diff] [blame] | 999 | if (!GV.getGlobal()) return NULL; |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1000 | if (GV.getDisplayName().empty()) return NULL; |
Devang Patel | 465c3be | 2009-11-06 01:30:04 +0000 | [diff] [blame] | 1001 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1002 | DIE *GVDie = new DIE(dwarf::DW_TAG_variable); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1003 | addString(GVDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, |
Devang Patel | 5ccdd10 | 2009-09-29 18:40:58 +0000 | [diff] [blame] | 1004 | GV.getDisplayName()); |
| 1005 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1006 | StringRef LinkageName = GV.getLinkageName(); |
| 1007 | if (!LinkageName.empty()) { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1008 | // Skip special LLVM prefix that is used to inform the asm printer to not |
| 1009 | // emit usual symbol prefix before the symbol name. This happens for |
| 1010 | // Objective-C symbol names and symbol whose name is replaced using GCC's |
| 1011 | // __asm__ attribute. |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 1012 | if (LinkageName[0] == 1) |
Benjamin Kramer | 1c3451f | 2009-11-25 18:26:09 +0000 | [diff] [blame] | 1013 | LinkageName = LinkageName.substr(1); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1014 | addString(GVDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string, |
Devang Patel | 1a8d2d2 | 2009-07-14 00:55:28 +0000 | [diff] [blame] | 1015 | LinkageName); |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 1016 | } |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1017 | addType(DW_Unit, GVDie, GV.getType()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1018 | if (!GV.isLocalToUnit()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1019 | addUInt(GVDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1); |
| 1020 | addSourceLine(GVDie, &GV); |
Devang Patel | b71a16d | 2009-10-05 23:22:08 +0000 | [diff] [blame] | 1021 | |
| 1022 | // Add address. |
| 1023 | DIEBlock *Block = new DIEBlock(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1024 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr); |
| 1025 | addObjectLabel(Block, 0, dwarf::DW_FORM_udata, |
Devang Patel | b71a16d | 2009-10-05 23:22:08 +0000 | [diff] [blame] | 1026 | Asm->Mang->getMangledName(GV.getGlobal())); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1027 | addBlock(GVDie, dwarf::DW_AT_location, 0, Block); |
Devang Patel | b71a16d | 2009-10-05 23:22:08 +0000 | [diff] [blame] | 1028 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1029 | return GVDie; |
| 1030 | } |
| 1031 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1032 | /// createMemberDIE - Create new member DIE. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1033 | DIE *DwarfDebug::createMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT){ |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1034 | DIE *MemberDie = new DIE(DT.getTag()); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1035 | StringRef Name = DT.getName(); |
| 1036 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1037 | addString(MemberDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1038 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1039 | addType(DW_Unit, MemberDie, DT.getTypeDerivedFrom()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1040 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1041 | addSourceLine(MemberDie, &DT); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1042 | |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1043 | DIEBlock *MemLocationDie = new DIEBlock(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1044 | addUInt(MemLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1045 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1046 | uint64_t Size = DT.getSizeInBits(); |
Devang Patel | 61ecbd1 | 2009-11-04 23:48:00 +0000 | [diff] [blame] | 1047 | uint64_t FieldSize = DT.getOriginalTypeSize(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1048 | |
| 1049 | if (Size != FieldSize) { |
| 1050 | // Handle bitfield. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1051 | addUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3); |
| 1052 | addUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1053 | |
| 1054 | uint64_t Offset = DT.getOffsetInBits(); |
| 1055 | uint64_t FieldOffset = Offset; |
| 1056 | uint64_t AlignMask = ~(DT.getAlignInBits() - 1); |
| 1057 | uint64_t HiMark = (Offset + FieldSize) & AlignMask; |
| 1058 | FieldOffset = (HiMark - FieldSize); |
| 1059 | Offset -= FieldOffset; |
| 1060 | |
| 1061 | // Maybe we need to work from the other end. |
| 1062 | if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1063 | addUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1064 | |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1065 | // Here WD_AT_data_member_location points to the anonymous |
| 1066 | // field that includes this bit field. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1067 | addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, FieldOffset >> 3); |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1068 | |
| 1069 | } else |
| 1070 | // This is not a bitfield. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1071 | addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3); |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1072 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1073 | addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, MemLocationDie); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1074 | |
| 1075 | if (DT.isProtected()) |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1076 | addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1077 | dwarf::DW_ACCESS_protected); |
| 1078 | else if (DT.isPrivate()) |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1079 | addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1080 | dwarf::DW_ACCESS_private); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1081 | else if (DT.getTag() == dwarf::DW_TAG_inheritance) |
| 1082 | addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
| 1083 | dwarf::DW_ACCESS_public); |
| 1084 | if (DT.isVirtual()) |
| 1085 | addUInt(MemberDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, |
| 1086 | dwarf::DW_VIRTUALITY_virtual); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1087 | return MemberDie; |
| 1088 | } |
| 1089 | |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1090 | /// createRawSubprogramDIE - Create new partially incomplete DIE. This is |
| 1091 | /// a helper routine used by createMemberSubprogramDIE and |
| 1092 | /// createSubprogramDIE. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1093 | DIE *DwarfDebug::createRawSubprogramDIE(CompileUnit *DW_Unit, |
| 1094 | const DISubprogram &SP) { |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1095 | DIE *SPDie = new DIE(dwarf::DW_TAG_subprogram); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1096 | addString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, SP.getName()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1097 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1098 | StringRef LinkageName = SP.getLinkageName(); |
| 1099 | if (!LinkageName.empty()) { |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 1100 | // Skip special LLVM prefix that is used to inform the asm printer to not |
| 1101 | // emit usual symbol prefix before the symbol name. This happens for |
| 1102 | // Objective-C symbol names and symbol whose name is replaced using GCC's |
| 1103 | // __asm__ attribute. |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 1104 | if (LinkageName[0] == 1) |
Benjamin Kramer | 1c3451f | 2009-11-25 18:26:09 +0000 | [diff] [blame] | 1105 | LinkageName = LinkageName.substr(1); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1106 | addString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string, |
Devang Patel | 1a8d2d2 | 2009-07-14 00:55:28 +0000 | [diff] [blame] | 1107 | LinkageName); |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 1108 | } |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1109 | addSourceLine(SPDie, &SP); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1110 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1111 | // Add prototyped tag, if C or ObjC. |
| 1112 | unsigned Lang = SP.getCompileUnit().getLanguage(); |
| 1113 | if (Lang == dwarf::DW_LANG_C99 || Lang == dwarf::DW_LANG_C89 || |
| 1114 | Lang == dwarf::DW_LANG_ObjC) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1115 | addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1116 | |
| 1117 | // Add Return Type. |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1118 | DICompositeType SPTy = SP.getType(); |
| 1119 | DIArray Args = SPTy.getTypeArray(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1120 | unsigned SPTag = SPTy.getTag(); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1121 | |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1122 | if (Args.isNull() || SPTag != dwarf::DW_TAG_subroutine_type) |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1123 | addType(DW_Unit, SPDie, SPTy); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1124 | else |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1125 | addType(DW_Unit, SPDie, DIType(Args.getElement(0).getNode())); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1126 | |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1127 | unsigned VK = SP.getVirtuality(); |
| 1128 | if (VK) { |
| 1129 | addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, VK); |
| 1130 | DIEBlock *Block = new DIEBlock(); |
| 1131 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu); |
| 1132 | addUInt(Block, 0, dwarf::DW_FORM_data1, SP.getVirtualIndex()); |
| 1133 | addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block); |
| 1134 | ContainingTypeMap.insert(std::make_pair(SPDie, WeakVH(SP.getContainingType().getNode()))); |
| 1135 | } |
| 1136 | |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1137 | return SPDie; |
| 1138 | } |
| 1139 | |
| 1140 | /// createMemberSubprogramDIE - Create new member DIE using SP. This routine |
| 1141 | /// always returns a die with DW_AT_declaration attribute. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1142 | DIE *DwarfDebug::createMemberSubprogramDIE(CompileUnit *DW_Unit, |
| 1143 | const DISubprogram &SP) { |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1144 | DIE *SPDie = ModuleCU->getDIE(SP.getNode()); |
| 1145 | if (!SPDie) |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1146 | SPDie = createSubprogramDIE(DW_Unit, SP); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1147 | |
| 1148 | // If SPDie has DW_AT_declaration then reuse it. |
| 1149 | if (!SP.isDefinition()) |
| 1150 | return SPDie; |
| 1151 | |
| 1152 | // Otherwise create new DIE for the declaration. First push definition |
| 1153 | // DIE at the top level. |
| 1154 | if (TopLevelDIEs.insert(SPDie)) |
| 1155 | TopLevelDIEsVector.push_back(SPDie); |
| 1156 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1157 | SPDie = createRawSubprogramDIE(DW_Unit, SP); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1158 | |
| 1159 | // Add arguments. |
| 1160 | DICompositeType SPTy = SP.getType(); |
| 1161 | DIArray Args = SPTy.getTypeArray(); |
| 1162 | unsigned SPTag = SPTy.getTag(); |
| 1163 | if (SPTag == dwarf::DW_TAG_subroutine_type) |
| 1164 | for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) { |
| 1165 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1166 | addType(DW_Unit, Arg, DIType(Args.getElement(i).getNode())); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1167 | addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); // ?? |
| 1168 | SPDie->addChild(Arg); |
| 1169 | } |
| 1170 | |
| 1171 | addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
| 1172 | return SPDie; |
| 1173 | } |
| 1174 | |
| 1175 | /// createSubprogramDIE - Create new DIE using SP. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1176 | DIE *DwarfDebug::createSubprogramDIE(CompileUnit *DW_Unit, |
| 1177 | const DISubprogram &SP) { |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1178 | DIE *SPDie = ModuleCU->getDIE(SP.getNode()); |
| 1179 | if (SPDie) |
| 1180 | return SPDie; |
| 1181 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1182 | SPDie = createRawSubprogramDIE(DW_Unit, SP); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1183 | |
| 1184 | if (!SP.isDefinition()) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1185 | addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1186 | |
| 1187 | // Add arguments. Do not add arguments for subprogram definition. They will |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1188 | // be handled while processing variables. |
| 1189 | DICompositeType SPTy = SP.getType(); |
| 1190 | DIArray Args = SPTy.getTypeArray(); |
| 1191 | unsigned SPTag = SPTy.getTag(); |
| 1192 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1193 | if (SPTag == dwarf::DW_TAG_subroutine_type) |
| 1194 | for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) { |
| 1195 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1196 | addType(DW_Unit, Arg, DIType(Args.getElement(i).getNode())); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1197 | addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); // ?? |
| 1198 | SPDie->addChild(Arg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1199 | } |
| 1200 | } |
| 1201 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1202 | // DW_TAG_inlined_subroutine may refer to this DIE. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1203 | DW_Unit->insertDIE(SP.getNode(), SPDie); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1204 | return SPDie; |
| 1205 | } |
| 1206 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1207 | /// findCompileUnit - Get the compile unit for the given descriptor. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1208 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1209 | CompileUnit &DwarfDebug::findCompileUnit(DICompileUnit Unit) const { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1210 | DenseMap<Value *, CompileUnit *>::const_iterator I = |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 1211 | CompileUnitMap.find(Unit.getNode()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1212 | assert(I != CompileUnitMap.end() && "Missing compile unit."); |
| 1213 | return *I->second; |
| 1214 | } |
| 1215 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1216 | /// createDbgScopeVariable - Create a new scope variable. |
| 1217 | /// |
| 1218 | DIE *DwarfDebug::createDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit) { |
| 1219 | // Get the descriptor. |
| 1220 | const DIVariable &VD = DV->getVariable(); |
| 1221 | StringRef Name = VD.getName(); |
| 1222 | if (Name.empty()) |
| 1223 | return NULL; |
| 1224 | |
| 1225 | // Translate tag to proper Dwarf tag. The result variable is dropped for |
| 1226 | // now. |
| 1227 | unsigned Tag; |
| 1228 | switch (VD.getTag()) { |
| 1229 | case dwarf::DW_TAG_return_variable: |
| 1230 | return NULL; |
| 1231 | case dwarf::DW_TAG_arg_variable: |
| 1232 | Tag = dwarf::DW_TAG_formal_parameter; |
| 1233 | break; |
| 1234 | case dwarf::DW_TAG_auto_variable: // fall thru |
| 1235 | default: |
| 1236 | Tag = dwarf::DW_TAG_variable; |
| 1237 | break; |
| 1238 | } |
| 1239 | |
| 1240 | // Define variable debug information entry. |
| 1241 | DIE *VariableDie = new DIE(Tag); |
| 1242 | addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
| 1243 | |
| 1244 | // Add source line info if available. |
| 1245 | addSourceLine(VariableDie, &VD); |
| 1246 | |
| 1247 | // Add variable type. |
| 1248 | // FIXME: isBlockByrefVariable should be reformulated in terms of complex |
| 1249 | // addresses instead. |
| 1250 | if (VD.isBlockByrefVariable()) |
| 1251 | addType(Unit, VariableDie, getBlockByrefType(VD.getType(), Name)); |
| 1252 | else |
| 1253 | addType(Unit, VariableDie, VD.getType()); |
| 1254 | |
| 1255 | // Add variable address. |
| 1256 | // Variables for abstract instances of inlined functions don't get a |
| 1257 | // location. |
| 1258 | MachineLocation Location; |
| 1259 | unsigned FrameReg; |
| 1260 | int Offset = RI->getFrameIndexReference(*MF, DV->getFrameIndex(), FrameReg); |
| 1261 | Location.set(FrameReg, Offset); |
| 1262 | |
| 1263 | |
| 1264 | if (VD.hasComplexAddress()) |
| 1265 | addComplexAddress(DV, VariableDie, dwarf::DW_AT_location, Location); |
| 1266 | else if (VD.isBlockByrefVariable()) |
| 1267 | addBlockByrefAddress(DV, VariableDie, dwarf::DW_AT_location, Location); |
| 1268 | else |
| 1269 | addAddress(VariableDie, dwarf::DW_AT_location, Location); |
| 1270 | |
| 1271 | return VariableDie; |
| 1272 | } |
| 1273 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1274 | /// getUpdatedDbgScope - Find or create DbgScope assicated with the instruction. |
| 1275 | /// Initialize scope and update scope hierarchy. |
| 1276 | DbgScope *DwarfDebug::getUpdatedDbgScope(MDNode *N, const MachineInstr *MI, |
| 1277 | MDNode *InlinedAt) { |
| 1278 | assert (N && "Invalid Scope encoding!"); |
| 1279 | assert (MI && "Missing machine instruction!"); |
| 1280 | bool GetConcreteScope = (MI && InlinedAt); |
| 1281 | |
| 1282 | DbgScope *NScope = NULL; |
| 1283 | |
| 1284 | if (InlinedAt) |
| 1285 | NScope = DbgScopeMap.lookup(InlinedAt); |
| 1286 | else |
| 1287 | NScope = DbgScopeMap.lookup(N); |
| 1288 | assert (NScope && "Unable to find working scope!"); |
| 1289 | |
| 1290 | if (NScope->getFirstInsn()) |
| 1291 | return NScope; |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1292 | |
| 1293 | DbgScope *Parent = NULL; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1294 | if (GetConcreteScope) { |
Devang Patel | c90aefe | 2009-10-14 21:08:09 +0000 | [diff] [blame] | 1295 | DILocation IL(InlinedAt); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1296 | Parent = getUpdatedDbgScope(IL.getScope().getNode(), MI, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1297 | IL.getOrigLocation().getNode()); |
| 1298 | assert (Parent && "Unable to find Parent scope!"); |
| 1299 | NScope->setParent(Parent); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1300 | Parent->addScope(NScope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1301 | } else if (DIDescriptor(N).isLexicalBlock()) { |
| 1302 | DILexicalBlock DB(N); |
| 1303 | if (!DB.getContext().isNull()) { |
| 1304 | Parent = getUpdatedDbgScope(DB.getContext().getNode(), MI, InlinedAt); |
| 1305 | NScope->setParent(Parent); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1306 | Parent->addScope(NScope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1307 | } |
Devang Patel | c90aefe | 2009-10-14 21:08:09 +0000 | [diff] [blame] | 1308 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1309 | |
Devang Patel | bdf45cb | 2009-10-27 20:47:17 +0000 | [diff] [blame] | 1310 | NScope->setFirstInsn(MI); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1311 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1312 | if (!Parent && !InlinedAt) { |
Devang Patel | 39ae3ff | 2009-11-11 00:31:36 +0000 | [diff] [blame] | 1313 | StringRef SPName = DISubprogram(N).getLinkageName(); |
| 1314 | if (SPName == MF->getFunction()->getName()) |
| 1315 | CurrentFnDbgScope = NScope; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1316 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1317 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1318 | if (GetConcreteScope) { |
| 1319 | ConcreteScopes[InlinedAt] = NScope; |
| 1320 | getOrCreateAbstractScope(N); |
| 1321 | } |
| 1322 | |
Devang Patel | bdf45cb | 2009-10-27 20:47:17 +0000 | [diff] [blame] | 1323 | return NScope; |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1326 | DbgScope *DwarfDebug::getOrCreateAbstractScope(MDNode *N) { |
| 1327 | assert (N && "Invalid Scope encoding!"); |
| 1328 | |
| 1329 | DbgScope *AScope = AbstractScopes.lookup(N); |
| 1330 | if (AScope) |
| 1331 | return AScope; |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1332 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1333 | DbgScope *Parent = NULL; |
| 1334 | |
| 1335 | DIDescriptor Scope(N); |
| 1336 | if (Scope.isLexicalBlock()) { |
| 1337 | DILexicalBlock DB(N); |
| 1338 | DIDescriptor ParentDesc = DB.getContext(); |
| 1339 | if (!ParentDesc.isNull()) |
| 1340 | Parent = getOrCreateAbstractScope(ParentDesc.getNode()); |
| 1341 | } |
| 1342 | |
| 1343 | AScope = new DbgScope(Parent, DIDescriptor(N), NULL); |
| 1344 | |
| 1345 | if (Parent) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1346 | Parent->addScope(AScope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1347 | AScope->setAbstractScope(); |
| 1348 | AbstractScopes[N] = AScope; |
| 1349 | if (DIDescriptor(N).isSubprogram()) |
| 1350 | AbstractScopesList.push_back(AScope); |
| 1351 | return AScope; |
| 1352 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1353 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1354 | /// updateSubprogramScopeDIE - Find DIE for the given subprogram and |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1355 | /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes. |
| 1356 | /// If there are global variables in this scope then create and insert |
| 1357 | /// DIEs for these variables. |
| 1358 | DIE *DwarfDebug::updateSubprogramScopeDIE(MDNode *SPNode) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1359 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1360 | DIE *SPDie = ModuleCU->getDIE(SPNode); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1361 | assert (SPDie && "Unable to find subprogram DIE!"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1362 | addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1363 | DWLabel("func_begin", SubprogramCount)); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1364 | addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1365 | DWLabel("func_end", SubprogramCount)); |
| 1366 | MachineLocation Location(RI->getFrameRegister(*MF)); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1367 | addAddress(SPDie, dwarf::DW_AT_frame_base, Location); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1368 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1369 | if (!DISubprogram(SPNode).isLocalToUnit()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1370 | addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1371 | |
| 1372 | // If there are global variables at this scope then add their dies. |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1373 | for (SmallVector<WeakVH, 4>::iterator SGI = ScopedGVs.begin(), |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1374 | SGE = ScopedGVs.end(); SGI != SGE; ++SGI) { |
| 1375 | MDNode *N = dyn_cast_or_null<MDNode>(*SGI); |
| 1376 | if (!N) continue; |
| 1377 | DIGlobalVariable GV(N); |
| 1378 | if (GV.getContext().getNode() == SPNode) { |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1379 | DIE *ScopedGVDie = createGlobalVariableDIE(ModuleCU, GV); |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 1380 | if (ScopedGVDie) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1381 | SPDie->addChild(ScopedGVDie); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1382 | } |
| 1383 | } |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1384 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1385 | return SPDie; |
| 1386 | } |
| 1387 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1388 | /// constructLexicalScope - Construct new DW_TAG_lexical_block |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1389 | /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels. |
| 1390 | DIE *DwarfDebug::constructLexicalScopeDIE(DbgScope *Scope) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1391 | unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID()); |
| 1392 | unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID()); |
| 1393 | |
| 1394 | // Ignore empty scopes. |
| 1395 | if (StartID == EndID && StartID != 0) |
| 1396 | return NULL; |
| 1397 | |
| 1398 | DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block); |
| 1399 | if (Scope->isAbstractScope()) |
| 1400 | return ScopeDIE; |
| 1401 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1402 | addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1403 | StartID ? |
| 1404 | DWLabel("label", StartID) |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1405 | : DWLabel("func_begin", SubprogramCount)); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1406 | addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1407 | EndID ? |
| 1408 | DWLabel("label", EndID) |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1409 | : DWLabel("func_end", SubprogramCount)); |
| 1410 | |
| 1411 | |
| 1412 | |
| 1413 | return ScopeDIE; |
| 1414 | } |
| 1415 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1416 | /// constructInlinedScopeDIE - This scope represents inlined body of |
| 1417 | /// a function. Construct DIE to represent this concrete inlined copy |
| 1418 | /// of the function. |
| 1419 | DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1420 | unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID()); |
| 1421 | unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID()); |
| 1422 | assert (StartID && "Invalid starting label for an inlined scope!"); |
| 1423 | assert (EndID && "Invalid end label for an inlined scope!"); |
| 1424 | // Ignore empty scopes. |
| 1425 | if (StartID == EndID && StartID != 0) |
| 1426 | return NULL; |
| 1427 | |
| 1428 | DIScope DS(Scope->getScopeNode()); |
| 1429 | if (DS.isNull()) |
| 1430 | return NULL; |
| 1431 | DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine); |
| 1432 | |
| 1433 | DISubprogram InlinedSP = getDISubprogram(DS.getNode()); |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1434 | DIE *OriginDIE = ModuleCU->getDIE(InlinedSP.getNode()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1435 | assert (OriginDIE && "Unable to find Origin DIE!"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1436 | addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1437 | dwarf::DW_FORM_ref4, OriginDIE); |
| 1438 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1439 | addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1440 | DWLabel("label", StartID)); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1441 | addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1442 | DWLabel("label", EndID)); |
| 1443 | |
| 1444 | InlinedSubprogramDIEs.insert(OriginDIE); |
| 1445 | |
| 1446 | // Track the start label for this inlined function. |
| 1447 | ValueMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator |
| 1448 | I = InlineInfo.find(InlinedSP.getNode()); |
| 1449 | |
| 1450 | if (I == InlineInfo.end()) { |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 1451 | InlineInfo[InlinedSP.getNode()].push_back(std::make_pair(StartID, |
| 1452 | ScopeDIE)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1453 | InlinedSPNodes.push_back(InlinedSP.getNode()); |
| 1454 | } else |
| 1455 | I->second.push_back(std::make_pair(StartID, ScopeDIE)); |
| 1456 | |
| 1457 | StringPool.insert(InlinedSP.getName()); |
| 1458 | StringPool.insert(InlinedSP.getLinkageName()); |
| 1459 | DILocation DL(Scope->getInlinedAt()); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1460 | addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, ModuleCU->getID()); |
| 1461 | addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1462 | |
| 1463 | return ScopeDIE; |
| 1464 | } |
| 1465 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1466 | |
| 1467 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1468 | DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, |
| 1469 | DbgScope *Scope, CompileUnit *Unit) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1470 | // Get the descriptor. |
| 1471 | const DIVariable &VD = DV->getVariable(); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1472 | StringRef Name = VD.getName(); |
| 1473 | if (Name.empty()) |
Devang Patel | 3fb6bd6 | 2009-11-13 02:25:26 +0000 | [diff] [blame] | 1474 | return NULL; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1475 | |
| 1476 | // Translate tag to proper Dwarf tag. The result variable is dropped for |
| 1477 | // now. |
| 1478 | unsigned Tag; |
| 1479 | switch (VD.getTag()) { |
| 1480 | case dwarf::DW_TAG_return_variable: |
| 1481 | return NULL; |
| 1482 | case dwarf::DW_TAG_arg_variable: |
| 1483 | Tag = dwarf::DW_TAG_formal_parameter; |
| 1484 | break; |
| 1485 | case dwarf::DW_TAG_auto_variable: // fall thru |
| 1486 | default: |
| 1487 | Tag = dwarf::DW_TAG_variable; |
| 1488 | break; |
| 1489 | } |
| 1490 | |
| 1491 | // Define variable debug information entry. |
| 1492 | DIE *VariableDie = new DIE(Tag); |
| 1493 | |
| 1494 | |
| 1495 | DIE *AbsDIE = NULL; |
| 1496 | if (DbgVariable *AV = DV->getAbstractVariable()) |
| 1497 | AbsDIE = AV->getDIE(); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1498 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1499 | if (AbsDIE) { |
| 1500 | DIScope DS(Scope->getScopeNode()); |
| 1501 | DISubprogram InlinedSP = getDISubprogram(DS.getNode()); |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1502 | DIE *OriginSPDIE = ModuleCU->getDIE(InlinedSP.getNode()); |
Daniel Dunbar | c032679 | 2009-11-11 03:09:50 +0000 | [diff] [blame] | 1503 | (void) OriginSPDIE; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1504 | assert (OriginSPDIE && "Unable to find Origin DIE for the SP!"); |
| 1505 | DIE *AbsDIE = DV->getAbstractVariable()->getDIE(); |
| 1506 | assert (AbsDIE && "Unable to find Origin DIE for the Variable!"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1507 | addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1508 | dwarf::DW_FORM_ref4, AbsDIE); |
| 1509 | } |
| 1510 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1511 | addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
| 1512 | addSourceLine(VariableDie, &VD); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1513 | |
| 1514 | // Add variable type. |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1515 | // FIXME: isBlockByrefVariable should be reformulated in terms of complex |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1516 | // addresses instead. |
| 1517 | if (VD.isBlockByrefVariable()) |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1518 | addType(Unit, VariableDie, getBlockByrefType(VD.getType(), Name)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1519 | else |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1520 | addType(Unit, VariableDie, VD.getType()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | // Add variable address. |
| 1524 | if (!Scope->isAbstractScope()) { |
| 1525 | MachineLocation Location; |
Jim Grosbach | a2f20b2 | 2009-11-22 20:14:00 +0000 | [diff] [blame] | 1526 | unsigned FrameReg; |
| 1527 | int Offset = RI->getFrameIndexReference(*MF, DV->getFrameIndex(), FrameReg); |
| 1528 | Location.set(FrameReg, Offset); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1529 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1530 | if (VD.hasComplexAddress()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1531 | addComplexAddress(DV, VariableDie, dwarf::DW_AT_location, Location); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1532 | else if (VD.isBlockByrefVariable()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1533 | addBlockByrefAddress(DV, VariableDie, dwarf::DW_AT_location, Location); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1534 | else |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1535 | addAddress(VariableDie, dwarf::DW_AT_location, Location); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1536 | } |
| 1537 | DV->setDIE(VariableDie); |
| 1538 | return VariableDie; |
| 1539 | |
| 1540 | } |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1541 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1542 | void DwarfDebug::addPubTypes(DISubprogram SP) { |
| 1543 | DICompositeType SPTy = SP.getType(); |
| 1544 | unsigned SPTag = SPTy.getTag(); |
| 1545 | if (SPTag != dwarf::DW_TAG_subroutine_type) |
| 1546 | return; |
| 1547 | |
| 1548 | DIArray Args = SPTy.getTypeArray(); |
| 1549 | if (Args.isNull()) |
| 1550 | return; |
| 1551 | |
| 1552 | for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) { |
| 1553 | DIType ATy(Args.getElement(i).getNode()); |
| 1554 | if (ATy.isNull()) |
| 1555 | continue; |
| 1556 | DICompositeType CATy = getDICompositeType(ATy); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1557 | if (!CATy.isNull() && !CATy.getName().empty()) { |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1558 | if (DIEEntry *Entry = ModuleCU->getDIEEntry(CATy.getNode())) |
| 1559 | ModuleCU->addGlobalType(CATy.getName(), Entry->getEntry()); |
| 1560 | } |
| 1561 | } |
| 1562 | } |
| 1563 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1564 | /// constructScopeDIE - Construct a DIE for this scope. |
| 1565 | DIE *DwarfDebug::constructScopeDIE(DbgScope *Scope) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1566 | if (!Scope) |
| 1567 | return NULL; |
| 1568 | DIScope DS(Scope->getScopeNode()); |
| 1569 | if (DS.isNull()) |
| 1570 | return NULL; |
| 1571 | |
| 1572 | DIE *ScopeDIE = NULL; |
| 1573 | if (Scope->getInlinedAt()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1574 | ScopeDIE = constructInlinedScopeDIE(Scope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1575 | else if (DS.isSubprogram()) { |
| 1576 | if (Scope->isAbstractScope()) |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1577 | ScopeDIE = ModuleCU->getDIE(DS.getNode()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1578 | else |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1579 | ScopeDIE = updateSubprogramScopeDIE(DS.getNode()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1580 | } |
| 1581 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1582 | ScopeDIE = constructLexicalScopeDIE(Scope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1583 | if (!ScopeDIE) return NULL; |
| 1584 | } |
| 1585 | |
| 1586 | // Add variables to scope. |
| 1587 | SmallVector<DbgVariable *, 8> &Variables = Scope->getVariables(); |
| 1588 | for (unsigned i = 0, N = Variables.size(); i < N; ++i) { |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1589 | DIE *VariableDIE = constructVariableDIE(Variables[i], Scope, ModuleCU); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1590 | if (VariableDIE) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1591 | ScopeDIE->addChild(VariableDIE); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1592 | } |
| 1593 | |
| 1594 | // Add nested scopes. |
| 1595 | SmallVector<DbgScope *, 4> &Scopes = Scope->getScopes(); |
| 1596 | for (unsigned j = 0, M = Scopes.size(); j < M; ++j) { |
| 1597 | // Define the Scope debug information entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1598 | DIE *NestedDIE = constructScopeDIE(Scopes[j]); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1599 | if (NestedDIE) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1600 | ScopeDIE->addChild(NestedDIE); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1601 | } |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1602 | |
| 1603 | if (DS.isSubprogram()) |
| 1604 | addPubTypes(DISubprogram(DS.getNode())); |
| 1605 | |
| 1606 | return ScopeDIE; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1607 | } |
| 1608 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1609 | /// GetOrCreateSourceID - Look up the source id with the given directory and |
| 1610 | /// source file names. If none currently exists, create a new id and insert it |
| 1611 | /// in the SourceIds map. This can update DirectoryNames and SourceFileNames |
| 1612 | /// maps as well. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1613 | unsigned DwarfDebug::GetOrCreateSourceID(StringRef DirName, StringRef FileName) { |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1614 | unsigned DId; |
| 1615 | StringMap<unsigned>::iterator DI = DirectoryIdMap.find(DirName); |
| 1616 | if (DI != DirectoryIdMap.end()) { |
| 1617 | DId = DI->getValue(); |
| 1618 | } else { |
| 1619 | DId = DirectoryNames.size() + 1; |
| 1620 | DirectoryIdMap[DirName] = DId; |
| 1621 | DirectoryNames.push_back(DirName); |
| 1622 | } |
| 1623 | |
| 1624 | unsigned FId; |
| 1625 | StringMap<unsigned>::iterator FI = SourceFileIdMap.find(FileName); |
| 1626 | if (FI != SourceFileIdMap.end()) { |
| 1627 | FId = FI->getValue(); |
| 1628 | } else { |
| 1629 | FId = SourceFileNames.size() + 1; |
| 1630 | SourceFileIdMap[FileName] = FId; |
| 1631 | SourceFileNames.push_back(FileName); |
| 1632 | } |
| 1633 | |
| 1634 | DenseMap<std::pair<unsigned, unsigned>, unsigned>::iterator SI = |
| 1635 | SourceIdMap.find(std::make_pair(DId, FId)); |
| 1636 | if (SI != SourceIdMap.end()) |
| 1637 | return SI->second; |
| 1638 | |
| 1639 | unsigned SrcId = SourceIds.size() + 1; // DW_AT_decl_file cannot be 0. |
| 1640 | SourceIdMap[std::make_pair(DId, FId)] = SrcId; |
| 1641 | SourceIds.push_back(std::make_pair(DId, FId)); |
| 1642 | |
| 1643 | return SrcId; |
| 1644 | } |
| 1645 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1646 | void DwarfDebug::constructCompileUnit(MDNode *N) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 1647 | DICompileUnit DIUnit(N); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1648 | StringRef FN = DIUnit.getFilename(); |
| 1649 | StringRef Dir = DIUnit.getDirectory(); |
Devang Patel | 5ccdd10 | 2009-09-29 18:40:58 +0000 | [diff] [blame] | 1650 | unsigned ID = GetOrCreateSourceID(Dir, FN); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1651 | |
| 1652 | DIE *Die = new DIE(dwarf::DW_TAG_compile_unit); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1653 | addSectionOffset(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1654 | DWLabel("section_line", 0), DWLabel("section_line", 0), |
| 1655 | false); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1656 | addString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string, |
Devang Patel | 5ccdd10 | 2009-09-29 18:40:58 +0000 | [diff] [blame] | 1657 | DIUnit.getProducer()); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1658 | addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data1, |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1659 | DIUnit.getLanguage()); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1660 | addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1661 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1662 | if (!Dir.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1663 | addString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1664 | if (DIUnit.isOptimized()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1665 | addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1666 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1667 | StringRef Flags = DIUnit.getFlags(); |
| 1668 | if (!Flags.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1669 | addString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string, Flags); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1670 | |
| 1671 | unsigned RVer = DIUnit.getRunTimeVersion(); |
| 1672 | if (RVer) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1673 | addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers, |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1674 | dwarf::DW_FORM_data1, RVer); |
| 1675 | |
| 1676 | CompileUnit *Unit = new CompileUnit(ID, Die); |
Devang Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 1677 | if (!ModuleCU && DIUnit.isMain()) { |
Devang Patel | 70f4426 | 2009-06-29 20:38:13 +0000 | [diff] [blame] | 1678 | // Use first compile unit marked as isMain as the compile unit |
| 1679 | // for this module. |
Devang Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 1680 | ModuleCU = Unit; |
Devang Patel | 70f4426 | 2009-06-29 20:38:13 +0000 | [diff] [blame] | 1681 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1682 | |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 1683 | CompileUnitMap[DIUnit.getNode()] = Unit; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1684 | CompileUnits.push_back(Unit); |
| 1685 | } |
| 1686 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1687 | void DwarfDebug::constructGlobalVariableDIE(MDNode *N) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 1688 | DIGlobalVariable DI_GV(N); |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 1689 | |
Devang Patel | 905cf5e | 2009-09-04 23:59:07 +0000 | [diff] [blame] | 1690 | // If debug information is malformed then ignore it. |
| 1691 | if (DI_GV.Verify() == false) |
| 1692 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1693 | |
| 1694 | // Check for pre-existence. |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1695 | if (ModuleCU->getDIE(DI_GV.getNode())) |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1696 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1697 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1698 | DIE *VariableDie = createGlobalVariableDIE(ModuleCU, DI_GV); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1699 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1700 | // Add to map. |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1701 | ModuleCU->insertDIE(N, VariableDie); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1702 | |
| 1703 | // Add to context owner. |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1704 | if (TopLevelDIEs.insert(VariableDie)) |
| 1705 | TopLevelDIEsVector.push_back(VariableDie); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1706 | |
| 1707 | // Expose as global. FIXME - need to check external flag. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1708 | ModuleCU->addGlobal(DI_GV.getName(), VariableDie); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1709 | |
| 1710 | DIType GTy = DI_GV.getType(); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1711 | if (GTy.isCompositeType() && !GTy.getName().empty()) { |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1712 | DIEEntry *Entry = ModuleCU->getDIEEntry(GTy.getNode()); |
| 1713 | assert (Entry && "Missing global type!"); |
| 1714 | ModuleCU->addGlobalType(GTy.getName(), Entry->getEntry()); |
| 1715 | } |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1716 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1717 | } |
| 1718 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1719 | void DwarfDebug::constructSubprogramDIE(MDNode *N) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 1720 | DISubprogram SP(N); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1721 | |
| 1722 | // Check for pre-existence. |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1723 | if (ModuleCU->getDIE(N)) |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1724 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1725 | |
| 1726 | if (!SP.isDefinition()) |
| 1727 | // This is a method declaration which will be handled while constructing |
| 1728 | // class type. |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1729 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1730 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1731 | DIE *SubprogramDie = createSubprogramDIE(ModuleCU, SP); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1732 | |
| 1733 | // Add to map. |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 1734 | ModuleCU->insertDIE(N, SubprogramDie); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1735 | |
| 1736 | // Add to context owner. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1737 | if (SP.getContext().getNode() == SP.getCompileUnit().getNode()) |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1738 | if (TopLevelDIEs.insert(SubprogramDie)) |
| 1739 | TopLevelDIEsVector.push_back(SubprogramDie); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1740 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1741 | // Expose as global. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1742 | ModuleCU->addGlobal(SP.getName(), SubprogramDie); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1743 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1744 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1745 | } |
| 1746 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1747 | /// beginModule - Emit all Dwarf sections that should come prior to the |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 1748 | /// content. Create global DIEs and emit initial debug info sections. |
| 1749 | /// This is inovked by the target AsmPrinter. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1750 | void DwarfDebug::beginModule(Module *M, MachineModuleInfo *mmi) { |
Devang Patel | 208622d | 2009-06-25 22:36:02 +0000 | [diff] [blame] | 1751 | this->M = M; |
| 1752 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1753 | if (TimePassesIsEnabled) |
| 1754 | DebugTimer->startTimer(); |
| 1755 | |
Devang Patel | 3380cc5 | 2009-11-11 19:55:08 +0000 | [diff] [blame] | 1756 | if (!MAI->doesSupportDebugInformation()) |
| 1757 | return; |
| 1758 | |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 1759 | DebugInfoFinder DbgFinder; |
| 1760 | DbgFinder.processModule(*M); |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1761 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1762 | // Create all the compile unit DIEs. |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 1763 | for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(), |
| 1764 | E = DbgFinder.compile_unit_end(); I != E; ++I) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1765 | constructCompileUnit(*I); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1766 | |
| 1767 | if (CompileUnits.empty()) { |
| 1768 | if (TimePassesIsEnabled) |
| 1769 | DebugTimer->stopTimer(); |
| 1770 | |
| 1771 | return; |
| 1772 | } |
| 1773 | |
Devang Patel | 70f4426 | 2009-06-29 20:38:13 +0000 | [diff] [blame] | 1774 | // If main compile unit for this module is not seen than randomly |
| 1775 | // select first compile unit. |
Devang Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 1776 | if (!ModuleCU) |
| 1777 | ModuleCU = CompileUnits[0]; |
Devang Patel | 70f4426 | 2009-06-29 20:38:13 +0000 | [diff] [blame] | 1778 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1779 | // Create DIEs for each of the externally visible global variables. |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 1780 | for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(), |
Devang Patel | fd07cf5 | 2009-10-05 23:40:42 +0000 | [diff] [blame] | 1781 | E = DbgFinder.global_variable_end(); I != E; ++I) { |
| 1782 | DIGlobalVariable GV(*I); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1783 | if (GV.getContext().getNode() != GV.getCompileUnit().getNode()) |
Devang Patel | 4063f6b | 2009-12-07 21:41:32 +0000 | [diff] [blame] | 1784 | ScopedGVs.push_back(*I); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 1785 | else |
| 1786 | constructGlobalVariableDIE(*I); |
Devang Patel | fd07cf5 | 2009-10-05 23:40:42 +0000 | [diff] [blame] | 1787 | } |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1788 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1789 | // Create DIEs for each subprogram. |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 1790 | for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(), |
| 1791 | E = DbgFinder.subprogram_end(); I != E; ++I) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1792 | constructSubprogramDIE(*I); |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 1793 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1794 | MMI = mmi; |
| 1795 | shouldEmit = true; |
| 1796 | MMI->setDebugInfoAvailability(true); |
| 1797 | |
| 1798 | // Prime section data. |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 1799 | SectionMap.insert(Asm->getObjFileLowering().getTextSection()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1800 | |
| 1801 | // Print out .file directives to specify files for .loc directives. These are |
| 1802 | // printed out early so that they precede any .loc directives. |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 1803 | if (MAI->hasDotLocAndDotFile()) { |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1804 | for (unsigned i = 1, e = getNumSourceIds()+1; i != e; ++i) { |
| 1805 | // Remember source id starts at 1. |
| 1806 | std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(i); |
| 1807 | sys::Path FullPath(getSourceDirectoryName(Id.first)); |
| 1808 | bool AppendOk = |
| 1809 | FullPath.appendComponent(getSourceFileName(Id.second)); |
| 1810 | assert(AppendOk && "Could not append filename to directory!"); |
| 1811 | AppendOk = false; |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 1812 | Asm->EmitFile(i, FullPath.str()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1813 | Asm->EOL(); |
| 1814 | } |
| 1815 | } |
| 1816 | |
| 1817 | // Emit initial sections |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1818 | emitInitial(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1819 | |
| 1820 | if (TimePassesIsEnabled) |
| 1821 | DebugTimer->stopTimer(); |
| 1822 | } |
| 1823 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1824 | /// endModule - Emit all Dwarf sections that should come after the content. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1825 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1826 | void DwarfDebug::endModule() { |
Devang Patel | 6f3dc92 | 2009-10-06 00:03:14 +0000 | [diff] [blame] | 1827 | if (!ModuleCU) |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1828 | return; |
| 1829 | |
| 1830 | if (TimePassesIsEnabled) |
| 1831 | DebugTimer->startTimer(); |
| 1832 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1833 | // Attach DW_AT_inline attribute with inlined subprogram DIEs. |
| 1834 | for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(), |
| 1835 | AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) { |
| 1836 | DIE *ISP = *AI; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1837 | addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1838 | } |
| 1839 | |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1840 | // Insert top level DIEs. |
| 1841 | for (SmallVector<DIE *, 4>::iterator TI = TopLevelDIEsVector.begin(), |
| 1842 | TE = TopLevelDIEsVector.end(); TI != TE; ++TI) |
| 1843 | ModuleCU->getCUDie()->addChild(*TI); |
| 1844 | |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1845 | for (DenseMap<DIE *, WeakVH>::iterator CI = ContainingTypeMap.begin(), |
| 1846 | CE = ContainingTypeMap.end(); CI != CE; ++CI) { |
| 1847 | DIE *SPDie = CI->first; |
| 1848 | MDNode *N = dyn_cast_or_null<MDNode>(CI->second); |
| 1849 | if (!N) continue; |
| 1850 | DIE *NDie = ModuleCU->getDIE(N); |
| 1851 | if (!NDie) continue; |
| 1852 | addDIEEntry(SPDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie); |
| 1853 | addDIEEntry(NDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie); |
| 1854 | } |
| 1855 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1856 | // Standard sections final addresses. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1857 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1858 | EmitLabel("text_end", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1859 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1860 | EmitLabel("data_end", 0); |
| 1861 | |
| 1862 | // End text sections. |
| 1863 | for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1864 | Asm->OutStreamer.SwitchSection(SectionMap[i]); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1865 | EmitLabel("section_end", i); |
| 1866 | } |
| 1867 | |
| 1868 | // Emit common frame information. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1869 | emitCommonDebugFrame(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1870 | |
| 1871 | // Emit function debug frame information |
| 1872 | for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(), |
| 1873 | E = DebugFrames.end(); I != E; ++I) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1874 | emitFunctionDebugFrame(*I); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1875 | |
| 1876 | // Compute DIE offsets and sizes. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1877 | computeSizeAndOffsets(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1878 | |
| 1879 | // Emit all the DIEs into a debug info section |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1880 | emitDebugInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1881 | |
| 1882 | // Corresponding abbreviations into a abbrev section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1883 | emitAbbreviations(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1884 | |
| 1885 | // Emit source line correspondence into a debug line section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1886 | emitDebugLines(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1887 | |
| 1888 | // Emit info into a debug pubnames section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1889 | emitDebugPubNames(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1890 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1891 | // Emit info into a debug pubtypes section. |
| 1892 | emitDebugPubTypes(); |
| 1893 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1894 | // Emit info into a debug str section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1895 | emitDebugStr(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1896 | |
| 1897 | // Emit info into a debug loc section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1898 | emitDebugLoc(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1899 | |
| 1900 | // Emit info into a debug aranges section. |
| 1901 | EmitDebugARanges(); |
| 1902 | |
| 1903 | // Emit info into a debug ranges section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1904 | emitDebugRanges(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1905 | |
| 1906 | // Emit info into a debug macinfo section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1907 | emitDebugMacInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1908 | |
| 1909 | // Emit inline info. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1910 | emitDebugInlineInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1911 | |
| 1912 | if (TimePassesIsEnabled) |
| 1913 | DebugTimer->stopTimer(); |
| 1914 | } |
| 1915 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1916 | /// findAbstractVariable - Find abstract variable, if any, associated with Var. |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 1917 | DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var, |
| 1918 | unsigned FrameIdx, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1919 | DILocation &ScopeLoc) { |
| 1920 | |
| 1921 | DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var.getNode()); |
| 1922 | if (AbsDbgVariable) |
| 1923 | return AbsDbgVariable; |
| 1924 | |
| 1925 | DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope().getNode()); |
| 1926 | if (!Scope) |
| 1927 | return NULL; |
| 1928 | |
| 1929 | AbsDbgVariable = new DbgVariable(Var, FrameIdx); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1930 | Scope->addVariable(AbsDbgVariable); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1931 | AbstractVariables[Var.getNode()] = AbsDbgVariable; |
| 1932 | return AbsDbgVariable; |
| 1933 | } |
| 1934 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1935 | /// collectVariableInfo - Populate DbgScope entries with variables' info. |
| 1936 | void DwarfDebug::collectVariableInfo() { |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 1937 | if (!MMI) return; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1938 | |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 1939 | MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo(); |
| 1940 | for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(), |
| 1941 | VE = VMap.end(); VI != VE; ++VI) { |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 1942 | MetadataBase *MB = VI->first; |
| 1943 | MDNode *Var = dyn_cast_or_null<MDNode>(MB); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1944 | if (!Var) continue; |
Devang Patel | eda3121 | 2009-10-08 18:48:03 +0000 | [diff] [blame] | 1945 | DIVariable DV (Var); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1946 | std::pair< unsigned, MDNode *> VP = VI->second; |
| 1947 | DILocation ScopeLoc(VP.second); |
| 1948 | |
| 1949 | DbgScope *Scope = |
| 1950 | ConcreteScopes.lookup(ScopeLoc.getOrigLocation().getNode()); |
| 1951 | if (!Scope) |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1952 | Scope = DbgScopeMap.lookup(ScopeLoc.getScope().getNode()); |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 1953 | // If variable scope is not found then skip this variable. |
| 1954 | if (!Scope) |
| 1955 | continue; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1956 | |
| 1957 | DbgVariable *RegVar = new DbgVariable(DV, VP.first); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1958 | Scope->addVariable(RegVar); |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 1959 | if (DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.first, |
| 1960 | ScopeLoc)) |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1961 | RegVar->setAbstractVariable(AbsDbgVariable); |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 1962 | } |
| 1963 | } |
| 1964 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1965 | /// beginScope - Process beginning of a scope starting at Label. |
| 1966 | void DwarfDebug::beginScope(const MachineInstr *MI, unsigned Label) { |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1967 | InsnToDbgScopeMapTy::iterator I = DbgScopeBeginMap.find(MI); |
| 1968 | if (I == DbgScopeBeginMap.end()) |
| 1969 | return; |
Dan Gohman | 277207e | 2009-11-23 21:30:55 +0000 | [diff] [blame] | 1970 | ScopeVector &SD = I->second; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1971 | for (ScopeVector::iterator SDI = SD.begin(), SDE = SD.end(); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1972 | SDI != SDE; ++SDI) |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1973 | (*SDI)->setStartLabelID(Label); |
| 1974 | } |
| 1975 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1976 | /// endScope - Process end of a scope. |
| 1977 | void DwarfDebug::endScope(const MachineInstr *MI) { |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1978 | InsnToDbgScopeMapTy::iterator I = DbgScopeEndMap.find(MI); |
Devang Patel | 8a4087d | 2009-10-06 03:15:38 +0000 | [diff] [blame] | 1979 | if (I == DbgScopeEndMap.end()) |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1980 | return; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1981 | |
| 1982 | unsigned Label = MMI->NextLabelID(); |
| 1983 | Asm->printLabel(Label); |
Dan Gohman | eecb991 | 2009-12-05 01:42:34 +0000 | [diff] [blame] | 1984 | O << '\n'; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1985 | |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1986 | SmallVector<DbgScope *, 2> &SD = I->second; |
| 1987 | for (SmallVector<DbgScope *, 2>::iterator SDI = SD.begin(), SDE = SD.end(); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1988 | SDI != SDE; ++SDI) |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1989 | (*SDI)->setEndLabelID(Label); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1990 | return; |
| 1991 | } |
| 1992 | |
| 1993 | /// createDbgScope - Create DbgScope for the scope. |
| 1994 | void DwarfDebug::createDbgScope(MDNode *Scope, MDNode *InlinedAt) { |
| 1995 | |
| 1996 | if (!InlinedAt) { |
| 1997 | DbgScope *WScope = DbgScopeMap.lookup(Scope); |
| 1998 | if (WScope) |
| 1999 | return; |
| 2000 | WScope = new DbgScope(NULL, DIDescriptor(Scope), NULL); |
| 2001 | DbgScopeMap.insert(std::make_pair(Scope, WScope)); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2002 | if (DIDescriptor(Scope).isLexicalBlock()) |
Devang Patel | 2f105c6 | 2009-11-11 00:18:40 +0000 | [diff] [blame] | 2003 | createDbgScope(DILexicalBlock(Scope).getContext().getNode(), NULL); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2004 | return; |
| 2005 | } |
| 2006 | |
| 2007 | DbgScope *WScope = DbgScopeMap.lookup(InlinedAt); |
| 2008 | if (WScope) |
| 2009 | return; |
| 2010 | |
| 2011 | WScope = new DbgScope(NULL, DIDescriptor(Scope), InlinedAt); |
| 2012 | DbgScopeMap.insert(std::make_pair(InlinedAt, WScope)); |
| 2013 | DILocation DL(InlinedAt); |
| 2014 | createDbgScope(DL.getScope().getNode(), DL.getOrigLocation().getNode()); |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 2015 | } |
| 2016 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2017 | /// extractScopeInformation - Scan machine instructions in this function |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2018 | /// and collect DbgScopes. Return true, if atleast one scope was found. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2019 | bool DwarfDebug::extractScopeInformation(MachineFunction *MF) { |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2020 | // If scope information was extracted using .dbg intrinsics then there is not |
| 2021 | // any need to extract these information by scanning each instruction. |
| 2022 | if (!DbgScopeMap.empty()) |
| 2023 | return false; |
| 2024 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2025 | // Scan each instruction and create scopes. First build working set of scopes. |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2026 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 2027 | I != E; ++I) { |
| 2028 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2029 | II != IE; ++II) { |
| 2030 | const MachineInstr *MInsn = II; |
| 2031 | DebugLoc DL = MInsn->getDebugLoc(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2032 | if (DL.isUnknown()) continue; |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2033 | DebugLocTuple DLT = MF->getDebugLocTuple(DL); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2034 | if (!DLT.Scope) continue; |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2035 | // There is no need to create another DIE for compile unit. For all |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2036 | // other scopes, create one DbgScope now. This will be translated |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2037 | // into a scope DIE at the end. |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2038 | if (DIDescriptor(DLT.Scope).isCompileUnit()) continue; |
| 2039 | createDbgScope(DLT.Scope, DLT.InlinedAtLoc); |
| 2040 | } |
| 2041 | } |
| 2042 | |
| 2043 | |
| 2044 | // Build scope hierarchy using working set of scopes. |
| 2045 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 2046 | I != E; ++I) { |
| 2047 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2048 | II != IE; ++II) { |
| 2049 | const MachineInstr *MInsn = II; |
| 2050 | DebugLoc DL = MInsn->getDebugLoc(); |
| 2051 | if (DL.isUnknown()) continue; |
| 2052 | DebugLocTuple DLT = MF->getDebugLocTuple(DL); |
| 2053 | if (!DLT.Scope) continue; |
| 2054 | // There is no need to create another DIE for compile unit. For all |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2055 | // other scopes, create one DbgScope now. This will be translated |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2056 | // into a scope DIE at the end. |
| 2057 | if (DIDescriptor(DLT.Scope).isCompileUnit()) continue; |
| 2058 | DbgScope *Scope = getUpdatedDbgScope(DLT.Scope, MInsn, DLT.InlinedAtLoc); |
| 2059 | Scope->setLastInsn(MInsn); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2060 | } |
| 2061 | } |
| 2062 | |
| 2063 | // If a scope's last instruction is not set then use its child scope's |
| 2064 | // last instruction as this scope's last instrunction. |
Devang Patel | bdf45cb | 2009-10-27 20:47:17 +0000 | [diff] [blame] | 2065 | for (ValueMap<MDNode *, DbgScope *>::iterator DI = DbgScopeMap.begin(), |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2066 | DE = DbgScopeMap.end(); DI != DE; ++DI) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2067 | if (DI->second->isAbstractScope()) |
| 2068 | continue; |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2069 | assert (DI->second->getFirstInsn() && "Invalid first instruction!"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2070 | DI->second->fixInstructionMarkers(); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2071 | assert (DI->second->getLastInsn() && "Invalid last instruction!"); |
| 2072 | } |
| 2073 | |
| 2074 | // Each scope has first instruction and last instruction to mark beginning |
| 2075 | // and end of a scope respectively. Create an inverse map that list scopes |
| 2076 | // starts (and ends) with an instruction. One instruction may start (or end) |
| 2077 | // multiple scopes. |
Devang Patel | bdf45cb | 2009-10-27 20:47:17 +0000 | [diff] [blame] | 2078 | for (ValueMap<MDNode *, DbgScope *>::iterator DI = DbgScopeMap.begin(), |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2079 | DE = DbgScopeMap.end(); DI != DE; ++DI) { |
| 2080 | DbgScope *S = DI->second; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2081 | if (S->isAbstractScope()) |
| 2082 | continue; |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2083 | const MachineInstr *MI = S->getFirstInsn(); |
| 2084 | assert (MI && "DbgScope does not have first instruction!"); |
| 2085 | |
| 2086 | InsnToDbgScopeMapTy::iterator IDI = DbgScopeBeginMap.find(MI); |
| 2087 | if (IDI != DbgScopeBeginMap.end()) |
| 2088 | IDI->second.push_back(S); |
| 2089 | else |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2090 | DbgScopeBeginMap[MI].push_back(S); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2091 | |
| 2092 | MI = S->getLastInsn(); |
| 2093 | assert (MI && "DbgScope does not have last instruction!"); |
| 2094 | IDI = DbgScopeEndMap.find(MI); |
| 2095 | if (IDI != DbgScopeEndMap.end()) |
| 2096 | IDI->second.push_back(S); |
| 2097 | else |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2098 | DbgScopeEndMap[MI].push_back(S); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2099 | } |
| 2100 | |
| 2101 | return !DbgScopeMap.empty(); |
| 2102 | } |
| 2103 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2104 | /// beginFunction - Gather pre-function debug information. Assumes being |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2105 | /// emitted immediately after the function entry point. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2106 | void DwarfDebug::beginFunction(MachineFunction *MF) { |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2107 | this->MF = MF; |
| 2108 | |
| 2109 | if (!ShouldEmitDwarfDebug()) return; |
| 2110 | |
| 2111 | if (TimePassesIsEnabled) |
| 2112 | DebugTimer->startTimer(); |
| 2113 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2114 | if (!extractScopeInformation(MF)) |
Devang Patel | 60b35bd | 2009-10-06 18:37:31 +0000 | [diff] [blame] | 2115 | return; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2116 | |
| 2117 | collectVariableInfo(); |
Devang Patel | 60b35bd | 2009-10-06 18:37:31 +0000 | [diff] [blame] | 2118 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2119 | // Begin accumulating function debug information. |
| 2120 | MMI->BeginFunction(MF); |
| 2121 | |
| 2122 | // Assumes in correct section after the entry point. |
| 2123 | EmitLabel("func_begin", ++SubprogramCount); |
| 2124 | |
| 2125 | // Emit label for the implicitly defined dbg.stoppoint at the start of the |
| 2126 | // function. |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 2127 | DebugLoc FDL = MF->getDefaultDebugLoc(); |
| 2128 | if (!FDL.isUnknown()) { |
| 2129 | DebugLocTuple DLT = MF->getDebugLocTuple(FDL); |
| 2130 | unsigned LabelID = 0; |
Devang Patel | 1619dc3 | 2009-10-13 23:28:53 +0000 | [diff] [blame] | 2131 | DISubprogram SP = getDISubprogram(DLT.Scope); |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 2132 | if (!SP.isNull()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2133 | LabelID = recordSourceLine(SP.getLineNumber(), 0, DLT.Scope); |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 2134 | else |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2135 | LabelID = recordSourceLine(DLT.Line, DLT.Col, DLT.Scope); |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 2136 | Asm->printLabel(LabelID); |
| 2137 | O << '\n'; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2138 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2139 | if (TimePassesIsEnabled) |
| 2140 | DebugTimer->stopTimer(); |
| 2141 | } |
| 2142 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2143 | /// endFunction - Gather and emit post-function debug information. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2144 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2145 | void DwarfDebug::endFunction(MachineFunction *MF) { |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2146 | if (!ShouldEmitDwarfDebug()) return; |
| 2147 | |
| 2148 | if (TimePassesIsEnabled) |
| 2149 | DebugTimer->startTimer(); |
| 2150 | |
Devang Patel | ac1ceb3 | 2009-10-09 22:42:28 +0000 | [diff] [blame] | 2151 | if (DbgScopeMap.empty()) |
| 2152 | return; |
Devang Patel | 70d75ca | 2009-11-12 19:02:56 +0000 | [diff] [blame] | 2153 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2154 | // Define end label for subprogram. |
| 2155 | EmitLabel("func_end", SubprogramCount); |
| 2156 | |
| 2157 | // Get function line info. |
| 2158 | if (!Lines.empty()) { |
| 2159 | // Get section line info. |
Chris Lattner | 290c2f5 | 2009-08-03 23:20:21 +0000 | [diff] [blame] | 2160 | unsigned ID = SectionMap.insert(Asm->getCurrentSection()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2161 | if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID); |
| 2162 | std::vector<SrcLineInfo> &SectionLineInfos = SectionSourceLines[ID-1]; |
| 2163 | // Append the function info to section info. |
| 2164 | SectionLineInfos.insert(SectionLineInfos.end(), |
| 2165 | Lines.begin(), Lines.end()); |
| 2166 | } |
| 2167 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2168 | // Construct abstract scopes. |
| 2169 | for (SmallVector<DbgScope *, 4>::iterator AI = AbstractScopesList.begin(), |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2170 | AE = AbstractScopesList.end(); AI != AE; ++AI) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2171 | constructScopeDIE(*AI); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2172 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2173 | constructScopeDIE(CurrentFnDbgScope); |
Devang Patel | 70d75ca | 2009-11-12 19:02:56 +0000 | [diff] [blame] | 2174 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2175 | DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount, |
| 2176 | MMI->getFrameMoves())); |
| 2177 | |
| 2178 | // Clear debug info |
Devang Patel | c09ddc1 | 2009-12-01 18:13:48 +0000 | [diff] [blame] | 2179 | CurrentFnDbgScope = NULL; |
| 2180 | DbgScopeMap.clear(); |
| 2181 | DbgScopeBeginMap.clear(); |
| 2182 | DbgScopeEndMap.clear(); |
| 2183 | ConcreteScopes.clear(); |
| 2184 | AbstractScopesList.clear(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2185 | |
| 2186 | Lines.clear(); |
Devang Patel | c09ddc1 | 2009-12-01 18:13:48 +0000 | [diff] [blame] | 2187 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2188 | if (TimePassesIsEnabled) |
| 2189 | DebugTimer->stopTimer(); |
| 2190 | } |
| 2191 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2192 | /// recordSourceLine - Records location information and associates it with a |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2193 | /// label. Returns a unique label ID used to generate a label and provide |
| 2194 | /// correspondence to the source line list. |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2195 | unsigned DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, |
Devang Patel | f84548d | 2009-10-05 18:03:19 +0000 | [diff] [blame] | 2196 | MDNode *S) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 2197 | if (!MMI) |
| 2198 | return 0; |
| 2199 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2200 | if (TimePassesIsEnabled) |
| 2201 | DebugTimer->startTimer(); |
| 2202 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 2203 | StringRef Dir; |
| 2204 | StringRef Fn; |
Devang Patel | f84548d | 2009-10-05 18:03:19 +0000 | [diff] [blame] | 2205 | |
| 2206 | DIDescriptor Scope(S); |
| 2207 | if (Scope.isCompileUnit()) { |
| 2208 | DICompileUnit CU(S); |
| 2209 | Dir = CU.getDirectory(); |
| 2210 | Fn = CU.getFilename(); |
| 2211 | } else if (Scope.isSubprogram()) { |
| 2212 | DISubprogram SP(S); |
| 2213 | Dir = SP.getDirectory(); |
| 2214 | Fn = SP.getFilename(); |
| 2215 | } else if (Scope.isLexicalBlock()) { |
| 2216 | DILexicalBlock DB(S); |
| 2217 | Dir = DB.getDirectory(); |
| 2218 | Fn = DB.getFilename(); |
| 2219 | } else |
| 2220 | assert (0 && "Unexpected scope info"); |
| 2221 | |
| 2222 | unsigned Src = GetOrCreateSourceID(Dir, Fn); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2223 | unsigned ID = MMI->NextLabelID(); |
| 2224 | Lines.push_back(SrcLineInfo(Line, Col, Src, ID)); |
| 2225 | |
| 2226 | if (TimePassesIsEnabled) |
| 2227 | DebugTimer->stopTimer(); |
| 2228 | |
| 2229 | return ID; |
| 2230 | } |
| 2231 | |
| 2232 | /// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be |
| 2233 | /// timed. Look up the source id with the given directory and source file |
| 2234 | /// names. If none currently exists, create a new id and insert it in the |
| 2235 | /// SourceIds map. This can update DirectoryNames and SourceFileNames maps as |
| 2236 | /// well. |
| 2237 | unsigned DwarfDebug::getOrCreateSourceID(const std::string &DirName, |
| 2238 | const std::string &FileName) { |
| 2239 | if (TimePassesIsEnabled) |
| 2240 | DebugTimer->startTimer(); |
| 2241 | |
Devang Patel | 5ccdd10 | 2009-09-29 18:40:58 +0000 | [diff] [blame] | 2242 | unsigned SrcId = GetOrCreateSourceID(DirName.c_str(), FileName.c_str()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2243 | |
| 2244 | if (TimePassesIsEnabled) |
| 2245 | DebugTimer->stopTimer(); |
| 2246 | |
| 2247 | return SrcId; |
| 2248 | } |
| 2249 | |
Bill Wendling | 829e67b | 2009-05-20 23:22:40 +0000 | [diff] [blame] | 2250 | //===----------------------------------------------------------------------===// |
| 2251 | // Emit Methods |
| 2252 | //===----------------------------------------------------------------------===// |
| 2253 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2254 | /// computeSizeAndOffset - Compute the size and offset of a DIE. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2255 | /// |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 2256 | unsigned |
| 2257 | DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2258 | // Get the children. |
| 2259 | const std::vector<DIE *> &Children = Die->getChildren(); |
| 2260 | |
| 2261 | // If not last sibling and has children then add sibling offset attribute. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2262 | if (!Last && !Children.empty()) Die->addSiblingOffset(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2263 | |
| 2264 | // Record the abbreviation. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2265 | assignAbbrevNumber(Die->getAbbrev()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2266 | |
| 2267 | // Get the abbreviation for this DIE. |
| 2268 | unsigned AbbrevNumber = Die->getAbbrevNumber(); |
| 2269 | const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; |
| 2270 | |
| 2271 | // Set DIE offset |
| 2272 | Die->setOffset(Offset); |
| 2273 | |
| 2274 | // Start the size with the size of abbreviation code. |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 2275 | Offset += MCAsmInfo::getULEB128Size(AbbrevNumber); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2276 | |
| 2277 | const SmallVector<DIEValue*, 32> &Values = Die->getValues(); |
| 2278 | const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData(); |
| 2279 | |
| 2280 | // Size the DIE attribute values. |
| 2281 | for (unsigned i = 0, N = Values.size(); i < N; ++i) |
| 2282 | // Size attribute value. |
| 2283 | Offset += Values[i]->SizeOf(TD, AbbrevData[i].getForm()); |
| 2284 | |
| 2285 | // Size the DIE children if any. |
| 2286 | if (!Children.empty()) { |
| 2287 | assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes && |
| 2288 | "Children flag not set"); |
| 2289 | |
| 2290 | for (unsigned j = 0, M = Children.size(); j < M; ++j) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2291 | Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2292 | |
| 2293 | // End of children marker. |
| 2294 | Offset += sizeof(int8_t); |
| 2295 | } |
| 2296 | |
| 2297 | Die->setSize(Offset - Die->getOffset()); |
| 2298 | return Offset; |
| 2299 | } |
| 2300 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2301 | /// computeSizeAndOffsets - Compute the size and offset of all the DIEs. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2302 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2303 | void DwarfDebug::computeSizeAndOffsets() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2304 | // Compute size of compile unit header. |
| 2305 | static unsigned Offset = |
| 2306 | sizeof(int32_t) + // Length of Compilation Unit Info |
| 2307 | sizeof(int16_t) + // DWARF version number |
| 2308 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 2309 | sizeof(int8_t); // Pointer Size (in bytes) |
| 2310 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2311 | computeSizeAndOffset(ModuleCU->getCUDie(), Offset, true); |
Devang Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 2312 | CompileUnitOffsets[ModuleCU] = 0; |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2313 | } |
| 2314 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2315 | /// emitInitial - Emit initial Dwarf declarations. This is necessary for cc |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2316 | /// tools to recognize the object file contains Dwarf information. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2317 | void DwarfDebug::emitInitial() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2318 | // Check to see if we already emitted intial headers. |
| 2319 | if (didInitial) return; |
| 2320 | didInitial = true; |
| 2321 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2322 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 2323 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2324 | // Dwarf sections base addresses. |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2325 | if (MAI->doesDwarfRequireFrameSection()) { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2326 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfFrameSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2327 | EmitLabel("section_debug_frame", 0); |
| 2328 | } |
| 2329 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2330 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfInfoSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2331 | EmitLabel("section_info", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2332 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfAbbrevSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2333 | EmitLabel("section_abbrev", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2334 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfARangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2335 | EmitLabel("section_aranges", 0); |
| 2336 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2337 | if (const MCSection *LineInfoDirective = TLOF.getDwarfMacroInfoSection()) { |
| 2338 | Asm->OutStreamer.SwitchSection(LineInfoDirective); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2339 | EmitLabel("section_macinfo", 0); |
| 2340 | } |
| 2341 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2342 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfLineSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2343 | EmitLabel("section_line", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2344 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfLocSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2345 | EmitLabel("section_loc", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2346 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfPubNamesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2347 | EmitLabel("section_pubnames", 0); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 2348 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfPubTypesSection()); |
| 2349 | EmitLabel("section_pubtypes", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2350 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfStrSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2351 | EmitLabel("section_str", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2352 | Asm->OutStreamer.SwitchSection(TLOF.getDwarfRangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2353 | EmitLabel("section_ranges", 0); |
| 2354 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2355 | Asm->OutStreamer.SwitchSection(TLOF.getTextSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2356 | EmitLabel("text_begin", 0); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2357 | Asm->OutStreamer.SwitchSection(TLOF.getDataSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2358 | EmitLabel("data_begin", 0); |
| 2359 | } |
| 2360 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2361 | /// emitDIE - Recusively Emits a debug information entry. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2362 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2363 | void DwarfDebug::emitDIE(DIE *Die) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2364 | // Get the abbreviation for this DIE. |
| 2365 | unsigned AbbrevNumber = Die->getAbbrevNumber(); |
| 2366 | const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; |
| 2367 | |
| 2368 | Asm->EOL(); |
| 2369 | |
| 2370 | // Emit the code (index) for the abbreviation. |
| 2371 | Asm->EmitULEB128Bytes(AbbrevNumber); |
| 2372 | |
| 2373 | if (Asm->isVerbose()) |
| 2374 | Asm->EOL(std::string("Abbrev [" + |
| 2375 | utostr(AbbrevNumber) + |
| 2376 | "] 0x" + utohexstr(Die->getOffset()) + |
| 2377 | ":0x" + utohexstr(Die->getSize()) + " " + |
| 2378 | dwarf::TagString(Abbrev->getTag()))); |
| 2379 | else |
| 2380 | Asm->EOL(); |
| 2381 | |
| 2382 | SmallVector<DIEValue*, 32> &Values = Die->getValues(); |
| 2383 | const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData(); |
| 2384 | |
| 2385 | // Emit the DIE attribute values. |
| 2386 | for (unsigned i = 0, N = Values.size(); i < N; ++i) { |
| 2387 | unsigned Attr = AbbrevData[i].getAttribute(); |
| 2388 | unsigned Form = AbbrevData[i].getForm(); |
| 2389 | assert(Form && "Too many attributes for DIE (check abbreviation)"); |
| 2390 | |
| 2391 | switch (Attr) { |
| 2392 | case dwarf::DW_AT_sibling: |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2393 | Asm->EmitInt32(Die->getSiblingOffset()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2394 | break; |
| 2395 | case dwarf::DW_AT_abstract_origin: { |
| 2396 | DIEEntry *E = cast<DIEEntry>(Values[i]); |
| 2397 | DIE *Origin = E->getEntry(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2398 | unsigned Addr = Origin->getOffset(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2399 | Asm->EmitInt32(Addr); |
| 2400 | break; |
| 2401 | } |
| 2402 | default: |
| 2403 | // Emit an attribute using the defined form. |
| 2404 | Values[i]->EmitValue(this, Form); |
| 2405 | break; |
| 2406 | } |
| 2407 | |
| 2408 | Asm->EOL(dwarf::AttributeString(Attr)); |
| 2409 | } |
| 2410 | |
| 2411 | // Emit the DIE children if any. |
| 2412 | if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) { |
| 2413 | const std::vector<DIE *> &Children = Die->getChildren(); |
| 2414 | |
| 2415 | for (unsigned j = 0, M = Children.size(); j < M; ++j) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2416 | emitDIE(Children[j]); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2417 | |
| 2418 | Asm->EmitInt8(0); Asm->EOL("End Of Children Mark"); |
| 2419 | } |
| 2420 | } |
| 2421 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2422 | /// emitDebugInfo / emitDebugInfoPerCU - Emit the debug info section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2423 | /// |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2424 | void DwarfDebug::emitDebugInfoPerCU(CompileUnit *Unit) { |
| 2425 | DIE *Die = Unit->getCUDie(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2426 | |
| 2427 | // Emit the compile units header. |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2428 | EmitLabel("info_begin", Unit->getID()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2429 | |
| 2430 | // Emit size of content not including length itself |
| 2431 | unsigned ContentSize = Die->getSize() + |
| 2432 | sizeof(int16_t) + // DWARF version number |
| 2433 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 2434 | sizeof(int8_t) + // Pointer Size (in bytes) |
| 2435 | sizeof(int32_t); // FIXME - extra pad for gdb bug. |
| 2436 | |
| 2437 | Asm->EmitInt32(ContentSize); Asm->EOL("Length of Compilation Unit Info"); |
| 2438 | Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF version number"); |
| 2439 | EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false); |
| 2440 | Asm->EOL("Offset Into Abbrev. Section"); |
| 2441 | Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)"); |
| 2442 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2443 | emitDIE(Die); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2444 | // FIXME - extra padding for gdb bug. |
| 2445 | Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB"); |
| 2446 | Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB"); |
| 2447 | Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB"); |
| 2448 | Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB"); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2449 | EmitLabel("info_end", Unit->getID()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2450 | |
| 2451 | Asm->EOL(); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2452 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2453 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2454 | void DwarfDebug::emitDebugInfo() { |
| 2455 | // Start debug info section. |
| 2456 | Asm->OutStreamer.SwitchSection( |
| 2457 | Asm->getObjFileLowering().getDwarfInfoSection()); |
| 2458 | |
| 2459 | emitDebugInfoPerCU(ModuleCU); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2460 | } |
| 2461 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2462 | /// emitAbbreviations - Emit the abbreviation section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2463 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2464 | void DwarfDebug::emitAbbreviations() const { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2465 | // Check to see if it is worth the effort. |
| 2466 | if (!Abbreviations.empty()) { |
| 2467 | // Start the debug abbrev section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2468 | Asm->OutStreamer.SwitchSection( |
| 2469 | Asm->getObjFileLowering().getDwarfAbbrevSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2470 | |
| 2471 | EmitLabel("abbrev_begin", 0); |
| 2472 | |
| 2473 | // For each abbrevation. |
| 2474 | for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) { |
| 2475 | // Get abbreviation data |
| 2476 | const DIEAbbrev *Abbrev = Abbreviations[i]; |
| 2477 | |
| 2478 | // Emit the abbrevations code (base 1 index.) |
| 2479 | Asm->EmitULEB128Bytes(Abbrev->getNumber()); |
| 2480 | Asm->EOL("Abbreviation Code"); |
| 2481 | |
| 2482 | // Emit the abbreviations data. |
| 2483 | Abbrev->Emit(Asm); |
| 2484 | |
| 2485 | Asm->EOL(); |
| 2486 | } |
| 2487 | |
| 2488 | // Mark end of abbreviations. |
| 2489 | Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)"); |
| 2490 | |
| 2491 | EmitLabel("abbrev_end", 0); |
| 2492 | Asm->EOL(); |
| 2493 | } |
| 2494 | } |
| 2495 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2496 | /// emitEndOfLineMatrix - Emit the last address of the section and the end of |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2497 | /// the line matrix. |
| 2498 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2499 | void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2500 | // Define last address of section. |
| 2501 | Asm->EmitInt8(0); Asm->EOL("Extended Op"); |
| 2502 | Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size"); |
| 2503 | Asm->EmitInt8(dwarf::DW_LNE_set_address); Asm->EOL("DW_LNE_set_address"); |
| 2504 | EmitReference("section_end", SectionEnd); Asm->EOL("Section end label"); |
| 2505 | |
| 2506 | // Mark end of matrix. |
| 2507 | Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence"); |
| 2508 | Asm->EmitULEB128Bytes(1); Asm->EOL(); |
| 2509 | Asm->EmitInt8(1); Asm->EOL(); |
| 2510 | } |
| 2511 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2512 | /// emitDebugLines - Emit source line information. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2513 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2514 | void DwarfDebug::emitDebugLines() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2515 | // If the target is using .loc/.file, the assembler will be emitting the |
| 2516 | // .debug_line table automatically. |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2517 | if (MAI->hasDotLocAndDotFile()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2518 | return; |
| 2519 | |
| 2520 | // Minimum line delta, thus ranging from -10..(255-10). |
| 2521 | const int MinLineDelta = -(dwarf::DW_LNS_fixed_advance_pc + 1); |
| 2522 | // Maximum line delta, thus ranging from -10..(255-10). |
| 2523 | const int MaxLineDelta = 255 + MinLineDelta; |
| 2524 | |
| 2525 | // Start the dwarf line section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2526 | Asm->OutStreamer.SwitchSection( |
| 2527 | Asm->getObjFileLowering().getDwarfLineSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2528 | |
| 2529 | // Construct the section header. |
| 2530 | EmitDifference("line_end", 0, "line_begin", 0, true); |
| 2531 | Asm->EOL("Length of Source Line Info"); |
| 2532 | EmitLabel("line_begin", 0); |
| 2533 | |
| 2534 | Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF version number"); |
| 2535 | |
| 2536 | EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true); |
| 2537 | Asm->EOL("Prolog Length"); |
| 2538 | EmitLabel("line_prolog_begin", 0); |
| 2539 | |
| 2540 | Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length"); |
| 2541 | |
| 2542 | Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag"); |
| 2543 | |
| 2544 | Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)"); |
| 2545 | |
| 2546 | Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)"); |
| 2547 | |
| 2548 | Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base"); |
| 2549 | |
| 2550 | // Line number standard opcode encodings argument count |
| 2551 | Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count"); |
| 2552 | Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count"); |
| 2553 | Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count"); |
| 2554 | Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count"); |
| 2555 | Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count"); |
| 2556 | Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count"); |
| 2557 | Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count"); |
| 2558 | Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count"); |
| 2559 | Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count"); |
| 2560 | |
| 2561 | // Emit directories. |
| 2562 | for (unsigned DI = 1, DE = getNumSourceDirectories()+1; DI != DE; ++DI) { |
| 2563 | Asm->EmitString(getSourceDirectoryName(DI)); |
| 2564 | Asm->EOL("Directory"); |
| 2565 | } |
| 2566 | |
| 2567 | Asm->EmitInt8(0); Asm->EOL("End of directories"); |
| 2568 | |
| 2569 | // Emit files. |
| 2570 | for (unsigned SI = 1, SE = getNumSourceIds()+1; SI != SE; ++SI) { |
| 2571 | // Remember source id starts at 1. |
| 2572 | std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(SI); |
| 2573 | Asm->EmitString(getSourceFileName(Id.second)); |
| 2574 | Asm->EOL("Source"); |
| 2575 | Asm->EmitULEB128Bytes(Id.first); |
| 2576 | Asm->EOL("Directory #"); |
| 2577 | Asm->EmitULEB128Bytes(0); |
| 2578 | Asm->EOL("Mod date"); |
| 2579 | Asm->EmitULEB128Bytes(0); |
| 2580 | Asm->EOL("File size"); |
| 2581 | } |
| 2582 | |
| 2583 | Asm->EmitInt8(0); Asm->EOL("End of files"); |
| 2584 | |
| 2585 | EmitLabel("line_prolog_end", 0); |
| 2586 | |
| 2587 | // A sequence for each text section. |
| 2588 | unsigned SecSrcLinesSize = SectionSourceLines.size(); |
| 2589 | |
| 2590 | for (unsigned j = 0; j < SecSrcLinesSize; ++j) { |
| 2591 | // Isolate current sections line info. |
| 2592 | const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j]; |
| 2593 | |
Chris Lattner | 93b6db3 | 2009-08-08 23:39:42 +0000 | [diff] [blame] | 2594 | /*if (Asm->isVerbose()) { |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 2595 | const MCSection *S = SectionMap[j + 1]; |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2596 | O << '\t' << MAI->getCommentString() << " Section" |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2597 | << S->getName() << '\n'; |
Chris Lattner | 93b6db3 | 2009-08-08 23:39:42 +0000 | [diff] [blame] | 2598 | }*/ |
| 2599 | Asm->EOL(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2600 | |
| 2601 | // Dwarf assumes we start with first line of first source file. |
| 2602 | unsigned Source = 1; |
| 2603 | unsigned Line = 1; |
| 2604 | |
| 2605 | // Construct rows of the address, source, line, column matrix. |
| 2606 | for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) { |
| 2607 | const SrcLineInfo &LineInfo = LineInfos[i]; |
| 2608 | unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID()); |
| 2609 | if (!LabelID) continue; |
| 2610 | |
Caroline Tice | c6f9d62 | 2009-09-11 18:25:54 +0000 | [diff] [blame] | 2611 | if (LineInfo.getLine() == 0) continue; |
| 2612 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2613 | if (!Asm->isVerbose()) |
| 2614 | Asm->EOL(); |
| 2615 | else { |
| 2616 | std::pair<unsigned, unsigned> SourceID = |
| 2617 | getSourceDirectoryAndFileIds(LineInfo.getSourceID()); |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2618 | O << '\t' << MAI->getCommentString() << ' ' |
Dan Gohman | b3b9821 | 2009-12-05 02:00:34 +0000 | [diff] [blame] | 2619 | << getSourceDirectoryName(SourceID.first) << '/' |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2620 | << getSourceFileName(SourceID.second) |
Dan Gohman | b3b9821 | 2009-12-05 02:00:34 +0000 | [diff] [blame] | 2621 | << ':' << utostr_32(LineInfo.getLine()) << '\n'; |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2622 | } |
| 2623 | |
| 2624 | // Define the line address. |
| 2625 | Asm->EmitInt8(0); Asm->EOL("Extended Op"); |
| 2626 | Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size"); |
| 2627 | Asm->EmitInt8(dwarf::DW_LNE_set_address); Asm->EOL("DW_LNE_set_address"); |
| 2628 | EmitReference("label", LabelID); Asm->EOL("Location label"); |
| 2629 | |
| 2630 | // If change of source, then switch to the new source. |
| 2631 | if (Source != LineInfo.getSourceID()) { |
| 2632 | Source = LineInfo.getSourceID(); |
| 2633 | Asm->EmitInt8(dwarf::DW_LNS_set_file); Asm->EOL("DW_LNS_set_file"); |
| 2634 | Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source"); |
| 2635 | } |
| 2636 | |
| 2637 | // If change of line. |
| 2638 | if (Line != LineInfo.getLine()) { |
| 2639 | // Determine offset. |
| 2640 | int Offset = LineInfo.getLine() - Line; |
| 2641 | int Delta = Offset - MinLineDelta; |
| 2642 | |
| 2643 | // Update line. |
| 2644 | Line = LineInfo.getLine(); |
| 2645 | |
| 2646 | // If delta is small enough and in range... |
| 2647 | if (Delta >= 0 && Delta < (MaxLineDelta - 1)) { |
| 2648 | // ... then use fast opcode. |
| 2649 | Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta"); |
| 2650 | } else { |
| 2651 | // ... otherwise use long hand. |
| 2652 | Asm->EmitInt8(dwarf::DW_LNS_advance_line); |
| 2653 | Asm->EOL("DW_LNS_advance_line"); |
| 2654 | Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset"); |
| 2655 | Asm->EmitInt8(dwarf::DW_LNS_copy); Asm->EOL("DW_LNS_copy"); |
| 2656 | } |
| 2657 | } else { |
| 2658 | // Copy the previous row (different address or source) |
| 2659 | Asm->EmitInt8(dwarf::DW_LNS_copy); Asm->EOL("DW_LNS_copy"); |
| 2660 | } |
| 2661 | } |
| 2662 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2663 | emitEndOfLineMatrix(j + 1); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2664 | } |
| 2665 | |
| 2666 | if (SecSrcLinesSize == 0) |
| 2667 | // Because we're emitting a debug_line section, we still need a line |
| 2668 | // table. The linker and friends expect it to exist. If there's nothing to |
| 2669 | // put into it, emit an empty table. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2670 | emitEndOfLineMatrix(1); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2671 | |
| 2672 | EmitLabel("line_end", 0); |
| 2673 | Asm->EOL(); |
| 2674 | } |
| 2675 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2676 | /// emitCommonDebugFrame - Emit common frame info into a debug frame section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2677 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2678 | void DwarfDebug::emitCommonDebugFrame() { |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2679 | if (!MAI->doesDwarfRequireFrameSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2680 | return; |
| 2681 | |
| 2682 | int stackGrowth = |
| 2683 | Asm->TM.getFrameInfo()->getStackGrowthDirection() == |
| 2684 | TargetFrameInfo::StackGrowsUp ? |
| 2685 | TD->getPointerSize() : -TD->getPointerSize(); |
| 2686 | |
| 2687 | // Start the dwarf frame section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2688 | Asm->OutStreamer.SwitchSection( |
| 2689 | Asm->getObjFileLowering().getDwarfFrameSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2690 | |
| 2691 | EmitLabel("debug_frame_common", 0); |
| 2692 | EmitDifference("debug_frame_common_end", 0, |
| 2693 | "debug_frame_common_begin", 0, true); |
| 2694 | Asm->EOL("Length of Common Information Entry"); |
| 2695 | |
| 2696 | EmitLabel("debug_frame_common_begin", 0); |
| 2697 | Asm->EmitInt32((int)dwarf::DW_CIE_ID); |
| 2698 | Asm->EOL("CIE Identifier Tag"); |
| 2699 | Asm->EmitInt8(dwarf::DW_CIE_VERSION); |
| 2700 | Asm->EOL("CIE Version"); |
| 2701 | Asm->EmitString(""); |
| 2702 | Asm->EOL("CIE Augmentation"); |
| 2703 | Asm->EmitULEB128Bytes(1); |
| 2704 | Asm->EOL("CIE Code Alignment Factor"); |
| 2705 | Asm->EmitSLEB128Bytes(stackGrowth); |
| 2706 | Asm->EOL("CIE Data Alignment Factor"); |
| 2707 | Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false)); |
| 2708 | Asm->EOL("CIE RA Column"); |
| 2709 | |
| 2710 | std::vector<MachineMove> Moves; |
| 2711 | RI->getInitialFrameState(Moves); |
| 2712 | |
| 2713 | EmitFrameMoves(NULL, 0, Moves, false); |
| 2714 | |
| 2715 | Asm->EmitAlignment(2, 0, 0, false); |
| 2716 | EmitLabel("debug_frame_common_end", 0); |
| 2717 | |
| 2718 | Asm->EOL(); |
| 2719 | } |
| 2720 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2721 | /// emitFunctionDebugFrame - Emit per function frame info into a debug frame |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2722 | /// section. |
| 2723 | void |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2724 | DwarfDebug::emitFunctionDebugFrame(const FunctionDebugFrameInfo&DebugFrameInfo){ |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2725 | if (!MAI->doesDwarfRequireFrameSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2726 | return; |
| 2727 | |
| 2728 | // Start the dwarf frame section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2729 | Asm->OutStreamer.SwitchSection( |
| 2730 | Asm->getObjFileLowering().getDwarfFrameSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2731 | |
| 2732 | EmitDifference("debug_frame_end", DebugFrameInfo.Number, |
| 2733 | "debug_frame_begin", DebugFrameInfo.Number, true); |
| 2734 | Asm->EOL("Length of Frame Information Entry"); |
| 2735 | |
| 2736 | EmitLabel("debug_frame_begin", DebugFrameInfo.Number); |
| 2737 | |
| 2738 | EmitSectionOffset("debug_frame_common", "section_debug_frame", |
| 2739 | 0, 0, true, false); |
| 2740 | Asm->EOL("FDE CIE offset"); |
| 2741 | |
| 2742 | EmitReference("func_begin", DebugFrameInfo.Number); |
| 2743 | Asm->EOL("FDE initial location"); |
| 2744 | EmitDifference("func_end", DebugFrameInfo.Number, |
| 2745 | "func_begin", DebugFrameInfo.Number); |
| 2746 | Asm->EOL("FDE address range"); |
| 2747 | |
| 2748 | EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves, |
| 2749 | false); |
| 2750 | |
| 2751 | Asm->EmitAlignment(2, 0, 0, false); |
| 2752 | EmitLabel("debug_frame_end", DebugFrameInfo.Number); |
| 2753 | |
| 2754 | Asm->EOL(); |
| 2755 | } |
| 2756 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2757 | void DwarfDebug::emitDebugPubNamesPerCU(CompileUnit *Unit) { |
| 2758 | EmitDifference("pubnames_end", Unit->getID(), |
| 2759 | "pubnames_begin", Unit->getID(), true); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2760 | Asm->EOL("Length of Public Names Info"); |
| 2761 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2762 | EmitLabel("pubnames_begin", Unit->getID()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2763 | |
| 2764 | Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF Version"); |
| 2765 | |
| 2766 | EmitSectionOffset("info_begin", "section_info", |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2767 | Unit->getID(), 0, true, false); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2768 | Asm->EOL("Offset of Compilation Unit Info"); |
| 2769 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2770 | EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(), |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2771 | true); |
| 2772 | Asm->EOL("Compilation Unit Length"); |
| 2773 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2774 | const StringMap<DIE*> &Globals = Unit->getGlobals(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2775 | for (StringMap<DIE*>::const_iterator |
| 2776 | GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) { |
| 2777 | const char *Name = GI->getKeyData(); |
| 2778 | DIE * Entity = GI->second; |
| 2779 | |
| 2780 | Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset"); |
| 2781 | Asm->EmitString(Name, strlen(Name)); Asm->EOL("External Name"); |
| 2782 | } |
| 2783 | |
| 2784 | Asm->EmitInt32(0); Asm->EOL("End Mark"); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2785 | EmitLabel("pubnames_end", Unit->getID()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2786 | |
| 2787 | Asm->EOL(); |
| 2788 | } |
| 2789 | |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame^] | 2790 | /// emitDebugPubNames - Emit visible names into a debug pubnames section. |
| 2791 | /// |
| 2792 | void DwarfDebug::emitDebugPubNames() { |
| 2793 | // Start the dwarf pubnames section. |
| 2794 | Asm->OutStreamer.SwitchSection( |
| 2795 | Asm->getObjFileLowering().getDwarfPubNamesSection()); |
| 2796 | |
| 2797 | emitDebugPubNamesPerCU(ModuleCU); |
| 2798 | } |
| 2799 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 2800 | void DwarfDebug::emitDebugPubTypes() { |
Devang Patel | f3a0376 | 2009-11-24 19:18:41 +0000 | [diff] [blame] | 2801 | // Start the dwarf pubnames section. |
| 2802 | Asm->OutStreamer.SwitchSection( |
| 2803 | Asm->getObjFileLowering().getDwarfPubTypesSection()); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 2804 | EmitDifference("pubtypes_end", ModuleCU->getID(), |
| 2805 | "pubtypes_begin", ModuleCU->getID(), true); |
| 2806 | Asm->EOL("Length of Public Types Info"); |
| 2807 | |
| 2808 | EmitLabel("pubtypes_begin", ModuleCU->getID()); |
| 2809 | |
| 2810 | Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF Version"); |
| 2811 | |
| 2812 | EmitSectionOffset("info_begin", "section_info", |
| 2813 | ModuleCU->getID(), 0, true, false); |
| 2814 | Asm->EOL("Offset of Compilation ModuleCU Info"); |
| 2815 | |
| 2816 | EmitDifference("info_end", ModuleCU->getID(), "info_begin", ModuleCU->getID(), |
| 2817 | true); |
| 2818 | Asm->EOL("Compilation ModuleCU Length"); |
| 2819 | |
| 2820 | const StringMap<DIE*> &Globals = ModuleCU->getGlobalTypes(); |
| 2821 | for (StringMap<DIE*>::const_iterator |
| 2822 | GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) { |
| 2823 | const char *Name = GI->getKeyData(); |
| 2824 | DIE * Entity = GI->second; |
| 2825 | |
| 2826 | Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset"); |
| 2827 | Asm->EmitString(Name, strlen(Name)); Asm->EOL("External Name"); |
| 2828 | } |
| 2829 | |
| 2830 | Asm->EmitInt32(0); Asm->EOL("End Mark"); |
| 2831 | EmitLabel("pubtypes_end", ModuleCU->getID()); |
| 2832 | |
| 2833 | Asm->EOL(); |
| 2834 | } |
| 2835 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2836 | /// emitDebugStr - Emit visible names into a debug str section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2837 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2838 | void DwarfDebug::emitDebugStr() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2839 | // Check to see if it is worth the effort. |
| 2840 | if (!StringPool.empty()) { |
| 2841 | // Start the dwarf str section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2842 | Asm->OutStreamer.SwitchSection( |
| 2843 | Asm->getObjFileLowering().getDwarfStrSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2844 | |
| 2845 | // For each of strings in the string pool. |
| 2846 | for (unsigned StringID = 1, N = StringPool.size(); |
| 2847 | StringID <= N; ++StringID) { |
| 2848 | // Emit a label for reference from debug information entries. |
| 2849 | EmitLabel("string", StringID); |
| 2850 | |
| 2851 | // Emit the string itself. |
| 2852 | const std::string &String = StringPool[StringID]; |
| 2853 | Asm->EmitString(String); Asm->EOL(); |
| 2854 | } |
| 2855 | |
| 2856 | Asm->EOL(); |
| 2857 | } |
| 2858 | } |
| 2859 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2860 | /// emitDebugLoc - Emit visible names into a debug loc section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2861 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2862 | void DwarfDebug::emitDebugLoc() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2863 | // Start the dwarf loc section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2864 | Asm->OutStreamer.SwitchSection( |
| 2865 | Asm->getObjFileLowering().getDwarfLocSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2866 | Asm->EOL(); |
| 2867 | } |
| 2868 | |
| 2869 | /// EmitDebugARanges - Emit visible names into a debug aranges section. |
| 2870 | /// |
| 2871 | void DwarfDebug::EmitDebugARanges() { |
| 2872 | // Start the dwarf aranges section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2873 | Asm->OutStreamer.SwitchSection( |
| 2874 | Asm->getObjFileLowering().getDwarfARangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2875 | |
| 2876 | // FIXME - Mock up |
| 2877 | #if 0 |
| 2878 | CompileUnit *Unit = GetBaseCompileUnit(); |
| 2879 | |
| 2880 | // Don't include size of length |
| 2881 | Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info"); |
| 2882 | |
| 2883 | Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("Dwarf Version"); |
| 2884 | |
| 2885 | EmitReference("info_begin", Unit->getID()); |
| 2886 | Asm->EOL("Offset of Compilation Unit Info"); |
| 2887 | |
| 2888 | Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address"); |
| 2889 | |
| 2890 | Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor"); |
| 2891 | |
| 2892 | Asm->EmitInt16(0); Asm->EOL("Pad (1)"); |
| 2893 | Asm->EmitInt16(0); Asm->EOL("Pad (2)"); |
| 2894 | |
| 2895 | // Range 1 |
| 2896 | EmitReference("text_begin", 0); Asm->EOL("Address"); |
| 2897 | EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length"); |
| 2898 | |
| 2899 | Asm->EmitInt32(0); Asm->EOL("EOM (1)"); |
| 2900 | Asm->EmitInt32(0); Asm->EOL("EOM (2)"); |
| 2901 | #endif |
| 2902 | |
| 2903 | Asm->EOL(); |
| 2904 | } |
| 2905 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2906 | /// emitDebugRanges - Emit visible names into a debug ranges section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2907 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2908 | void DwarfDebug::emitDebugRanges() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2909 | // Start the dwarf ranges section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2910 | Asm->OutStreamer.SwitchSection( |
| 2911 | Asm->getObjFileLowering().getDwarfRangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2912 | Asm->EOL(); |
| 2913 | } |
| 2914 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2915 | /// emitDebugMacInfo - Emit visible names into a debug macinfo section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2916 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2917 | void DwarfDebug::emitDebugMacInfo() { |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 2918 | if (const MCSection *LineInfo = |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 2919 | Asm->getObjFileLowering().getDwarfMacroInfoSection()) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2920 | // Start the dwarf macinfo section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2921 | Asm->OutStreamer.SwitchSection(LineInfo); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2922 | Asm->EOL(); |
| 2923 | } |
| 2924 | } |
| 2925 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2926 | /// emitDebugInlineInfo - Emit inline info using following format. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2927 | /// Section Header: |
| 2928 | /// 1. length of section |
| 2929 | /// 2. Dwarf version number |
| 2930 | /// 3. address size. |
| 2931 | /// |
| 2932 | /// Entries (one "entry" for each function that was inlined): |
| 2933 | /// |
| 2934 | /// 1. offset into __debug_str section for MIPS linkage name, if exists; |
| 2935 | /// otherwise offset into __debug_str for regular function name. |
| 2936 | /// 2. offset into __debug_str section for regular function name. |
| 2937 | /// 3. an unsigned LEB128 number indicating the number of distinct inlining |
| 2938 | /// instances for the function. |
| 2939 | /// |
| 2940 | /// The rest of the entry consists of a {die_offset, low_pc} pair for each |
| 2941 | /// inlined instance; the die_offset points to the inlined_subroutine die in the |
| 2942 | /// __debug_info section, and the low_pc is the starting address for the |
| 2943 | /// inlining instance. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2944 | void DwarfDebug::emitDebugInlineInfo() { |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 2945 | if (!MAI->doesDwarfUsesInlineInfoSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2946 | return; |
| 2947 | |
Devang Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 2948 | if (!ModuleCU) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2949 | return; |
| 2950 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2951 | Asm->OutStreamer.SwitchSection( |
| 2952 | Asm->getObjFileLowering().getDwarfDebugInlineSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2953 | Asm->EOL(); |
| 2954 | EmitDifference("debug_inlined_end", 1, |
| 2955 | "debug_inlined_begin", 1, true); |
| 2956 | Asm->EOL("Length of Debug Inlined Information Entry"); |
| 2957 | |
| 2958 | EmitLabel("debug_inlined_begin", 1); |
| 2959 | |
| 2960 | Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("Dwarf Version"); |
| 2961 | Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)"); |
| 2962 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2963 | for (SmallVector<MDNode *, 4>::iterator I = InlinedSPNodes.begin(), |
| 2964 | E = InlinedSPNodes.end(); I != E; ++I) { |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2965 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2966 | // for (ValueMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator |
| 2967 | // I = InlineInfo.begin(), E = InlineInfo.end(); I != E; ++I) { |
| 2968 | MDNode *Node = *I; |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 2969 | ValueMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II |
| 2970 | = InlineInfo.find(Node); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2971 | SmallVector<InlineInfoLabels, 4> &Labels = II->second; |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 2972 | DISubprogram SP(Node); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 2973 | StringRef LName = SP.getLinkageName(); |
| 2974 | StringRef Name = SP.getName(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2975 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 2976 | if (LName.empty()) |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 2977 | Asm->EmitString(Name); |
| 2978 | else { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2979 | // Skip special LLVM prefix that is used to inform the asm printer to not |
| 2980 | // emit usual symbol prefix before the symbol name. This happens for |
| 2981 | // Objective-C symbol names and symbol whose name is replaced using GCC's |
| 2982 | // __asm__ attribute. |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 2983 | if (LName[0] == 1) |
Benjamin Kramer | 1c3451f | 2009-11-25 18:26:09 +0000 | [diff] [blame] | 2984 | LName = LName.substr(1); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2985 | // Asm->EmitString(LName); |
| 2986 | EmitSectionOffset("string", "section_str", |
| 2987 | StringPool.idFor(LName), false, true); |
| 2988 | |
Devang Patel | 53cb17d | 2009-07-16 01:01:22 +0000 | [diff] [blame] | 2989 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2990 | Asm->EOL("MIPS linkage name"); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2991 | // Asm->EmitString(Name); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2992 | EmitSectionOffset("string", "section_str", |
| 2993 | StringPool.idFor(Name), false, true); |
| 2994 | Asm->EOL("Function name"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2995 | Asm->EmitULEB128Bytes(Labels.size()); Asm->EOL("Inline count"); |
| 2996 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2997 | for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(), |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2998 | LE = Labels.end(); LI != LE; ++LI) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2999 | DIE *SP = LI->second; |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3000 | Asm->EmitInt32(SP->getOffset()); Asm->EOL("DIE offset"); |
| 3001 | |
| 3002 | if (TD->getPointerSize() == sizeof(int32_t)) |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 3003 | O << MAI->getData32bitsDirective(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3004 | else |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 3005 | O << MAI->getData64bitsDirective(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3006 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 3007 | PrintLabelName("label", LI->first); Asm->EOL("low_pc"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3008 | } |
| 3009 | } |
| 3010 | |
| 3011 | EmitLabel("debug_inlined_end", 1); |
| 3012 | Asm->EOL(); |
| 3013 | } |