blob: 911982e628a216b4902f9c18f4d7af2ff10b4e00 [file] [log] [blame]
Bill Wendling0310d762009-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 Lattner6cde3e62010-03-09 00:39:24 +000013
Devang Patele4b27562009-08-28 23:24:31 +000014#define DEBUG_TYPE "dwarfdebug"
Bill Wendling0310d762009-05-15 09:23:25 +000015#include "DwarfDebug.h"
16#include "llvm/Module.h"
David Greeneb2c66fc2009-08-19 21:52:55 +000017#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling0310d762009-05-15 09:23:25 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000019#include "llvm/MC/MCAsmInfo.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000020#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000021#include "llvm/MC/MCStreamer.h"
Chris Lattnerb7db7332010-03-09 01:58:53 +000022#include "llvm/MC/MCSymbol.h"
Chris Lattner45111d12010-01-16 21:57:06 +000023#include "llvm/Target/Mangler.h"
Bill Wendling0310d762009-05-15 09:23:25 +000024#include "llvm/Target/TargetData.h"
25#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000026#include "llvm/Target/TargetLoweringObjectFile.h"
27#include "llvm/Target/TargetRegisterInfo.h"
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +000028#include "llvm/ADT/STLExtras.h"
Chris Lattner23132b12009-08-24 03:52:50 +000029#include "llvm/ADT/StringExtras.h"
Daniel Dunbar6e4bdfc2009-10-13 06:47:08 +000030#include "llvm/Support/Debug.h"
31#include "llvm/Support/ErrorHandling.h"
Devang Patel3139fcf2010-01-26 21:39:14 +000032#include "llvm/Support/ValueHandle.h"
Chris Lattner0ad9c912010-01-22 22:09:00 +000033#include "llvm/Support/FormattedStream.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000034#include "llvm/Support/Timer.h"
35#include "llvm/System/Path.h"
Bill Wendling0310d762009-05-15 09:23:25 +000036using namespace llvm;
37
Bill Wendling0310d762009-05-15 09:23:25 +000038//===----------------------------------------------------------------------===//
39
40/// Configuration values for initial hash set sizes (log2).
41///
Bill Wendling0310d762009-05-15 09:23:25 +000042static const unsigned InitAbbreviationsSetSize = 9; // log2(512)
Bill Wendling0310d762009-05-15 09:23:25 +000043
44namespace llvm {
45
46//===----------------------------------------------------------------------===//
47/// CompileUnit - This dwarf writer support class manages information associate
48/// with a source file.
Nick Lewycky5f9843f2009-11-17 08:11:44 +000049class CompileUnit {
Bill Wendling0310d762009-05-15 09:23:25 +000050 /// ID - File identifier for source.
51 ///
52 unsigned ID;
53
54 /// Die - Compile unit debug information entry.
55 ///
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +000056 const OwningPtr<DIE> CUDie;
Bill Wendling0310d762009-05-15 09:23:25 +000057
Jeffrey Yasskind0f393d2010-03-11 18:29:55 +000058 /// IndexTyDie - An anonymous type for index type. Owned by CUDie.
Devang Patel6f01d9c2009-11-21 00:31:03 +000059 DIE *IndexTyDie;
60
Bill Wendling0310d762009-05-15 09:23:25 +000061 /// GVToDieMap - Tracks the mapping of unit level debug informaton
62 /// variables to debug information entries.
Devang Patele4b27562009-08-28 23:24:31 +000063 /// FIXME : Rename GVToDieMap -> NodeToDieMap
Devang Patel622b0262010-01-19 06:19:05 +000064 DenseMap<MDNode *, DIE *> GVToDieMap;
Bill Wendling0310d762009-05-15 09:23:25 +000065
66 /// GVToDIEEntryMap - Tracks the mapping of unit level debug informaton
67 /// descriptors to debug information entries using a DIEEntry proxy.
Devang Patele4b27562009-08-28 23:24:31 +000068 /// FIXME : Rename
Devang Patel622b0262010-01-19 06:19:05 +000069 DenseMap<MDNode *, DIEEntry *> GVToDIEEntryMap;
Bill Wendling0310d762009-05-15 09:23:25 +000070
71 /// Globals - A map of globally visible named entities for this unit.
72 ///
73 StringMap<DIE*> Globals;
74
Devang Patel193f7202009-11-24 01:14:22 +000075 /// GlobalTypes - A map of globally visible types for this unit.
76 ///
77 StringMap<DIE*> GlobalTypes;
78
Bill Wendling0310d762009-05-15 09:23:25 +000079public:
80 CompileUnit(unsigned I, DIE *D)
Devang Patel2c4ceb12009-11-21 02:48:08 +000081 : ID(I), CUDie(D), IndexTyDie(0) {}
Bill Wendling0310d762009-05-15 09:23:25 +000082
83 // Accessors.
Devang Patel193f7202009-11-24 01:14:22 +000084 unsigned getID() const { return ID; }
Jeffrey Yasskind0f393d2010-03-11 18:29:55 +000085 DIE* getCUDie() const { return CUDie.get(); }
Devang Patel193f7202009-11-24 01:14:22 +000086 const StringMap<DIE*> &getGlobals() const { return Globals; }
87 const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; }
Bill Wendling0310d762009-05-15 09:23:25 +000088
89 /// hasContent - Return true if this compile unit has something to write out.
90 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +000091 bool hasContent() const { return !CUDie->getChildren().empty(); }
Bill Wendling0310d762009-05-15 09:23:25 +000092
Devang Patel2c4ceb12009-11-21 02:48:08 +000093 /// addGlobal - Add a new global entity to the compile unit.
Bill Wendling0310d762009-05-15 09:23:25 +000094 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +000095 void addGlobal(const std::string &Name, DIE *Die) { Globals[Name] = Die; }
Bill Wendling0310d762009-05-15 09:23:25 +000096
Devang Patel193f7202009-11-24 01:14:22 +000097 /// addGlobalType - Add a new global type to the compile unit.
98 ///
99 void addGlobalType(const std::string &Name, DIE *Die) {
100 GlobalTypes[Name] = Die;
101 }
102
Devang Patel017d1212009-11-20 21:37:22 +0000103 /// getDIE - Returns the debug information entry map slot for the
Bill Wendling0310d762009-05-15 09:23:25 +0000104 /// specified debug variable.
Devang Patel017d1212009-11-20 21:37:22 +0000105 DIE *getDIE(MDNode *N) { return GVToDieMap.lookup(N); }
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000106
Devang Patel017d1212009-11-20 21:37:22 +0000107 /// insertDIE - Insert DIE into the map.
108 void insertDIE(MDNode *N, DIE *D) {
109 GVToDieMap.insert(std::make_pair(N, D));
110 }
Bill Wendling0310d762009-05-15 09:23:25 +0000111
Devang Patel017d1212009-11-20 21:37:22 +0000112 /// getDIEEntry - Returns the debug information entry for the speciefied
113 /// debug variable.
Devang Patel6404e4e2009-12-15 19:16:48 +0000114 DIEEntry *getDIEEntry(MDNode *N) {
Devang Patel622b0262010-01-19 06:19:05 +0000115 DenseMap<MDNode *, DIEEntry *>::iterator I = GVToDIEEntryMap.find(N);
Devang Patel6404e4e2009-12-15 19:16:48 +0000116 if (I == GVToDIEEntryMap.end())
117 return NULL;
118 return I->second;
119 }
Devang Patel017d1212009-11-20 21:37:22 +0000120
121 /// insertDIEEntry - Insert debug information entry into the map.
122 void insertDIEEntry(MDNode *N, DIEEntry *E) {
123 GVToDIEEntryMap.insert(std::make_pair(N, E));
Bill Wendling0310d762009-05-15 09:23:25 +0000124 }
125
Devang Patel2c4ceb12009-11-21 02:48:08 +0000126 /// addDie - Adds or interns the DIE to the compile unit.
Bill Wendling0310d762009-05-15 09:23:25 +0000127 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000128 void addDie(DIE *Buffer) {
129 this->CUDie->addChild(Buffer);
Bill Wendling0310d762009-05-15 09:23:25 +0000130 }
Devang Patel6f01d9c2009-11-21 00:31:03 +0000131
132 // getIndexTyDie - Get an anonymous type for index type.
133 DIE *getIndexTyDie() {
134 return IndexTyDie;
135 }
136
Jim Grosbach7ab38df2009-11-22 19:20:36 +0000137 // setIndexTyDie - Set D as anonymous type for index which can be reused
138 // later.
Devang Patel6f01d9c2009-11-21 00:31:03 +0000139 void setIndexTyDie(DIE *D) {
140 IndexTyDie = D;
141 }
142
Bill Wendling0310d762009-05-15 09:23:25 +0000143};
144
145//===----------------------------------------------------------------------===//
146/// DbgVariable - This class is used to track local variable information.
147///
Devang Patelf76a3d62009-11-16 21:53:40 +0000148class DbgVariable {
Bill Wendling0310d762009-05-15 09:23:25 +0000149 DIVariable Var; // Variable Descriptor.
150 unsigned FrameIndex; // Variable frame index.
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000151 DbgVariable *const AbstractVar; // Abstract variable for this variable.
Devang Patel53bb5c92009-11-10 23:06:00 +0000152 DIE *TheDIE;
Bill Wendling0310d762009-05-15 09:23:25 +0000153public:
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000154 // AbsVar may be NULL.
155 DbgVariable(DIVariable V, unsigned I, DbgVariable *AbsVar)
156 : Var(V), FrameIndex(I), AbstractVar(AbsVar), TheDIE(0) {}
Bill Wendling0310d762009-05-15 09:23:25 +0000157
158 // Accessors.
Devang Patel53bb5c92009-11-10 23:06:00 +0000159 DIVariable getVariable() const { return Var; }
160 unsigned getFrameIndex() const { return FrameIndex; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000161 DbgVariable *getAbstractVariable() const { return AbstractVar; }
162 void setDIE(DIE *D) { TheDIE = D; }
163 DIE *getDIE() const { return TheDIE; }
Bill Wendling0310d762009-05-15 09:23:25 +0000164};
165
166//===----------------------------------------------------------------------===//
167/// DbgScope - This class is used to track scope information.
168///
Devang Patelf76a3d62009-11-16 21:53:40 +0000169class DbgScope {
Bill Wendling0310d762009-05-15 09:23:25 +0000170 DbgScope *Parent; // Parent to this scope.
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000171 DIDescriptor Desc; // Debug info descriptor for scope.
Devang Patel3139fcf2010-01-26 21:39:14 +0000172 // Location at which this scope is inlined.
173 AssertingVH<MDNode> InlinedAtLocation;
Devang Patel53bb5c92009-11-10 23:06:00 +0000174 bool AbstractScope; // Abstract Scope
Chris Lattnerb7db7332010-03-09 01:58:53 +0000175 MCSymbol *StartLabel; // Label ID of the beginning of scope.
176 MCSymbol *EndLabel; // Label ID of the end of scope.
Devang Pateld38dd112009-10-01 18:25:23 +0000177 const MachineInstr *LastInsn; // Last instruction of this scope.
178 const MachineInstr *FirstInsn; // First instruction of this scope.
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000179 // Scopes defined in scope. Contents not owned.
180 SmallVector<DbgScope *, 4> Scopes;
181 // Variables declared in scope. Contents owned.
182 SmallVector<DbgVariable *, 8> Variables;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000183
Owen Anderson04c05f72009-06-24 22:53:20 +0000184 // Private state for dump()
185 mutable unsigned IndentLevel;
Bill Wendling0310d762009-05-15 09:23:25 +0000186public:
Devang Patelc90aefe2009-10-14 21:08:09 +0000187 DbgScope(DbgScope *P, DIDescriptor D, MDNode *I = 0)
Devang Patel53bb5c92009-11-10 23:06:00 +0000188 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(false),
Chris Lattnerb7db7332010-03-09 01:58:53 +0000189 StartLabel(0), EndLabel(0),
Devang Patelc90aefe2009-10-14 21:08:09 +0000190 LastInsn(0), FirstInsn(0), IndentLevel(0) {}
Bill Wendling0310d762009-05-15 09:23:25 +0000191 virtual ~DbgScope();
192
193 // Accessors.
194 DbgScope *getParent() const { return Parent; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000195 void setParent(DbgScope *P) { Parent = P; }
Bill Wendling0310d762009-05-15 09:23:25 +0000196 DIDescriptor getDesc() const { return Desc; }
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000197 MDNode *getInlinedAt() const {
Devang Patel3139fcf2010-01-26 21:39:14 +0000198 return InlinedAtLocation;
Devang Patelc90aefe2009-10-14 21:08:09 +0000199 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000200 MDNode *getScopeNode() const { return Desc.getNode(); }
Chris Lattnerb7db7332010-03-09 01:58:53 +0000201 MCSymbol *getStartLabel() const { return StartLabel; }
202 MCSymbol *getEndLabel() const { return EndLabel; }
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000203 const SmallVector<DbgScope *, 4> &getScopes() { return Scopes; }
204 const SmallVector<DbgVariable *, 8> &getVariables() { return Variables; }
Chris Lattnerb7db7332010-03-09 01:58:53 +0000205 void setStartLabel(MCSymbol *S) { StartLabel = S; }
206 void setEndLabel(MCSymbol *E) { EndLabel = E; }
Devang Pateld38dd112009-10-01 18:25:23 +0000207 void setLastInsn(const MachineInstr *MI) { LastInsn = MI; }
208 const MachineInstr *getLastInsn() { return LastInsn; }
209 void setFirstInsn(const MachineInstr *MI) { FirstInsn = MI; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000210 void setAbstractScope() { AbstractScope = true; }
211 bool isAbstractScope() const { return AbstractScope; }
Devang Pateld38dd112009-10-01 18:25:23 +0000212 const MachineInstr *getFirstInsn() { return FirstInsn; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000213
Devang Patel2c4ceb12009-11-21 02:48:08 +0000214 /// addScope - Add a scope to the scope.
Bill Wendling0310d762009-05-15 09:23:25 +0000215 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000216 void addScope(DbgScope *S) { Scopes.push_back(S); }
Bill Wendling0310d762009-05-15 09:23:25 +0000217
Devang Patel2c4ceb12009-11-21 02:48:08 +0000218 /// addVariable - Add a variable to the scope.
Bill Wendling0310d762009-05-15 09:23:25 +0000219 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000220 void addVariable(DbgVariable *V) { Variables.push_back(V); }
Bill Wendling0310d762009-05-15 09:23:25 +0000221
Devang Patel344130e2010-01-04 20:44:00 +0000222 void fixInstructionMarkers(DenseMap<const MachineInstr *,
223 unsigned> &MIIndexMap) {
Devang Patelaf9e8472009-10-01 20:31:14 +0000224 assert (getFirstInsn() && "First instruction is missing!");
Devang Patel344130e2010-01-04 20:44:00 +0000225
226 // Use the end of last child scope as end of this scope.
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000227 const SmallVector<DbgScope *, 4> &Scopes = getScopes();
Devang Patelee890ed2010-01-05 16:59:17 +0000228 const MachineInstr *LastInsn = getFirstInsn();
Devang Patel344130e2010-01-04 20:44:00 +0000229 unsigned LIndex = 0;
230 if (Scopes.empty()) {
231 assert (getLastInsn() && "Inner most scope does not have last insn!");
232 return;
233 }
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000234 for (SmallVector<DbgScope *, 4>::const_iterator SI = Scopes.begin(),
Devang Patel344130e2010-01-04 20:44:00 +0000235 SE = Scopes.end(); SI != SE; ++SI) {
236 DbgScope *DS = *SI;
237 DS->fixInstructionMarkers(MIIndexMap);
238 const MachineInstr *DSLastInsn = DS->getLastInsn();
239 unsigned DSI = MIIndexMap[DSLastInsn];
240 if (DSI > LIndex) {
241 LastInsn = DSLastInsn;
242 LIndex = DSI;
243 }
244 }
Devang Patel22fb4b22010-02-17 02:20:34 +0000245
246 unsigned CurrentLastInsnIndex = 0;
247 if (const MachineInstr *CL = getLastInsn())
248 CurrentLastInsnIndex = MIIndexMap[CL];
249 unsigned FIndex = MIIndexMap[getFirstInsn()];
250
251 // Set LastInsn as the last instruction for this scope only if
252 // it follows
253 // 1) this scope's first instruction and
254 // 2) current last instruction for this scope, if any.
255 if (LIndex >= CurrentLastInsnIndex && LIndex >= FIndex)
256 setLastInsn(LastInsn);
Devang Patelaf9e8472009-10-01 20:31:14 +0000257 }
258
Bill Wendling0310d762009-05-15 09:23:25 +0000259#ifndef NDEBUG
260 void dump() const;
261#endif
262};
263
264#ifndef NDEBUG
265void DbgScope::dump() const {
David Greenef83adbc2009-12-24 00:31:35 +0000266 raw_ostream &err = dbgs();
Chris Lattnerc281de12009-08-23 00:51:00 +0000267 err.indent(IndentLevel);
Devang Patel53bb5c92009-11-10 23:06:00 +0000268 MDNode *N = Desc.getNode();
269 N->dump();
Chris Lattnerb7db7332010-03-09 01:58:53 +0000270 err << " [" << StartLabel << ", " << EndLabel << "]\n";
Devang Patel53bb5c92009-11-10 23:06:00 +0000271 if (AbstractScope)
272 err << "Abstract Scope\n";
Bill Wendling0310d762009-05-15 09:23:25 +0000273
274 IndentLevel += 2;
Devang Patel53bb5c92009-11-10 23:06:00 +0000275 if (!Scopes.empty())
276 err << "Children ...\n";
Bill Wendling0310d762009-05-15 09:23:25 +0000277 for (unsigned i = 0, e = Scopes.size(); i != e; ++i)
278 if (Scopes[i] != this)
279 Scopes[i]->dump();
280
281 IndentLevel -= 2;
282}
283#endif
284
Bill Wendling0310d762009-05-15 09:23:25 +0000285DbgScope::~DbgScope() {
Bill Wendling0310d762009-05-15 09:23:25 +0000286 for (unsigned j = 0, M = Variables.size(); j < M; ++j)
287 delete Variables[j];
Bill Wendling0310d762009-05-15 09:23:25 +0000288}
289
290} // end llvm namespace
291
Chris Lattneraf76e592009-08-22 20:48:53 +0000292DwarfDebug::DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T)
Chris Lattnerc3421bb2010-03-09 00:00:15 +0000293 : DwarfPrinter(OS, A, T), ModuleCU(0),
Bill Wendling0310d762009-05-15 09:23:25 +0000294 AbbreviationsSet(InitAbbreviationsSetSize), Abbreviations(),
Devang Patel2c4ceb12009-11-21 02:48:08 +0000295 DIEValues(), StringPool(),
Bill Wendling0310d762009-05-15 09:23:25 +0000296 SectionSourceLines(), didInitial(false), shouldEmit(false),
Devang Patel53bb5c92009-11-10 23:06:00 +0000297 CurrentFnDbgScope(0), DebugTimer(0) {
Bill Wendling0310d762009-05-15 09:23:25 +0000298 if (TimePassesIsEnabled)
Chris Lattner0b86a6f2009-12-28 07:41:18 +0000299 DebugTimer = new Timer("Dwarf Debug Writer");
Bill Wendling0310d762009-05-15 09:23:25 +0000300}
301DwarfDebug::~DwarfDebug() {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000302 for (unsigned j = 0, M = DIEValues.size(); j < M; ++j)
303 delete DIEValues[j];
Bill Wendling0310d762009-05-15 09:23:25 +0000304
Bill Wendling0310d762009-05-15 09:23:25 +0000305 delete DebugTimer;
306}
307
Devang Patel2c4ceb12009-11-21 02:48:08 +0000308/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000309///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000310void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling0310d762009-05-15 09:23:25 +0000311 // Profile the node so that we can make it unique.
312 FoldingSetNodeID ID;
313 Abbrev.Profile(ID);
314
315 // Check the set for priors.
316 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
317
318 // If it's newly added.
319 if (InSet == &Abbrev) {
320 // Add to abbreviation list.
321 Abbreviations.push_back(&Abbrev);
322
323 // Assign the vector position + 1 as its number.
324 Abbrev.setNumber(Abbreviations.size());
325 } else {
326 // Assign existing abbreviation number.
327 Abbrev.setNumber(InSet->getNumber());
328 }
329}
330
Devang Patel2c4ceb12009-11-21 02:48:08 +0000331/// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
Bill Wendling995f80a2009-05-20 23:24:48 +0000332/// information entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000333DIEEntry *DwarfDebug::createDIEEntry(DIE *Entry) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000334 DIEEntry *Value = new DIEEntry(Entry);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000335 DIEValues.push_back(Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000336 return Value;
337}
338
Devang Patel2c4ceb12009-11-21 02:48:08 +0000339/// addUInt - Add an unsigned integer attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000340///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000341void DwarfDebug::addUInt(DIE *Die, unsigned Attribute,
Bill Wendling0310d762009-05-15 09:23:25 +0000342 unsigned Form, uint64_t Integer) {
343 if (!Form) Form = DIEInteger::BestForm(false, Integer);
Devang Patel6f01d9c2009-11-21 00:31:03 +0000344 DIEValue *Value = new DIEInteger(Integer);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000345 DIEValues.push_back(Value);
346 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000347}
348
Devang Patel2c4ceb12009-11-21 02:48:08 +0000349/// addSInt - Add an signed integer attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000350///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000351void DwarfDebug::addSInt(DIE *Die, unsigned Attribute,
Bill Wendling0310d762009-05-15 09:23:25 +0000352 unsigned Form, int64_t Integer) {
353 if (!Form) Form = DIEInteger::BestForm(true, Integer);
Devang Patel6f01d9c2009-11-21 00:31:03 +0000354 DIEValue *Value = new DIEInteger(Integer);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000355 DIEValues.push_back(Value);
356 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000357}
358
Devang Patel69f57b12009-12-02 15:25:16 +0000359/// addString - Add a string attribute data and value. DIEString only
360/// keeps string reference.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000361void DwarfDebug::addString(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattner4cf202b2010-01-23 03:11:46 +0000362 StringRef String) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000363 DIEValue *Value = new DIEString(String);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000364 DIEValues.push_back(Value);
365 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000366}
367
Devang Patel2c4ceb12009-11-21 02:48:08 +0000368/// addLabel - Add a Dwarf label attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000369///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000370void DwarfDebug::addLabel(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000371 const MCSymbol *Label) {
Chris Lattner4faf59a2010-03-08 22:31:46 +0000372 DIEValue *Value = new DIELabel(Label);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000373 DIEValues.push_back(Value);
374 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000375}
376
Devang Patel2c4ceb12009-11-21 02:48:08 +0000377/// addSectionOffset - Add a section offset label attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000378///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000379void DwarfDebug::addSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000380 const MCSymbol *Label,const MCSymbol *Section,
Chris Lattner57578762010-03-08 23:23:25 +0000381 bool isEH) {
382 DIEValue *Value = new DIESectionOffset(Label, Section, isEH);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000383 DIEValues.push_back(Value);
384 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000385}
386
Devang Patel2c4ceb12009-11-21 02:48:08 +0000387/// addDelta - Add a label delta attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000388///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000389void DwarfDebug::addDelta(DIE *Die, unsigned Attribute, unsigned Form,
Chris Lattnerb98b1bf2010-03-08 22:23:36 +0000390 const MCSymbol *Hi, const MCSymbol *Lo) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000391 DIEValue *Value = new DIEDelta(Hi, Lo);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000392 DIEValues.push_back(Value);
393 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000394}
395
Devang Patel2c4ceb12009-11-21 02:48:08 +0000396/// addBlock - Add block data.
Bill Wendling0310d762009-05-15 09:23:25 +0000397///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000398void DwarfDebug::addBlock(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling0310d762009-05-15 09:23:25 +0000399 DIEBlock *Block) {
400 Block->ComputeSize(TD);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000401 DIEValues.push_back(Block);
402 Die->addValue(Attribute, Block->BestForm(), Block);
Bill Wendling0310d762009-05-15 09:23:25 +0000403}
404
Devang Patel2c4ceb12009-11-21 02:48:08 +0000405/// addSourceLine - Add location information to specified debug information
Bill Wendling0310d762009-05-15 09:23:25 +0000406/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000407void DwarfDebug::addSourceLine(DIE *Die, const DIVariable *V) {
Bill Wendling0310d762009-05-15 09:23:25 +0000408 // If there is no compile unit specified, don't add a line #.
Devang Patel3c91b052010-03-08 20:52:55 +0000409 if (!V->getCompileUnit().Verify())
Bill Wendling0310d762009-05-15 09:23:25 +0000410 return;
411
412 unsigned Line = V->getLineNumber();
Devang Patel77bf2952010-03-08 22:02:50 +0000413 unsigned FileID = GetOrCreateSourceID(V->getContext().getDirectory(),
414 V->getContext().getFilename());
Bill Wendling0310d762009-05-15 09:23:25 +0000415 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000416 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
417 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling0310d762009-05-15 09:23:25 +0000418}
419
Devang Patel2c4ceb12009-11-21 02:48:08 +0000420/// addSourceLine - Add location information to specified debug information
Bill Wendling0310d762009-05-15 09:23:25 +0000421/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000422void DwarfDebug::addSourceLine(DIE *Die, const DIGlobal *G) {
Bill Wendling0310d762009-05-15 09:23:25 +0000423 // If there is no compile unit specified, don't add a line #.
Devang Patel3c91b052010-03-08 20:52:55 +0000424 if (!G->getCompileUnit().Verify())
Bill Wendling0310d762009-05-15 09:23:25 +0000425 return;
426
427 unsigned Line = G->getLineNumber();
Devang Patel77bf2952010-03-08 22:02:50 +0000428 unsigned FileID = GetOrCreateSourceID(G->getContext().getDirectory(),
429 G->getContext().getFilename());
Bill Wendling0310d762009-05-15 09:23:25 +0000430 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000431 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
432 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling0310d762009-05-15 09:23:25 +0000433}
Devang Patel82dfc0c2009-08-31 22:47:13 +0000434
Devang Patel2c4ceb12009-11-21 02:48:08 +0000435/// addSourceLine - Add location information to specified debug information
Devang Patel82dfc0c2009-08-31 22:47:13 +0000436/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000437void DwarfDebug::addSourceLine(DIE *Die, const DISubprogram *SP) {
Devang Patel82dfc0c2009-08-31 22:47:13 +0000438 // If there is no compile unit specified, don't add a line #.
Devang Patel3c91b052010-03-08 20:52:55 +0000439 if (!SP->getCompileUnit().Verify())
Devang Patel82dfc0c2009-08-31 22:47:13 +0000440 return;
Caroline Ticec6f9d622009-09-11 18:25:54 +0000441 // If the line number is 0, don't add it.
442 if (SP->getLineNumber() == 0)
443 return;
444
Devang Patel82dfc0c2009-08-31 22:47:13 +0000445 unsigned Line = SP->getLineNumber();
Devang Patel77bf2952010-03-08 22:02:50 +0000446 if (!SP->getContext().Verify())
447 return;
448 unsigned FileID = GetOrCreateSourceID(SP->getContext().getDirectory(),
449 SP->getContext().getFilename());
Devang Patel82dfc0c2009-08-31 22:47:13 +0000450 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000451 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
452 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Devang Patel82dfc0c2009-08-31 22:47:13 +0000453}
454
Devang Patel2c4ceb12009-11-21 02:48:08 +0000455/// addSourceLine - Add location information to specified debug information
Devang Patel82dfc0c2009-08-31 22:47:13 +0000456/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000457void DwarfDebug::addSourceLine(DIE *Die, const DIType *Ty) {
Bill Wendling0310d762009-05-15 09:23:25 +0000458 // If there is no compile unit specified, don't add a line #.
459 DICompileUnit CU = Ty->getCompileUnit();
Devang Patel3c91b052010-03-08 20:52:55 +0000460 if (!CU.Verify())
Bill Wendling0310d762009-05-15 09:23:25 +0000461 return;
462
463 unsigned Line = Ty->getLineNumber();
Devang Patel77bf2952010-03-08 22:02:50 +0000464 if (!Ty->getContext().Verify())
465 return;
466 unsigned FileID = GetOrCreateSourceID(Ty->getContext().getDirectory(),
467 Ty->getContext().getFilename());
Bill Wendling0310d762009-05-15 09:23:25 +0000468 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000469 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
470 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling0310d762009-05-15 09:23:25 +0000471}
472
Devang Patel6404e4e2009-12-15 19:16:48 +0000473/// addSourceLine - Add location information to specified debug information
474/// entry.
475void DwarfDebug::addSourceLine(DIE *Die, const DINameSpace *NS) {
476 // If there is no compile unit specified, don't add a line #.
Devang Patel3c91b052010-03-08 20:52:55 +0000477 if (!NS->getCompileUnit().Verify())
Devang Patel6404e4e2009-12-15 19:16:48 +0000478 return;
479
480 unsigned Line = NS->getLineNumber();
481 StringRef FN = NS->getFilename();
482 StringRef Dir = NS->getDirectory();
483
484 unsigned FileID = GetOrCreateSourceID(Dir, FN);
485 assert(FileID && "Invalid file id");
486 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
487 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
488}
489
Caroline Ticedc8f6042009-08-31 21:19:37 +0000490/* Byref variables, in Blocks, are declared by the programmer as
491 "SomeType VarName;", but the compiler creates a
492 __Block_byref_x_VarName struct, and gives the variable VarName
493 either the struct, or a pointer to the struct, as its type. This
494 is necessary for various behind-the-scenes things the compiler
495 needs to do with by-reference variables in blocks.
496
497 However, as far as the original *programmer* is concerned, the
498 variable should still have type 'SomeType', as originally declared.
499
500 The following function dives into the __Block_byref_x_VarName
501 struct to find the original type of the variable. This will be
502 passed back to the code generating the type for the Debug
503 Information Entry for the variable 'VarName'. 'VarName' will then
504 have the original type 'SomeType' in its debug information.
505
506 The original type 'SomeType' will be the type of the field named
507 'VarName' inside the __Block_byref_x_VarName struct.
508
509 NOTE: In order for this to not completely fail on the debugger
510 side, the Debug Information Entry for the variable VarName needs to
511 have a DW_AT_location that tells the debugger how to unwind through
512 the pointers and __Block_byref_x_VarName struct to find the actual
Devang Patel2c4ceb12009-11-21 02:48:08 +0000513 value of the variable. The function addBlockByrefType does this. */
Caroline Ticedc8f6042009-08-31 21:19:37 +0000514
515/// Find the type the programmer originally declared the variable to be
516/// and return that type.
517///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000518DIType DwarfDebug::getBlockByrefType(DIType Ty, std::string Name) {
Caroline Ticedc8f6042009-08-31 21:19:37 +0000519
520 DIType subType = Ty;
521 unsigned tag = Ty.getTag();
522
523 if (tag == dwarf::DW_TAG_pointer_type) {
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000524 DIDerivedType DTy = DIDerivedType(Ty.getNode());
Caroline Ticedc8f6042009-08-31 21:19:37 +0000525 subType = DTy.getTypeDerivedFrom();
526 }
527
528 DICompositeType blockStruct = DICompositeType(subType.getNode());
Caroline Ticedc8f6042009-08-31 21:19:37 +0000529 DIArray Elements = blockStruct.getTypeArray();
530
Caroline Ticedc8f6042009-08-31 21:19:37 +0000531 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
532 DIDescriptor Element = Elements.getElement(i);
533 DIDerivedType DT = DIDerivedType(Element.getNode());
Devang Patel65dbc902009-11-25 17:36:49 +0000534 if (Name == DT.getName())
Caroline Ticedc8f6042009-08-31 21:19:37 +0000535 return (DT.getTypeDerivedFrom());
536 }
537
538 return Ty;
539}
540
Devang Patel2c4ceb12009-11-21 02:48:08 +0000541/// addComplexAddress - Start with the address based on the location provided,
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000542/// and generate the DWARF information necessary to find the actual variable
543/// given the extra address information encoded in the DIVariable, starting from
544/// the starting location. Add the DWARF information to the die.
545///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000546void DwarfDebug::addComplexAddress(DbgVariable *&DV, DIE *Die,
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000547 unsigned Attribute,
548 const MachineLocation &Location) {
549 const DIVariable &VD = DV->getVariable();
550 DIType Ty = VD.getType();
551
552 // Decode the original location, and use that as the start of the byref
553 // variable's location.
554 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
555 DIEBlock *Block = new DIEBlock();
556
557 if (Location.isReg()) {
558 if (Reg < 32) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000559 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000560 } else {
561 Reg = Reg - dwarf::DW_OP_reg0;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000562 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
563 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000564 }
565 } else {
566 if (Reg < 32)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000567 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000568 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000569 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
570 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000571 }
572
Devang Patel2c4ceb12009-11-21 02:48:08 +0000573 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000574 }
575
576 for (unsigned i = 0, N = VD.getNumAddrElements(); i < N; ++i) {
577 uint64_t Element = VD.getAddrElement(i);
578
579 if (Element == DIFactory::OpPlus) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000580 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
581 addUInt(Block, 0, dwarf::DW_FORM_udata, VD.getAddrElement(++i));
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000582 } else if (Element == DIFactory::OpDeref) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000583 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000584 } else llvm_unreachable("unknown DIFactory Opcode");
585 }
586
587 // Now attach the location information to the DIE.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000588 addBlock(Die, Attribute, 0, Block);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000589}
590
Caroline Ticedc8f6042009-08-31 21:19:37 +0000591/* Byref variables, in Blocks, are declared by the programmer as "SomeType
592 VarName;", but the compiler creates a __Block_byref_x_VarName struct, and
593 gives the variable VarName either the struct, or a pointer to the struct, as
594 its type. This is necessary for various behind-the-scenes things the
595 compiler needs to do with by-reference variables in Blocks.
596
597 However, as far as the original *programmer* is concerned, the variable
598 should still have type 'SomeType', as originally declared.
599
Devang Patel2c4ceb12009-11-21 02:48:08 +0000600 The function getBlockByrefType dives into the __Block_byref_x_VarName
Caroline Ticedc8f6042009-08-31 21:19:37 +0000601 struct to find the original type of the variable, which is then assigned to
602 the variable's Debug Information Entry as its real type. So far, so good.
603 However now the debugger will expect the variable VarName to have the type
604 SomeType. So we need the location attribute for the variable to be an
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000605 expression that explains to the debugger how to navigate through the
Caroline Ticedc8f6042009-08-31 21:19:37 +0000606 pointers and struct to find the actual variable of type SomeType.
607
608 The following function does just that. We start by getting
609 the "normal" location for the variable. This will be the location
610 of either the struct __Block_byref_x_VarName or the pointer to the
611 struct __Block_byref_x_VarName.
612
613 The struct will look something like:
614
615 struct __Block_byref_x_VarName {
616 ... <various fields>
617 struct __Block_byref_x_VarName *forwarding;
618 ... <various other fields>
619 SomeType VarName;
620 ... <maybe more fields>
621 };
622
623 If we are given the struct directly (as our starting point) we
624 need to tell the debugger to:
625
626 1). Add the offset of the forwarding field.
627
Dan Gohmanf451cb82010-02-10 16:03:48 +0000628 2). Follow that pointer to get the real __Block_byref_x_VarName
Caroline Ticedc8f6042009-08-31 21:19:37 +0000629 struct to use (the real one may have been copied onto the heap).
630
631 3). Add the offset for the field VarName, to find the actual variable.
632
633 If we started with a pointer to the struct, then we need to
634 dereference that pointer first, before the other steps.
635 Translating this into DWARF ops, we will need to append the following
636 to the current location description for the variable:
637
638 DW_OP_deref -- optional, if we start with a pointer
639 DW_OP_plus_uconst <forward_fld_offset>
640 DW_OP_deref
641 DW_OP_plus_uconst <varName_fld_offset>
642
643 That is what this function does. */
644
Devang Patel2c4ceb12009-11-21 02:48:08 +0000645/// addBlockByrefAddress - Start with the address based on the location
Caroline Ticedc8f6042009-08-31 21:19:37 +0000646/// provided, and generate the DWARF information necessary to find the
647/// actual Block variable (navigating the Block struct) based on the
648/// starting location. Add the DWARF information to the die. For
649/// more information, read large comment just above here.
650///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000651void DwarfDebug::addBlockByrefAddress(DbgVariable *&DV, DIE *Die,
Daniel Dunbar00564992009-09-19 20:40:14 +0000652 unsigned Attribute,
653 const MachineLocation &Location) {
Caroline Ticedc8f6042009-08-31 21:19:37 +0000654 const DIVariable &VD = DV->getVariable();
655 DIType Ty = VD.getType();
656 DIType TmpTy = Ty;
657 unsigned Tag = Ty.getTag();
658 bool isPointer = false;
659
Devang Patel65dbc902009-11-25 17:36:49 +0000660 StringRef varName = VD.getName();
Caroline Ticedc8f6042009-08-31 21:19:37 +0000661
662 if (Tag == dwarf::DW_TAG_pointer_type) {
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000663 DIDerivedType DTy = DIDerivedType(Ty.getNode());
Caroline Ticedc8f6042009-08-31 21:19:37 +0000664 TmpTy = DTy.getTypeDerivedFrom();
665 isPointer = true;
666 }
667
668 DICompositeType blockStruct = DICompositeType(TmpTy.getNode());
669
Daniel Dunbar00564992009-09-19 20:40:14 +0000670 // Find the __forwarding field and the variable field in the __Block_byref
671 // struct.
Daniel Dunbar00564992009-09-19 20:40:14 +0000672 DIArray Fields = blockStruct.getTypeArray();
673 DIDescriptor varField = DIDescriptor();
674 DIDescriptor forwardingField = DIDescriptor();
Caroline Ticedc8f6042009-08-31 21:19:37 +0000675
Daniel Dunbar00564992009-09-19 20:40:14 +0000676 for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) {
677 DIDescriptor Element = Fields.getElement(i);
678 DIDerivedType DT = DIDerivedType(Element.getNode());
Devang Patel65dbc902009-11-25 17:36:49 +0000679 StringRef fieldName = DT.getName();
680 if (fieldName == "__forwarding")
Daniel Dunbar00564992009-09-19 20:40:14 +0000681 forwardingField = Element;
Devang Patel65dbc902009-11-25 17:36:49 +0000682 else if (fieldName == varName)
Daniel Dunbar00564992009-09-19 20:40:14 +0000683 varField = Element;
684 }
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000685
Daniel Dunbar00564992009-09-19 20:40:14 +0000686 // Get the offsets for the forwarding field and the variable field.
Daniel Dunbar00564992009-09-19 20:40:14 +0000687 unsigned int forwardingFieldOffset =
688 DIDerivedType(forwardingField.getNode()).getOffsetInBits() >> 3;
689 unsigned int varFieldOffset =
690 DIDerivedType(varField.getNode()).getOffsetInBits() >> 3;
Caroline Ticedc8f6042009-08-31 21:19:37 +0000691
Mike Stump7e3720d2009-09-24 23:21:26 +0000692 // Decode the original location, and use that as the start of the byref
693 // variable's location.
Daniel Dunbar00564992009-09-19 20:40:14 +0000694 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
695 DIEBlock *Block = new DIEBlock();
Caroline Ticedc8f6042009-08-31 21:19:37 +0000696
Daniel Dunbar00564992009-09-19 20:40:14 +0000697 if (Location.isReg()) {
698 if (Reg < 32)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000699 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000700 else {
701 Reg = Reg - dwarf::DW_OP_reg0;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000702 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
703 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000704 }
705 } else {
706 if (Reg < 32)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000707 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000708 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000709 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
710 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000711 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000712
Devang Patel2c4ceb12009-11-21 02:48:08 +0000713 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Daniel Dunbar00564992009-09-19 20:40:14 +0000714 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000715
Mike Stump7e3720d2009-09-24 23:21:26 +0000716 // If we started with a pointer to the __Block_byref... struct, then
Daniel Dunbar00564992009-09-19 20:40:14 +0000717 // the first thing we need to do is dereference the pointer (DW_OP_deref).
Daniel Dunbar00564992009-09-19 20:40:14 +0000718 if (isPointer)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000719 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Caroline Ticedc8f6042009-08-31 21:19:37 +0000720
Daniel Dunbar00564992009-09-19 20:40:14 +0000721 // Next add the offset for the '__forwarding' field:
722 // DW_OP_plus_uconst ForwardingFieldOffset. Note there's no point in
723 // adding the offset if it's 0.
Daniel Dunbar00564992009-09-19 20:40:14 +0000724 if (forwardingFieldOffset > 0) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000725 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
726 addUInt(Block, 0, dwarf::DW_FORM_udata, forwardingFieldOffset);
Daniel Dunbar00564992009-09-19 20:40:14 +0000727 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000728
Daniel Dunbar00564992009-09-19 20:40:14 +0000729 // Now dereference the __forwarding field to get to the real __Block_byref
730 // struct: DW_OP_deref.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000731 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Caroline Ticedc8f6042009-08-31 21:19:37 +0000732
Daniel Dunbar00564992009-09-19 20:40:14 +0000733 // Now that we've got the real __Block_byref... struct, add the offset
734 // for the variable's field to get to the location of the actual variable:
735 // DW_OP_plus_uconst varFieldOffset. Again, don't add if it's 0.
Daniel Dunbar00564992009-09-19 20:40:14 +0000736 if (varFieldOffset > 0) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000737 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
738 addUInt(Block, 0, dwarf::DW_FORM_udata, varFieldOffset);
Daniel Dunbar00564992009-09-19 20:40:14 +0000739 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000740
Daniel Dunbar00564992009-09-19 20:40:14 +0000741 // Now attach the location information to the DIE.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000742 addBlock(Die, Attribute, 0, Block);
Caroline Ticedc8f6042009-08-31 21:19:37 +0000743}
744
Devang Patel2c4ceb12009-11-21 02:48:08 +0000745/// addAddress - Add an address attribute to a die based on the location
Bill Wendling0310d762009-05-15 09:23:25 +0000746/// provided.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000747void DwarfDebug::addAddress(DIE *Die, unsigned Attribute,
Bill Wendling0310d762009-05-15 09:23:25 +0000748 const MachineLocation &Location) {
749 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
750 DIEBlock *Block = new DIEBlock();
751
752 if (Location.isReg()) {
753 if (Reg < 32) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000754 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000755 } else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000756 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx);
757 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000758 }
759 } else {
760 if (Reg < 32) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000761 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000762 } else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000763 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
764 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000765 }
766
Devang Patel2c4ceb12009-11-21 02:48:08 +0000767 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Bill Wendling0310d762009-05-15 09:23:25 +0000768 }
769
Devang Patel2c4ceb12009-11-21 02:48:08 +0000770 addBlock(Die, Attribute, 0, Block);
Bill Wendling0310d762009-05-15 09:23:25 +0000771}
772
Devang Patelc366f832009-12-10 19:14:49 +0000773/// addToContextOwner - Add Die into the list of its context owner's children.
774void DwarfDebug::addToContextOwner(DIE *Die, DIDescriptor Context) {
Devang Patel3c91b052010-03-08 20:52:55 +0000775 if (Context.isType()) {
Devang Patelc366f832009-12-10 19:14:49 +0000776 DIE *ContextDIE = getOrCreateTypeDIE(DIType(Context.getNode()));
777 ContextDIE->addChild(Die);
Devang Patel6404e4e2009-12-15 19:16:48 +0000778 } else if (Context.isNameSpace()) {
779 DIE *ContextDIE = getOrCreateNameSpace(DINameSpace(Context.getNode()));
780 ContextDIE->addChild(Die);
Devang Patelc366f832009-12-10 19:14:49 +0000781 } else if (DIE *ContextDIE = ModuleCU->getDIE(Context.getNode()))
782 ContextDIE->addChild(Die);
783 else
784 ModuleCU->addDie(Die);
785}
786
Devang Patel16ced732009-12-10 18:05:33 +0000787/// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
788/// given DIType.
789DIE *DwarfDebug::getOrCreateTypeDIE(DIType Ty) {
790 DIE *TyDIE = ModuleCU->getDIE(Ty.getNode());
791 if (TyDIE)
792 return TyDIE;
793
794 // Create new type.
795 TyDIE = new DIE(dwarf::DW_TAG_base_type);
796 ModuleCU->insertDIE(Ty.getNode(), TyDIE);
797 if (Ty.isBasicType())
798 constructTypeDIE(*TyDIE, DIBasicType(Ty.getNode()));
799 else if (Ty.isCompositeType())
800 constructTypeDIE(*TyDIE, DICompositeType(Ty.getNode()));
801 else {
802 assert(Ty.isDerivedType() && "Unknown kind of DIType");
803 constructTypeDIE(*TyDIE, DIDerivedType(Ty.getNode()));
804 }
805
Devang Patelc366f832009-12-10 19:14:49 +0000806 addToContextOwner(TyDIE, Ty.getContext());
Devang Patel16ced732009-12-10 18:05:33 +0000807 return TyDIE;
808}
809
Devang Patel2c4ceb12009-11-21 02:48:08 +0000810/// addType - Add a new type attribute to the specified entity.
Devang Patel8a241142009-12-09 18:24:21 +0000811void DwarfDebug::addType(DIE *Entity, DIType Ty) {
Devang Patel3c91b052010-03-08 20:52:55 +0000812 if (!Ty.isValid())
Bill Wendling0310d762009-05-15 09:23:25 +0000813 return;
814
815 // Check for pre-existence.
Devang Patel8a241142009-12-09 18:24:21 +0000816 DIEEntry *Entry = ModuleCU->getDIEEntry(Ty.getNode());
Bill Wendling0310d762009-05-15 09:23:25 +0000817 // If it exists then use the existing value.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000818 if (Entry) {
819 Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry);
Bill Wendling0310d762009-05-15 09:23:25 +0000820 return;
821 }
822
Bill Wendling0310d762009-05-15 09:23:25 +0000823 // Construct type.
Devang Patel16ced732009-12-10 18:05:33 +0000824 DIE *Buffer = getOrCreateTypeDIE(Ty);
Bill Wendling0310d762009-05-15 09:23:25 +0000825
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +0000826 // Set up proxy.
827 Entry = createDIEEntry(Buffer);
828 ModuleCU->insertDIEEntry(Ty.getNode(), Entry);
829
Devang Patel2c4ceb12009-11-21 02:48:08 +0000830 Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry);
Bill Wendling0310d762009-05-15 09:23:25 +0000831}
832
Devang Patel2c4ceb12009-11-21 02:48:08 +0000833/// constructTypeDIE - Construct basic type die from DIBasicType.
Devang Patel8a241142009-12-09 18:24:21 +0000834void DwarfDebug::constructTypeDIE(DIE &Buffer, DIBasicType BTy) {
Bill Wendling0310d762009-05-15 09:23:25 +0000835 // Get core information.
Devang Patel65dbc902009-11-25 17:36:49 +0000836 StringRef Name = BTy.getName();
Bill Wendling0310d762009-05-15 09:23:25 +0000837 Buffer.setTag(dwarf::DW_TAG_base_type);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000838 addUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Bill Wendling0310d762009-05-15 09:23:25 +0000839 BTy.getEncoding());
840
841 // Add name if not anonymous or intermediate type.
Devang Patel65dbc902009-11-25 17:36:49 +0000842 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000843 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000844 uint64_t Size = BTy.getSizeInBits() >> 3;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000845 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling0310d762009-05-15 09:23:25 +0000846}
847
Devang Patel2c4ceb12009-11-21 02:48:08 +0000848/// constructTypeDIE - Construct derived type die from DIDerivedType.
Devang Patel8a241142009-12-09 18:24:21 +0000849void DwarfDebug::constructTypeDIE(DIE &Buffer, DIDerivedType DTy) {
Bill Wendling0310d762009-05-15 09:23:25 +0000850 // Get core information.
Devang Patel65dbc902009-11-25 17:36:49 +0000851 StringRef Name = DTy.getName();
Bill Wendling0310d762009-05-15 09:23:25 +0000852 uint64_t Size = DTy.getSizeInBits() >> 3;
853 unsigned Tag = DTy.getTag();
854
855 // FIXME - Workaround for templates.
856 if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type;
857
858 Buffer.setTag(Tag);
859
860 // Map to main type, void will not have a type.
861 DIType FromTy = DTy.getTypeDerivedFrom();
Devang Patel8a241142009-12-09 18:24:21 +0000862 addType(&Buffer, FromTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000863
864 // Add name if not anonymous or intermediate type.
Devang Pateldeea5642009-11-30 23:56:56 +0000865 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000866 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000867
868 // Add size if non-zero (derived types might be zero-sized.)
869 if (Size)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000870 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling0310d762009-05-15 09:23:25 +0000871
872 // Add source line info if available and TyDesc is not a forward declaration.
Devang Patel05f6fa82009-11-23 18:43:37 +0000873 if (!DTy.isForwardDecl())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000874 addSourceLine(&Buffer, &DTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000875}
876
Devang Patel2c4ceb12009-11-21 02:48:08 +0000877/// constructTypeDIE - Construct type DIE from DICompositeType.
Devang Patel8a241142009-12-09 18:24:21 +0000878void DwarfDebug::constructTypeDIE(DIE &Buffer, DICompositeType CTy) {
Bill Wendling0310d762009-05-15 09:23:25 +0000879 // Get core information.
Devang Patel65dbc902009-11-25 17:36:49 +0000880 StringRef Name = CTy.getName();
Bill Wendling0310d762009-05-15 09:23:25 +0000881
882 uint64_t Size = CTy.getSizeInBits() >> 3;
883 unsigned Tag = CTy.getTag();
884 Buffer.setTag(Tag);
885
886 switch (Tag) {
887 case dwarf::DW_TAG_vector_type:
888 case dwarf::DW_TAG_array_type:
Devang Patel8a241142009-12-09 18:24:21 +0000889 constructArrayTypeDIE(Buffer, &CTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000890 break;
891 case dwarf::DW_TAG_enumeration_type: {
892 DIArray Elements = CTy.getTypeArray();
893
894 // Add enumerators to enumeration type.
895 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
896 DIE *ElemDie = NULL;
Devang Patel3c91b052010-03-08 20:52:55 +0000897 DIDescriptor Enum(Elements.getElement(i).getNode());
898 if (Enum.isEnumerator()) {
899 ElemDie = constructEnumTypeDIE(DIEnumerator(Enum.getNode()));
Devang Patel2c4ceb12009-11-21 02:48:08 +0000900 Buffer.addChild(ElemDie);
Devang Patelc5254722009-10-09 17:51:49 +0000901 }
Bill Wendling0310d762009-05-15 09:23:25 +0000902 }
903 }
904 break;
905 case dwarf::DW_TAG_subroutine_type: {
906 // Add return type.
907 DIArray Elements = CTy.getTypeArray();
908 DIDescriptor RTy = Elements.getElement(0);
Devang Patel8a241142009-12-09 18:24:21 +0000909 addType(&Buffer, DIType(RTy.getNode()));
Bill Wendling0310d762009-05-15 09:23:25 +0000910
911 // Add prototype flag.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000912 addUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000913
914 // Add arguments.
915 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
916 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
917 DIDescriptor Ty = Elements.getElement(i);
Devang Patel8a241142009-12-09 18:24:21 +0000918 addType(Arg, DIType(Ty.getNode()));
Devang Patel2c4ceb12009-11-21 02:48:08 +0000919 Buffer.addChild(Arg);
Bill Wendling0310d762009-05-15 09:23:25 +0000920 }
921 }
922 break;
923 case dwarf::DW_TAG_structure_type:
924 case dwarf::DW_TAG_union_type:
925 case dwarf::DW_TAG_class_type: {
926 // Add elements to structure type.
927 DIArray Elements = CTy.getTypeArray();
928
929 // A forward struct declared type may not have elements available.
Devang Patel3c91b052010-03-08 20:52:55 +0000930 unsigned N = Elements.getNumElements();
931 if (N == 0)
Bill Wendling0310d762009-05-15 09:23:25 +0000932 break;
933
934 // Add elements to structure type.
Devang Patel3c91b052010-03-08 20:52:55 +0000935 for (unsigned i = 0; i < N; ++i) {
Bill Wendling0310d762009-05-15 09:23:25 +0000936 DIDescriptor Element = Elements.getElement(i);
937 DIE *ElemDie = NULL;
Devang Patel3c91b052010-03-08 20:52:55 +0000938 if (Element.isSubprogram())
Devang Patelffe966c2009-12-14 16:18:45 +0000939 ElemDie = createSubprogramDIE(DISubprogram(Element.getNode()));
Devang Patel3c91b052010-03-08 20:52:55 +0000940 else if (Element.isVariable()) {
Devang Patel1ee0cb92010-01-30 01:08:30 +0000941 DIVariable DV(Element.getNode());
942 ElemDie = new DIE(dwarf::DW_TAG_variable);
943 addString(ElemDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
944 DV.getName());
945 addType(ElemDie, DV.getType());
946 addUInt(ElemDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
947 addUInt(ElemDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
948 addSourceLine(ElemDie, &DV);
Devang Patel3c91b052010-03-08 20:52:55 +0000949 } else if (Element.isDerivedType())
Devang Patel8a241142009-12-09 18:24:21 +0000950 ElemDie = createMemberDIE(DIDerivedType(Element.getNode()));
Devang Patel3c91b052010-03-08 20:52:55 +0000951 else
952 continue;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000953 Buffer.addChild(ElemDie);
Bill Wendling0310d762009-05-15 09:23:25 +0000954 }
955
Devang Patela1ba2692009-08-27 23:51:51 +0000956 if (CTy.isAppleBlockExtension())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000957 addUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000958
959 unsigned RLang = CTy.getRunTimeLang();
960 if (RLang)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000961 addUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class,
Bill Wendling0310d762009-05-15 09:23:25 +0000962 dwarf::DW_FORM_data1, RLang);
Devang Patelb5544992010-01-26 21:16:06 +0000963
964 DICompositeType ContainingType = CTy.getContainingType();
Devang Patel3c91b052010-03-08 20:52:55 +0000965 if (DIDescriptor(ContainingType.getNode()).isCompositeType())
Devang Patelb5544992010-01-26 21:16:06 +0000966 addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4,
967 getOrCreateTypeDIE(DIType(ContainingType.getNode())));
Bill Wendling0310d762009-05-15 09:23:25 +0000968 break;
969 }
970 default:
971 break;
972 }
973
974 // Add name if not anonymous or intermediate type.
Devang Patel65dbc902009-11-25 17:36:49 +0000975 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000976 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000977
Devang Patel8cbb6122010-01-29 18:34:58 +0000978 if (Tag == dwarf::DW_TAG_enumeration_type || Tag == dwarf::DW_TAG_class_type ||
Bill Wendling0310d762009-05-15 09:23:25 +0000979 Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) {
980 // Add size if non-zero (derived types might be zero-sized.)
981 if (Size)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000982 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling0310d762009-05-15 09:23:25 +0000983 else {
984 // Add zero size if it is not a forward declaration.
985 if (CTy.isForwardDecl())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000986 addUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000987 else
Devang Patel2c4ceb12009-11-21 02:48:08 +0000988 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0);
Bill Wendling0310d762009-05-15 09:23:25 +0000989 }
990
991 // Add source line info if available.
992 if (!CTy.isForwardDecl())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000993 addSourceLine(&Buffer, &CTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000994 }
995}
996
Devang Patel2c4ceb12009-11-21 02:48:08 +0000997/// constructSubrangeDIE - Construct subrange DIE from DISubrange.
998void DwarfDebug::constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){
Bill Wendling0310d762009-05-15 09:23:25 +0000999 int64_t L = SR.getLo();
1000 int64_t H = SR.getHi();
1001 DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type);
1002
Devang Patel2c4ceb12009-11-21 02:48:08 +00001003 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy);
Devang Patel6325a532009-08-14 20:59:16 +00001004 if (L)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001005 addSInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L);
Devang Pateld55224c2009-12-04 23:10:24 +00001006 addSInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H);
Bill Wendling0310d762009-05-15 09:23:25 +00001007
Devang Patel2c4ceb12009-11-21 02:48:08 +00001008 Buffer.addChild(DW_Subrange);
Bill Wendling0310d762009-05-15 09:23:25 +00001009}
1010
Devang Patel2c4ceb12009-11-21 02:48:08 +00001011/// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
Devang Patel8a241142009-12-09 18:24:21 +00001012void DwarfDebug::constructArrayTypeDIE(DIE &Buffer,
Bill Wendling0310d762009-05-15 09:23:25 +00001013 DICompositeType *CTy) {
1014 Buffer.setTag(dwarf::DW_TAG_array_type);
1015 if (CTy->getTag() == dwarf::DW_TAG_vector_type)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001016 addUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +00001017
1018 // Emit derived type.
Devang Patel8a241142009-12-09 18:24:21 +00001019 addType(&Buffer, CTy->getTypeDerivedFrom());
Bill Wendling0310d762009-05-15 09:23:25 +00001020 DIArray Elements = CTy->getTypeArray();
1021
Devang Patel6f01d9c2009-11-21 00:31:03 +00001022 // Get an anonymous type for index type.
Devang Patel8a241142009-12-09 18:24:21 +00001023 DIE *IdxTy = ModuleCU->getIndexTyDie();
Devang Patel6f01d9c2009-11-21 00:31:03 +00001024 if (!IdxTy) {
1025 // Construct an anonymous type for index type.
1026 IdxTy = new DIE(dwarf::DW_TAG_base_type);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001027 addUInt(IdxTy, dwarf::DW_AT_byte_size, 0, sizeof(int32_t));
1028 addUInt(IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Devang Patel6f01d9c2009-11-21 00:31:03 +00001029 dwarf::DW_ATE_signed);
Devang Patel8a241142009-12-09 18:24:21 +00001030 ModuleCU->addDie(IdxTy);
1031 ModuleCU->setIndexTyDie(IdxTy);
Devang Patel6f01d9c2009-11-21 00:31:03 +00001032 }
Bill Wendling0310d762009-05-15 09:23:25 +00001033
1034 // Add subranges to array type.
1035 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
1036 DIDescriptor Element = Elements.getElement(i);
1037 if (Element.getTag() == dwarf::DW_TAG_subrange_type)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001038 constructSubrangeDIE(Buffer, DISubrange(Element.getNode()), IdxTy);
Bill Wendling0310d762009-05-15 09:23:25 +00001039 }
1040}
1041
Devang Patel2c4ceb12009-11-21 02:48:08 +00001042/// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
Devang Patel3c91b052010-03-08 20:52:55 +00001043DIE *DwarfDebug::constructEnumTypeDIE(DIEnumerator ETy) {
Bill Wendling0310d762009-05-15 09:23:25 +00001044 DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator);
Devang Patel3c91b052010-03-08 20:52:55 +00001045 StringRef Name = ETy.getName();
Devang Patel2c4ceb12009-11-21 02:48:08 +00001046 addString(Enumerator, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Devang Patel3c91b052010-03-08 20:52:55 +00001047 int64_t Value = ETy.getEnumValue();
Devang Patel2c4ceb12009-11-21 02:48:08 +00001048 addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value);
Bill Wendling0310d762009-05-15 09:23:25 +00001049 return Enumerator;
1050}
1051
Devang Patel351ca332010-01-05 01:46:14 +00001052/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
1053/// printer to not emit usual symbol prefix before the symbol name is used then
1054/// return linkage name after skipping this special LLVM prefix.
1055static StringRef getRealLinkageName(StringRef LinkageName) {
1056 char One = '\1';
1057 if (LinkageName.startswith(StringRef(&One, 1)))
1058 return LinkageName.substr(1);
1059 return LinkageName;
1060}
1061
Devang Patel2c4ceb12009-11-21 02:48:08 +00001062/// createGlobalVariableDIE - Create new DIE using GV.
Devang Patel8a241142009-12-09 18:24:21 +00001063DIE *DwarfDebug::createGlobalVariableDIE(const DIGlobalVariable &GV) {
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001064 // If the global variable was optmized out then no need to create debug info
1065 // entry.
Devang Patel84c73e92009-11-06 17:58:12 +00001066 if (!GV.getGlobal()) return NULL;
Devang Patel65dbc902009-11-25 17:36:49 +00001067 if (GV.getDisplayName().empty()) return NULL;
Devang Patel465c3be2009-11-06 01:30:04 +00001068
Bill Wendling0310d762009-05-15 09:23:25 +00001069 DIE *GVDie = new DIE(dwarf::DW_TAG_variable);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001070 addString(GVDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
Devang Patel5ccdd102009-09-29 18:40:58 +00001071 GV.getDisplayName());
1072
Devang Patel65dbc902009-11-25 17:36:49 +00001073 StringRef LinkageName = GV.getLinkageName();
Devang Patel351ca332010-01-05 01:46:14 +00001074 if (!LinkageName.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001075 addString(GVDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel351ca332010-01-05 01:46:14 +00001076 getRealLinkageName(LinkageName));
1077
Devang Patel8a241142009-12-09 18:24:21 +00001078 addType(GVDie, GV.getType());
Bill Wendling0310d762009-05-15 09:23:25 +00001079 if (!GV.isLocalToUnit())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001080 addUInt(GVDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
1081 addSourceLine(GVDie, &GV);
Devang Patelb71a16d2009-10-05 23:22:08 +00001082
Bill Wendling0310d762009-05-15 09:23:25 +00001083 return GVDie;
1084}
1085
Devang Patel2c4ceb12009-11-21 02:48:08 +00001086/// createMemberDIE - Create new member DIE.
Devang Patel8a241142009-12-09 18:24:21 +00001087DIE *DwarfDebug::createMemberDIE(const DIDerivedType &DT) {
Bill Wendling0310d762009-05-15 09:23:25 +00001088 DIE *MemberDie = new DIE(DT.getTag());
Devang Patel65dbc902009-11-25 17:36:49 +00001089 StringRef Name = DT.getName();
1090 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001091 addString(MemberDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Devang Patel65dbc902009-11-25 17:36:49 +00001092
Devang Patel8a241142009-12-09 18:24:21 +00001093 addType(MemberDie, DT.getTypeDerivedFrom());
Bill Wendling0310d762009-05-15 09:23:25 +00001094
Devang Patel2c4ceb12009-11-21 02:48:08 +00001095 addSourceLine(MemberDie, &DT);
Bill Wendling0310d762009-05-15 09:23:25 +00001096
Devang Patel33db5082009-11-04 22:06:12 +00001097 DIEBlock *MemLocationDie = new DIEBlock();
Devang Patel2c4ceb12009-11-21 02:48:08 +00001098 addUInt(MemLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
Devang Patel33db5082009-11-04 22:06:12 +00001099
Bill Wendling0310d762009-05-15 09:23:25 +00001100 uint64_t Size = DT.getSizeInBits();
Devang Patel61ecbd12009-11-04 23:48:00 +00001101 uint64_t FieldSize = DT.getOriginalTypeSize();
Bill Wendling0310d762009-05-15 09:23:25 +00001102
1103 if (Size != FieldSize) {
1104 // Handle bitfield.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001105 addUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3);
1106 addUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits());
Bill Wendling0310d762009-05-15 09:23:25 +00001107
1108 uint64_t Offset = DT.getOffsetInBits();
Bill Wendling0310d762009-05-15 09:23:25 +00001109 uint64_t AlignMask = ~(DT.getAlignInBits() - 1);
1110 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
Benjamin Kramer3d594fd2010-01-07 17:50:57 +00001111 uint64_t FieldOffset = (HiMark - FieldSize);
Bill Wendling0310d762009-05-15 09:23:25 +00001112 Offset -= FieldOffset;
1113
1114 // Maybe we need to work from the other end.
1115 if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001116 addUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset);
Bill Wendling0310d762009-05-15 09:23:25 +00001117
Devang Patel33db5082009-11-04 22:06:12 +00001118 // Here WD_AT_data_member_location points to the anonymous
1119 // field that includes this bit field.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001120 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, FieldOffset >> 3);
Devang Patel33db5082009-11-04 22:06:12 +00001121
1122 } else
1123 // This is not a bitfield.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001124 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3);
Devang Patel33db5082009-11-04 22:06:12 +00001125
Devang Patelc1dc8ff2010-02-03 20:08:48 +00001126 if (DT.getTag() == dwarf::DW_TAG_inheritance
1127 && DT.isVirtual()) {
1128
1129 // For C++, virtual base classes are not at fixed offset. Use following
1130 // expression to extract appropriate offset from vtable.
1131 // BaseAddr = ObAddr + *((*ObAddr) - Offset)
1132
1133 DIEBlock *VBaseLocationDie = new DIEBlock();
1134 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_dup);
1135 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
1136 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1137 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits());
1138 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_minus);
1139 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
1140 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus);
1141
1142 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0,
1143 VBaseLocationDie);
1144 } else
1145 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, MemLocationDie);
Bill Wendling0310d762009-05-15 09:23:25 +00001146
1147 if (DT.isProtected())
Devang Patel5d11eb02009-12-03 19:11:07 +00001148 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag,
Bill Wendling0310d762009-05-15 09:23:25 +00001149 dwarf::DW_ACCESS_protected);
1150 else if (DT.isPrivate())
Devang Patel5d11eb02009-12-03 19:11:07 +00001151 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag,
Bill Wendling0310d762009-05-15 09:23:25 +00001152 dwarf::DW_ACCESS_private);
Devang Patel5d11eb02009-12-03 19:11:07 +00001153 else if (DT.getTag() == dwarf::DW_TAG_inheritance)
1154 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag,
1155 dwarf::DW_ACCESS_public);
1156 if (DT.isVirtual())
1157 addUInt(MemberDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag,
1158 dwarf::DW_VIRTUALITY_virtual);
Bill Wendling0310d762009-05-15 09:23:25 +00001159 return MemberDie;
1160}
1161
Devang Patelffe966c2009-12-14 16:18:45 +00001162/// createSubprogramDIE - Create new DIE using SP.
1163DIE *DwarfDebug::createSubprogramDIE(const DISubprogram &SP, bool MakeDecl) {
1164 DIE *SPDie = ModuleCU->getDIE(SP.getNode());
1165 if (SPDie)
1166 return SPDie;
1167
1168 SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patel1eac3e72010-03-02 17:58:15 +00001169 // Constructors and operators for anonymous aggregates do not have names.
Devang Patel6b506cb2010-03-02 01:26:20 +00001170 if (!SP.getName().empty())
1171 addString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, SP.getName());
Bill Wendling0310d762009-05-15 09:23:25 +00001172
Devang Patel65dbc902009-11-25 17:36:49 +00001173 StringRef LinkageName = SP.getLinkageName();
Devang Patel351ca332010-01-05 01:46:14 +00001174 if (!LinkageName.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001175 addString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel351ca332010-01-05 01:46:14 +00001176 getRealLinkageName(LinkageName));
1177
Devang Patel2c4ceb12009-11-21 02:48:08 +00001178 addSourceLine(SPDie, &SP);
Bill Wendling0310d762009-05-15 09:23:25 +00001179
Bill Wendling0310d762009-05-15 09:23:25 +00001180 // Add prototyped tag, if C or ObjC.
1181 unsigned Lang = SP.getCompileUnit().getLanguage();
1182 if (Lang == dwarf::DW_LANG_C99 || Lang == dwarf::DW_LANG_C89 ||
1183 Lang == dwarf::DW_LANG_ObjC)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001184 addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +00001185
1186 // Add Return Type.
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001187 DICompositeType SPTy = SP.getType();
1188 DIArray Args = SPTy.getTypeArray();
Bill Wendling0310d762009-05-15 09:23:25 +00001189 unsigned SPTag = SPTy.getTag();
Devang Patel5d11eb02009-12-03 19:11:07 +00001190
Devang Patel3c91b052010-03-08 20:52:55 +00001191 if (Args.getNumElements() == 0 || SPTag != dwarf::DW_TAG_subroutine_type)
Devang Patel8a241142009-12-09 18:24:21 +00001192 addType(SPDie, SPTy);
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001193 else
Devang Patel8a241142009-12-09 18:24:21 +00001194 addType(SPDie, DIType(Args.getElement(0).getNode()));
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001195
Devang Patel5d11eb02009-12-03 19:11:07 +00001196 unsigned VK = SP.getVirtuality();
1197 if (VK) {
1198 addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, VK);
1199 DIEBlock *Block = new DIEBlock();
1200 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1201 addUInt(Block, 0, dwarf::DW_FORM_data1, SP.getVirtualIndex());
1202 addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block);
Devang Patel622b0262010-01-19 06:19:05 +00001203 ContainingTypeMap.insert(std::make_pair(SPDie,
1204 SP.getContainingType().getNode()));
Devang Patel5d11eb02009-12-03 19:11:07 +00001205 }
1206
Devang Patelffe966c2009-12-14 16:18:45 +00001207 if (MakeDecl || !SP.isDefinition()) {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001208 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +00001209
1210 // Add arguments. Do not add arguments for subprogram definition. They will
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001211 // be handled while processing variables.
1212 DICompositeType SPTy = SP.getType();
1213 DIArray Args = SPTy.getTypeArray();
1214 unsigned SPTag = SPTy.getTag();
1215
Bill Wendling0310d762009-05-15 09:23:25 +00001216 if (SPTag == dwarf::DW_TAG_subroutine_type)
1217 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1218 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
Devang Patelb4645642010-02-06 01:02:37 +00001219 DIType ATy = DIType(DIType(Args.getElement(i).getNode()));
1220 addType(Arg, ATy);
1221 if (ATy.isArtificial())
1222 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001223 SPDie->addChild(Arg);
Bill Wendling0310d762009-05-15 09:23:25 +00001224 }
1225 }
1226
Devang Patel4e0d19d2010-02-03 19:57:19 +00001227 if (SP.isArtificial())
1228 addUInt(SPDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
1229
Bill Wendling0310d762009-05-15 09:23:25 +00001230 // DW_TAG_inlined_subroutine may refer to this DIE.
Devang Patel8a241142009-12-09 18:24:21 +00001231 ModuleCU->insertDIE(SP.getNode(), SPDie);
Bill Wendling0310d762009-05-15 09:23:25 +00001232 return SPDie;
1233}
1234
Devang Patel53bb5c92009-11-10 23:06:00 +00001235/// getUpdatedDbgScope - Find or create DbgScope assicated with the instruction.
1236/// Initialize scope and update scope hierarchy.
1237DbgScope *DwarfDebug::getUpdatedDbgScope(MDNode *N, const MachineInstr *MI,
1238 MDNode *InlinedAt) {
1239 assert (N && "Invalid Scope encoding!");
1240 assert (MI && "Missing machine instruction!");
1241 bool GetConcreteScope = (MI && InlinedAt);
1242
1243 DbgScope *NScope = NULL;
1244
1245 if (InlinedAt)
1246 NScope = DbgScopeMap.lookup(InlinedAt);
1247 else
1248 NScope = DbgScopeMap.lookup(N);
1249 assert (NScope && "Unable to find working scope!");
1250
1251 if (NScope->getFirstInsn())
1252 return NScope;
Devang Patelaf9e8472009-10-01 20:31:14 +00001253
1254 DbgScope *Parent = NULL;
Devang Patel53bb5c92009-11-10 23:06:00 +00001255 if (GetConcreteScope) {
Devang Patelc90aefe2009-10-14 21:08:09 +00001256 DILocation IL(InlinedAt);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001257 Parent = getUpdatedDbgScope(IL.getScope().getNode(), MI,
Devang Patel53bb5c92009-11-10 23:06:00 +00001258 IL.getOrigLocation().getNode());
1259 assert (Parent && "Unable to find Parent scope!");
1260 NScope->setParent(Parent);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001261 Parent->addScope(NScope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001262 } else if (DIDescriptor(N).isLexicalBlock()) {
1263 DILexicalBlock DB(N);
Devang Patel3c91b052010-03-08 20:52:55 +00001264 Parent = getUpdatedDbgScope(DB.getContext().getNode(), MI, InlinedAt);
1265 NScope->setParent(Parent);
1266 Parent->addScope(NScope);
Devang Patelc90aefe2009-10-14 21:08:09 +00001267 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001268
Devang Patelbdf45cb2009-10-27 20:47:17 +00001269 NScope->setFirstInsn(MI);
Devang Patelaf9e8472009-10-01 20:31:14 +00001270
Devang Patel53bb5c92009-11-10 23:06:00 +00001271 if (!Parent && !InlinedAt) {
Devang Patel39ae3ff2009-11-11 00:31:36 +00001272 StringRef SPName = DISubprogram(N).getLinkageName();
1273 if (SPName == MF->getFunction()->getName())
1274 CurrentFnDbgScope = NScope;
Devang Patel53bb5c92009-11-10 23:06:00 +00001275 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001276
Devang Patel53bb5c92009-11-10 23:06:00 +00001277 if (GetConcreteScope) {
1278 ConcreteScopes[InlinedAt] = NScope;
1279 getOrCreateAbstractScope(N);
1280 }
1281
Devang Patelbdf45cb2009-10-27 20:47:17 +00001282 return NScope;
Devang Patelaf9e8472009-10-01 20:31:14 +00001283}
1284
Devang Patel53bb5c92009-11-10 23:06:00 +00001285DbgScope *DwarfDebug::getOrCreateAbstractScope(MDNode *N) {
1286 assert (N && "Invalid Scope encoding!");
1287
1288 DbgScope *AScope = AbstractScopes.lookup(N);
1289 if (AScope)
1290 return AScope;
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001291
Devang Patel53bb5c92009-11-10 23:06:00 +00001292 DbgScope *Parent = NULL;
1293
1294 DIDescriptor Scope(N);
1295 if (Scope.isLexicalBlock()) {
1296 DILexicalBlock DB(N);
1297 DIDescriptor ParentDesc = DB.getContext();
Devang Patel3c91b052010-03-08 20:52:55 +00001298 Parent = getOrCreateAbstractScope(ParentDesc.getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00001299 }
1300
1301 AScope = new DbgScope(Parent, DIDescriptor(N), NULL);
1302
1303 if (Parent)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001304 Parent->addScope(AScope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001305 AScope->setAbstractScope();
1306 AbstractScopes[N] = AScope;
1307 if (DIDescriptor(N).isSubprogram())
1308 AbstractScopesList.push_back(AScope);
1309 return AScope;
1310}
Devang Patelaf9e8472009-10-01 20:31:14 +00001311
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001312/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel2c4ceb12009-11-21 02:48:08 +00001313/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
1314/// If there are global variables in this scope then create and insert
1315/// DIEs for these variables.
1316DIE *DwarfDebug::updateSubprogramScopeDIE(MDNode *SPNode) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001317
Devang Patel017d1212009-11-20 21:37:22 +00001318 DIE *SPDie = ModuleCU->getDIE(SPNode);
Devang Patel53bb5c92009-11-10 23:06:00 +00001319 assert (SPDie && "Unable to find subprogram DIE!");
Devang Patelffe966c2009-12-14 16:18:45 +00001320 DISubprogram SP(SPNode);
Devang Patel6cda22e2010-02-05 23:09:20 +00001321 // There is not any need to generate specification DIE for a function
1322 // defined at compile unit level. If a function is defined inside another
1323 // function then gdb prefers the definition at top level and but does not
1324 // expect specification DIE in parent function. So avoid creating
1325 // specification DIE for a function defined inside a function.
1326 if (SP.isDefinition() && !SP.getContext().isCompileUnit()
Devang Patel1b596e32010-03-11 23:44:52 +00001327 && !SP.getContext().isFile()
Devang Patel6cda22e2010-02-05 23:09:20 +00001328 && !SP.getContext().isSubprogram()) {
Devang Patelffe966c2009-12-14 16:18:45 +00001329 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
1330 // Add arguments.
1331 DICompositeType SPTy = SP.getType();
1332 DIArray Args = SPTy.getTypeArray();
1333 unsigned SPTag = SPTy.getTag();
1334 if (SPTag == dwarf::DW_TAG_subroutine_type)
1335 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1336 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
Devang Patelb4645642010-02-06 01:02:37 +00001337 DIType ATy = DIType(DIType(Args.getElement(i).getNode()));
1338 addType(Arg, ATy);
1339 if (ATy.isArtificial())
1340 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patelffe966c2009-12-14 16:18:45 +00001341 SPDie->addChild(Arg);
1342 }
1343 DIE *SPDeclDie = SPDie;
1344 SPDie = new DIE(dwarf::DW_TAG_subprogram);
1345 addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
1346 SPDeclDie);
Devang Patelffe966c2009-12-14 16:18:45 +00001347 ModuleCU->addDie(SPDie);
1348 }
Devang Patelb4645642010-02-06 01:02:37 +00001349
Devang Patel2c4ceb12009-11-21 02:48:08 +00001350 addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00001351 getDWLabel("func_begin", SubprogramCount));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001352 addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00001353 getDWLabel("func_end", SubprogramCount));
Devang Patel53bb5c92009-11-10 23:06:00 +00001354 MachineLocation Location(RI->getFrameRegister(*MF));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001355 addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001356
Devang Patel53bb5c92009-11-10 23:06:00 +00001357 if (!DISubprogram(SPNode).isLocalToUnit())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001358 addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
Devang Patel53bb5c92009-11-10 23:06:00 +00001359
Devang Patel53bb5c92009-11-10 23:06:00 +00001360 return SPDie;
1361}
1362
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001363/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel2c4ceb12009-11-21 02:48:08 +00001364/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
1365DIE *DwarfDebug::constructLexicalScopeDIE(DbgScope *Scope) {
Chris Lattnerb7db7332010-03-09 01:58:53 +00001366 MCSymbol *Start = Scope->getStartLabel();
1367 MCSymbol *End = Scope->getEndLabel();
Chris Lattner6c7dfc02010-03-09 04:48:35 +00001368 if (Start == 0) return 0;
Devang Patel53bb5c92009-11-10 23:06:00 +00001369
Chris Lattnerb7db7332010-03-09 01:58:53 +00001370 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
1371 assert(End->isDefined() && "Invalid end label for an inlined scope!");
Chris Lattnera34ec2292010-03-09 01:51:43 +00001372
Devang Patel53bb5c92009-11-10 23:06:00 +00001373 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
1374 if (Scope->isAbstractScope())
1375 return ScopeDIE;
1376
Devang Patel2c4ceb12009-11-21 02:48:08 +00001377 addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
Chris Lattnerb7db7332010-03-09 01:58:53 +00001378 Start ? Start : getDWLabel("func_begin", SubprogramCount));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001379 addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Chris Lattnerb7db7332010-03-09 01:58:53 +00001380 End ? End : getDWLabel("func_end", SubprogramCount));
Devang Patel53bb5c92009-11-10 23:06:00 +00001381
1382 return ScopeDIE;
1383}
1384
Devang Patel2c4ceb12009-11-21 02:48:08 +00001385/// constructInlinedScopeDIE - This scope represents inlined body of
1386/// a function. Construct DIE to represent this concrete inlined copy
1387/// of the function.
1388DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) {
Chris Lattnerb7db7332010-03-09 01:58:53 +00001389 MCSymbol *StartLabel = Scope->getStartLabel();
1390 MCSymbol *EndLabel = Scope->getEndLabel();
Chris Lattner6c7dfc02010-03-09 04:48:35 +00001391 if (StartLabel == 0) return 0;
1392
Chris Lattnerb7db7332010-03-09 01:58:53 +00001393 assert(StartLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +00001394 "Invalid starting label for an inlined scope!");
Chris Lattnerb7db7332010-03-09 01:58:53 +00001395 assert(EndLabel->isDefined() &&
Chris Lattnera34ec2292010-03-09 01:51:43 +00001396 "Invalid end label for an inlined scope!");
Devang Patel3c91b052010-03-08 20:52:55 +00001397 if (!Scope->getScopeNode())
Devang Patel0ef3fa62010-03-08 19:20:38 +00001398 return NULL;
Devang Patel3c91b052010-03-08 20:52:55 +00001399 DIScope DS(Scope->getScopeNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00001400 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
1401
1402 DISubprogram InlinedSP = getDISubprogram(DS.getNode());
Devang Patel017d1212009-11-20 21:37:22 +00001403 DIE *OriginDIE = ModuleCU->getDIE(InlinedSP.getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00001404 assert (OriginDIE && "Unable to find Origin DIE!");
Devang Patel2c4ceb12009-11-21 02:48:08 +00001405 addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
Devang Patel53bb5c92009-11-10 23:06:00 +00001406 dwarf::DW_FORM_ref4, OriginDIE);
1407
Chris Lattner6ed0f902010-03-09 00:31:02 +00001408 addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, StartLabel);
Chris Lattnerb7db7332010-03-09 01:58:53 +00001409 addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, EndLabel);
Devang Patel53bb5c92009-11-10 23:06:00 +00001410
1411 InlinedSubprogramDIEs.insert(OriginDIE);
1412
1413 // Track the start label for this inlined function.
Devang Patel622b0262010-01-19 06:19:05 +00001414 DenseMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
Devang Patel53bb5c92009-11-10 23:06:00 +00001415 I = InlineInfo.find(InlinedSP.getNode());
1416
1417 if (I == InlineInfo.end()) {
Chris Lattner6ed0f902010-03-09 00:31:02 +00001418 InlineInfo[InlinedSP.getNode()].push_back(std::make_pair(StartLabel,
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001419 ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +00001420 InlinedSPNodes.push_back(InlinedSP.getNode());
1421 } else
Chris Lattner6ed0f902010-03-09 00:31:02 +00001422 I->second.push_back(std::make_pair(StartLabel, ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +00001423
1424 StringPool.insert(InlinedSP.getName());
Devang Patel351ca332010-01-05 01:46:14 +00001425 StringPool.insert(getRealLinkageName(InlinedSP.getLinkageName()));
1426
Devang Patel53bb5c92009-11-10 23:06:00 +00001427 DILocation DL(Scope->getInlinedAt());
Devang Patel2c4ceb12009-11-21 02:48:08 +00001428 addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, ModuleCU->getID());
1429 addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patel53bb5c92009-11-10 23:06:00 +00001430
1431 return ScopeDIE;
1432}
1433
Devang Patel2c4ceb12009-11-21 02:48:08 +00001434
1435/// constructVariableDIE - Construct a DIE for the given DbgVariable.
Devang Patel8a241142009-12-09 18:24:21 +00001436DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, DbgScope *Scope) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001437 // Get the descriptor.
1438 const DIVariable &VD = DV->getVariable();
Devang Patel65dbc902009-11-25 17:36:49 +00001439 StringRef Name = VD.getName();
1440 if (Name.empty())
Devang Patel3fb6bd62009-11-13 02:25:26 +00001441 return NULL;
Devang Patel53bb5c92009-11-10 23:06:00 +00001442
1443 // Translate tag to proper Dwarf tag. The result variable is dropped for
1444 // now.
1445 unsigned Tag;
1446 switch (VD.getTag()) {
1447 case dwarf::DW_TAG_return_variable:
1448 return NULL;
1449 case dwarf::DW_TAG_arg_variable:
1450 Tag = dwarf::DW_TAG_formal_parameter;
1451 break;
1452 case dwarf::DW_TAG_auto_variable: // fall thru
1453 default:
1454 Tag = dwarf::DW_TAG_variable;
1455 break;
1456 }
1457
1458 // Define variable debug information entry.
1459 DIE *VariableDie = new DIE(Tag);
1460
1461
1462 DIE *AbsDIE = NULL;
1463 if (DbgVariable *AV = DV->getAbstractVariable())
1464 AbsDIE = AV->getDIE();
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001465
Devang Patel53bb5c92009-11-10 23:06:00 +00001466 if (AbsDIE) {
1467 DIScope DS(Scope->getScopeNode());
1468 DISubprogram InlinedSP = getDISubprogram(DS.getNode());
Devang Patel017d1212009-11-20 21:37:22 +00001469 DIE *OriginSPDIE = ModuleCU->getDIE(InlinedSP.getNode());
Daniel Dunbarc0326792009-11-11 03:09:50 +00001470 (void) OriginSPDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +00001471 assert (OriginSPDIE && "Unable to find Origin DIE for the SP!");
1472 DIE *AbsDIE = DV->getAbstractVariable()->getDIE();
1473 assert (AbsDIE && "Unable to find Origin DIE for the Variable!");
Devang Patel2c4ceb12009-11-21 02:48:08 +00001474 addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin,
Devang Patel53bb5c92009-11-10 23:06:00 +00001475 dwarf::DW_FORM_ref4, AbsDIE);
1476 }
1477 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001478 addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
1479 addSourceLine(VariableDie, &VD);
Devang Patel53bb5c92009-11-10 23:06:00 +00001480
1481 // Add variable type.
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001482 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
Devang Patel53bb5c92009-11-10 23:06:00 +00001483 // addresses instead.
1484 if (VD.isBlockByrefVariable())
Devang Patel8a241142009-12-09 18:24:21 +00001485 addType(VariableDie, getBlockByrefType(VD.getType(), Name));
Devang Patel53bb5c92009-11-10 23:06:00 +00001486 else
Devang Patel8a241142009-12-09 18:24:21 +00001487 addType(VariableDie, VD.getType());
Devang Patel53bb5c92009-11-10 23:06:00 +00001488 }
1489
1490 // Add variable address.
1491 if (!Scope->isAbstractScope()) {
1492 MachineLocation Location;
Jim Grosbacha2f20b22009-11-22 20:14:00 +00001493 unsigned FrameReg;
1494 int Offset = RI->getFrameIndexReference(*MF, DV->getFrameIndex(), FrameReg);
1495 Location.set(FrameReg, Offset);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001496
Devang Patel53bb5c92009-11-10 23:06:00 +00001497 if (VD.hasComplexAddress())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001498 addComplexAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001499 else if (VD.isBlockByrefVariable())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001500 addBlockByrefAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001501 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001502 addAddress(VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001503 }
Devang Patelb4645642010-02-06 01:02:37 +00001504
1505 if (Tag == dwarf::DW_TAG_formal_parameter && VD.getType().isArtificial())
1506 addUInt(VariableDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
Devang Patel53bb5c92009-11-10 23:06:00 +00001507 DV->setDIE(VariableDie);
1508 return VariableDie;
1509
1510}
Devang Patel2c4ceb12009-11-21 02:48:08 +00001511
Devang Patel193f7202009-11-24 01:14:22 +00001512void DwarfDebug::addPubTypes(DISubprogram SP) {
1513 DICompositeType SPTy = SP.getType();
1514 unsigned SPTag = SPTy.getTag();
1515 if (SPTag != dwarf::DW_TAG_subroutine_type)
1516 return;
1517
1518 DIArray Args = SPTy.getTypeArray();
Devang Patel193f7202009-11-24 01:14:22 +00001519 for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) {
1520 DIType ATy(Args.getElement(i).getNode());
Devang Patel3c91b052010-03-08 20:52:55 +00001521 if (!ATy.isValid())
Devang Patel193f7202009-11-24 01:14:22 +00001522 continue;
1523 DICompositeType CATy = getDICompositeType(ATy);
Devang Patel3c91b052010-03-08 20:52:55 +00001524 if (DIDescriptor(CATy.getNode()).Verify() && !CATy.getName().empty()) {
Devang Patel193f7202009-11-24 01:14:22 +00001525 if (DIEEntry *Entry = ModuleCU->getDIEEntry(CATy.getNode()))
1526 ModuleCU->addGlobalType(CATy.getName(), Entry->getEntry());
1527 }
1528 }
1529}
1530
Devang Patel2c4ceb12009-11-21 02:48:08 +00001531/// constructScopeDIE - Construct a DIE for this scope.
1532DIE *DwarfDebug::constructScopeDIE(DbgScope *Scope) {
Devang Patel3c91b052010-03-08 20:52:55 +00001533 if (!Scope || !Scope->getScopeNode())
1534 return NULL;
1535
1536 DIScope DS(Scope->getScopeNode());
1537 DIE *ScopeDIE = NULL;
1538 if (Scope->getInlinedAt())
1539 ScopeDIE = constructInlinedScopeDIE(Scope);
1540 else if (DS.isSubprogram()) {
1541 if (Scope->isAbstractScope())
1542 ScopeDIE = ModuleCU->getDIE(DS.getNode());
1543 else
1544 ScopeDIE = updateSubprogramScopeDIE(DS.getNode());
1545 }
1546 else {
1547 ScopeDIE = constructLexicalScopeDIE(Scope);
1548 if (!ScopeDIE) return NULL;
1549 }
1550
Devang Patel53bb5c92009-11-10 23:06:00 +00001551 // Add variables to scope.
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001552 const SmallVector<DbgVariable *, 8> &Variables = Scope->getVariables();
Devang Patel53bb5c92009-11-10 23:06:00 +00001553 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
Devang Patel8a241142009-12-09 18:24:21 +00001554 DIE *VariableDIE = constructVariableDIE(Variables[i], Scope);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001555 if (VariableDIE)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001556 ScopeDIE->addChild(VariableDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +00001557 }
1558
1559 // Add nested scopes.
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001560 const SmallVector<DbgScope *, 4> &Scopes = Scope->getScopes();
Devang Patel53bb5c92009-11-10 23:06:00 +00001561 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1562 // Define the Scope debug information entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001563 DIE *NestedDIE = constructScopeDIE(Scopes[j]);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001564 if (NestedDIE)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001565 ScopeDIE->addChild(NestedDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +00001566 }
Devang Patel193f7202009-11-24 01:14:22 +00001567
1568 if (DS.isSubprogram())
1569 addPubTypes(DISubprogram(DS.getNode()));
1570
1571 return ScopeDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +00001572}
1573
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001574/// GetOrCreateSourceID - Look up the source id with the given directory and
1575/// source file names. If none currently exists, create a new id and insert it
1576/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
1577/// maps as well.
Devang Patel65dbc902009-11-25 17:36:49 +00001578unsigned DwarfDebug::GetOrCreateSourceID(StringRef DirName, StringRef FileName) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001579 unsigned DId;
1580 StringMap<unsigned>::iterator DI = DirectoryIdMap.find(DirName);
1581 if (DI != DirectoryIdMap.end()) {
1582 DId = DI->getValue();
1583 } else {
1584 DId = DirectoryNames.size() + 1;
1585 DirectoryIdMap[DirName] = DId;
1586 DirectoryNames.push_back(DirName);
1587 }
1588
1589 unsigned FId;
1590 StringMap<unsigned>::iterator FI = SourceFileIdMap.find(FileName);
1591 if (FI != SourceFileIdMap.end()) {
1592 FId = FI->getValue();
1593 } else {
1594 FId = SourceFileNames.size() + 1;
1595 SourceFileIdMap[FileName] = FId;
1596 SourceFileNames.push_back(FileName);
1597 }
1598
1599 DenseMap<std::pair<unsigned, unsigned>, unsigned>::iterator SI =
1600 SourceIdMap.find(std::make_pair(DId, FId));
1601 if (SI != SourceIdMap.end())
1602 return SI->second;
1603
1604 unsigned SrcId = SourceIds.size() + 1; // DW_AT_decl_file cannot be 0.
1605 SourceIdMap[std::make_pair(DId, FId)] = SrcId;
1606 SourceIds.push_back(std::make_pair(DId, FId));
1607
1608 return SrcId;
1609}
1610
Devang Patel6404e4e2009-12-15 19:16:48 +00001611/// getOrCreateNameSpace - Create a DIE for DINameSpace.
1612DIE *DwarfDebug::getOrCreateNameSpace(DINameSpace NS) {
1613 DIE *NDie = ModuleCU->getDIE(NS.getNode());
1614 if (NDie)
1615 return NDie;
1616 NDie = new DIE(dwarf::DW_TAG_namespace);
1617 ModuleCU->insertDIE(NS.getNode(), NDie);
1618 if (!NS.getName().empty())
1619 addString(NDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, NS.getName());
1620 addSourceLine(NDie, &NS);
1621 addToContextOwner(NDie, NS.getContext());
1622 return NDie;
1623}
1624
Jeffrey Yasskind0f393d2010-03-11 18:29:55 +00001625void DwarfDebug::constructCompileUnit(MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +00001626 DICompileUnit DIUnit(N);
Jeffrey Yasskind0f393d2010-03-11 18:29:55 +00001627 // Use first compile unit marked as isMain as the compile unit for this
1628 // module.
1629 if (ModuleCU || !DIUnit.isMain())
1630 return;
Devang Patel65dbc902009-11-25 17:36:49 +00001631 StringRef FN = DIUnit.getFilename();
1632 StringRef Dir = DIUnit.getDirectory();
Devang Patel5ccdd102009-09-29 18:40:58 +00001633 unsigned ID = GetOrCreateSourceID(Dir, FN);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001634
1635 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00001636 // FIXME: Why getting the delta between two identical labels??
Devang Patel2c4ceb12009-11-21 02:48:08 +00001637 addSectionOffset(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00001638 getTempLabel("section_line"), getTempLabel("section_line"),
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001639 false);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001640 addString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string,
Devang Patel5ccdd102009-09-29 18:40:58 +00001641 DIUnit.getProducer());
Devang Patel2c4ceb12009-11-21 02:48:08 +00001642 addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data1,
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001643 DIUnit.getLanguage());
Devang Patel2c4ceb12009-11-21 02:48:08 +00001644 addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001645
Devang Patel65dbc902009-11-25 17:36:49 +00001646 if (!Dir.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001647 addString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001648 if (DIUnit.isOptimized())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001649 addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001650
Devang Patel65dbc902009-11-25 17:36:49 +00001651 StringRef Flags = DIUnit.getFlags();
1652 if (!Flags.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001653 addString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string, Flags);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001654
1655 unsigned RVer = DIUnit.getRunTimeVersion();
1656 if (RVer)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001657 addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers,
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001658 dwarf::DW_FORM_data1, RVer);
1659
Jeffrey Yasskind0f393d2010-03-11 18:29:55 +00001660 assert(!ModuleCU &&
1661 "ModuleCU assigned since the top of constructCompileUnit");
1662 ModuleCU = new CompileUnit(ID, Die);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001663}
1664
Devang Patel2c4ceb12009-11-21 02:48:08 +00001665void DwarfDebug::constructGlobalVariableDIE(MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +00001666 DIGlobalVariable DI_GV(N);
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001667
Devang Patel905cf5e2009-09-04 23:59:07 +00001668 // If debug information is malformed then ignore it.
1669 if (DI_GV.Verify() == false)
1670 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001671
1672 // Check for pre-existence.
Devang Patel017d1212009-11-20 21:37:22 +00001673 if (ModuleCU->getDIE(DI_GV.getNode()))
Devang Patel13e16b62009-06-26 01:49:18 +00001674 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001675
Devang Patel8a241142009-12-09 18:24:21 +00001676 DIE *VariableDie = createGlobalVariableDIE(DI_GV);
Devang Pateledb45632009-12-10 23:25:41 +00001677 if (!VariableDie)
1678 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001679
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001680 // Add to map.
Devang Patel017d1212009-11-20 21:37:22 +00001681 ModuleCU->insertDIE(N, VariableDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001682
1683 // Add to context owner.
Devang Patelc9b16cc2010-01-15 01:12:22 +00001684 DIDescriptor GVContext = DI_GV.getContext();
1685 // Do not create specification DIE if context is either compile unit
1686 // or a subprogram.
1687 if (DI_GV.isDefinition() && !GVContext.isCompileUnit()
Devang Patel1b596e32010-03-11 23:44:52 +00001688 && !GVContext.isFile() && !GVContext.isSubprogram()) {
Devang Patel6404e4e2009-12-15 19:16:48 +00001689 // Create specification DIE.
1690 DIE *VariableSpecDIE = new DIE(dwarf::DW_TAG_variable);
1691 addDIEEntry(VariableSpecDIE, dwarf::DW_AT_specification,
1692 dwarf::DW_FORM_ref4, VariableDie);
1693 DIEBlock *Block = new DIEBlock();
1694 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
Chris Lattner4faf59a2010-03-08 22:31:46 +00001695 addLabel(Block, 0, dwarf::DW_FORM_udata,
Chris Lattnerdeb0cba2010-03-12 21:09:07 +00001696 Asm->Mang->getSymbol(DI_GV.getGlobal()));
Devang Patel6404e4e2009-12-15 19:16:48 +00001697 addBlock(VariableSpecDIE, dwarf::DW_AT_location, 0, Block);
Devang Patel8581e012010-02-09 01:58:33 +00001698 addUInt(VariableDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Devang Patel6404e4e2009-12-15 19:16:48 +00001699 ModuleCU->addDie(VariableSpecDIE);
1700 } else {
1701 DIEBlock *Block = new DIEBlock();
1702 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
Chris Lattner4faf59a2010-03-08 22:31:46 +00001703 addLabel(Block, 0, dwarf::DW_FORM_udata,
Chris Lattnerdeb0cba2010-03-12 21:09:07 +00001704 Asm->Mang->getSymbol(DI_GV.getGlobal()));
Devang Patel6404e4e2009-12-15 19:16:48 +00001705 addBlock(VariableDie, dwarf::DW_AT_location, 0, Block);
1706 }
Devang Patelc9b16cc2010-01-15 01:12:22 +00001707 addToContextOwner(VariableDie, GVContext);
Devang Patelc366f832009-12-10 19:14:49 +00001708
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001709 // Expose as global. FIXME - need to check external flag.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001710 ModuleCU->addGlobal(DI_GV.getName(), VariableDie);
Devang Patel193f7202009-11-24 01:14:22 +00001711
1712 DIType GTy = DI_GV.getType();
Devang Patel65dbc902009-11-25 17:36:49 +00001713 if (GTy.isCompositeType() && !GTy.getName().empty()) {
Devang Patel193f7202009-11-24 01:14:22 +00001714 DIEEntry *Entry = ModuleCU->getDIEEntry(GTy.getNode());
1715 assert (Entry && "Missing global type!");
1716 ModuleCU->addGlobalType(GTy.getName(), Entry->getEntry());
1717 }
Devang Patel13e16b62009-06-26 01:49:18 +00001718 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001719}
1720
Devang Patel2c4ceb12009-11-21 02:48:08 +00001721void DwarfDebug::constructSubprogramDIE(MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +00001722 DISubprogram SP(N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001723
1724 // Check for pre-existence.
Devang Patel017d1212009-11-20 21:37:22 +00001725 if (ModuleCU->getDIE(N))
Devang Patel13e16b62009-06-26 01:49:18 +00001726 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001727
1728 if (!SP.isDefinition())
1729 // This is a method declaration which will be handled while constructing
1730 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +00001731 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001732
Devang Patel8a241142009-12-09 18:24:21 +00001733 DIE *SubprogramDie = createSubprogramDIE(SP);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001734
1735 // Add to map.
Devang Patel017d1212009-11-20 21:37:22 +00001736 ModuleCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001737
1738 // Add to context owner.
Devang Patel6404e4e2009-12-15 19:16:48 +00001739 addToContextOwner(SubprogramDie, SP.getContext());
Devang Patel0000fad2009-12-08 23:21:45 +00001740
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001741 // Expose as global.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001742 ModuleCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel193f7202009-11-24 01:14:22 +00001743
Devang Patel13e16b62009-06-26 01:49:18 +00001744 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001745}
1746
Devang Patel2c4ceb12009-11-21 02:48:08 +00001747/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +00001748/// content. Create global DIEs and emit initial debug info sections.
1749/// This is inovked by the target AsmPrinter.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001750void DwarfDebug::beginModule(Module *M, MachineModuleInfo *mmi) {
Devang Patel208622d2009-06-25 22:36:02 +00001751 this->M = M;
1752
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001753 if (TimePassesIsEnabled)
1754 DebugTimer->startTimer();
1755
Devang Patel3380cc52009-11-11 19:55:08 +00001756 if (!MAI->doesSupportDebugInformation())
1757 return;
1758
Devang Patel78ab9e22009-07-30 18:56:46 +00001759 DebugInfoFinder DbgFinder;
1760 DbgFinder.processModule(*M);
Devang Patel13e16b62009-06-26 01:49:18 +00001761
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001762 // Create all the compile unit DIEs.
Devang Patel78ab9e22009-07-30 18:56:46 +00001763 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
1764 E = DbgFinder.compile_unit_end(); I != E; ++I)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001765 constructCompileUnit(*I);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001766
Devang Patel1dbc7712009-06-29 20:45:18 +00001767 if (!ModuleCU)
Devang Patel77bf2952010-03-08 22:02:50 +00001768 return;
Devang Patel70f44262009-06-29 20:38:13 +00001769
Devang Patel53bb5c92009-11-10 23:06:00 +00001770 // Create DIEs for each subprogram.
Devang Patel78ab9e22009-07-30 18:56:46 +00001771 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
1772 E = DbgFinder.subprogram_end(); I != E; ++I)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001773 constructSubprogramDIE(*I);
Devang Patel13e16b62009-06-26 01:49:18 +00001774
Devang Patelc366f832009-12-10 19:14:49 +00001775 // Create DIEs for each global variable.
1776 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
1777 E = DbgFinder.global_variable_end(); I != E; ++I)
1778 constructGlobalVariableDIE(*I);
1779
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001780 MMI = mmi;
1781 shouldEmit = true;
1782 MMI->setDebugInfoAvailability(true);
1783
1784 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +00001785 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001786
1787 // Print out .file directives to specify files for .loc directives. These are
1788 // printed out early so that they precede any .loc directives.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001789 if (MAI->hasDotLocAndDotFile()) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001790 for (unsigned i = 1, e = getNumSourceIds()+1; i != e; ++i) {
1791 // Remember source id starts at 1.
1792 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(i);
Chris Lattner0ad9c912010-01-22 22:09:00 +00001793 // FIXME: don't use sys::path for this! This should not depend on the
1794 // host.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001795 sys::Path FullPath(getSourceDirectoryName(Id.first));
1796 bool AppendOk =
1797 FullPath.appendComponent(getSourceFileName(Id.second));
1798 assert(AppendOk && "Could not append filename to directory!");
1799 AppendOk = false;
Chris Lattnera6594fc2010-01-25 18:58:59 +00001800 Asm->OutStreamer.EmitDwarfFileDirective(i, FullPath.str());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001801 }
1802 }
1803
1804 // Emit initial sections
Devang Patel2c4ceb12009-11-21 02:48:08 +00001805 emitInitial();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001806
1807 if (TimePassesIsEnabled)
1808 DebugTimer->stopTimer();
1809}
1810
Devang Patel2c4ceb12009-11-21 02:48:08 +00001811/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001812///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001813void DwarfDebug::endModule() {
Devang Patel6f3dc922009-10-06 00:03:14 +00001814 if (!ModuleCU)
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001815 return;
1816
1817 if (TimePassesIsEnabled)
1818 DebugTimer->startTimer();
1819
Devang Patel53bb5c92009-11-10 23:06:00 +00001820 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
1821 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
1822 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
1823 DIE *ISP = *AI;
Devang Patel2c4ceb12009-11-21 02:48:08 +00001824 addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +00001825 }
1826
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001827 // Insert top level DIEs.
1828 for (SmallVector<DIE *, 4>::iterator TI = TopLevelDIEsVector.begin(),
1829 TE = TopLevelDIEsVector.end(); TI != TE; ++TI)
1830 ModuleCU->getCUDie()->addChild(*TI);
1831
Devang Patel622b0262010-01-19 06:19:05 +00001832 for (DenseMap<DIE *, MDNode *>::iterator CI = ContainingTypeMap.begin(),
Devang Patel5d11eb02009-12-03 19:11:07 +00001833 CE = ContainingTypeMap.end(); CI != CE; ++CI) {
1834 DIE *SPDie = CI->first;
1835 MDNode *N = dyn_cast_or_null<MDNode>(CI->second);
1836 if (!N) continue;
1837 DIE *NDie = ModuleCU->getDIE(N);
1838 if (!NDie) continue;
1839 addDIEEntry(SPDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
Devang Patelf8b72ca2010-01-15 00:26:31 +00001840 // FIXME - This is not the correct approach.
1841 // addDIEEntry(NDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
Devang Patel5d11eb02009-12-03 19:11:07 +00001842 }
1843
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001844 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001845 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00001846 Asm->OutStreamer.EmitLabel(getTempLabel("text_end"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001847 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00001848 Asm->OutStreamer.EmitLabel(getTempLabel("data_end"));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001849
1850 // End text sections.
1851 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001852 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Chris Lattnerf829eef2010-03-08 22:44:40 +00001853 Asm->OutStreamer.EmitLabel(getDWLabel("section_end", i));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001854 }
1855
1856 // Emit common frame information.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001857 emitCommonDebugFrame();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001858
1859 // Emit function debug frame information
1860 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
1861 E = DebugFrames.end(); I != E; ++I)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001862 emitFunctionDebugFrame(*I);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001863
1864 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001865 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001866
1867 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +00001868 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001869
1870 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001871 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001872
1873 // Emit source line correspondence into a debug line section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001874 emitDebugLines();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001875
1876 // Emit info into a debug pubnames section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001877 emitDebugPubNames();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001878
Devang Patel193f7202009-11-24 01:14:22 +00001879 // Emit info into a debug pubtypes section.
1880 emitDebugPubTypes();
1881
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001882 // Emit info into a debug str section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001883 emitDebugStr();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001884
1885 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001886 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001887
1888 // Emit info into a debug aranges section.
1889 EmitDebugARanges();
1890
1891 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001892 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001893
1894 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001895 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001896
1897 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001898 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001899
Jeffrey Yasskind0f393d2010-03-11 18:29:55 +00001900 delete ModuleCU;
1901 ModuleCU = NULL; // Reset for the next Module, if any.
1902
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001903 if (TimePassesIsEnabled)
1904 DebugTimer->stopTimer();
1905}
1906
Devang Patel53bb5c92009-11-10 23:06:00 +00001907/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001908DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var,
1909 unsigned FrameIdx,
Devang Patel53bb5c92009-11-10 23:06:00 +00001910 DILocation &ScopeLoc) {
1911
1912 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var.getNode());
1913 if (AbsDbgVariable)
1914 return AbsDbgVariable;
1915
1916 DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope().getNode());
1917 if (!Scope)
1918 return NULL;
1919
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001920 AbsDbgVariable = new DbgVariable(Var, FrameIdx,
1921 NULL /* No more-abstract variable*/);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001922 Scope->addVariable(AbsDbgVariable);
Devang Patel53bb5c92009-11-10 23:06:00 +00001923 AbstractVariables[Var.getNode()] = AbsDbgVariable;
1924 return AbsDbgVariable;
1925}
1926
Devang Patel2c4ceb12009-11-21 02:48:08 +00001927/// collectVariableInfo - Populate DbgScope entries with variables' info.
1928void DwarfDebug::collectVariableInfo() {
Devang Patelac1ceb32009-10-09 22:42:28 +00001929 if (!MMI) return;
Devang Patel53bb5c92009-11-10 23:06:00 +00001930
Devang Patele717faa2009-10-06 01:26:37 +00001931 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
1932 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
1933 VE = VMap.end(); VI != VE; ++VI) {
Devang Patelbc5201f2010-01-22 22:52:10 +00001934 MDNode *Var = VI->first;
Devang Patel53bb5c92009-11-10 23:06:00 +00001935 if (!Var) continue;
Devang Pateleda31212009-10-08 18:48:03 +00001936 DIVariable DV (Var);
Devang Patel53bb5c92009-11-10 23:06:00 +00001937 std::pair< unsigned, MDNode *> VP = VI->second;
1938 DILocation ScopeLoc(VP.second);
1939
1940 DbgScope *Scope =
1941 ConcreteScopes.lookup(ScopeLoc.getOrigLocation().getNode());
1942 if (!Scope)
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001943 Scope = DbgScopeMap.lookup(ScopeLoc.getScope().getNode());
Devang Patelfb0ee432009-11-10 23:20:04 +00001944 // If variable scope is not found then skip this variable.
1945 if (!Scope)
1946 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +00001947
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00001948 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.first, ScopeLoc);
1949 DbgVariable *RegVar = new DbgVariable(DV, VP.first, AbsDbgVariable);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001950 Scope->addVariable(RegVar);
Devang Patele717faa2009-10-06 01:26:37 +00001951 }
1952}
1953
Devang Patel2c4ceb12009-11-21 02:48:08 +00001954/// beginScope - Process beginning of a scope starting at Label.
Chris Lattnerc6087842010-03-09 04:54:43 +00001955void DwarfDebug::beginScope(const MachineInstr *MI, MCSymbol *Label) {
Devang Patel0d20ac82009-10-06 01:50:42 +00001956 InsnToDbgScopeMapTy::iterator I = DbgScopeBeginMap.find(MI);
1957 if (I == DbgScopeBeginMap.end())
1958 return;
Dan Gohman277207e2009-11-23 21:30:55 +00001959 ScopeVector &SD = I->second;
Devang Patel53bb5c92009-11-10 23:06:00 +00001960 for (ScopeVector::iterator SDI = SD.begin(), SDE = SD.end();
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001961 SDI != SDE; ++SDI)
Chris Lattnerc6087842010-03-09 04:54:43 +00001962 (*SDI)->setStartLabel(Label);
Devang Patel0d20ac82009-10-06 01:50:42 +00001963}
1964
Devang Patel2c4ceb12009-11-21 02:48:08 +00001965/// endScope - Process end of a scope.
1966void DwarfDebug::endScope(const MachineInstr *MI) {
Devang Patel0d20ac82009-10-06 01:50:42 +00001967 InsnToDbgScopeMapTy::iterator I = DbgScopeEndMap.find(MI);
Devang Patel8a4087d2009-10-06 03:15:38 +00001968 if (I == DbgScopeEndMap.end())
Devang Patel0d20ac82009-10-06 01:50:42 +00001969 return;
Devang Patel53bb5c92009-11-10 23:06:00 +00001970
Chris Lattnerb7db7332010-03-09 01:58:53 +00001971 MCSymbol *Label = getDWLabel("label", MMI->NextLabelID());
1972 Asm->OutStreamer.EmitLabel(Label);
Devang Patel53bb5c92009-11-10 23:06:00 +00001973
Chris Lattnerb7db7332010-03-09 01:58:53 +00001974 SmallVector<DbgScope*, 2> &SD = I->second;
Devang Patel0d20ac82009-10-06 01:50:42 +00001975 for (SmallVector<DbgScope *, 2>::iterator SDI = SD.begin(), SDE = SD.end();
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001976 SDI != SDE; ++SDI)
Chris Lattnerb7db7332010-03-09 01:58:53 +00001977 (*SDI)->setEndLabel(Label);
Devang Patel53bb5c92009-11-10 23:06:00 +00001978 return;
1979}
1980
1981/// createDbgScope - Create DbgScope for the scope.
1982void DwarfDebug::createDbgScope(MDNode *Scope, MDNode *InlinedAt) {
1983
1984 if (!InlinedAt) {
1985 DbgScope *WScope = DbgScopeMap.lookup(Scope);
1986 if (WScope)
1987 return;
1988 WScope = new DbgScope(NULL, DIDescriptor(Scope), NULL);
1989 DbgScopeMap.insert(std::make_pair(Scope, WScope));
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001990 if (DIDescriptor(Scope).isLexicalBlock())
Devang Patel2f105c62009-11-11 00:18:40 +00001991 createDbgScope(DILexicalBlock(Scope).getContext().getNode(), NULL);
Devang Patel53bb5c92009-11-10 23:06:00 +00001992 return;
1993 }
1994
1995 DbgScope *WScope = DbgScopeMap.lookup(InlinedAt);
1996 if (WScope)
1997 return;
1998
1999 WScope = new DbgScope(NULL, DIDescriptor(Scope), InlinedAt);
2000 DbgScopeMap.insert(std::make_pair(InlinedAt, WScope));
2001 DILocation DL(InlinedAt);
2002 createDbgScope(DL.getScope().getNode(), DL.getOrigLocation().getNode());
Devang Patel0d20ac82009-10-06 01:50:42 +00002003}
2004
Devang Patel2c4ceb12009-11-21 02:48:08 +00002005/// extractScopeInformation - Scan machine instructions in this function
Devang Patelaf9e8472009-10-01 20:31:14 +00002006/// and collect DbgScopes. Return true, if atleast one scope was found.
Chris Lattnereec791a2010-01-26 23:18:02 +00002007bool DwarfDebug::extractScopeInformation() {
Devang Patelaf9e8472009-10-01 20:31:14 +00002008 // If scope information was extracted using .dbg intrinsics then there is not
2009 // any need to extract these information by scanning each instruction.
2010 if (!DbgScopeMap.empty())
2011 return false;
2012
Devang Patel344130e2010-01-04 20:44:00 +00002013 DenseMap<const MachineInstr *, unsigned> MIIndexMap;
2014 unsigned MIIndex = 0;
Devang Patel53bb5c92009-11-10 23:06:00 +00002015 // Scan each instruction and create scopes. First build working set of scopes.
Devang Patelaf9e8472009-10-01 20:31:14 +00002016 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
2017 I != E; ++I) {
2018 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2019 II != IE; ++II) {
2020 const MachineInstr *MInsn = II;
Devang Patel344130e2010-01-04 20:44:00 +00002021 MIIndexMap[MInsn] = MIIndex++;
Devang Patelaf9e8472009-10-01 20:31:14 +00002022 DebugLoc DL = MInsn->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00002023 if (DL.isUnknown()) continue;
Devang Patel6b61f582010-01-16 06:09:35 +00002024 DILocation DLT = MF->getDILocation(DL);
2025 DIScope DLTScope = DLT.getScope();
Devang Patelaf9e8472009-10-01 20:31:14 +00002026 // There is no need to create another DIE for compile unit. For all
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002027 // other scopes, create one DbgScope now. This will be translated
Devang Patelaf9e8472009-10-01 20:31:14 +00002028 // into a scope DIE at the end.
Devang Patel6b61f582010-01-16 06:09:35 +00002029 if (DLTScope.isCompileUnit()) continue;
2030 createDbgScope(DLTScope.getNode(), DLT.getOrigLocation().getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00002031 }
2032 }
2033
2034
2035 // Build scope hierarchy using working set of scopes.
2036 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
2037 I != E; ++I) {
2038 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2039 II != IE; ++II) {
2040 const MachineInstr *MInsn = II;
2041 DebugLoc DL = MInsn->getDebugLoc();
2042 if (DL.isUnknown()) continue;
Devang Patel6b61f582010-01-16 06:09:35 +00002043 DILocation DLT = MF->getDILocation(DL);
2044 DIScope DLTScope = DLT.getScope();
Devang Patel53bb5c92009-11-10 23:06:00 +00002045 // There is no need to create another DIE for compile unit. For all
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002046 // other scopes, create one DbgScope now. This will be translated
Devang Patel53bb5c92009-11-10 23:06:00 +00002047 // into a scope DIE at the end.
Devang Patel6b61f582010-01-16 06:09:35 +00002048 if (DLTScope.isCompileUnit()) continue;
2049 DbgScope *Scope = getUpdatedDbgScope(DLTScope.getNode(), MInsn,
2050 DLT.getOrigLocation().getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00002051 Scope->setLastInsn(MInsn);
Devang Patelaf9e8472009-10-01 20:31:14 +00002052 }
2053 }
2054
Devang Patel344130e2010-01-04 20:44:00 +00002055 if (!CurrentFnDbgScope)
2056 return false;
2057
2058 CurrentFnDbgScope->fixInstructionMarkers(MIIndexMap);
Devang Patelaf9e8472009-10-01 20:31:14 +00002059
2060 // Each scope has first instruction and last instruction to mark beginning
2061 // and end of a scope respectively. Create an inverse map that list scopes
2062 // starts (and ends) with an instruction. One instruction may start (or end)
Devang Patel42aafd72010-01-20 02:05:23 +00002063 // multiple scopes. Ignore scopes that are not reachable.
2064 SmallVector<DbgScope *, 4> WorkList;
2065 WorkList.push_back(CurrentFnDbgScope);
2066 while (!WorkList.empty()) {
2067 DbgScope *S = WorkList.back(); WorkList.pop_back();
2068
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00002069 const SmallVector<DbgScope *, 4> &Children = S->getScopes();
Devang Patel42aafd72010-01-20 02:05:23 +00002070 if (!Children.empty())
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00002071 for (SmallVector<DbgScope *, 4>::const_iterator SI = Children.begin(),
Devang Patel42aafd72010-01-20 02:05:23 +00002072 SE = Children.end(); SI != SE; ++SI)
2073 WorkList.push_back(*SI);
2074
Devang Patel53bb5c92009-11-10 23:06:00 +00002075 if (S->isAbstractScope())
2076 continue;
Devang Patelaf9e8472009-10-01 20:31:14 +00002077 const MachineInstr *MI = S->getFirstInsn();
2078 assert (MI && "DbgScope does not have first instruction!");
2079
2080 InsnToDbgScopeMapTy::iterator IDI = DbgScopeBeginMap.find(MI);
2081 if (IDI != DbgScopeBeginMap.end())
2082 IDI->second.push_back(S);
2083 else
Devang Patel53bb5c92009-11-10 23:06:00 +00002084 DbgScopeBeginMap[MI].push_back(S);
Devang Patelaf9e8472009-10-01 20:31:14 +00002085
2086 MI = S->getLastInsn();
2087 assert (MI && "DbgScope does not have last instruction!");
2088 IDI = DbgScopeEndMap.find(MI);
2089 if (IDI != DbgScopeEndMap.end())
2090 IDI->second.push_back(S);
2091 else
Devang Patel53bb5c92009-11-10 23:06:00 +00002092 DbgScopeEndMap[MI].push_back(S);
Devang Patelaf9e8472009-10-01 20:31:14 +00002093 }
2094
2095 return !DbgScopeMap.empty();
2096}
2097
Devang Patel2c4ceb12009-11-21 02:48:08 +00002098/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002099/// emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +00002100void DwarfDebug::beginFunction(const MachineFunction *MF) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002101 this->MF = MF;
2102
2103 if (!ShouldEmitDwarfDebug()) return;
2104
2105 if (TimePassesIsEnabled)
2106 DebugTimer->startTimer();
2107
Chris Lattnereec791a2010-01-26 23:18:02 +00002108 if (!extractScopeInformation())
Devang Patel60b35bd2009-10-06 18:37:31 +00002109 return;
Devang Patel2c4ceb12009-11-21 02:48:08 +00002110
2111 collectVariableInfo();
Devang Patel60b35bd2009-10-06 18:37:31 +00002112
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002113 // Assumes in correct section after the entry point.
Chris Lattnerf829eef2010-03-08 22:44:40 +00002114 Asm->OutStreamer.EmitLabel(getDWLabel("func_begin", ++SubprogramCount));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002115
2116 // Emit label for the implicitly defined dbg.stoppoint at the start of the
2117 // function.
Devang Patelac1ceb32009-10-09 22:42:28 +00002118 DebugLoc FDL = MF->getDefaultDebugLoc();
2119 if (!FDL.isUnknown()) {
Devang Patel6b61f582010-01-16 06:09:35 +00002120 DILocation DLT = MF->getDILocation(FDL);
Devang Patel6b61f582010-01-16 06:09:35 +00002121 DISubprogram SP = getDISubprogram(DLT.getScope().getNode());
Chris Lattnerb7db7332010-03-09 01:58:53 +00002122 unsigned Line, Col;
2123 if (SP.Verify()) {
2124 Line = SP.getLineNumber();
2125 Col = 0;
2126 } else {
2127 Line = DLT.getLineNumber();
2128 Col = DLT.getColumnNumber();
2129 }
2130
Chris Lattnerc6087842010-03-09 04:54:43 +00002131 recordSourceLine(Line, Col, DLT.getScope().getNode());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002132 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002133 if (TimePassesIsEnabled)
2134 DebugTimer->stopTimer();
2135}
2136
Devang Patel2c4ceb12009-11-21 02:48:08 +00002137/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002138///
Chris Lattnereec791a2010-01-26 23:18:02 +00002139void DwarfDebug::endFunction(const MachineFunction *MF) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002140 if (!ShouldEmitDwarfDebug()) return;
2141
2142 if (TimePassesIsEnabled)
2143 DebugTimer->startTimer();
2144
Devang Patelac1ceb32009-10-09 22:42:28 +00002145 if (DbgScopeMap.empty())
2146 return;
Devang Patel70d75ca2009-11-12 19:02:56 +00002147
Devang Patel344130e2010-01-04 20:44:00 +00002148 if (CurrentFnDbgScope) {
2149 // Define end label for subprogram.
Chris Lattnerf829eef2010-03-08 22:44:40 +00002150 Asm->OutStreamer.EmitLabel(getDWLabel("func_end", SubprogramCount));
Devang Patel344130e2010-01-04 20:44:00 +00002151
2152 // Get function line info.
2153 if (!Lines.empty()) {
2154 // Get section line info.
2155 unsigned ID = SectionMap.insert(Asm->getCurrentSection());
2156 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2157 std::vector<SrcLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2158 // Append the function info to section info.
2159 SectionLineInfos.insert(SectionLineInfos.end(),
2160 Lines.begin(), Lines.end());
2161 }
2162
2163 // Construct abstract scopes.
2164 for (SmallVector<DbgScope *, 4>::iterator AI = AbstractScopesList.begin(),
2165 AE = AbstractScopesList.end(); AI != AE; ++AI)
2166 constructScopeDIE(*AI);
2167
2168 constructScopeDIE(CurrentFnDbgScope);
2169
2170 DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
2171 MMI->getFrameMoves()));
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002172 }
2173
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002174 // Clear debug info
Devang Patelf54b8522010-01-19 01:26:02 +00002175 CurrentFnDbgScope = NULL;
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00002176 DeleteContainerSeconds(DbgScopeMap);
Devang Patelf54b8522010-01-19 01:26:02 +00002177 DbgScopeBeginMap.clear();
2178 DbgScopeEndMap.clear();
2179 ConcreteScopes.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00002180 DeleteContainerSeconds(AbstractScopes);
Devang Patelf54b8522010-01-19 01:26:02 +00002181 AbstractScopesList.clear();
Jeffrey Yasskin5c213dc2010-03-12 17:45:06 +00002182 AbstractVariables.clear();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002183 Lines.clear();
Devang Patelc09ddc12009-12-01 18:13:48 +00002184
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002185 if (TimePassesIsEnabled)
2186 DebugTimer->stopTimer();
2187}
2188
Chris Lattnerc6087842010-03-09 04:54:43 +00002189/// recordSourceLine - Register a source line with debug info. Returns the
2190/// unique label that was emitted and which provides correspondence to
2191/// the source line list.
2192MCSymbol *DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, MDNode *S) {
Devang Patele4b27562009-08-28 23:24:31 +00002193 if (!MMI)
2194 return 0;
2195
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002196 if (TimePassesIsEnabled)
2197 DebugTimer->startTimer();
2198
Devang Patel65dbc902009-11-25 17:36:49 +00002199 StringRef Dir;
2200 StringRef Fn;
Devang Patelf84548d2009-10-05 18:03:19 +00002201
2202 DIDescriptor Scope(S);
2203 if (Scope.isCompileUnit()) {
2204 DICompileUnit CU(S);
2205 Dir = CU.getDirectory();
2206 Fn = CU.getFilename();
2207 } else if (Scope.isSubprogram()) {
2208 DISubprogram SP(S);
2209 Dir = SP.getDirectory();
2210 Fn = SP.getFilename();
2211 } else if (Scope.isLexicalBlock()) {
2212 DILexicalBlock DB(S);
2213 Dir = DB.getDirectory();
2214 Fn = DB.getFilename();
2215 } else
2216 assert (0 && "Unexpected scope info");
2217
2218 unsigned Src = GetOrCreateSourceID(Dir, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002219 unsigned ID = MMI->NextLabelID();
2220 Lines.push_back(SrcLineInfo(Line, Col, Src, ID));
2221
2222 if (TimePassesIsEnabled)
2223 DebugTimer->stopTimer();
2224
Chris Lattnerc6087842010-03-09 04:54:43 +00002225 MCSymbol *Label = getDWLabel("label", ID);
2226 Asm->OutStreamer.EmitLabel(Label);
2227 return Label;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002228}
2229
2230/// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
2231/// timed. Look up the source id with the given directory and source file
2232/// names. If none currently exists, create a new id and insert it in the
2233/// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
2234/// well.
2235unsigned DwarfDebug::getOrCreateSourceID(const std::string &DirName,
2236 const std::string &FileName) {
2237 if (TimePassesIsEnabled)
2238 DebugTimer->startTimer();
2239
Devang Patel5ccdd102009-09-29 18:40:58 +00002240 unsigned SrcId = GetOrCreateSourceID(DirName.c_str(), FileName.c_str());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002241
2242 if (TimePassesIsEnabled)
2243 DebugTimer->stopTimer();
2244
2245 return SrcId;
2246}
2247
Bill Wendling829e67b2009-05-20 23:22:40 +00002248//===----------------------------------------------------------------------===//
2249// Emit Methods
2250//===----------------------------------------------------------------------===//
2251
Devang Patel2c4ceb12009-11-21 02:48:08 +00002252/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00002253///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002254unsigned
2255DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002256 // Get the children.
2257 const std::vector<DIE *> &Children = Die->getChildren();
2258
2259 // If not last sibling and has children then add sibling offset attribute.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002260 if (!Last && !Children.empty()) Die->addSiblingOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00002261
2262 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002263 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00002264
2265 // Get the abbreviation for this DIE.
2266 unsigned AbbrevNumber = Die->getAbbrevNumber();
2267 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2268
2269 // Set DIE offset
2270 Die->setOffset(Offset);
2271
2272 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00002273 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00002274
2275 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2276 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2277
2278 // Size the DIE attribute values.
2279 for (unsigned i = 0, N = Values.size(); i < N; ++i)
2280 // Size attribute value.
2281 Offset += Values[i]->SizeOf(TD, AbbrevData[i].getForm());
2282
2283 // Size the DIE children if any.
2284 if (!Children.empty()) {
2285 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
2286 "Children flag not set");
2287
2288 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00002289 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00002290
2291 // End of children marker.
2292 Offset += sizeof(int8_t);
2293 }
2294
2295 Die->setSize(Offset - Die->getOffset());
2296 return Offset;
2297}
2298
Devang Patel2c4ceb12009-11-21 02:48:08 +00002299/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00002300///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002301void DwarfDebug::computeSizeAndOffsets() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002302 // Compute size of compile unit header.
2303 static unsigned Offset =
2304 sizeof(int32_t) + // Length of Compilation Unit Info
2305 sizeof(int16_t) + // DWARF version number
2306 sizeof(int32_t) + // Offset Into Abbrev. Section
2307 sizeof(int8_t); // Pointer Size (in bytes)
2308
Devang Patel2c4ceb12009-11-21 02:48:08 +00002309 computeSizeAndOffset(ModuleCU->getCUDie(), Offset, true);
Devang Patel1dbc7712009-06-29 20:45:18 +00002310 CompileUnitOffsets[ModuleCU] = 0;
Bill Wendling94d04b82009-05-20 23:21:38 +00002311}
2312
Devang Patel2c4ceb12009-11-21 02:48:08 +00002313/// emitInitial - Emit initial Dwarf declarations. This is necessary for cc
Bill Wendling94d04b82009-05-20 23:21:38 +00002314/// tools to recognize the object file contains Dwarf information.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002315void DwarfDebug::emitInitial() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002316 // Check to see if we already emitted intial headers.
2317 if (didInitial) return;
2318 didInitial = true;
2319
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002320 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002321
Bill Wendling94d04b82009-05-20 23:21:38 +00002322 // Dwarf sections base addresses.
Chris Lattner33adcfb2009-08-22 21:43:10 +00002323 if (MAI->doesDwarfRequireFrameSection()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002324 Asm->OutStreamer.SwitchSection(TLOF.getDwarfFrameSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002325 Asm->OutStreamer.EmitLabel(getTempLabel("section_debug_frame"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002326 }
2327
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002328 Asm->OutStreamer.SwitchSection(TLOF.getDwarfInfoSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002329 Asm->OutStreamer.EmitLabel(getTempLabel("section_info"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002330 Asm->OutStreamer.SwitchSection(TLOF.getDwarfAbbrevSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002331 Asm->OutStreamer.EmitLabel(getTempLabel("section_abbrev"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002332 Asm->OutStreamer.SwitchSection(TLOF.getDwarfARangesSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002333 Asm->OutStreamer.EmitLabel(getTempLabel("section_aranges"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002334
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002335 if (const MCSection *LineInfoDirective = TLOF.getDwarfMacroInfoSection()) {
2336 Asm->OutStreamer.SwitchSection(LineInfoDirective);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002337 Asm->OutStreamer.EmitLabel(getTempLabel("section_macinfo"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002338 }
2339
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002340 Asm->OutStreamer.SwitchSection(TLOF.getDwarfLineSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002341 Asm->OutStreamer.EmitLabel(getTempLabel("section_line"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002342 Asm->OutStreamer.SwitchSection(TLOF.getDwarfLocSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002343 Asm->OutStreamer.EmitLabel(getTempLabel("section_loc"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002344 Asm->OutStreamer.SwitchSection(TLOF.getDwarfPubNamesSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002345 Asm->OutStreamer.EmitLabel(getTempLabel("section_pubnames"));
Devang Patel193f7202009-11-24 01:14:22 +00002346 Asm->OutStreamer.SwitchSection(TLOF.getDwarfPubTypesSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002347 Asm->OutStreamer.EmitLabel(getTempLabel("section_pubtypes"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002348 Asm->OutStreamer.SwitchSection(TLOF.getDwarfStrSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002349 Asm->OutStreamer.EmitLabel(getTempLabel("section_str"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002350 Asm->OutStreamer.SwitchSection(TLOF.getDwarfRangesSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002351 Asm->OutStreamer.EmitLabel(getTempLabel("section_ranges"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002352
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002353 Asm->OutStreamer.SwitchSection(TLOF.getTextSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002354 Asm->OutStreamer.EmitLabel(getTempLabel("text_begin"));
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002355 Asm->OutStreamer.SwitchSection(TLOF.getDataSection());
Chris Lattnerf829eef2010-03-08 22:44:40 +00002356 Asm->OutStreamer.EmitLabel(getTempLabel("data_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002357}
2358
Devang Patel2c4ceb12009-11-21 02:48:08 +00002359/// emitDIE - Recusively Emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00002360///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002361void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002362 // Get the abbreviation for this DIE.
2363 unsigned AbbrevNumber = Die->getAbbrevNumber();
2364 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2365
Bill Wendling94d04b82009-05-20 23:21:38 +00002366 // Emit the code (index) for the abbreviation.
Chris Lattner894d75a2010-01-22 23:18:42 +00002367 if (Asm->VerboseAsm)
2368 Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" +
2369 Twine::utohexstr(Die->getOffset()) + ":0x" +
2370 Twine::utohexstr(Die->getSize()) + " " +
2371 dwarf::TagString(Abbrev->getTag()));
2372 EmitULEB128(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00002373
2374 SmallVector<DIEValue*, 32> &Values = Die->getValues();
2375 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2376
2377 // Emit the DIE attribute values.
2378 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2379 unsigned Attr = AbbrevData[i].getAttribute();
2380 unsigned Form = AbbrevData[i].getForm();
2381 assert(Form && "Too many attributes for DIE (check abbreviation)");
2382
Chris Lattnera8013622010-01-24 18:54:17 +00002383 if (Asm->VerboseAsm)
2384 Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr));
2385
Bill Wendling94d04b82009-05-20 23:21:38 +00002386 switch (Attr) {
2387 case dwarf::DW_AT_sibling:
Devang Patel2c4ceb12009-11-21 02:48:08 +00002388 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002389 break;
2390 case dwarf::DW_AT_abstract_origin: {
2391 DIEEntry *E = cast<DIEEntry>(Values[i]);
2392 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00002393 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00002394 Asm->EmitInt32(Addr);
2395 break;
2396 }
2397 default:
2398 // Emit an attribute using the defined form.
2399 Values[i]->EmitValue(this, Form);
2400 break;
2401 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002402 }
2403
2404 // Emit the DIE children if any.
2405 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
2406 const std::vector<DIE *> &Children = Die->getChildren();
2407
2408 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00002409 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00002410
Chris Lattner233f52b2010-03-09 23:52:58 +00002411 if (Asm->VerboseAsm)
2412 Asm->OutStreamer.AddComment("End Of Children Mark");
2413 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002414 }
2415}
2416
Devang Patel8a241142009-12-09 18:24:21 +00002417/// emitDebugInfo - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002418///
Devang Patel8a241142009-12-09 18:24:21 +00002419void DwarfDebug::emitDebugInfo() {
2420 // Start debug info section.
2421 Asm->OutStreamer.SwitchSection(
2422 Asm->getObjFileLowering().getDwarfInfoSection());
2423 DIE *Die = ModuleCU->getCUDie();
Bill Wendling94d04b82009-05-20 23:21:38 +00002424
2425 // Emit the compile units header.
Chris Lattnerf829eef2010-03-08 22:44:40 +00002426 Asm->OutStreamer.EmitLabel(getDWLabel("info_begin", ModuleCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00002427
2428 // Emit size of content not including length itself
2429 unsigned ContentSize = Die->getSize() +
2430 sizeof(int16_t) + // DWARF version number
2431 sizeof(int32_t) + // Offset Into Abbrev. Section
2432 sizeof(int8_t) + // Pointer Size (in bytes)
2433 sizeof(int32_t); // FIXME - extra pad for gdb bug.
2434
Chris Lattner233f52b2010-03-09 23:52:58 +00002435 Asm->OutStreamer.AddComment("Length of Compilation Unit Info");
2436 Asm->EmitInt32(ContentSize);
2437 Asm->OutStreamer.AddComment("DWARF version number");
2438 Asm->EmitInt16(dwarf::DWARF_VERSION);
2439 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00002440 EmitSectionOffset(getTempLabel("abbrev_begin"),getTempLabel("section_abbrev"),
2441 true, false);
Chris Lattner233f52b2010-03-09 23:52:58 +00002442 Asm->OutStreamer.AddComment("Address Size (in bytes)");
2443 Asm->EmitInt8(TD->getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002444
Devang Patel2c4ceb12009-11-21 02:48:08 +00002445 emitDIE(Die);
Bill Wendling94d04b82009-05-20 23:21:38 +00002446 // FIXME - extra padding for gdb bug.
Chris Lattner233f52b2010-03-09 23:52:58 +00002447 Asm->OutStreamer.AddComment("4 extra padding bytes for GDB");
2448 Asm->EmitInt8(0);
2449 Asm->EmitInt8(0);
2450 Asm->EmitInt8(0);
2451 Asm->EmitInt8(0);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002452 Asm->OutStreamer.EmitLabel(getDWLabel("info_end", ModuleCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00002453}
2454
Devang Patel2c4ceb12009-11-21 02:48:08 +00002455/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002456///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002457void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00002458 // Check to see if it is worth the effort.
2459 if (!Abbreviations.empty()) {
2460 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002461 Asm->OutStreamer.SwitchSection(
2462 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002463
Chris Lattnerf829eef2010-03-08 22:44:40 +00002464 Asm->OutStreamer.EmitLabel(getTempLabel("abbrev_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002465
2466 // For each abbrevation.
2467 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2468 // Get abbreviation data
2469 const DIEAbbrev *Abbrev = Abbreviations[i];
2470
2471 // Emit the abbrevations code (base 1 index.)
Chris Lattner894d75a2010-01-22 23:18:42 +00002472 EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
Bill Wendling94d04b82009-05-20 23:21:38 +00002473
2474 // Emit the abbreviations data.
Chris Lattner894d75a2010-01-22 23:18:42 +00002475 Abbrev->Emit(this);
Bill Wendling94d04b82009-05-20 23:21:38 +00002476 }
2477
2478 // Mark end of abbreviations.
Chris Lattner894d75a2010-01-22 23:18:42 +00002479 EmitULEB128(0, "EOM(3)");
Bill Wendling94d04b82009-05-20 23:21:38 +00002480
Chris Lattnerf829eef2010-03-08 22:44:40 +00002481 Asm->OutStreamer.EmitLabel(getTempLabel("abbrev_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002482 }
2483}
2484
Devang Patel2c4ceb12009-11-21 02:48:08 +00002485/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00002486/// the line matrix.
2487///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002488void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002489 // Define last address of section.
Chris Lattner233f52b2010-03-09 23:52:58 +00002490 Asm->OutStreamer.AddComment("Extended Op");
2491 Asm->EmitInt8(0);
2492
2493 Asm->OutStreamer.AddComment("Op size");
2494 Asm->EmitInt8(TD->getPointerSize() + 1);
2495 Asm->OutStreamer.AddComment("DW_LNE_set_address");
2496 Asm->EmitInt8(dwarf::DW_LNE_set_address);
2497
2498 Asm->OutStreamer.AddComment("Section end label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00002499
2500 Asm->OutStreamer.EmitSymbolValue(getDWLabel("section_end", SectionEnd),
2501 TD->getPointerSize(), 0/*AddrSpace*/);
Bill Wendling94d04b82009-05-20 23:21:38 +00002502
2503 // Mark end of matrix.
Chris Lattner233f52b2010-03-09 23:52:58 +00002504 Asm->OutStreamer.AddComment("DW_LNE_end_sequence");
2505 Asm->EmitInt8(0);
Chris Lattner0ad9c912010-01-22 22:09:00 +00002506 Asm->EmitInt8(1);
Chris Lattner894d75a2010-01-22 23:18:42 +00002507 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00002508}
2509
Devang Patel2c4ceb12009-11-21 02:48:08 +00002510/// emitDebugLines - Emit source line information.
Bill Wendling94d04b82009-05-20 23:21:38 +00002511///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002512void DwarfDebug::emitDebugLines() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002513 // If the target is using .loc/.file, the assembler will be emitting the
2514 // .debug_line table automatically.
Chris Lattner33adcfb2009-08-22 21:43:10 +00002515 if (MAI->hasDotLocAndDotFile())
Bill Wendling94d04b82009-05-20 23:21:38 +00002516 return;
2517
2518 // Minimum line delta, thus ranging from -10..(255-10).
2519 const int MinLineDelta = -(dwarf::DW_LNS_fixed_advance_pc + 1);
2520 // Maximum line delta, thus ranging from -10..(255-10).
2521 const int MaxLineDelta = 255 + MinLineDelta;
2522
2523 // Start the dwarf line section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002524 Asm->OutStreamer.SwitchSection(
2525 Asm->getObjFileLowering().getDwarfLineSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002526
2527 // Construct the section header.
Chris Lattner233f52b2010-03-09 23:52:58 +00002528 Asm->OutStreamer.AddComment("Length of Source Line Info");
Chris Lattnerf829eef2010-03-08 22:44:40 +00002529 EmitDifference(getTempLabel("line_end"), getTempLabel("line_begin"), true);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002530 Asm->OutStreamer.EmitLabel(getTempLabel("line_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002531
Chris Lattner233f52b2010-03-09 23:52:58 +00002532 Asm->OutStreamer.AddComment("DWARF version number");
2533 Asm->EmitInt16(dwarf::DWARF_VERSION);
Bill Wendling94d04b82009-05-20 23:21:38 +00002534
Chris Lattner233f52b2010-03-09 23:52:58 +00002535 Asm->OutStreamer.AddComment("Prolog Length");
Chris Lattnerf829eef2010-03-08 22:44:40 +00002536 EmitDifference(getTempLabel("line_prolog_end"),
2537 getTempLabel("line_prolog_begin"), true);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002538 Asm->OutStreamer.EmitLabel(getTempLabel("line_prolog_begin"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002539
Chris Lattner233f52b2010-03-09 23:52:58 +00002540 Asm->OutStreamer.AddComment("Minimum Instruction Length");
2541 Asm->EmitInt8(1);
2542 Asm->OutStreamer.AddComment("Default is_stmt_start flag");
2543 Asm->EmitInt8(1);
2544 Asm->OutStreamer.AddComment("Line Base Value (Special Opcodes)");
2545 Asm->EmitInt8(MinLineDelta);
2546 Asm->OutStreamer.AddComment("Line Range Value (Special Opcodes)");
2547 Asm->EmitInt8(MaxLineDelta);
2548 Asm->OutStreamer.AddComment("Special Opcode Base");
2549 Asm->EmitInt8(-MinLineDelta);
Bill Wendling94d04b82009-05-20 23:21:38 +00002550
2551 // Line number standard opcode encodings argument count
Chris Lattner233f52b2010-03-09 23:52:58 +00002552 Asm->OutStreamer.AddComment("DW_LNS_copy arg count");
2553 Asm->EmitInt8(0);
2554 Asm->OutStreamer.AddComment("DW_LNS_advance_pc arg count");
2555 Asm->EmitInt8(1);
2556 Asm->OutStreamer.AddComment("DW_LNS_advance_line arg count");
2557 Asm->EmitInt8(1);
2558 Asm->OutStreamer.AddComment("DW_LNS_set_file arg count");
2559 Asm->EmitInt8(1);
2560 Asm->OutStreamer.AddComment("DW_LNS_set_column arg count");
2561 Asm->EmitInt8(1);
2562 Asm->OutStreamer.AddComment("DW_LNS_negate_stmt arg count");
2563 Asm->EmitInt8(0);
2564 Asm->OutStreamer.AddComment("DW_LNS_set_basic_block arg count");
2565 Asm->EmitInt8(0);
2566 Asm->OutStreamer.AddComment("DW_LNS_const_add_pc arg count");
2567 Asm->EmitInt8(0);
2568 Asm->OutStreamer.AddComment("DW_LNS_fixed_advance_pc arg count");
2569 Asm->EmitInt8(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00002570
2571 // Emit directories.
2572 for (unsigned DI = 1, DE = getNumSourceDirectories()+1; DI != DE; ++DI) {
Chris Lattner4cf202b2010-01-23 03:11:46 +00002573 const std::string &Dir = getSourceDirectoryName(DI);
2574 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("Directory");
2575 Asm->OutStreamer.EmitBytes(StringRef(Dir.c_str(), Dir.size()+1), 0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002576 }
2577
Chris Lattner233f52b2010-03-09 23:52:58 +00002578 Asm->OutStreamer.AddComment("End of directories");
2579 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002580
2581 // Emit files.
2582 for (unsigned SI = 1, SE = getNumSourceIds()+1; SI != SE; ++SI) {
2583 // Remember source id starts at 1.
2584 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(SI);
Chris Lattner4cf202b2010-01-23 03:11:46 +00002585 const std::string &FN = getSourceFileName(Id.second);
2586 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("Source");
2587 Asm->OutStreamer.EmitBytes(StringRef(FN.c_str(), FN.size()+1), 0);
2588
Chris Lattner894d75a2010-01-22 23:18:42 +00002589 EmitULEB128(Id.first, "Directory #");
2590 EmitULEB128(0, "Mod date");
2591 EmitULEB128(0, "File size");
Bill Wendling94d04b82009-05-20 23:21:38 +00002592 }
2593
Chris Lattner233f52b2010-03-09 23:52:58 +00002594 Asm->OutStreamer.AddComment("End of files");
2595 Asm->EmitInt8(0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002596
Chris Lattnerf829eef2010-03-08 22:44:40 +00002597 Asm->OutStreamer.EmitLabel(getTempLabel("line_prolog_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002598
2599 // A sequence for each text section.
2600 unsigned SecSrcLinesSize = SectionSourceLines.size();
2601
2602 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
2603 // Isolate current sections line info.
2604 const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j];
2605
Bill Wendling94d04b82009-05-20 23:21:38 +00002606 // Dwarf assumes we start with first line of first source file.
2607 unsigned Source = 1;
2608 unsigned Line = 1;
2609
2610 // Construct rows of the address, source, line, column matrix.
2611 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2612 const SrcLineInfo &LineInfo = LineInfos[i];
Chris Lattnera34ec2292010-03-09 01:51:43 +00002613 unsigned LabelID = LineInfo.getLabelID();
2614 if (MMI->isLabelDeleted(LabelID)) continue;
Bill Wendling94d04b82009-05-20 23:21:38 +00002615
Caroline Ticec6f9d622009-09-11 18:25:54 +00002616 if (LineInfo.getLine() == 0) continue;
2617
Chris Lattner0d9d70f2010-03-09 23:38:23 +00002618 if (Asm->isVerbose()) {
Chris Lattner188a87d2010-03-10 01:04:13 +00002619 std::pair<unsigned, unsigned> SrcID =
Bill Wendling94d04b82009-05-20 23:21:38 +00002620 getSourceDirectoryAndFileIds(LineInfo.getSourceID());
Chris Lattner188a87d2010-03-10 01:04:13 +00002621 Asm->OutStreamer.AddComment(Twine(getSourceDirectoryName(SrcID.first)) +
Chris Lattner49f618a2010-03-10 02:29:31 +00002622 "/" +
2623 Twine(getSourceFileName(SrcID.second)) +
Chris Lattner188a87d2010-03-10 01:04:13 +00002624 ":" + Twine(LineInfo.getLine()));
Bill Wendling94d04b82009-05-20 23:21:38 +00002625 }
2626
2627 // Define the line address.
Chris Lattner233f52b2010-03-09 23:52:58 +00002628 Asm->OutStreamer.AddComment("Extended Op");
2629 Asm->EmitInt8(0);
2630 Asm->OutStreamer.AddComment("Op size");
2631 Asm->EmitInt8(TD->getPointerSize() + 1);
2632
2633 Asm->OutStreamer.AddComment("DW_LNE_set_address");
2634 Asm->EmitInt8(dwarf::DW_LNE_set_address);
2635
2636 Asm->OutStreamer.AddComment("Location label");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00002637 Asm->OutStreamer.EmitSymbolValue(getDWLabel("label", LabelID),
2638 TD->getPointerSize(), 0/*AddrSpace*/);
2639
Bill Wendling94d04b82009-05-20 23:21:38 +00002640 // If change of source, then switch to the new source.
2641 if (Source != LineInfo.getSourceID()) {
2642 Source = LineInfo.getSourceID();
Chris Lattner233f52b2010-03-09 23:52:58 +00002643 Asm->OutStreamer.AddComment("DW_LNS_set_file");
2644 Asm->EmitInt8(dwarf::DW_LNS_set_file);
Chris Lattner894d75a2010-01-22 23:18:42 +00002645 EmitULEB128(Source, "New Source");
Bill Wendling94d04b82009-05-20 23:21:38 +00002646 }
2647
2648 // If change of line.
2649 if (Line != LineInfo.getLine()) {
2650 // Determine offset.
2651 int Offset = LineInfo.getLine() - Line;
2652 int Delta = Offset - MinLineDelta;
2653
2654 // Update line.
2655 Line = LineInfo.getLine();
2656
2657 // If delta is small enough and in range...
2658 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2659 // ... then use fast opcode.
Chris Lattner233f52b2010-03-09 23:52:58 +00002660 Asm->OutStreamer.AddComment("Line Delta");
2661 Asm->EmitInt8(Delta - MinLineDelta);
Bill Wendling94d04b82009-05-20 23:21:38 +00002662 } else {
2663 // ... otherwise use long hand.
Chris Lattner233f52b2010-03-09 23:52:58 +00002664 Asm->OutStreamer.AddComment("DW_LNS_advance_line");
Bill Wendling94d04b82009-05-20 23:21:38 +00002665 Asm->EmitInt8(dwarf::DW_LNS_advance_line);
Chris Lattnerbb9078a2010-01-22 22:56:55 +00002666 EmitSLEB128(Offset, "Line Offset");
Chris Lattner233f52b2010-03-09 23:52:58 +00002667 Asm->OutStreamer.AddComment("DW_LNS_copy");
2668 Asm->EmitInt8(dwarf::DW_LNS_copy);
Bill Wendling94d04b82009-05-20 23:21:38 +00002669 }
2670 } else {
2671 // Copy the previous row (different address or source)
Chris Lattner233f52b2010-03-09 23:52:58 +00002672 Asm->OutStreamer.AddComment("DW_LNS_copy");
2673 Asm->EmitInt8(dwarf::DW_LNS_copy);
Bill Wendling94d04b82009-05-20 23:21:38 +00002674 }
2675 }
2676
Devang Patel2c4ceb12009-11-21 02:48:08 +00002677 emitEndOfLineMatrix(j + 1);
Bill Wendling94d04b82009-05-20 23:21:38 +00002678 }
2679
2680 if (SecSrcLinesSize == 0)
2681 // Because we're emitting a debug_line section, we still need a line
2682 // table. The linker and friends expect it to exist. If there's nothing to
2683 // put into it, emit an empty table.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002684 emitEndOfLineMatrix(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00002685
Chris Lattnerf829eef2010-03-08 22:44:40 +00002686 Asm->OutStreamer.EmitLabel(getTempLabel("line_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002687}
2688
Devang Patel2c4ceb12009-11-21 02:48:08 +00002689/// emitCommonDebugFrame - Emit common frame info into a debug frame section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002690///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002691void DwarfDebug::emitCommonDebugFrame() {
Chris Lattner33adcfb2009-08-22 21:43:10 +00002692 if (!MAI->doesDwarfRequireFrameSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002693 return;
2694
2695 int stackGrowth =
2696 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2697 TargetFrameInfo::StackGrowsUp ?
2698 TD->getPointerSize() : -TD->getPointerSize();
2699
2700 // Start the dwarf frame section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002701 Asm->OutStreamer.SwitchSection(
2702 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002703
Chris Lattnerf829eef2010-03-08 22:44:40 +00002704 Asm->OutStreamer.EmitLabel(getTempLabel("debug_frame_common"));
Chris Lattner233f52b2010-03-09 23:52:58 +00002705 Asm->OutStreamer.AddComment("Length of Common Information Entry");
Chris Lattnereffa8682010-03-08 23:02:59 +00002706 EmitDifference(getTempLabel("debug_frame_common_end"),
2707 getTempLabel("debug_frame_common_begin"), true);
Bill Wendling94d04b82009-05-20 23:21:38 +00002708
Chris Lattnerf829eef2010-03-08 22:44:40 +00002709 Asm->OutStreamer.EmitLabel(getTempLabel("debug_frame_common_begin"));
Chris Lattner233f52b2010-03-09 23:52:58 +00002710 Asm->OutStreamer.AddComment("CIE Identifier Tag");
Bill Wendling94d04b82009-05-20 23:21:38 +00002711 Asm->EmitInt32((int)dwarf::DW_CIE_ID);
Chris Lattner233f52b2010-03-09 23:52:58 +00002712 Asm->OutStreamer.AddComment("CIE Version");
Bill Wendling94d04b82009-05-20 23:21:38 +00002713 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
Chris Lattner233f52b2010-03-09 23:52:58 +00002714 Asm->OutStreamer.AddComment("CIE Augmentation");
Chris Lattner4cf202b2010-01-23 03:11:46 +00002715 Asm->OutStreamer.EmitIntValue(0, 1, /*addrspace*/0); // nul terminator.
Chris Lattner894d75a2010-01-22 23:18:42 +00002716 EmitULEB128(1, "CIE Code Alignment Factor");
Chris Lattnerbb9078a2010-01-22 22:56:55 +00002717 EmitSLEB128(stackGrowth, "CIE Data Alignment Factor");
Chris Lattner233f52b2010-03-09 23:52:58 +00002718 Asm->OutStreamer.AddComment("CIE RA Column");
Bill Wendling94d04b82009-05-20 23:21:38 +00002719 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
Bill Wendling94d04b82009-05-20 23:21:38 +00002720
2721 std::vector<MachineMove> Moves;
2722 RI->getInitialFrameState(Moves);
2723
2724 EmitFrameMoves(NULL, 0, Moves, false);
2725
2726 Asm->EmitAlignment(2, 0, 0, false);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002727 Asm->OutStreamer.EmitLabel(getTempLabel("debug_frame_common_end"));
Bill Wendling94d04b82009-05-20 23:21:38 +00002728}
2729
Devang Patel2c4ceb12009-11-21 02:48:08 +00002730/// emitFunctionDebugFrame - Emit per function frame info into a debug frame
Bill Wendling94d04b82009-05-20 23:21:38 +00002731/// section.
2732void
Devang Patel2c4ceb12009-11-21 02:48:08 +00002733DwarfDebug::emitFunctionDebugFrame(const FunctionDebugFrameInfo&DebugFrameInfo){
Chris Lattner33adcfb2009-08-22 21:43:10 +00002734 if (!MAI->doesDwarfRequireFrameSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002735 return;
2736
2737 // Start the dwarf frame section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002738 Asm->OutStreamer.SwitchSection(
2739 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002740
Chris Lattner233f52b2010-03-09 23:52:58 +00002741 Asm->OutStreamer.AddComment("Length of Frame Information Entry");
Chris Lattnereffa8682010-03-08 23:02:59 +00002742 EmitDifference(getDWLabel("debug_frame_end", DebugFrameInfo.Number),
2743 getDWLabel("debug_frame_begin", DebugFrameInfo.Number), true);
Bill Wendling94d04b82009-05-20 23:21:38 +00002744
Chris Lattnerf829eef2010-03-08 22:44:40 +00002745 Asm->OutStreamer.EmitLabel(getDWLabel("debug_frame_begin",
2746 DebugFrameInfo.Number));
Bill Wendling94d04b82009-05-20 23:21:38 +00002747
Chris Lattner233f52b2010-03-09 23:52:58 +00002748 Asm->OutStreamer.AddComment("FDE CIE offset");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00002749 EmitSectionOffset(getTempLabel("debug_frame_common"),
2750 getTempLabel("section_debug_frame"), true, false);
Bill Wendling94d04b82009-05-20 23:21:38 +00002751
Chris Lattner233f52b2010-03-09 23:52:58 +00002752 Asm->OutStreamer.AddComment("FDE initial location");
Chris Lattnerd85fc6e2010-03-10 01:17:49 +00002753 Asm->OutStreamer.EmitSymbolValue(getDWLabel("func_begin",
2754 DebugFrameInfo.Number),
2755 TD->getPointerSize(), 0/*AddrSpace*/);
2756
2757
2758
Chris Lattner233f52b2010-03-09 23:52:58 +00002759 Asm->OutStreamer.AddComment("FDE address range");
Chris Lattnerc7249da2010-03-08 22:47:57 +00002760 EmitDifference(getDWLabel("func_end", DebugFrameInfo.Number),
2761 getDWLabel("func_begin", DebugFrameInfo.Number));
Bill Wendling94d04b82009-05-20 23:21:38 +00002762
2763 EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves,
2764 false);
2765
2766 Asm->EmitAlignment(2, 0, 0, false);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002767 Asm->OutStreamer.EmitLabel(getDWLabel("debug_frame_end",
2768 DebugFrameInfo.Number));
Bill Wendling94d04b82009-05-20 23:21:38 +00002769}
2770
Devang Patel8a241142009-12-09 18:24:21 +00002771/// emitDebugPubNames - Emit visible names into a debug pubnames section.
2772///
2773void DwarfDebug::emitDebugPubNames() {
2774 // Start the dwarf pubnames section.
2775 Asm->OutStreamer.SwitchSection(
2776 Asm->getObjFileLowering().getDwarfPubNamesSection());
2777
Chris Lattner233f52b2010-03-09 23:52:58 +00002778 Asm->OutStreamer.AddComment("Length of Public Names Info");
Chris Lattnereffa8682010-03-08 23:02:59 +00002779 EmitDifference(getDWLabel("pubnames_end", ModuleCU->getID()),
2780 getDWLabel("pubnames_begin", ModuleCU->getID()), true);
Bill Wendling94d04b82009-05-20 23:21:38 +00002781
Chris Lattnerf829eef2010-03-08 22:44:40 +00002782 Asm->OutStreamer.EmitLabel(getDWLabel("pubnames_begin", ModuleCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00002783
Chris Lattner233f52b2010-03-09 23:52:58 +00002784 Asm->OutStreamer.AddComment("DWARF Version");
2785 Asm->EmitInt16(dwarf::DWARF_VERSION);
Bill Wendling94d04b82009-05-20 23:21:38 +00002786
Chris Lattner233f52b2010-03-09 23:52:58 +00002787 Asm->OutStreamer.AddComment("Offset of Compilation Unit Info");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00002788 EmitSectionOffset(getDWLabel("info_begin", ModuleCU->getID()),
2789 getTempLabel("section_info"),
2790 true, false);
Bill Wendling94d04b82009-05-20 23:21:38 +00002791
Chris Lattner233f52b2010-03-09 23:52:58 +00002792 Asm->OutStreamer.AddComment("Compilation Unit Length");
Chris Lattnereffa8682010-03-08 23:02:59 +00002793 EmitDifference(getDWLabel("info_end", ModuleCU->getID()),
2794 getDWLabel("info_begin", ModuleCU->getID()),
Bill Wendling94d04b82009-05-20 23:21:38 +00002795 true);
Bill Wendling94d04b82009-05-20 23:21:38 +00002796
Devang Patel8a241142009-12-09 18:24:21 +00002797 const StringMap<DIE*> &Globals = ModuleCU->getGlobals();
Bill Wendling94d04b82009-05-20 23:21:38 +00002798 for (StringMap<DIE*>::const_iterator
2799 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2800 const char *Name = GI->getKeyData();
Chris Lattner233f52b2010-03-09 23:52:58 +00002801 DIE *Entity = GI->second;
Bill Wendling94d04b82009-05-20 23:21:38 +00002802
Chris Lattner233f52b2010-03-09 23:52:58 +00002803 Asm->OutStreamer.AddComment("DIE offset");
2804 Asm->EmitInt32(Entity->getOffset());
Chris Lattner4cf202b2010-01-23 03:11:46 +00002805
2806 if (Asm->VerboseAsm)
2807 Asm->OutStreamer.AddComment("External Name");
2808 Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002809 }
2810
Chris Lattner233f52b2010-03-09 23:52:58 +00002811 Asm->OutStreamer.AddComment("End Mark");
2812 Asm->EmitInt32(0);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002813 Asm->OutStreamer.EmitLabel(getDWLabel("pubnames_end", ModuleCU->getID()));
Bill Wendling94d04b82009-05-20 23:21:38 +00002814}
2815
Devang Patel193f7202009-11-24 01:14:22 +00002816void DwarfDebug::emitDebugPubTypes() {
Devang Patelf3a03762009-11-24 19:18:41 +00002817 // Start the dwarf pubnames section.
2818 Asm->OutStreamer.SwitchSection(
2819 Asm->getObjFileLowering().getDwarfPubTypesSection());
Chris Lattner233f52b2010-03-09 23:52:58 +00002820 Asm->OutStreamer.AddComment("Length of Public Types Info");
Chris Lattnereffa8682010-03-08 23:02:59 +00002821 EmitDifference(getDWLabel("pubtypes_end", ModuleCU->getID()),
2822 getDWLabel("pubtypes_begin", ModuleCU->getID()), true);
Devang Patel193f7202009-11-24 01:14:22 +00002823
Chris Lattnerf829eef2010-03-08 22:44:40 +00002824 Asm->OutStreamer.EmitLabel(getDWLabel("pubtypes_begin", ModuleCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00002825
Devang Patele3d6d222010-02-02 03:47:27 +00002826 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("DWARF Version");
2827 Asm->EmitInt16(dwarf::DWARF_VERSION);
Devang Patel193f7202009-11-24 01:14:22 +00002828
Chris Lattner233f52b2010-03-09 23:52:58 +00002829 Asm->OutStreamer.AddComment("Offset of Compilation ModuleCU Info");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00002830 EmitSectionOffset(getDWLabel("info_begin", ModuleCU->getID()),
2831 getTempLabel("section_info"), true, false);
Devang Patel193f7202009-11-24 01:14:22 +00002832
Chris Lattner233f52b2010-03-09 23:52:58 +00002833 Asm->OutStreamer.AddComment("Compilation ModuleCU Length");
Chris Lattnereffa8682010-03-08 23:02:59 +00002834 EmitDifference(getDWLabel("info_end", ModuleCU->getID()),
2835 getDWLabel("info_begin", ModuleCU->getID()),
Devang Patel193f7202009-11-24 01:14:22 +00002836 true);
Devang Patel193f7202009-11-24 01:14:22 +00002837
2838 const StringMap<DIE*> &Globals = ModuleCU->getGlobalTypes();
2839 for (StringMap<DIE*>::const_iterator
2840 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2841 const char *Name = GI->getKeyData();
2842 DIE * Entity = GI->second;
2843
Devang Patele3d6d222010-02-02 03:47:27 +00002844 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("DIE offset");
2845 Asm->EmitInt32(Entity->getOffset());
Chris Lattner4cf202b2010-01-23 03:11:46 +00002846
2847 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("External Name");
Devang Patel31acb892010-02-02 03:37:03 +00002848 Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
Devang Patel193f7202009-11-24 01:14:22 +00002849 }
2850
Chris Lattner233f52b2010-03-09 23:52:58 +00002851 Asm->OutStreamer.AddComment("End Mark");
2852 Asm->EmitInt32(0);
Chris Lattnerf829eef2010-03-08 22:44:40 +00002853 Asm->OutStreamer.EmitLabel(getDWLabel("pubtypes_end", ModuleCU->getID()));
Devang Patel193f7202009-11-24 01:14:22 +00002854}
2855
Devang Patel2c4ceb12009-11-21 02:48:08 +00002856/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002857///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002858void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002859 // Check to see if it is worth the effort.
Chris Lattner0d9d70f2010-03-09 23:38:23 +00002860 if (StringPool.empty()) return;
2861
2862 // Start the dwarf str section.
2863 Asm->OutStreamer.SwitchSection(
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002864 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002865
Chris Lattner0d9d70f2010-03-09 23:38:23 +00002866 // For each of strings in the string pool.
2867 for (unsigned StringID = 1, N = StringPool.size(); StringID <= N; ++StringID){
2868 // Emit a label for reference from debug information entries.
2869 Asm->OutStreamer.EmitLabel(getDWLabel("string", StringID));
2870
2871 // Emit the string itself.
2872 const std::string &String = StringPool[StringID];
2873 Asm->OutStreamer.EmitBytes(StringRef(String.c_str(), String.size()+1), 0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002874 }
2875}
2876
Devang Patel2c4ceb12009-11-21 02:48:08 +00002877/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002878///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002879void DwarfDebug::emitDebugLoc() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002880 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002881 Asm->OutStreamer.SwitchSection(
2882 Asm->getObjFileLowering().getDwarfLocSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002883}
2884
2885/// EmitDebugARanges - Emit visible names into a debug aranges section.
2886///
2887void DwarfDebug::EmitDebugARanges() {
2888 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002889 Asm->OutStreamer.SwitchSection(
2890 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002891}
2892
Devang Patel2c4ceb12009-11-21 02:48:08 +00002893/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002894///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002895void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002896 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002897 Asm->OutStreamer.SwitchSection(
2898 Asm->getObjFileLowering().getDwarfRangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002899}
2900
Devang Patel2c4ceb12009-11-21 02:48:08 +00002901/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002902///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002903void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002904 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002905 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002906 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002907 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002908 }
2909}
2910
Devang Patel2c4ceb12009-11-21 02:48:08 +00002911/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002912/// Section Header:
2913/// 1. length of section
2914/// 2. Dwarf version number
2915/// 3. address size.
2916///
2917/// Entries (one "entry" for each function that was inlined):
2918///
2919/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2920/// otherwise offset into __debug_str for regular function name.
2921/// 2. offset into __debug_str section for regular function name.
2922/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2923/// instances for the function.
2924///
2925/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2926/// inlined instance; the die_offset points to the inlined_subroutine die in the
2927/// __debug_info section, and the low_pc is the starting address for the
2928/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002929void DwarfDebug::emitDebugInlineInfo() {
Chris Lattner33adcfb2009-08-22 21:43:10 +00002930 if (!MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002931 return;
2932
Devang Patel1dbc7712009-06-29 20:45:18 +00002933 if (!ModuleCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002934 return;
2935
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002936 Asm->OutStreamer.SwitchSection(
2937 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Chris Lattner0ad9c912010-01-22 22:09:00 +00002938
Chris Lattner233f52b2010-03-09 23:52:58 +00002939 Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry");
Chris Lattnereffa8682010-03-08 23:02:59 +00002940 EmitDifference(getDWLabel("debug_inlined_end", 1),
2941 getDWLabel("debug_inlined_begin", 1), true);
Bill Wendling94d04b82009-05-20 23:21:38 +00002942
Chris Lattnerf829eef2010-03-08 22:44:40 +00002943 Asm->OutStreamer.EmitLabel(getDWLabel("debug_inlined_begin", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002944
Chris Lattner233f52b2010-03-09 23:52:58 +00002945 Asm->OutStreamer.AddComment("Dwarf Version");
2946 Asm->EmitInt16(dwarf::DWARF_VERSION);
2947 Asm->OutStreamer.AddComment("Address Size (in bytes)");
2948 Asm->EmitInt8(TD->getPointerSize());
Bill Wendling94d04b82009-05-20 23:21:38 +00002949
Devang Patel53bb5c92009-11-10 23:06:00 +00002950 for (SmallVector<MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
2951 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002952
Devang Patel53bb5c92009-11-10 23:06:00 +00002953 MDNode *Node = *I;
Devang Patel622b0262010-01-19 06:19:05 +00002954 DenseMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002955 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002956 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002957 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002958 StringRef LName = SP.getLinkageName();
2959 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002960
Chris Lattner233f52b2010-03-09 23:52:58 +00002961 Asm->OutStreamer.AddComment("MIPS linkage name");
Chris Lattner4cf202b2010-01-23 03:11:46 +00002962 if (LName.empty()) {
2963 Asm->OutStreamer.EmitBytes(Name, 0);
2964 Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator.
2965 } else
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00002966 EmitSectionOffset(getDWLabel("string",
2967 StringPool.idFor(getRealLinkageName(LName))),
2968 getTempLabel("section_str"), true);
Devang Patel53bb5c92009-11-10 23:06:00 +00002969
Chris Lattner233f52b2010-03-09 23:52:58 +00002970 Asm->OutStreamer.AddComment("Function name");
Chris Lattnerb98b1bf2010-03-08 22:23:36 +00002971 EmitSectionOffset(getDWLabel("string", StringPool.idFor(Name)),
2972 getTempLabel("section_str"), false, true);
Chris Lattner894d75a2010-01-22 23:18:42 +00002973 EmitULEB128(Labels.size(), "Inline count");
Bill Wendling94d04b82009-05-20 23:21:38 +00002974
Devang Patel53bb5c92009-11-10 23:06:00 +00002975 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002976 LE = Labels.end(); LI != LE; ++LI) {
Chris Lattner6ed0f902010-03-09 00:31:02 +00002977 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("DIE offset");
2978 Asm->EmitInt32(LI->second->getOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002979
Chris Lattnerb9dc5f72010-03-09 00:26:09 +00002980 if (Asm->VerboseAsm) Asm->OutStreamer.AddComment("low_pc");
Chris Lattner6cde3e62010-03-09 00:39:24 +00002981 Asm->OutStreamer.EmitSymbolValue(LI->first, TD->getPointerSize(), 0);
Bill Wendling94d04b82009-05-20 23:21:38 +00002982 }
2983 }
2984
Chris Lattnerf829eef2010-03-08 22:44:40 +00002985 Asm->OutStreamer.EmitLabel(getDWLabel("debug_inlined_end", 1));
Bill Wendling94d04b82009-05-20 23:21:38 +00002986}