blob: 0c31d4671d79c30890a05e5d6d3869b7c7afc51e [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//===----------------------------------------------------------------------===//
Devang Patele4b27562009-08-28 23:24:31 +000013#define DEBUG_TYPE "dwarfdebug"
Bill Wendling0310d762009-05-15 09:23:25 +000014#include "DwarfDebug.h"
15#include "llvm/Module.h"
David Greeneb2c66fc2009-08-19 21:52:55 +000016#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling0310d762009-05-15 09:23:25 +000017#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000018#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000019#include "llvm/MC/MCStreamer.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000020#include "llvm/MC/MCAsmInfo.h"
Bill Wendling0310d762009-05-15 09:23:25 +000021#include "llvm/Target/TargetData.h"
22#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000023#include "llvm/Target/TargetLoweringObjectFile.h"
24#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner23132b12009-08-24 03:52:50 +000025#include "llvm/ADT/StringExtras.h"
Daniel Dunbar6e4bdfc2009-10-13 06:47:08 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/ErrorHandling.h"
Chris Lattner334fd1f2009-09-16 00:08:41 +000028#include "llvm/Support/Mangler.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000029#include "llvm/Support/Timer.h"
30#include "llvm/System/Path.h"
Bill Wendling0310d762009-05-15 09:23:25 +000031using namespace llvm;
32
33static TimerGroup &getDwarfTimerGroup() {
34 static TimerGroup DwarfTimerGroup("Dwarf Debugging");
35 return DwarfTimerGroup;
36}
37
38//===----------------------------------------------------------------------===//
39
40/// Configuration values for initial hash set sizes (log2).
41///
Bill 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 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +000056 DIE *CUDie;
Bill Wendling0310d762009-05-15 09:23:25 +000057
Devang Patel6f01d9c2009-11-21 00:31:03 +000058 /// IndexTyDie - An anonymous type for index type.
59 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 Patel017d1212009-11-20 21:37:22 +000064 ValueMap<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 Patel017d1212009-11-20 21:37:22 +000069 ValueMap<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) {}
82 ~CompileUnit() { delete CUDie; delete IndexTyDie; }
Bill Wendling0310d762009-05-15 09:23:25 +000083
84 // Accessors.
Devang Patel193f7202009-11-24 01:14:22 +000085 unsigned getID() const { return ID; }
86 DIE* getCUDie() const { return CUDie; }
87 const StringMap<DIE*> &getGlobals() const { return Globals; }
88 const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; }
Bill Wendling0310d762009-05-15 09:23:25 +000089
90 /// hasContent - Return true if this compile unit has something to write out.
91 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +000092 bool hasContent() const { return !CUDie->getChildren().empty(); }
Bill Wendling0310d762009-05-15 09:23:25 +000093
Devang Patel2c4ceb12009-11-21 02:48:08 +000094 /// addGlobal - Add a new global entity to the compile unit.
Bill Wendling0310d762009-05-15 09:23:25 +000095 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +000096 void addGlobal(const std::string &Name, DIE *Die) { Globals[Name] = Die; }
Bill Wendling0310d762009-05-15 09:23:25 +000097
Devang Patel193f7202009-11-24 01:14:22 +000098 /// addGlobalType - Add a new global type to the compile unit.
99 ///
100 void addGlobalType(const std::string &Name, DIE *Die) {
101 GlobalTypes[Name] = Die;
102 }
103
Devang Patel017d1212009-11-20 21:37:22 +0000104 /// getDIE - Returns the debug information entry map slot for the
Bill Wendling0310d762009-05-15 09:23:25 +0000105 /// specified debug variable.
Devang Patel017d1212009-11-20 21:37:22 +0000106 DIE *getDIE(MDNode *N) { return GVToDieMap.lookup(N); }
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000107
Devang Patel017d1212009-11-20 21:37:22 +0000108 /// insertDIE - Insert DIE into the map.
109 void insertDIE(MDNode *N, DIE *D) {
110 GVToDieMap.insert(std::make_pair(N, D));
111 }
Bill Wendling0310d762009-05-15 09:23:25 +0000112
Devang Patel017d1212009-11-20 21:37:22 +0000113 /// getDIEEntry - Returns the debug information entry for the speciefied
114 /// debug variable.
115 DIEEntry *getDIEEntry(MDNode *N) { return GVToDIEEntryMap.lookup(N); }
116
117 /// insertDIEEntry - Insert debug information entry into the map.
118 void insertDIEEntry(MDNode *N, DIEEntry *E) {
119 GVToDIEEntryMap.insert(std::make_pair(N, E));
Bill Wendling0310d762009-05-15 09:23:25 +0000120 }
121
Devang Patel2c4ceb12009-11-21 02:48:08 +0000122 /// addDie - Adds or interns the DIE to the compile unit.
Bill Wendling0310d762009-05-15 09:23:25 +0000123 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000124 void addDie(DIE *Buffer) {
125 this->CUDie->addChild(Buffer);
Bill Wendling0310d762009-05-15 09:23:25 +0000126 }
Devang Patel6f01d9c2009-11-21 00:31:03 +0000127
128 // getIndexTyDie - Get an anonymous type for index type.
129 DIE *getIndexTyDie() {
130 return IndexTyDie;
131 }
132
Jim Grosbach7ab38df2009-11-22 19:20:36 +0000133 // setIndexTyDie - Set D as anonymous type for index which can be reused
134 // later.
Devang Patel6f01d9c2009-11-21 00:31:03 +0000135 void setIndexTyDie(DIE *D) {
136 IndexTyDie = D;
137 }
138
Bill Wendling0310d762009-05-15 09:23:25 +0000139};
140
141//===----------------------------------------------------------------------===//
142/// DbgVariable - This class is used to track local variable information.
143///
Devang Patelf76a3d62009-11-16 21:53:40 +0000144class DbgVariable {
Bill Wendling0310d762009-05-15 09:23:25 +0000145 DIVariable Var; // Variable Descriptor.
146 unsigned FrameIndex; // Variable frame index.
Devang Patel53bb5c92009-11-10 23:06:00 +0000147 DbgVariable *AbstractVar; // Abstract variable for this variable.
148 DIE *TheDIE;
Bill Wendling0310d762009-05-15 09:23:25 +0000149public:
Devang Patel53bb5c92009-11-10 23:06:00 +0000150 DbgVariable(DIVariable V, unsigned I)
151 : Var(V), FrameIndex(I), AbstractVar(0), TheDIE(0) {}
Bill Wendling0310d762009-05-15 09:23:25 +0000152
153 // Accessors.
Devang Patel53bb5c92009-11-10 23:06:00 +0000154 DIVariable getVariable() const { return Var; }
155 unsigned getFrameIndex() const { return FrameIndex; }
156 void setAbstractVariable(DbgVariable *V) { AbstractVar = V; }
157 DbgVariable *getAbstractVariable() const { return AbstractVar; }
158 void setDIE(DIE *D) { TheDIE = D; }
159 DIE *getDIE() const { return TheDIE; }
Bill Wendling0310d762009-05-15 09:23:25 +0000160};
161
162//===----------------------------------------------------------------------===//
163/// DbgScope - This class is used to track scope information.
164///
Devang Patelf76a3d62009-11-16 21:53:40 +0000165class DbgScope {
Bill Wendling0310d762009-05-15 09:23:25 +0000166 DbgScope *Parent; // Parent to this scope.
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000167 DIDescriptor Desc; // Debug info descriptor for scope.
Devang Patel53bb5c92009-11-10 23:06:00 +0000168 WeakVH InlinedAtLocation; // Location at which scope is inlined.
169 bool AbstractScope; // Abstract Scope
Bill Wendling0310d762009-05-15 09:23:25 +0000170 unsigned StartLabelID; // Label ID of the beginning of scope.
171 unsigned EndLabelID; // Label ID of the end of scope.
Devang Pateld38dd112009-10-01 18:25:23 +0000172 const MachineInstr *LastInsn; // Last instruction of this scope.
173 const MachineInstr *FirstInsn; // First instruction of this scope.
Bill Wendling0310d762009-05-15 09:23:25 +0000174 SmallVector<DbgScope *, 4> Scopes; // Scopes defined in scope.
175 SmallVector<DbgVariable *, 8> Variables;// Variables declared in scope.
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000176
Owen Anderson04c05f72009-06-24 22:53:20 +0000177 // Private state for dump()
178 mutable unsigned IndentLevel;
Bill Wendling0310d762009-05-15 09:23:25 +0000179public:
Devang Patelc90aefe2009-10-14 21:08:09 +0000180 DbgScope(DbgScope *P, DIDescriptor D, MDNode *I = 0)
Devang Patel53bb5c92009-11-10 23:06:00 +0000181 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(false),
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000182 StartLabelID(0), EndLabelID(0),
Devang Patelc90aefe2009-10-14 21:08:09 +0000183 LastInsn(0), FirstInsn(0), IndentLevel(0) {}
Bill Wendling0310d762009-05-15 09:23:25 +0000184 virtual ~DbgScope();
185
186 // Accessors.
187 DbgScope *getParent() const { return Parent; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000188 void setParent(DbgScope *P) { Parent = P; }
Bill Wendling0310d762009-05-15 09:23:25 +0000189 DIDescriptor getDesc() const { return Desc; }
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000190 MDNode *getInlinedAt() const {
Devang Patel53bb5c92009-11-10 23:06:00 +0000191 return dyn_cast_or_null<MDNode>(InlinedAtLocation);
Devang Patelc90aefe2009-10-14 21:08:09 +0000192 }
Devang Patel53bb5c92009-11-10 23:06:00 +0000193 MDNode *getScopeNode() const { return Desc.getNode(); }
Bill Wendling0310d762009-05-15 09:23:25 +0000194 unsigned getStartLabelID() const { return StartLabelID; }
195 unsigned getEndLabelID() const { return EndLabelID; }
196 SmallVector<DbgScope *, 4> &getScopes() { return Scopes; }
197 SmallVector<DbgVariable *, 8> &getVariables() { return Variables; }
Bill Wendling0310d762009-05-15 09:23:25 +0000198 void setStartLabelID(unsigned S) { StartLabelID = S; }
199 void setEndLabelID(unsigned E) { EndLabelID = E; }
Devang Pateld38dd112009-10-01 18:25:23 +0000200 void setLastInsn(const MachineInstr *MI) { LastInsn = MI; }
201 const MachineInstr *getLastInsn() { return LastInsn; }
202 void setFirstInsn(const MachineInstr *MI) { FirstInsn = MI; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000203 void setAbstractScope() { AbstractScope = true; }
204 bool isAbstractScope() const { return AbstractScope; }
Devang Pateld38dd112009-10-01 18:25:23 +0000205 const MachineInstr *getFirstInsn() { return FirstInsn; }
Devang Patel53bb5c92009-11-10 23:06:00 +0000206
Devang Patel2c4ceb12009-11-21 02:48:08 +0000207 /// addScope - Add a scope to the scope.
Bill Wendling0310d762009-05-15 09:23:25 +0000208 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000209 void addScope(DbgScope *S) { Scopes.push_back(S); }
Bill Wendling0310d762009-05-15 09:23:25 +0000210
Devang Patel2c4ceb12009-11-21 02:48:08 +0000211 /// addVariable - Add a variable to the scope.
Bill Wendling0310d762009-05-15 09:23:25 +0000212 ///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000213 void addVariable(DbgVariable *V) { Variables.push_back(V); }
Bill Wendling0310d762009-05-15 09:23:25 +0000214
Devang Patel2c4ceb12009-11-21 02:48:08 +0000215 void fixInstructionMarkers() {
Devang Patelaf9e8472009-10-01 20:31:14 +0000216 assert (getFirstInsn() && "First instruction is missing!");
217 if (getLastInsn())
218 return;
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000219
Devang Patelaf9e8472009-10-01 20:31:14 +0000220 // If a scope does not have an instruction to mark an end then use
221 // the end of last child scope.
222 SmallVector<DbgScope *, 4> &Scopes = getScopes();
223 assert (!Scopes.empty() && "Inner most scope does not have last insn!");
224 DbgScope *L = Scopes.back();
225 if (!L->getLastInsn())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000226 L->fixInstructionMarkers();
Devang Patelaf9e8472009-10-01 20:31:14 +0000227 setLastInsn(L->getLastInsn());
228 }
229
Bill Wendling0310d762009-05-15 09:23:25 +0000230#ifndef NDEBUG
231 void dump() const;
232#endif
233};
234
235#ifndef NDEBUG
236void DbgScope::dump() const {
Chris Lattnerc281de12009-08-23 00:51:00 +0000237 raw_ostream &err = errs();
238 err.indent(IndentLevel);
Devang Patel53bb5c92009-11-10 23:06:00 +0000239 MDNode *N = Desc.getNode();
240 N->dump();
Chris Lattnerc281de12009-08-23 00:51:00 +0000241 err << " [" << StartLabelID << ", " << EndLabelID << "]\n";
Devang Patel53bb5c92009-11-10 23:06:00 +0000242 if (AbstractScope)
243 err << "Abstract Scope\n";
Bill Wendling0310d762009-05-15 09:23:25 +0000244
245 IndentLevel += 2;
Devang Patel53bb5c92009-11-10 23:06:00 +0000246 if (!Scopes.empty())
247 err << "Children ...\n";
Bill Wendling0310d762009-05-15 09:23:25 +0000248 for (unsigned i = 0, e = Scopes.size(); i != e; ++i)
249 if (Scopes[i] != this)
250 Scopes[i]->dump();
251
252 IndentLevel -= 2;
253}
254#endif
255
Bill Wendling0310d762009-05-15 09:23:25 +0000256DbgScope::~DbgScope() {
257 for (unsigned i = 0, N = Scopes.size(); i < N; ++i)
258 delete Scopes[i];
259 for (unsigned j = 0, M = Variables.size(); j < M; ++j)
260 delete Variables[j];
Bill Wendling0310d762009-05-15 09:23:25 +0000261}
262
263} // end llvm namespace
264
Chris Lattneraf76e592009-08-22 20:48:53 +0000265DwarfDebug::DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T)
Devang Patel1dbc7712009-06-29 20:45:18 +0000266 : Dwarf(OS, A, T, "dbg"), ModuleCU(0),
Bill Wendling0310d762009-05-15 09:23:25 +0000267 AbbreviationsSet(InitAbbreviationsSetSize), Abbreviations(),
Devang Patel2c4ceb12009-11-21 02:48:08 +0000268 DIEValues(), StringPool(),
Bill Wendling0310d762009-05-15 09:23:25 +0000269 SectionSourceLines(), didInitial(false), shouldEmit(false),
Devang Patel53bb5c92009-11-10 23:06:00 +0000270 CurrentFnDbgScope(0), DebugTimer(0) {
Bill Wendling0310d762009-05-15 09:23:25 +0000271 if (TimePassesIsEnabled)
272 DebugTimer = new Timer("Dwarf Debug Writer",
273 getDwarfTimerGroup());
274}
275DwarfDebug::~DwarfDebug() {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000276 for (unsigned j = 0, M = DIEValues.size(); j < M; ++j)
277 delete DIEValues[j];
Bill Wendling0310d762009-05-15 09:23:25 +0000278
Bill Wendling0310d762009-05-15 09:23:25 +0000279 delete DebugTimer;
280}
281
Devang Patel2c4ceb12009-11-21 02:48:08 +0000282/// assignAbbrevNumber - Define a unique number for the abbreviation.
Bill Wendling0310d762009-05-15 09:23:25 +0000283///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000284void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) {
Bill Wendling0310d762009-05-15 09:23:25 +0000285 // Profile the node so that we can make it unique.
286 FoldingSetNodeID ID;
287 Abbrev.Profile(ID);
288
289 // Check the set for priors.
290 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
291
292 // If it's newly added.
293 if (InSet == &Abbrev) {
294 // Add to abbreviation list.
295 Abbreviations.push_back(&Abbrev);
296
297 // Assign the vector position + 1 as its number.
298 Abbrev.setNumber(Abbreviations.size());
299 } else {
300 // Assign existing abbreviation number.
301 Abbrev.setNumber(InSet->getNumber());
302 }
303}
304
Devang Patel2c4ceb12009-11-21 02:48:08 +0000305/// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
Bill Wendling995f80a2009-05-20 23:24:48 +0000306/// information entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000307DIEEntry *DwarfDebug::createDIEEntry(DIE *Entry) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000308 DIEEntry *Value = new DIEEntry(Entry);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000309 DIEValues.push_back(Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000310 return Value;
311}
312
Devang Patel2c4ceb12009-11-21 02:48:08 +0000313/// addUInt - Add an unsigned integer attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000314///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000315void DwarfDebug::addUInt(DIE *Die, unsigned Attribute,
Bill Wendling0310d762009-05-15 09:23:25 +0000316 unsigned Form, uint64_t Integer) {
317 if (!Form) Form = DIEInteger::BestForm(false, Integer);
Devang Patel6f01d9c2009-11-21 00:31:03 +0000318 DIEValue *Value = new DIEInteger(Integer);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000319 DIEValues.push_back(Value);
320 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000321}
322
Devang Patel2c4ceb12009-11-21 02:48:08 +0000323/// addSInt - Add an signed integer attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000324///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000325void DwarfDebug::addSInt(DIE *Die, unsigned Attribute,
Bill Wendling0310d762009-05-15 09:23:25 +0000326 unsigned Form, int64_t Integer) {
327 if (!Form) Form = DIEInteger::BestForm(true, Integer);
Devang Patel6f01d9c2009-11-21 00:31:03 +0000328 DIEValue *Value = new DIEInteger(Integer);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000329 DIEValues.push_back(Value);
330 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000331}
332
Devang Patel69f57b12009-12-02 15:25:16 +0000333/// addString - Add a string attribute data and value. DIEString only
334/// keeps string reference.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000335void DwarfDebug::addString(DIE *Die, unsigned Attribute, unsigned Form,
Devang Patele9a05972009-11-24 19:42:17 +0000336 const StringRef String) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000337 DIEValue *Value = new DIEString(String);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000338 DIEValues.push_back(Value);
339 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000340}
341
Devang Patel2c4ceb12009-11-21 02:48:08 +0000342/// addLabel - Add a Dwarf label attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000343///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000344void DwarfDebug::addLabel(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling0310d762009-05-15 09:23:25 +0000345 const DWLabel &Label) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000346 DIEValue *Value = new DIEDwarfLabel(Label);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000347 DIEValues.push_back(Value);
348 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000349}
350
Devang Patel2c4ceb12009-11-21 02:48:08 +0000351/// addObjectLabel - Add an non-Dwarf label attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000352///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000353void DwarfDebug::addObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling0310d762009-05-15 09:23:25 +0000354 const std::string &Label) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000355 DIEValue *Value = new DIEObjectLabel(Label);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000356 DIEValues.push_back(Value);
357 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000358}
359
Devang Patel2c4ceb12009-11-21 02:48:08 +0000360/// addSectionOffset - Add a section offset label attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000361///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000362void DwarfDebug::addSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling0310d762009-05-15 09:23:25 +0000363 const DWLabel &Label, const DWLabel &Section,
364 bool isEH, bool useSet) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000365 DIEValue *Value = new DIESectionOffset(Label, Section, isEH, useSet);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000366 DIEValues.push_back(Value);
367 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000368}
369
Devang Patel2c4ceb12009-11-21 02:48:08 +0000370/// addDelta - Add a label delta attribute data and value.
Bill Wendling0310d762009-05-15 09:23:25 +0000371///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000372void DwarfDebug::addDelta(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling0310d762009-05-15 09:23:25 +0000373 const DWLabel &Hi, const DWLabel &Lo) {
Devang Patel6f01d9c2009-11-21 00:31:03 +0000374 DIEValue *Value = new DIEDelta(Hi, Lo);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000375 DIEValues.push_back(Value);
376 Die->addValue(Attribute, Form, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000377}
378
Devang Patel2c4ceb12009-11-21 02:48:08 +0000379/// addBlock - Add block data.
Bill Wendling0310d762009-05-15 09:23:25 +0000380///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000381void DwarfDebug::addBlock(DIE *Die, unsigned Attribute, unsigned Form,
Bill Wendling0310d762009-05-15 09:23:25 +0000382 DIEBlock *Block) {
383 Block->ComputeSize(TD);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000384 DIEValues.push_back(Block);
385 Die->addValue(Attribute, Block->BestForm(), Block);
Bill Wendling0310d762009-05-15 09:23:25 +0000386}
387
Devang Patel2c4ceb12009-11-21 02:48:08 +0000388/// addSourceLine - Add location information to specified debug information
Bill Wendling0310d762009-05-15 09:23:25 +0000389/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000390void DwarfDebug::addSourceLine(DIE *Die, const DIVariable *V) {
Bill Wendling0310d762009-05-15 09:23:25 +0000391 // If there is no compile unit specified, don't add a line #.
392 if (V->getCompileUnit().isNull())
393 return;
394
395 unsigned Line = V->getLineNumber();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000396 unsigned FileID = findCompileUnit(V->getCompileUnit()).getID();
Bill Wendling0310d762009-05-15 09:23:25 +0000397 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000398 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
399 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling0310d762009-05-15 09:23:25 +0000400}
401
Devang Patel2c4ceb12009-11-21 02:48:08 +0000402/// addSourceLine - Add location information to specified debug information
Bill Wendling0310d762009-05-15 09:23:25 +0000403/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000404void DwarfDebug::addSourceLine(DIE *Die, const DIGlobal *G) {
Bill Wendling0310d762009-05-15 09:23:25 +0000405 // If there is no compile unit specified, don't add a line #.
406 if (G->getCompileUnit().isNull())
407 return;
408
409 unsigned Line = G->getLineNumber();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000410 unsigned FileID = findCompileUnit(G->getCompileUnit()).getID();
Bill Wendling0310d762009-05-15 09:23:25 +0000411 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000412 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
413 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling0310d762009-05-15 09:23:25 +0000414}
Devang Patel82dfc0c2009-08-31 22:47:13 +0000415
Devang Patel2c4ceb12009-11-21 02:48:08 +0000416/// addSourceLine - Add location information to specified debug information
Devang Patel82dfc0c2009-08-31 22:47:13 +0000417/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000418void DwarfDebug::addSourceLine(DIE *Die, const DISubprogram *SP) {
Devang Patel82dfc0c2009-08-31 22:47:13 +0000419 // If there is no compile unit specified, don't add a line #.
420 if (SP->getCompileUnit().isNull())
421 return;
Caroline Ticec6f9d622009-09-11 18:25:54 +0000422 // If the line number is 0, don't add it.
423 if (SP->getLineNumber() == 0)
424 return;
425
Devang Patel82dfc0c2009-08-31 22:47:13 +0000426
427 unsigned Line = SP->getLineNumber();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000428 unsigned FileID = findCompileUnit(SP->getCompileUnit()).getID();
Devang Patel82dfc0c2009-08-31 22:47:13 +0000429 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000430 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
431 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Devang Patel82dfc0c2009-08-31 22:47:13 +0000432}
433
Devang Patel2c4ceb12009-11-21 02:48:08 +0000434/// addSourceLine - Add location information to specified debug information
Devang Patel82dfc0c2009-08-31 22:47:13 +0000435/// entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000436void DwarfDebug::addSourceLine(DIE *Die, const DIType *Ty) {
Bill Wendling0310d762009-05-15 09:23:25 +0000437 // If there is no compile unit specified, don't add a line #.
438 DICompileUnit CU = Ty->getCompileUnit();
439 if (CU.isNull())
440 return;
441
442 unsigned Line = Ty->getLineNumber();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000443 unsigned FileID = findCompileUnit(CU).getID();
Bill Wendling0310d762009-05-15 09:23:25 +0000444 assert(FileID && "Invalid file id");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000445 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
446 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
Bill Wendling0310d762009-05-15 09:23:25 +0000447}
448
Caroline Ticedc8f6042009-08-31 21:19:37 +0000449/* Byref variables, in Blocks, are declared by the programmer as
450 "SomeType VarName;", but the compiler creates a
451 __Block_byref_x_VarName struct, and gives the variable VarName
452 either the struct, or a pointer to the struct, as its type. This
453 is necessary for various behind-the-scenes things the compiler
454 needs to do with by-reference variables in blocks.
455
456 However, as far as the original *programmer* is concerned, the
457 variable should still have type 'SomeType', as originally declared.
458
459 The following function dives into the __Block_byref_x_VarName
460 struct to find the original type of the variable. This will be
461 passed back to the code generating the type for the Debug
462 Information Entry for the variable 'VarName'. 'VarName' will then
463 have the original type 'SomeType' in its debug information.
464
465 The original type 'SomeType' will be the type of the field named
466 'VarName' inside the __Block_byref_x_VarName struct.
467
468 NOTE: In order for this to not completely fail on the debugger
469 side, the Debug Information Entry for the variable VarName needs to
470 have a DW_AT_location that tells the debugger how to unwind through
471 the pointers and __Block_byref_x_VarName struct to find the actual
Devang Patel2c4ceb12009-11-21 02:48:08 +0000472 value of the variable. The function addBlockByrefType does this. */
Caroline Ticedc8f6042009-08-31 21:19:37 +0000473
474/// Find the type the programmer originally declared the variable to be
475/// and return that type.
476///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000477DIType DwarfDebug::getBlockByrefType(DIType Ty, std::string Name) {
Caroline Ticedc8f6042009-08-31 21:19:37 +0000478
479 DIType subType = Ty;
480 unsigned tag = Ty.getTag();
481
482 if (tag == dwarf::DW_TAG_pointer_type) {
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000483 DIDerivedType DTy = DIDerivedType(Ty.getNode());
Caroline Ticedc8f6042009-08-31 21:19:37 +0000484 subType = DTy.getTypeDerivedFrom();
485 }
486
487 DICompositeType blockStruct = DICompositeType(subType.getNode());
488
489 DIArray Elements = blockStruct.getTypeArray();
490
491 if (Elements.isNull())
492 return Ty;
493
494 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
495 DIDescriptor Element = Elements.getElement(i);
496 DIDerivedType DT = DIDerivedType(Element.getNode());
Devang Patel65dbc902009-11-25 17:36:49 +0000497 if (Name == DT.getName())
Caroline Ticedc8f6042009-08-31 21:19:37 +0000498 return (DT.getTypeDerivedFrom());
499 }
500
501 return Ty;
502}
503
Devang Patel2c4ceb12009-11-21 02:48:08 +0000504/// addComplexAddress - Start with the address based on the location provided,
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000505/// and generate the DWARF information necessary to find the actual variable
506/// given the extra address information encoded in the DIVariable, starting from
507/// the starting location. Add the DWARF information to the die.
508///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000509void DwarfDebug::addComplexAddress(DbgVariable *&DV, DIE *Die,
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000510 unsigned Attribute,
511 const MachineLocation &Location) {
512 const DIVariable &VD = DV->getVariable();
513 DIType Ty = VD.getType();
514
515 // Decode the original location, and use that as the start of the byref
516 // variable's location.
517 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
518 DIEBlock *Block = new DIEBlock();
519
520 if (Location.isReg()) {
521 if (Reg < 32) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000522 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000523 } else {
524 Reg = Reg - dwarf::DW_OP_reg0;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000525 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
526 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000527 }
528 } else {
529 if (Reg < 32)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000530 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000531 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000532 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
533 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000534 }
535
Devang Patel2c4ceb12009-11-21 02:48:08 +0000536 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000537 }
538
539 for (unsigned i = 0, N = VD.getNumAddrElements(); i < N; ++i) {
540 uint64_t Element = VD.getAddrElement(i);
541
542 if (Element == DIFactory::OpPlus) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000543 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
544 addUInt(Block, 0, dwarf::DW_FORM_udata, VD.getAddrElement(++i));
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000545 } else if (Element == DIFactory::OpDeref) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000546 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000547 } else llvm_unreachable("unknown DIFactory Opcode");
548 }
549
550 // Now attach the location information to the DIE.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000551 addBlock(Die, Attribute, 0, Block);
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000552}
553
Caroline Ticedc8f6042009-08-31 21:19:37 +0000554/* Byref variables, in Blocks, are declared by the programmer as "SomeType
555 VarName;", but the compiler creates a __Block_byref_x_VarName struct, and
556 gives the variable VarName either the struct, or a pointer to the struct, as
557 its type. This is necessary for various behind-the-scenes things the
558 compiler needs to do with by-reference variables in Blocks.
559
560 However, as far as the original *programmer* is concerned, the variable
561 should still have type 'SomeType', as originally declared.
562
Devang Patel2c4ceb12009-11-21 02:48:08 +0000563 The function getBlockByrefType dives into the __Block_byref_x_VarName
Caroline Ticedc8f6042009-08-31 21:19:37 +0000564 struct to find the original type of the variable, which is then assigned to
565 the variable's Debug Information Entry as its real type. So far, so good.
566 However now the debugger will expect the variable VarName to have the type
567 SomeType. So we need the location attribute for the variable to be an
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000568 expression that explains to the debugger how to navigate through the
Caroline Ticedc8f6042009-08-31 21:19:37 +0000569 pointers and struct to find the actual variable of type SomeType.
570
571 The following function does just that. We start by getting
572 the "normal" location for the variable. This will be the location
573 of either the struct __Block_byref_x_VarName or the pointer to the
574 struct __Block_byref_x_VarName.
575
576 The struct will look something like:
577
578 struct __Block_byref_x_VarName {
579 ... <various fields>
580 struct __Block_byref_x_VarName *forwarding;
581 ... <various other fields>
582 SomeType VarName;
583 ... <maybe more fields>
584 };
585
586 If we are given the struct directly (as our starting point) we
587 need to tell the debugger to:
588
589 1). Add the offset of the forwarding field.
590
591 2). Follow that pointer to get the the real __Block_byref_x_VarName
592 struct to use (the real one may have been copied onto the heap).
593
594 3). Add the offset for the field VarName, to find the actual variable.
595
596 If we started with a pointer to the struct, then we need to
597 dereference that pointer first, before the other steps.
598 Translating this into DWARF ops, we will need to append the following
599 to the current location description for the variable:
600
601 DW_OP_deref -- optional, if we start with a pointer
602 DW_OP_plus_uconst <forward_fld_offset>
603 DW_OP_deref
604 DW_OP_plus_uconst <varName_fld_offset>
605
606 That is what this function does. */
607
Devang Patel2c4ceb12009-11-21 02:48:08 +0000608/// addBlockByrefAddress - Start with the address based on the location
Caroline Ticedc8f6042009-08-31 21:19:37 +0000609/// provided, and generate the DWARF information necessary to find the
610/// actual Block variable (navigating the Block struct) based on the
611/// starting location. Add the DWARF information to the die. For
612/// more information, read large comment just above here.
613///
Devang Patel2c4ceb12009-11-21 02:48:08 +0000614void DwarfDebug::addBlockByrefAddress(DbgVariable *&DV, DIE *Die,
Daniel Dunbar00564992009-09-19 20:40:14 +0000615 unsigned Attribute,
616 const MachineLocation &Location) {
Caroline Ticedc8f6042009-08-31 21:19:37 +0000617 const DIVariable &VD = DV->getVariable();
618 DIType Ty = VD.getType();
619 DIType TmpTy = Ty;
620 unsigned Tag = Ty.getTag();
621 bool isPointer = false;
622
Devang Patel65dbc902009-11-25 17:36:49 +0000623 StringRef varName = VD.getName();
Caroline Ticedc8f6042009-08-31 21:19:37 +0000624
625 if (Tag == dwarf::DW_TAG_pointer_type) {
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000626 DIDerivedType DTy = DIDerivedType(Ty.getNode());
Caroline Ticedc8f6042009-08-31 21:19:37 +0000627 TmpTy = DTy.getTypeDerivedFrom();
628 isPointer = true;
629 }
630
631 DICompositeType blockStruct = DICompositeType(TmpTy.getNode());
632
Daniel Dunbar00564992009-09-19 20:40:14 +0000633 // Find the __forwarding field and the variable field in the __Block_byref
634 // struct.
Daniel Dunbar00564992009-09-19 20:40:14 +0000635 DIArray Fields = blockStruct.getTypeArray();
636 DIDescriptor varField = DIDescriptor();
637 DIDescriptor forwardingField = DIDescriptor();
Caroline Ticedc8f6042009-08-31 21:19:37 +0000638
639
Daniel Dunbar00564992009-09-19 20:40:14 +0000640 for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) {
641 DIDescriptor Element = Fields.getElement(i);
642 DIDerivedType DT = DIDerivedType(Element.getNode());
Devang Patel65dbc902009-11-25 17:36:49 +0000643 StringRef fieldName = DT.getName();
644 if (fieldName == "__forwarding")
Daniel Dunbar00564992009-09-19 20:40:14 +0000645 forwardingField = Element;
Devang Patel65dbc902009-11-25 17:36:49 +0000646 else if (fieldName == varName)
Daniel Dunbar00564992009-09-19 20:40:14 +0000647 varField = Element;
648 }
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000649
Mike Stump7e3720d2009-09-24 23:21:26 +0000650 assert(!varField.isNull() && "Can't find byref variable in Block struct");
651 assert(!forwardingField.isNull()
652 && "Can't find forwarding field in Block struct");
Caroline Ticedc8f6042009-08-31 21:19:37 +0000653
Daniel Dunbar00564992009-09-19 20:40:14 +0000654 // Get the offsets for the forwarding field and the variable field.
Daniel Dunbar00564992009-09-19 20:40:14 +0000655 unsigned int forwardingFieldOffset =
656 DIDerivedType(forwardingField.getNode()).getOffsetInBits() >> 3;
657 unsigned int varFieldOffset =
658 DIDerivedType(varField.getNode()).getOffsetInBits() >> 3;
Caroline Ticedc8f6042009-08-31 21:19:37 +0000659
Mike Stump7e3720d2009-09-24 23:21:26 +0000660 // Decode the original location, and use that as the start of the byref
661 // variable's location.
Daniel Dunbar00564992009-09-19 20:40:14 +0000662 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
663 DIEBlock *Block = new DIEBlock();
Caroline Ticedc8f6042009-08-31 21:19:37 +0000664
Daniel Dunbar00564992009-09-19 20:40:14 +0000665 if (Location.isReg()) {
666 if (Reg < 32)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000667 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000668 else {
669 Reg = Reg - dwarf::DW_OP_reg0;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000670 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
671 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000672 }
673 } else {
674 if (Reg < 32)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000675 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000676 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000677 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
678 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Daniel Dunbar00564992009-09-19 20:40:14 +0000679 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000680
Devang Patel2c4ceb12009-11-21 02:48:08 +0000681 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Daniel Dunbar00564992009-09-19 20:40:14 +0000682 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000683
Mike Stump7e3720d2009-09-24 23:21:26 +0000684 // If we started with a pointer to the __Block_byref... struct, then
Daniel Dunbar00564992009-09-19 20:40:14 +0000685 // the first thing we need to do is dereference the pointer (DW_OP_deref).
Daniel Dunbar00564992009-09-19 20:40:14 +0000686 if (isPointer)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000687 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Caroline Ticedc8f6042009-08-31 21:19:37 +0000688
Daniel Dunbar00564992009-09-19 20:40:14 +0000689 // Next add the offset for the '__forwarding' field:
690 // DW_OP_plus_uconst ForwardingFieldOffset. Note there's no point in
691 // adding the offset if it's 0.
Daniel Dunbar00564992009-09-19 20:40:14 +0000692 if (forwardingFieldOffset > 0) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000693 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
694 addUInt(Block, 0, dwarf::DW_FORM_udata, forwardingFieldOffset);
Daniel Dunbar00564992009-09-19 20:40:14 +0000695 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000696
Daniel Dunbar00564992009-09-19 20:40:14 +0000697 // Now dereference the __forwarding field to get to the real __Block_byref
698 // struct: DW_OP_deref.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000699 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Caroline Ticedc8f6042009-08-31 21:19:37 +0000700
Daniel Dunbar00564992009-09-19 20:40:14 +0000701 // Now that we've got the real __Block_byref... struct, add the offset
702 // for the variable's field to get to the location of the actual variable:
703 // DW_OP_plus_uconst varFieldOffset. Again, don't add if it's 0.
Daniel Dunbar00564992009-09-19 20:40:14 +0000704 if (varFieldOffset > 0) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000705 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
706 addUInt(Block, 0, dwarf::DW_FORM_udata, varFieldOffset);
Daniel Dunbar00564992009-09-19 20:40:14 +0000707 }
Caroline Ticedc8f6042009-08-31 21:19:37 +0000708
Daniel Dunbar00564992009-09-19 20:40:14 +0000709 // Now attach the location information to the DIE.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000710 addBlock(Die, Attribute, 0, Block);
Caroline Ticedc8f6042009-08-31 21:19:37 +0000711}
712
Devang Patel2c4ceb12009-11-21 02:48:08 +0000713/// addAddress - Add an address attribute to a die based on the location
Bill Wendling0310d762009-05-15 09:23:25 +0000714/// provided.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000715void DwarfDebug::addAddress(DIE *Die, unsigned Attribute,
Bill Wendling0310d762009-05-15 09:23:25 +0000716 const MachineLocation &Location) {
717 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
718 DIEBlock *Block = new DIEBlock();
719
720 if (Location.isReg()) {
721 if (Reg < 32) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000722 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000723 } else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000724 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx);
725 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000726 }
727 } else {
728 if (Reg < 32) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000729 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000730 } else {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000731 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
732 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
Bill Wendling0310d762009-05-15 09:23:25 +0000733 }
734
Devang Patel2c4ceb12009-11-21 02:48:08 +0000735 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
Bill Wendling0310d762009-05-15 09:23:25 +0000736 }
737
Devang Patel2c4ceb12009-11-21 02:48:08 +0000738 addBlock(Die, Attribute, 0, Block);
Bill Wendling0310d762009-05-15 09:23:25 +0000739}
740
Devang Patel2c4ceb12009-11-21 02:48:08 +0000741/// addType - Add a new type attribute to the specified entity.
742void DwarfDebug::addType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty) {
Bill Wendling0310d762009-05-15 09:23:25 +0000743 if (Ty.isNull())
744 return;
745
746 // Check for pre-existence.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000747 DIEEntry *Entry = DW_Unit->getDIEEntry(Ty.getNode());
Bill Wendling0310d762009-05-15 09:23:25 +0000748
749 // If it exists then use the existing value.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000750 if (Entry) {
751 Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry);
Bill Wendling0310d762009-05-15 09:23:25 +0000752 return;
753 }
754
755 // Set up proxy.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000756 Entry = createDIEEntry();
757 DW_Unit->insertDIEEntry(Ty.getNode(), Entry);
Bill Wendling0310d762009-05-15 09:23:25 +0000758
759 // Construct type.
Devang Patel6f01d9c2009-11-21 00:31:03 +0000760 DIE *Buffer = new DIE(dwarf::DW_TAG_base_type);
Devang Patel6ceea332009-08-31 18:49:10 +0000761 if (Ty.isBasicType())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000762 constructTypeDIE(DW_Unit, *Buffer, DIBasicType(Ty.getNode()));
Devang Patel6ceea332009-08-31 18:49:10 +0000763 else if (Ty.isCompositeType())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000764 constructTypeDIE(DW_Unit, *Buffer, DICompositeType(Ty.getNode()));
Bill Wendling0310d762009-05-15 09:23:25 +0000765 else {
Devang Patel6ceea332009-08-31 18:49:10 +0000766 assert(Ty.isDerivedType() && "Unknown kind of DIType");
Devang Patel2c4ceb12009-11-21 02:48:08 +0000767 constructTypeDIE(DW_Unit, *Buffer, DIDerivedType(Ty.getNode()));
Bill Wendling0310d762009-05-15 09:23:25 +0000768 }
769
770 // Add debug information entry to entity and appropriate context.
771 DIE *Die = NULL;
772 DIDescriptor Context = Ty.getContext();
773 if (!Context.isNull())
Devang Patel017d1212009-11-20 21:37:22 +0000774 Die = DW_Unit->getDIE(Context.getNode());
Bill Wendling0310d762009-05-15 09:23:25 +0000775
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000776 if (Die)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000777 Die->addChild(Buffer);
Jim Grosbach31ef40e2009-11-21 23:12:12 +0000778 else
Devang Patel2c4ceb12009-11-21 02:48:08 +0000779 DW_Unit->addDie(Buffer);
780 Entry->setEntry(Buffer);
781 Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry);
Bill Wendling0310d762009-05-15 09:23:25 +0000782}
783
Devang Patel2c4ceb12009-11-21 02:48:08 +0000784/// constructTypeDIE - Construct basic type die from DIBasicType.
785void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Bill Wendling0310d762009-05-15 09:23:25 +0000786 DIBasicType BTy) {
787 // Get core information.
Devang Patel65dbc902009-11-25 17:36:49 +0000788 StringRef Name = BTy.getName();
Bill Wendling0310d762009-05-15 09:23:25 +0000789 Buffer.setTag(dwarf::DW_TAG_base_type);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000790 addUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Bill Wendling0310d762009-05-15 09:23:25 +0000791 BTy.getEncoding());
792
793 // Add name if not anonymous or intermediate type.
Devang Patel65dbc902009-11-25 17:36:49 +0000794 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000795 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000796 uint64_t Size = BTy.getSizeInBits() >> 3;
Devang Patel2c4ceb12009-11-21 02:48:08 +0000797 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling0310d762009-05-15 09:23:25 +0000798}
799
Devang Patel2c4ceb12009-11-21 02:48:08 +0000800/// constructTypeDIE - Construct derived type die from DIDerivedType.
801void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Bill Wendling0310d762009-05-15 09:23:25 +0000802 DIDerivedType DTy) {
803 // Get core information.
Devang Patel65dbc902009-11-25 17:36:49 +0000804 StringRef Name = DTy.getName();
Bill Wendling0310d762009-05-15 09:23:25 +0000805 uint64_t Size = DTy.getSizeInBits() >> 3;
806 unsigned Tag = DTy.getTag();
807
808 // FIXME - Workaround for templates.
809 if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type;
810
811 Buffer.setTag(Tag);
812
813 // Map to main type, void will not have a type.
814 DIType FromTy = DTy.getTypeDerivedFrom();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000815 addType(DW_Unit, &Buffer, FromTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000816
817 // Add name if not anonymous or intermediate type.
Devang Pateldeea5642009-11-30 23:56:56 +0000818 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000819 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000820
821 // Add size if non-zero (derived types might be zero-sized.)
822 if (Size)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000823 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling0310d762009-05-15 09:23:25 +0000824
825 // Add source line info if available and TyDesc is not a forward declaration.
Devang Patel05f6fa82009-11-23 18:43:37 +0000826 if (!DTy.isForwardDecl())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000827 addSourceLine(&Buffer, &DTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000828}
829
Devang Patel2c4ceb12009-11-21 02:48:08 +0000830/// constructTypeDIE - Construct type DIE from DICompositeType.
831void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Bill Wendling0310d762009-05-15 09:23:25 +0000832 DICompositeType CTy) {
833 // Get core information.
Devang Patel65dbc902009-11-25 17:36:49 +0000834 StringRef Name = CTy.getName();
Bill Wendling0310d762009-05-15 09:23:25 +0000835
836 uint64_t Size = CTy.getSizeInBits() >> 3;
837 unsigned Tag = CTy.getTag();
838 Buffer.setTag(Tag);
839
840 switch (Tag) {
841 case dwarf::DW_TAG_vector_type:
842 case dwarf::DW_TAG_array_type:
Devang Patel2c4ceb12009-11-21 02:48:08 +0000843 constructArrayTypeDIE(DW_Unit, Buffer, &CTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000844 break;
845 case dwarf::DW_TAG_enumeration_type: {
846 DIArray Elements = CTy.getTypeArray();
847
848 // Add enumerators to enumeration type.
849 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
850 DIE *ElemDie = NULL;
Devang Patele4b27562009-08-28 23:24:31 +0000851 DIEnumerator Enum(Elements.getElement(i).getNode());
Devang Patelc5254722009-10-09 17:51:49 +0000852 if (!Enum.isNull()) {
Devang Patel2c4ceb12009-11-21 02:48:08 +0000853 ElemDie = constructEnumTypeDIE(DW_Unit, &Enum);
854 Buffer.addChild(ElemDie);
Devang Patelc5254722009-10-09 17:51:49 +0000855 }
Bill Wendling0310d762009-05-15 09:23:25 +0000856 }
857 }
858 break;
859 case dwarf::DW_TAG_subroutine_type: {
860 // Add return type.
861 DIArray Elements = CTy.getTypeArray();
862 DIDescriptor RTy = Elements.getElement(0);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000863 addType(DW_Unit, &Buffer, DIType(RTy.getNode()));
Bill Wendling0310d762009-05-15 09:23:25 +0000864
865 // Add prototype flag.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000866 addUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000867
868 // Add arguments.
869 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
870 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
871 DIDescriptor Ty = Elements.getElement(i);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000872 addType(DW_Unit, Arg, DIType(Ty.getNode()));
873 Buffer.addChild(Arg);
Bill Wendling0310d762009-05-15 09:23:25 +0000874 }
875 }
876 break;
877 case dwarf::DW_TAG_structure_type:
878 case dwarf::DW_TAG_union_type:
879 case dwarf::DW_TAG_class_type: {
880 // Add elements to structure type.
881 DIArray Elements = CTy.getTypeArray();
882
883 // A forward struct declared type may not have elements available.
884 if (Elements.isNull())
885 break;
886
887 // Add elements to structure type.
888 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
889 DIDescriptor Element = Elements.getElement(i);
Devang Patele4b27562009-08-28 23:24:31 +0000890 if (Element.isNull())
891 continue;
Bill Wendling0310d762009-05-15 09:23:25 +0000892 DIE *ElemDie = NULL;
893 if (Element.getTag() == dwarf::DW_TAG_subprogram)
Devang Patel1d5cc1d2009-12-03 01:25:38 +0000894 ElemDie = createMemberSubprogramDIE(DW_Unit,
895 DISubprogram(Element.getNode()));
Bill Wendling0310d762009-05-15 09:23:25 +0000896 else
Devang Patel2c4ceb12009-11-21 02:48:08 +0000897 ElemDie = createMemberDIE(DW_Unit,
Devang Patele4b27562009-08-28 23:24:31 +0000898 DIDerivedType(Element.getNode()));
Devang Patel2c4ceb12009-11-21 02:48:08 +0000899 Buffer.addChild(ElemDie);
Bill Wendling0310d762009-05-15 09:23:25 +0000900 }
901
Devang Patela1ba2692009-08-27 23:51:51 +0000902 if (CTy.isAppleBlockExtension())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000903 addUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000904
905 unsigned RLang = CTy.getRunTimeLang();
906 if (RLang)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000907 addUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class,
Bill Wendling0310d762009-05-15 09:23:25 +0000908 dwarf::DW_FORM_data1, RLang);
909 break;
910 }
911 default:
912 break;
913 }
914
915 // Add name if not anonymous or intermediate type.
Devang Patel65dbc902009-11-25 17:36:49 +0000916 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000917 addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000918
919 if (Tag == dwarf::DW_TAG_enumeration_type ||
920 Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) {
921 // Add size if non-zero (derived types might be zero-sized.)
922 if (Size)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000923 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
Bill Wendling0310d762009-05-15 09:23:25 +0000924 else {
925 // Add zero size if it is not a forward declaration.
926 if (CTy.isForwardDecl())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000927 addUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000928 else
Devang Patel2c4ceb12009-11-21 02:48:08 +0000929 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0);
Bill Wendling0310d762009-05-15 09:23:25 +0000930 }
931
932 // Add source line info if available.
933 if (!CTy.isForwardDecl())
Devang Patel2c4ceb12009-11-21 02:48:08 +0000934 addSourceLine(&Buffer, &CTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000935 }
936}
937
Devang Patel2c4ceb12009-11-21 02:48:08 +0000938/// constructSubrangeDIE - Construct subrange DIE from DISubrange.
939void DwarfDebug::constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){
Bill Wendling0310d762009-05-15 09:23:25 +0000940 int64_t L = SR.getLo();
941 int64_t H = SR.getHi();
942 DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type);
943
Devang Patel2c4ceb12009-11-21 02:48:08 +0000944 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy);
Devang Patel6325a532009-08-14 20:59:16 +0000945 if (L)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000946 addSInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L);
Devang Patel6325a532009-08-14 20:59:16 +0000947 if (H)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000948 addSInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H);
Bill Wendling0310d762009-05-15 09:23:25 +0000949
Devang Patel2c4ceb12009-11-21 02:48:08 +0000950 Buffer.addChild(DW_Subrange);
Bill Wendling0310d762009-05-15 09:23:25 +0000951}
952
Devang Patel2c4ceb12009-11-21 02:48:08 +0000953/// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
954void DwarfDebug::constructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
Bill Wendling0310d762009-05-15 09:23:25 +0000955 DICompositeType *CTy) {
956 Buffer.setTag(dwarf::DW_TAG_array_type);
957 if (CTy->getTag() == dwarf::DW_TAG_vector_type)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000958 addUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +0000959
960 // Emit derived type.
Devang Patel2c4ceb12009-11-21 02:48:08 +0000961 addType(DW_Unit, &Buffer, CTy->getTypeDerivedFrom());
Bill Wendling0310d762009-05-15 09:23:25 +0000962 DIArray Elements = CTy->getTypeArray();
963
Devang Patel6f01d9c2009-11-21 00:31:03 +0000964 // Get an anonymous type for index type.
965 DIE *IdxTy = DW_Unit->getIndexTyDie();
966 if (!IdxTy) {
967 // Construct an anonymous type for index type.
968 IdxTy = new DIE(dwarf::DW_TAG_base_type);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000969 addUInt(IdxTy, dwarf::DW_AT_byte_size, 0, sizeof(int32_t));
970 addUInt(IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Devang Patel6f01d9c2009-11-21 00:31:03 +0000971 dwarf::DW_ATE_signed);
Devang Patel2c4ceb12009-11-21 02:48:08 +0000972 DW_Unit->addDie(IdxTy);
Devang Patel6f01d9c2009-11-21 00:31:03 +0000973 DW_Unit->setIndexTyDie(IdxTy);
974 }
Bill Wendling0310d762009-05-15 09:23:25 +0000975
976 // Add subranges to array type.
977 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
978 DIDescriptor Element = Elements.getElement(i);
979 if (Element.getTag() == dwarf::DW_TAG_subrange_type)
Devang Patel2c4ceb12009-11-21 02:48:08 +0000980 constructSubrangeDIE(Buffer, DISubrange(Element.getNode()), IdxTy);
Bill Wendling0310d762009-05-15 09:23:25 +0000981 }
982}
983
Devang Patel2c4ceb12009-11-21 02:48:08 +0000984/// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
985DIE *DwarfDebug::constructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy) {
Bill Wendling0310d762009-05-15 09:23:25 +0000986 DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator);
Devang Patel65dbc902009-11-25 17:36:49 +0000987 StringRef Name = ETy->getName();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000988 addString(Enumerator, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +0000989 int64_t Value = ETy->getEnumValue();
Devang Patel2c4ceb12009-11-21 02:48:08 +0000990 addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value);
Bill Wendling0310d762009-05-15 09:23:25 +0000991 return Enumerator;
992}
993
Devang Patel2c4ceb12009-11-21 02:48:08 +0000994/// createGlobalVariableDIE - Create new DIE using GV.
995DIE *DwarfDebug::createGlobalVariableDIE(CompileUnit *DW_Unit,
Bill Wendling0310d762009-05-15 09:23:25 +0000996 const DIGlobalVariable &GV) {
Jim Grosbach7ab38df2009-11-22 19:20:36 +0000997 // If the global variable was optmized out then no need to create debug info
998 // entry.
Devang Patel84c73e92009-11-06 17:58:12 +0000999 if (!GV.getGlobal()) return NULL;
Devang Patel65dbc902009-11-25 17:36:49 +00001000 if (GV.getDisplayName().empty()) return NULL;
Devang Patel465c3be2009-11-06 01:30:04 +00001001
Bill Wendling0310d762009-05-15 09:23:25 +00001002 DIE *GVDie = new DIE(dwarf::DW_TAG_variable);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001003 addString(GVDie, dwarf::DW_AT_name, dwarf::DW_FORM_string,
Devang Patel5ccdd102009-09-29 18:40:58 +00001004 GV.getDisplayName());
1005
Devang Patel65dbc902009-11-25 17:36:49 +00001006 StringRef LinkageName = GV.getLinkageName();
1007 if (!LinkageName.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001008 // Skip special LLVM prefix that is used to inform the asm printer to not
1009 // emit usual symbol prefix before the symbol name. This happens for
1010 // Objective-C symbol names and symbol whose name is replaced using GCC's
1011 // __asm__ attribute.
Devang Patel53cb17d2009-07-16 01:01:22 +00001012 if (LinkageName[0] == 1)
Benjamin Kramer1c3451f2009-11-25 18:26:09 +00001013 LinkageName = LinkageName.substr(1);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001014 addString(GVDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel1a8d2d22009-07-14 00:55:28 +00001015 LinkageName);
Devang Patel53cb17d2009-07-16 01:01:22 +00001016 }
Devang Patel2c4ceb12009-11-21 02:48:08 +00001017 addType(DW_Unit, GVDie, GV.getType());
Bill Wendling0310d762009-05-15 09:23:25 +00001018 if (!GV.isLocalToUnit())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001019 addUInt(GVDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
1020 addSourceLine(GVDie, &GV);
Devang Patelb71a16d2009-10-05 23:22:08 +00001021
1022 // Add address.
1023 DIEBlock *Block = new DIEBlock();
Devang Patel2c4ceb12009-11-21 02:48:08 +00001024 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
1025 addObjectLabel(Block, 0, dwarf::DW_FORM_udata,
Devang Patelb71a16d2009-10-05 23:22:08 +00001026 Asm->Mang->getMangledName(GV.getGlobal()));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001027 addBlock(GVDie, dwarf::DW_AT_location, 0, Block);
Devang Patelb71a16d2009-10-05 23:22:08 +00001028
Bill Wendling0310d762009-05-15 09:23:25 +00001029 return GVDie;
1030}
1031
Devang Patel2c4ceb12009-11-21 02:48:08 +00001032/// createMemberDIE - Create new member DIE.
1033DIE *DwarfDebug::createMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT){
Bill Wendling0310d762009-05-15 09:23:25 +00001034 DIE *MemberDie = new DIE(DT.getTag());
Devang Patel65dbc902009-11-25 17:36:49 +00001035 StringRef Name = DT.getName();
1036 if (!Name.empty())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001037 addString(MemberDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Devang Patel65dbc902009-11-25 17:36:49 +00001038
Devang Patel2c4ceb12009-11-21 02:48:08 +00001039 addType(DW_Unit, MemberDie, DT.getTypeDerivedFrom());
Bill Wendling0310d762009-05-15 09:23:25 +00001040
Devang Patel2c4ceb12009-11-21 02:48:08 +00001041 addSourceLine(MemberDie, &DT);
Bill Wendling0310d762009-05-15 09:23:25 +00001042
Devang Patel33db5082009-11-04 22:06:12 +00001043 DIEBlock *MemLocationDie = new DIEBlock();
Devang Patel2c4ceb12009-11-21 02:48:08 +00001044 addUInt(MemLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
Devang Patel33db5082009-11-04 22:06:12 +00001045
Bill Wendling0310d762009-05-15 09:23:25 +00001046 uint64_t Size = DT.getSizeInBits();
Devang Patel61ecbd12009-11-04 23:48:00 +00001047 uint64_t FieldSize = DT.getOriginalTypeSize();
Bill Wendling0310d762009-05-15 09:23:25 +00001048
1049 if (Size != FieldSize) {
1050 // Handle bitfield.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001051 addUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3);
1052 addUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits());
Bill Wendling0310d762009-05-15 09:23:25 +00001053
1054 uint64_t Offset = DT.getOffsetInBits();
1055 uint64_t FieldOffset = Offset;
1056 uint64_t AlignMask = ~(DT.getAlignInBits() - 1);
1057 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1058 FieldOffset = (HiMark - FieldSize);
1059 Offset -= FieldOffset;
1060
1061 // Maybe we need to work from the other end.
1062 if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001063 addUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset);
Bill Wendling0310d762009-05-15 09:23:25 +00001064
Devang Patel33db5082009-11-04 22:06:12 +00001065 // Here WD_AT_data_member_location points to the anonymous
1066 // field that includes this bit field.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001067 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, FieldOffset >> 3);
Devang Patel33db5082009-11-04 22:06:12 +00001068
1069 } else
1070 // This is not a bitfield.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001071 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3);
Devang Patel33db5082009-11-04 22:06:12 +00001072
Devang Patel2c4ceb12009-11-21 02:48:08 +00001073 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, MemLocationDie);
Bill Wendling0310d762009-05-15 09:23:25 +00001074
1075 if (DT.isProtected())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001076 addUInt(MemberDie, dwarf::DW_AT_accessibility, 0,
Bill Wendling0310d762009-05-15 09:23:25 +00001077 dwarf::DW_ACCESS_protected);
1078 else if (DT.isPrivate())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001079 addUInt(MemberDie, dwarf::DW_AT_accessibility, 0,
Bill Wendling0310d762009-05-15 09:23:25 +00001080 dwarf::DW_ACCESS_private);
1081
1082 return MemberDie;
1083}
1084
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001085/// createRawSubprogramDIE - Create new partially incomplete DIE. This is
1086/// a helper routine used by createMemberSubprogramDIE and
1087/// createSubprogramDIE.
1088DIE *DwarfDebug::createRawSubprogramDIE(CompileUnit *DW_Unit,
1089 const DISubprogram &SP) {
1090 DIE *SPDie = new DIE(dwarf::DW_TAG_subprogram);
Devang Patel65dbc902009-11-25 17:36:49 +00001091 addString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, SP.getName());
Bill Wendling0310d762009-05-15 09:23:25 +00001092
Devang Patel65dbc902009-11-25 17:36:49 +00001093 StringRef LinkageName = SP.getLinkageName();
1094 if (!LinkageName.empty()) {
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001095 // Skip special LLVM prefix that is used to inform the asm printer to not
1096 // emit usual symbol prefix before the symbol name. This happens for
1097 // Objective-C symbol names and symbol whose name is replaced using GCC's
1098 // __asm__ attribute.
Devang Patel53cb17d2009-07-16 01:01:22 +00001099 if (LinkageName[0] == 1)
Benjamin Kramer1c3451f2009-11-25 18:26:09 +00001100 LinkageName = LinkageName.substr(1);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001101 addString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
Devang Patel1a8d2d22009-07-14 00:55:28 +00001102 LinkageName);
Devang Patel53cb17d2009-07-16 01:01:22 +00001103 }
Devang Patel2c4ceb12009-11-21 02:48:08 +00001104 addSourceLine(SPDie, &SP);
Bill Wendling0310d762009-05-15 09:23:25 +00001105
Bill Wendling0310d762009-05-15 09:23:25 +00001106 // Add prototyped tag, if C or ObjC.
1107 unsigned Lang = SP.getCompileUnit().getLanguage();
1108 if (Lang == dwarf::DW_LANG_C99 || Lang == dwarf::DW_LANG_C89 ||
1109 Lang == dwarf::DW_LANG_ObjC)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001110 addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +00001111
1112 // Add Return Type.
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001113 DICompositeType SPTy = SP.getType();
1114 DIArray Args = SPTy.getTypeArray();
Bill Wendling0310d762009-05-15 09:23:25 +00001115 unsigned SPTag = SPTy.getTag();
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001116 if (Args.isNull() || SPTag != dwarf::DW_TAG_subroutine_type)
1117 addType(DW_Unit, SPDie, SPTy);
1118 else
1119 addType(DW_Unit, SPDie, DIType(Args.getElement(0).getNode()));
1120
1121 return SPDie;
1122}
1123
1124/// createMemberSubprogramDIE - Create new member DIE using SP. This routine
1125/// always returns a die with DW_AT_declaration attribute.
1126DIE *DwarfDebug::createMemberSubprogramDIE(CompileUnit *DW_Unit,
1127 const DISubprogram &SP) {
1128 DIE *SPDie = ModuleCU->getDIE(SP.getNode());
1129 if (!SPDie)
1130 SPDie = createSubprogramDIE(DW_Unit, SP);
1131
1132 // If SPDie has DW_AT_declaration then reuse it.
1133 if (!SP.isDefinition())
1134 return SPDie;
1135
1136 // Otherwise create new DIE for the declaration. First push definition
1137 // DIE at the top level.
1138 if (TopLevelDIEs.insert(SPDie))
1139 TopLevelDIEsVector.push_back(SPDie);
1140
1141 SPDie = createRawSubprogramDIE(DW_Unit, SP);
1142
1143 // Add arguments.
1144 DICompositeType SPTy = SP.getType();
1145 DIArray Args = SPTy.getTypeArray();
1146 unsigned SPTag = SPTy.getTag();
1147 if (SPTag == dwarf::DW_TAG_subroutine_type)
1148 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1149 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
1150 addType(DW_Unit, Arg, DIType(Args.getElement(i).getNode()));
1151 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); // ??
1152 SPDie->addChild(Arg);
1153 }
1154
1155 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
1156 return SPDie;
1157}
1158
1159/// createSubprogramDIE - Create new DIE using SP.
1160DIE *DwarfDebug::createSubprogramDIE(CompileUnit *DW_Unit,
1161 const DISubprogram &SP) {
1162 DIE *SPDie = ModuleCU->getDIE(SP.getNode());
1163 if (SPDie)
1164 return SPDie;
1165
1166 SPDie = createRawSubprogramDIE(DW_Unit, SP);
Bill Wendling0310d762009-05-15 09:23:25 +00001167
1168 if (!SP.isDefinition()) {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001169 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
Bill Wendling0310d762009-05-15 09:23:25 +00001170
1171 // Add arguments. Do not add arguments for subprogram definition. They will
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001172 // be handled while processing variables.
1173 DICompositeType SPTy = SP.getType();
1174 DIArray Args = SPTy.getTypeArray();
1175 unsigned SPTag = SPTy.getTag();
1176
Bill Wendling0310d762009-05-15 09:23:25 +00001177 if (SPTag == dwarf::DW_TAG_subroutine_type)
1178 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1179 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001180 addType(DW_Unit, Arg, DIType(Args.getElement(i).getNode()));
1181 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); // ??
1182 SPDie->addChild(Arg);
Bill Wendling0310d762009-05-15 09:23:25 +00001183 }
1184 }
1185
Bill Wendling0310d762009-05-15 09:23:25 +00001186 // DW_TAG_inlined_subroutine may refer to this DIE.
Devang Patel017d1212009-11-20 21:37:22 +00001187 DW_Unit->insertDIE(SP.getNode(), SPDie);
Bill Wendling0310d762009-05-15 09:23:25 +00001188 return SPDie;
1189}
1190
Devang Patel2c4ceb12009-11-21 02:48:08 +00001191/// findCompileUnit - Get the compile unit for the given descriptor.
Bill Wendling0310d762009-05-15 09:23:25 +00001192///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001193CompileUnit &DwarfDebug::findCompileUnit(DICompileUnit Unit) const {
Bill Wendling0310d762009-05-15 09:23:25 +00001194 DenseMap<Value *, CompileUnit *>::const_iterator I =
Devang Patele4b27562009-08-28 23:24:31 +00001195 CompileUnitMap.find(Unit.getNode());
Bill Wendling0310d762009-05-15 09:23:25 +00001196 assert(I != CompileUnitMap.end() && "Missing compile unit.");
1197 return *I->second;
1198}
1199
Devang Patel2c4ceb12009-11-21 02:48:08 +00001200/// createDbgScopeVariable - Create a new scope variable.
Bill Wendling0310d762009-05-15 09:23:25 +00001201///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001202DIE *DwarfDebug::createDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit) {
Bill Wendling0310d762009-05-15 09:23:25 +00001203 // Get the descriptor.
1204 const DIVariable &VD = DV->getVariable();
Devang Patel65dbc902009-11-25 17:36:49 +00001205 StringRef Name = VD.getName();
1206 if (Name.empty())
Devang Patel1b845972009-11-03 18:30:27 +00001207 return NULL;
Bill Wendling0310d762009-05-15 09:23:25 +00001208
1209 // Translate tag to proper Dwarf tag. The result variable is dropped for
1210 // now.
1211 unsigned Tag;
1212 switch (VD.getTag()) {
1213 case dwarf::DW_TAG_return_variable:
1214 return NULL;
1215 case dwarf::DW_TAG_arg_variable:
1216 Tag = dwarf::DW_TAG_formal_parameter;
1217 break;
1218 case dwarf::DW_TAG_auto_variable: // fall thru
1219 default:
1220 Tag = dwarf::DW_TAG_variable;
1221 break;
1222 }
1223
1224 // Define variable debug information entry.
1225 DIE *VariableDie = new DIE(Tag);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001226 addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
Bill Wendling0310d762009-05-15 09:23:25 +00001227
1228 // Add source line info if available.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001229 addSourceLine(VariableDie, &VD);
Bill Wendling0310d762009-05-15 09:23:25 +00001230
1231 // Add variable type.
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001232 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
Devang Patel53bb5c92009-11-10 23:06:00 +00001233 // addresses instead.
Caroline Ticedc8f6042009-08-31 21:19:37 +00001234 if (VD.isBlockByrefVariable())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001235 addType(Unit, VariableDie, getBlockByrefType(VD.getType(), Name));
Caroline Ticedc8f6042009-08-31 21:19:37 +00001236 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001237 addType(Unit, VariableDie, VD.getType());
Bill Wendling0310d762009-05-15 09:23:25 +00001238
1239 // Add variable address.
Devang Patel53bb5c92009-11-10 23:06:00 +00001240 // Variables for abstract instances of inlined functions don't get a
1241 // location.
1242 MachineLocation Location;
Jim Grosbacha2f20b22009-11-22 20:14:00 +00001243 unsigned FrameReg;
1244 int Offset = RI->getFrameIndexReference(*MF, DV->getFrameIndex(), FrameReg);
1245 Location.set(FrameReg, Offset);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001246
1247
Devang Patel53bb5c92009-11-10 23:06:00 +00001248 if (VD.hasComplexAddress())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001249 addComplexAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001250 else if (VD.isBlockByrefVariable())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001251 addBlockByrefAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001252 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001253 addAddress(VariableDie, dwarf::DW_AT_location, Location);
Bill Wendling0310d762009-05-15 09:23:25 +00001254
1255 return VariableDie;
1256}
1257
Devang Patel53bb5c92009-11-10 23:06:00 +00001258/// getUpdatedDbgScope - Find or create DbgScope assicated with the instruction.
1259/// Initialize scope and update scope hierarchy.
1260DbgScope *DwarfDebug::getUpdatedDbgScope(MDNode *N, const MachineInstr *MI,
1261 MDNode *InlinedAt) {
1262 assert (N && "Invalid Scope encoding!");
1263 assert (MI && "Missing machine instruction!");
1264 bool GetConcreteScope = (MI && InlinedAt);
1265
1266 DbgScope *NScope = NULL;
1267
1268 if (InlinedAt)
1269 NScope = DbgScopeMap.lookup(InlinedAt);
1270 else
1271 NScope = DbgScopeMap.lookup(N);
1272 assert (NScope && "Unable to find working scope!");
1273
1274 if (NScope->getFirstInsn())
1275 return NScope;
Devang Patelaf9e8472009-10-01 20:31:14 +00001276
1277 DbgScope *Parent = NULL;
Devang Patel53bb5c92009-11-10 23:06:00 +00001278 if (GetConcreteScope) {
Devang Patelc90aefe2009-10-14 21:08:09 +00001279 DILocation IL(InlinedAt);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001280 Parent = getUpdatedDbgScope(IL.getScope().getNode(), MI,
Devang Patel53bb5c92009-11-10 23:06:00 +00001281 IL.getOrigLocation().getNode());
1282 assert (Parent && "Unable to find Parent scope!");
1283 NScope->setParent(Parent);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001284 Parent->addScope(NScope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001285 } else if (DIDescriptor(N).isLexicalBlock()) {
1286 DILexicalBlock DB(N);
1287 if (!DB.getContext().isNull()) {
1288 Parent = getUpdatedDbgScope(DB.getContext().getNode(), MI, InlinedAt);
1289 NScope->setParent(Parent);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001290 Parent->addScope(NScope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001291 }
Devang Patelc90aefe2009-10-14 21:08:09 +00001292 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001293
Devang Patelbdf45cb2009-10-27 20:47:17 +00001294 NScope->setFirstInsn(MI);
Devang Patelaf9e8472009-10-01 20:31:14 +00001295
Devang Patel53bb5c92009-11-10 23:06:00 +00001296 if (!Parent && !InlinedAt) {
Devang Patel39ae3ff2009-11-11 00:31:36 +00001297 StringRef SPName = DISubprogram(N).getLinkageName();
1298 if (SPName == MF->getFunction()->getName())
1299 CurrentFnDbgScope = NScope;
Devang Patel53bb5c92009-11-10 23:06:00 +00001300 }
Devang Patelaf9e8472009-10-01 20:31:14 +00001301
Devang Patel53bb5c92009-11-10 23:06:00 +00001302 if (GetConcreteScope) {
1303 ConcreteScopes[InlinedAt] = NScope;
1304 getOrCreateAbstractScope(N);
1305 }
1306
Devang Patelbdf45cb2009-10-27 20:47:17 +00001307 return NScope;
Devang Patelaf9e8472009-10-01 20:31:14 +00001308}
1309
Devang Patel53bb5c92009-11-10 23:06:00 +00001310DbgScope *DwarfDebug::getOrCreateAbstractScope(MDNode *N) {
1311 assert (N && "Invalid Scope encoding!");
1312
1313 DbgScope *AScope = AbstractScopes.lookup(N);
1314 if (AScope)
1315 return AScope;
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001316
Devang Patel53bb5c92009-11-10 23:06:00 +00001317 DbgScope *Parent = NULL;
1318
1319 DIDescriptor Scope(N);
1320 if (Scope.isLexicalBlock()) {
1321 DILexicalBlock DB(N);
1322 DIDescriptor ParentDesc = DB.getContext();
1323 if (!ParentDesc.isNull())
1324 Parent = getOrCreateAbstractScope(ParentDesc.getNode());
1325 }
1326
1327 AScope = new DbgScope(Parent, DIDescriptor(N), NULL);
1328
1329 if (Parent)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001330 Parent->addScope(AScope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001331 AScope->setAbstractScope();
1332 AbstractScopes[N] = AScope;
1333 if (DIDescriptor(N).isSubprogram())
1334 AbstractScopesList.push_back(AScope);
1335 return AScope;
1336}
Devang Patelaf9e8472009-10-01 20:31:14 +00001337
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001338/// updateSubprogramScopeDIE - Find DIE for the given subprogram and
Devang Patel2c4ceb12009-11-21 02:48:08 +00001339/// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
1340/// If there are global variables in this scope then create and insert
1341/// DIEs for these variables.
1342DIE *DwarfDebug::updateSubprogramScopeDIE(MDNode *SPNode) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001343
Devang Patel017d1212009-11-20 21:37:22 +00001344 DIE *SPDie = ModuleCU->getDIE(SPNode);
Devang Patel53bb5c92009-11-10 23:06:00 +00001345 assert (SPDie && "Unable to find subprogram DIE!");
Devang Patel2c4ceb12009-11-21 02:48:08 +00001346 addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
Devang Patel53bb5c92009-11-10 23:06:00 +00001347 DWLabel("func_begin", SubprogramCount));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001348 addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Devang Patel53bb5c92009-11-10 23:06:00 +00001349 DWLabel("func_end", SubprogramCount));
1350 MachineLocation Location(RI->getFrameRegister(*MF));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001351 addAddress(SPDie, dwarf::DW_AT_frame_base, Location);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001352
Devang Patel53bb5c92009-11-10 23:06:00 +00001353 if (!DISubprogram(SPNode).isLocalToUnit())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001354 addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
Devang Patel53bb5c92009-11-10 23:06:00 +00001355
1356 // If there are global variables at this scope then add their dies.
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001357 for (SmallVector<WeakVH, 4>::iterator SGI = ScopedGVs.begin(),
Devang Patel53bb5c92009-11-10 23:06:00 +00001358 SGE = ScopedGVs.end(); SGI != SGE; ++SGI) {
1359 MDNode *N = dyn_cast_or_null<MDNode>(*SGI);
1360 if (!N) continue;
1361 DIGlobalVariable GV(N);
1362 if (GV.getContext().getNode() == SPNode) {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001363 DIE *ScopedGVDie = createGlobalVariableDIE(ModuleCU, GV);
Devang Patelfb0ee432009-11-10 23:20:04 +00001364 if (ScopedGVDie)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001365 SPDie->addChild(ScopedGVDie);
Devang Patel53bb5c92009-11-10 23:06:00 +00001366 }
1367 }
Devang Patel193f7202009-11-24 01:14:22 +00001368
Devang Patel53bb5c92009-11-10 23:06:00 +00001369 return SPDie;
1370}
1371
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001372/// constructLexicalScope - Construct new DW_TAG_lexical_block
Devang Patel2c4ceb12009-11-21 02:48:08 +00001373/// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
1374DIE *DwarfDebug::constructLexicalScopeDIE(DbgScope *Scope) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001375 unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
1376 unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
1377
1378 // Ignore empty scopes.
1379 if (StartID == EndID && StartID != 0)
1380 return NULL;
1381
1382 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block);
1383 if (Scope->isAbstractScope())
1384 return ScopeDIE;
1385
Devang Patel2c4ceb12009-11-21 02:48:08 +00001386 addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001387 StartID ?
1388 DWLabel("label", StartID)
Devang Patel53bb5c92009-11-10 23:06:00 +00001389 : DWLabel("func_begin", SubprogramCount));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001390 addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001391 EndID ?
1392 DWLabel("label", EndID)
Devang Patel53bb5c92009-11-10 23:06:00 +00001393 : DWLabel("func_end", SubprogramCount));
1394
1395
1396
1397 return ScopeDIE;
1398}
1399
Devang Patel2c4ceb12009-11-21 02:48:08 +00001400/// constructInlinedScopeDIE - This scope represents inlined body of
1401/// a function. Construct DIE to represent this concrete inlined copy
1402/// of the function.
1403DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001404 unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
1405 unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
1406 assert (StartID && "Invalid starting label for an inlined scope!");
1407 assert (EndID && "Invalid end label for an inlined scope!");
1408 // Ignore empty scopes.
1409 if (StartID == EndID && StartID != 0)
1410 return NULL;
1411
1412 DIScope DS(Scope->getScopeNode());
1413 if (DS.isNull())
1414 return NULL;
1415 DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine);
1416
1417 DISubprogram InlinedSP = getDISubprogram(DS.getNode());
Devang Patel017d1212009-11-20 21:37:22 +00001418 DIE *OriginDIE = ModuleCU->getDIE(InlinedSP.getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00001419 assert (OriginDIE && "Unable to find Origin DIE!");
Devang Patel2c4ceb12009-11-21 02:48:08 +00001420 addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin,
Devang Patel53bb5c92009-11-10 23:06:00 +00001421 dwarf::DW_FORM_ref4, OriginDIE);
1422
Devang Patel2c4ceb12009-11-21 02:48:08 +00001423 addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
Devang Patel53bb5c92009-11-10 23:06:00 +00001424 DWLabel("label", StartID));
Devang Patel2c4ceb12009-11-21 02:48:08 +00001425 addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr,
Devang Patel53bb5c92009-11-10 23:06:00 +00001426 DWLabel("label", EndID));
1427
1428 InlinedSubprogramDIEs.insert(OriginDIE);
1429
1430 // Track the start label for this inlined function.
1431 ValueMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
1432 I = InlineInfo.find(InlinedSP.getNode());
1433
1434 if (I == InlineInfo.end()) {
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001435 InlineInfo[InlinedSP.getNode()].push_back(std::make_pair(StartID,
1436 ScopeDIE));
Devang Patel53bb5c92009-11-10 23:06:00 +00001437 InlinedSPNodes.push_back(InlinedSP.getNode());
1438 } else
1439 I->second.push_back(std::make_pair(StartID, ScopeDIE));
1440
1441 StringPool.insert(InlinedSP.getName());
1442 StringPool.insert(InlinedSP.getLinkageName());
1443 DILocation DL(Scope->getInlinedAt());
Devang Patel2c4ceb12009-11-21 02:48:08 +00001444 addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, ModuleCU->getID());
1445 addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber());
Devang Patel53bb5c92009-11-10 23:06:00 +00001446
1447 return ScopeDIE;
1448}
1449
Devang Patel2c4ceb12009-11-21 02:48:08 +00001450
1451/// constructVariableDIE - Construct a DIE for the given DbgVariable.
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001452DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV,
Devang Patel53bb5c92009-11-10 23:06:00 +00001453 DbgScope *Scope, CompileUnit *Unit) {
1454 // Get the descriptor.
1455 const DIVariable &VD = DV->getVariable();
Devang Patel65dbc902009-11-25 17:36:49 +00001456 StringRef Name = VD.getName();
1457 if (Name.empty())
Devang Patel3fb6bd62009-11-13 02:25:26 +00001458 return NULL;
Devang Patel53bb5c92009-11-10 23:06:00 +00001459
1460 // Translate tag to proper Dwarf tag. The result variable is dropped for
1461 // now.
1462 unsigned Tag;
1463 switch (VD.getTag()) {
1464 case dwarf::DW_TAG_return_variable:
1465 return NULL;
1466 case dwarf::DW_TAG_arg_variable:
1467 Tag = dwarf::DW_TAG_formal_parameter;
1468 break;
1469 case dwarf::DW_TAG_auto_variable: // fall thru
1470 default:
1471 Tag = dwarf::DW_TAG_variable;
1472 break;
1473 }
1474
1475 // Define variable debug information entry.
1476 DIE *VariableDie = new DIE(Tag);
1477
1478
1479 DIE *AbsDIE = NULL;
1480 if (DbgVariable *AV = DV->getAbstractVariable())
1481 AbsDIE = AV->getDIE();
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001482
Devang Patel53bb5c92009-11-10 23:06:00 +00001483 if (AbsDIE) {
1484 DIScope DS(Scope->getScopeNode());
1485 DISubprogram InlinedSP = getDISubprogram(DS.getNode());
Devang Patel017d1212009-11-20 21:37:22 +00001486 DIE *OriginSPDIE = ModuleCU->getDIE(InlinedSP.getNode());
Daniel Dunbarc0326792009-11-11 03:09:50 +00001487 (void) OriginSPDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +00001488 assert (OriginSPDIE && "Unable to find Origin DIE for the SP!");
1489 DIE *AbsDIE = DV->getAbstractVariable()->getDIE();
1490 assert (AbsDIE && "Unable to find Origin DIE for the Variable!");
Devang Patel2c4ceb12009-11-21 02:48:08 +00001491 addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin,
Devang Patel53bb5c92009-11-10 23:06:00 +00001492 dwarf::DW_FORM_ref4, AbsDIE);
1493 }
1494 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001495 addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
1496 addSourceLine(VariableDie, &VD);
Devang Patel53bb5c92009-11-10 23:06:00 +00001497
1498 // Add variable type.
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001499 // FIXME: isBlockByrefVariable should be reformulated in terms of complex
Devang Patel53bb5c92009-11-10 23:06:00 +00001500 // addresses instead.
1501 if (VD.isBlockByrefVariable())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001502 addType(Unit, VariableDie, getBlockByrefType(VD.getType(), Name));
Devang Patel53bb5c92009-11-10 23:06:00 +00001503 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001504 addType(Unit, VariableDie, VD.getType());
Devang Patel53bb5c92009-11-10 23:06:00 +00001505 }
1506
1507 // Add variable address.
1508 if (!Scope->isAbstractScope()) {
1509 MachineLocation Location;
Jim Grosbacha2f20b22009-11-22 20:14:00 +00001510 unsigned FrameReg;
1511 int Offset = RI->getFrameIndexReference(*MF, DV->getFrameIndex(), FrameReg);
1512 Location.set(FrameReg, Offset);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001513
Devang Patel53bb5c92009-11-10 23:06:00 +00001514 if (VD.hasComplexAddress())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001515 addComplexAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001516 else if (VD.isBlockByrefVariable())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001517 addBlockByrefAddress(DV, VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001518 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001519 addAddress(VariableDie, dwarf::DW_AT_location, Location);
Devang Patel53bb5c92009-11-10 23:06:00 +00001520 }
1521 DV->setDIE(VariableDie);
1522 return VariableDie;
1523
1524}
Devang Patel2c4ceb12009-11-21 02:48:08 +00001525
Devang Patel193f7202009-11-24 01:14:22 +00001526void DwarfDebug::addPubTypes(DISubprogram SP) {
1527 DICompositeType SPTy = SP.getType();
1528 unsigned SPTag = SPTy.getTag();
1529 if (SPTag != dwarf::DW_TAG_subroutine_type)
1530 return;
1531
1532 DIArray Args = SPTy.getTypeArray();
1533 if (Args.isNull())
1534 return;
1535
1536 for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) {
1537 DIType ATy(Args.getElement(i).getNode());
1538 if (ATy.isNull())
1539 continue;
1540 DICompositeType CATy = getDICompositeType(ATy);
Devang Patel65dbc902009-11-25 17:36:49 +00001541 if (!CATy.isNull() && !CATy.getName().empty()) {
Devang Patel193f7202009-11-24 01:14:22 +00001542 if (DIEEntry *Entry = ModuleCU->getDIEEntry(CATy.getNode()))
1543 ModuleCU->addGlobalType(CATy.getName(), Entry->getEntry());
1544 }
1545 }
1546}
1547
Devang Patel2c4ceb12009-11-21 02:48:08 +00001548/// constructScopeDIE - Construct a DIE for this scope.
1549DIE *DwarfDebug::constructScopeDIE(DbgScope *Scope) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001550 if (!Scope)
1551 return NULL;
1552 DIScope DS(Scope->getScopeNode());
1553 if (DS.isNull())
1554 return NULL;
1555
1556 DIE *ScopeDIE = NULL;
1557 if (Scope->getInlinedAt())
Devang Patel2c4ceb12009-11-21 02:48:08 +00001558 ScopeDIE = constructInlinedScopeDIE(Scope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001559 else if (DS.isSubprogram()) {
1560 if (Scope->isAbstractScope())
Devang Patel017d1212009-11-20 21:37:22 +00001561 ScopeDIE = ModuleCU->getDIE(DS.getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00001562 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001563 ScopeDIE = updateSubprogramScopeDIE(DS.getNode());
Devang Patel53bb5c92009-11-10 23:06:00 +00001564 }
1565 else {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001566 ScopeDIE = constructLexicalScopeDIE(Scope);
Devang Patel53bb5c92009-11-10 23:06:00 +00001567 if (!ScopeDIE) return NULL;
1568 }
1569
1570 // Add variables to scope.
1571 SmallVector<DbgVariable *, 8> &Variables = Scope->getVariables();
1572 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
Devang Patel2c4ceb12009-11-21 02:48:08 +00001573 DIE *VariableDIE = constructVariableDIE(Variables[i], Scope, ModuleCU);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001574 if (VariableDIE)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001575 ScopeDIE->addChild(VariableDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +00001576 }
1577
1578 // Add nested scopes.
1579 SmallVector<DbgScope *, 4> &Scopes = Scope->getScopes();
1580 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1581 // Define the Scope debug information entry.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001582 DIE *NestedDIE = constructScopeDIE(Scopes[j]);
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001583 if (NestedDIE)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001584 ScopeDIE->addChild(NestedDIE);
Devang Patel53bb5c92009-11-10 23:06:00 +00001585 }
Devang Patel193f7202009-11-24 01:14:22 +00001586
1587 if (DS.isSubprogram())
1588 addPubTypes(DISubprogram(DS.getNode()));
1589
1590 return ScopeDIE;
Devang Patel53bb5c92009-11-10 23:06:00 +00001591}
1592
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001593/// GetOrCreateSourceID - Look up the source id with the given directory and
1594/// source file names. If none currently exists, create a new id and insert it
1595/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
1596/// maps as well.
Devang Patel65dbc902009-11-25 17:36:49 +00001597unsigned DwarfDebug::GetOrCreateSourceID(StringRef DirName, StringRef FileName) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001598 unsigned DId;
1599 StringMap<unsigned>::iterator DI = DirectoryIdMap.find(DirName);
1600 if (DI != DirectoryIdMap.end()) {
1601 DId = DI->getValue();
1602 } else {
1603 DId = DirectoryNames.size() + 1;
1604 DirectoryIdMap[DirName] = DId;
1605 DirectoryNames.push_back(DirName);
1606 }
1607
1608 unsigned FId;
1609 StringMap<unsigned>::iterator FI = SourceFileIdMap.find(FileName);
1610 if (FI != SourceFileIdMap.end()) {
1611 FId = FI->getValue();
1612 } else {
1613 FId = SourceFileNames.size() + 1;
1614 SourceFileIdMap[FileName] = FId;
1615 SourceFileNames.push_back(FileName);
1616 }
1617
1618 DenseMap<std::pair<unsigned, unsigned>, unsigned>::iterator SI =
1619 SourceIdMap.find(std::make_pair(DId, FId));
1620 if (SI != SourceIdMap.end())
1621 return SI->second;
1622
1623 unsigned SrcId = SourceIds.size() + 1; // DW_AT_decl_file cannot be 0.
1624 SourceIdMap[std::make_pair(DId, FId)] = SrcId;
1625 SourceIds.push_back(std::make_pair(DId, FId));
1626
1627 return SrcId;
1628}
1629
Devang Patel2c4ceb12009-11-21 02:48:08 +00001630void DwarfDebug::constructCompileUnit(MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +00001631 DICompileUnit DIUnit(N);
Devang Patel65dbc902009-11-25 17:36:49 +00001632 StringRef FN = DIUnit.getFilename();
1633 StringRef Dir = DIUnit.getDirectory();
Devang Patel5ccdd102009-09-29 18:40:58 +00001634 unsigned ID = GetOrCreateSourceID(Dir, FN);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001635
1636 DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001637 addSectionOffset(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001638 DWLabel("section_line", 0), DWLabel("section_line", 0),
1639 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
1660 CompileUnit *Unit = new CompileUnit(ID, Die);
Devang Patel1dbc7712009-06-29 20:45:18 +00001661 if (!ModuleCU && DIUnit.isMain()) {
Devang Patel70f44262009-06-29 20:38:13 +00001662 // Use first compile unit marked as isMain as the compile unit
1663 // for this module.
Devang Patel1dbc7712009-06-29 20:45:18 +00001664 ModuleCU = Unit;
Devang Patel70f44262009-06-29 20:38:13 +00001665 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001666
Devang Patele4b27562009-08-28 23:24:31 +00001667 CompileUnitMap[DIUnit.getNode()] = Unit;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001668 CompileUnits.push_back(Unit);
1669}
1670
Devang Patel2c4ceb12009-11-21 02:48:08 +00001671void DwarfDebug::constructGlobalVariableDIE(MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +00001672 DIGlobalVariable DI_GV(N);
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001673
Devang Patel905cf5e2009-09-04 23:59:07 +00001674 // If debug information is malformed then ignore it.
1675 if (DI_GV.Verify() == false)
1676 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001677
1678 // Check for pre-existence.
Devang Patel017d1212009-11-20 21:37:22 +00001679 if (ModuleCU->getDIE(DI_GV.getNode()))
Devang Patel13e16b62009-06-26 01:49:18 +00001680 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001681
Devang Patel2c4ceb12009-11-21 02:48:08 +00001682 DIE *VariableDie = createGlobalVariableDIE(ModuleCU, DI_GV);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001683
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001684 // Add to map.
Devang Patel017d1212009-11-20 21:37:22 +00001685 ModuleCU->insertDIE(N, VariableDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001686
1687 // Add to context owner.
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001688 if (TopLevelDIEs.insert(VariableDie))
1689 TopLevelDIEsVector.push_back(VariableDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001690
1691 // Expose as global. FIXME - need to check external flag.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001692 ModuleCU->addGlobal(DI_GV.getName(), VariableDie);
Devang Patel193f7202009-11-24 01:14:22 +00001693
1694 DIType GTy = DI_GV.getType();
Devang Patel65dbc902009-11-25 17:36:49 +00001695 if (GTy.isCompositeType() && !GTy.getName().empty()) {
Devang Patel193f7202009-11-24 01:14:22 +00001696 DIEEntry *Entry = ModuleCU->getDIEEntry(GTy.getNode());
1697 assert (Entry && "Missing global type!");
1698 ModuleCU->addGlobalType(GTy.getName(), Entry->getEntry());
1699 }
Devang Patel13e16b62009-06-26 01:49:18 +00001700 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001701}
1702
Devang Patel2c4ceb12009-11-21 02:48:08 +00001703void DwarfDebug::constructSubprogramDIE(MDNode *N) {
Devang Patele4b27562009-08-28 23:24:31 +00001704 DISubprogram SP(N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001705
1706 // Check for pre-existence.
Devang Patel017d1212009-11-20 21:37:22 +00001707 if (ModuleCU->getDIE(N))
Devang Patel13e16b62009-06-26 01:49:18 +00001708 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001709
1710 if (!SP.isDefinition())
1711 // This is a method declaration which will be handled while constructing
1712 // class type.
Devang Patel13e16b62009-06-26 01:49:18 +00001713 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001714
Devang Patel2c4ceb12009-11-21 02:48:08 +00001715 DIE *SubprogramDie = createSubprogramDIE(ModuleCU, SP);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001716
1717 // Add to map.
Devang Patel017d1212009-11-20 21:37:22 +00001718 ModuleCU->insertDIE(N, SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001719
1720 // Add to context owner.
Devang Patel7d0750a2009-12-01 23:07:59 +00001721 if (SP.getContext().getNode() == SP.getCompileUnit().getNode())
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001722 if (TopLevelDIEs.insert(SubprogramDie))
1723 TopLevelDIEsVector.push_back(SubprogramDie);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001724
1725 // Expose as global.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001726 ModuleCU->addGlobal(SP.getName(), SubprogramDie);
Devang Patel193f7202009-11-24 01:14:22 +00001727
Devang Patel13e16b62009-06-26 01:49:18 +00001728 return;
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001729}
1730
Devang Patel2c4ceb12009-11-21 02:48:08 +00001731/// beginModule - Emit all Dwarf sections that should come prior to the
Daniel Dunbar00564992009-09-19 20:40:14 +00001732/// content. Create global DIEs and emit initial debug info sections.
1733/// This is inovked by the target AsmPrinter.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001734void DwarfDebug::beginModule(Module *M, MachineModuleInfo *mmi) {
Devang Patel208622d2009-06-25 22:36:02 +00001735 this->M = M;
1736
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001737 if (TimePassesIsEnabled)
1738 DebugTimer->startTimer();
1739
Devang Patel3380cc52009-11-11 19:55:08 +00001740 if (!MAI->doesSupportDebugInformation())
1741 return;
1742
Devang Patel78ab9e22009-07-30 18:56:46 +00001743 DebugInfoFinder DbgFinder;
1744 DbgFinder.processModule(*M);
Devang Patel13e16b62009-06-26 01:49:18 +00001745
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001746 // Create all the compile unit DIEs.
Devang Patel78ab9e22009-07-30 18:56:46 +00001747 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
1748 E = DbgFinder.compile_unit_end(); I != E; ++I)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001749 constructCompileUnit(*I);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001750
1751 if (CompileUnits.empty()) {
1752 if (TimePassesIsEnabled)
1753 DebugTimer->stopTimer();
1754
1755 return;
1756 }
1757
Devang Patel70f44262009-06-29 20:38:13 +00001758 // If main compile unit for this module is not seen than randomly
1759 // select first compile unit.
Devang Patel1dbc7712009-06-29 20:45:18 +00001760 if (!ModuleCU)
1761 ModuleCU = CompileUnits[0];
Devang Patel70f44262009-06-29 20:38:13 +00001762
Devang Patel13e16b62009-06-26 01:49:18 +00001763 // Create DIEs for each of the externally visible global variables.
Devang Patel78ab9e22009-07-30 18:56:46 +00001764 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
Devang Patelfd07cf52009-10-05 23:40:42 +00001765 E = DbgFinder.global_variable_end(); I != E; ++I) {
1766 DIGlobalVariable GV(*I);
1767 if (GV.getContext().getNode() != GV.getCompileUnit().getNode())
1768 ScopedGVs.push_back(*I);
1769 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00001770 constructGlobalVariableDIE(*I);
Devang Patelfd07cf52009-10-05 23:40:42 +00001771 }
Devang Patel13e16b62009-06-26 01:49:18 +00001772
Devang Patel53bb5c92009-11-10 23:06:00 +00001773 // Create DIEs for each subprogram.
Devang Patel78ab9e22009-07-30 18:56:46 +00001774 for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(),
1775 E = DbgFinder.subprogram_end(); I != E; ++I)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001776 constructSubprogramDIE(*I);
Devang Patel13e16b62009-06-26 01:49:18 +00001777
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001778 MMI = mmi;
1779 shouldEmit = true;
1780 MMI->setDebugInfoAvailability(true);
1781
1782 // Prime section data.
Chris Lattnerf0144122009-07-28 03:13:23 +00001783 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001784
1785 // Print out .file directives to specify files for .loc directives. These are
1786 // printed out early so that they precede any .loc directives.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001787 if (MAI->hasDotLocAndDotFile()) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001788 for (unsigned i = 1, e = getNumSourceIds()+1; i != e; ++i) {
1789 // Remember source id starts at 1.
1790 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(i);
1791 sys::Path FullPath(getSourceDirectoryName(Id.first));
1792 bool AppendOk =
1793 FullPath.appendComponent(getSourceFileName(Id.second));
1794 assert(AppendOk && "Could not append filename to directory!");
1795 AppendOk = false;
Chris Lattner74382b72009-08-23 22:45:37 +00001796 Asm->EmitFile(i, FullPath.str());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001797 Asm->EOL();
1798 }
1799 }
1800
1801 // Emit initial sections
Devang Patel2c4ceb12009-11-21 02:48:08 +00001802 emitInitial();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001803
1804 if (TimePassesIsEnabled)
1805 DebugTimer->stopTimer();
1806}
1807
Devang Patel2c4ceb12009-11-21 02:48:08 +00001808/// endModule - Emit all Dwarf sections that should come after the content.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001809///
Devang Patel2c4ceb12009-11-21 02:48:08 +00001810void DwarfDebug::endModule() {
Devang Patel6f3dc922009-10-06 00:03:14 +00001811 if (!ModuleCU)
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001812 return;
1813
1814 if (TimePassesIsEnabled)
1815 DebugTimer->startTimer();
1816
Devang Patel53bb5c92009-11-10 23:06:00 +00001817 // Attach DW_AT_inline attribute with inlined subprogram DIEs.
1818 for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(),
1819 AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) {
1820 DIE *ISP = *AI;
Devang Patel2c4ceb12009-11-21 02:48:08 +00001821 addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined);
Devang Patel53bb5c92009-11-10 23:06:00 +00001822 }
1823
Devang Patel1d5cc1d2009-12-03 01:25:38 +00001824 // Insert top level DIEs.
1825 for (SmallVector<DIE *, 4>::iterator TI = TopLevelDIEsVector.begin(),
1826 TE = TopLevelDIEsVector.end(); TI != TE; ++TI)
1827 ModuleCU->getCUDie()->addChild(*TI);
1828
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001829 // Standard sections final addresses.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001830 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001831 EmitLabel("text_end", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001832 Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001833 EmitLabel("data_end", 0);
1834
1835 // End text sections.
1836 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001837 Asm->OutStreamer.SwitchSection(SectionMap[i]);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001838 EmitLabel("section_end", i);
1839 }
1840
1841 // Emit common frame information.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001842 emitCommonDebugFrame();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001843
1844 // Emit function debug frame information
1845 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
1846 E = DebugFrames.end(); I != E; ++I)
Devang Patel2c4ceb12009-11-21 02:48:08 +00001847 emitFunctionDebugFrame(*I);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001848
1849 // Compute DIE offsets and sizes.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001850 computeSizeAndOffsets();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001851
1852 // Emit all the DIEs into a debug info section
Devang Patel2c4ceb12009-11-21 02:48:08 +00001853 emitDebugInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001854
1855 // Corresponding abbreviations into a abbrev section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001856 emitAbbreviations();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001857
1858 // Emit source line correspondence into a debug line section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001859 emitDebugLines();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001860
1861 // Emit info into a debug pubnames section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001862 emitDebugPubNames();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001863
Devang Patel193f7202009-11-24 01:14:22 +00001864 // Emit info into a debug pubtypes section.
1865 emitDebugPubTypes();
1866
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001867 // Emit info into a debug str section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001868 emitDebugStr();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001869
1870 // Emit info into a debug loc section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001871 emitDebugLoc();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001872
1873 // Emit info into a debug aranges section.
1874 EmitDebugARanges();
1875
1876 // Emit info into a debug ranges section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001877 emitDebugRanges();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001878
1879 // Emit info into a debug macinfo section.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001880 emitDebugMacInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001881
1882 // Emit inline info.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001883 emitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00001884
1885 if (TimePassesIsEnabled)
1886 DebugTimer->stopTimer();
1887}
1888
Devang Patel53bb5c92009-11-10 23:06:00 +00001889/// findAbstractVariable - Find abstract variable, if any, associated with Var.
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001890DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var,
1891 unsigned FrameIdx,
Devang Patel53bb5c92009-11-10 23:06:00 +00001892 DILocation &ScopeLoc) {
1893
1894 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var.getNode());
1895 if (AbsDbgVariable)
1896 return AbsDbgVariable;
1897
1898 DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope().getNode());
1899 if (!Scope)
1900 return NULL;
1901
1902 AbsDbgVariable = new DbgVariable(Var, FrameIdx);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001903 Scope->addVariable(AbsDbgVariable);
Devang Patel53bb5c92009-11-10 23:06:00 +00001904 AbstractVariables[Var.getNode()] = AbsDbgVariable;
1905 return AbsDbgVariable;
1906}
1907
Devang Patel2c4ceb12009-11-21 02:48:08 +00001908/// collectVariableInfo - Populate DbgScope entries with variables' info.
1909void DwarfDebug::collectVariableInfo() {
Devang Patelac1ceb32009-10-09 22:42:28 +00001910 if (!MMI) return;
Devang Patel53bb5c92009-11-10 23:06:00 +00001911
Devang Patele717faa2009-10-06 01:26:37 +00001912 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
1913 for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(),
1914 VE = VMap.end(); VI != VE; ++VI) {
Devang Patelac1ceb32009-10-09 22:42:28 +00001915 MetadataBase *MB = VI->first;
1916 MDNode *Var = dyn_cast_or_null<MDNode>(MB);
Devang Patel53bb5c92009-11-10 23:06:00 +00001917 if (!Var) continue;
Devang Pateleda31212009-10-08 18:48:03 +00001918 DIVariable DV (Var);
Devang Patel53bb5c92009-11-10 23:06:00 +00001919 std::pair< unsigned, MDNode *> VP = VI->second;
1920 DILocation ScopeLoc(VP.second);
1921
1922 DbgScope *Scope =
1923 ConcreteScopes.lookup(ScopeLoc.getOrigLocation().getNode());
1924 if (!Scope)
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001925 Scope = DbgScopeMap.lookup(ScopeLoc.getScope().getNode());
Devang Patelfb0ee432009-11-10 23:20:04 +00001926 // If variable scope is not found then skip this variable.
1927 if (!Scope)
1928 continue;
Devang Patel53bb5c92009-11-10 23:06:00 +00001929
1930 DbgVariable *RegVar = new DbgVariable(DV, VP.first);
Devang Patel2c4ceb12009-11-21 02:48:08 +00001931 Scope->addVariable(RegVar);
Jim Grosbach7ab38df2009-11-22 19:20:36 +00001932 if (DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.first,
1933 ScopeLoc))
Devang Patel53bb5c92009-11-10 23:06:00 +00001934 RegVar->setAbstractVariable(AbsDbgVariable);
Devang Patele717faa2009-10-06 01:26:37 +00001935 }
1936}
1937
Devang Patel2c4ceb12009-11-21 02:48:08 +00001938/// beginScope - Process beginning of a scope starting at Label.
1939void DwarfDebug::beginScope(const MachineInstr *MI, unsigned Label) {
Devang Patel0d20ac82009-10-06 01:50:42 +00001940 InsnToDbgScopeMapTy::iterator I = DbgScopeBeginMap.find(MI);
1941 if (I == DbgScopeBeginMap.end())
1942 return;
Dan Gohman277207e2009-11-23 21:30:55 +00001943 ScopeVector &SD = I->second;
Devang Patel53bb5c92009-11-10 23:06:00 +00001944 for (ScopeVector::iterator SDI = SD.begin(), SDE = SD.end();
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001945 SDI != SDE; ++SDI)
Devang Patel0d20ac82009-10-06 01:50:42 +00001946 (*SDI)->setStartLabelID(Label);
1947}
1948
Devang Patel2c4ceb12009-11-21 02:48:08 +00001949/// endScope - Process end of a scope.
1950void DwarfDebug::endScope(const MachineInstr *MI) {
Devang Patel0d20ac82009-10-06 01:50:42 +00001951 InsnToDbgScopeMapTy::iterator I = DbgScopeEndMap.find(MI);
Devang Patel8a4087d2009-10-06 03:15:38 +00001952 if (I == DbgScopeEndMap.end())
Devang Patel0d20ac82009-10-06 01:50:42 +00001953 return;
Devang Patel53bb5c92009-11-10 23:06:00 +00001954
1955 unsigned Label = MMI->NextLabelID();
1956 Asm->printLabel(Label);
1957
Devang Patel0d20ac82009-10-06 01:50:42 +00001958 SmallVector<DbgScope *, 2> &SD = I->second;
1959 for (SmallVector<DbgScope *, 2>::iterator SDI = SD.begin(), SDE = SD.end();
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001960 SDI != SDE; ++SDI)
Devang Patel0d20ac82009-10-06 01:50:42 +00001961 (*SDI)->setEndLabelID(Label);
Devang Patel53bb5c92009-11-10 23:06:00 +00001962 return;
1963}
1964
1965/// createDbgScope - Create DbgScope for the scope.
1966void DwarfDebug::createDbgScope(MDNode *Scope, MDNode *InlinedAt) {
1967
1968 if (!InlinedAt) {
1969 DbgScope *WScope = DbgScopeMap.lookup(Scope);
1970 if (WScope)
1971 return;
1972 WScope = new DbgScope(NULL, DIDescriptor(Scope), NULL);
1973 DbgScopeMap.insert(std::make_pair(Scope, WScope));
Jim Grosbach31ef40e2009-11-21 23:12:12 +00001974 if (DIDescriptor(Scope).isLexicalBlock())
Devang Patel2f105c62009-11-11 00:18:40 +00001975 createDbgScope(DILexicalBlock(Scope).getContext().getNode(), NULL);
Devang Patel53bb5c92009-11-10 23:06:00 +00001976 return;
1977 }
1978
1979 DbgScope *WScope = DbgScopeMap.lookup(InlinedAt);
1980 if (WScope)
1981 return;
1982
1983 WScope = new DbgScope(NULL, DIDescriptor(Scope), InlinedAt);
1984 DbgScopeMap.insert(std::make_pair(InlinedAt, WScope));
1985 DILocation DL(InlinedAt);
1986 createDbgScope(DL.getScope().getNode(), DL.getOrigLocation().getNode());
Devang Patel0d20ac82009-10-06 01:50:42 +00001987}
1988
Devang Patel2c4ceb12009-11-21 02:48:08 +00001989/// extractScopeInformation - Scan machine instructions in this function
Devang Patelaf9e8472009-10-01 20:31:14 +00001990/// and collect DbgScopes. Return true, if atleast one scope was found.
Devang Patel2c4ceb12009-11-21 02:48:08 +00001991bool DwarfDebug::extractScopeInformation(MachineFunction *MF) {
Devang Patelaf9e8472009-10-01 20:31:14 +00001992 // If scope information was extracted using .dbg intrinsics then there is not
1993 // any need to extract these information by scanning each instruction.
1994 if (!DbgScopeMap.empty())
1995 return false;
1996
Devang Patel53bb5c92009-11-10 23:06:00 +00001997 // Scan each instruction and create scopes. First build working set of scopes.
Devang Patelaf9e8472009-10-01 20:31:14 +00001998 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
1999 I != E; ++I) {
2000 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2001 II != IE; ++II) {
2002 const MachineInstr *MInsn = II;
2003 DebugLoc DL = MInsn->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00002004 if (DL.isUnknown()) continue;
Devang Patelaf9e8472009-10-01 20:31:14 +00002005 DebugLocTuple DLT = MF->getDebugLocTuple(DL);
Devang Patel53bb5c92009-11-10 23:06:00 +00002006 if (!DLT.Scope) continue;
Devang Patelaf9e8472009-10-01 20:31:14 +00002007 // There is no need to create another DIE for compile unit. For all
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002008 // other scopes, create one DbgScope now. This will be translated
Devang Patelaf9e8472009-10-01 20:31:14 +00002009 // into a scope DIE at the end.
Devang Patel53bb5c92009-11-10 23:06:00 +00002010 if (DIDescriptor(DLT.Scope).isCompileUnit()) continue;
2011 createDbgScope(DLT.Scope, DLT.InlinedAtLoc);
2012 }
2013 }
2014
2015
2016 // Build scope hierarchy using working set of scopes.
2017 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
2018 I != E; ++I) {
2019 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
2020 II != IE; ++II) {
2021 const MachineInstr *MInsn = II;
2022 DebugLoc DL = MInsn->getDebugLoc();
2023 if (DL.isUnknown()) continue;
2024 DebugLocTuple DLT = MF->getDebugLocTuple(DL);
2025 if (!DLT.Scope) continue;
2026 // 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 Patel53bb5c92009-11-10 23:06:00 +00002028 // into a scope DIE at the end.
2029 if (DIDescriptor(DLT.Scope).isCompileUnit()) continue;
2030 DbgScope *Scope = getUpdatedDbgScope(DLT.Scope, MInsn, DLT.InlinedAtLoc);
2031 Scope->setLastInsn(MInsn);
Devang Patelaf9e8472009-10-01 20:31:14 +00002032 }
2033 }
2034
2035 // If a scope's last instruction is not set then use its child scope's
2036 // last instruction as this scope's last instrunction.
Devang Patelbdf45cb2009-10-27 20:47:17 +00002037 for (ValueMap<MDNode *, DbgScope *>::iterator DI = DbgScopeMap.begin(),
Devang Patelaf9e8472009-10-01 20:31:14 +00002038 DE = DbgScopeMap.end(); DI != DE; ++DI) {
Devang Patel53bb5c92009-11-10 23:06:00 +00002039 if (DI->second->isAbstractScope())
2040 continue;
Devang Patelaf9e8472009-10-01 20:31:14 +00002041 assert (DI->second->getFirstInsn() && "Invalid first instruction!");
Devang Patel2c4ceb12009-11-21 02:48:08 +00002042 DI->second->fixInstructionMarkers();
Devang Patelaf9e8472009-10-01 20:31:14 +00002043 assert (DI->second->getLastInsn() && "Invalid last instruction!");
2044 }
2045
2046 // Each scope has first instruction and last instruction to mark beginning
2047 // and end of a scope respectively. Create an inverse map that list scopes
2048 // starts (and ends) with an instruction. One instruction may start (or end)
2049 // multiple scopes.
Devang Patelbdf45cb2009-10-27 20:47:17 +00002050 for (ValueMap<MDNode *, DbgScope *>::iterator DI = DbgScopeMap.begin(),
Devang Patelaf9e8472009-10-01 20:31:14 +00002051 DE = DbgScopeMap.end(); DI != DE; ++DI) {
2052 DbgScope *S = DI->second;
Devang Patel53bb5c92009-11-10 23:06:00 +00002053 if (S->isAbstractScope())
2054 continue;
Devang Patelaf9e8472009-10-01 20:31:14 +00002055 const MachineInstr *MI = S->getFirstInsn();
2056 assert (MI && "DbgScope does not have first instruction!");
2057
2058 InsnToDbgScopeMapTy::iterator IDI = DbgScopeBeginMap.find(MI);
2059 if (IDI != DbgScopeBeginMap.end())
2060 IDI->second.push_back(S);
2061 else
Devang Patel53bb5c92009-11-10 23:06:00 +00002062 DbgScopeBeginMap[MI].push_back(S);
Devang Patelaf9e8472009-10-01 20:31:14 +00002063
2064 MI = S->getLastInsn();
2065 assert (MI && "DbgScope does not have last instruction!");
2066 IDI = DbgScopeEndMap.find(MI);
2067 if (IDI != DbgScopeEndMap.end())
2068 IDI->second.push_back(S);
2069 else
Devang Patel53bb5c92009-11-10 23:06:00 +00002070 DbgScopeEndMap[MI].push_back(S);
Devang Patelaf9e8472009-10-01 20:31:14 +00002071 }
2072
2073 return !DbgScopeMap.empty();
2074}
2075
Devang Patel2c4ceb12009-11-21 02:48:08 +00002076/// beginFunction - Gather pre-function debug information. Assumes being
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002077/// emitted immediately after the function entry point.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002078void DwarfDebug::beginFunction(MachineFunction *MF) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002079 this->MF = MF;
2080
2081 if (!ShouldEmitDwarfDebug()) return;
2082
2083 if (TimePassesIsEnabled)
2084 DebugTimer->startTimer();
2085
Devang Patel2c4ceb12009-11-21 02:48:08 +00002086 if (!extractScopeInformation(MF))
Devang Patel60b35bd2009-10-06 18:37:31 +00002087 return;
Devang Patel2c4ceb12009-11-21 02:48:08 +00002088
2089 collectVariableInfo();
Devang Patel60b35bd2009-10-06 18:37:31 +00002090
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002091 // Begin accumulating function debug information.
2092 MMI->BeginFunction(MF);
2093
2094 // Assumes in correct section after the entry point.
2095 EmitLabel("func_begin", ++SubprogramCount);
2096
2097 // Emit label for the implicitly defined dbg.stoppoint at the start of the
2098 // function.
Devang Patelac1ceb32009-10-09 22:42:28 +00002099 DebugLoc FDL = MF->getDefaultDebugLoc();
2100 if (!FDL.isUnknown()) {
2101 DebugLocTuple DLT = MF->getDebugLocTuple(FDL);
2102 unsigned LabelID = 0;
Devang Patel1619dc32009-10-13 23:28:53 +00002103 DISubprogram SP = getDISubprogram(DLT.Scope);
Devang Patelac1ceb32009-10-09 22:42:28 +00002104 if (!SP.isNull())
Devang Patel2c4ceb12009-11-21 02:48:08 +00002105 LabelID = recordSourceLine(SP.getLineNumber(), 0, DLT.Scope);
Devang Patelac1ceb32009-10-09 22:42:28 +00002106 else
Devang Patel2c4ceb12009-11-21 02:48:08 +00002107 LabelID = recordSourceLine(DLT.Line, DLT.Col, DLT.Scope);
Devang Patelac1ceb32009-10-09 22:42:28 +00002108 Asm->printLabel(LabelID);
2109 O << '\n';
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002110 }
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002111 if (TimePassesIsEnabled)
2112 DebugTimer->stopTimer();
2113}
2114
Devang Patel2c4ceb12009-11-21 02:48:08 +00002115/// endFunction - Gather and emit post-function debug information.
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002116///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002117void DwarfDebug::endFunction(MachineFunction *MF) {
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002118 if (!ShouldEmitDwarfDebug()) return;
2119
2120 if (TimePassesIsEnabled)
2121 DebugTimer->startTimer();
2122
Devang Patelac1ceb32009-10-09 22:42:28 +00002123 if (DbgScopeMap.empty())
2124 return;
Devang Patel70d75ca2009-11-12 19:02:56 +00002125
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002126 // Define end label for subprogram.
2127 EmitLabel("func_end", SubprogramCount);
2128
2129 // Get function line info.
2130 if (!Lines.empty()) {
2131 // Get section line info.
Chris Lattner290c2f52009-08-03 23:20:21 +00002132 unsigned ID = SectionMap.insert(Asm->getCurrentSection());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002133 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2134 std::vector<SrcLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2135 // Append the function info to section info.
2136 SectionLineInfos.insert(SectionLineInfos.end(),
2137 Lines.begin(), Lines.end());
2138 }
2139
Devang Patel53bb5c92009-11-10 23:06:00 +00002140 // Construct abstract scopes.
2141 for (SmallVector<DbgScope *, 4>::iterator AI = AbstractScopesList.begin(),
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002142 AE = AbstractScopesList.end(); AI != AE; ++AI)
Devang Patel2c4ceb12009-11-21 02:48:08 +00002143 constructScopeDIE(*AI);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002144
Devang Patel2c4ceb12009-11-21 02:48:08 +00002145 constructScopeDIE(CurrentFnDbgScope);
Devang Patel70d75ca2009-11-12 19:02:56 +00002146
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002147 DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
2148 MMI->getFrameMoves()));
2149
2150 // Clear debug info
Devang Patelc09ddc12009-12-01 18:13:48 +00002151 CurrentFnDbgScope = NULL;
2152 DbgScopeMap.clear();
2153 DbgScopeBeginMap.clear();
2154 DbgScopeEndMap.clear();
2155 ConcreteScopes.clear();
2156 AbstractScopesList.clear();
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002157
2158 Lines.clear();
Devang Patelc09ddc12009-12-01 18:13:48 +00002159
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002160 if (TimePassesIsEnabled)
2161 DebugTimer->stopTimer();
2162}
2163
Devang Patel2c4ceb12009-11-21 02:48:08 +00002164/// recordSourceLine - Records location information and associates it with a
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002165/// label. Returns a unique label ID used to generate a label and provide
2166/// correspondence to the source line list.
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002167unsigned DwarfDebug::recordSourceLine(unsigned Line, unsigned Col,
Devang Patelf84548d2009-10-05 18:03:19 +00002168 MDNode *S) {
Devang Patele4b27562009-08-28 23:24:31 +00002169 if (!MMI)
2170 return 0;
2171
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002172 if (TimePassesIsEnabled)
2173 DebugTimer->startTimer();
2174
Devang Patel65dbc902009-11-25 17:36:49 +00002175 StringRef Dir;
2176 StringRef Fn;
Devang Patelf84548d2009-10-05 18:03:19 +00002177
2178 DIDescriptor Scope(S);
2179 if (Scope.isCompileUnit()) {
2180 DICompileUnit CU(S);
2181 Dir = CU.getDirectory();
2182 Fn = CU.getFilename();
2183 } else if (Scope.isSubprogram()) {
2184 DISubprogram SP(S);
2185 Dir = SP.getDirectory();
2186 Fn = SP.getFilename();
2187 } else if (Scope.isLexicalBlock()) {
2188 DILexicalBlock DB(S);
2189 Dir = DB.getDirectory();
2190 Fn = DB.getFilename();
2191 } else
2192 assert (0 && "Unexpected scope info");
2193
2194 unsigned Src = GetOrCreateSourceID(Dir, Fn);
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002195 unsigned ID = MMI->NextLabelID();
2196 Lines.push_back(SrcLineInfo(Line, Col, Src, ID));
2197
2198 if (TimePassesIsEnabled)
2199 DebugTimer->stopTimer();
2200
2201 return ID;
2202}
2203
2204/// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
2205/// timed. Look up the source id with the given directory and source file
2206/// names. If none currently exists, create a new id and insert it in the
2207/// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
2208/// well.
2209unsigned DwarfDebug::getOrCreateSourceID(const std::string &DirName,
2210 const std::string &FileName) {
2211 if (TimePassesIsEnabled)
2212 DebugTimer->startTimer();
2213
Devang Patel5ccdd102009-09-29 18:40:58 +00002214 unsigned SrcId = GetOrCreateSourceID(DirName.c_str(), FileName.c_str());
Bill Wendlingf0fb9872009-05-20 23:19:06 +00002215
2216 if (TimePassesIsEnabled)
2217 DebugTimer->stopTimer();
2218
2219 return SrcId;
2220}
2221
Bill Wendling829e67b2009-05-20 23:22:40 +00002222//===----------------------------------------------------------------------===//
2223// Emit Methods
2224//===----------------------------------------------------------------------===//
2225
Devang Patel2c4ceb12009-11-21 02:48:08 +00002226/// computeSizeAndOffset - Compute the size and offset of a DIE.
Bill Wendling94d04b82009-05-20 23:21:38 +00002227///
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002228unsigned
2229DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002230 // Get the children.
2231 const std::vector<DIE *> &Children = Die->getChildren();
2232
2233 // If not last sibling and has children then add sibling offset attribute.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002234 if (!Last && !Children.empty()) Die->addSiblingOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00002235
2236 // Record the abbreviation.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002237 assignAbbrevNumber(Die->getAbbrev());
Bill Wendling94d04b82009-05-20 23:21:38 +00002238
2239 // Get the abbreviation for this DIE.
2240 unsigned AbbrevNumber = Die->getAbbrevNumber();
2241 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2242
2243 // Set DIE offset
2244 Die->setOffset(Offset);
2245
2246 // Start the size with the size of abbreviation code.
Chris Lattneraf76e592009-08-22 20:48:53 +00002247 Offset += MCAsmInfo::getULEB128Size(AbbrevNumber);
Bill Wendling94d04b82009-05-20 23:21:38 +00002248
2249 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2250 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2251
2252 // Size the DIE attribute values.
2253 for (unsigned i = 0, N = Values.size(); i < N; ++i)
2254 // Size attribute value.
2255 Offset += Values[i]->SizeOf(TD, AbbrevData[i].getForm());
2256
2257 // Size the DIE children if any.
2258 if (!Children.empty()) {
2259 assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes &&
2260 "Children flag not set");
2261
2262 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00002263 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
Bill Wendling94d04b82009-05-20 23:21:38 +00002264
2265 // End of children marker.
2266 Offset += sizeof(int8_t);
2267 }
2268
2269 Die->setSize(Offset - Die->getOffset());
2270 return Offset;
2271}
2272
Devang Patel2c4ceb12009-11-21 02:48:08 +00002273/// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
Bill Wendling94d04b82009-05-20 23:21:38 +00002274///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002275void DwarfDebug::computeSizeAndOffsets() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002276 // Compute size of compile unit header.
2277 static unsigned Offset =
2278 sizeof(int32_t) + // Length of Compilation Unit Info
2279 sizeof(int16_t) + // DWARF version number
2280 sizeof(int32_t) + // Offset Into Abbrev. Section
2281 sizeof(int8_t); // Pointer Size (in bytes)
2282
Devang Patel2c4ceb12009-11-21 02:48:08 +00002283 computeSizeAndOffset(ModuleCU->getCUDie(), Offset, true);
Devang Patel1dbc7712009-06-29 20:45:18 +00002284 CompileUnitOffsets[ModuleCU] = 0;
Bill Wendling94d04b82009-05-20 23:21:38 +00002285}
2286
Devang Patel2c4ceb12009-11-21 02:48:08 +00002287/// emitInitial - Emit initial Dwarf declarations. This is necessary for cc
Bill Wendling94d04b82009-05-20 23:21:38 +00002288/// tools to recognize the object file contains Dwarf information.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002289void DwarfDebug::emitInitial() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002290 // Check to see if we already emitted intial headers.
2291 if (didInitial) return;
2292 didInitial = true;
2293
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002294 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002295
Bill Wendling94d04b82009-05-20 23:21:38 +00002296 // Dwarf sections base addresses.
Chris Lattner33adcfb2009-08-22 21:43:10 +00002297 if (MAI->doesDwarfRequireFrameSection()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002298 Asm->OutStreamer.SwitchSection(TLOF.getDwarfFrameSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002299 EmitLabel("section_debug_frame", 0);
2300 }
2301
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002302 Asm->OutStreamer.SwitchSection(TLOF.getDwarfInfoSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002303 EmitLabel("section_info", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002304 Asm->OutStreamer.SwitchSection(TLOF.getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002305 EmitLabel("section_abbrev", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002306 Asm->OutStreamer.SwitchSection(TLOF.getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002307 EmitLabel("section_aranges", 0);
2308
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002309 if (const MCSection *LineInfoDirective = TLOF.getDwarfMacroInfoSection()) {
2310 Asm->OutStreamer.SwitchSection(LineInfoDirective);
Bill Wendling94d04b82009-05-20 23:21:38 +00002311 EmitLabel("section_macinfo", 0);
2312 }
2313
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002314 Asm->OutStreamer.SwitchSection(TLOF.getDwarfLineSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002315 EmitLabel("section_line", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002316 Asm->OutStreamer.SwitchSection(TLOF.getDwarfLocSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002317 EmitLabel("section_loc", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002318 Asm->OutStreamer.SwitchSection(TLOF.getDwarfPubNamesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002319 EmitLabel("section_pubnames", 0);
Devang Patel193f7202009-11-24 01:14:22 +00002320 Asm->OutStreamer.SwitchSection(TLOF.getDwarfPubTypesSection());
2321 EmitLabel("section_pubtypes", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002322 Asm->OutStreamer.SwitchSection(TLOF.getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002323 EmitLabel("section_str", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002324 Asm->OutStreamer.SwitchSection(TLOF.getDwarfRangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002325 EmitLabel("section_ranges", 0);
2326
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002327 Asm->OutStreamer.SwitchSection(TLOF.getTextSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002328 EmitLabel("text_begin", 0);
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002329 Asm->OutStreamer.SwitchSection(TLOF.getDataSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002330 EmitLabel("data_begin", 0);
2331}
2332
Devang Patel2c4ceb12009-11-21 02:48:08 +00002333/// emitDIE - Recusively Emits a debug information entry.
Bill Wendling94d04b82009-05-20 23:21:38 +00002334///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002335void DwarfDebug::emitDIE(DIE *Die) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002336 // Get the abbreviation for this DIE.
2337 unsigned AbbrevNumber = Die->getAbbrevNumber();
2338 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2339
2340 Asm->EOL();
2341
2342 // Emit the code (index) for the abbreviation.
2343 Asm->EmitULEB128Bytes(AbbrevNumber);
2344
2345 if (Asm->isVerbose())
2346 Asm->EOL(std::string("Abbrev [" +
2347 utostr(AbbrevNumber) +
2348 "] 0x" + utohexstr(Die->getOffset()) +
2349 ":0x" + utohexstr(Die->getSize()) + " " +
2350 dwarf::TagString(Abbrev->getTag())));
2351 else
2352 Asm->EOL();
2353
2354 SmallVector<DIEValue*, 32> &Values = Die->getValues();
2355 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
2356
2357 // Emit the DIE attribute values.
2358 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2359 unsigned Attr = AbbrevData[i].getAttribute();
2360 unsigned Form = AbbrevData[i].getForm();
2361 assert(Form && "Too many attributes for DIE (check abbreviation)");
2362
2363 switch (Attr) {
2364 case dwarf::DW_AT_sibling:
Devang Patel2c4ceb12009-11-21 02:48:08 +00002365 Asm->EmitInt32(Die->getSiblingOffset());
Bill Wendling94d04b82009-05-20 23:21:38 +00002366 break;
2367 case dwarf::DW_AT_abstract_origin: {
2368 DIEEntry *E = cast<DIEEntry>(Values[i]);
2369 DIE *Origin = E->getEntry();
Devang Patel53bb5c92009-11-10 23:06:00 +00002370 unsigned Addr = Origin->getOffset();
Bill Wendling94d04b82009-05-20 23:21:38 +00002371 Asm->EmitInt32(Addr);
2372 break;
2373 }
2374 default:
2375 // Emit an attribute using the defined form.
2376 Values[i]->EmitValue(this, Form);
2377 break;
2378 }
2379
2380 Asm->EOL(dwarf::AttributeString(Attr));
2381 }
2382
2383 // Emit the DIE children if any.
2384 if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) {
2385 const std::vector<DIE *> &Children = Die->getChildren();
2386
2387 for (unsigned j = 0, M = Children.size(); j < M; ++j)
Devang Patel2c4ceb12009-11-21 02:48:08 +00002388 emitDIE(Children[j]);
Bill Wendling94d04b82009-05-20 23:21:38 +00002389
2390 Asm->EmitInt8(0); Asm->EOL("End Of Children Mark");
2391 }
2392}
2393
Devang Patel2c4ceb12009-11-21 02:48:08 +00002394/// emitDebugInfo / emitDebugInfoPerCU - Emit the debug info section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002395///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002396void DwarfDebug::emitDebugInfoPerCU(CompileUnit *Unit) {
Devang Patel017d1212009-11-20 21:37:22 +00002397 DIE *Die = Unit->getCUDie();
Bill Wendling94d04b82009-05-20 23:21:38 +00002398
2399 // Emit the compile units header.
2400 EmitLabel("info_begin", Unit->getID());
2401
2402 // Emit size of content not including length itself
2403 unsigned ContentSize = Die->getSize() +
2404 sizeof(int16_t) + // DWARF version number
2405 sizeof(int32_t) + // Offset Into Abbrev. Section
2406 sizeof(int8_t) + // Pointer Size (in bytes)
2407 sizeof(int32_t); // FIXME - extra pad for gdb bug.
2408
2409 Asm->EmitInt32(ContentSize); Asm->EOL("Length of Compilation Unit Info");
2410 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF version number");
2411 EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false);
2412 Asm->EOL("Offset Into Abbrev. Section");
2413 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
2414
Devang Patel2c4ceb12009-11-21 02:48:08 +00002415 emitDIE(Die);
Bill Wendling94d04b82009-05-20 23:21:38 +00002416 // FIXME - extra padding for gdb bug.
2417 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2418 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2419 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2420 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2421 EmitLabel("info_end", Unit->getID());
2422
2423 Asm->EOL();
2424}
2425
Devang Patel2c4ceb12009-11-21 02:48:08 +00002426void DwarfDebug::emitDebugInfo() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002427 // Start debug info section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002428 Asm->OutStreamer.SwitchSection(
2429 Asm->getObjFileLowering().getDwarfInfoSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002430
Devang Patel2c4ceb12009-11-21 02:48:08 +00002431 emitDebugInfoPerCU(ModuleCU);
Bill Wendling94d04b82009-05-20 23:21:38 +00002432}
2433
Devang Patel2c4ceb12009-11-21 02:48:08 +00002434/// emitAbbreviations - Emit the abbreviation section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002435///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002436void DwarfDebug::emitAbbreviations() const {
Bill Wendling94d04b82009-05-20 23:21:38 +00002437 // Check to see if it is worth the effort.
2438 if (!Abbreviations.empty()) {
2439 // Start the debug abbrev section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002440 Asm->OutStreamer.SwitchSection(
2441 Asm->getObjFileLowering().getDwarfAbbrevSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002442
2443 EmitLabel("abbrev_begin", 0);
2444
2445 // For each abbrevation.
2446 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2447 // Get abbreviation data
2448 const DIEAbbrev *Abbrev = Abbreviations[i];
2449
2450 // Emit the abbrevations code (base 1 index.)
2451 Asm->EmitULEB128Bytes(Abbrev->getNumber());
2452 Asm->EOL("Abbreviation Code");
2453
2454 // Emit the abbreviations data.
2455 Abbrev->Emit(Asm);
2456
2457 Asm->EOL();
2458 }
2459
2460 // Mark end of abbreviations.
2461 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)");
2462
2463 EmitLabel("abbrev_end", 0);
2464 Asm->EOL();
2465 }
2466}
2467
Devang Patel2c4ceb12009-11-21 02:48:08 +00002468/// emitEndOfLineMatrix - Emit the last address of the section and the end of
Bill Wendling94d04b82009-05-20 23:21:38 +00002469/// the line matrix.
2470///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002471void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002472 // Define last address of section.
2473 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2474 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2475 Asm->EmitInt8(dwarf::DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2476 EmitReference("section_end", SectionEnd); Asm->EOL("Section end label");
2477
2478 // Mark end of matrix.
2479 Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence");
2480 Asm->EmitULEB128Bytes(1); Asm->EOL();
2481 Asm->EmitInt8(1); Asm->EOL();
2482}
2483
Devang Patel2c4ceb12009-11-21 02:48:08 +00002484/// emitDebugLines - Emit source line information.
Bill Wendling94d04b82009-05-20 23:21:38 +00002485///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002486void DwarfDebug::emitDebugLines() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002487 // If the target is using .loc/.file, the assembler will be emitting the
2488 // .debug_line table automatically.
Chris Lattner33adcfb2009-08-22 21:43:10 +00002489 if (MAI->hasDotLocAndDotFile())
Bill Wendling94d04b82009-05-20 23:21:38 +00002490 return;
2491
2492 // Minimum line delta, thus ranging from -10..(255-10).
2493 const int MinLineDelta = -(dwarf::DW_LNS_fixed_advance_pc + 1);
2494 // Maximum line delta, thus ranging from -10..(255-10).
2495 const int MaxLineDelta = 255 + MinLineDelta;
2496
2497 // Start the dwarf line section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002498 Asm->OutStreamer.SwitchSection(
2499 Asm->getObjFileLowering().getDwarfLineSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002500
2501 // Construct the section header.
2502 EmitDifference("line_end", 0, "line_begin", 0, true);
2503 Asm->EOL("Length of Source Line Info");
2504 EmitLabel("line_begin", 0);
2505
2506 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF version number");
2507
2508 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true);
2509 Asm->EOL("Prolog Length");
2510 EmitLabel("line_prolog_begin", 0);
2511
2512 Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length");
2513
2514 Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag");
2515
2516 Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)");
2517
2518 Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)");
2519
2520 Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base");
2521
2522 // Line number standard opcode encodings argument count
2523 Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count");
2524 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count");
2525 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count");
2526 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count");
2527 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count");
2528 Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count");
2529 Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count");
2530 Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count");
2531 Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count");
2532
2533 // Emit directories.
2534 for (unsigned DI = 1, DE = getNumSourceDirectories()+1; DI != DE; ++DI) {
2535 Asm->EmitString(getSourceDirectoryName(DI));
2536 Asm->EOL("Directory");
2537 }
2538
2539 Asm->EmitInt8(0); Asm->EOL("End of directories");
2540
2541 // Emit files.
2542 for (unsigned SI = 1, SE = getNumSourceIds()+1; SI != SE; ++SI) {
2543 // Remember source id starts at 1.
2544 std::pair<unsigned, unsigned> Id = getSourceDirectoryAndFileIds(SI);
2545 Asm->EmitString(getSourceFileName(Id.second));
2546 Asm->EOL("Source");
2547 Asm->EmitULEB128Bytes(Id.first);
2548 Asm->EOL("Directory #");
2549 Asm->EmitULEB128Bytes(0);
2550 Asm->EOL("Mod date");
2551 Asm->EmitULEB128Bytes(0);
2552 Asm->EOL("File size");
2553 }
2554
2555 Asm->EmitInt8(0); Asm->EOL("End of files");
2556
2557 EmitLabel("line_prolog_end", 0);
2558
2559 // A sequence for each text section.
2560 unsigned SecSrcLinesSize = SectionSourceLines.size();
2561
2562 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
2563 // Isolate current sections line info.
2564 const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j];
2565
Chris Lattner93b6db32009-08-08 23:39:42 +00002566 /*if (Asm->isVerbose()) {
Chris Lattnera87dea42009-07-31 18:48:30 +00002567 const MCSection *S = SectionMap[j + 1];
Chris Lattner33adcfb2009-08-22 21:43:10 +00002568 O << '\t' << MAI->getCommentString() << " Section"
Bill Wendling94d04b82009-05-20 23:21:38 +00002569 << S->getName() << '\n';
Chris Lattner93b6db32009-08-08 23:39:42 +00002570 }*/
2571 Asm->EOL();
Bill Wendling94d04b82009-05-20 23:21:38 +00002572
2573 // Dwarf assumes we start with first line of first source file.
2574 unsigned Source = 1;
2575 unsigned Line = 1;
2576
2577 // Construct rows of the address, source, line, column matrix.
2578 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2579 const SrcLineInfo &LineInfo = LineInfos[i];
2580 unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
2581 if (!LabelID) continue;
2582
Caroline Ticec6f9d622009-09-11 18:25:54 +00002583 if (LineInfo.getLine() == 0) continue;
2584
Bill Wendling94d04b82009-05-20 23:21:38 +00002585 if (!Asm->isVerbose())
2586 Asm->EOL();
2587 else {
2588 std::pair<unsigned, unsigned> SourceID =
2589 getSourceDirectoryAndFileIds(LineInfo.getSourceID());
Chris Lattner33adcfb2009-08-22 21:43:10 +00002590 O << '\t' << MAI->getCommentString() << ' '
Bill Wendling94d04b82009-05-20 23:21:38 +00002591 << getSourceDirectoryName(SourceID.first) << ' '
2592 << getSourceFileName(SourceID.second)
2593 <<" :" << utostr_32(LineInfo.getLine()) << '\n';
2594 }
2595
2596 // Define the line address.
2597 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2598 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2599 Asm->EmitInt8(dwarf::DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2600 EmitReference("label", LabelID); Asm->EOL("Location label");
2601
2602 // If change of source, then switch to the new source.
2603 if (Source != LineInfo.getSourceID()) {
2604 Source = LineInfo.getSourceID();
2605 Asm->EmitInt8(dwarf::DW_LNS_set_file); Asm->EOL("DW_LNS_set_file");
2606 Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source");
2607 }
2608
2609 // If change of line.
2610 if (Line != LineInfo.getLine()) {
2611 // Determine offset.
2612 int Offset = LineInfo.getLine() - Line;
2613 int Delta = Offset - MinLineDelta;
2614
2615 // Update line.
2616 Line = LineInfo.getLine();
2617
2618 // If delta is small enough and in range...
2619 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2620 // ... then use fast opcode.
2621 Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta");
2622 } else {
2623 // ... otherwise use long hand.
2624 Asm->EmitInt8(dwarf::DW_LNS_advance_line);
2625 Asm->EOL("DW_LNS_advance_line");
2626 Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset");
2627 Asm->EmitInt8(dwarf::DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2628 }
2629 } else {
2630 // Copy the previous row (different address or source)
2631 Asm->EmitInt8(dwarf::DW_LNS_copy); Asm->EOL("DW_LNS_copy");
2632 }
2633 }
2634
Devang Patel2c4ceb12009-11-21 02:48:08 +00002635 emitEndOfLineMatrix(j + 1);
Bill Wendling94d04b82009-05-20 23:21:38 +00002636 }
2637
2638 if (SecSrcLinesSize == 0)
2639 // Because we're emitting a debug_line section, we still need a line
2640 // table. The linker and friends expect it to exist. If there's nothing to
2641 // put into it, emit an empty table.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002642 emitEndOfLineMatrix(1);
Bill Wendling94d04b82009-05-20 23:21:38 +00002643
2644 EmitLabel("line_end", 0);
2645 Asm->EOL();
2646}
2647
Devang Patel2c4ceb12009-11-21 02:48:08 +00002648/// emitCommonDebugFrame - Emit common frame info into a debug frame section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002649///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002650void DwarfDebug::emitCommonDebugFrame() {
Chris Lattner33adcfb2009-08-22 21:43:10 +00002651 if (!MAI->doesDwarfRequireFrameSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002652 return;
2653
2654 int stackGrowth =
2655 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2656 TargetFrameInfo::StackGrowsUp ?
2657 TD->getPointerSize() : -TD->getPointerSize();
2658
2659 // Start the dwarf frame section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002660 Asm->OutStreamer.SwitchSection(
2661 Asm->getObjFileLowering().getDwarfFrameSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002662
2663 EmitLabel("debug_frame_common", 0);
2664 EmitDifference("debug_frame_common_end", 0,
2665 "debug_frame_common_begin", 0, true);
2666 Asm->EOL("Length of Common Information Entry");
2667
2668 EmitLabel("debug_frame_common_begin", 0);
2669 Asm->EmitInt32((int)dwarf::DW_CIE_ID);
2670 Asm->EOL("CIE Identifier Tag");
2671 Asm->EmitInt8(dwarf::DW_CIE_VERSION);
2672 Asm->EOL("CIE Version");
2673 Asm->EmitString("");
2674 Asm->EOL("CIE Augmentation");
2675 Asm->EmitULEB128Bytes(1);
2676 Asm->EOL("CIE Code Alignment Factor");
2677 Asm->EmitSLEB128Bytes(stackGrowth);
2678 Asm->EOL("CIE Data Alignment Factor");
2679 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
2680 Asm->EOL("CIE RA Column");
2681
2682 std::vector<MachineMove> Moves;
2683 RI->getInitialFrameState(Moves);
2684
2685 EmitFrameMoves(NULL, 0, Moves, false);
2686
2687 Asm->EmitAlignment(2, 0, 0, false);
2688 EmitLabel("debug_frame_common_end", 0);
2689
2690 Asm->EOL();
2691}
2692
Devang Patel2c4ceb12009-11-21 02:48:08 +00002693/// emitFunctionDebugFrame - Emit per function frame info into a debug frame
Bill Wendling94d04b82009-05-20 23:21:38 +00002694/// section.
2695void
Devang Patel2c4ceb12009-11-21 02:48:08 +00002696DwarfDebug::emitFunctionDebugFrame(const FunctionDebugFrameInfo&DebugFrameInfo){
Chris Lattner33adcfb2009-08-22 21:43:10 +00002697 if (!MAI->doesDwarfRequireFrameSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002698 return;
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
2704 EmitDifference("debug_frame_end", DebugFrameInfo.Number,
2705 "debug_frame_begin", DebugFrameInfo.Number, true);
2706 Asm->EOL("Length of Frame Information Entry");
2707
2708 EmitLabel("debug_frame_begin", DebugFrameInfo.Number);
2709
2710 EmitSectionOffset("debug_frame_common", "section_debug_frame",
2711 0, 0, true, false);
2712 Asm->EOL("FDE CIE offset");
2713
2714 EmitReference("func_begin", DebugFrameInfo.Number);
2715 Asm->EOL("FDE initial location");
2716 EmitDifference("func_end", DebugFrameInfo.Number,
2717 "func_begin", DebugFrameInfo.Number);
2718 Asm->EOL("FDE address range");
2719
2720 EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves,
2721 false);
2722
2723 Asm->EmitAlignment(2, 0, 0, false);
2724 EmitLabel("debug_frame_end", DebugFrameInfo.Number);
2725
2726 Asm->EOL();
2727}
2728
Devang Patel2c4ceb12009-11-21 02:48:08 +00002729void DwarfDebug::emitDebugPubNamesPerCU(CompileUnit *Unit) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002730 EmitDifference("pubnames_end", Unit->getID(),
2731 "pubnames_begin", Unit->getID(), true);
2732 Asm->EOL("Length of Public Names Info");
2733
2734 EmitLabel("pubnames_begin", Unit->getID());
2735
2736 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF Version");
2737
2738 EmitSectionOffset("info_begin", "section_info",
2739 Unit->getID(), 0, true, false);
2740 Asm->EOL("Offset of Compilation Unit Info");
2741
2742 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(),
2743 true);
2744 Asm->EOL("Compilation Unit Length");
2745
Devang Patel193f7202009-11-24 01:14:22 +00002746 const StringMap<DIE*> &Globals = Unit->getGlobals();
Bill Wendling94d04b82009-05-20 23:21:38 +00002747 for (StringMap<DIE*>::const_iterator
2748 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2749 const char *Name = GI->getKeyData();
2750 DIE * Entity = GI->second;
2751
2752 Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2753 Asm->EmitString(Name, strlen(Name)); Asm->EOL("External Name");
2754 }
2755
2756 Asm->EmitInt32(0); Asm->EOL("End Mark");
2757 EmitLabel("pubnames_end", Unit->getID());
2758
2759 Asm->EOL();
2760}
2761
Devang Patel2c4ceb12009-11-21 02:48:08 +00002762/// emitDebugPubNames - Emit visible names into a debug pubnames section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002763///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002764void DwarfDebug::emitDebugPubNames() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002765 // Start the dwarf pubnames section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002766 Asm->OutStreamer.SwitchSection(
2767 Asm->getObjFileLowering().getDwarfPubNamesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002768
Devang Patel2c4ceb12009-11-21 02:48:08 +00002769 emitDebugPubNamesPerCU(ModuleCU);
Bill Wendling94d04b82009-05-20 23:21:38 +00002770}
2771
Devang Patel193f7202009-11-24 01:14:22 +00002772void DwarfDebug::emitDebugPubTypes() {
Devang Patelf3a03762009-11-24 19:18:41 +00002773 // Start the dwarf pubnames section.
2774 Asm->OutStreamer.SwitchSection(
2775 Asm->getObjFileLowering().getDwarfPubTypesSection());
Devang Patel193f7202009-11-24 01:14:22 +00002776 EmitDifference("pubtypes_end", ModuleCU->getID(),
2777 "pubtypes_begin", ModuleCU->getID(), true);
2778 Asm->EOL("Length of Public Types Info");
2779
2780 EmitLabel("pubtypes_begin", ModuleCU->getID());
2781
2782 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("DWARF Version");
2783
2784 EmitSectionOffset("info_begin", "section_info",
2785 ModuleCU->getID(), 0, true, false);
2786 Asm->EOL("Offset of Compilation ModuleCU Info");
2787
2788 EmitDifference("info_end", ModuleCU->getID(), "info_begin", ModuleCU->getID(),
2789 true);
2790 Asm->EOL("Compilation ModuleCU Length");
2791
2792 const StringMap<DIE*> &Globals = ModuleCU->getGlobalTypes();
2793 for (StringMap<DIE*>::const_iterator
2794 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
2795 const char *Name = GI->getKeyData();
2796 DIE * Entity = GI->second;
2797
2798 Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2799 Asm->EmitString(Name, strlen(Name)); Asm->EOL("External Name");
2800 }
2801
2802 Asm->EmitInt32(0); Asm->EOL("End Mark");
2803 EmitLabel("pubtypes_end", ModuleCU->getID());
2804
2805 Asm->EOL();
2806}
2807
Devang Patel2c4ceb12009-11-21 02:48:08 +00002808/// emitDebugStr - Emit visible names into a debug str section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002809///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002810void DwarfDebug::emitDebugStr() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002811 // Check to see if it is worth the effort.
2812 if (!StringPool.empty()) {
2813 // Start the dwarf str section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002814 Asm->OutStreamer.SwitchSection(
2815 Asm->getObjFileLowering().getDwarfStrSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002816
2817 // For each of strings in the string pool.
2818 for (unsigned StringID = 1, N = StringPool.size();
2819 StringID <= N; ++StringID) {
2820 // Emit a label for reference from debug information entries.
2821 EmitLabel("string", StringID);
2822
2823 // Emit the string itself.
2824 const std::string &String = StringPool[StringID];
2825 Asm->EmitString(String); Asm->EOL();
2826 }
2827
2828 Asm->EOL();
2829 }
2830}
2831
Devang Patel2c4ceb12009-11-21 02:48:08 +00002832/// emitDebugLoc - Emit visible names into a debug loc section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002833///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002834void DwarfDebug::emitDebugLoc() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002835 // Start the dwarf loc section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002836 Asm->OutStreamer.SwitchSection(
2837 Asm->getObjFileLowering().getDwarfLocSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002838 Asm->EOL();
2839}
2840
2841/// EmitDebugARanges - Emit visible names into a debug aranges section.
2842///
2843void DwarfDebug::EmitDebugARanges() {
2844 // Start the dwarf aranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002845 Asm->OutStreamer.SwitchSection(
2846 Asm->getObjFileLowering().getDwarfARangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002847
2848 // FIXME - Mock up
2849#if 0
2850 CompileUnit *Unit = GetBaseCompileUnit();
2851
2852 // Don't include size of length
2853 Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info");
2854
2855 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("Dwarf Version");
2856
2857 EmitReference("info_begin", Unit->getID());
2858 Asm->EOL("Offset of Compilation Unit Info");
2859
2860 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address");
2861
2862 Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor");
2863
2864 Asm->EmitInt16(0); Asm->EOL("Pad (1)");
2865 Asm->EmitInt16(0); Asm->EOL("Pad (2)");
2866
2867 // Range 1
2868 EmitReference("text_begin", 0); Asm->EOL("Address");
2869 EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length");
2870
2871 Asm->EmitInt32(0); Asm->EOL("EOM (1)");
2872 Asm->EmitInt32(0); Asm->EOL("EOM (2)");
2873#endif
2874
2875 Asm->EOL();
2876}
2877
Devang Patel2c4ceb12009-11-21 02:48:08 +00002878/// emitDebugRanges - Emit visible names into a debug ranges section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002879///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002880void DwarfDebug::emitDebugRanges() {
Bill Wendling94d04b82009-05-20 23:21:38 +00002881 // Start the dwarf ranges section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002882 Asm->OutStreamer.SwitchSection(
2883 Asm->getObjFileLowering().getDwarfRangesSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002884 Asm->EOL();
2885}
2886
Devang Patel2c4ceb12009-11-21 02:48:08 +00002887/// emitDebugMacInfo - Emit visible names into a debug macinfo section.
Bill Wendling94d04b82009-05-20 23:21:38 +00002888///
Devang Patel2c4ceb12009-11-21 02:48:08 +00002889void DwarfDebug::emitDebugMacInfo() {
Daniel Dunbarf612ff62009-09-19 20:40:05 +00002890 if (const MCSection *LineInfo =
Chris Lattner18a4c162009-08-02 07:24:22 +00002891 Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
Bill Wendling94d04b82009-05-20 23:21:38 +00002892 // Start the dwarf macinfo section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002893 Asm->OutStreamer.SwitchSection(LineInfo);
Bill Wendling94d04b82009-05-20 23:21:38 +00002894 Asm->EOL();
2895 }
2896}
2897
Devang Patel2c4ceb12009-11-21 02:48:08 +00002898/// emitDebugInlineInfo - Emit inline info using following format.
Bill Wendling94d04b82009-05-20 23:21:38 +00002899/// Section Header:
2900/// 1. length of section
2901/// 2. Dwarf version number
2902/// 3. address size.
2903///
2904/// Entries (one "entry" for each function that was inlined):
2905///
2906/// 1. offset into __debug_str section for MIPS linkage name, if exists;
2907/// otherwise offset into __debug_str for regular function name.
2908/// 2. offset into __debug_str section for regular function name.
2909/// 3. an unsigned LEB128 number indicating the number of distinct inlining
2910/// instances for the function.
2911///
2912/// The rest of the entry consists of a {die_offset, low_pc} pair for each
2913/// inlined instance; the die_offset points to the inlined_subroutine die in the
2914/// __debug_info section, and the low_pc is the starting address for the
2915/// inlining instance.
Devang Patel2c4ceb12009-11-21 02:48:08 +00002916void DwarfDebug::emitDebugInlineInfo() {
Chris Lattner33adcfb2009-08-22 21:43:10 +00002917 if (!MAI->doesDwarfUsesInlineInfoSection())
Bill Wendling94d04b82009-05-20 23:21:38 +00002918 return;
2919
Devang Patel1dbc7712009-06-29 20:45:18 +00002920 if (!ModuleCU)
Bill Wendling94d04b82009-05-20 23:21:38 +00002921 return;
2922
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002923 Asm->OutStreamer.SwitchSection(
2924 Asm->getObjFileLowering().getDwarfDebugInlineSection());
Bill Wendling94d04b82009-05-20 23:21:38 +00002925 Asm->EOL();
2926 EmitDifference("debug_inlined_end", 1,
2927 "debug_inlined_begin", 1, true);
2928 Asm->EOL("Length of Debug Inlined Information Entry");
2929
2930 EmitLabel("debug_inlined_begin", 1);
2931
2932 Asm->EmitInt16(dwarf::DWARF_VERSION); Asm->EOL("Dwarf Version");
2933 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
2934
Devang Patel53bb5c92009-11-10 23:06:00 +00002935 for (SmallVector<MDNode *, 4>::iterator I = InlinedSPNodes.begin(),
2936 E = InlinedSPNodes.end(); I != E; ++I) {
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002937
Devang Patel53bb5c92009-11-10 23:06:00 +00002938// for (ValueMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator
2939 // I = InlineInfo.begin(), E = InlineInfo.end(); I != E; ++I) {
2940 MDNode *Node = *I;
Jim Grosbach7ab38df2009-11-22 19:20:36 +00002941 ValueMap<MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II
2942 = InlineInfo.find(Node);
Devang Patel53bb5c92009-11-10 23:06:00 +00002943 SmallVector<InlineInfoLabels, 4> &Labels = II->second;
Devang Patele4b27562009-08-28 23:24:31 +00002944 DISubprogram SP(Node);
Devang Patel65dbc902009-11-25 17:36:49 +00002945 StringRef LName = SP.getLinkageName();
2946 StringRef Name = SP.getName();
Bill Wendling94d04b82009-05-20 23:21:38 +00002947
Devang Patel65dbc902009-11-25 17:36:49 +00002948 if (LName.empty())
Devang Patel53cb17d2009-07-16 01:01:22 +00002949 Asm->EmitString(Name);
2950 else {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00002951 // Skip special LLVM prefix that is used to inform the asm printer to not
2952 // emit usual symbol prefix before the symbol name. This happens for
2953 // Objective-C symbol names and symbol whose name is replaced using GCC's
2954 // __asm__ attribute.
Devang Patel53cb17d2009-07-16 01:01:22 +00002955 if (LName[0] == 1)
Benjamin Kramer1c3451f2009-11-25 18:26:09 +00002956 LName = LName.substr(1);
Devang Patel53bb5c92009-11-10 23:06:00 +00002957// Asm->EmitString(LName);
2958 EmitSectionOffset("string", "section_str",
2959 StringPool.idFor(LName), false, true);
2960
Devang Patel53cb17d2009-07-16 01:01:22 +00002961 }
Bill Wendling94d04b82009-05-20 23:21:38 +00002962 Asm->EOL("MIPS linkage name");
Jim Grosbach31ef40e2009-11-21 23:12:12 +00002963// Asm->EmitString(Name);
Devang Patel53bb5c92009-11-10 23:06:00 +00002964 EmitSectionOffset("string", "section_str",
2965 StringPool.idFor(Name), false, true);
2966 Asm->EOL("Function name");
Bill Wendling94d04b82009-05-20 23:21:38 +00002967 Asm->EmitULEB128Bytes(Labels.size()); Asm->EOL("Inline count");
2968
Devang Patel53bb5c92009-11-10 23:06:00 +00002969 for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(),
Bill Wendling94d04b82009-05-20 23:21:38 +00002970 LE = Labels.end(); LI != LE; ++LI) {
Devang Patel53bb5c92009-11-10 23:06:00 +00002971 DIE *SP = LI->second;
Bill Wendling94d04b82009-05-20 23:21:38 +00002972 Asm->EmitInt32(SP->getOffset()); Asm->EOL("DIE offset");
2973
2974 if (TD->getPointerSize() == sizeof(int32_t))
Chris Lattner33adcfb2009-08-22 21:43:10 +00002975 O << MAI->getData32bitsDirective();
Bill Wendling94d04b82009-05-20 23:21:38 +00002976 else
Chris Lattner33adcfb2009-08-22 21:43:10 +00002977 O << MAI->getData64bitsDirective();
Bill Wendling94d04b82009-05-20 23:21:38 +00002978
Devang Patel53bb5c92009-11-10 23:06:00 +00002979 PrintLabelName("label", LI->first); Asm->EOL("low_pc");
Bill Wendling94d04b82009-05-20 23:21:38 +00002980 }
2981 }
2982
2983 EmitLabel("debug_inlined_end", 1);
2984 Asm->EOL();
2985}