blob: b7d682eb39b6ca9b51af7aa34cd7f0bb763b439d [file] [log] [blame]
Bill Wendling2f921f82009-05-15 09:23:25 +00001//===-- 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//===----------------------------------------------------------------------===//
Chris Lattnerb14490d2010-03-09 00:39:24 +000013
Devang Patel80ae3492009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling2f921f82009-05-15 09:23:25 +000015#include "DwarfDebug.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000016#include "DIE.h"
Bill Wendling30346342010-04-05 22:59:21 +000017#include "llvm/Constants.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000018#include "llvm/Module.h"
David Greene829b3e82009-08-19 21:52:55 +000019#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000020#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000021#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000022#include "llvm/MC/MCSection.h"
Chris Lattner4b7dadb2009-08-19 05:49:37 +000023#include "llvm/MC/MCStreamer.h"
Chris Lattnere13c3722010-03-09 01:58:53 +000024#include "llvm/MC/MCSymbol.h"
Chris Lattnerf62e3ee2010-01-16 21:57:06 +000025#include "llvm/Target/Mangler.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000026#include "llvm/Target/TargetData.h"
27#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000028#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner21dc46e2010-04-04 18:06:11 +000029#include "llvm/Target/TargetMachine.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000030#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner3f3fb972010-04-05 05:24:55 +000031#include "llvm/Analysis/DebugInfo.h"
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +000032#include "llvm/ADT/STLExtras.h"
Chris Lattner06fa1762009-08-24 03:52:50 +000033#include "llvm/ADT/StringExtras.h"
Daniel Dunbarcdf01b52009-10-13 06:47:08 +000034#include "llvm/Support/Debug.h"
35#include "llvm/Support/ErrorHandling.h"
Devang Patel1973df22010-01-26 21:39:14 +000036#include "llvm/Support/ValueHandle.h"
Chris Lattnerf5c834f2010-01-22 22:09:00 +000037#include "llvm/Support/FormattedStream.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000038#include "llvm/Support/Timer.h"
39#include "llvm/System/Path.h"
Bill Wendling2f921f82009-05-15 09:23:25 +000040using namespace llvm;
41
Bill Wendlingfcc14142010-04-07 09:28:04 +000042namespace {
43 const char *DWARFGroupName = "DWARF Emission";
44 const char *DbgTimerName = "DWARF Debug Writer";
45} // end anonymous namespace
46
Bill Wendling2f921f82009-05-15 09:23:25 +000047//===----------------------------------------------------------------------===//
48
49/// Configuration values for initial hash set sizes (log2).
50///
Bill Wendling2f921f82009-05-15 09:23:25 +000051static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling2f921f82009-05-15 09:23:25 +000052
53namespace llvm {
54
55//===----------------------------------------------------------------------===//
56/// CompileUnit - This dwarf writer support class manages information associate
57/// with a source file.
Nick Lewyckyb7993d62009-11-17 08:11:44 +000058class CompileUnit {
Bill Wendling2f921f82009-05-15 09:23:25 +000059 /// ID - File identifier for source.
60 ///
61 unsigned ID;
62
63 /// Die - Compile unit debug information entry.
64 ///
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +000065 const OwningPtr<DIE> CUDie;
Bill Wendling2f921f82009-05-15 09:23:25 +000066
Jeffrey Yasskin0708de12010-03-11 18:29:55 +000067 /// IndexTyDie - An anonymous type for index type. Owned by CUDie.
Devang Patel92e8c652009-11-21 00:31:03 +000068 DIE *IndexTyDie;
69
Bill Wendling2f921f82009-05-15 09:23:25 +000070 /// GVToDieMap - Tracks the mapping of unit level debug informaton
71 /// variables to debug information entries.
Devang Patel80ae3492009-08-28 23:24:31 +000072 /// FIXME : Rename GVToDieMap -> NodeToDieMap
Devang Patel018b29b2010-01-19 06:19:05 +000073 DenseMap<MDNode *, DIE *> GVToDieMap;
Bill Wendling2f921f82009-05-15 09:23:25 +000074
75 /// GVToDIEEntryMap - Tracks the mapping of unit level debug informaton
76 /// descriptors to debug information entries using a DIEEntry proxy.
Devang Patel80ae3492009-08-28 23:24:31 +000077 /// FIXME : Rename
Devang Patel018b29b2010-01-19 06:19:05 +000078 DenseMap<MDNode *, DIEEntry *> GVToDIEEntryMap;
Bill Wendling2f921f82009-05-15 09:23:25 +000079
80 /// Globals - A map of globally visible named entities for this unit.
81 ///
82 StringMap<DIE*> Globals;
83
Devang Patel04d2f2d2009-11-24 01:14:22 +000084 /// GlobalTypes - A map of globally visible types for this unit.
85 ///
86 StringMap<DIE*> GlobalTypes;
87
Bill Wendling2f921f82009-05-15 09:23:25 +000088public:
89 CompileUnit(unsigned I, DIE *D)
Devang Patel930143b2009-11-21 02:48:08 +000090 : ID(I), CUDie(D), IndexTyDie(0) {}
Bill Wendling2f921f82009-05-15 09:23:25 +000091
92 // Accessors.
Devang Patel04d2f2d2009-11-24 01:14:22 +000093 unsigned getID() const { return ID; }
Jeffrey Yasskin0708de12010-03-11 18:29:55 +000094 DIE* getCUDie() const { return CUDie.get(); }
Devang Patel04d2f2d2009-11-24 01:14:22 +000095 const StringMap<DIE*> &getGlobals() const { return Globals; }
96 const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; }
Bill Wendling2f921f82009-05-15 09:23:25 +000097
98 /// hasContent - Return true if this compile unit has something to write out.
99 ///
Devang Patel930143b2009-11-21 02:48:08 +0000100 bool hasContent() const { return !CUDie->getChildren().empty(); }
Bill Wendling2f921f82009-05-15 09:23:25 +0000101
Devang Patel930143b2009-11-21 02:48:08 +0000102 /// addGlobal - Add a new global entity to the compile unit.
Bill Wendling2f921f82009-05-15 09:23:25 +0000103 ///
Benjamin Kramer96956ed2010-03-31 20:15:45 +0000104 void addGlobal(StringRef Name, DIE *Die) { Globals[Name] = Die; }
Bill Wendling2f921f82009-05-15 09:23:25 +0000105
Devang Patel04d2f2d2009-11-24 01:14:22 +0000106 /// addGlobalType - Add a new global type to the compile unit.
107 ///
Benjamin Kramer96956ed2010-03-31 20:15:45 +0000108 void addGlobalType(StringRef Name, DIE *Die) {
Devang Patel04d2f2d2009-11-24 01:14:22 +0000109 GlobalTypes[Name] = Die;
110 }
111
Devang Patele064ad42009-11-20 21:37:22 +0000112 /// getDIE - Returns the debug information entry map slot for the
Bill Wendling2f921f82009-05-15 09:23:25 +0000113 /// specified debug variable.
Devang Patele064ad42009-11-20 21:37:22 +0000114 DIE *getDIE(MDNode *N) { return GVToDieMap.lookup(N); }
Jim Grosbach042483e2009-11-21 23:12:12 +0000115
Devang Patele064ad42009-11-20 21:37:22 +0000116 /// insertDIE - Insert DIE into the map.
117 void insertDIE(MDNode *N, DIE *D) {
118 GVToDieMap.insert(std::make_pair(N, D));
119 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000120
Devang Patele064ad42009-11-20 21:37:22 +0000121 /// getDIEEntry - Returns the debug information entry for the speciefied
122 /// debug variable.
Devang Patel1f4690c2009-12-15 19:16:48 +0000123 DIEEntry *getDIEEntry(MDNode *N) {
Devang Patel018b29b2010-01-19 06:19:05 +0000124 DenseMap<MDNode *, DIEEntry *>::iterator I = GVToDIEEntryMap.find(N);
Devang Patel1f4690c2009-12-15 19:16:48 +0000125 if (I == GVToDIEEntryMap.end())
126 return NULL;
127 return I->second;
128 }
Devang Patele064ad42009-11-20 21:37:22 +0000129
130 /// insertDIEEntry - Insert debug information entry into the map.
131 void insertDIEEntry(MDNode *N, DIEEntry *E) {
132 GVToDIEEntryMap.insert(std::make_pair(N, E));
Bill Wendling2f921f82009-05-15 09:23:25 +0000133 }
134
Devang Patel930143b2009-11-21 02:48:08 +0000135 /// addDie - Adds or interns the DIE to the compile unit.
Bill Wendling2f921f82009-05-15 09:23:25 +0000136 ///
Devang Patel930143b2009-11-21 02:48:08 +0000137 void addDie(DIE *Buffer) {
138 this->CUDie->addChild(Buffer);
Bill Wendling2f921f82009-05-15 09:23:25 +0000139 }
Devang Patel92e8c652009-11-21 00:31:03 +0000140
141 // getIndexTyDie - Get an anonymous type for index type.
142 DIE *getIndexTyDie() {
143 return IndexTyDie;
144 }
145
Jim Grosbach00e9c612009-11-22 19:20:36 +0000146 // setIndexTyDie - Set D as anonymous type for index which can be reused
147 // later.
Devang Patel92e8c652009-11-21 00:31:03 +0000148 void setIndexTyDie(DIE *D) {
149 IndexTyDie = D;
150 }
151
Bill Wendling2f921f82009-05-15 09:23:25 +0000152};
153
154//===----------------------------------------------------------------------===//
155/// DbgVariable - This class is used to track local variable information.
156///
Devang Patelf3d7c082009-11-16 21:53:40 +0000157class DbgVariable {
Bill Wendling2f921f82009-05-15 09:23:25 +0000158 DIVariable Var; // Variable Descriptor.
159 unsigned FrameIndex; // Variable frame index.
Devang Patela3e9c9c2010-03-15 18:33:46 +0000160 const MachineInstr *DbgValueMInsn; // DBG_VALUE
Devang Patel23b2ae62010-03-29 22:59:58 +0000161 // DbgValueLabel - DBG_VALUE is effective from this label.
162 MCSymbol *DbgValueLabel;
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000163 DbgVariable *const AbstractVar; // Abstract variable for this variable.
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000164 DIE *TheDIE;
Bill Wendling2f921f82009-05-15 09:23:25 +0000165public:
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000166 // AbsVar may be NULL.
167 DbgVariable(DIVariable V, unsigned I, DbgVariable *AbsVar)
Devang Patel23b2ae62010-03-29 22:59:58 +0000168 : Var(V), FrameIndex(I), DbgValueMInsn(0),
169 DbgValueLabel(0), AbstractVar(AbsVar), TheDIE(0) {}
Devang Patela3e9c9c2010-03-15 18:33:46 +0000170 DbgVariable(DIVariable V, const MachineInstr *MI, DbgVariable *AbsVar)
Devang Patel23b2ae62010-03-29 22:59:58 +0000171 : Var(V), FrameIndex(0), DbgValueMInsn(MI), DbgValueLabel(0),
172 AbstractVar(AbsVar), TheDIE(0)
Devang Patela3e9c9c2010-03-15 18:33:46 +0000173 {}
Bill Wendling2f921f82009-05-15 09:23:25 +0000174
175 // Accessors.
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000176 DIVariable getVariable() const { return Var; }
177 unsigned getFrameIndex() const { return FrameIndex; }
Devang Patela3e9c9c2010-03-15 18:33:46 +0000178 const MachineInstr *getDbgValue() const { return DbgValueMInsn; }
Devang Patel23b2ae62010-03-29 22:59:58 +0000179 MCSymbol *getDbgValueLabel() const { return DbgValueLabel; }
180 void setDbgValueLabel(MCSymbol *L) { DbgValueLabel = L; }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000181 DbgVariable *getAbstractVariable() const { return AbstractVar; }
182 void setDIE(DIE *D) { TheDIE = D; }
183 DIE *getDIE() const { return TheDIE; }
Bill Wendling2f921f82009-05-15 09:23:25 +0000184};
185
186//===----------------------------------------------------------------------===//
187/// DbgScope - This class is used to track scope information.
188///
Devang Patelf3d7c082009-11-16 21:53:40 +0000189class DbgScope {
Bill Wendling2f921f82009-05-15 09:23:25 +0000190 DbgScope *Parent; // Parent to this scope.
Jim Grosbach042483e2009-11-21 23:12:12 +0000191 DIDescriptor Desc; // Debug info descriptor for scope.
Devang Patel1973df22010-01-26 21:39:14 +0000192 // Location at which this scope is inlined.
193 AssertingVH<MDNode> InlinedAtLocation;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000194 bool AbstractScope; // Abstract Scope
Chris Lattnere13c3722010-03-09 01:58:53 +0000195 MCSymbol *StartLabel; // Label ID of the beginning of scope.
196 MCSymbol *EndLabel; // Label ID of the end of scope.
Devang Patel787f94c2009-10-01 18:25:23 +0000197 const MachineInstr *LastInsn; // Last instruction of this scope.
198 const MachineInstr *FirstInsn; // First instruction of this scope.
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000199 // Scopes defined in scope. Contents not owned.
200 SmallVector<DbgScope *, 4> Scopes;
201 // Variables declared in scope. Contents owned.
202 SmallVector<DbgVariable *, 8> Variables;
Daniel Dunbarc418d6b2009-09-19 20:40:05 +0000203
Owen Anderson9becc182009-06-24 22:53:20 +0000204 // Private state for dump()
205 mutable unsigned IndentLevel;
Bill Wendling2f921f82009-05-15 09:23:25 +0000206public:
Devang Patel6875c5eb2009-10-14 21:08:09 +0000207 DbgScope(DbgScope *P, DIDescriptor D, MDNode *I = 0)
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000208 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(false),
Chris Lattnere13c3722010-03-09 01:58:53 +0000209 StartLabel(0), EndLabel(0),
Devang Patel6875c5eb2009-10-14 21:08:09 +0000210 LastInsn(0), FirstInsn(0), IndentLevel(0) {}
Bill Wendling2f921f82009-05-15 09:23:25 +0000211 virtual ~DbgScope();
212
213 // Accessors.
214 DbgScope *getParent() const { return Parent; }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000215 void setParent(DbgScope *P) { Parent = P; }
Bill Wendling2f921f82009-05-15 09:23:25 +0000216 DIDescriptor getDesc() const { return Desc; }
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000217 MDNode *getInlinedAt() const { return InlinedAtLocation; }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000218 MDNode *getScopeNode() const { return Desc.getNode(); }
Chris Lattnere13c3722010-03-09 01:58:53 +0000219 MCSymbol *getStartLabel() const { return StartLabel; }
220 MCSymbol *getEndLabel() const { return EndLabel; }
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000221 const SmallVector<DbgScope *, 4> &getScopes() { return Scopes; }
222 const SmallVector<DbgVariable *, 8> &getVariables() { return Variables; }
Chris Lattnere13c3722010-03-09 01:58:53 +0000223 void setStartLabel(MCSymbol *S) { StartLabel = S; }
224 void setEndLabel(MCSymbol *E) { EndLabel = E; }
Devang Patel787f94c2009-10-01 18:25:23 +0000225 void setLastInsn(const MachineInstr *MI) { LastInsn = MI; }
226 const MachineInstr *getLastInsn() { return LastInsn; }
227 void setFirstInsn(const MachineInstr *MI) { FirstInsn = MI; }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000228 void setAbstractScope() { AbstractScope = true; }
229 bool isAbstractScope() const { return AbstractScope; }
Devang Patel787f94c2009-10-01 18:25:23 +0000230 const MachineInstr *getFirstInsn() { return FirstInsn; }
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000231
Devang Patel930143b2009-11-21 02:48:08 +0000232 /// addScope - Add a scope to the scope.
Bill Wendling2f921f82009-05-15 09:23:25 +0000233 ///
Devang Patel930143b2009-11-21 02:48:08 +0000234 void addScope(DbgScope *S) { Scopes.push_back(S); }
Bill Wendling2f921f82009-05-15 09:23:25 +0000235
Devang Patel930143b2009-11-21 02:48:08 +0000236 /// addVariable - Add a variable to the scope.
Bill Wendling2f921f82009-05-15 09:23:25 +0000237 ///
Devang Patel930143b2009-11-21 02:48:08 +0000238 void addVariable(DbgVariable *V) { Variables.push_back(V); }
Bill Wendling2f921f82009-05-15 09:23:25 +0000239
Devang Patel530a0752010-01-04 20:44:00 +0000240 void fixInstructionMarkers(DenseMap<const MachineInstr *,
241 unsigned> &MIIndexMap) {
Chris Lattner8d2fe282010-03-31 05:36:29 +0000242 assert(getFirstInsn() && "First instruction is missing!");
Devang Patel530a0752010-01-04 20:44:00 +0000243
244 // Use the end of last child scope as end of this scope.
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000245 const SmallVector<DbgScope *, 4> &Scopes = getScopes();
Devang Pateld146e2e2010-01-05 16:59:17 +0000246 const MachineInstr *LastInsn = getFirstInsn();
Devang Patel530a0752010-01-04 20:44:00 +0000247 unsigned LIndex = 0;
248 if (Scopes.empty()) {
Chris Lattner8d2fe282010-03-31 05:36:29 +0000249 assert(getLastInsn() && "Inner most scope does not have last insn!");
Devang Patel530a0752010-01-04 20:44:00 +0000250 return;
251 }
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000252 for (SmallVector<DbgScope *, 4>::const_iterator SI = Scopes.begin(),
Devang Patel530a0752010-01-04 20:44:00 +0000253 SE = Scopes.end(); SI != SE; ++SI) {
254 DbgScope *DS = *SI;
255 DS->fixInstructionMarkers(MIIndexMap);
256 const MachineInstr *DSLastInsn = DS->getLastInsn();
257 unsigned DSI = MIIndexMap[DSLastInsn];
258 if (DSI > LIndex) {
259 LastInsn = DSLastInsn;
260 LIndex = DSI;
261 }
262 }
Devang Patelca55a042010-02-17 02:20:34 +0000263
264 unsigned CurrentLastInsnIndex = 0;
265 if (const MachineInstr *CL = getLastInsn())
266 CurrentLastInsnIndex = MIIndexMap[CL];
267 unsigned FIndex = MIIndexMap[getFirstInsn()];
268
269 // Set LastInsn as the last instruction for this scope only if
270 // it follows
271 // 1) this scope's first instruction and
272 // 2) current last instruction for this scope, if any.
273 if (LIndex >= CurrentLastInsnIndex && LIndex >= FIndex)
274 setLastInsn(LastInsn);
Devang Patel75cc16c2009-10-01 20:31:14 +0000275 }
276
Bill Wendling2f921f82009-05-15 09:23:25 +0000277#ifndef NDEBUG
278 void dump() const;
279#endif
280};
Chris Lattnerf5d06362010-04-05 04:09:20 +0000281
282} // end llvm namespace
Bill Wendling2f921f82009-05-15 09:23:25 +0000283
284#ifndef NDEBUG
285void DbgScope::dump() const {
David Greenec230cb92009-12-24 00:31:35 +0000286 raw_ostream &err = dbgs();
Chris Lattner81e8e022009-08-23 00:51:00 +0000287 err.indent(IndentLevel);
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000288 MDNode *N = Desc.getNode();
289 N->dump();
Chris Lattnere13c3722010-03-09 01:58:53 +0000290 err << " [" << StartLabel << ", " << EndLabel << "]\n";
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000291 if (AbstractScope)
292 err << "Abstract Scope\n";
Bill Wendling2f921f82009-05-15 09:23:25 +0000293
294 IndentLevel += 2;
Devang Patelf6eeaeb2009-11-10 23:06:00 +0000295 if (!Scopes.empty())
296 err << "Children ...\n";
Bill Wendling2f921f82009-05-15 09:23:25 +0000297 for (unsigned i = 0, e = Scopes.size(); i != e; ++i)
298 if (Scopes[i] != this)
299 Scopes[i]->dump();
300
301 IndentLevel -= 2;
302}
303#endif
304
Bill Wendling2f921f82009-05-15 09:23:25 +0000305DbgScope::~DbgScope() {
Bill Wendling2f921f82009-05-15 09:23:25 +0000306 for (unsigned j = 0, M = Variables.size(); j < M; ++j)
307 delete Variables[j];
Bill Wendling2f921f82009-05-15 09:23:25 +0000308}
309
Chris Lattnerf0d6bd32010-04-05 05:11:15 +0000310DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
Chris Lattner3a383cb2010-04-05 00:13:49 +0000311 : Asm(A), MMI(Asm->MMI), ModuleCU(0),
Chris Lattner196dbdc2010-04-05 03:52:55 +0000312 AbbreviationsSet(InitAbbreviationsSetSize),
Bill Wendlingfcc14142010-04-07 09:28:04 +0000313 CurrentFnDbgScope(0) {
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000314 NextStringPoolNumber = 0;
Chris Lattner6629ca92010-04-04 22:59:04 +0000315
Chris Lattnere58b5472010-04-04 23:10:38 +0000316 DwarfFrameSectionSym = DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0;
317 DwarfStrSectionSym = TextSectionSym = 0;
Torok Edwinf8dba242010-04-07 10:44:46 +0000318
319 if (TimePassesIsEnabled) {
320 NamedRegionTimer T(DbgTimerName, DWARFGroupName);
321 beginModule(M);
322 } else {
323 beginModule(M);
324 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000325}
326DwarfDebug::~DwarfDebug() {
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000327 for (unsigned j = 0, M = DIEBlocks.size(); j < M; ++j)
328 DIEBlocks[j]->~DIEBlock();
Bill Wendling2f921f82009-05-15 09:23:25 +0000329}
330
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000331MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) {
332 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
333 if (Entry.first) return Entry.first;
334
335 Entry.second = NextStringPoolNumber++;
Chris Lattnera179b522010-04-04 19:25:43 +0000336 return Entry.first = Asm->GetTempSymbol("string", Entry.second);
Chris Lattnerb7aa9522010-03-13 02:17:42 +0000337}
338
339
Devang Patel930143b2009-11-21 02:48:08 +0000340/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling2f921f82009-05-15 09:23:25 +0000341///
Devang Patel930143b2009-11-21 02:48:08 +0000342void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000343 // Profile the node so that we can make it unique.
344 FoldingSetNodeID ID;
345 Abbrev.Profile(ID);
346
347 // Check the set for priors.
348 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
349
350 // If it's newly added.
351 if (InSet == &Abbrev) {
352 // Add to abbreviation list.
353 Abbreviations.push_back(&Abbrev);
354
355 // Assign the vector position + 1 as its number.
356 Abbrev.setNumber(Abbreviations.size());
357 } else {
358 // Assign existing abbreviation number.
359 Abbrev.setNumber(InSet->getNumber());
360 }
361}
362
Devang Patel930143b2009-11-21 02:48:08 +0000363/// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
Bill Wendlingbcad77a2009-05-20 23:24:48 +0000364/// information entry.
Devang Patel930143b2009-11-21 02:48:08 +0000365DIEEntry *DwarfDebug::createDIEEntry(DIE *Entry) {
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000366 DIEEntry *Value = new (DIEValueAllocator) DIEEntry(Entry);
Bill Wendling2f921f82009-05-15 09:23:25 +0000367 return Value;
368}
369
Devang Patel930143b2009-11-21 02:48:08 +0000370/// addUInt - Add an unsigned integer attribute data and value.
Bill Wendling2f921f82009-05-15 09:23:25 +0000371///
Devang Patel930143b2009-11-21 02:48:08 +0000372void DwarfDebug::addUInt(DIE *Die, unsigned Attribute,
Bill Wendling2f921f82009-05-15 09:23:25 +0000373 unsigned Form, uint64_t Integer) {
374 if (!Form) Form = DIEInteger::BestForm(false, Integer);
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000375 DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer);
Devang Patel930143b2009-11-21 02:48:08 +0000376 Die->addValue(Attribute, Form, Value);
Bill Wendling2f921f82009-05-15 09:23:25 +0000377}
378
Devang Patel930143b2009-11-21 02:48:08 +0000379/// addSInt - Add an signed integer attribute data and value.
Bill Wendling2f921f82009-05-15 09:23:25 +0000380///
Devang Patel930143b2009-11-21 02:48:08 +0000381void DwarfDebug::addSInt(DIE *Die, unsigned Attribute,
Bill Wendling2f921f82009-05-15 09:23:25 +0000382 unsigned Form, int64_t Integer) {
383 if (!Form) Form = DIEInteger::BestForm(true, Integer);
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000384 DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer);
Devang Patel930143b2009-11-21 02:48:08 +0000385 Die->addValue(Attribute, Form, Value);
Bill Wendling2f921f82009-05-15 09:23:25 +0000386}
387
Devang Patel8c339592009-12-02 15:25:16 +0000388/// addString - Add a string attribute data and value. DIEString only
389/// keeps string reference.
Devang Patel930143b2009-11-21 02:48:08 +0000390void DwarfDebug::addString(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattnerc3f23b82010-01-23 03:11:46 +0000391 StringRef String) {
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000392 DIEValue *Value = new (DIEValueAllocator) DIEString(String);
Devang Patel930143b2009-11-21 02:48:08 +0000393 Die->addValue(Attribute, Form, Value);
Bill Wendling2f921f82009-05-15 09:23:25 +0000394}
395
Devang Patel930143b2009-11-21 02:48:08 +0000396/// addLabel - Add a Dwarf label attribute data and value.
Bill Wendling2f921f82009-05-15 09:23:25 +0000397///
Devang Patel930143b2009-11-21 02:48:08 +0000398void DwarfDebug::addLabel(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattnerbc9210c2010-03-08 22:23:36 +0000399 const MCSymbol *Label) {
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000400 DIEValue *Value = new (DIEValueAllocator) DIELabel(Label);
Devang Patel930143b2009-11-21 02:48:08 +0000401 Die->addValue(Attribute, Form, Value);
Bill Wendling2f921f82009-05-15 09:23:25 +0000402}
403
Devang Patel930143b2009-11-21 02:48:08 +0000404/// addDelta - Add a label delta attribute data and value.
Bill Wendling2f921f82009-05-15 09:23:25 +0000405///
Devang Patel930143b2009-11-21 02:48:08 +0000406void DwarfDebug::addDelta(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattnerbc9210c2010-03-08 22:23:36 +0000407 const MCSymbol *Hi, const MCSymbol *Lo) {
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000408 DIEValue *Value = new (DIEValueAllocator) DIEDelta(Hi, Lo);
Devang Patel930143b2009-11-21 02:48:08 +0000409 Die->addValue(Attribute, Form, Value);
Bill Wendling2f921f82009-05-15 09:23:25 +0000410}
411
Chris Lattner3f3fb972010-04-05 05:24:55 +0000412/// addDIEEntry - Add a DIE attribute data and value.
413///
414void DwarfDebug::addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form,
415 DIE *Entry) {
416 Die->addValue(Attribute, Form, createDIEEntry(Entry));
417}
418
419
Devang Patel930143b2009-11-21 02:48:08 +0000420/// addBlock - Add block data.
Bill Wendling2f921f82009-05-15 09:23:25 +0000421///
Devang Patel930143b2009-11-21 02:48:08 +0000422void DwarfDebug::addBlock(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling2f921f82009-05-15 09:23:25 +0000423 DIEBlock *Block) {
Chris Lattner5a00dea2010-04-05 00:18:22 +0000424 Block->ComputeSize(Asm);
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000425 DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on.
Devang Patel930143b2009-11-21 02:48:08 +0000426 Die->addValue(Attribute, Block->BestForm(), Block);
Bill Wendling2f921f82009-05-15 09:23:25 +0000427}
428
Devang Patel930143b2009-11-21 02:48:08 +0000429/// addSourceLine - Add location information to specified debug information
Bill Wendling2f921f82009-05-15 09:23:25 +0000430/// entry.
Devang Patel930143b2009-11-21 02:48:08 +0000431void DwarfDebug::addSourceLine(DIE *Die, const DIVariable *V) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000432 // If there is no compile unit specified, don't add a line #.
Devang Patel3b548aa2010-03-08 20:52:55 +0000433 if (!V->getCompileUnit().Verify())
Bill Wendling2f921f82009-05-15 09:23:25 +0000434 return;
435
436 unsigned Line = V->getLineNumber();
Devang Patel8119fe872010-03-08 22:02:50 +0000437 unsigned FileID = GetOrCreateSourceID(V->getContext().getDirectory(),
438 V->getContext().getFilename());
Bill Wendling2f921f82009-05-15 09:23:25 +0000439 assert(FileID && "Invalid file id");
Devang Patel930143b2009-11-21 02:48:08 +0000440 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
441 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling2f921f82009-05-15 09:23:25 +0000442}
443
Devang Patel930143b2009-11-21 02:48:08 +0000444/// addSourceLine - Add location information to specified debug information
Bill Wendling2f921f82009-05-15 09:23:25 +0000445/// entry.
Devang Patel930143b2009-11-21 02:48:08 +0000446void DwarfDebug::addSourceLine(DIE *Die, const DIGlobal *G) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000447 // If there is no compile unit specified, don't add a line #.
Devang Patel3b548aa2010-03-08 20:52:55 +0000448 if (!G->getCompileUnit().Verify())
Bill Wendling2f921f82009-05-15 09:23:25 +0000449 return;
450
451 unsigned Line = G->getLineNumber();
Devang Patel8119fe872010-03-08 22:02:50 +0000452 unsigned FileID = GetOrCreateSourceID(G->getContext().getDirectory(),
453 G->getContext().getFilename());
Bill Wendling2f921f82009-05-15 09:23:25 +0000454 assert(FileID && "Invalid file id");
Devang Patel930143b2009-11-21 02:48:08 +0000455 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
456 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling2f921f82009-05-15 09:23:25 +0000457}
Devang Patelb2de5fa2009-08-31 22:47:13 +0000458
Devang Patel930143b2009-11-21 02:48:08 +0000459/// addSourceLine - Add location information to specified debug information
Devang Patelb2de5fa2009-08-31 22:47:13 +0000460/// entry.
Devang Patel930143b2009-11-21 02:48:08 +0000461void DwarfDebug::addSourceLine(DIE *Die, const DISubprogram *SP) {
Devang Patelb2de5fa2009-08-31 22:47:13 +0000462 // If there is no compile unit specified, don't add a line #.
Devang Patel3b548aa2010-03-08 20:52:55 +0000463 if (!SP->getCompileUnit().Verify())
Devang Patelb2de5fa2009-08-31 22:47:13 +0000464 return;
Caroline Tice183a5192009-09-11 18:25:54 +0000465 // If the line number is 0, don't add it.
466 if (SP->getLineNumber() == 0)
467 return;
468
Devang Patelb2de5fa2009-08-31 22:47:13 +0000469 unsigned Line = SP->getLineNumber();
Devang Patel8119fe872010-03-08 22:02:50 +0000470 if (!SP->getContext().Verify())
471 return;
Devang Patel834392f2010-03-24 21:30:35 +0000472 unsigned FileID = GetOrCreateSourceID(SP->getDirectory(),
473 SP->getFilename());
Devang Patelb2de5fa2009-08-31 22:47:13 +0000474 assert(FileID && "Invalid file id");
Devang Patel930143b2009-11-21 02:48:08 +0000475 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
476 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Devang Patelb2de5fa2009-08-31 22:47:13 +0000477}
478
Devang Patel930143b2009-11-21 02:48:08 +0000479/// addSourceLine - Add location information to specified debug information
Devang Patelb2de5fa2009-08-31 22:47:13 +0000480/// entry.
Devang Patel930143b2009-11-21 02:48:08 +0000481void DwarfDebug::addSourceLine(DIE *Die, const DIType *Ty) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000482 // If there is no compile unit specified, don't add a line #.
483 DICompileUnit CU = Ty->getCompileUnit();
Devang Patel3b548aa2010-03-08 20:52:55 +0000484 if (!CU.Verify())
Bill Wendling2f921f82009-05-15 09:23:25 +0000485 return;
486
487 unsigned Line = Ty->getLineNumber();
Devang Patel8119fe872010-03-08 22:02:50 +0000488 if (!Ty->getContext().Verify())
489 return;
490 unsigned FileID = GetOrCreateSourceID(Ty->getContext().getDirectory(),
491 Ty->getContext().getFilename());
Bill Wendling2f921f82009-05-15 09:23:25 +0000492 assert(FileID && "Invalid file id");
Devang Patel930143b2009-11-21 02:48:08 +0000493 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
494 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling2f921f82009-05-15 09:23:25 +0000495}
496
Devang Patel1f4690c2009-12-15 19:16:48 +0000497/// addSourceLine - Add location information to specified debug information
498/// entry.
499void DwarfDebug::addSourceLine(DIE *Die, const DINameSpace *NS) {
500 // If there is no compile unit specified, don't add a line #.
Devang Patel3b548aa2010-03-08 20:52:55 +0000501 if (!NS->getCompileUnit().Verify())
Devang Patel1f4690c2009-12-15 19:16:48 +0000502 return;
503
504 unsigned Line = NS->getLineNumber();
505 StringRef FN = NS->getFilename();
506 StringRef Dir = NS->getDirectory();
507
508 unsigned FileID = GetOrCreateSourceID(Dir, FN);
509 assert(FileID && "Invalid file id");
510 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
511 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
512}
513
Caroline Ticec87c1e22009-08-31 21:19:37 +0000514/* Byref variables, in Blocks, are declared by the programmer as
515 "SomeType VarName;", but the compiler creates a
516 __Block_byref_x_VarName struct, and gives the variable VarName
517 either the struct, or a pointer to the struct, as its type. This
518 is necessary for various behind-the-scenes things the compiler
519 needs to do with by-reference variables in blocks.
520
521 However, as far as the original *programmer* is concerned, the
522 variable should still have type 'SomeType', as originally declared.
523
524 The following function dives into the __Block_byref_x_VarName
525 struct to find the original type of the variable. This will be
526 passed back to the code generating the type for the Debug
527 Information Entry for the variable 'VarName'. 'VarName' will then
528 have the original type 'SomeType' in its debug information.
529
530 The original type 'SomeType' will be the type of the field named
531 'VarName' inside the __Block_byref_x_VarName struct.
532
533 NOTE: In order for this to not completely fail on the debugger
534 side, the Debug Information Entry for the variable VarName needs to
535 have a DW_AT_location that tells the debugger how to unwind through
536 the pointers and __Block_byref_x_VarName struct to find the actual
Devang Patel930143b2009-11-21 02:48:08 +0000537 value of the variable. The function addBlockByrefType does this. */
Caroline Ticec87c1e22009-08-31 21:19:37 +0000538
539/// Find the type the programmer originally declared the variable to be
540/// and return that type.
541///
Devang Patel930143b2009-11-21 02:48:08 +0000542DIType DwarfDebug::getBlockByrefType(DIType Ty, std::string Name) {
Caroline Ticec87c1e22009-08-31 21:19:37 +0000543
544 DIType subType = Ty;
545 unsigned tag = Ty.getTag();
546
547 if (tag == dwarf::DW_TAG_pointer_type) {
Mike Stump14cf8ec2009-09-30 00:08:22 +0000548 DIDerivedType DTy = DIDerivedType(Ty.getNode());
Caroline Ticec87c1e22009-08-31 21:19:37 +0000549 subType = DTy.getTypeDerivedFrom();
550 }
551
552 DICompositeType blockStruct = DICompositeType(subType.getNode());
Caroline Ticec87c1e22009-08-31 21:19:37 +0000553 DIArray Elements = blockStruct.getTypeArray();
554
Caroline Ticec87c1e22009-08-31 21:19:37 +0000555 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
556 DIDescriptor Element = Elements.getElement(i);
557 DIDerivedType DT = DIDerivedType(Element.getNode());
Devang Patel2d9caf92009-11-25 17:36:49 +0000558 if (Name == DT.getName())
Caroline Ticec87c1e22009-08-31 21:19:37 +0000559 return (DT.getTypeDerivedFrom());
560 }
561
562 return Ty;
563}
564
Devang Patel930143b2009-11-21 02:48:08 +0000565/// addComplexAddress - Start with the address based on the location provided,
Mike Stump14cf8ec2009-09-30 00:08:22 +0000566/// and generate the DWARF information necessary to find the actual variable
567/// given the extra address information encoded in the DIVariable, starting from
568/// the starting location. Add the DWARF information to the die.
569///
Devang Patel930143b2009-11-21 02:48:08 +0000570void DwarfDebug::addComplexAddress(DbgVariable *&DV, DIE *Die,
Mike Stump14cf8ec2009-09-30 00:08:22 +0000571 unsigned Attribute,
572 const MachineLocation &Location) {
573 const DIVariable &VD = DV->getVariable();
574 DIType Ty = VD.getType();
575
576 // Decode the original location, and use that as the start of the byref
577 // variable's location.
Chris Lattner3a383cb2010-04-05 00:13:49 +0000578 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
Mike Stump14cf8ec2009-09-30 00:08:22 +0000579 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000580 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Mike Stump14cf8ec2009-09-30 00:08:22 +0000581
582 if (Location.isReg()) {
583 if (Reg < 32) {
Devang Patel930143b2009-11-21 02:48:08 +0000584 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Mike Stump14cf8ec2009-09-30 00:08:22 +0000585 } else {
586 Reg = Reg - dwarf::DW_OP_reg0;
Devang Patel930143b2009-11-21 02:48:08 +0000587 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
588 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Mike Stump14cf8ec2009-09-30 00:08:22 +0000589 }
590 } else {
591 if (Reg < 32)
Devang Patel930143b2009-11-21 02:48:08 +0000592 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Mike Stump14cf8ec2009-09-30 00:08:22 +0000593 else {
Devang Patel930143b2009-11-21 02:48:08 +0000594 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
595 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Mike Stump14cf8ec2009-09-30 00:08:22 +0000596 }
597
Devang Patel930143b2009-11-21 02:48:08 +0000598 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Mike Stump14cf8ec2009-09-30 00:08:22 +0000599 }
600
601 for (unsigned i = 0, N = VD.getNumAddrElements(); i < N; ++i) {
602 uint64_t Element = VD.getAddrElement(i);
603
604 if (Element == DIFactory::OpPlus) {
Devang Patel930143b2009-11-21 02:48:08 +0000605 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
606 addUInt(Block, 0, dwarf::DW_FORM_udata, VD.getAddrElement(++i));
Mike Stump14cf8ec2009-09-30 00:08:22 +0000607 } else if (Element == DIFactory::OpDeref) {
Devang Patel930143b2009-11-21 02:48:08 +0000608 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Mike Stump14cf8ec2009-09-30 00:08:22 +0000609 } else llvm_unreachable("unknown DIFactory Opcode");
610 }
611
612 // Now attach the location information to the DIE.
Devang Patel930143b2009-11-21 02:48:08 +0000613 addBlock(Die, Attribute, 0, Block);
Mike Stump14cf8ec2009-09-30 00:08:22 +0000614}
615
Caroline Ticec87c1e22009-08-31 21:19:37 +0000616/* Byref variables, in Blocks, are declared by the programmer as "SomeType
617 VarName;", but the compiler creates a __Block_byref_x_VarName struct, and
618 gives the variable VarName either the struct, or a pointer to the struct, as
619 its type. This is necessary for various behind-the-scenes things the
620 compiler needs to do with by-reference variables in Blocks.
621
622 However, as far as the original *programmer* is concerned, the variable
623 should still have type 'SomeType', as originally declared.
624
Devang Patel930143b2009-11-21 02:48:08 +0000625 The function getBlockByrefType dives into the __Block_byref_x_VarName
Caroline Ticec87c1e22009-08-31 21:19:37 +0000626 struct to find the original type of the variable, which is then assigned to
627 the variable's Debug Information Entry as its real type. So far, so good.
628 However now the debugger will expect the variable VarName to have the type
629 SomeType. So we need the location attribute for the variable to be an
Daniel Dunbarc418d6b2009-09-19 20:40:05 +0000630 expression that explains to the debugger how to navigate through the
Caroline Ticec87c1e22009-08-31 21:19:37 +0000631 pointers and struct to find the actual variable of type SomeType.
632
633 The following function does just that. We start by getting
634 the "normal" location for the variable. This will be the location
635 of either the struct __Block_byref_x_VarName or the pointer to the
636 struct __Block_byref_x_VarName.
637
638 The struct will look something like:
639
640 struct __Block_byref_x_VarName {
641 ... <various fields>
642 struct __Block_byref_x_VarName *forwarding;
643 ... <various other fields>
644 SomeType VarName;
645 ... <maybe more fields>
646 };
647
648 If we are given the struct directly (as our starting point) we
649 need to tell the debugger to:
650
651 1). Add the offset of the forwarding field.
652
Dan Gohman4a618822010-02-10 16:03:48 +0000653 2). Follow that pointer to get the real __Block_byref_x_VarName
Caroline Ticec87c1e22009-08-31 21:19:37 +0000654 struct to use (the real one may have been copied onto the heap).
655
656 3). Add the offset for the field VarName, to find the actual variable.
657
658 If we started with a pointer to the struct, then we need to
659 dereference that pointer first, before the other steps.
660 Translating this into DWARF ops, we will need to append the following
661 to the current location description for the variable:
662
663 DW_OP_deref -- optional, if we start with a pointer
664 DW_OP_plus_uconst <forward_fld_offset>
665 DW_OP_deref
666 DW_OP_plus_uconst <varName_fld_offset>
667
668 That is what this function does. */
669
Devang Patel930143b2009-11-21 02:48:08 +0000670/// addBlockByrefAddress - Start with the address based on the location
Caroline Ticec87c1e22009-08-31 21:19:37 +0000671/// provided, and generate the DWARF information necessary to find the
672/// actual Block variable (navigating the Block struct) based on the
673/// starting location. Add the DWARF information to the die. For
674/// more information, read large comment just above here.
675///
Devang Patel930143b2009-11-21 02:48:08 +0000676void DwarfDebug::addBlockByrefAddress(DbgVariable *&DV, DIE *Die,
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000677 unsigned Attribute,
678 const MachineLocation &Location) {
Caroline Ticec87c1e22009-08-31 21:19:37 +0000679 const DIVariable &VD = DV->getVariable();
680 DIType Ty = VD.getType();
681 DIType TmpTy = Ty;
682 unsigned Tag = Ty.getTag();
683 bool isPointer = false;
684
Devang Patel2d9caf92009-11-25 17:36:49 +0000685 StringRef varName = VD.getName();
Caroline Ticec87c1e22009-08-31 21:19:37 +0000686
687 if (Tag == dwarf::DW_TAG_pointer_type) {
Mike Stump14cf8ec2009-09-30 00:08:22 +0000688 DIDerivedType DTy = DIDerivedType(Ty.getNode());
Caroline Ticec87c1e22009-08-31 21:19:37 +0000689 TmpTy = DTy.getTypeDerivedFrom();
690 isPointer = true;
691 }
692
693 DICompositeType blockStruct = DICompositeType(TmpTy.getNode());
694
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000695 // Find the __forwarding field and the variable field in the __Block_byref
696 // struct.
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000697 DIArray Fields = blockStruct.getTypeArray();
698 DIDescriptor varField = DIDescriptor();
699 DIDescriptor forwardingField = DIDescriptor();
Caroline Ticec87c1e22009-08-31 21:19:37 +0000700
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000701 for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) {
702 DIDescriptor Element = Fields.getElement(i);
703 DIDerivedType DT = DIDerivedType(Element.getNode());
Devang Patel2d9caf92009-11-25 17:36:49 +0000704 StringRef fieldName = DT.getName();
705 if (fieldName == "__forwarding")
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000706 forwardingField = Element;
Devang Patel2d9caf92009-11-25 17:36:49 +0000707 else if (fieldName == varName)
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000708 varField = Element;
709 }
Daniel Dunbarc418d6b2009-09-19 20:40:05 +0000710
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000711 // Get the offsets for the forwarding field and the variable field.
Chris Lattner71696ef2010-03-31 06:06:37 +0000712 unsigned forwardingFieldOffset =
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000713 DIDerivedType(forwardingField.getNode()).getOffsetInBits() >> 3;
Chris Lattner71696ef2010-03-31 06:06:37 +0000714 unsigned varFieldOffset =
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000715 DIDerivedType(varField.getNode()).getOffsetInBits() >> 3;
Caroline Ticec87c1e22009-08-31 21:19:37 +0000716
Mike Stump944fa252009-09-24 23:21:26 +0000717 // Decode the original location, and use that as the start of the byref
718 // variable's location.
Chris Lattner3a383cb2010-04-05 00:13:49 +0000719 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000720 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000721 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Caroline Ticec87c1e22009-08-31 21:19:37 +0000722
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000723 if (Location.isReg()) {
724 if (Reg < 32)
Devang Patel930143b2009-11-21 02:48:08 +0000725 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000726 else {
727 Reg = Reg - dwarf::DW_OP_reg0;
Devang Patel930143b2009-11-21 02:48:08 +0000728 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
729 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000730 }
731 } else {
732 if (Reg < 32)
Devang Patel930143b2009-11-21 02:48:08 +0000733 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000734 else {
Devang Patel930143b2009-11-21 02:48:08 +0000735 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
736 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000737 }
Caroline Ticec87c1e22009-08-31 21:19:37 +0000738
Devang Patel930143b2009-11-21 02:48:08 +0000739 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000740 }
Caroline Ticec87c1e22009-08-31 21:19:37 +0000741
Mike Stump944fa252009-09-24 23:21:26 +0000742 // If we started with a pointer to the __Block_byref... struct, then
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000743 // the first thing we need to do is dereference the pointer (DW_OP_deref).
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000744 if (isPointer)
Devang Patel930143b2009-11-21 02:48:08 +0000745 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Caroline Ticec87c1e22009-08-31 21:19:37 +0000746
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000747 // Next add the offset for the '__forwarding' field:
748 // DW_OP_plus_uconst ForwardingFieldOffset. Note there's no point in
749 // adding the offset if it's 0.
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000750 if (forwardingFieldOffset > 0) {
Devang Patel930143b2009-11-21 02:48:08 +0000751 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
752 addUInt(Block, 0, dwarf::DW_FORM_udata, forwardingFieldOffset);
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000753 }
Caroline Ticec87c1e22009-08-31 21:19:37 +0000754
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000755 // Now dereference the __forwarding field to get to the real __Block_byref
756 // struct: DW_OP_deref.
Devang Patel930143b2009-11-21 02:48:08 +0000757 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Caroline Ticec87c1e22009-08-31 21:19:37 +0000758
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000759 // Now that we've got the real __Block_byref... struct, add the offset
760 // for the variable's field to get to the location of the actual variable:
761 // DW_OP_plus_uconst varFieldOffset. Again, don't add if it's 0.
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000762 if (varFieldOffset > 0) {
Devang Patel930143b2009-11-21 02:48:08 +0000763 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
764 addUInt(Block, 0, dwarf::DW_FORM_udata, varFieldOffset);
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000765 }
Caroline Ticec87c1e22009-08-31 21:19:37 +0000766
Daniel Dunbarbe22ec42009-09-19 20:40:14 +0000767 // Now attach the location information to the DIE.
Devang Patel930143b2009-11-21 02:48:08 +0000768 addBlock(Die, Attribute, 0, Block);
Caroline Ticec87c1e22009-08-31 21:19:37 +0000769}
770
Devang Patel930143b2009-11-21 02:48:08 +0000771/// addAddress - Add an address attribute to a die based on the location
Bill Wendling2f921f82009-05-15 09:23:25 +0000772/// provided.
Devang Patel930143b2009-11-21 02:48:08 +0000773void DwarfDebug::addAddress(DIE *Die, unsigned Attribute,
Bill Wendling2f921f82009-05-15 09:23:25 +0000774 const MachineLocation &Location) {
Chris Lattner3a383cb2010-04-05 00:13:49 +0000775 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
Bill Wendling2f921f82009-05-15 09:23:25 +0000776 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
Benjamin Kramer74729ae2010-03-31 19:34:01 +0000777 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Bill Wendling2f921f82009-05-15 09:23:25 +0000778
779 if (Location.isReg()) {
780 if (Reg < 32) {
Devang Patel930143b2009-11-21 02:48:08 +0000781 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Bill Wendling2f921f82009-05-15 09:23:25 +0000782 } else {
Devang Patel930143b2009-11-21 02:48:08 +0000783 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx);
784 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Bill Wendling2f921f82009-05-15 09:23:25 +0000785 }
786 } else {
787 if (Reg < 32) {
Devang Patel930143b2009-11-21 02:48:08 +0000788 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Bill Wendling2f921f82009-05-15 09:23:25 +0000789 } else {
Devang Patel930143b2009-11-21 02:48:08 +0000790 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
791 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Bill Wendling2f921f82009-05-15 09:23:25 +0000792 }
793
Devang Patel930143b2009-11-21 02:48:08 +0000794 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Bill Wendling2f921f82009-05-15 09:23:25 +0000795 }
796
Devang Patel930143b2009-11-21 02:48:08 +0000797 addBlock(Die, Attribute, 0, Block);
Bill Wendling2f921f82009-05-15 09:23:25 +0000798}
799
Devang Patel2b75ed22009-12-10 19:14:49 +0000800/// addToContextOwner - Add Die into the list of its context owner's children.
801void DwarfDebug::addToContextOwner(DIE *Die, DIDescriptor Context) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000802 if (Context.isType()) {
Devang Patel2b75ed22009-12-10 19:14:49 +0000803 DIE *ContextDIE = getOrCreateTypeDIE(DIType(Context.getNode()));
804 ContextDIE->addChild(Die);
Devang Patel1f4690c2009-12-15 19:16:48 +0000805 } else if (Context.isNameSpace()) {
806 DIE *ContextDIE = getOrCreateNameSpace(DINameSpace(Context.getNode()));
807 ContextDIE->addChild(Die);
Devang Patel2b75ed22009-12-10 19:14:49 +0000808 } else if (DIE *ContextDIE = ModuleCU->getDIE(Context.getNode()))
809 ContextDIE->addChild(Die);
810 else
811 ModuleCU->addDie(Die);
812}
813
Devang Patelb5b60ea2009-12-10 18:05:33 +0000814/// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
815/// given DIType.
816DIE *DwarfDebug::getOrCreateTypeDIE(DIType Ty) {
817 DIE *TyDIE = ModuleCU->getDIE(Ty.getNode());
818 if (TyDIE)
819 return TyDIE;
820
821 // Create new type.
822 TyDIE = new DIE(dwarf::DW_TAG_base_type);
823 ModuleCU->insertDIE(Ty.getNode(), TyDIE);
824 if (Ty.isBasicType())
825 constructTypeDIE(*TyDIE, DIBasicType(Ty.getNode()));
826 else if (Ty.isCompositeType())
827 constructTypeDIE(*TyDIE, DICompositeType(Ty.getNode()));
828 else {
829 assert(Ty.isDerivedType() && "Unknown kind of DIType");
830 constructTypeDIE(*TyDIE, DIDerivedType(Ty.getNode()));
831 }
832
Devang Patel2b75ed22009-12-10 19:14:49 +0000833 addToContextOwner(TyDIE, Ty.getContext());
Devang Patelb5b60ea2009-12-10 18:05:33 +0000834 return TyDIE;
835}
836
Devang Patel930143b2009-11-21 02:48:08 +0000837/// addType - Add a new type attribute to the specified entity.
Devang Patel9ccfb642009-12-09 18:24:21 +0000838void DwarfDebug::addType(DIE *Entity, DIType Ty) {
Devang Patel3b548aa2010-03-08 20:52:55 +0000839 if (!Ty.isValid())
Bill Wendling2f921f82009-05-15 09:23:25 +0000840 return;
841
842 // Check for pre-existence.
Devang Patel9ccfb642009-12-09 18:24:21 +0000843 DIEEntry *Entry = ModuleCU->getDIEEntry(Ty.getNode());
Bill Wendling2f921f82009-05-15 09:23:25 +0000844 // If it exists then use the existing value.
Devang Patel930143b2009-11-21 02:48:08 +0000845 if (Entry) {
846 Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry);
Bill Wendling2f921f82009-05-15 09:23:25 +0000847 return;
848 }
849
Bill Wendling2f921f82009-05-15 09:23:25 +0000850 // Construct type.
Devang Patelb5b60ea2009-12-10 18:05:33 +0000851 DIE *Buffer = getOrCreateTypeDIE(Ty);
Bill Wendling2f921f82009-05-15 09:23:25 +0000852
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +0000853 // Set up proxy.
854 Entry = createDIEEntry(Buffer);
855 ModuleCU->insertDIEEntry(Ty.getNode(), Entry);
856
Devang Patel930143b2009-11-21 02:48:08 +0000857 Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry);
Bill Wendling2f921f82009-05-15 09:23:25 +0000858}
859
Devang Patel930143b2009-11-21 02:48:08 +0000860/// constructTypeDIE - Construct basic type die from DIBasicType.
Devang Patel9ccfb642009-12-09 18:24:21 +0000861void DwarfDebug::constructTypeDIE(DIE &Buffer, DIBasicType BTy) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000862 // Get core information.
Devang Patel2d9caf92009-11-25 17:36:49 +0000863 StringRef Name = BTy.getName();
Bill Wendling2f921f82009-05-15 09:23:25 +0000864 Buffer.setTag(dwarf::DW_TAG_base_type);
Devang Patel930143b2009-11-21 02:48:08 +0000865 addUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Bill Wendling2f921f82009-05-15 09:23:25 +0000866 BTy.getEncoding());
867
868 // Add name if not anonymous or intermediate type.
Devang Patel2d9caf92009-11-25 17:36:49 +0000869 if (!Name.empty())
Devang Patel930143b2009-11-21 02:48:08 +0000870 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling2f921f82009-05-15 09:23:25 +0000871 uint64_t Size = BTy.getSizeInBits() >> 3;
Devang Patel930143b2009-11-21 02:48:08 +0000872 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling2f921f82009-05-15 09:23:25 +0000873}
874
Devang Patel930143b2009-11-21 02:48:08 +0000875/// constructTypeDIE - Construct derived type die from DIDerivedType.
Devang Patel9ccfb642009-12-09 18:24:21 +0000876void DwarfDebug::constructTypeDIE(DIE &Buffer, DIDerivedType DTy) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000877 // Get core information.
Devang Patel2d9caf92009-11-25 17:36:49 +0000878 StringRef Name = DTy.getName();
Bill Wendling2f921f82009-05-15 09:23:25 +0000879 uint64_t Size = DTy.getSizeInBits() >> 3;
880 unsigned Tag = DTy.getTag();
881
882 // FIXME - Workaround for templates.
883 if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type;
884
885 Buffer.setTag(Tag);
886
887 // Map to main type, void will not have a type.
888 DIType FromTy = DTy.getTypeDerivedFrom();
Devang Patel9ccfb642009-12-09 18:24:21 +0000889 addType(&Buffer, FromTy);
Bill Wendling2f921f82009-05-15 09:23:25 +0000890
891 // Add name if not anonymous or intermediate type.
Devang Patelae466ef2009-11-30 23:56:56 +0000892 if (!Name.empty())
Devang Patel930143b2009-11-21 02:48:08 +0000893 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling2f921f82009-05-15 09:23:25 +0000894
895 // Add size if non-zero (derived types might be zero-sized.)
896 if (Size)
Devang Patel930143b2009-11-21 02:48:08 +0000897 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling2f921f82009-05-15 09:23:25 +0000898
899 // Add source line info if available and TyDesc is not a forward declaration.
Devang Patelb5b51592009-11-23 18:43:37 +0000900 if (!DTy.isForwardDecl())
Devang Patel930143b2009-11-21 02:48:08 +0000901 addSourceLine(&Buffer, &DTy);
Bill Wendling2f921f82009-05-15 09:23:25 +0000902}
903
Devang Patel930143b2009-11-21 02:48:08 +0000904/// constructTypeDIE - Construct type DIE from DICompositeType.
Devang Patel9ccfb642009-12-09 18:24:21 +0000905void DwarfDebug::constructTypeDIE(DIE &Buffer, DICompositeType CTy) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000906 // Get core information.
Devang Patel2d9caf92009-11-25 17:36:49 +0000907 StringRef Name = CTy.getName();
Bill Wendling2f921f82009-05-15 09:23:25 +0000908
909 uint64_t Size = CTy.getSizeInBits() >> 3;
910 unsigned Tag = CTy.getTag();
911 Buffer.setTag(Tag);
912
913 switch (Tag) {
914 case dwarf::DW_TAG_vector_type:
915 case dwarf::DW_TAG_array_type:
Devang Patel9ccfb642009-12-09 18:24:21 +0000916 constructArrayTypeDIE(Buffer, &CTy);
Bill Wendling2f921f82009-05-15 09:23:25 +0000917 break;
918 case dwarf::DW_TAG_enumeration_type: {
919 DIArray Elements = CTy.getTypeArray();
920
921 // Add enumerators to enumeration type.
922 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
923 DIE *ElemDie = NULL;
Devang Patel3b548aa2010-03-08 20:52:55 +0000924 DIDescriptor Enum(Elements.getElement(i).getNode());
925 if (Enum.isEnumerator()) {
926 ElemDie = constructEnumTypeDIE(DIEnumerator(Enum.getNode()));
Devang Patel930143b2009-11-21 02:48:08 +0000927 Buffer.addChild(ElemDie);
Devang Patelfafa1fe2009-10-09 17:51:49 +0000928 }
Bill Wendling2f921f82009-05-15 09:23:25 +0000929 }
930 }
931 break;
932 case dwarf::DW_TAG_subroutine_type: {
933 // Add return type.
934 DIArray Elements = CTy.getTypeArray();
935 DIDescriptor RTy = Elements.getElement(0);
Devang Patel9ccfb642009-12-09 18:24:21 +0000936 addType(&Buffer, DIType(RTy.getNode()));
Bill Wendling2f921f82009-05-15 09:23:25 +0000937
938 // Add prototype flag.
Devang Patel930143b2009-11-21 02:48:08 +0000939 addUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Bill Wendling2f921f82009-05-15 09:23:25 +0000940
941 // Add arguments.
942 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
943 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
944 DIDescriptor Ty = Elements.getElement(i);
Devang Patel9ccfb642009-12-09 18:24:21 +0000945 addType(Arg, DIType(Ty.getNode()));
Devang Patel930143b2009-11-21 02:48:08 +0000946 Buffer.addChild(Arg);
Bill Wendling2f921f82009-05-15 09:23:25 +0000947 }
948 }
949 break;
950 case dwarf::DW_TAG_structure_type:
951 case dwarf::DW_TAG_union_type:
952 case dwarf::DW_TAG_class_type: {
953 // Add elements to structure type.
954 DIArray Elements = CTy.getTypeArray();
955
956 // A forward struct declared type may not have elements available.
Devang Patel3b548aa2010-03-08 20:52:55 +0000957 unsigned N = Elements.getNumElements();
958 if (N == 0)
Bill Wendling2f921f82009-05-15 09:23:25 +0000959 break;
960
961 // Add elements to structure type.
Devang Patel3b548aa2010-03-08 20:52:55 +0000962 for (unsigned i = 0; i < N; ++i) {
Bill Wendling2f921f82009-05-15 09:23:25 +0000963 DIDescriptor Element = Elements.getElement(i);
964 DIE *ElemDie = NULL;
Devang Patel3b548aa2010-03-08 20:52:55 +0000965 if (Element.isSubprogram())
Devang Patel525dda02009-12-14 16:18:45 +0000966 ElemDie = createSubprogramDIE(DISubprogram(Element.getNode()));
Devang Patel3b548aa2010-03-08 20:52:55 +0000967 else if (Element.isVariable()) {
Devang Patel160c92d2010-01-30 01:08:30 +0000968 DIVariable DV(Element.getNode());
969 ElemDie = new DIE(dwarf::DW_TAG_variable);
970 addString(ElemDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
971 DV.getName());
972 addType(ElemDie, DV.getType());
973 addUInt(ElemDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
974 addUInt(ElemDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
975 addSourceLine(ElemDie, &DV);
Devang Patel3b548aa2010-03-08 20:52:55 +0000976 } else if (Element.isDerivedType())
Devang Patel9ccfb642009-12-09 18:24:21 +0000977 ElemDie = createMemberDIE(DIDerivedType(Element.getNode()));
Devang Patel3b548aa2010-03-08 20:52:55 +0000978 else
979 continue;
Devang Patel930143b2009-11-21 02:48:08 +0000980 Buffer.addChild(ElemDie);
Bill Wendling2f921f82009-05-15 09:23:25 +0000981 }
982
Devang Patel3082c012009-08-27 23:51:51 +0000983 if (CTy.isAppleBlockExtension())
Devang Patel930143b2009-11-21 02:48:08 +0000984 addUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1);
Bill Wendling2f921f82009-05-15 09:23:25 +0000985
986 unsigned RLang = CTy.getRunTimeLang();
987 if (RLang)
Devang Patel930143b2009-11-21 02:48:08 +0000988 addUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class,
Bill Wendling2f921f82009-05-15 09:23:25 +0000989 dwarf::DW_FORM_data1, RLang);
Devang Patel303a1be2010-01-26 21:16:06 +0000990
991 DICompositeType ContainingType = CTy.getContainingType();
Devang Patel3b548aa2010-03-08 20:52:55 +0000992 if (DIDescriptor(ContainingType.getNode()).isCompositeType())
Devang Patel303a1be2010-01-26 21:16:06 +0000993 addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4,
994 getOrCreateTypeDIE(DIType(ContainingType.getNode())));
Bill Wendling2f921f82009-05-15 09:23:25 +0000995 break;
996 }
997 default:
998 break;
999 }
1000
1001 // Add name if not anonymous or intermediate type.
Devang Patel2d9caf92009-11-25 17:36:49 +00001002 if (!Name.empty())
Devang Patel930143b2009-11-21 02:48:08 +00001003 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling2f921f82009-05-15 09:23:25 +00001004
Devang Patelaedd6f52010-01-29 18:34:58 +00001005 if (Tag == dwarf::DW_TAG_enumeration_type || Tag == dwarf::DW_TAG_class_type ||
Bill Wendling2f921f82009-05-15 09:23:25 +00001006 Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) {
1007 // Add size if non-zero (derived types might be zero-sized.)
1008 if (Size)
Devang Patel930143b2009-11-21 02:48:08 +00001009 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling2f921f82009-05-15 09:23:25 +00001010 else {
1011 // Add zero size if it is not a forward declaration.
1012 if (CTy.isForwardDecl())
Devang Patel930143b2009-11-21 02:48:08 +00001013 addUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Bill Wendling2f921f82009-05-15 09:23:25 +00001014 else
Devang Patel930143b2009-11-21 02:48:08 +00001015 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0);
Bill Wendling2f921f82009-05-15 09:23:25 +00001016 }
1017
1018 // Add source line info if available.
1019 if (!CTy.isForwardDecl())
Devang Patel930143b2009-11-21 02:48:08 +00001020 addSourceLine(&Buffer, &CTy);
Bill Wendling2f921f82009-05-15 09:23:25 +00001021 }
1022}
1023
Devang Patel930143b2009-11-21 02:48:08 +00001024/// constructSubrangeDIE - Construct subrange DIE from DISubrange.
1025void DwarfDebug::constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){
Bill Wendling2f921f82009-05-15 09:23:25 +00001026 int64_t L = SR.getLo();
1027 int64_t H = SR.getHi();
1028 DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type);
1029
Devang Patel930143b2009-11-21 02:48:08 +00001030 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy);
Devang Patelf691df32009-08-14 20:59:16 +00001031 if (L)
Devang Patel930143b2009-11-21 02:48:08 +00001032 addSInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L);
Devang Patel8f046022009-12-04 23:10:24 +00001033 addSInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H);
Bill Wendling2f921f82009-05-15 09:23:25 +00001034
Devang Patel930143b2009-11-21 02:48:08 +00001035 Buffer.addChild(DW_Subrange);
Bill Wendling2f921f82009-05-15 09:23:25 +00001036}
1037
Devang Patel930143b2009-11-21 02:48:08 +00001038/// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
Devang Patel9ccfb642009-12-09 18:24:21 +00001039void DwarfDebug::constructArrayTypeDIE(DIE &Buffer,
Bill Wendling2f921f82009-05-15 09:23:25 +00001040 DICompositeType *CTy) {
1041 Buffer.setTag(dwarf::DW_TAG_array_type);
1042 if (CTy->getTag() == dwarf::DW_TAG_vector_type)
Devang Patel930143b2009-11-21 02:48:08 +00001043 addUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1);
Bill Wendling2f921f82009-05-15 09:23:25 +00001044
1045 // Emit derived type.
Devang Patel9ccfb642009-12-09 18:24:21 +00001046 addType(&Buffer, CTy->getTypeDerivedFrom());
Bill Wendling2f921f82009-05-15 09:23:25 +00001047 DIArray Elements = CTy->getTypeArray();
1048
Devang Patel92e8c652009-11-21 00:31:03 +00001049 // Get an anonymous type for index type.
Devang Patel9ccfb642009-12-09 18:24:21 +00001050 DIE *IdxTy = ModuleCU->getIndexTyDie();
Devang Patel92e8c652009-11-21 00:31:03 +00001051 if (!IdxTy) {
1052 // Construct an anonymous type for index type.
1053 IdxTy = new DIE(dwarf::DW_TAG_base_type);
Devang Patel930143b2009-11-21 02:48:08 +00001054 addUInt(IdxTy, dwarf::DW_AT_byte_size, 0, sizeof(int32_t));
1055 addUInt(IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Devang Patel92e8c652009-11-21 00:31:03 +00001056 dwarf::DW_ATE_signed);
Devang Patel9ccfb642009-12-09 18:24:21 +00001057 ModuleCU->addDie(IdxTy);
1058 ModuleCU->setIndexTyDie(IdxTy);
Devang Patel92e8c652009-11-21 00:31:03 +00001059 }
Bill Wendling2f921f82009-05-15 09:23:25 +00001060
1061 // Add subranges to array type.
1062 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
1063 DIDescriptor Element = Elements.getElement(i);
1064 if (Element.getTag() == dwarf::DW_TAG_subrange_type)
Devang Patel930143b2009-11-21 02:48:08 +00001065 constructSubrangeDIE(Buffer, DISubrange(Element.getNode()), IdxTy);
Bill Wendling2f921f82009-05-15 09:23:25 +00001066 }
1067}
1068
Devang Patel930143b2009-11-21 02:48:08 +00001069/// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
Devang Patel3b548aa2010-03-08 20:52:55 +00001070DIE *DwarfDebug::constructEnumTypeDIE(DIEnumerator ETy) {
Bill Wendling2f921f82009-05-15 09:23:25 +00001071 DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator);
Devang Patel3b548aa2010-03-08 20:52:55 +00001072 StringRef Name = ETy.getName();
Devang Patel930143b2009-11-21 02:48:08 +00001073 addString(Enumerator, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Devang Patel3b548aa2010-03-08 20:52:55 +00001074 int64_t Value = ETy.getEnumValue();
Devang Patel930143b2009-11-21 02:48:08 +00001075 addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value);
Bill Wendling2f921f82009-05-15 09:23:25 +00001076 return Enumerator;
1077}
1078
Devang Patel43ef34d2010-01-05 01:46:14 +00001079/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
1080/// printer to not emit usual symbol prefix before the symbol name is used then
1081/// return linkage name after skipping this special LLVM prefix.
1082static StringRef getRealLinkageName(StringRef LinkageName) {
1083 char One = '\1';
1084 if (LinkageName.startswith(StringRef(&One, 1)))
1085 return LinkageName.substr(1);
1086 return LinkageName;
1087}
1088
Devang Patel930143b2009-11-21 02:48:08 +00001089/// createGlobalVariableDIE - Create new DIE using GV.
Devang Patel9ccfb642009-12-09 18:24:21 +00001090DIE *DwarfDebug::createGlobalVariableDIE(const DIGlobalVariable &GV) {
Jim Grosbach00e9c612009-11-22 19:20:36 +00001091 // If the global variable was optmized out then no need to create debug info
1092 // entry.
Devang Patelcc11371b2009-11-06 17:58:12 +00001093 if (!GV.getGlobal()) return NULL;
Devang Patel2d9caf92009-11-25 17:36:49 +00001094 if (GV.getDisplayName().empty()) return NULL;
Devang Patel06ce6502009-11-06 01:30:04 +00001095
Bill Wendling2f921f82009-05-15 09:23:25 +00001096 DIE *GVDie = new DIE(dwarf::DW_TAG_variable);
Jim Grosbach042483e2009-11-21 23:12:12 +00001097 addString(GVDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
Devang Patelb2969422009-09-29 18:40:58 +00001098 GV.getDisplayName());
1099
Devang Patel2d9caf92009-11-25 17:36:49 +00001100 StringRef LinkageName = GV.getLinkageName();
Devang Patel43ef34d2010-01-05 01:46:14 +00001101 if (!LinkageName.empty())
Devang Patel930143b2009-11-21 02:48:08 +00001102 addString(GVDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel43ef34d2010-01-05 01:46:14 +00001103 getRealLinkageName(LinkageName));
1104
Devang Patel9ccfb642009-12-09 18:24:21 +00001105 addType(GVDie, GV.getType());
Bill Wendling2f921f82009-05-15 09:23:25 +00001106 if (!GV.isLocalToUnit())
Devang Patel930143b2009-11-21 02:48:08 +00001107 addUInt(GVDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
1108 addSourceLine(GVDie, &GV);
Devang Patel4144a822009-10-05 23:22:08 +00001109
Bill Wendling2f921f82009-05-15 09:23:25 +00001110 return GVDie;
1111}
1112
Devang Patel930143b2009-11-21 02:48:08 +00001113/// createMemberDIE - Create new member DIE.
Devang Patel9ccfb642009-12-09 18:24:21 +00001114DIE *DwarfDebug::createMemberDIE(const DIDerivedType &DT) {
Bill Wendling2f921f82009-05-15 09:23:25 +00001115 DIE *MemberDie = new DIE(DT.getTag());
Devang Patel2d9caf92009-11-25 17:36:49 +00001116 StringRef Name = DT.getName();
1117 if (!Name.empty())
Devang Patel930143b2009-11-21 02:48:08 +00001118 addString(MemberDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Devang Patel2d9caf92009-11-25 17:36:49 +00001119
Devang Patel9ccfb642009-12-09 18:24:21 +00001120 addType(MemberDie, DT.getTypeDerivedFrom());
Bill Wendling2f921f82009-05-15 09:23:25 +00001121
Devang Patel930143b2009-11-21 02:48:08 +00001122 addSourceLine(MemberDie, &DT);
Bill Wendling2f921f82009-05-15 09:23:25 +00001123
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001124 DIEBlock *MemLocationDie = new (DIEValueAllocator) DIEBlock();
Devang Patel930143b2009-11-21 02:48:08 +00001125 addUInt(MemLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
Devang Patel67f56f02009-11-04 22:06:12 +00001126
Bill Wendling2f921f82009-05-15 09:23:25 +00001127 uint64_t Size = DT.getSizeInBits();
Devang Patelf05d5722009-11-04 23:48:00 +00001128 uint64_t FieldSize = DT.getOriginalTypeSize();
Bill Wendling2f921f82009-05-15 09:23:25 +00001129
1130 if (Size != FieldSize) {
1131 // Handle bitfield.
Devang Patel930143b2009-11-21 02:48:08 +00001132 addUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3);
1133 addUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits());
Bill Wendling2f921f82009-05-15 09:23:25 +00001134
1135 uint64_t Offset = DT.getOffsetInBits();
Bill Wendling2f921f82009-05-15 09:23:25 +00001136 uint64_t AlignMask = ~(DT.getAlignInBits() - 1);
1137 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
Benjamin Kramer2b459982010-01-07 17:50:57 +00001138 uint64_t FieldOffset = (HiMark - FieldSize);
Bill Wendling2f921f82009-05-15 09:23:25 +00001139 Offset -= FieldOffset;
1140
1141 // Maybe we need to work from the other end.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001142 if (Asm->getTargetData().isLittleEndian())
1143 Offset = FieldSize - (Offset + Size);
Devang Patel930143b2009-11-21 02:48:08 +00001144 addUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset);
Bill Wendling2f921f82009-05-15 09:23:25 +00001145
Devang Patel67f56f02009-11-04 22:06:12 +00001146 // Here WD_AT_data_member_location points to the anonymous
1147 // field that includes this bit field.
Devang Patel930143b2009-11-21 02:48:08 +00001148 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, FieldOffset >> 3);
Devang Patel67f56f02009-11-04 22:06:12 +00001149
1150 } else
1151 // This is not a bitfield.
Devang Patel930143b2009-11-21 02:48:08 +00001152 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3);
Devang Patel67f56f02009-11-04 22:06:12 +00001153
Devang Pateld2316892010-02-03 20:08:48 +00001154 if (DT.getTag() == dwarf::DW_TAG_inheritance
1155 && DT.isVirtual()) {
1156
1157 // For C++, virtual base classes are not at fixed offset. Use following
1158 // expression to extract appropriate offset from vtable.
1159 // BaseAddr = ObAddr + *((*ObAddr) - Offset)
1160
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001161 DIEBlock *VBaseLocationDie = new (DIEValueAllocator) DIEBlock();
Devang Pateld2316892010-02-03 20:08:48 +00001162 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_dup);
1163 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
1164 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1165 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits());
1166 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_minus);
1167 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
1168 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus);
1169
1170 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0,
1171 VBaseLocationDie);
1172 } else
1173 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, MemLocationDie);
Bill Wendling2f921f82009-05-15 09:23:25 +00001174
1175 if (DT.isProtected())
Devang Pateleb57c592009-12-03 19:11:07 +00001176 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag,
Bill Wendling2f921f82009-05-15 09:23:25 +00001177 dwarf::DW_ACCESS_protected);
1178 else if (DT.isPrivate())
Devang Pateleb57c592009-12-03 19:11:07 +00001179 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag,
Bill Wendling2f921f82009-05-15 09:23:25 +00001180 dwarf::DW_ACCESS_private);
Devang Pateleb57c592009-12-03 19:11:07 +00001181 else if (DT.getTag() == dwarf::DW_TAG_inheritance)
1182 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag,
1183 dwarf::DW_ACCESS_public);
1184 if (DT.isVirtual())
1185 addUInt(MemberDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag,
1186 dwarf::DW_VIRTUALITY_virtual);
Bill Wendling2f921f82009-05-15 09:23:25 +00001187 return MemberDie;
1188}
1189
Devang Patel525dda02009-12-14 16:18:45 +00001190/// createSubprogramDIE - Create new DIE using SP.
1191DIE *DwarfDebug::createSubprogramDIE(const DISubprogram &SP, bool MakeDecl) {
1192 DIE *SPDie = ModuleCU->getDIE(SP.getNode());
1193 if (SPDie)
1194 return SPDie;
1195
1196 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patelf200b392010-03-02 17:58:15 +00001197 // Constructors and operators for anonymous aggregates do not have names.
Devang Pateld0fa3042010-03-02 01:26:20 +00001198 if (!SP.getName().empty())
1199 addString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, SP.getName());
Bill Wendling2f921f82009-05-15 09:23:25 +00001200
Devang Patel2d9caf92009-11-25 17:36:49 +00001201 StringRef LinkageName = SP.getLinkageName();
Devang Patel43ef34d2010-01-05 01:46:14 +00001202 if (!LinkageName.empty())
Devang Patel930143b2009-11-21 02:48:08 +00001203 addString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel43ef34d2010-01-05 01:46:14 +00001204 getRealLinkageName(LinkageName));
1205
Devang Patel930143b2009-11-21 02:48:08 +00001206 addSourceLine(SPDie, &SP);
Bill Wendling2f921f82009-05-15 09:23:25 +00001207
Bill Wendling2f921f82009-05-15 09:23:25 +00001208 // Add prototyped tag, if C or ObjC.
1209 unsigned Lang = SP.getCompileUnit().getLanguage();
1210 if (Lang == dwarf::DW_LANG_C99 || Lang == dwarf::DW_LANG_C89 ||
1211 Lang == dwarf::DW_LANG_ObjC)
Devang Patel930143b2009-11-21 02:48:08 +00001212 addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Bill Wendling2f921f82009-05-15 09:23:25 +00001213
1214 // Add Return Type.
Devang Patel236526d2009-12-03 01:25:38 +00001215 DICompositeType SPTy = SP.getType();
1216 DIArray Args = SPTy.getTypeArray();
Bill Wendling2f921f82009-05-15 09:23:25 +00001217 unsigned SPTag = SPTy.getTag();
Devang Pateleb57c592009-12-03 19:11:07 +00001218
Devang Patel3b548aa2010-03-08 20:52:55 +00001219 if (Args.getNumElements() == 0 || SPTag != dwarf::DW_TAG_subroutine_type)
Devang Patel9ccfb642009-12-09 18:24:21 +00001220 addType(SPDie, SPTy);
Devang Patel236526d2009-12-03 01:25:38 +00001221 else
Devang Patel9ccfb642009-12-09 18:24:21 +00001222 addType(SPDie, DIType(Args.getElement(0).getNode()));
Devang Patel236526d2009-12-03 01:25:38 +00001223
Devang Pateleb57c592009-12-03 19:11:07 +00001224 unsigned VK = SP.getVirtuality();
1225 if (VK) {
1226 addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, VK);
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001227 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Pateleb57c592009-12-03 19:11:07 +00001228 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1229 addUInt(Block, 0, dwarf::DW_FORM_data1, SP.getVirtualIndex());
1230 addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block);
Devang Patel018b29b2010-01-19 06:19:05 +00001231 ContainingTypeMap.insert(std::make_pair(SPDie,
1232 SP.getContainingType().getNode()));
Devang Pateleb57c592009-12-03 19:11:07 +00001233 }
1234
Devang Patel525dda02009-12-14 16:18:45 +00001235 if (MakeDecl || !SP.isDefinition()) {
Devang Patel930143b2009-11-21 02:48:08 +00001236 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Bill Wendling2f921f82009-05-15 09:23:25 +00001237
1238 // Add arguments. Do not add arguments for subprogram definition. They will
Devang Patel236526d2009-12-03 01:25:38 +00001239 // be handled while processing variables.
1240 DICompositeType SPTy = SP.getType();
1241 DIArray Args = SPTy.getTypeArray();
1242 unsigned SPTag = SPTy.getTag();
1243
Bill Wendling2f921f82009-05-15 09:23:25 +00001244 if (SPTag == dwarf::DW_TAG_subroutine_type)
1245 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1246 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
Devang Patel6efc8e52010-02-06 01:02:37 +00001247 DIType ATy = DIType(DIType(Args.getElement(i).getNode()));
1248 addType(Arg, ATy);
1249 if (ATy.isArtificial())
1250 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patel930143b2009-11-21 02:48:08 +00001251 SPDie->addChild(Arg);
Bill Wendling2f921f82009-05-15 09:23:25 +00001252 }
1253 }
1254
Devang Patel999b4992010-02-03 19:57:19 +00001255 if (SP.isArtificial())
1256 addUInt(SPDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
1257
Bill Wendling2f921f82009-05-15 09:23:25 +00001258 // DW_TAG_inlined_subroutine may refer to this DIE.
Devang Patel9ccfb642009-12-09 18:24:21 +00001259 ModuleCU->insertDIE(SP.getNode(), SPDie);
Bill Wendling2f921f82009-05-15 09:23:25 +00001260 return SPDie;
1261}
1262
Devang Patel4c603b12010-04-01 17:16:48 +00001263/// getUpdatedDbgScope - Find DbgScope assicated with the instruction.
1264/// Update scope hierarchy. Create abstract scope if required.
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001265DbgScope *DwarfDebug::getUpdatedDbgScope(MDNode *N, const MachineInstr *MI,
Chris Lattner8d2fe282010-03-31 05:36:29 +00001266 MDNode *InlinedAt) {
1267 assert(N && "Invalid Scope encoding!");
1268 assert(MI && "Missing machine instruction!");
Devang Patel4c603b12010-04-01 17:16:48 +00001269 bool isAConcreteScope = InlinedAt != 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001270
1271 DbgScope *NScope = NULL;
1272
1273 if (InlinedAt)
1274 NScope = DbgScopeMap.lookup(InlinedAt);
1275 else
1276 NScope = DbgScopeMap.lookup(N);
Chris Lattner8d2fe282010-03-31 05:36:29 +00001277 assert(NScope && "Unable to find working scope!");
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001278
1279 if (NScope->getFirstInsn())
1280 return NScope;
Devang Patel75cc16c2009-10-01 20:31:14 +00001281
1282 DbgScope *Parent = NULL;
Devang Patel4c603b12010-04-01 17:16:48 +00001283 if (isAConcreteScope) {
Devang Patel6875c5eb2009-10-14 21:08:09 +00001284 DILocation IL(InlinedAt);
Jim Grosbach042483e2009-11-21 23:12:12 +00001285 Parent = getUpdatedDbgScope(IL.getScope().getNode(), MI,
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001286 IL.getOrigLocation().getNode());
Chris Lattner8d2fe282010-03-31 05:36:29 +00001287 assert(Parent && "Unable to find Parent scope!");
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001288 NScope->setParent(Parent);
Devang Patel930143b2009-11-21 02:48:08 +00001289 Parent->addScope(NScope);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001290 } else if (DIDescriptor(N).isLexicalBlock()) {
1291 DILexicalBlock DB(N);
Devang Patel3b548aa2010-03-08 20:52:55 +00001292 Parent = getUpdatedDbgScope(DB.getContext().getNode(), MI, InlinedAt);
1293 NScope->setParent(Parent);
1294 Parent->addScope(NScope);
Devang Patel6875c5eb2009-10-14 21:08:09 +00001295 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001296
Devang Patelcfeaa482009-10-27 20:47:17 +00001297 NScope->setFirstInsn(MI);
Devang Patel75cc16c2009-10-01 20:31:14 +00001298
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001299 if (!Parent && !InlinedAt) {
Devang Patel78319c62009-11-11 00:31:36 +00001300 StringRef SPName = DISubprogram(N).getLinkageName();
Chris Lattner3a383cb2010-04-05 00:13:49 +00001301 if (SPName == Asm->MF->getFunction()->getName())
Devang Patel78319c62009-11-11 00:31:36 +00001302 CurrentFnDbgScope = NScope;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001303 }
Devang Patel75cc16c2009-10-01 20:31:14 +00001304
Devang Patel4c603b12010-04-01 17:16:48 +00001305 if (isAConcreteScope) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001306 ConcreteScopes[InlinedAt] = NScope;
1307 getOrCreateAbstractScope(N);
1308 }
1309
Devang Patelcfeaa482009-10-27 20:47:17 +00001310 return NScope;
Devang Patel75cc16c2009-10-01 20:31:14 +00001311}
1312
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001313DbgScope *DwarfDebug::getOrCreateAbstractScope(MDNode *N) {
Chris Lattner8d2fe282010-03-31 05:36:29 +00001314 assert(N && "Invalid Scope encoding!");
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001315
1316 DbgScope *AScope = AbstractScopes.lookup(N);
1317 if (AScope)
1318 return AScope;
Jim Grosbach042483e2009-11-21 23:12:12 +00001319
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001320 DbgScope *Parent = NULL;
1321
1322 DIDescriptor Scope(N);
1323 if (Scope.isLexicalBlock()) {
1324 DILexicalBlock DB(N);
1325 DIDescriptor ParentDesc = DB.getContext();
Devang Patel3b548aa2010-03-08 20:52:55 +00001326 Parent = getOrCreateAbstractScope(ParentDesc.getNode());
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001327 }
1328
1329 AScope = new DbgScope(Parent, DIDescriptor(N), NULL);
1330
1331 if (Parent)
Devang Patel930143b2009-11-21 02:48:08 +00001332 Parent->addScope(AScope);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001333 AScope->setAbstractScope();
1334 AbstractScopes[N] = AScope;
1335 if (DIDescriptor(N).isSubprogram())
1336 AbstractScopesList.push_back(AScope);
1337 return AScope;
1338}
Devang Patel75cc16c2009-10-01 20:31:14 +00001339
Devang Patel019922d2010-04-06 23:53:48 +00001340/// isSubprogramContext - Return true if Context is either a subprogram
1341/// or another context nested inside a subprogram.
1342bool isSubprogramContext(MDNode *Context) {
1343 if (!Context)
1344 return false;
1345 DIDescriptor D(Context);
1346 if (D.isSubprogram())
1347 return true;
1348 if (D.isType())
1349 return isSubprogramContext(DIType(Context).getContext().getNode());
1350 return false;
1351}
1352
Jim Grosbach042483e2009-11-21 23:12:12 +00001353/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel930143b2009-11-21 02:48:08 +00001354/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
1355/// If there are global variables in this scope then create and insert
1356/// DIEs for these variables.
1357DIE *DwarfDebug::updateSubprogramScopeDIE(MDNode *SPNode) {
Chris Lattner3a383cb2010-04-05 00:13:49 +00001358 DIE *SPDie = ModuleCU->getDIE(SPNode);
1359 assert(SPDie && "Unable to find subprogram DIE!");
1360 DISubprogram SP(SPNode);
Chris Lattner2c3f4782010-03-13 07:26:18 +00001361
Chris Lattner3a383cb2010-04-05 00:13:49 +00001362 // There is not any need to generate specification DIE for a function
1363 // defined at compile unit level. If a function is defined inside another
1364 // function then gdb prefers the definition at top level and but does not
1365 // expect specification DIE in parent function. So avoid creating
1366 // specification DIE for a function defined inside a function.
1367 if (SP.isDefinition() && !SP.getContext().isCompileUnit() &&
Devang Patel019922d2010-04-06 23:53:48 +00001368 !SP.getContext().isFile() &&
1369 !isSubprogramContext(SP.getContext().getNode())) {
Chris Lattner3a383cb2010-04-05 00:13:49 +00001370 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
1371
1372 // Add arguments.
1373 DICompositeType SPTy = SP.getType();
1374 DIArray Args = SPTy.getTypeArray();
1375 unsigned SPTag = SPTy.getTag();
1376 if (SPTag == dwarf::DW_TAG_subroutine_type)
1377 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1378 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
1379 DIType ATy = DIType(DIType(Args.getElement(i).getNode()));
1380 addType(Arg, ATy);
1381 if (ATy.isArtificial())
1382 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
1383 SPDie->addChild(Arg);
1384 }
1385 DIE *SPDeclDie = SPDie;
1386 SPDie = new DIE(dwarf::DW_TAG_subprogram);
1387 addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
1388 SPDeclDie);
1389 ModuleCU->addDie(SPDie);
1390 }
1391
1392 addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
1393 Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()));
1394 addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
1395 Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()));
1396 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
1397 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
1398 addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Devang Patel6efc8e52010-02-06 01:02:37 +00001399
Chris Lattner3a383cb2010-04-05 00:13:49 +00001400 if (!DISubprogram(SPNode).isLocalToUnit())
1401 addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
1402
1403 return SPDie;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001404}
1405
Jim Grosbach042483e2009-11-21 23:12:12 +00001406/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel930143b2009-11-21 02:48:08 +00001407/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
1408DIE *DwarfDebug::constructLexicalScopeDIE(DbgScope *Scope) {
Chris Lattnere13c3722010-03-09 01:58:53 +00001409 MCSymbol *Start = Scope->getStartLabel();
1410 MCSymbol *End = Scope->getEndLabel();
Devang Patel23b2ae62010-03-29 22:59:58 +00001411 if (Start == 0 || End == 0) return 0;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001412
Chris Lattnere13c3722010-03-09 01:58:53 +00001413 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
1414 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Chris Lattnerc3b70f62010-03-09 01:51:43 +00001415
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001416 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
1417 if (Scope->isAbstractScope())
1418 return ScopeDIE;
1419
Devang Patel930143b2009-11-21 02:48:08 +00001420 addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
Chris Lattner3a383cb2010-04-05 00:13:49 +00001421 Start ? Start : Asm->GetTempSymbol("func_begin",
1422 Asm->getFunctionNumber()));
Devang Patel930143b2009-11-21 02:48:08 +00001423 addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Chris Lattner3a383cb2010-04-05 00:13:49 +00001424 End ? End : Asm->GetTempSymbol("func_end",Asm->getFunctionNumber()));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001425
1426 return ScopeDIE;
1427}
1428
Devang Patel930143b2009-11-21 02:48:08 +00001429/// constructInlinedScopeDIE - This scope represents inlined body of
1430/// a function. Construct DIE to represent this concrete inlined copy
1431/// of the function.
1432DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) {
Chris Lattnere13c3722010-03-09 01:58:53 +00001433 MCSymbol *StartLabel = Scope->getStartLabel();
1434 MCSymbol *EndLabel = Scope->getEndLabel();
Devang Patel23b2ae62010-03-29 22:59:58 +00001435 if (StartLabel == 0 || EndLabel == 0) return 0;
Chris Lattner54a68762010-03-09 04:48:35 +00001436
Chris Lattnere13c3722010-03-09 01:58:53 +00001437 assert(StartLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +00001438 "Invalid starting label for an inlined scope!");
Chris Lattnere13c3722010-03-09 01:58:53 +00001439 assert(EndLabel->isDefined() &&
Chris Lattnerc3b70f62010-03-09 01:51:43 +00001440 "Invalid end label for an inlined scope!");
Devang Patel3b548aa2010-03-08 20:52:55 +00001441 if (!Scope->getScopeNode())
Devang Patelbc97f6b2010-03-08 19:20:38 +00001442 return NULL;
Devang Patel3b548aa2010-03-08 20:52:55 +00001443 DIScope DS(Scope->getScopeNode());
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001444 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
1445
1446 DISubprogram InlinedSP = getDISubprogram(DS.getNode());
Devang Patele064ad42009-11-20 21:37:22 +00001447 DIE *OriginDIE = ModuleCU->getDIE(InlinedSP.getNode());
Chris Lattner8d2fe282010-03-31 05:36:29 +00001448 assert(OriginDIE && "Unable to find Origin DIE!");
Devang Patel930143b2009-11-21 02:48:08 +00001449 addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001450 dwarf::DW_FORM_ref4, OriginDIE);
1451
Chris Lattner085b6522010-03-09 00:31:02 +00001452 addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, StartLabel);
Chris Lattnere13c3722010-03-09 01:58:53 +00001453 addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, EndLabel);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001454
1455 InlinedSubprogramDIEs.insert(OriginDIE);
1456
1457 // Track the start label for this inlined function.
Devang Patel018b29b2010-01-19 06:19:05 +00001458 DenseMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001459 I = InlineInfo.find(InlinedSP.getNode());
1460
1461 if (I == InlineInfo.end()) {
Chris Lattner085b6522010-03-09 00:31:02 +00001462 InlineInfo[InlinedSP.getNode()].push_back(std::make_pair(StartLabel,
Jim Grosbach00e9c612009-11-22 19:20:36 +00001463 ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001464 InlinedSPNodes.push_back(InlinedSP.getNode());
1465 } else
Chris Lattner085b6522010-03-09 00:31:02 +00001466 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001467
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001468 DILocation DL(Scope->getInlinedAt());
Devang Patel930143b2009-11-21 02:48:08 +00001469 addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, ModuleCU->getID());
1470 addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001471
1472 return ScopeDIE;
1473}
1474
Devang Patel930143b2009-11-21 02:48:08 +00001475
1476/// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patel9ccfb642009-12-09 18:24:21 +00001477DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, DbgScope *Scope) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001478 // Get the descriptor.
1479 const DIVariable &VD = DV->getVariable();
Devang Patel2d9caf92009-11-25 17:36:49 +00001480 StringRef Name = VD.getName();
1481 if (Name.empty())
Devang Patel97f99fa2009-11-13 02:25:26 +00001482 return NULL;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001483
1484 // Translate tag to proper Dwarf tag. The result variable is dropped for
1485 // now.
1486 unsigned Tag;
1487 switch (VD.getTag()) {
1488 case dwarf::DW_TAG_return_variable:
1489 return NULL;
1490 case dwarf::DW_TAG_arg_variable:
1491 Tag = dwarf::DW_TAG_formal_parameter;
1492 break;
1493 case dwarf::DW_TAG_auto_variable: // fall thru
1494 default:
1495 Tag = dwarf::DW_TAG_variable;
1496 break;
1497 }
1498
1499 // Define variable debug information entry.
1500 DIE *VariableDie = new DIE(Tag);
1501
1502
1503 DIE *AbsDIE = NULL;
1504 if (DbgVariable *AV = DV->getAbstractVariable())
1505 AbsDIE = AV->getDIE();
Jim Grosbach042483e2009-11-21 23:12:12 +00001506
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001507 if (AbsDIE) {
1508 DIScope DS(Scope->getScopeNode());
1509 DISubprogram InlinedSP = getDISubprogram(DS.getNode());
Devang Patele064ad42009-11-20 21:37:22 +00001510 DIE *OriginSPDIE = ModuleCU->getDIE(InlinedSP.getNode());
Daniel Dunbar75b4d352009-11-11 03:09:50 +00001511 (void) OriginSPDIE;
Chris Lattner8d2fe282010-03-31 05:36:29 +00001512 assert(OriginSPDIE && "Unable to find Origin DIE for the SP!");
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001513 DIE *AbsDIE = DV->getAbstractVariable()->getDIE();
Chris Lattner8d2fe282010-03-31 05:36:29 +00001514 assert(AbsDIE && "Unable to find Origin DIE for the Variable!");
Devang Patel930143b2009-11-21 02:48:08 +00001515 addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin,
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001516 dwarf::DW_FORM_ref4, AbsDIE);
1517 }
1518 else {
Devang Patel930143b2009-11-21 02:48:08 +00001519 addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
1520 addSourceLine(VariableDie, &VD);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001521
1522 // Add variable type.
Jim Grosbach042483e2009-11-21 23:12:12 +00001523 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001524 // addresses instead.
1525 if (VD.isBlockByrefVariable())
Devang Patel9ccfb642009-12-09 18:24:21 +00001526 addType(VariableDie, getBlockByrefType(VD.getType(), Name));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001527 else
Devang Patel9ccfb642009-12-09 18:24:21 +00001528 addType(VariableDie, VD.getType());
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001529 }
1530
1531 // Add variable address.
1532 if (!Scope->isAbstractScope()) {
Devang Patela3e9c9c2010-03-15 18:33:46 +00001533 // Check if variable is described by DBG_VALUE instruction.
1534 if (const MachineInstr *DbgValueInsn = DV->getDbgValue()) {
1535 if (DbgValueInsn->getNumOperands() == 3) {
1536 // FIXME : Handle getNumOperands != 3
1537 if (DbgValueInsn->getOperand(0).getType()
1538 == MachineOperand::MO_Register
1539 && DbgValueInsn->getOperand(0).getReg()) {
1540 MachineLocation Location;
1541 Location.set(DbgValueInsn->getOperand(0).getReg());
1542 addAddress(VariableDie, dwarf::DW_AT_location, Location);
Devang Patel23b2ae62010-03-29 22:59:58 +00001543 if (MCSymbol *VS = DV->getDbgValueLabel())
1544 addLabel(VariableDie, dwarf::DW_AT_start_scope, dwarf::DW_FORM_addr,
1545 VS);
Devang Patela3e9c9c2010-03-15 18:33:46 +00001546 } else if (DbgValueInsn->getOperand(0).getType() ==
1547 MachineOperand::MO_Immediate) {
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001548 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patela3e9c9c2010-03-15 18:33:46 +00001549 unsigned Imm = DbgValueInsn->getOperand(0).getImm();
1550 addUInt(Block, 0, dwarf::DW_FORM_udata, Imm);
1551 addBlock(VariableDie, dwarf::DW_AT_const_value, 0, Block);
Devang Patel23b2ae62010-03-29 22:59:58 +00001552 if (MCSymbol *VS = DV->getDbgValueLabel())
1553 addLabel(VariableDie, dwarf::DW_AT_start_scope, dwarf::DW_FORM_addr,
1554 VS);
Bill Wendling30346342010-04-05 22:59:21 +00001555 } else if (DbgValueInsn->getOperand(0).getType() ==
1556 MachineOperand::MO_FPImmediate) {
1557 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
1558 APFloat FPImm = DbgValueInsn->getOperand(0).getFPImm()->getValueAPF();
1559
1560 // Get the raw data form of the floating point.
1561 const APInt FltVal = FPImm.bitcastToAPInt();
1562 const char *FltPtr = (const char*)FltVal.getRawData();
1563
John McCall796583e2010-04-06 23:35:53 +00001564 int NumBytes = FltVal.getBitWidth() / 8; // 8 bits per byte.
Bill Wendling30346342010-04-05 22:59:21 +00001565 bool LittleEndian = Asm->getTargetData().isLittleEndian();
1566 int Incr = (LittleEndian ? 1 : -1);
1567 int Start = (LittleEndian ? 0 : NumBytes - 1);
1568 int Stop = (LittleEndian ? NumBytes : -1);
1569
1570 // Output the constant to DWARF one byte at a time.
1571 for (; Start != Stop; Start += Incr)
1572 addUInt(Block, 0, dwarf::DW_FORM_data1,
1573 (unsigned char)0xFF & FltPtr[Start]);
1574
1575 addBlock(VariableDie, dwarf::DW_AT_const_value, 0, Block);
1576
1577 if (MCSymbol *VS = DV->getDbgValueLabel())
1578 addLabel(VariableDie, dwarf::DW_AT_start_scope, dwarf::DW_FORM_addr,
1579 VS);
Devang Patela3e9c9c2010-03-15 18:33:46 +00001580 } else {
1581 //FIXME : Handle other operand types.
1582 delete VariableDie;
1583 return NULL;
1584 }
1585 }
1586 } else {
1587 MachineLocation Location;
1588 unsigned FrameReg;
Chris Lattner3a383cb2010-04-05 00:13:49 +00001589 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
1590 int Offset = RI->getFrameIndexReference(*Asm->MF, DV->getFrameIndex(),
Chris Lattner71696ef2010-03-31 06:06:37 +00001591 FrameReg);
Devang Patela3e9c9c2010-03-15 18:33:46 +00001592 Location.set(FrameReg, Offset);
1593
1594 if (VD.hasComplexAddress())
1595 addComplexAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
1596 else if (VD.isBlockByrefVariable())
1597 addBlockByrefAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
1598 else
1599 addAddress(VariableDie, dwarf::DW_AT_location, Location);
1600 }
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001601 }
Devang Patel6efc8e52010-02-06 01:02:37 +00001602
1603 if (Tag == dwarf::DW_TAG_formal_parameter && VD.getType().isArtificial())
1604 addUInt(VariableDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001605 DV->setDIE(VariableDie);
1606 return VariableDie;
1607
1608}
Devang Patel930143b2009-11-21 02:48:08 +00001609
Devang Patel04d2f2d2009-11-24 01:14:22 +00001610void DwarfDebug::addPubTypes(DISubprogram SP) {
1611 DICompositeType SPTy = SP.getType();
1612 unsigned SPTag = SPTy.getTag();
1613 if (SPTag != dwarf::DW_TAG_subroutine_type)
1614 return;
1615
1616 DIArray Args = SPTy.getTypeArray();
Devang Patel04d2f2d2009-11-24 01:14:22 +00001617 for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) {
1618 DIType ATy(Args.getElement(i).getNode());
Devang Patel3b548aa2010-03-08 20:52:55 +00001619 if (!ATy.isValid())
Devang Patel04d2f2d2009-11-24 01:14:22 +00001620 continue;
1621 DICompositeType CATy = getDICompositeType(ATy);
Devang Patel3b548aa2010-03-08 20:52:55 +00001622 if (DIDescriptor(CATy.getNode()).Verify() && !CATy.getName().empty()) {
Devang Patel04d2f2d2009-11-24 01:14:22 +00001623 if (DIEEntry *Entry = ModuleCU->getDIEEntry(CATy.getNode()))
1624 ModuleCU->addGlobalType(CATy.getName(), Entry->getEntry());
1625 }
1626 }
1627}
1628
Devang Patel930143b2009-11-21 02:48:08 +00001629/// constructScopeDIE - Construct a DIE for this scope.
1630DIE *DwarfDebug::constructScopeDIE(DbgScope *Scope) {
Devang Patel3b548aa2010-03-08 20:52:55 +00001631 if (!Scope || !Scope->getScopeNode())
1632 return NULL;
1633
1634 DIScope DS(Scope->getScopeNode());
1635 DIE *ScopeDIE = NULL;
1636 if (Scope->getInlinedAt())
1637 ScopeDIE = constructInlinedScopeDIE(Scope);
1638 else if (DS.isSubprogram()) {
1639 if (Scope->isAbstractScope())
1640 ScopeDIE = ModuleCU->getDIE(DS.getNode());
1641 else
1642 ScopeDIE = updateSubprogramScopeDIE(DS.getNode());
1643 }
Devang Patel23b2ae62010-03-29 22:59:58 +00001644 else
Devang Patel3b548aa2010-03-08 20:52:55 +00001645 ScopeDIE = constructLexicalScopeDIE(Scope);
Devang Patel23b2ae62010-03-29 22:59:58 +00001646 if (!ScopeDIE) return NULL;
Devang Patel3b548aa2010-03-08 20:52:55 +00001647
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001648 // Add variables to scope.
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001649 const SmallVector<DbgVariable *, 8> &Variables = Scope->getVariables();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001650 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
Devang Patel9ccfb642009-12-09 18:24:21 +00001651 DIE *VariableDIE = constructVariableDIE(Variables[i], Scope);
Jim Grosbach042483e2009-11-21 23:12:12 +00001652 if (VariableDIE)
Devang Patel930143b2009-11-21 02:48:08 +00001653 ScopeDIE->addChild(VariableDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001654 }
1655
1656 // Add nested scopes.
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00001657 const SmallVector<DbgScope *, 4> &Scopes = Scope->getScopes();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001658 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1659 // Define the Scope debug information entry.
Devang Patel930143b2009-11-21 02:48:08 +00001660 DIE *NestedDIE = constructScopeDIE(Scopes[j]);
Jim Grosbach042483e2009-11-21 23:12:12 +00001661 if (NestedDIE)
Devang Patel930143b2009-11-21 02:48:08 +00001662 ScopeDIE->addChild(NestedDIE);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001663 }
Devang Patel04d2f2d2009-11-24 01:14:22 +00001664
1665 if (DS.isSubprogram())
1666 addPubTypes(DISubprogram(DS.getNode()));
1667
1668 return ScopeDIE;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001669}
1670
Bill Wendling2b128d72009-05-20 23:19:06 +00001671/// GetOrCreateSourceID - Look up the source id with the given directory and
1672/// source file names. If none currently exists, create a new id and insert it
1673/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
1674/// maps as well.
Chris Lattner71696ef2010-03-31 06:06:37 +00001675unsigned DwarfDebug::GetOrCreateSourceID(StringRef DirName, StringRef FileName){
Bill Wendling2b128d72009-05-20 23:19:06 +00001676 unsigned DId;
1677 StringMap<unsigned>::iterator DI = DirectoryIdMap.find(DirName);
1678 if (DI != DirectoryIdMap.end()) {
1679 DId = DI->getValue();
1680 } else {
1681 DId = DirectoryNames.size() + 1;
1682 DirectoryIdMap[DirName] = DId;
1683 DirectoryNames.push_back(DirName);
1684 }
1685
1686 unsigned FId;
1687 StringMap<unsigned>::iterator FI = SourceFileIdMap.find(FileName);
1688 if (FI != SourceFileIdMap.end()) {
1689 FId = FI->getValue();
1690 } else {
1691 FId = SourceFileNames.size() + 1;
1692 SourceFileIdMap[FileName] = FId;
1693 SourceFileNames.push_back(FileName);
1694 }
1695
1696 DenseMap<std::pair<unsigned, unsigned>, unsigned>::iterator SI =
1697 SourceIdMap.find(std::make_pair(DId, FId));
1698 if (SI != SourceIdMap.end())
1699 return SI->second;
1700
1701 unsigned SrcId = SourceIds.size() + 1; // DW_AT_decl_file cannot be 0.
1702 SourceIdMap[std::make_pair(DId, FId)] = SrcId;
1703 SourceIds.push_back(std::make_pair(DId, FId));
1704
1705 return SrcId;
1706}
1707
Devang Patel1f4690c2009-12-15 19:16:48 +00001708/// getOrCreateNameSpace - Create a DIE for DINameSpace.
1709DIE *DwarfDebug::getOrCreateNameSpace(DINameSpace NS) {
1710 DIE *NDie = ModuleCU->getDIE(NS.getNode());
1711 if (NDie)
1712 return NDie;
1713 NDie = new DIE(dwarf::DW_TAG_namespace);
1714 ModuleCU->insertDIE(NS.getNode(), NDie);
1715 if (!NS.getName().empty())
1716 addString(NDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, NS.getName());
1717 addSourceLine(NDie, &NS);
1718 addToContextOwner(NDie, NS.getContext());
1719 return NDie;
1720}
1721
Jeffrey Yasskin0708de12010-03-11 18:29:55 +00001722void DwarfDebug::constructCompileUnit(MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +00001723 DICompileUnit DIUnit(N);
Jeffrey Yasskin0708de12010-03-11 18:29:55 +00001724 // Use first compile unit marked as isMain as the compile unit for this
1725 // module.
1726 if (ModuleCU || !DIUnit.isMain())
1727 return;
Devang Patel2d9caf92009-11-25 17:36:49 +00001728 StringRef FN = DIUnit.getFilename();
1729 StringRef Dir = DIUnit.getDirectory();
Devang Patelb2969422009-09-29 18:40:58 +00001730 unsigned ID = GetOrCreateSourceID(Dir, FN);
Bill Wendling2b128d72009-05-20 23:19:06 +00001731
1732 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patel930143b2009-11-21 02:48:08 +00001733 addString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string,
Devang Patelb2969422009-09-29 18:40:58 +00001734 DIUnit.getProducer());
Devang Patel930143b2009-11-21 02:48:08 +00001735 addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data1,
Bill Wendling2b128d72009-05-20 23:19:06 +00001736 DIUnit.getLanguage());
Devang Patel930143b2009-11-21 02:48:08 +00001737 addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN);
Chris Lattner6629ca92010-04-04 22:59:04 +00001738 addLabel(Die, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, TextSectionSym);
Devang Pateld22ed622010-03-22 23:11:36 +00001739 addLabel(Die, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Chris Lattnera179b522010-04-04 19:25:43 +00001740 Asm->GetTempSymbol("text_end"));
Devang Pateld22ed622010-03-22 23:11:36 +00001741 // DW_AT_stmt_list is a offset of line number information for this
1742 // compile unit in debug_line section. It is always zero when only one
1743 // compile unit is emitted in one object file.
1744 addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0);
Bill Wendling2b128d72009-05-20 23:19:06 +00001745
Devang Patel2d9caf92009-11-25 17:36:49 +00001746 if (!Dir.empty())
Devang Patel930143b2009-11-21 02:48:08 +00001747 addString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir);
Bill Wendling2b128d72009-05-20 23:19:06 +00001748 if (DIUnit.isOptimized())
Devang Patel930143b2009-11-21 02:48:08 +00001749 addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendling2b128d72009-05-20 23:19:06 +00001750
Devang Patel2d9caf92009-11-25 17:36:49 +00001751 StringRef Flags = DIUnit.getFlags();
1752 if (!Flags.empty())
Devang Patel930143b2009-11-21 02:48:08 +00001753 addString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string, Flags);
Bill Wendling2b128d72009-05-20 23:19:06 +00001754
1755 unsigned RVer = DIUnit.getRunTimeVersion();
1756 if (RVer)
Devang Patel930143b2009-11-21 02:48:08 +00001757 addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendling2b128d72009-05-20 23:19:06 +00001758 dwarf::DW_FORM_data1, RVer);
1759
Jeffrey Yasskin0708de12010-03-11 18:29:55 +00001760 assert(!ModuleCU &&
1761 "ModuleCU assigned since the top of constructCompileUnit");
1762 ModuleCU = new CompileUnit(ID, Die);
Bill Wendling2b128d72009-05-20 23:19:06 +00001763}
1764
Devang Patel930143b2009-11-21 02:48:08 +00001765void DwarfDebug::constructGlobalVariableDIE(MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +00001766 DIGlobalVariable DI_GV(N);
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00001767
Devang Patelf5d53602009-09-04 23:59:07 +00001768 // If debug information is malformed then ignore it.
1769 if (DI_GV.Verify() == false)
1770 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001771
1772 // Check for pre-existence.
Devang Patele064ad42009-11-20 21:37:22 +00001773 if (ModuleCU->getDIE(DI_GV.getNode()))
Devang Patel0751a282009-06-26 01:49:18 +00001774 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001775
Devang Patel9ccfb642009-12-09 18:24:21 +00001776 DIE *VariableDie = createGlobalVariableDIE(DI_GV);
Devang Patel2eec32d2009-12-10 23:25:41 +00001777 if (!VariableDie)
1778 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001779
Bill Wendling2b128d72009-05-20 23:19:06 +00001780 // Add to map.
Devang Patele064ad42009-11-20 21:37:22 +00001781 ModuleCU->insertDIE(N, VariableDie);
Bill Wendling2b128d72009-05-20 23:19:06 +00001782
1783 // Add to context owner.
Devang Patel89880c82010-01-15 01:12:22 +00001784 DIDescriptor GVContext = DI_GV.getContext();
1785 // Do not create specification DIE if context is either compile unit
1786 // or a subprogram.
Chris Lattner71696ef2010-03-31 06:06:37 +00001787 if (DI_GV.isDefinition() && !GVContext.isCompileUnit() &&
Devang Patel019922d2010-04-06 23:53:48 +00001788 !GVContext.isFile() &&
1789 !isSubprogramContext(GVContext.getNode())) {
Devang Patel1f4690c2009-12-15 19:16:48 +00001790 // Create specification DIE.
1791 DIE *VariableSpecDIE = new DIE(dwarf::DW_TAG_variable);
1792 addDIEEntry(VariableSpecDIE, dwarf::DW_AT_specification,
1793 dwarf::DW_FORM_ref4, VariableDie);
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001794 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patel1f4690c2009-12-15 19:16:48 +00001795 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
Chris Lattner8dcf41e2010-03-08 22:31:46 +00001796 addLabel(Block, 0, dwarf::DW_FORM_udata,
Chris Lattner9e4cafe2010-03-12 21:09:07 +00001797 Asm->Mang->getSymbol(DI_GV.getGlobal()));
Devang Patel1f4690c2009-12-15 19:16:48 +00001798 addBlock(VariableSpecDIE, dwarf::DW_AT_location, 0, Block);
Devang Patelce25dd72010-02-09 01:58:33 +00001799 addUInt(VariableDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel1f4690c2009-12-15 19:16:48 +00001800 ModuleCU->addDie(VariableSpecDIE);
1801 } else {
Benjamin Kramer74729ae2010-03-31 19:34:01 +00001802 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patel1f4690c2009-12-15 19:16:48 +00001803 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
Chris Lattner8dcf41e2010-03-08 22:31:46 +00001804 addLabel(Block, 0, dwarf::DW_FORM_udata,
Chris Lattner9e4cafe2010-03-12 21:09:07 +00001805 Asm->Mang->getSymbol(DI_GV.getGlobal()));
Devang Patel1f4690c2009-12-15 19:16:48 +00001806 addBlock(VariableDie, dwarf::DW_AT_location, 0, Block);
1807 }
Devang Patel89880c82010-01-15 01:12:22 +00001808 addToContextOwner(VariableDie, GVContext);
Devang Patel2b75ed22009-12-10 19:14:49 +00001809
Bill Wendling2b128d72009-05-20 23:19:06 +00001810 // Expose as global. FIXME - need to check external flag.
Devang Patel930143b2009-11-21 02:48:08 +00001811 ModuleCU->addGlobal(DI_GV.getName(), VariableDie);
Devang Patel04d2f2d2009-11-24 01:14:22 +00001812
1813 DIType GTy = DI_GV.getType();
Devang Patel2d9caf92009-11-25 17:36:49 +00001814 if (GTy.isCompositeType() && !GTy.getName().empty()) {
Devang Patel04d2f2d2009-11-24 01:14:22 +00001815 DIEEntry *Entry = ModuleCU->getDIEEntry(GTy.getNode());
Chris Lattner8d2fe282010-03-31 05:36:29 +00001816 assert(Entry && "Missing global type!");
Devang Patel04d2f2d2009-11-24 01:14:22 +00001817 ModuleCU->addGlobalType(GTy.getName(), Entry->getEntry());
1818 }
Devang Patel0751a282009-06-26 01:49:18 +00001819 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001820}
1821
Devang Patel930143b2009-11-21 02:48:08 +00001822void DwarfDebug::constructSubprogramDIE(MDNode *N) {
Devang Patel80ae3492009-08-28 23:24:31 +00001823 DISubprogram SP(N);
Bill Wendling2b128d72009-05-20 23:19:06 +00001824
Stuart Hastings4bd3dd92010-04-06 21:38:29 +00001825 // Check for pre-existence.
1826 if (ModuleCU->getDIE(N))
1827 return;
1828
Bill Wendling2b128d72009-05-20 23:19:06 +00001829 if (!SP.isDefinition())
1830 // This is a method declaration which will be handled while constructing
1831 // class type.
Devang Patel0751a282009-06-26 01:49:18 +00001832 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001833
Stuart Hastings4bd3dd92010-04-06 21:38:29 +00001834 DIE *SubprogramDie = createSubprogramDIE(SP);
1835
1836 // Add to map.
1837 ModuleCU->insertDIE(N, SubprogramDie);
Bill Wendling2b128d72009-05-20 23:19:06 +00001838
1839 // Add to context owner.
Devang Patel1f4690c2009-12-15 19:16:48 +00001840 addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel512001a2009-12-08 23:21:45 +00001841
Bill Wendling2b128d72009-05-20 23:19:06 +00001842 // Expose as global.
Devang Patel930143b2009-11-21 02:48:08 +00001843 ModuleCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel04d2f2d2009-11-24 01:14:22 +00001844
Devang Patel0751a282009-06-26 01:49:18 +00001845 return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001846}
1847
Devang Patel930143b2009-11-21 02:48:08 +00001848/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbarbe22ec42009-09-19 20:40:14 +00001849/// content. Create global DIEs and emit initial debug info sections.
1850/// This is inovked by the target AsmPrinter.
Chris Lattner11980022010-04-04 07:48:20 +00001851void DwarfDebug::beginModule(Module *M) {
Devang Patel63524442009-07-30 18:56:46 +00001852 DebugInfoFinder DbgFinder;
1853 DbgFinder.processModule(*M);
Devang Patel0751a282009-06-26 01:49:18 +00001854
Chris Lattner7cfa70e2010-04-05 02:19:28 +00001855 bool HasDebugInfo = false;
1856
1857 // Scan all the compile-units to see if there are any marked as the main unit.
1858 // if not, we do not generate debug info.
1859 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
1860 E = DbgFinder.compile_unit_end(); I != E; ++I) {
1861 if (DICompileUnit(*I).isMain()) {
1862 HasDebugInfo = true;
1863 break;
1864 }
1865 }
1866
1867 if (!HasDebugInfo) return;
1868
1869 // Tell MMI that we have debug info.
1870 MMI->setDebugInfoAvailability(true);
1871
Chris Lattnerd442aa32010-04-04 23:17:54 +00001872 // Emit initial sections.
Chris Lattner7cfa70e2010-04-05 02:19:28 +00001873 EmitSectionLabels();
Chris Lattnerd442aa32010-04-04 23:17:54 +00001874
Bill Wendling2b128d72009-05-20 23:19:06 +00001875 // Create all the compile unit DIEs.
Devang Patel63524442009-07-30 18:56:46 +00001876 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
1877 E = DbgFinder.compile_unit_end(); I != E; ++I)
Devang Patel930143b2009-11-21 02:48:08 +00001878 constructCompileUnit(*I);
Bill Wendling2b128d72009-05-20 23:19:06 +00001879
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001880 // Create DIEs for each subprogram.
Devang Patel63524442009-07-30 18:56:46 +00001881 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
1882 E = DbgFinder.subprogram_end(); I != E; ++I)
Devang Patel930143b2009-11-21 02:48:08 +00001883 constructSubprogramDIE(*I);
Devang Patel0751a282009-06-26 01:49:18 +00001884
Devang Patel2b75ed22009-12-10 19:14:49 +00001885 // Create DIEs for each global variable.
1886 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
1887 E = DbgFinder.global_variable_end(); I != E; ++I)
1888 constructGlobalVariableDIE(*I);
1889
Bill Wendling2b128d72009-05-20 23:19:06 +00001890 // Prime section data.
Chris Lattner5e693ed2009-07-28 03:13:23 +00001891 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendling2b128d72009-05-20 23:19:06 +00001892
1893 // Print out .file directives to specify files for .loc directives. These are
1894 // printed out early so that they precede any .loc directives.
Chris Lattner3a383cb2010-04-05 00:13:49 +00001895 if (Asm->MAI->hasDotLocAndDotFile()) {
Bill Wendling2b128d72009-05-20 23:19:06 +00001896 for (unsigned i = 1, e = getNumSourceIds()+1; i != e; ++i) {
1897 // Remember source id starts at 1.
1898 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(i);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00001899 // FIXME: don't use sys::path for this! This should not depend on the
1900 // host.
Bill Wendling2b128d72009-05-20 23:19:06 +00001901 sys::Path FullPath(getSourceDirectoryName(Id.first));
1902 bool AppendOk =
1903 FullPath.appendComponent(getSourceFileName(Id.second));
1904 assert(AppendOk && "Could not append filename to directory!");
1905 AppendOk = false;
Chris Lattner601ef332010-01-25 18:58:59 +00001906 Asm->OutStreamer.EmitDwarfFileDirective(i, FullPath.str());
Bill Wendling2b128d72009-05-20 23:19:06 +00001907 }
1908 }
Bill Wendling2b128d72009-05-20 23:19:06 +00001909}
1910
Devang Patel930143b2009-11-21 02:48:08 +00001911/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendling2b128d72009-05-20 23:19:06 +00001912///
Devang Patel930143b2009-11-21 02:48:08 +00001913void DwarfDebug::endModule() {
Bill Wendlingfcc14142010-04-07 09:28:04 +00001914 if (!ModuleCU) return;
Bill Wendling2b128d72009-05-20 23:19:06 +00001915
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001916 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
1917 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
1918 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
1919 DIE *ISP = *AI;
Devang Patel930143b2009-11-21 02:48:08 +00001920 addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00001921 }
1922
Devang Patel236526d2009-12-03 01:25:38 +00001923 // Insert top level DIEs.
1924 for (SmallVector<DIE *, 4>::iterator TI = TopLevelDIEsVector.begin(),
1925 TE = TopLevelDIEsVector.end(); TI != TE; ++TI)
1926 ModuleCU->getCUDie()->addChild(*TI);
1927
Devang Patel018b29b2010-01-19 06:19:05 +00001928 for (DenseMap<DIE *, MDNode *>::iterator CI = ContainingTypeMap.begin(),
Devang Pateleb57c592009-12-03 19:11:07 +00001929 CE = ContainingTypeMap.end(); CI != CE; ++CI) {
1930 DIE *SPDie = CI->first;
1931 MDNode *N = dyn_cast_or_null<MDNode>(CI->second);
1932 if (!N) continue;
1933 DIE *NDie = ModuleCU->getDIE(N);
1934 if (!NDie) continue;
1935 addDIEEntry(SPDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
Devang Patel2108ee02010-01-15 00:26:31 +00001936 // FIXME - This is not the correct approach.
Chris Lattner71696ef2010-03-31 06:06:37 +00001937 //addDIEEntry(NDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie
Devang Pateleb57c592009-12-03 19:11:07 +00001938 }
1939
Bill Wendling2b128d72009-05-20 23:19:06 +00001940 // Standard sections final addresses.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001941 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnera179b522010-04-04 19:25:43 +00001942 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end"));
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001943 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnera179b522010-04-04 19:25:43 +00001944 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end"));
Bill Wendling2b128d72009-05-20 23:19:06 +00001945
1946 // End text sections.
1947 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00001948 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnera179b522010-04-04 19:25:43 +00001949 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i));
Bill Wendling2b128d72009-05-20 23:19:06 +00001950 }
1951
1952 // Emit common frame information.
Devang Patel930143b2009-11-21 02:48:08 +00001953 emitCommonDebugFrame();
Bill Wendling2b128d72009-05-20 23:19:06 +00001954
1955 // Emit function debug frame information
1956 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
1957 E = DebugFrames.end(); I != E; ++I)
Devang Patel930143b2009-11-21 02:48:08 +00001958 emitFunctionDebugFrame(*I);
Bill Wendling2b128d72009-05-20 23:19:06 +00001959
1960 // Compute DIE offsets and sizes.
Devang Patel930143b2009-11-21 02:48:08 +00001961 computeSizeAndOffsets();
Bill Wendling2b128d72009-05-20 23:19:06 +00001962
1963 // Emit all the DIEs into a debug info section
Devang Patel930143b2009-11-21 02:48:08 +00001964 emitDebugInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +00001965
1966 // Corresponding abbreviations into a abbrev section.
Devang Patel930143b2009-11-21 02:48:08 +00001967 emitAbbreviations();
Bill Wendling2b128d72009-05-20 23:19:06 +00001968
1969 // Emit source line correspondence into a debug line section.
Devang Patel930143b2009-11-21 02:48:08 +00001970 emitDebugLines();
Bill Wendling2b128d72009-05-20 23:19:06 +00001971
1972 // Emit info into a debug pubnames section.
Devang Patel930143b2009-11-21 02:48:08 +00001973 emitDebugPubNames();
Bill Wendling2b128d72009-05-20 23:19:06 +00001974
Devang Patel04d2f2d2009-11-24 01:14:22 +00001975 // Emit info into a debug pubtypes section.
1976 emitDebugPubTypes();
1977
Bill Wendling2b128d72009-05-20 23:19:06 +00001978 // Emit info into a debug loc section.
Devang Patel930143b2009-11-21 02:48:08 +00001979 emitDebugLoc();
Bill Wendling2b128d72009-05-20 23:19:06 +00001980
1981 // Emit info into a debug aranges section.
1982 EmitDebugARanges();
1983
1984 // Emit info into a debug ranges section.
Devang Patel930143b2009-11-21 02:48:08 +00001985 emitDebugRanges();
Bill Wendling2b128d72009-05-20 23:19:06 +00001986
1987 // Emit info into a debug macinfo section.
Devang Patel930143b2009-11-21 02:48:08 +00001988 emitDebugMacInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +00001989
1990 // Emit inline info.
Devang Patel930143b2009-11-21 02:48:08 +00001991 emitDebugInlineInfo();
Bill Wendling2b128d72009-05-20 23:19:06 +00001992
Chris Lattnerb7aa9522010-03-13 02:17:42 +00001993 // Emit info into a debug str section.
1994 emitDebugStr();
1995
Jeffrey Yasskin0708de12010-03-11 18:29:55 +00001996 delete ModuleCU;
1997 ModuleCU = NULL; // Reset for the next Module, if any.
Bill Wendling2b128d72009-05-20 23:19:06 +00001998}
1999
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002000/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Jim Grosbach00e9c612009-11-22 19:20:36 +00002001DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var,
2002 unsigned FrameIdx,
Chris Lattner915c5f92010-04-02 19:42:39 +00002003 DebugLoc ScopeLoc) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002004
2005 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var.getNode());
2006 if (AbsDbgVariable)
2007 return AbsDbgVariable;
2008
Chris Lattner915c5f92010-04-02 19:42:39 +00002009 LLVMContext &Ctx = Var.getNode()->getContext();
2010 DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002011 if (!Scope)
2012 return NULL;
2013
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002014 AbsDbgVariable = new DbgVariable(Var, FrameIdx,
2015 NULL /* No more-abstract variable*/);
Devang Patel930143b2009-11-21 02:48:08 +00002016 Scope->addVariable(AbsDbgVariable);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002017 AbstractVariables[Var.getNode()] = AbsDbgVariable;
2018 return AbsDbgVariable;
2019}
2020
Devang Patela3e9c9c2010-03-15 18:33:46 +00002021/// findAbstractVariable - Find abstract variable, if any, associated with Var.
2022/// FIXME : Refactor findAbstractVariable.
2023DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var,
2024 const MachineInstr *MI,
Chris Lattner915c5f92010-04-02 19:42:39 +00002025 DebugLoc ScopeLoc) {
Devang Patela3e9c9c2010-03-15 18:33:46 +00002026
2027 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var.getNode());
2028 if (AbsDbgVariable)
2029 return AbsDbgVariable;
2030
Chris Lattner915c5f92010-04-02 19:42:39 +00002031 LLVMContext &Ctx = Var.getNode()->getContext();
2032 DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope(Ctx));
Devang Patela3e9c9c2010-03-15 18:33:46 +00002033 if (!Scope)
2034 return NULL;
2035
Devang Patel23b2ae62010-03-29 22:59:58 +00002036 AbsDbgVariable = new DbgVariable(Var, MI,
Devang Patela3e9c9c2010-03-15 18:33:46 +00002037 NULL /* No more-abstract variable*/);
2038 Scope->addVariable(AbsDbgVariable);
2039 AbstractVariables[Var.getNode()] = AbsDbgVariable;
Devang Patel23b2ae62010-03-29 22:59:58 +00002040 DbgValueStartMap[MI] = AbsDbgVariable;
Devang Patela3e9c9c2010-03-15 18:33:46 +00002041 return AbsDbgVariable;
2042}
2043
Devang Patel930143b2009-11-21 02:48:08 +00002044/// collectVariableInfo - Populate DbgScope entries with variables' info.
2045void DwarfDebug::collectVariableInfo() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002046 const LLVMContext &Ctx = Asm->MF->getFunction()->getContext();
Chris Lattner915c5f92010-04-02 19:42:39 +00002047
Devang Patel475d32a2009-10-06 01:26:37 +00002048 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
2049 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
2050 VE = VMap.end(); VI != VE; ++VI) {
Devang Patelac277eb2010-01-22 22:52:10 +00002051 MDNode *Var = VI->first;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002052 if (!Var) continue;
Chris Lattner915c5f92010-04-02 19:42:39 +00002053 DIVariable DV(Var);
2054 const std::pair<unsigned, DebugLoc> &VP = VI->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002055
Chris Lattner915c5f92010-04-02 19:42:39 +00002056 DbgScope *Scope = 0;
2057 if (MDNode *IA = VP.second.getInlinedAt(Ctx))
2058 Scope = ConcreteScopes.lookup(IA);
2059 if (Scope == 0)
2060 Scope = DbgScopeMap.lookup(VP.second.getScope(Ctx));
2061
Devang Patelcdb7d442009-11-10 23:20:04 +00002062 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +00002063 if (Scope == 0)
Devang Patelcdb7d442009-11-10 23:20:04 +00002064 continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002065
Chris Lattner915c5f92010-04-02 19:42:39 +00002066 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.first, VP.second);
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002067 DbgVariable *RegVar = new DbgVariable(DV, VP.first, AbsDbgVariable);
Devang Patel930143b2009-11-21 02:48:08 +00002068 Scope->addVariable(RegVar);
Devang Patel475d32a2009-10-06 01:26:37 +00002069 }
Devang Patela3e9c9c2010-03-15 18:33:46 +00002070
2071 // Collect variable information from DBG_VALUE machine instructions;
Chris Lattner3a383cb2010-04-05 00:13:49 +00002072 for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end();
Devang Patela3e9c9c2010-03-15 18:33:46 +00002073 I != E; ++I) {
2074 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2075 II != IE; ++II) {
2076 const MachineInstr *MInsn = II;
Chris Lattner848c7d22010-03-31 05:39:57 +00002077 if (!MInsn->isDebugValue())
Devang Patela3e9c9c2010-03-15 18:33:46 +00002078 continue;
Devang Patel23b2ae62010-03-29 22:59:58 +00002079
Devang Patela3e9c9c2010-03-15 18:33:46 +00002080 // FIXME : Lift this restriction.
2081 if (MInsn->getNumOperands() != 3)
2082 continue;
Chris Lattner009de332010-03-31 03:34:40 +00002083 DIVariable DV((MDNode*)(MInsn->getOperand(MInsn->getNumOperands()
2084 - 1).getMetadata()));
Devang Patela3e9c9c2010-03-15 18:33:46 +00002085 if (DV.getTag() == dwarf::DW_TAG_arg_variable) {
2086 // FIXME Handle inlined subroutine arguments.
2087 DbgVariable *ArgVar = new DbgVariable(DV, MInsn, NULL);
2088 CurrentFnDbgScope->addVariable(ArgVar);
Devang Patel23b2ae62010-03-29 22:59:58 +00002089 DbgValueStartMap[MInsn] = ArgVar;
Devang Patela3e9c9c2010-03-15 18:33:46 +00002090 continue;
2091 }
2092
2093 DebugLoc DL = MInsn->getDebugLoc();
2094 if (DL.isUnknown()) continue;
Chris Lattner915c5f92010-04-02 19:42:39 +00002095 DbgScope *Scope = 0;
2096 if (MDNode *IA = DL.getInlinedAt(Ctx))
2097 Scope = ConcreteScopes.lookup(IA);
2098 if (Scope == 0)
2099 Scope = DbgScopeMap.lookup(DL.getScope(Ctx));
2100
Devang Patela3e9c9c2010-03-15 18:33:46 +00002101 // If variable scope is not found then skip this variable.
Chris Lattner915c5f92010-04-02 19:42:39 +00002102 if (Scope == 0)
Devang Patela3e9c9c2010-03-15 18:33:46 +00002103 continue;
2104
Chris Lattner915c5f92010-04-02 19:42:39 +00002105 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, MInsn, DL);
Devang Patela3e9c9c2010-03-15 18:33:46 +00002106 DbgVariable *RegVar = new DbgVariable(DV, MInsn, AbsDbgVariable);
Devang Patel23b2ae62010-03-29 22:59:58 +00002107 DbgValueStartMap[MInsn] = RegVar;
Devang Patela3e9c9c2010-03-15 18:33:46 +00002108 Scope->addVariable(RegVar);
2109 }
2110 }
Devang Patel475d32a2009-10-06 01:26:37 +00002111}
2112
Devang Patelbd477be2010-03-29 17:20:31 +00002113/// beginScope - Process beginning of a scope.
2114void DwarfDebug::beginScope(const MachineInstr *MI) {
Devang Patelbd477be2010-03-29 17:20:31 +00002115 // Check location.
2116 DebugLoc DL = MI->getDebugLoc();
2117 if (DL.isUnknown())
2118 return;
Devang Patelbd477be2010-03-29 17:20:31 +00002119
2120 // Check and update last known location info.
Chris Lattner915c5f92010-04-02 19:42:39 +00002121 if (DL == PrevInstLoc)
2122 return;
2123
Chris Lattner3a383cb2010-04-05 00:13:49 +00002124 MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext());
Chris Lattner915c5f92010-04-02 19:42:39 +00002125
2126 // FIXME: Should only verify each scope once!
2127 if (!DIScope(Scope).Verify())
Devang Patelbd477be2010-03-29 17:20:31 +00002128 return;
Devang Patelbd477be2010-03-29 17:20:31 +00002129
Devang Patel23b2ae62010-03-29 22:59:58 +00002130 // DBG_VALUE instruction establishes new value.
Chris Lattner848c7d22010-03-31 05:39:57 +00002131 if (MI->isDebugValue()) {
Devang Patel23b2ae62010-03-29 22:59:58 +00002132 DenseMap<const MachineInstr *, DbgVariable *>::iterator DI
2133 = DbgValueStartMap.find(MI);
2134 if (DI != DbgValueStartMap.end()) {
Chris Lattner915c5f92010-04-02 19:42:39 +00002135 MCSymbol *Label = recordSourceLine(DL.getLine(), DL.getCol(), Scope);
2136 PrevInstLoc = DL;
Devang Patel23b2ae62010-03-29 22:59:58 +00002137 DI->second->setDbgValueLabel(Label);
2138 }
Devang Patel67d94ab2010-03-30 18:07:00 +00002139 return;
Devang Patel23b2ae62010-03-29 22:59:58 +00002140 }
2141
Devang Patelbd477be2010-03-29 17:20:31 +00002142 // Emit a label to indicate location change. This is used for line
2143 // table even if this instruction does start a new scope.
Chris Lattner915c5f92010-04-02 19:42:39 +00002144 MCSymbol *Label = recordSourceLine(DL.getLine(), DL.getCol(), Scope);
2145 PrevInstLoc = DL;
Devang Patelbd477be2010-03-29 17:20:31 +00002146
2147 // update DbgScope if this instruction starts a new scope.
Devang Patel8db360d2009-10-06 01:50:42 +00002148 InsnToDbgScopeMapTy::iterator I = DbgScopeBeginMap.find(MI);
2149 if (I == DbgScopeBeginMap.end())
2150 return;
Devang Patelbd477be2010-03-29 17:20:31 +00002151
Dan Gohman3650f4e2009-11-23 21:30:55 +00002152 ScopeVector &SD = I->second;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002153 for (ScopeVector::iterator SDI = SD.begin(), SDE = SD.end();
Jim Grosbach042483e2009-11-21 23:12:12 +00002154 SDI != SDE; ++SDI)
Chris Lattnerba35a672010-03-09 04:54:43 +00002155 (*SDI)->setStartLabel(Label);
Devang Patel8db360d2009-10-06 01:50:42 +00002156}
2157
Devang Patel930143b2009-11-21 02:48:08 +00002158/// endScope - Process end of a scope.
2159void DwarfDebug::endScope(const MachineInstr *MI) {
Devang Patelbd477be2010-03-29 17:20:31 +00002160 // Ignore DBG_VALUE instruction.
Chris Lattner848c7d22010-03-31 05:39:57 +00002161 if (MI->isDebugValue())
Devang Patelbd477be2010-03-29 17:20:31 +00002162 return;
2163
2164 // Check location.
2165 DebugLoc DL = MI->getDebugLoc();
2166 if (DL.isUnknown())
2167 return;
Chris Lattner915c5f92010-04-02 19:42:39 +00002168
Devang Patelbd477be2010-03-29 17:20:31 +00002169 // Emit a label and update DbgScope if this instruction ends a scope.
Devang Patel8db360d2009-10-06 01:50:42 +00002170 InsnToDbgScopeMapTy::iterator I = DbgScopeEndMap.find(MI);
Devang Patel7d838bb2009-10-06 03:15:38 +00002171 if (I == DbgScopeEndMap.end())
Devang Patel8db360d2009-10-06 01:50:42 +00002172 return;
Chris Lattner915c5f92010-04-02 19:42:39 +00002173
Chris Lattner6e52e9d2010-03-14 08:36:50 +00002174 MCSymbol *Label = MMI->getContext().CreateTempSymbol();
Chris Lattnere13c3722010-03-09 01:58:53 +00002175 Asm->OutStreamer.EmitLabel(Label);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002176
Chris Lattnere13c3722010-03-09 01:58:53 +00002177 SmallVector<DbgScope*, 2> &SD = I->second;
Devang Patel8db360d2009-10-06 01:50:42 +00002178 for (SmallVector<DbgScope *, 2>::iterator SDI = SD.begin(), SDE = SD.end();
Jim Grosbach042483e2009-11-21 23:12:12 +00002179 SDI != SDE; ++SDI)
Chris Lattnere13c3722010-03-09 01:58:53 +00002180 (*SDI)->setEndLabel(Label);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002181 return;
2182}
2183
2184/// createDbgScope - Create DbgScope for the scope.
2185void DwarfDebug::createDbgScope(MDNode *Scope, MDNode *InlinedAt) {
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002186 if (!InlinedAt) {
2187 DbgScope *WScope = DbgScopeMap.lookup(Scope);
2188 if (WScope)
2189 return;
2190 WScope = new DbgScope(NULL, DIDescriptor(Scope), NULL);
2191 DbgScopeMap.insert(std::make_pair(Scope, WScope));
Jim Grosbach042483e2009-11-21 23:12:12 +00002192 if (DIDescriptor(Scope).isLexicalBlock())
Devang Patel4450f262009-11-11 00:18:40 +00002193 createDbgScope(DILexicalBlock(Scope).getContext().getNode(), NULL);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002194 return;
2195 }
2196
2197 DbgScope *WScope = DbgScopeMap.lookup(InlinedAt);
2198 if (WScope)
2199 return;
2200
2201 WScope = new DbgScope(NULL, DIDescriptor(Scope), InlinedAt);
2202 DbgScopeMap.insert(std::make_pair(InlinedAt, WScope));
2203 DILocation DL(InlinedAt);
2204 createDbgScope(DL.getScope().getNode(), DL.getOrigLocation().getNode());
Devang Patel8db360d2009-10-06 01:50:42 +00002205}
2206
Devang Patel930143b2009-11-21 02:48:08 +00002207/// extractScopeInformation - Scan machine instructions in this function
Chris Lattner848c7d22010-03-31 05:39:57 +00002208/// and collect DbgScopes. Return true, if at least one scope was found.
Chris Lattner76555b52010-01-26 23:18:02 +00002209bool DwarfDebug::extractScopeInformation() {
Devang Patel75cc16c2009-10-01 20:31:14 +00002210 // If scope information was extracted using .dbg intrinsics then there is not
2211 // any need to extract these information by scanning each instruction.
2212 if (!DbgScopeMap.empty())
2213 return false;
2214
Devang Patel530a0752010-01-04 20:44:00 +00002215 DenseMap<const MachineInstr *, unsigned> MIIndexMap;
2216 unsigned MIIndex = 0;
Chris Lattner3a383cb2010-04-05 00:13:49 +00002217 LLVMContext &Ctx = Asm->MF->getFunction()->getContext();
Chris Lattner915c5f92010-04-02 19:42:39 +00002218
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002219 // Scan each instruction and create scopes. First build working set of scopes.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002220 for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end();
Devang Patel75cc16c2009-10-01 20:31:14 +00002221 I != E; ++I) {
2222 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2223 II != IE; ++II) {
2224 const MachineInstr *MInsn = II;
Devang Patela3e9c9c2010-03-15 18:33:46 +00002225 // FIXME : Remove DBG_VALUE check.
Chris Lattner848c7d22010-03-31 05:39:57 +00002226 if (MInsn->isDebugValue()) continue;
Devang Patel530a0752010-01-04 20:44:00 +00002227 MIIndexMap[MInsn] = MIIndex++;
Chris Lattner915c5f92010-04-02 19:42:39 +00002228
Devang Patel75cc16c2009-10-01 20:31:14 +00002229 DebugLoc DL = MInsn->getDebugLoc();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002230 if (DL.isUnknown()) continue;
Chris Lattner915c5f92010-04-02 19:42:39 +00002231
2232 MDNode *Scope = DL.getScope(Ctx);
2233
Devang Patel75cc16c2009-10-01 20:31:14 +00002234 // There is no need to create another DIE for compile unit. For all
Jim Grosbach042483e2009-11-21 23:12:12 +00002235 // other scopes, create one DbgScope now. This will be translated
Devang Patel75cc16c2009-10-01 20:31:14 +00002236 // into a scope DIE at the end.
Chris Lattner915c5f92010-04-02 19:42:39 +00002237 if (DIScope(Scope).isCompileUnit()) continue;
2238 createDbgScope(Scope, DL.getInlinedAt(Ctx));
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002239 }
2240 }
2241
Devang Patel18737b22010-04-01 22:47:29 +00002242
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002243 // Build scope hierarchy using working set of scopes.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002244 for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002245 I != E; ++I) {
2246 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2247 II != IE; ++II) {
2248 const MachineInstr *MInsn = II;
Devang Patela3e9c9c2010-03-15 18:33:46 +00002249 // FIXME : Remove DBG_VALUE check.
Chris Lattner848c7d22010-03-31 05:39:57 +00002250 if (MInsn->isDebugValue()) continue;
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002251 DebugLoc DL = MInsn->getDebugLoc();
Chris Lattner915c5f92010-04-02 19:42:39 +00002252 if (DL.isUnknown()) continue;
2253
2254 MDNode *Scope = DL.getScope(Ctx);
2255 if (Scope == 0) continue;
2256
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002257 // There is no need to create another DIE for compile unit. For all
Jim Grosbach042483e2009-11-21 23:12:12 +00002258 // other scopes, create one DbgScope now. This will be translated
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002259 // into a scope DIE at the end.
Chris Lattner915c5f92010-04-02 19:42:39 +00002260 if (DIScope(Scope).isCompileUnit()) continue;
2261 DbgScope *DScope = getUpdatedDbgScope(Scope, MInsn, DL.getInlinedAt(Ctx));
2262 DScope->setLastInsn(MInsn);
Devang Patel75cc16c2009-10-01 20:31:14 +00002263 }
2264 }
2265
Devang Patel530a0752010-01-04 20:44:00 +00002266 if (!CurrentFnDbgScope)
2267 return false;
2268
2269 CurrentFnDbgScope->fixInstructionMarkers(MIIndexMap);
Devang Patel75cc16c2009-10-01 20:31:14 +00002270
2271 // Each scope has first instruction and last instruction to mark beginning
2272 // and end of a scope respectively. Create an inverse map that list scopes
2273 // starts (and ends) with an instruction. One instruction may start (or end)
Devang Patel7771b7c2010-01-20 02:05:23 +00002274 // multiple scopes. Ignore scopes that are not reachable.
2275 SmallVector<DbgScope *, 4> WorkList;
2276 WorkList.push_back(CurrentFnDbgScope);
2277 while (!WorkList.empty()) {
Chris Lattner848c7d22010-03-31 05:39:57 +00002278 DbgScope *S = WorkList.pop_back_val();
Devang Patel7771b7c2010-01-20 02:05:23 +00002279
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002280 const SmallVector<DbgScope *, 4> &Children = S->getScopes();
Devang Patel7771b7c2010-01-20 02:05:23 +00002281 if (!Children.empty())
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002282 for (SmallVector<DbgScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel7771b7c2010-01-20 02:05:23 +00002283 SE = Children.end(); SI != SE; ++SI)
2284 WorkList.push_back(*SI);
2285
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002286 if (S->isAbstractScope())
2287 continue;
Devang Patel75cc16c2009-10-01 20:31:14 +00002288 const MachineInstr *MI = S->getFirstInsn();
Chris Lattner8d2fe282010-03-31 05:36:29 +00002289 assert(MI && "DbgScope does not have first instruction!");
Devang Patel75cc16c2009-10-01 20:31:14 +00002290
2291 InsnToDbgScopeMapTy::iterator IDI = DbgScopeBeginMap.find(MI);
2292 if (IDI != DbgScopeBeginMap.end())
2293 IDI->second.push_back(S);
2294 else
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002295 DbgScopeBeginMap[MI].push_back(S);
Devang Patel75cc16c2009-10-01 20:31:14 +00002296
2297 MI = S->getLastInsn();
Chris Lattner8d2fe282010-03-31 05:36:29 +00002298 assert(MI && "DbgScope does not have last instruction!");
Devang Patel75cc16c2009-10-01 20:31:14 +00002299 IDI = DbgScopeEndMap.find(MI);
2300 if (IDI != DbgScopeEndMap.end())
2301 IDI->second.push_back(S);
2302 else
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002303 DbgScopeEndMap[MI].push_back(S);
Devang Patel75cc16c2009-10-01 20:31:14 +00002304 }
2305
2306 return !DbgScopeMap.empty();
2307}
2308
Devang Patel930143b2009-11-21 02:48:08 +00002309/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendling2b128d72009-05-20 23:19:06 +00002310/// emitted immediately after the function entry point.
Chris Lattner76555b52010-01-26 23:18:02 +00002311void DwarfDebug::beginFunction(const MachineFunction *MF) {
Chris Lattner196dbdc2010-04-05 03:52:55 +00002312 if (!MMI->hasDebugInfo()) return;
Bill Wendlingfcc14142010-04-07 09:28:04 +00002313 if (!extractScopeInformation()) return;
Chris Lattner47879752010-03-29 20:38:20 +00002314
Devang Patel930143b2009-11-21 02:48:08 +00002315 collectVariableInfo();
Devang Patel4598eb62009-10-06 18:37:31 +00002316
Bill Wendling2b128d72009-05-20 23:19:06 +00002317 // Assumes in correct section after the entry point.
Chris Lattnera179b522010-04-04 19:25:43 +00002318 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("func_begin",
Chris Lattner3a383cb2010-04-05 00:13:49 +00002319 Asm->getFunctionNumber()));
Bill Wendling2b128d72009-05-20 23:19:06 +00002320
2321 // Emit label for the implicitly defined dbg.stoppoint at the start of the
2322 // function.
Devang Pateldf45c7f2009-10-09 22:42:28 +00002323 DebugLoc FDL = MF->getDefaultDebugLoc();
Chris Lattner915c5f92010-04-02 19:42:39 +00002324 if (FDL.isUnknown()) return;
2325
2326 MDNode *Scope = FDL.getScope(MF->getFunction()->getContext());
2327
2328 DISubprogram SP = getDISubprogram(Scope);
2329 unsigned Line, Col;
2330 if (SP.Verify()) {
2331 Line = SP.getLineNumber();
2332 Col = 0;
2333 } else {
2334 Line = FDL.getLine();
2335 Col = FDL.getCol();
Bill Wendling2b128d72009-05-20 23:19:06 +00002336 }
Chris Lattner915c5f92010-04-02 19:42:39 +00002337
2338 recordSourceLine(Line, Col, Scope);
Bill Wendling2b128d72009-05-20 23:19:06 +00002339}
2340
Devang Patel930143b2009-11-21 02:48:08 +00002341/// endFunction - Gather and emit post-function debug information.
Bill Wendling2b128d72009-05-20 23:19:06 +00002342///
Chris Lattner76555b52010-01-26 23:18:02 +00002343void DwarfDebug::endFunction(const MachineFunction *MF) {
Bill Wendlingfcc14142010-04-07 09:28:04 +00002344 if (!MMI->hasDebugInfo() || DbgScopeMap.empty()) return;
Devang Patel2904aa92009-11-12 19:02:56 +00002345
Devang Patel530a0752010-01-04 20:44:00 +00002346 if (CurrentFnDbgScope) {
2347 // Define end label for subprogram.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002348 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("func_end",
2349 Asm->getFunctionNumber()));
Devang Patel530a0752010-01-04 20:44:00 +00002350
2351 // Get function line info.
2352 if (!Lines.empty()) {
2353 // Get section line info.
2354 unsigned ID = SectionMap.insert(Asm->getCurrentSection());
2355 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2356 std::vector<SrcLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2357 // Append the function info to section info.
2358 SectionLineInfos.insert(SectionLineInfos.end(),
2359 Lines.begin(), Lines.end());
2360 }
2361
2362 // Construct abstract scopes.
2363 for (SmallVector<DbgScope *, 4>::iterator AI = AbstractScopesList.begin(),
2364 AE = AbstractScopesList.end(); AI != AE; ++AI)
2365 constructScopeDIE(*AI);
2366
2367 constructScopeDIE(CurrentFnDbgScope);
2368
Chris Lattner3a383cb2010-04-05 00:13:49 +00002369 DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(),
Devang Patel530a0752010-01-04 20:44:00 +00002370 MMI->getFrameMoves()));
Bill Wendling2b128d72009-05-20 23:19:06 +00002371 }
2372
Bill Wendling2b128d72009-05-20 23:19:06 +00002373 // Clear debug info
Devang Patelfe189e62010-01-19 01:26:02 +00002374 CurrentFnDbgScope = NULL;
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002375 DeleteContainerSeconds(DbgScopeMap);
Devang Patelfe189e62010-01-19 01:26:02 +00002376 DbgScopeBeginMap.clear();
2377 DbgScopeEndMap.clear();
Devang Patel23b2ae62010-03-29 22:59:58 +00002378 DbgValueStartMap.clear();
Devang Patelfe189e62010-01-19 01:26:02 +00002379 ConcreteScopes.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002380 DeleteContainerSeconds(AbstractScopes);
Devang Patelfe189e62010-01-19 01:26:02 +00002381 AbstractScopesList.clear();
Jeffrey Yasskin35b4e4f2010-03-12 17:45:06 +00002382 AbstractVariables.clear();
Bill Wendling2b128d72009-05-20 23:19:06 +00002383 Lines.clear();
Bill Wendling2b128d72009-05-20 23:19:06 +00002384}
2385
Chris Lattnerba35a672010-03-09 04:54:43 +00002386/// recordSourceLine - Register a source line with debug info. Returns the
2387/// unique label that was emitted and which provides correspondence to
2388/// the source line list.
2389MCSymbol *DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, MDNode *S) {
Devang Patel2d9caf92009-11-25 17:36:49 +00002390 StringRef Dir;
2391 StringRef Fn;
Devang Patel2089d162009-10-05 18:03:19 +00002392
2393 DIDescriptor Scope(S);
2394 if (Scope.isCompileUnit()) {
2395 DICompileUnit CU(S);
2396 Dir = CU.getDirectory();
2397 Fn = CU.getFilename();
2398 } else if (Scope.isSubprogram()) {
2399 DISubprogram SP(S);
2400 Dir = SP.getDirectory();
2401 Fn = SP.getFilename();
2402 } else if (Scope.isLexicalBlock()) {
2403 DILexicalBlock DB(S);
2404 Dir = DB.getDirectory();
2405 Fn = DB.getFilename();
2406 } else
Chris Lattner2c3f4782010-03-13 07:26:18 +00002407 assert(0 && "Unexpected scope info");
Devang Patel2089d162009-10-05 18:03:19 +00002408
2409 unsigned Src = GetOrCreateSourceID(Dir, Fn);
Chris Lattner6e52e9d2010-03-14 08:36:50 +00002410 MCSymbol *Label = MMI->getContext().CreateTempSymbol();
Chris Lattnerb4666f42010-03-14 08:15:55 +00002411 Lines.push_back(SrcLineInfo(Line, Col, Src, Label));
Bill Wendling2b128d72009-05-20 23:19:06 +00002412
Chris Lattnerba35a672010-03-09 04:54:43 +00002413 Asm->OutStreamer.EmitLabel(Label);
2414 return Label;
Bill Wendling2b128d72009-05-20 23:19:06 +00002415}
2416
2417/// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
2418/// timed. Look up the source id with the given directory and source file
2419/// names. If none currently exists, create a new id and insert it in the
2420/// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
2421/// well.
2422unsigned DwarfDebug::getOrCreateSourceID(const std::string &DirName,
2423 const std::string &FileName) {
Bill Wendlingfcc14142010-04-07 09:28:04 +00002424 NamedRegionTimer T(DbgTimerName, DWARFGroupName);
Chris Lattner47879752010-03-29 20:38:20 +00002425 return GetOrCreateSourceID(DirName.c_str(), FileName.c_str());
Bill Wendling2b128d72009-05-20 23:19:06 +00002426}
2427
Bill Wendling806535f2009-05-20 23:22:40 +00002428//===----------------------------------------------------------------------===//
2429// Emit Methods
2430//===----------------------------------------------------------------------===//
2431
Devang Patel930143b2009-11-21 02:48:08 +00002432/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling480ff322009-05-20 23:21:38 +00002433///
Jim Grosbach00e9c612009-11-22 19:20:36 +00002434unsigned
2435DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling480ff322009-05-20 23:21:38 +00002436 // Get the children.
2437 const std::vector<DIE *> &Children = Die->getChildren();
2438
2439 // If not last sibling and has children then add sibling offset attribute.
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00002440 if (!Last && !Children.empty())
Benjamin Kramer74729ae2010-03-31 19:34:01 +00002441 Die->addSiblingOffset(DIEValueAllocator);
Bill Wendling480ff322009-05-20 23:21:38 +00002442
2443 // Record the abbreviation.
Devang Patel930143b2009-11-21 02:48:08 +00002444 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling480ff322009-05-20 23:21:38 +00002445
2446 // Get the abbreviation for this DIE.
2447 unsigned AbbrevNumber = Die->getAbbrevNumber();
2448 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2449
2450 // Set DIE offset
2451 Die->setOffset(Offset);
2452
2453 // Start the size with the size of abbreviation code.
Chris Lattner7b26fce2009-08-22 20:48:53 +00002454 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00002455
2456 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2457 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2458
2459 // Size the DIE attribute values.
2460 for (unsigned i = 0, N = Values.size(); i < N; ++i)
2461 // Size attribute value.
Chris Lattner5a00dea2010-04-05 00:18:22 +00002462 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
Bill Wendling480ff322009-05-20 23:21:38 +00002463
2464 // Size the DIE children if any.
2465 if (!Children.empty()) {
2466 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
2467 "Children flag not set");
2468
2469 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00002470 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling480ff322009-05-20 23:21:38 +00002471
2472 // End of children marker.
2473 Offset += sizeof(int8_t);
2474 }
2475
2476 Die->setSize(Offset - Die->getOffset());
2477 return Offset;
2478}
2479
Devang Patel930143b2009-11-21 02:48:08 +00002480/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling480ff322009-05-20 23:21:38 +00002481///
Devang Patel930143b2009-11-21 02:48:08 +00002482void DwarfDebug::computeSizeAndOffsets() {
Bill Wendling480ff322009-05-20 23:21:38 +00002483 // Compute size of compile unit header.
2484 static unsigned Offset =
2485 sizeof(int32_t) + // Length of Compilation Unit Info
2486 sizeof(int16_t) + // DWARF version number
2487 sizeof(int32_t) + // Offset Into Abbrev. Section
2488 sizeof(int8_t); // Pointer Size (in bytes)
2489
Devang Patel930143b2009-11-21 02:48:08 +00002490 computeSizeAndOffset(ModuleCU->getCUDie(), Offset, true);
Devang Patel40d78412009-06-29 20:45:18 +00002491 CompileUnitOffsets[ModuleCU] = 0;
Bill Wendling480ff322009-05-20 23:21:38 +00002492}
2493
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002494/// EmitSectionSym - Switch to the specified MCSection and emit an assembler
2495/// temporary label to it if SymbolStem is specified.
Chris Lattner6629ca92010-04-04 22:59:04 +00002496static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section,
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002497 const char *SymbolStem = 0) {
Chris Lattner6629ca92010-04-04 22:59:04 +00002498 Asm->OutStreamer.SwitchSection(Section);
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002499 if (!SymbolStem) return 0;
2500
Chris Lattner6629ca92010-04-04 22:59:04 +00002501 MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem);
2502 Asm->OutStreamer.EmitLabel(TmpSym);
2503 return TmpSym;
2504}
2505
2506/// EmitSectionLabels - Emit initial Dwarf sections with a label at
2507/// the start of each one.
Chris Lattner46355d82010-04-04 22:33:59 +00002508void DwarfDebug::EmitSectionLabels() {
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002509 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00002510
Bill Wendling480ff322009-05-20 23:21:38 +00002511 // Dwarf sections base addresses.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002512 if (Asm->MAI->doesDwarfRequireFrameSection()) {
Chris Lattner6629ca92010-04-04 22:59:04 +00002513 DwarfFrameSectionSym =
2514 EmitSectionSym(Asm, TLOF.getDwarfFrameSection(), "section_debug_frame");
2515 }
Bill Wendling480ff322009-05-20 23:21:38 +00002516
Chris Lattner6629ca92010-04-04 22:59:04 +00002517 DwarfInfoSectionSym =
2518 EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info");
2519 DwarfAbbrevSectionSym =
2520 EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002521 EmitSectionSym(Asm, TLOF.getDwarfARangesSection());
Chris Lattner6629ca92010-04-04 22:59:04 +00002522
2523 if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection())
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002524 EmitSectionSym(Asm, MacroInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00002525
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002526 EmitSectionSym(Asm, TLOF.getDwarfLineSection());
2527 EmitSectionSym(Asm, TLOF.getDwarfLocSection());
2528 EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection());
2529 EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection());
Chris Lattner6629ca92010-04-04 22:59:04 +00002530 DwarfStrSectionSym =
2531 EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str");
Chris Lattner1fbf53b2010-04-04 23:02:02 +00002532 EmitSectionSym(Asm, TLOF.getDwarfRangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002533
Chris Lattner6629ca92010-04-04 22:59:04 +00002534 TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin");
Chris Lattnere58b5472010-04-04 23:10:38 +00002535 EmitSectionSym(Asm, TLOF.getDataSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002536}
2537
Devang Patel930143b2009-11-21 02:48:08 +00002538/// emitDIE - Recusively Emits a debug information entry.
Bill Wendling480ff322009-05-20 23:21:38 +00002539///
Devang Patel930143b2009-11-21 02:48:08 +00002540void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling480ff322009-05-20 23:21:38 +00002541 // Get the abbreviation for this DIE.
2542 unsigned AbbrevNumber = Die->getAbbrevNumber();
2543 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2544
Bill Wendling480ff322009-05-20 23:21:38 +00002545 // Emit the code (index) for the abbreviation.
Chris Lattner7bde8c02010-04-04 18:52:31 +00002546 if (Asm->isVerbose())
Chris Lattnerfa823552010-01-22 23:18:42 +00002547 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
2548 Twine::utohexstr(Die->getOffset()) + ":0x" +
2549 Twine::utohexstr(Die->getSize()) + " " +
2550 dwarf::TagString(Abbrev->getTag()));
Chris Lattner9efd1182010-04-04 19:09:29 +00002551 Asm->EmitULEB128(AbbrevNumber);
Bill Wendling480ff322009-05-20 23:21:38 +00002552
Jeffrey Yasskin54ebc982010-03-22 18:47:14 +00002553 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
Bill Wendling480ff322009-05-20 23:21:38 +00002554 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2555
2556 // Emit the DIE attribute values.
2557 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2558 unsigned Attr = AbbrevData[i].getAttribute();
2559 unsigned Form = AbbrevData[i].getForm();
2560 assert(Form && "Too many attributes for DIE (check abbreviation)");
2561
Chris Lattner7bde8c02010-04-04 18:52:31 +00002562 if (Asm->isVerbose())
Chris Lattner5adf9872010-01-24 18:54:17 +00002563 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
2564
Bill Wendling480ff322009-05-20 23:21:38 +00002565 switch (Attr) {
2566 case dwarf::DW_AT_sibling:
Devang Patel930143b2009-11-21 02:48:08 +00002567 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00002568 break;
2569 case dwarf::DW_AT_abstract_origin: {
2570 DIEEntry *E = cast<DIEEntry>(Values[i]);
2571 DIE *Origin = E->getEntry();
Devang Patelf6eeaeb2009-11-10 23:06:00 +00002572 unsigned Addr = Origin->getOffset();
Bill Wendling480ff322009-05-20 23:21:38 +00002573 Asm->EmitInt32(Addr);
2574 break;
2575 }
2576 default:
2577 // Emit an attribute using the defined form.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002578 Values[i]->EmitValue(Asm, Form);
Bill Wendling480ff322009-05-20 23:21:38 +00002579 break;
2580 }
Bill Wendling480ff322009-05-20 23:21:38 +00002581 }
2582
2583 // Emit the DIE children if any.
2584 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
2585 const std::vector<DIE *> &Children = Die->getChildren();
2586
2587 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel930143b2009-11-21 02:48:08 +00002588 emitDIE(Children[j]);
Bill Wendling480ff322009-05-20 23:21:38 +00002589
Chris Lattner7bde8c02010-04-04 18:52:31 +00002590 if (Asm->isVerbose())
Chris Lattner566cae92010-03-09 23:52:58 +00002591 Asm->OutStreamer.AddComment("End Of Children Mark");
2592 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00002593 }
2594}
2595
Devang Patel9ccfb642009-12-09 18:24:21 +00002596/// emitDebugInfo - Emit the debug info section.
Bill Wendling480ff322009-05-20 23:21:38 +00002597///
Devang Patel9ccfb642009-12-09 18:24:21 +00002598void DwarfDebug::emitDebugInfo() {
2599 // Start debug info section.
2600 Asm->OutStreamer.SwitchSection(
2601 Asm->getObjFileLowering().getDwarfInfoSection());
2602 DIE *Die = ModuleCU->getCUDie();
Bill Wendling480ff322009-05-20 23:21:38 +00002603
2604 // Emit the compile units header.
Chris Lattnera179b522010-04-04 19:25:43 +00002605 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin",
2606 ModuleCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00002607
2608 // Emit size of content not including length itself
2609 unsigned ContentSize = Die->getSize() +
2610 sizeof(int16_t) + // DWARF version number
2611 sizeof(int32_t) + // Offset Into Abbrev. Section
2612 sizeof(int8_t) + // Pointer Size (in bytes)
2613 sizeof(int32_t); // FIXME - extra pad for gdb bug.
2614
Chris Lattner566cae92010-03-09 23:52:58 +00002615 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
2616 Asm->EmitInt32(ContentSize);
2617 Asm->OutStreamer.AddComment("DWARF version number");
2618 Asm->EmitInt16(dwarf::DWARF_VERSION);
2619 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002620 Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"),
2621 DwarfAbbrevSectionSym);
Chris Lattner566cae92010-03-09 23:52:58 +00002622 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002623 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002624
Devang Patel930143b2009-11-21 02:48:08 +00002625 emitDIE(Die);
Bill Wendling480ff322009-05-20 23:21:38 +00002626 // FIXME - extra padding for gdb bug.
Chris Lattner566cae92010-03-09 23:52:58 +00002627 Asm->OutStreamer.AddComment("4 extra padding bytes for GDB");
2628 Asm->EmitInt8(0);
2629 Asm->EmitInt8(0);
2630 Asm->EmitInt8(0);
2631 Asm->EmitInt8(0);
Chris Lattnera179b522010-04-04 19:25:43 +00002632 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", ModuleCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00002633}
2634
Devang Patel930143b2009-11-21 02:48:08 +00002635/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling480ff322009-05-20 23:21:38 +00002636///
Devang Patel930143b2009-11-21 02:48:08 +00002637void DwarfDebug::emitAbbreviations() const {
Bill Wendling480ff322009-05-20 23:21:38 +00002638 // Check to see if it is worth the effort.
2639 if (!Abbreviations.empty()) {
2640 // Start the debug abbrev section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002641 Asm->OutStreamer.SwitchSection(
2642 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002643
Chris Lattnera179b522010-04-04 19:25:43 +00002644 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00002645
2646 // For each abbrevation.
2647 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2648 // Get abbreviation data
2649 const DIEAbbrev *Abbrev = Abbreviations[i];
2650
2651 // Emit the abbrevations code (base 1 index.)
Chris Lattner9efd1182010-04-04 19:09:29 +00002652 Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling480ff322009-05-20 23:21:38 +00002653
2654 // Emit the abbreviations data.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002655 Abbrev->Emit(Asm);
Bill Wendling480ff322009-05-20 23:21:38 +00002656 }
2657
2658 // Mark end of abbreviations.
Chris Lattner9efd1182010-04-04 19:09:29 +00002659 Asm->EmitULEB128(0, "EOM(3)");
Bill Wendling480ff322009-05-20 23:21:38 +00002660
Chris Lattnera179b522010-04-04 19:25:43 +00002661 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00002662 }
2663}
2664
Devang Patel930143b2009-11-21 02:48:08 +00002665/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling480ff322009-05-20 23:21:38 +00002666/// the line matrix.
2667///
Devang Patel930143b2009-11-21 02:48:08 +00002668void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling480ff322009-05-20 23:21:38 +00002669 // Define last address of section.
Chris Lattner566cae92010-03-09 23:52:58 +00002670 Asm->OutStreamer.AddComment("Extended Op");
2671 Asm->EmitInt8(0);
2672
2673 Asm->OutStreamer.AddComment("Op size");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002674 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00002675 Asm->OutStreamer.AddComment("DW_LNE_set_address");
2676 Asm->EmitInt8(dwarf::DW_LNE_set_address);
2677
2678 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerb245dfb2010-03-10 01:17:49 +00002679
Chris Lattnera179b522010-04-04 19:25:43 +00002680 Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd),
Chris Lattner3a383cb2010-04-05 00:13:49 +00002681 Asm->getTargetData().getPointerSize(),
2682 0/*AddrSpace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00002683
2684 // Mark end of matrix.
Chris Lattner566cae92010-03-09 23:52:58 +00002685 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
2686 Asm->EmitInt8(0);
Chris Lattnerf5c834f2010-01-22 22:09:00 +00002687 Asm->EmitInt8(1);
Chris Lattnerfa823552010-01-22 23:18:42 +00002688 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00002689}
2690
Devang Patel930143b2009-11-21 02:48:08 +00002691/// emitDebugLines - Emit source line information.
Bill Wendling480ff322009-05-20 23:21:38 +00002692///
Devang Patel930143b2009-11-21 02:48:08 +00002693void DwarfDebug::emitDebugLines() {
Bill Wendling480ff322009-05-20 23:21:38 +00002694 // If the target is using .loc/.file, the assembler will be emitting the
2695 // .debug_line table automatically.
Chris Lattner3a383cb2010-04-05 00:13:49 +00002696 if (Asm->MAI->hasDotLocAndDotFile())
Bill Wendling480ff322009-05-20 23:21:38 +00002697 return;
2698
2699 // Minimum line delta, thus ranging from -10..(255-10).
2700 const int MinLineDelta = -(dwarf::DW_LNS_fixed_advance_pc + 1);
2701 // Maximum line delta, thus ranging from -10..(255-10).
2702 const int MaxLineDelta = 255 + MinLineDelta;
2703
2704 // Start the dwarf line section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002705 Asm->OutStreamer.SwitchSection(
2706 Asm->getObjFileLowering().getDwarfLineSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002707
2708 // Construct the section header.
Chris Lattner566cae92010-03-09 23:52:58 +00002709 Asm->OutStreamer.AddComment("Length of Source Line Info");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002710 Asm->EmitLabelDifference(Asm->GetTempSymbol("line_end"),
2711 Asm->GetTempSymbol("line_begin"), 4);
Chris Lattnera179b522010-04-04 19:25:43 +00002712 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("line_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00002713
Chris Lattner566cae92010-03-09 23:52:58 +00002714 Asm->OutStreamer.AddComment("DWARF version number");
2715 Asm->EmitInt16(dwarf::DWARF_VERSION);
Bill Wendling480ff322009-05-20 23:21:38 +00002716
Chris Lattner566cae92010-03-09 23:52:58 +00002717 Asm->OutStreamer.AddComment("Prolog Length");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002718 Asm->EmitLabelDifference(Asm->GetTempSymbol("line_prolog_end"),
2719 Asm->GetTempSymbol("line_prolog_begin"), 4);
Chris Lattnera179b522010-04-04 19:25:43 +00002720 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("line_prolog_begin"));
Bill Wendling480ff322009-05-20 23:21:38 +00002721
Chris Lattner566cae92010-03-09 23:52:58 +00002722 Asm->OutStreamer.AddComment("Minimum Instruction Length");
2723 Asm->EmitInt8(1);
2724 Asm->OutStreamer.AddComment("Default is_stmt_start flag");
2725 Asm->EmitInt8(1);
2726 Asm->OutStreamer.AddComment("Line Base Value (Special Opcodes)");
2727 Asm->EmitInt8(MinLineDelta);
2728 Asm->OutStreamer.AddComment("Line Range Value (Special Opcodes)");
2729 Asm->EmitInt8(MaxLineDelta);
2730 Asm->OutStreamer.AddComment("Special Opcode Base");
2731 Asm->EmitInt8(-MinLineDelta);
Bill Wendling480ff322009-05-20 23:21:38 +00002732
2733 // Line number standard opcode encodings argument count
Chris Lattner566cae92010-03-09 23:52:58 +00002734 Asm->OutStreamer.AddComment("DW_LNS_copy arg count");
2735 Asm->EmitInt8(0);
2736 Asm->OutStreamer.AddComment("DW_LNS_advance_pc arg count");
2737 Asm->EmitInt8(1);
2738 Asm->OutStreamer.AddComment("DW_LNS_advance_line arg count");
2739 Asm->EmitInt8(1);
2740 Asm->OutStreamer.AddComment("DW_LNS_set_file arg count");
2741 Asm->EmitInt8(1);
2742 Asm->OutStreamer.AddComment("DW_LNS_set_column arg count");
2743 Asm->EmitInt8(1);
2744 Asm->OutStreamer.AddComment("DW_LNS_negate_stmt arg count");
2745 Asm->EmitInt8(0);
2746 Asm->OutStreamer.AddComment("DW_LNS_set_basic_block arg count");
2747 Asm->EmitInt8(0);
2748 Asm->OutStreamer.AddComment("DW_LNS_const_add_pc arg count");
2749 Asm->EmitInt8(0);
2750 Asm->OutStreamer.AddComment("DW_LNS_fixed_advance_pc arg count");
2751 Asm->EmitInt8(1);
Bill Wendling480ff322009-05-20 23:21:38 +00002752
2753 // Emit directories.
2754 for (unsigned DI = 1, DE = getNumSourceDirectories()+1; DI != DE; ++DI) {
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002755 const std::string &Dir = getSourceDirectoryName(DI);
Chris Lattner7bde8c02010-04-04 18:52:31 +00002756 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("Directory");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002757 Asm->OutStreamer.EmitBytes(StringRef(Dir.c_str(), Dir.size()+1), 0);
Bill Wendling480ff322009-05-20 23:21:38 +00002758 }
2759
Chris Lattner566cae92010-03-09 23:52:58 +00002760 Asm->OutStreamer.AddComment("End of directories");
2761 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00002762
2763 // Emit files.
2764 for (unsigned SI = 1, SE = getNumSourceIds()+1; SI != SE; ++SI) {
2765 // Remember source id starts at 1.
2766 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(SI);
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002767 const std::string &FN = getSourceFileName(Id.second);
Chris Lattner7bde8c02010-04-04 18:52:31 +00002768 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("Source");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002769 Asm->OutStreamer.EmitBytes(StringRef(FN.c_str(), FN.size()+1), 0);
2770
Chris Lattner9efd1182010-04-04 19:09:29 +00002771 Asm->EmitULEB128(Id.first, "Directory #");
2772 Asm->EmitULEB128(0, "Mod date");
2773 Asm->EmitULEB128(0, "File size");
Bill Wendling480ff322009-05-20 23:21:38 +00002774 }
2775
Chris Lattner566cae92010-03-09 23:52:58 +00002776 Asm->OutStreamer.AddComment("End of files");
2777 Asm->EmitInt8(0);
Bill Wendling480ff322009-05-20 23:21:38 +00002778
Chris Lattnera179b522010-04-04 19:25:43 +00002779 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("line_prolog_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00002780
2781 // A sequence for each text section.
2782 unsigned SecSrcLinesSize = SectionSourceLines.size();
2783
2784 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
2785 // Isolate current sections line info.
2786 const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j];
2787
Bill Wendling480ff322009-05-20 23:21:38 +00002788 // Dwarf assumes we start with first line of first source file.
2789 unsigned Source = 1;
2790 unsigned Line = 1;
2791
2792 // Construct rows of the address, source, line, column matrix.
2793 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2794 const SrcLineInfo &LineInfo = LineInfos[i];
Chris Lattnerb4666f42010-03-14 08:15:55 +00002795 MCSymbol *Label = LineInfo.getLabel();
Chris Lattneree95d4c2010-03-14 02:20:58 +00002796 if (!Label->isDefined()) continue; // Not emitted, in dead code.
Bill Wendling480ff322009-05-20 23:21:38 +00002797
Caroline Tice183a5192009-09-11 18:25:54 +00002798 if (LineInfo.getLine() == 0) continue;
2799
Chris Lattner3d72a672010-03-09 23:38:23 +00002800 if (Asm->isVerbose()) {
Chris Lattner7e998b72010-03-10 01:04:13 +00002801 std::pair<unsigned, unsigned> SrcID =
Bill Wendling480ff322009-05-20 23:21:38 +00002802 getSourceDirectoryAndFileIds(LineInfo.getSourceID());
Chris Lattner7e998b72010-03-10 01:04:13 +00002803 Asm->OutStreamer.AddComment(Twine(getSourceDirectoryName(SrcID.first)) +
Chris Lattnera26fbe42010-03-10 02:29:31 +00002804 "/" +
2805 Twine(getSourceFileName(SrcID.second)) +
Chris Lattner7e998b72010-03-10 01:04:13 +00002806 ":" + Twine(LineInfo.getLine()));
Bill Wendling480ff322009-05-20 23:21:38 +00002807 }
2808
2809 // Define the line address.
Chris Lattner566cae92010-03-09 23:52:58 +00002810 Asm->OutStreamer.AddComment("Extended Op");
2811 Asm->EmitInt8(0);
2812 Asm->OutStreamer.AddComment("Op size");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002813 Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1);
Chris Lattner566cae92010-03-09 23:52:58 +00002814
2815 Asm->OutStreamer.AddComment("DW_LNE_set_address");
2816 Asm->EmitInt8(dwarf::DW_LNE_set_address);
2817
2818 Asm->OutStreamer.AddComment("Location label");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002819 Asm->OutStreamer.EmitSymbolValue(Label,
2820 Asm->getTargetData().getPointerSize(),
Chris Lattneree95d4c2010-03-14 02:20:58 +00002821 0/*AddrSpace*/);
Chris Lattnerb245dfb2010-03-10 01:17:49 +00002822
Bill Wendling480ff322009-05-20 23:21:38 +00002823 // If change of source, then switch to the new source.
2824 if (Source != LineInfo.getSourceID()) {
2825 Source = LineInfo.getSourceID();
Chris Lattner566cae92010-03-09 23:52:58 +00002826 Asm->OutStreamer.AddComment("DW_LNS_set_file");
2827 Asm->EmitInt8(dwarf::DW_LNS_set_file);
Chris Lattner9efd1182010-04-04 19:09:29 +00002828 Asm->EmitULEB128(Source, "New Source");
Bill Wendling480ff322009-05-20 23:21:38 +00002829 }
2830
2831 // If change of line.
2832 if (Line != LineInfo.getLine()) {
2833 // Determine offset.
2834 int Offset = LineInfo.getLine() - Line;
2835 int Delta = Offset - MinLineDelta;
2836
2837 // Update line.
2838 Line = LineInfo.getLine();
2839
2840 // If delta is small enough and in range...
2841 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2842 // ... then use fast opcode.
Chris Lattner566cae92010-03-09 23:52:58 +00002843 Asm->OutStreamer.AddComment("Line Delta");
2844 Asm->EmitInt8(Delta - MinLineDelta);
Bill Wendling480ff322009-05-20 23:21:38 +00002845 } else {
2846 // ... otherwise use long hand.
Chris Lattner566cae92010-03-09 23:52:58 +00002847 Asm->OutStreamer.AddComment("DW_LNS_advance_line");
Bill Wendling480ff322009-05-20 23:21:38 +00002848 Asm->EmitInt8(dwarf::DW_LNS_advance_line);
Chris Lattner9efd1182010-04-04 19:09:29 +00002849 Asm->EmitSLEB128(Offset, "Line Offset");
Chris Lattner566cae92010-03-09 23:52:58 +00002850 Asm->OutStreamer.AddComment("DW_LNS_copy");
2851 Asm->EmitInt8(dwarf::DW_LNS_copy);
Bill Wendling480ff322009-05-20 23:21:38 +00002852 }
2853 } else {
2854 // Copy the previous row (different address or source)
Chris Lattner566cae92010-03-09 23:52:58 +00002855 Asm->OutStreamer.AddComment("DW_LNS_copy");
2856 Asm->EmitInt8(dwarf::DW_LNS_copy);
Bill Wendling480ff322009-05-20 23:21:38 +00002857 }
2858 }
2859
Devang Patel930143b2009-11-21 02:48:08 +00002860 emitEndOfLineMatrix(j + 1);
Bill Wendling480ff322009-05-20 23:21:38 +00002861 }
2862
2863 if (SecSrcLinesSize == 0)
2864 // Because we're emitting a debug_line section, we still need a line
2865 // table. The linker and friends expect it to exist. If there's nothing to
2866 // put into it, emit an empty table.
Devang Patel930143b2009-11-21 02:48:08 +00002867 emitEndOfLineMatrix(1);
Bill Wendling480ff322009-05-20 23:21:38 +00002868
Chris Lattnera179b522010-04-04 19:25:43 +00002869 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("line_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00002870}
2871
Devang Patel930143b2009-11-21 02:48:08 +00002872/// emitCommonDebugFrame - Emit common frame info into a debug frame section.
Bill Wendling480ff322009-05-20 23:21:38 +00002873///
Devang Patel930143b2009-11-21 02:48:08 +00002874void DwarfDebug::emitCommonDebugFrame() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002875 if (!Asm->MAI->doesDwarfRequireFrameSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002876 return;
2877
Chris Lattner3a383cb2010-04-05 00:13:49 +00002878 int stackGrowth = Asm->getTargetData().getPointerSize();
2879 if (Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2880 TargetFrameInfo::StackGrowsDown)
2881 stackGrowth *= -1;
Bill Wendling480ff322009-05-20 23:21:38 +00002882
2883 // Start the dwarf frame section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002884 Asm->OutStreamer.SwitchSection(
2885 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002886
Chris Lattnera179b522010-04-04 19:25:43 +00002887 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common"));
Chris Lattner566cae92010-03-09 23:52:58 +00002888 Asm->OutStreamer.AddComment("Length of Common Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002889 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_frame_common_end"),
2890 Asm->GetTempSymbol("debug_frame_common_begin"), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002891
Chris Lattnera179b522010-04-04 19:25:43 +00002892 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common_begin"));
Chris Lattner566cae92010-03-09 23:52:58 +00002893 Asm->OutStreamer.AddComment("CIE Identifier Tag");
Bill Wendling480ff322009-05-20 23:21:38 +00002894 Asm->EmitInt32((int)dwarf::DW_CIE_ID);
Chris Lattner566cae92010-03-09 23:52:58 +00002895 Asm->OutStreamer.AddComment("CIE Version");
Bill Wendling480ff322009-05-20 23:21:38 +00002896 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
Chris Lattner566cae92010-03-09 23:52:58 +00002897 Asm->OutStreamer.AddComment("CIE Augmentation");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002898 Asm->OutStreamer.EmitIntValue(0, 1, /*addrspace*/0); // nul terminator.
Chris Lattner9efd1182010-04-04 19:09:29 +00002899 Asm->EmitULEB128(1, "CIE Code Alignment Factor");
2900 Asm->EmitSLEB128(stackGrowth, "CIE Data Alignment Factor");
Chris Lattner566cae92010-03-09 23:52:58 +00002901 Asm->OutStreamer.AddComment("CIE RA Column");
Chris Lattner3a383cb2010-04-05 00:13:49 +00002902 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
Bill Wendling480ff322009-05-20 23:21:38 +00002903 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
Bill Wendling480ff322009-05-20 23:21:38 +00002904
2905 std::vector<MachineMove> Moves;
2906 RI->getInitialFrameState(Moves);
2907
Chris Lattneraabc6042010-04-04 23:41:46 +00002908 Asm->EmitFrameMoves(Moves, 0, false);
Bill Wendling480ff322009-05-20 23:21:38 +00002909
2910 Asm->EmitAlignment(2, 0, 0, false);
Chris Lattnera179b522010-04-04 19:25:43 +00002911 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common_end"));
Bill Wendling480ff322009-05-20 23:21:38 +00002912}
2913
Devang Patel930143b2009-11-21 02:48:08 +00002914/// emitFunctionDebugFrame - Emit per function frame info into a debug frame
Bill Wendling480ff322009-05-20 23:21:38 +00002915/// section.
Chris Lattner2c3f4782010-03-13 07:26:18 +00002916void DwarfDebug::
2917emitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) {
Chris Lattner3a383cb2010-04-05 00:13:49 +00002918 if (!Asm->MAI->doesDwarfRequireFrameSection())
Bill Wendling480ff322009-05-20 23:21:38 +00002919 return;
2920
2921 // Start the dwarf frame section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00002922 Asm->OutStreamer.SwitchSection(
2923 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling480ff322009-05-20 23:21:38 +00002924
Chris Lattner566cae92010-03-09 23:52:58 +00002925 Asm->OutStreamer.AddComment("Length of Frame Information Entry");
Chris Lattner2c3f4782010-03-13 07:26:18 +00002926 MCSymbol *DebugFrameBegin =
Chris Lattnera179b522010-04-04 19:25:43 +00002927 Asm->GetTempSymbol("debug_frame_begin", DebugFrameInfo.Number);
Chris Lattner2c3f4782010-03-13 07:26:18 +00002928 MCSymbol *DebugFrameEnd =
Chris Lattnera179b522010-04-04 19:25:43 +00002929 Asm->GetTempSymbol("debug_frame_end", DebugFrameInfo.Number);
Chris Lattnerf1429f12010-04-04 19:58:12 +00002930 Asm->EmitLabelDifference(DebugFrameEnd, DebugFrameBegin, 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002931
Chris Lattner2c3f4782010-03-13 07:26:18 +00002932 Asm->OutStreamer.EmitLabel(DebugFrameBegin);
Bill Wendling480ff322009-05-20 23:21:38 +00002933
Chris Lattner566cae92010-03-09 23:52:58 +00002934 Asm->OutStreamer.AddComment("FDE CIE offset");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002935 Asm->EmitSectionOffset(Asm->GetTempSymbol("debug_frame_common"),
2936 DwarfFrameSectionSym);
Bill Wendling480ff322009-05-20 23:21:38 +00002937
Chris Lattner566cae92010-03-09 23:52:58 +00002938 Asm->OutStreamer.AddComment("FDE initial location");
Chris Lattnera179b522010-04-04 19:25:43 +00002939 MCSymbol *FuncBeginSym =
2940 Asm->GetTempSymbol("func_begin", DebugFrameInfo.Number);
Chris Lattner8811e122010-03-13 07:40:56 +00002941 Asm->OutStreamer.EmitSymbolValue(FuncBeginSym,
Chris Lattner3a383cb2010-04-05 00:13:49 +00002942 Asm->getTargetData().getPointerSize(),
2943 0/*AddrSpace*/);
Chris Lattnerb245dfb2010-03-10 01:17:49 +00002944
2945
Chris Lattner566cae92010-03-09 23:52:58 +00002946 Asm->OutStreamer.AddComment("FDE address range");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002947 Asm->EmitLabelDifference(Asm->GetTempSymbol("func_end",DebugFrameInfo.Number),
Chris Lattner3a383cb2010-04-05 00:13:49 +00002948 FuncBeginSym, Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00002949
Chris Lattneraabc6042010-04-04 23:41:46 +00002950 Asm->EmitFrameMoves(DebugFrameInfo.Moves, FuncBeginSym, false);
Bill Wendling480ff322009-05-20 23:21:38 +00002951
2952 Asm->EmitAlignment(2, 0, 0, false);
Chris Lattner2c3f4782010-03-13 07:26:18 +00002953 Asm->OutStreamer.EmitLabel(DebugFrameEnd);
Bill Wendling480ff322009-05-20 23:21:38 +00002954}
2955
Devang Patel9ccfb642009-12-09 18:24:21 +00002956/// emitDebugPubNames - Emit visible names into a debug pubnames section.
2957///
2958void DwarfDebug::emitDebugPubNames() {
2959 // Start the dwarf pubnames section.
2960 Asm->OutStreamer.SwitchSection(
2961 Asm->getObjFileLowering().getDwarfPubNamesSection());
2962
Chris Lattner566cae92010-03-09 23:52:58 +00002963 Asm->OutStreamer.AddComment("Length of Public Names Info");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002964 Asm->EmitLabelDifference(
2965 Asm->GetTempSymbol("pubnames_end", ModuleCU->getID()),
2966 Asm->GetTempSymbol("pubnames_begin", ModuleCU->getID()), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002967
Chris Lattnera179b522010-04-04 19:25:43 +00002968 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin",
2969 ModuleCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00002970
Chris Lattner566cae92010-03-09 23:52:58 +00002971 Asm->OutStreamer.AddComment("DWARF Version");
2972 Asm->EmitInt16(dwarf::DWARF_VERSION);
Bill Wendling480ff322009-05-20 23:21:38 +00002973
Chris Lattner566cae92010-03-09 23:52:58 +00002974 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Chris Lattner70a4fce2010-04-04 23:25:33 +00002975 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", ModuleCU->getID()),
2976 DwarfInfoSectionSym);
Bill Wendling480ff322009-05-20 23:21:38 +00002977
Chris Lattner566cae92010-03-09 23:52:58 +00002978 Asm->OutStreamer.AddComment("Compilation Unit Length");
Chris Lattnerf1429f12010-04-04 19:58:12 +00002979 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", ModuleCU->getID()),
2980 Asm->GetTempSymbol("info_begin", ModuleCU->getID()),
2981 4);
Bill Wendling480ff322009-05-20 23:21:38 +00002982
Devang Patel9ccfb642009-12-09 18:24:21 +00002983 const StringMap<DIE*> &Globals = ModuleCU->getGlobals();
Bill Wendling480ff322009-05-20 23:21:38 +00002984 for (StringMap<DIE*>::const_iterator
2985 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2986 const char *Name = GI->getKeyData();
Chris Lattner566cae92010-03-09 23:52:58 +00002987 DIE *Entity = GI->second;
Bill Wendling480ff322009-05-20 23:21:38 +00002988
Chris Lattner566cae92010-03-09 23:52:58 +00002989 Asm->OutStreamer.AddComment("DIE offset");
2990 Asm->EmitInt32(Entity->getOffset());
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002991
Chris Lattner7bde8c02010-04-04 18:52:31 +00002992 if (Asm->isVerbose())
Chris Lattnerc3f23b82010-01-23 03:11:46 +00002993 Asm->OutStreamer.AddComment("External Name");
2994 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
Bill Wendling480ff322009-05-20 23:21:38 +00002995 }
2996
Chris Lattner566cae92010-03-09 23:52:58 +00002997 Asm->OutStreamer.AddComment("End Mark");
2998 Asm->EmitInt32(0);
Chris Lattnera179b522010-04-04 19:25:43 +00002999 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end",
3000 ModuleCU->getID()));
Bill Wendling480ff322009-05-20 23:21:38 +00003001}
3002
Devang Patel04d2f2d2009-11-24 01:14:22 +00003003void DwarfDebug::emitDebugPubTypes() {
Devang Patelc8654eb2009-11-24 19:18:41 +00003004 // Start the dwarf pubnames section.
3005 Asm->OutStreamer.SwitchSection(
3006 Asm->getObjFileLowering().getDwarfPubTypesSection());
Chris Lattner566cae92010-03-09 23:52:58 +00003007 Asm->OutStreamer.AddComment("Length of Public Types Info");
Chris Lattnerf1429f12010-04-04 19:58:12 +00003008 Asm->EmitLabelDifference(
3009 Asm->GetTempSymbol("pubtypes_end", ModuleCU->getID()),
3010 Asm->GetTempSymbol("pubtypes_begin", ModuleCU->getID()), 4);
Devang Patel04d2f2d2009-11-24 01:14:22 +00003011
Chris Lattnera179b522010-04-04 19:25:43 +00003012 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin",
3013 ModuleCU->getID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00003014
Chris Lattner7bde8c02010-04-04 18:52:31 +00003015 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version");
Devang Patel057c6422010-02-02 03:47:27 +00003016 Asm->EmitInt16(dwarf::DWARF_VERSION);
Devang Patel04d2f2d2009-11-24 01:14:22 +00003017
Chris Lattner566cae92010-03-09 23:52:58 +00003018 Asm->OutStreamer.AddComment("Offset of Compilation ModuleCU Info");
Chris Lattner70a4fce2010-04-04 23:25:33 +00003019 Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", ModuleCU->getID()),
3020 DwarfInfoSectionSym);
Devang Patel04d2f2d2009-11-24 01:14:22 +00003021
Chris Lattner566cae92010-03-09 23:52:58 +00003022 Asm->OutStreamer.AddComment("Compilation ModuleCU Length");
Chris Lattnerf1429f12010-04-04 19:58:12 +00003023 Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", ModuleCU->getID()),
3024 Asm->GetTempSymbol("info_begin", ModuleCU->getID()),
3025 4);
Devang Patel04d2f2d2009-11-24 01:14:22 +00003026
3027 const StringMap<DIE*> &Globals = ModuleCU->getGlobalTypes();
3028 for (StringMap<DIE*>::const_iterator
3029 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
3030 const char *Name = GI->getKeyData();
3031 DIE * Entity = GI->second;
3032
Chris Lattner7bde8c02010-04-04 18:52:31 +00003033 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Devang Patel057c6422010-02-02 03:47:27 +00003034 Asm->EmitInt32(Entity->getOffset());
Chris Lattnerc3f23b82010-01-23 03:11:46 +00003035
Chris Lattner7bde8c02010-04-04 18:52:31 +00003036 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name");
Devang Patel6d404ad2010-02-02 03:37:03 +00003037 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
Devang Patel04d2f2d2009-11-24 01:14:22 +00003038 }
3039
Chris Lattner566cae92010-03-09 23:52:58 +00003040 Asm->OutStreamer.AddComment("End Mark");
3041 Asm->EmitInt32(0);
Chris Lattnera179b522010-04-04 19:25:43 +00003042 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end",
3043 ModuleCU->getID()));
Devang Patel04d2f2d2009-11-24 01:14:22 +00003044}
3045
Devang Patel930143b2009-11-21 02:48:08 +00003046/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling480ff322009-05-20 23:21:38 +00003047///
Devang Patel930143b2009-11-21 02:48:08 +00003048void DwarfDebug::emitDebugStr() {
Bill Wendling480ff322009-05-20 23:21:38 +00003049 // Check to see if it is worth the effort.
Chris Lattner3d72a672010-03-09 23:38:23 +00003050 if (StringPool.empty()) return;
3051
3052 // Start the dwarf str section.
3053 Asm->OutStreamer.SwitchSection(
Chris Lattner4b7dadb2009-08-19 05:49:37 +00003054 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling480ff322009-05-20 23:21:38 +00003055
Chris Lattnerb7aa9522010-03-13 02:17:42 +00003056 // Get all of the string pool entries and put them in an array by their ID so
3057 // we can sort them.
3058 SmallVector<std::pair<unsigned,
3059 StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries;
3060
3061 for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator
3062 I = StringPool.begin(), E = StringPool.end(); I != E; ++I)
3063 Entries.push_back(std::make_pair(I->second.second, &*I));
3064
3065 array_pod_sort(Entries.begin(), Entries.end());
3066
3067 for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
Chris Lattner3d72a672010-03-09 23:38:23 +00003068 // Emit a label for reference from debug information entries.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00003069 Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first);
Chris Lattner3d72a672010-03-09 23:38:23 +00003070
3071 // Emit the string itself.
Chris Lattnerb7aa9522010-03-13 02:17:42 +00003072 Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/);
Bill Wendling480ff322009-05-20 23:21:38 +00003073 }
3074}
3075
Devang Patel930143b2009-11-21 02:48:08 +00003076/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling480ff322009-05-20 23:21:38 +00003077///
Devang Patel930143b2009-11-21 02:48:08 +00003078void DwarfDebug::emitDebugLoc() {
Bill Wendling480ff322009-05-20 23:21:38 +00003079 // Start the dwarf loc section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00003080 Asm->OutStreamer.SwitchSection(
3081 Asm->getObjFileLowering().getDwarfLocSection());
Bill Wendling480ff322009-05-20 23:21:38 +00003082}
3083
3084/// EmitDebugARanges - Emit visible names into a debug aranges section.
3085///
3086void DwarfDebug::EmitDebugARanges() {
3087 // Start the dwarf aranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00003088 Asm->OutStreamer.SwitchSection(
3089 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00003090}
3091
Devang Patel930143b2009-11-21 02:48:08 +00003092/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling480ff322009-05-20 23:21:38 +00003093///
Devang Patel930143b2009-11-21 02:48:08 +00003094void DwarfDebug::emitDebugRanges() {
Bill Wendling480ff322009-05-20 23:21:38 +00003095 // Start the dwarf ranges section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00003096 Asm->OutStreamer.SwitchSection(
3097 Asm->getObjFileLowering().getDwarfRangesSection());
Bill Wendling480ff322009-05-20 23:21:38 +00003098}
3099
Devang Patel930143b2009-11-21 02:48:08 +00003100/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling480ff322009-05-20 23:21:38 +00003101///
Devang Patel930143b2009-11-21 02:48:08 +00003102void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarc418d6b2009-09-19 20:40:05 +00003103 if (const MCSection *LineInfo =
Chris Lattner1472cf52009-08-02 07:24:22 +00003104 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling480ff322009-05-20 23:21:38 +00003105 // Start the dwarf macinfo section.
Chris Lattner4b7dadb2009-08-19 05:49:37 +00003106 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling480ff322009-05-20 23:21:38 +00003107 }
3108}
3109
Devang Patel930143b2009-11-21 02:48:08 +00003110/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling480ff322009-05-20 23:21:38 +00003111/// Section Header:
3112/// 1. length of section
3113/// 2. Dwarf version number
3114/// 3. address size.
3115///
3116/// Entries (one "entry" for each function that was inlined):
3117///
3118/// 1. offset into __debug_str section for MIPS linkage name, if exists;
3119/// otherwise offset into __debug_str for regular function name.
3120/// 2. offset into __debug_str section for regular function name.
3121/// 3. an unsigned LEB128 number indicating the number of distinct inlining
3122/// instances for the function.
3123///
3124/// The rest of the entry consists of a {die_offset, low_pc} pair for each
3125/// inlined instance; the die_offset points to the inlined_subroutine die in the
3126/// __debug_info section, and the low_pc is the starting address for the
3127/// inlining instance.
Devang Patel930143b2009-11-21 02:48:08 +00003128void DwarfDebug::emitDebugInlineInfo() {
Chris Lattner3a383cb2010-04-05 00:13:49 +00003129 if (!Asm->MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling480ff322009-05-20 23:21:38 +00003130 return;
3131
Devang Patel40d78412009-06-29 20:45:18 +00003132 if (!ModuleCU)
Bill Wendling480ff322009-05-20 23:21:38 +00003133 return;
3134
Chris Lattner4b7dadb2009-08-19 05:49:37 +00003135 Asm->OutStreamer.SwitchSection(
3136 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattnerf5c834f2010-01-22 22:09:00 +00003137
Chris Lattner566cae92010-03-09 23:52:58 +00003138 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnerf1429f12010-04-04 19:58:12 +00003139 Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1),
3140 Asm->GetTempSymbol("debug_inlined_begin", 1), 4);
Bill Wendling480ff322009-05-20 23:21:38 +00003141
Chris Lattnera179b522010-04-04 19:25:43 +00003142 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00003143
Chris Lattner566cae92010-03-09 23:52:58 +00003144 Asm->OutStreamer.AddComment("Dwarf Version");
3145 Asm->EmitInt16(dwarf::DWARF_VERSION);
3146 Asm->OutStreamer.AddComment("Address Size (in bytes)");
Chris Lattner3a383cb2010-04-05 00:13:49 +00003147 Asm->EmitInt8(Asm->getTargetData().getPointerSize());
Bill Wendling480ff322009-05-20 23:21:38 +00003148
Devang Patelf6eeaeb2009-11-10 23:06:00 +00003149 for (SmallVector<MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
3150 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach042483e2009-11-21 23:12:12 +00003151
Devang Patelf6eeaeb2009-11-10 23:06:00 +00003152 MDNode *Node = *I;
Devang Patel018b29b2010-01-19 06:19:05 +00003153 DenseMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach00e9c612009-11-22 19:20:36 +00003154 = InlineInfo.find(Node);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00003155 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patel80ae3492009-08-28 23:24:31 +00003156 DISubprogram SP(Node);
Devang Patel2d9caf92009-11-25 17:36:49 +00003157 StringRef LName = SP.getLinkageName();
3158 StringRef Name = SP.getName();
Bill Wendling480ff322009-05-20 23:21:38 +00003159
Chris Lattner566cae92010-03-09 23:52:58 +00003160 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattnerc3f23b82010-01-23 03:11:46 +00003161 if (LName.empty()) {
3162 Asm->OutStreamer.EmitBytes(Name, 0);
3163 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
3164 } else
Chris Lattner70a4fce2010-04-04 23:25:33 +00003165 Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)),
3166 DwarfStrSectionSym);
Devang Patelf6eeaeb2009-11-10 23:06:00 +00003167
Chris Lattner566cae92010-03-09 23:52:58 +00003168 Asm->OutStreamer.AddComment("Function name");
Chris Lattner70a4fce2010-04-04 23:25:33 +00003169 Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym);
Chris Lattner9efd1182010-04-04 19:09:29 +00003170 Asm->EmitULEB128(Labels.size(), "Inline count");
Bill Wendling480ff322009-05-20 23:21:38 +00003171
Devang Patelf6eeaeb2009-11-10 23:06:00 +00003172 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling480ff322009-05-20 23:21:38 +00003173 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner7bde8c02010-04-04 18:52:31 +00003174 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset");
Chris Lattner085b6522010-03-09 00:31:02 +00003175 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling480ff322009-05-20 23:21:38 +00003176
Chris Lattner7bde8c02010-04-04 18:52:31 +00003177 if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner3a383cb2010-04-05 00:13:49 +00003178 Asm->OutStreamer.EmitSymbolValue(LI->first,
3179 Asm->getTargetData().getPointerSize(),0);
Bill Wendling480ff322009-05-20 23:21:38 +00003180 }
3181 }
3182
Chris Lattnera179b522010-04-04 19:25:43 +00003183 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1));
Bill Wendling480ff322009-05-20 23:21:38 +00003184}