blob: 8683ddac2067fb0a01fba303304e167213b8f5c4 [file] [log] [blame]
Jim Laskeye5032892005-12-21 19:48:16 +00001//===-- llvm/CodeGen/DwarfWriter.cpp - Dwarf Framework ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by James M. Laskey and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf debug info into asm files.
11//
12//===----------------------------------------------------------------------===//
Jim Laskey3ea0e0e2006-01-27 18:32:41 +000013
Jim Laskeyb2efb852006-01-04 22:28:25 +000014#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskeye5032892005-12-21 19:48:16 +000015
Jim Laskey063e7652006-01-17 17:31:53 +000016#include "llvm/ADT/StringExtras.h"
Jim Laskey52060a02006-01-24 00:49:18 +000017#include "llvm/Module.h"
18#include "llvm/Type.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000019#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeyb2efb852006-01-04 22:28:25 +000020#include "llvm/CodeGen/MachineDebugInfo.h"
Jim Laskeyb8509c52006-03-23 18:07:55 +000021#include "llvm/CodeGen/MachineLocation.h"
Jim Laskeyb3e789a2006-01-26 20:21:46 +000022#include "llvm/Support/Dwarf.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000023#include "llvm/Support/CommandLine.h"
Jim Laskey52060a02006-01-24 00:49:18 +000024#include "llvm/Support/Mangler.h"
Jim Laskeyb8509c52006-03-23 18:07:55 +000025#include "llvm/Target/MRegisterInfo.h"
Jim Laskey52060a02006-01-24 00:49:18 +000026#include "llvm/Target/TargetMachine.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000027
Jim Laskeyb2efb852006-01-04 22:28:25 +000028#include <iostream>
Jim Laskeya7cea6f2006-01-04 13:52:30 +000029
Jim Laskeyb2efb852006-01-04 22:28:25 +000030using namespace llvm;
Jim Laskey9a777a32006-02-27 22:37:23 +000031using namespace llvm::dwarf;
Jim Laskeya7cea6f2006-01-04 13:52:30 +000032
33static cl::opt<bool>
34DwarfVerbose("dwarf-verbose", cl::Hidden,
Jim Laskey063e7652006-01-17 17:31:53 +000035 cl::desc("Add comments to Dwarf directives."));
36
Jim Laskey0d086af2006-02-27 12:43:29 +000037namespace llvm {
38
Jim Laskey063e7652006-01-17 17:31:53 +000039//===----------------------------------------------------------------------===//
Jim Laskey0d086af2006-02-27 12:43:29 +000040// Forward declarations.
41//
42class CompileUnit;
43class DIE;
Jim Laskey063e7652006-01-17 17:31:53 +000044
Jim Laskey0d086af2006-02-27 12:43:29 +000045//===----------------------------------------------------------------------===//
Jim Laskeyf01e5472006-03-03 15:06:57 +000046// CompileUnit - This dwarf writer support class manages information associate
47// with a source file.
Jim Laskeybd761842006-02-27 17:27:12 +000048class CompileUnit {
49private:
50 CompileUnitDesc *Desc; // Compile unit debug descriptor.
51 unsigned ID; // File ID for source.
Jim Laskeyb8509c52006-03-23 18:07:55 +000052 DIE *Die; // Compile unit debug information entry.
Jim Laskeybd761842006-02-27 17:27:12 +000053 std::map<std::string, DIE *> Globals; // A map of globally visible named
54 // entities for this unit.
Jim Laskey90c79d72006-03-23 23:02:34 +000055 std::map<DebugInfoDesc *, DIE *> DescToDieMap;
56 // Tracks the mapping of unit level
57 // debug informaton descriptors to debug
58 // information entries.
Jim Laskeybd761842006-02-27 17:27:12 +000059
60public:
61 CompileUnit(CompileUnitDesc *CUD, unsigned I, DIE *D)
62 : Desc(CUD)
63 , ID(I)
64 , Die(D)
65 , Globals()
Jim Laskey90c79d72006-03-23 23:02:34 +000066 , DescToDieMap()
Jim Laskeybd761842006-02-27 17:27:12 +000067 {}
68
69 ~CompileUnit();
70
71 // Accessors.
72 CompileUnitDesc *getDesc() const { return Desc; }
73 unsigned getID() const { return ID; }
74 DIE* getDie() const { return Die; }
75 std::map<std::string, DIE *> &getGlobals() { return Globals; }
76
77 /// hasContent - Return true if this compile unit has something to write out.
78 ///
79 bool hasContent() const;
80
81 /// AddGlobal - Add a new global entity to the compile unit.
82 ///
83 void AddGlobal(const std::string &Name, DIE *Die);
84
Jim Laskey90c79d72006-03-23 23:02:34 +000085 /// getDieMapSlotFor - Returns the debug information entry map slot for the
86 /// specified debug descriptor.
87 DIE *&getDieMapSlotFor(DebugInfoDesc *DD) {
88 return DescToDieMap[DD];
89 }
Jim Laskeybd761842006-02-27 17:27:12 +000090};
91
92//===----------------------------------------------------------------------===//
Jim Laskey0d086af2006-02-27 12:43:29 +000093// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
94// Dwarf abbreviation.
95class DIEAbbrevData {
96private:
97 unsigned Attribute; // Dwarf attribute code.
98 unsigned Form; // Dwarf form code.
99
100public:
101 DIEAbbrevData(unsigned A, unsigned F)
102 : Attribute(A)
103 , Form(F)
104 {}
105
Jim Laskeybd761842006-02-27 17:27:12 +0000106 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000107 unsigned getAttribute() const { return Attribute; }
108 unsigned getForm() const { return Form; }
109
110 /// operator== - Used by DIEAbbrev to locate entry.
111 ///
112 bool operator==(const DIEAbbrevData &DAD) const {
113 return Attribute == DAD.Attribute && Form == DAD.Form;
Jim Laskey063e7652006-01-17 17:31:53 +0000114 }
Jim Laskey063e7652006-01-17 17:31:53 +0000115
Jim Laskey0d086af2006-02-27 12:43:29 +0000116 /// operator!= - Used by DIEAbbrev to locate entry.
117 ///
118 bool operator!=(const DIEAbbrevData &DAD) const {
119 return Attribute != DAD.Attribute || Form != DAD.Form;
Jim Laskey063e7652006-01-17 17:31:53 +0000120 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000121
122 /// operator< - Used by DIEAbbrev to locate entry.
123 ///
124 bool operator<(const DIEAbbrevData &DAD) const {
125 return Attribute < DAD.Attribute ||
126 (Attribute == DAD.Attribute && Form < DAD.Form);
127 }
128};
Jim Laskey063e7652006-01-17 17:31:53 +0000129
Jim Laskey0d086af2006-02-27 12:43:29 +0000130//===----------------------------------------------------------------------===//
131// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
132// information object.
133class DIEAbbrev {
134private:
135 unsigned Tag; // Dwarf tag code.
136 unsigned ChildrenFlag; // Dwarf children flag.
137 std::vector<DIEAbbrevData> Data; // Raw data bytes for abbreviation.
Jim Laskey063e7652006-01-17 17:31:53 +0000138
Jim Laskey0d086af2006-02-27 12:43:29 +0000139public:
Jim Laskey063e7652006-01-17 17:31:53 +0000140
Jim Laskey0d086af2006-02-27 12:43:29 +0000141 DIEAbbrev(unsigned T, unsigned C)
142 : Tag(T)
143 , ChildrenFlag(C)
144 , Data()
145 {}
146 ~DIEAbbrev() {}
147
Jim Laskeybd761842006-02-27 17:27:12 +0000148 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000149 unsigned getTag() const { return Tag; }
150 unsigned getChildrenFlag() const { return ChildrenFlag; }
151 const std::vector<DIEAbbrevData> &getData() const { return Data; }
152 void setChildrenFlag(unsigned CF) { ChildrenFlag = CF; }
Jim Laskey063e7652006-01-17 17:31:53 +0000153
Jim Laskey0d086af2006-02-27 12:43:29 +0000154 /// operator== - Used by UniqueVector to locate entry.
155 ///
156 bool operator==(const DIEAbbrev &DA) const;
Jim Laskey063e7652006-01-17 17:31:53 +0000157
Jim Laskey0d086af2006-02-27 12:43:29 +0000158 /// operator< - Used by UniqueVector to locate entry.
159 ///
160 bool operator<(const DIEAbbrev &DA) const;
Jim Laskey063e7652006-01-17 17:31:53 +0000161
Jim Laskey0d086af2006-02-27 12:43:29 +0000162 /// AddAttribute - Adds another set of attribute information to the
163 /// abbreviation.
164 void AddAttribute(unsigned Attribute, unsigned Form) {
165 Data.push_back(DIEAbbrevData(Attribute, Form));
Jim Laskey063e7652006-01-17 17:31:53 +0000166 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000167
Jim Laskeyb8509c52006-03-23 18:07:55 +0000168 /// AddFirstAttribute - Adds a set of attribute information to the front
169 /// of the abbreviation.
170 void AddFirstAttribute(unsigned Attribute, unsigned Form) {
171 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
172 }
173
Jim Laskey0d086af2006-02-27 12:43:29 +0000174 /// Emit - Print the abbreviation using the specified Dwarf writer.
175 ///
176 void Emit(const DwarfWriter &DW) const;
177
178#ifndef NDEBUG
179 void print(std::ostream &O);
180 void dump();
181#endif
182};
Jim Laskey063e7652006-01-17 17:31:53 +0000183
Jim Laskey0d086af2006-02-27 12:43:29 +0000184//===----------------------------------------------------------------------===//
185// DIEValue - A debug information entry value.
186//
187class DIEValue {
188public:
189 enum {
190 isInteger,
191 isString,
192 isLabel,
193 isAsIsLabel,
194 isDelta,
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000195 isEntry,
196 isBlock
Jim Laskey0d086af2006-02-27 12:43:29 +0000197 };
198
199 unsigned Type; // Type of the value
200
201 DIEValue(unsigned T) : Type(T) {}
202 virtual ~DIEValue() {}
203
204 // Implement isa/cast/dyncast.
205 static bool classof(const DIEValue *) { return true; }
206
207 /// EmitValue - Emit value via the Dwarf writer.
208 ///
209 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const = 0;
210
211 /// SizeOf - Return the size of a value in bytes.
212 ///
213 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const = 0;
214};
Jim Laskey063e7652006-01-17 17:31:53 +0000215
Jim Laskey0d086af2006-02-27 12:43:29 +0000216//===----------------------------------------------------------------------===//
217// DWInteger - An integer value DIE.
218//
219class DIEInteger : public DIEValue {
220private:
221 uint64_t Integer;
222
223public:
224 DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000225
Jim Laskey0d086af2006-02-27 12:43:29 +0000226 // Implement isa/cast/dyncast.
227 static bool classof(const DIEInteger *) { return true; }
228 static bool classof(const DIEValue *I) { return I->Type == isInteger; }
229
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000230 /// BestForm - Choose the best form for integer.
231 ///
232 unsigned BestForm(bool IsSigned);
233
Jim Laskey0d086af2006-02-27 12:43:29 +0000234 /// EmitValue - Emit integer of appropriate size.
235 ///
236 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
237
238 /// SizeOf - Determine size of integer value in bytes.
239 ///
240 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
241};
Jim Laskey063e7652006-01-17 17:31:53 +0000242
Jim Laskey0d086af2006-02-27 12:43:29 +0000243//===----------------------------------------------------------------------===//
244// DIEString - A string value DIE.
245//
246struct DIEString : public DIEValue {
247 const std::string String;
248
249 DIEString(const std::string &S) : DIEValue(isString), String(S) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000250
Jim Laskey0d086af2006-02-27 12:43:29 +0000251 // Implement isa/cast/dyncast.
252 static bool classof(const DIEString *) { return true; }
253 static bool classof(const DIEValue *S) { return S->Type == isString; }
254
255 /// EmitValue - Emit string value.
256 ///
257 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
258
259 /// SizeOf - Determine size of string value in bytes.
260 ///
261 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
262};
Jim Laskey063e7652006-01-17 17:31:53 +0000263
Jim Laskey0d086af2006-02-27 12:43:29 +0000264//===----------------------------------------------------------------------===//
265// DIEDwarfLabel - A Dwarf internal label expression DIE.
266//
267struct DIEDwarfLabel : public DIEValue {
268 const DWLabel Label;
269
270 DIEDwarfLabel(const DWLabel &L) : DIEValue(isLabel), Label(L) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000271
Jim Laskey0d086af2006-02-27 12:43:29 +0000272 // Implement isa/cast/dyncast.
273 static bool classof(const DIEDwarfLabel *) { return true; }
274 static bool classof(const DIEValue *L) { return L->Type == isLabel; }
275
276 /// EmitValue - Emit label value.
277 ///
278 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
279
280 /// SizeOf - Determine size of label value in bytes.
281 ///
282 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
283};
Jim Laskey063e7652006-01-17 17:31:53 +0000284
Jim Laskey063e7652006-01-17 17:31:53 +0000285
Jim Laskey0d086af2006-02-27 12:43:29 +0000286//===----------------------------------------------------------------------===//
287// DIEObjectLabel - A label to an object in code or data.
288//
289struct DIEObjectLabel : public DIEValue {
290 const std::string Label;
291
292 DIEObjectLabel(const std::string &L) : DIEValue(isAsIsLabel), Label(L) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000293
Jim Laskey0d086af2006-02-27 12:43:29 +0000294 // Implement isa/cast/dyncast.
295 static bool classof(const DIEObjectLabel *) { return true; }
296 static bool classof(const DIEValue *L) { return L->Type == isAsIsLabel; }
297
298 /// EmitValue - Emit label value.
299 ///
300 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
301
302 /// SizeOf - Determine size of label value in bytes.
303 ///
304 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
305};
Jim Laskey063e7652006-01-17 17:31:53 +0000306
Jim Laskey0d086af2006-02-27 12:43:29 +0000307//===----------------------------------------------------------------------===//
308// DIEDelta - A simple label difference DIE.
309//
310struct DIEDelta : public DIEValue {
311 const DWLabel LabelHi;
312 const DWLabel LabelLo;
313
314 DIEDelta(const DWLabel &Hi, const DWLabel &Lo)
315 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000316
Jim Laskey0d086af2006-02-27 12:43:29 +0000317 // Implement isa/cast/dyncast.
318 static bool classof(const DIEDelta *) { return true; }
319 static bool classof(const DIEValue *D) { return D->Type == isDelta; }
320
321 /// EmitValue - Emit delta value.
322 ///
323 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
324
325 /// SizeOf - Determine size of delta value in bytes.
326 ///
327 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
328};
Jim Laskey063e7652006-01-17 17:31:53 +0000329
Jim Laskey0d086af2006-02-27 12:43:29 +0000330//===----------------------------------------------------------------------===//
331// DIEntry - A pointer to a debug information entry.
332//
333struct DIEntry : public DIEValue {
334 DIE *Entry;
335
336 DIEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
337
338 // Implement isa/cast/dyncast.
339 static bool classof(const DIEntry *) { return true; }
340 static bool classof(const DIEValue *E) { return E->Type == isEntry; }
341
Jim Laskeyb8509c52006-03-23 18:07:55 +0000342 /// EmitValue - Emit debug information entry offset.
Jim Laskey0d086af2006-02-27 12:43:29 +0000343 ///
344 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
345
Jim Laskeyb8509c52006-03-23 18:07:55 +0000346 /// SizeOf - Determine size of debug information entry in bytes.
Jim Laskey0d086af2006-02-27 12:43:29 +0000347 ///
348 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
349};
350
351//===----------------------------------------------------------------------===//
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000352// DIEBlock - A block of values. Primarily used for location expressions.
353//
354struct DIEBlock : public DIEValue {
355 unsigned Size; // Size in bytes excluding size header.
356 std::vector<unsigned> Forms; // Data forms.
357 std::vector<DIEValue *> Values; // Block values.
358
359 DIEBlock()
360 : DIEValue(isBlock)
361 , Size(0)
362 , Forms()
363 , Values()
364 {}
365 ~DIEBlock();
366
367 // Implement isa/cast/dyncast.
368 static bool classof(const DIEBlock *) { return true; }
369 static bool classof(const DIEValue *E) { return E->Type == isBlock; }
370
371 /// ComputeSize - calculate the size of the block.
372 ///
373 unsigned ComputeSize(DwarfWriter &DW);
374
375 /// BestForm - Choose the best form for data.
376 ///
377 unsigned BestForm();
378
379 /// EmitValue - Emit block data.
380 ///
381 virtual void EmitValue(const DwarfWriter &DW, unsigned Form) const;
382
383 /// SizeOf - Determine size of block data in bytes.
384 ///
385 virtual unsigned SizeOf(const DwarfWriter &DW, unsigned Form) const;
386
387 /// AddUInt - Add an unsigned integer value.
388 ///
389 void AddUInt(unsigned Form, uint64_t Integer);
390
391 /// AddSInt - Add an signed integer value.
392 ///
393 void AddSInt(unsigned Form, int64_t Integer);
394
395 /// AddString - Add a std::string value.
396 ///
397 void AddString(unsigned Form, const std::string &String);
398
399 /// AddLabel - Add a Dwarf label value.
400 ///
401 void AddLabel(unsigned Form, const DWLabel &Label);
402
403 /// AddObjectLabel - Add a non-Dwarf label value.
404 ///
405 void AddObjectLabel(unsigned Form, const std::string &Label);
406
407 /// AddDelta - Add a label delta value.
408 ///
409 void AddDelta(unsigned Form, const DWLabel &Hi, const DWLabel &Lo);
410
411 /// AddDIEntry - Add a DIE value.
412 ///
413 void AddDIEntry(unsigned Form, DIE *Entry);
414
415};
416
417//===----------------------------------------------------------------------===//
Jim Laskey0d086af2006-02-27 12:43:29 +0000418// DIE - A structured debug information entry. Has an abbreviation which
419// describes it's organization.
420class DIE {
421private:
422 DIEAbbrev *Abbrev; // Temporary buffer for abbreviation.
423 unsigned AbbrevID; // Decribing abbreviation ID.
424 unsigned Offset; // Offset in debug info section.
425 unsigned Size; // Size of instance + children.
426 std::vector<DIE *> Children; // Children DIEs.
427 std::vector<DIEValue *> Values; // Attributes values.
428
429public:
430 DIE(unsigned Tag);
431 ~DIE();
432
Jim Laskeybd761842006-02-27 17:27:12 +0000433 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000434 unsigned getAbbrevID() const { return AbbrevID; }
435 unsigned getOffset() const { return Offset; }
436 unsigned getSize() const { return Size; }
437 const std::vector<DIE *> &getChildren() const { return Children; }
438 const std::vector<DIEValue *> &getValues() const { return Values; }
439 void setOffset(unsigned O) { Offset = O; }
440 void setSize(unsigned S) { Size = S; }
441
442 /// SiblingOffset - Return the offset of the debug information entry's
443 /// sibling.
444 unsigned SiblingOffset() const { return Offset + Size; }
Jim Laskeyb8509c52006-03-23 18:07:55 +0000445
446 /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
447 ///
448 void AddSiblingOffset();
Jim Laskey0d086af2006-02-27 12:43:29 +0000449
450 /// AddUInt - Add an unsigned integer attribute data and value.
451 ///
452 void AddUInt(unsigned Attribute, unsigned Form, uint64_t Integer);
453
454 /// AddSInt - Add an signed integer attribute data and value.
455 ///
456 void AddSInt(unsigned Attribute, unsigned Form, int64_t Integer);
457
458 /// AddString - Add a std::string attribute data and value.
459 ///
460 void AddString(unsigned Attribute, unsigned Form,
461 const std::string &String);
462
463 /// AddLabel - Add a Dwarf label attribute data and value.
464 ///
465 void AddLabel(unsigned Attribute, unsigned Form, const DWLabel &Label);
466
467 /// AddObjectLabel - Add a non-Dwarf label attribute data and value.
468 ///
469 void AddObjectLabel(unsigned Attribute, unsigned Form,
470 const std::string &Label);
471
472 /// AddDelta - Add a label delta attribute data and value.
473 ///
474 void AddDelta(unsigned Attribute, unsigned Form,
475 const DWLabel &Hi, const DWLabel &Lo);
476
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000477 /// AddDIEntry - Add a DIE attribute data and value.
Jim Laskey0d086af2006-02-27 12:43:29 +0000478 ///
479 void AddDIEntry(unsigned Attribute, unsigned Form, DIE *Entry);
480
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000481 /// AddBlock - Add block data.
482 ///
483 void AddBlock(unsigned Attribute, unsigned Form, DIEBlock *Block);
484
Jim Laskey0d086af2006-02-27 12:43:29 +0000485 /// Complete - Indicate that all attributes have been added and
486 /// ready to get an abbreviation ID.
487 ///
488 void Complete(DwarfWriter &DW);
489
490 /// AddChild - Add a child to the DIE.
491 void AddChild(DIE *Child);
492};
493
494} // End of namespace llvm
Jim Laskey063e7652006-01-17 17:31:53 +0000495
496//===----------------------------------------------------------------------===//
497
Jim Laskeybd761842006-02-27 17:27:12 +0000498CompileUnit::~CompileUnit() {
499 delete Die;
500}
501
502/// hasContent - Return true if this compile unit has something to write out.
503///
504bool CompileUnit::hasContent() const {
505 return !Die->getChildren().empty();
506}
507
508/// AddGlobal - Add a new global entity to the compile unit.
509///
510void CompileUnit::AddGlobal(const std::string &Name, DIE *Die) {
511 Globals[Name] = Die;
512}
513
514//===----------------------------------------------------------------------===//
515
Jim Laskeyd18e2892006-01-20 20:34:06 +0000516/// operator== - Used by UniqueVector to locate entry.
517///
518bool DIEAbbrev::operator==(const DIEAbbrev &DA) const {
519 if (Tag != DA.Tag) return false;
520 if (ChildrenFlag != DA.ChildrenFlag) return false;
521 if (Data.size() != DA.Data.size()) return false;
522
Jim Laskey52060a02006-01-24 00:49:18 +0000523 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
Jim Laskey63ae85f2006-01-21 01:13:18 +0000524 if (Data[i] != DA.Data[i]) return false;
Jim Laskeyd18e2892006-01-20 20:34:06 +0000525 }
526
527 return true;
528}
529
530/// operator< - Used by UniqueVector to locate entry.
531///
532bool DIEAbbrev::operator<(const DIEAbbrev &DA) const {
533 if (Tag != DA.Tag) return Tag < DA.Tag;
534 if (ChildrenFlag != DA.ChildrenFlag) return ChildrenFlag < DA.ChildrenFlag;
535 if (Data.size() != DA.Data.size()) return Data.size() < DA.Data.size();
536
Jim Laskey52060a02006-01-24 00:49:18 +0000537 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
Jim Laskey63ae85f2006-01-21 01:13:18 +0000538 if (Data[i] != DA.Data[i]) return Data[i] < DA.Data[i];
Jim Laskeyd18e2892006-01-20 20:34:06 +0000539 }
540
541 return false;
542}
543
544/// Emit - Print the abbreviation using the specified Dwarf writer.
545///
546void DIEAbbrev::Emit(const DwarfWriter &DW) const {
547 // Emit its Dwarf tag type.
548 DW.EmitULEB128Bytes(Tag);
549 DW.EOL(TagString(Tag));
550
551 // Emit whether it has children DIEs.
552 DW.EmitULEB128Bytes(ChildrenFlag);
553 DW.EOL(ChildrenString(ChildrenFlag));
554
555 // For each attribute description.
Jim Laskey52060a02006-01-24 00:49:18 +0000556 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000557 const DIEAbbrevData &AttrData = Data[i];
558
559 // Emit attribute type.
560 DW.EmitULEB128Bytes(AttrData.getAttribute());
561 DW.EOL(AttributeString(AttrData.getAttribute()));
562
563 // Emit form type.
564 DW.EmitULEB128Bytes(AttrData.getForm());
565 DW.EOL(FormEncodingString(AttrData.getForm()));
566 }
567
568 // Mark end of abbreviation.
569 DW.EmitULEB128Bytes(0); DW.EOL("EOM(1)");
570 DW.EmitULEB128Bytes(0); DW.EOL("EOM(2)");
571}
572
573#ifndef NDEBUG
574 void DIEAbbrev::print(std::ostream &O) {
575 O << "Abbreviation @"
Jeff Cohen05ebc8d2006-01-25 17:18:50 +0000576 << std::hex << (intptr_t)this << std::dec
Jim Laskeyd18e2892006-01-20 20:34:06 +0000577 << " "
578 << TagString(Tag)
579 << " "
580 << ChildrenString(ChildrenFlag)
581 << "\n";
582
Jim Laskey52060a02006-01-24 00:49:18 +0000583 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000584 O << " "
585 << AttributeString(Data[i].getAttribute())
586 << " "
587 << FormEncodingString(Data[i].getForm())
588 << "\n";
589 }
590 }
591 void DIEAbbrev::dump() { print(std::cerr); }
592#endif
593
594//===----------------------------------------------------------------------===//
595
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000596/// BestForm - Choose the best form for integer.
597///
598unsigned DIEInteger::BestForm(bool IsSigned) {
599 if (IsSigned) {
600 if ((char)Integer == (signed)Integer) return DW_FORM_data1;
601 if ((short)Integer == (signed)Integer) return DW_FORM_data2;
602 if ((int)Integer == (signed)Integer) return DW_FORM_data4;
603 } else {
604 if ((unsigned char)Integer == Integer) return DW_FORM_data1;
605 if ((unsigned short)Integer == Integer) return DW_FORM_data2;
606 if ((unsigned int)Integer == Integer) return DW_FORM_data4;
607 }
608 return DW_FORM_data8;
609}
610
Jim Laskey063e7652006-01-17 17:31:53 +0000611/// EmitValue - Emit integer of appropriate size.
612///
613void DIEInteger::EmitValue(const DwarfWriter &DW, unsigned Form) const {
614 switch (Form) {
Jim Laskey40020172006-01-20 21:02:36 +0000615 case DW_FORM_flag: // Fall thru
Jim Laskeyb8509c52006-03-23 18:07:55 +0000616 case DW_FORM_ref1: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +0000617 case DW_FORM_data1: DW.EmitInt8(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +0000618 case DW_FORM_ref2: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +0000619 case DW_FORM_data2: DW.EmitInt16(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +0000620 case DW_FORM_ref4: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +0000621 case DW_FORM_data4: DW.EmitInt32(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +0000622 case DW_FORM_ref8: // Fall thru
Jim Laskeyda427fa2006-01-27 20:31:25 +0000623 case DW_FORM_data8: DW.EmitInt64(Integer); break;
Jim Laskey40020172006-01-20 21:02:36 +0000624 case DW_FORM_udata: DW.EmitULEB128Bytes(Integer); break;
625 case DW_FORM_sdata: DW.EmitSLEB128Bytes(Integer); break;
Jim Laskey063e7652006-01-17 17:31:53 +0000626 default: assert(0 && "DIE Value form not supported yet"); break;
627 }
628}
629
630/// SizeOf - Determine size of integer value in bytes.
631///
632unsigned DIEInteger::SizeOf(const DwarfWriter &DW, unsigned Form) const {
633 switch (Form) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000634 case DW_FORM_flag: // Fall thru
Jim Laskeyb8509c52006-03-23 18:07:55 +0000635 case DW_FORM_ref1: // Fall thru
Jim Laskey063e7652006-01-17 17:31:53 +0000636 case DW_FORM_data1: return sizeof(int8_t);
Jim Laskeyb8509c52006-03-23 18:07:55 +0000637 case DW_FORM_ref2: // Fall thru
Jim Laskey063e7652006-01-17 17:31:53 +0000638 case DW_FORM_data2: return sizeof(int16_t);
Jim Laskeyb8509c52006-03-23 18:07:55 +0000639 case DW_FORM_ref4: // Fall thru
Jim Laskey063e7652006-01-17 17:31:53 +0000640 case DW_FORM_data4: return sizeof(int32_t);
Jim Laskeyb8509c52006-03-23 18:07:55 +0000641 case DW_FORM_ref8: // Fall thru
Jim Laskeyd8f77ba2006-01-27 15:20:54 +0000642 case DW_FORM_data8: return sizeof(int64_t);
Jim Laskey40020172006-01-20 21:02:36 +0000643 case DW_FORM_udata: return DW.SizeULEB128(Integer);
644 case DW_FORM_sdata: return DW.SizeSLEB128(Integer);
Jim Laskey063e7652006-01-17 17:31:53 +0000645 default: assert(0 && "DIE Value form not supported yet"); break;
646 }
647 return 0;
648}
649
650//===----------------------------------------------------------------------===//
651
652/// EmitValue - Emit string value.
653///
654void DIEString::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000655 DW.EmitString(String);
Jim Laskey063e7652006-01-17 17:31:53 +0000656}
657
658/// SizeOf - Determine size of string value in bytes.
659///
660unsigned DIEString::SizeOf(const DwarfWriter &DW, unsigned Form) const {
Jim Laskey40020172006-01-20 21:02:36 +0000661 return String.size() + sizeof(char); // sizeof('\0');
Jim Laskey063e7652006-01-17 17:31:53 +0000662}
663
664//===----------------------------------------------------------------------===//
665
666/// EmitValue - Emit label value.
667///
Jim Laskey52060a02006-01-24 00:49:18 +0000668void DIEDwarfLabel::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000669 DW.EmitReference(Label);
Jim Laskey063e7652006-01-17 17:31:53 +0000670}
671
672/// SizeOf - Determine size of label value in bytes.
673///
Jim Laskey52060a02006-01-24 00:49:18 +0000674unsigned DIEDwarfLabel::SizeOf(const DwarfWriter &DW, unsigned Form) const {
Jim Laskey063e7652006-01-17 17:31:53 +0000675 return DW.getAddressSize();
676}
677
678//===----------------------------------------------------------------------===//
679
Jim Laskeyd18e2892006-01-20 20:34:06 +0000680/// EmitValue - Emit label value.
681///
Jim Laskey52060a02006-01-24 00:49:18 +0000682void DIEObjectLabel::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000683 DW.EmitReference(Label);
684}
685
686/// SizeOf - Determine size of label value in bytes.
687///
Jim Laskey52060a02006-01-24 00:49:18 +0000688unsigned DIEObjectLabel::SizeOf(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000689 return DW.getAddressSize();
Jim Laskeyd18e2892006-01-20 20:34:06 +0000690}
691
692//===----------------------------------------------------------------------===//
693
Jim Laskey063e7652006-01-17 17:31:53 +0000694/// EmitValue - Emit delta value.
695///
696void DIEDelta::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000697 DW.EmitDifference(LabelHi, LabelLo);
Jim Laskey063e7652006-01-17 17:31:53 +0000698}
699
700/// SizeOf - Determine size of delta value in bytes.
701///
702unsigned DIEDelta::SizeOf(const DwarfWriter &DW, unsigned Form) const {
703 return DW.getAddressSize();
704}
705
706//===----------------------------------------------------------------------===//
Jim Laskeyb8509c52006-03-23 18:07:55 +0000707/// EmitValue - Emit debug information entry offset.
Jim Laskeyd18e2892006-01-20 20:34:06 +0000708///
709void DIEntry::EmitValue(const DwarfWriter &DW, unsigned Form) const {
Jim Laskeyda427fa2006-01-27 20:31:25 +0000710 DW.EmitInt32(Entry->getOffset());
Jim Laskeyd18e2892006-01-20 20:34:06 +0000711}
712
Jim Laskeyb8509c52006-03-23 18:07:55 +0000713/// SizeOf - Determine size of debug information entry value in bytes.
Jim Laskeyd18e2892006-01-20 20:34:06 +0000714///
715unsigned DIEntry::SizeOf(const DwarfWriter &DW, unsigned Form) const {
716 return sizeof(int32_t);
717}
718
719//===----------------------------------------------------------------------===//
720
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000721DIEBlock::~DIEBlock() {
722 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
723 delete Values[i];
724 }
725}
726
727/// ComputeSize - calculate the size of the block.
728///
729unsigned DIEBlock::ComputeSize(DwarfWriter &DW) {
730 Size = 0;
731 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
732 Size += Values[i]->SizeOf(DW, Forms[i]);
733 }
734 return Size;
735}
736
737/// BestForm - Choose the best form for data.
738///
739unsigned DIEBlock::BestForm() {
740 if ((unsigned char)Size == Size) return DW_FORM_block1;
741 if ((unsigned short)Size == Size) return DW_FORM_block2;
742 if ((unsigned int)Size == Size) return DW_FORM_block4;
743 return DW_FORM_block;
744}
745
746/// EmitValue - Emit block data.
747///
748void DIEBlock::EmitValue(const DwarfWriter &DW, unsigned Form) const {
749 switch (Form) {
750 case DW_FORM_block1: DW.EmitInt8(Size); break;
751 case DW_FORM_block2: DW.EmitInt16(Size); break;
752 case DW_FORM_block4: DW.EmitInt32(Size); break;
753 case DW_FORM_block: DW.EmitULEB128Bytes(Size); break;
754 default: assert(0 && "Improper form for block"); break;
755 }
756 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
757 DW.EOL("");
758 Values[i]->EmitValue(DW, Forms[i]);
759 }
760}
761
762/// SizeOf - Determine size of block data in bytes.
763///
764unsigned DIEBlock::SizeOf(const DwarfWriter &DW, unsigned Form) const {
765 switch (Form) {
766 case DW_FORM_block1: return Size + sizeof(int8_t);
767 case DW_FORM_block2: return Size + sizeof(int16_t);
768 case DW_FORM_block4: return Size + sizeof(int32_t);
769 case DW_FORM_block: return Size + DW.SizeULEB128(Size);
770 default: assert(0 && "Improper form for block"); break;
771 }
772 return 0;
773}
774
775/// AddUInt - Add an unsigned integer value.
776///
777void DIEBlock::AddUInt(unsigned Form, uint64_t Integer) {
778 DIEInteger *DI = new DIEInteger(Integer);
779 Values.push_back(DI);
780 if (Form == 0) Form = DI->BestForm(false);
781 Forms.push_back(Form);
782}
783
784/// AddSInt - Add an signed integer value.
785///
786void DIEBlock::AddSInt(unsigned Form, int64_t Integer) {
787 DIEInteger *DI = new DIEInteger(Integer);
788 Values.push_back(DI);
789 if (Form == 0) Form = DI->BestForm(true);
790 Forms.push_back(Form);
791}
792
793/// AddString - Add a std::string value.
794///
795void DIEBlock::AddString(unsigned Form, const std::string &String) {
796 Values.push_back(new DIEString(String));
797 Forms.push_back(Form);
798}
799
800/// AddLabel - Add a Dwarf label value.
801///
802void DIEBlock::AddLabel(unsigned Form, const DWLabel &Label) {
803 Values.push_back(new DIEDwarfLabel(Label));
804 Forms.push_back(Form);
805}
806
807/// AddObjectLabel - Add a non-Dwarf label value.
808///
809void DIEBlock::AddObjectLabel(unsigned Form, const std::string &Label) {
810 Values.push_back(new DIEObjectLabel(Label));
811 Forms.push_back(Form);
812}
813
814/// AddDelta - Add a label delta value.
815///
816void DIEBlock::AddDelta(unsigned Form, const DWLabel &Hi, const DWLabel &Lo) {
817 Values.push_back(new DIEDelta(Hi, Lo));
818 Forms.push_back(Form);
819}
820
821/// AddDIEntry - Add a DIE value.
822///
823void DIEBlock::AddDIEntry(unsigned Form, DIE *Entry) {
824 Values.push_back(new DIEntry(Entry));
825 Forms.push_back(Form);
826}
827
828//===----------------------------------------------------------------------===//
829
Jim Laskey0420f2a2006-02-22 19:02:11 +0000830DIE::DIE(unsigned Tag)
831: Abbrev(new DIEAbbrev(Tag, DW_CHILDREN_no))
Jim Laskeyd18e2892006-01-20 20:34:06 +0000832, AbbrevID(0)
833, Offset(0)
834, Size(0)
Jim Laskeyd18e2892006-01-20 20:34:06 +0000835, Children()
836, Values()
837{}
838
839DIE::~DIE() {
840 if (Abbrev) delete Abbrev;
841
Jim Laskey52060a02006-01-24 00:49:18 +0000842 for (unsigned i = 0, N = Children.size(); i < N; ++i) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000843 delete Children[i];
844 }
845
Jim Laskey52060a02006-01-24 00:49:18 +0000846 for (unsigned j = 0, M = Values.size(); j < M; ++j) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000847 delete Values[j];
848 }
Jim Laskeyd18e2892006-01-20 20:34:06 +0000849}
850
Jim Laskeyb8509c52006-03-23 18:07:55 +0000851/// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
852///
853void DIE::AddSiblingOffset() {
854 DIEInteger *DI = new DIEInteger(0);
855 Values.insert(Values.begin(), DI);
856 Abbrev->AddFirstAttribute(DW_AT_sibling, DW_FORM_ref4);
857}
858
Jim Laskeyd8f77ba2006-01-27 15:20:54 +0000859/// AddUInt - Add an unsigned integer attribute data and value.
Jim Laskeyd18e2892006-01-20 20:34:06 +0000860///
Jim Laskeyd8f77ba2006-01-27 15:20:54 +0000861void DIE::AddUInt(unsigned Attribute, unsigned Form, uint64_t Integer) {
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000862 DIEInteger *DI = new DIEInteger(Integer);
863 Values.push_back(DI);
864 if (!Form) Form = DI->BestForm(false);
Jim Laskeyd8f77ba2006-01-27 15:20:54 +0000865 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd8f77ba2006-01-27 15:20:54 +0000866}
867
868/// AddSInt - Add an signed integer attribute data and value.
869///
870void DIE::AddSInt(unsigned Attribute, unsigned Form, int64_t Integer) {
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000871 DIEInteger *DI = new DIEInteger(Integer);
872 Values.push_back(DI);
873 if (!Form) Form = DI->BestForm(true);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000874 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000875}
876
877/// AddString - Add a std::string attribute data and value.
878///
879void DIE::AddString(unsigned Attribute, unsigned Form,
880 const std::string &String) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000881 Values.push_back(new DIEString(String));
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000882 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000883}
884
885/// AddLabel - Add a Dwarf label attribute data and value.
886///
887void DIE::AddLabel(unsigned Attribute, unsigned Form,
888 const DWLabel &Label) {
Jim Laskey52060a02006-01-24 00:49:18 +0000889 Values.push_back(new DIEDwarfLabel(Label));
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000890 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000891}
892
Jim Laskey52060a02006-01-24 00:49:18 +0000893/// AddObjectLabel - Add an non-Dwarf label attribute data and value.
Jim Laskeyd18e2892006-01-20 20:34:06 +0000894///
Jim Laskey52060a02006-01-24 00:49:18 +0000895void DIE::AddObjectLabel(unsigned Attribute, unsigned Form,
896 const std::string &Label) {
Jim Laskey52060a02006-01-24 00:49:18 +0000897 Values.push_back(new DIEObjectLabel(Label));
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000898 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000899}
900
901/// AddDelta - Add a label delta attribute data and value.
902///
903void DIE::AddDelta(unsigned Attribute, unsigned Form,
904 const DWLabel &Hi, const DWLabel &Lo) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000905 Values.push_back(new DIEDelta(Hi, Lo));
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000906 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000907}
908
909/// AddDIEntry - Add a DIE attribute data and value.
910///
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000911void DIE::AddDIEntry(unsigned Attribute, unsigned Form, DIE *Entry) {
Jim Laskeyd18e2892006-01-20 20:34:06 +0000912 Values.push_back(new DIEntry(Entry));
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000913 Abbrev->AddAttribute(Attribute, Form);
914}
915
916/// AddBlock - Add block data.
917///
918void DIE::AddBlock(unsigned Attribute, unsigned Form, DIEBlock *Block) {
919 assert(Block->Size && "Block size has not been computed");
920 Values.push_back(Block);
921 if (!Form) Form = Block->BestForm();
922 Abbrev->AddAttribute(Attribute, Form);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000923}
924
925/// Complete - Indicate that all attributes have been added and ready to get an
926/// abbreviation ID.
927void DIE::Complete(DwarfWriter &DW) {
928 AbbrevID = DW.NewAbbreviation(Abbrev);
929 delete Abbrev;
930 Abbrev = NULL;
931}
932
933/// AddChild - Add a child to the DIE.
934///
935void DIE::AddChild(DIE *Child) {
Jim Laskey0420f2a2006-02-22 19:02:11 +0000936 assert(Abbrev && "Adding children without an abbreviation");
937 Abbrev->setChildrenFlag(DW_CHILDREN_yes);
Jim Laskeyd18e2892006-01-20 20:34:06 +0000938 Children.push_back(Child);
939}
940
941//===----------------------------------------------------------------------===//
942
Jim Laskey0420f2a2006-02-22 19:02:11 +0000943/// DWContext
Jim Laskeyd18e2892006-01-20 20:34:06 +0000944
945//===----------------------------------------------------------------------===//
Jim Laskey063e7652006-01-17 17:31:53 +0000946
947/// PrintHex - Print a value as a hexidecimal value.
948///
949void DwarfWriter::PrintHex(int Value) const {
950 O << "0x" << std::hex << Value << std::dec;
951}
952
953/// EOL - Print a newline character to asm stream. If a comment is present
954/// then it will be printed first. Comments should not contain '\n'.
955void DwarfWriter::EOL(const std::string &Comment) const {
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000956 if (DwarfVerbose && !Comment.empty()) {
Jim Laskey063e7652006-01-17 17:31:53 +0000957 O << "\t"
958 << Asm->CommentString
959 << " "
960 << Comment;
961 }
962 O << "\n";
963}
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000964
Jim Laskeyb8509c52006-03-23 18:07:55 +0000965/// EmitAlign - Print a align directive.
966///
967void DwarfWriter::EmitAlign(unsigned Alignment) const {
968 O << Asm->AlignDirective << Alignment << "\n";
969}
970
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000971/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
Jim Laskey063e7652006-01-17 17:31:53 +0000972/// unsigned leb128 value.
973void DwarfWriter::EmitULEB128Bytes(unsigned Value) const {
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000974 if (hasLEB128) {
975 O << "\t.uleb128\t"
976 << Value;
977 } else {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000978 O << Asm->Data8bitsDirective;
Jim Laskey063e7652006-01-17 17:31:53 +0000979 PrintULEB128(Value);
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000980 }
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000981}
982
983/// EmitSLEB128Bytes - Emit an assembler byte data directive to compose a
Jim Laskey063e7652006-01-17 17:31:53 +0000984/// signed leb128 value.
985void DwarfWriter::EmitSLEB128Bytes(int Value) const {
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000986 if (hasLEB128) {
987 O << "\t.sleb128\t"
988 << Value;
989 } else {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000990 O << Asm->Data8bitsDirective;
Jim Laskey063e7652006-01-17 17:31:53 +0000991 PrintSLEB128(Value);
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000992 }
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000993}
994
Jim Laskey063e7652006-01-17 17:31:53 +0000995/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
Jim Laskeyb2efb852006-01-04 22:28:25 +0000996/// representing an unsigned leb128 value.
Jim Laskey063e7652006-01-17 17:31:53 +0000997void DwarfWriter::PrintULEB128(unsigned Value) const {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000998 do {
999 unsigned Byte = Value & 0x7f;
1000 Value >>= 7;
1001 if (Value) Byte |= 0x80;
Jim Laskey063e7652006-01-17 17:31:53 +00001002 PrintHex(Byte);
Jim Laskeyb2efb852006-01-04 22:28:25 +00001003 if (Value) O << ", ";
1004 } while (Value);
1005}
1006
Jim Laskey063e7652006-01-17 17:31:53 +00001007/// SizeULEB128 - Compute the number of bytes required for an unsigned leb128
1008/// value.
1009unsigned DwarfWriter::SizeULEB128(unsigned Value) {
1010 unsigned Size = 0;
1011 do {
1012 Value >>= 7;
1013 Size += sizeof(int8_t);
1014 } while (Value);
1015 return Size;
1016}
1017
1018/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
Jim Laskeyb2efb852006-01-04 22:28:25 +00001019/// representing a signed leb128 value.
Jim Laskey063e7652006-01-17 17:31:53 +00001020void DwarfWriter::PrintSLEB128(int Value) const {
Jim Laskeyb2efb852006-01-04 22:28:25 +00001021 int Sign = Value >> (8 * sizeof(Value) - 1);
1022 bool IsMore;
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001023
Jim Laskeyb2efb852006-01-04 22:28:25 +00001024 do {
1025 unsigned Byte = Value & 0x7f;
1026 Value >>= 7;
1027 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
1028 if (IsMore) Byte |= 0x80;
Jim Laskey063e7652006-01-17 17:31:53 +00001029 PrintHex(Byte);
Jim Laskeyb2efb852006-01-04 22:28:25 +00001030 if (IsMore) O << ", ";
1031 } while (IsMore);
1032}
1033
Jim Laskey063e7652006-01-17 17:31:53 +00001034/// SizeSLEB128 - Compute the number of bytes required for a signed leb128
1035/// value.
1036unsigned DwarfWriter::SizeSLEB128(int Value) {
1037 unsigned Size = 0;
1038 int Sign = Value >> (8 * sizeof(Value) - 1);
1039 bool IsMore;
1040
1041 do {
1042 unsigned Byte = Value & 0x7f;
1043 Value >>= 7;
1044 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
1045 Size += sizeof(int8_t);
1046 } while (IsMore);
1047 return Size;
1048}
1049
Jim Laskeyda427fa2006-01-27 20:31:25 +00001050/// EmitInt8 - Emit a byte directive and value.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001051///
Jim Laskeyda427fa2006-01-27 20:31:25 +00001052void DwarfWriter::EmitInt8(int Value) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001053 O << Asm->Data8bitsDirective;
Jim Laskey0420f2a2006-02-22 19:02:11 +00001054 PrintHex(Value & 0xFF);
Jim Laskey063e7652006-01-17 17:31:53 +00001055}
1056
Jim Laskeyda427fa2006-01-27 20:31:25 +00001057/// EmitInt16 - Emit a short directive and value.
Jim Laskey063e7652006-01-17 17:31:53 +00001058///
Jim Laskeyda427fa2006-01-27 20:31:25 +00001059void DwarfWriter::EmitInt16(int Value) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001060 O << Asm->Data16bitsDirective;
Jim Laskey0420f2a2006-02-22 19:02:11 +00001061 PrintHex(Value & 0xFFFF);
Jim Laskey063e7652006-01-17 17:31:53 +00001062}
1063
Jim Laskeyda427fa2006-01-27 20:31:25 +00001064/// EmitInt32 - Emit a long directive and value.
Jim Laskey063e7652006-01-17 17:31:53 +00001065///
Jim Laskeyda427fa2006-01-27 20:31:25 +00001066void DwarfWriter::EmitInt32(int Value) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001067 O << Asm->Data32bitsDirective;
1068 PrintHex(Value);
1069}
1070
Jim Laskeyda427fa2006-01-27 20:31:25 +00001071/// EmitInt64 - Emit a long long directive and value.
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00001072///
Jim Laskeyda427fa2006-01-27 20:31:25 +00001073void DwarfWriter::EmitInt64(uint64_t Value) const {
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00001074 if (Asm->Data64bitsDirective) {
1075 O << Asm->Data64bitsDirective << "0x" << std::hex << Value << std::dec;
1076 } else {
1077 const TargetData &TD = Asm->TM.getTargetData();
1078
1079 if (TD.isBigEndian()) {
Jim Laskeyda427fa2006-01-27 20:31:25 +00001080 EmitInt32(unsigned(Value >> 32)); O << "\n";
1081 EmitInt32(unsigned(Value));
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00001082 } else {
Jim Laskeyda427fa2006-01-27 20:31:25 +00001083 EmitInt32(unsigned(Value)); O << "\n";
1084 EmitInt32(unsigned(Value >> 32));
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00001085 }
1086 }
1087}
1088
Jim Laskey063e7652006-01-17 17:31:53 +00001089/// EmitString - Emit a string with quotes and a null terminator.
1090/// Special characters are emitted properly. (Eg. '\t')
1091void DwarfWriter::EmitString(const std::string &String) const {
1092 O << Asm->AsciiDirective
1093 << "\"";
Jim Laskey52060a02006-01-24 00:49:18 +00001094 for (unsigned i = 0, N = String.size(); i < N; ++i) {
Jim Laskey063e7652006-01-17 17:31:53 +00001095 unsigned char C = String[i];
1096
1097 if (!isascii(C) || iscntrl(C)) {
1098 switch(C) {
1099 case '\b': O << "\\b"; break;
1100 case '\f': O << "\\f"; break;
1101 case '\n': O << "\\n"; break;
1102 case '\r': O << "\\r"; break;
1103 case '\t': O << "\\t"; break;
1104 default:
1105 O << '\\';
1106 O << char('0' + (C >> 6));
1107 O << char('0' + (C >> 3));
1108 O << char('0' + (C >> 0));
1109 break;
1110 }
1111 } else if (C == '\"') {
1112 O << "\\\"";
1113 } else if (C == '\'') {
1114 O << "\\\'";
1115 } else {
1116 O << C;
1117 }
1118 }
1119 O << "\\0\"";
1120}
1121
1122/// PrintLabelName - Print label name in form used by Dwarf writer.
1123///
1124void DwarfWriter::PrintLabelName(const char *Tag, unsigned Number) const {
Jim Laskeyb2efb852006-01-04 22:28:25 +00001125 O << Asm->PrivateGlobalPrefix
1126 << "debug_"
Jim Laskey0420f2a2006-02-22 19:02:11 +00001127 << Tag;
1128 if (Number) O << Number;
Jim Laskeyb2efb852006-01-04 22:28:25 +00001129}
1130
Jim Laskey063e7652006-01-17 17:31:53 +00001131/// EmitLabel - Emit location label for internal use by Dwarf.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001132///
Jim Laskey063e7652006-01-17 17:31:53 +00001133void DwarfWriter::EmitLabel(const char *Tag, unsigned Number) const {
1134 PrintLabelName(Tag, Number);
Jim Laskeyb2efb852006-01-04 22:28:25 +00001135 O << ":\n";
1136}
1137
Jim Laskeye719a7c2006-01-18 16:54:26 +00001138/// EmitReference - Emit a reference to a label.
Jim Laskey063e7652006-01-17 17:31:53 +00001139///
Jim Laskeye719a7c2006-01-18 16:54:26 +00001140void DwarfWriter::EmitReference(const char *Tag, unsigned Number) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001141 if (AddressSize == 4)
1142 O << Asm->Data32bitsDirective;
1143 else
1144 O << Asm->Data64bitsDirective;
1145
1146 PrintLabelName(Tag, Number);
1147}
Jim Laskey73683212006-01-21 00:59:54 +00001148void DwarfWriter::EmitReference(const std::string &Name) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001149 if (AddressSize == 4)
1150 O << Asm->Data32bitsDirective;
1151 else
1152 O << Asm->Data64bitsDirective;
1153
1154 O << Name;
1155}
Jim Laskey063e7652006-01-17 17:31:53 +00001156
1157/// EmitDifference - Emit an label difference as sizeof(pointer) value. Some
1158/// assemblers do not accept absolute expressions with data directives, so there
1159/// is an option (needsSet) to use an intermediary 'set' expression.
Jim Laskeyd18e2892006-01-20 20:34:06 +00001160void DwarfWriter::EmitDifference(const char *TagHi, unsigned NumberHi,
1161 const char *TagLo, unsigned NumberLo) const {
Jim Laskey063e7652006-01-17 17:31:53 +00001162 if (needsSet) {
1163 static unsigned SetCounter = 0;
Jim Laskeyd18e2892006-01-20 20:34:06 +00001164
Jim Laskey063e7652006-01-17 17:31:53 +00001165 O << "\t.set\t";
1166 PrintLabelName("set", SetCounter);
1167 O << ",";
Jim Laskeyd18e2892006-01-20 20:34:06 +00001168 PrintLabelName(TagHi, NumberHi);
Jim Laskey063e7652006-01-17 17:31:53 +00001169 O << "-";
Jim Laskeyd18e2892006-01-20 20:34:06 +00001170 PrintLabelName(TagLo, NumberLo);
Jim Laskey063e7652006-01-17 17:31:53 +00001171 O << "\n";
1172
1173 if (AddressSize == sizeof(int32_t))
1174 O << Asm->Data32bitsDirective;
1175 else
1176 O << Asm->Data64bitsDirective;
1177
1178 PrintLabelName("set", SetCounter);
1179
Jim Laskey52060a02006-01-24 00:49:18 +00001180 ++SetCounter;
Jim Laskey063e7652006-01-17 17:31:53 +00001181 } else {
1182 if (AddressSize == sizeof(int32_t))
1183 O << Asm->Data32bitsDirective;
1184 else
1185 O << Asm->Data64bitsDirective;
1186
Jim Laskeyd18e2892006-01-20 20:34:06 +00001187 PrintLabelName(TagHi, NumberHi);
Jim Laskey063e7652006-01-17 17:31:53 +00001188 O << "-";
Jim Laskeyd18e2892006-01-20 20:34:06 +00001189 PrintLabelName(TagLo, NumberLo);
Jim Laskey063e7652006-01-17 17:31:53 +00001190 }
1191}
1192
Jim Laskeyd18e2892006-01-20 20:34:06 +00001193/// NewAbbreviation - Add the abbreviation to the Abbreviation vector.
Jim Laskey063e7652006-01-17 17:31:53 +00001194///
Jim Laskeyd18e2892006-01-20 20:34:06 +00001195unsigned DwarfWriter::NewAbbreviation(DIEAbbrev *Abbrev) {
1196 return Abbreviations.insert(*Abbrev);
1197}
1198
1199/// NewString - Add a string to the constant pool and returns a label.
1200///
1201DWLabel DwarfWriter::NewString(const std::string &String) {
1202 unsigned StringID = StringPool.insert(String);
1203 return DWLabel("string", StringID);
1204}
1205
Jim Laskeyb8509c52006-03-23 18:07:55 +00001206/// AddSourceLine - Add location information to specified debug information
1207/// entry.
1208void DwarfWriter::AddSourceLine(DIE *Die, CompileUnitDesc *File, unsigned Line) {
1209 if (File && Line) {
1210 CompileUnit *FileUnit = FindCompileUnit(File);
1211 unsigned FileID = FileUnit->getID();
1212 Die->AddUInt(DW_AT_decl_file, 0, FileID);
1213 Die->AddUInt(DW_AT_decl_line, 0, Line);
1214 }
1215}
1216
Jim Laskey90c79d72006-03-23 23:02:34 +00001217/// getDieMapSlotFor - Returns the debug information entry map slot for the
1218/// specified debug descriptor.
1219DIE *&DwarfWriter::getDieMapSlotFor(DebugInfoDesc *DD) {
1220 return DescToDieMap[DD];
Jim Laskey0420f2a2006-02-22 19:02:11 +00001221}
Jim Laskey90c79d72006-03-23 23:02:34 +00001222
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001223/// NewType - Create a new type DIE.
1224///
Jim Laskey90c79d72006-03-23 23:02:34 +00001225DIE *DwarfWriter::NewType(DIE *Context, TypeDesc *TyDesc, CompileUnit *Unit) {
1226 if (!TyDesc) {
1227 // FIXME - Hack for missing types
1228 DIE *Die = new DIE(DW_TAG_base_type);
1229 Die->AddUInt(DW_AT_byte_size, 0, 4);
1230 Die->AddUInt(DW_AT_encoding, DW_FORM_data1, DW_ATE_signed);
1231 Unit->getDie()->AddChild(Die);
1232 return Die;
1233 }
Jim Laskey92ae7402006-03-01 18:20:30 +00001234
1235 // FIXME - Should handle other contexts that compile units.
Jim Laskey69906002006-02-24 16:46:40 +00001236
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001237 // Check for pre-existence.
Jim Laskey90c79d72006-03-23 23:02:34 +00001238 DIE *&Slot = Unit->getDieMapSlotFor(TyDesc);
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001239 if (Slot) return Slot;
1240
1241 // Get core information.
1242 const std::string &Name = TyDesc->getName();
Jim Laskey288fe0f2006-03-01 18:13:05 +00001243 uint64_t Size = TyDesc->getSize() >> 3;
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001244
Jim Laskey434b40b2006-02-23 22:37:30 +00001245 DIE *Ty = NULL;
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001246
Jim Laskey434b40b2006-02-23 22:37:30 +00001247 if (BasicTypeDesc *BasicTy = dyn_cast<BasicTypeDesc>(TyDesc)) {
Jim Laskey69906002006-02-24 16:46:40 +00001248 // Fundamental types like int, float, bool
Jim Laskey434b40b2006-02-23 22:37:30 +00001249 Slot = Ty = new DIE(DW_TAG_base_type);
1250 unsigned Encoding = BasicTy->getEncoding();
1251 Ty->AddUInt (DW_AT_encoding, DW_FORM_data1, Encoding);
Jim Laskey69906002006-02-24 16:46:40 +00001252 } else if (DerivedTypeDesc *DerivedTy = dyn_cast<DerivedTypeDesc>(TyDesc)) {
Jim Laskey69906002006-02-24 16:46:40 +00001253 // Create specific DIE.
Jim Laskey9c4447a2006-03-01 20:39:36 +00001254 Slot = Ty = new DIE(DerivedTy->getTag());
Jim Laskey69906002006-02-24 16:46:40 +00001255
1256 // Map to main type, void will not have a type.
1257 if (TypeDesc *FromTy = DerivedTy->getFromType()) {
Jim Laskey90c79d72006-03-23 23:02:34 +00001258 Ty->AddDIEntry(DW_AT_type, DW_FORM_ref4,
1259 NewType(Context, FromTy, Unit));
Jim Laskey69906002006-02-24 16:46:40 +00001260 }
Jim Laskeyf8913f12006-03-01 17:53:02 +00001261 } else if (CompositeTypeDesc *CompTy = dyn_cast<CompositeTypeDesc>(TyDesc)) {
Jim Laskeyf8913f12006-03-01 17:53:02 +00001262 // Create specific DIE.
Jim Laskey9c4447a2006-03-01 20:39:36 +00001263 Slot = Ty = new DIE(CompTy->getTag());
Jim Laskeyf8913f12006-03-01 17:53:02 +00001264 std::vector<DebugInfoDesc *> &Elements = CompTy->getElements();
1265
1266 switch (CompTy->getTag()) {
Jim Laskey9c4447a2006-03-01 20:39:36 +00001267 case DW_TAG_array_type: {
Jim Laskeyf8913f12006-03-01 17:53:02 +00001268 // Add element type.
1269 if (TypeDesc *FromTy = CompTy->getFromType()) {
Jim Laskey90c79d72006-03-23 23:02:34 +00001270 Ty->AddDIEntry(DW_AT_type, DW_FORM_ref4,
1271 NewType(Context, FromTy, Unit));
Jim Laskeyf8913f12006-03-01 17:53:02 +00001272 }
1273 // Don't emit size attribute.
1274 Size = 0;
1275
1276 // Construct an anonymous type for index type.
1277 DIE *IndexTy = new DIE(DW_TAG_base_type);
1278 IndexTy->AddUInt(DW_AT_byte_size, 0, 4);
1279 IndexTy->AddUInt(DW_AT_encoding, DW_FORM_data1, DW_ATE_signed);
1280 // Add to context.
Jim Laskey92ae7402006-03-01 18:20:30 +00001281 Context->AddChild(IndexTy);
Jim Laskeyf8913f12006-03-01 17:53:02 +00001282
1283 // Add subranges to array type.
1284 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1285 SubrangeDesc *SRD = cast<SubrangeDesc>(Elements[i]);
1286 int64_t Lo = SRD->getLo();
1287 int64_t Hi = SRD->getHi();
1288 DIE *Subrange = new DIE(DW_TAG_subrange_type);
1289
1290 // If a range is available.
1291 if (Lo != Hi) {
1292 Subrange->AddDIEntry(DW_AT_type, DW_FORM_ref4, IndexTy);
1293 // Only add low if non-zero.
Jim Laskey6a3eb012006-03-01 23:52:37 +00001294 if (Lo) Subrange->AddSInt(DW_AT_lower_bound, 0, Lo);
1295 Subrange->AddSInt(DW_AT_upper_bound, 0, Hi);
Jim Laskeyf8913f12006-03-01 17:53:02 +00001296 }
1297 Ty->AddChild(Subrange);
1298 }
1299
1300 break;
1301 }
Jim Laskeyf01e5472006-03-03 15:06:57 +00001302 case DW_TAG_structure_type:
Jim Laskey9c4447a2006-03-01 20:39:36 +00001303 case DW_TAG_union_type: {
Jim Laskeyf01e5472006-03-03 15:06:57 +00001304 // FIXME - this is just the basics.
1305 // Add elements to structure type.
1306 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1307 DerivedTypeDesc *MemberDesc = cast<DerivedTypeDesc>(Elements[i]);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001308
1309 // Extract the basic information.
Jim Laskeyf01e5472006-03-03 15:06:57 +00001310 const std::string &Name = MemberDesc->getName();
Jim Laskeyf01e5472006-03-03 15:06:57 +00001311 TypeDesc *MemTy = MemberDesc->getFromType();
1312 uint64_t Size = MemberDesc->getSize();
Chris Lattner2695de42006-03-09 17:48:46 +00001313 uint64_t Align = MemberDesc->getAlign();
Jim Laskeyf01e5472006-03-03 15:06:57 +00001314 uint64_t Offset = MemberDesc->getOffset();
1315
Jim Laskeyb8509c52006-03-23 18:07:55 +00001316 // Construct member debug information entry.
Jim Laskeyf01e5472006-03-03 15:06:57 +00001317 DIE *Member = new DIE(DW_TAG_member);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001318
Jim Laskeyb8509c52006-03-23 18:07:55 +00001319 // Add name if not "".
Jim Laskeyf01e5472006-03-03 15:06:57 +00001320 if (!Name.empty()) Member->AddString(DW_AT_name, DW_FORM_string, Name);
Jim Laskeyb8509c52006-03-23 18:07:55 +00001321 // Add location if available.
1322 AddSourceLine(Member, MemberDesc->getFile(), MemberDesc->getLine());
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001323
Jim Laskey54689c22006-03-09 13:28:47 +00001324 // Most of the time the field info is the same as the members.
1325 uint64_t FieldSize = Size;
1326 uint64_t FieldAlign = Align;
1327 uint64_t FieldOffset = Offset;
Jim Laskey20c3ed82006-03-07 15:51:33 +00001328
Jim Laskeyf01e5472006-03-03 15:06:57 +00001329 if (TypeDesc *FromTy = MemberDesc->getFromType()) {
Jim Laskey90c79d72006-03-23 23:02:34 +00001330 Member->AddDIEntry(DW_AT_type, DW_FORM_ref4,
1331 NewType(Context, FromTy, Unit));
1332 FieldSize = FromTy->getSize();
1333 FieldAlign = FromTy->getSize();
Jim Laskey20c3ed82006-03-07 15:51:33 +00001334 }
1335
Jim Laskey54689c22006-03-09 13:28:47 +00001336 // Unless we have a bit field.
1337 if (FieldSize != Size) {
1338 // Construct the alignment mask.
1339 uint64_t AlignMask = ~(FieldAlign - 1);
1340 // Determine the high bit + 1 of the declared size.
1341 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1342 // Work backwards to determine the base offset of the field.
1343 FieldOffset = HiMark - FieldSize;
1344 // Now normalize offset to the field.
1345 Offset -= FieldOffset;
1346
1347 // Maybe we need to work from the other.
1348 const TargetData &TD = Asm->TM.getTargetData();
1349 if (TD.isLittleEndian()) Offset = FieldSize - (Offset + Size);
1350
1351 Member->AddUInt(DW_AT_byte_size, 0, FieldSize >> 3);
1352 Member->AddUInt(DW_AT_bit_size, 0, Size);
1353 Member->AddUInt(DW_AT_bit_offset, 0, Offset);
Jim Laskeyf01e5472006-03-03 15:06:57 +00001354 }
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001355
1356 // Add computation for offset.
1357 DIEBlock *Block = new DIEBlock();
1358 Block->AddUInt(DW_FORM_data1, DW_OP_plus_uconst);
Jim Laskey54689c22006-03-09 13:28:47 +00001359 Block->AddUInt(DW_FORM_udata, FieldOffset >> 3);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001360 Block->ComputeSize(*this);
1361 Member->AddBlock(DW_AT_data_member_location, 0, Block);
1362
Jim Laskeyf01e5472006-03-03 15:06:57 +00001363 Ty->AddChild(Member);
1364 }
Jim Laskeyf8913f12006-03-01 17:53:02 +00001365 break;
1366 }
Jim Laskey9c4447a2006-03-01 20:39:36 +00001367 case DW_TAG_enumeration_type: {
Jim Laskey6a3eb012006-03-01 23:52:37 +00001368 // Add enumerators to enumeration type.
1369 for(unsigned i = 0, N = Elements.size(); i < N; ++i) {
1370 EnumeratorDesc *ED = cast<EnumeratorDesc>(Elements[i]);
1371 const std::string &Name = ED->getName();
1372 int64_t Value = ED->getValue();
1373 DIE *Enumerator = new DIE(DW_TAG_enumerator);
1374 Enumerator->AddString(DW_AT_name, DW_FORM_string, Name);
1375 Enumerator->AddSInt(DW_AT_const_value, DW_FORM_sdata, Value);
1376 Ty->AddChild(Enumerator);
1377 }
1378
Jim Laskeyf8913f12006-03-01 17:53:02 +00001379 break;
1380 }
1381 default: break;
1382 }
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001383 }
Jim Laskey434b40b2006-02-23 22:37:30 +00001384
1385 assert(Ty && "Type not supported yet");
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001386
Jim Laskey69906002006-02-24 16:46:40 +00001387 // Add size if non-zero (derived types don't have a size.)
Jim Laskey434b40b2006-02-23 22:37:30 +00001388 if (Size) Ty->AddUInt(DW_AT_byte_size, 0, Size);
Jim Laskey69906002006-02-24 16:46:40 +00001389 // Add name if not anonymous or intermediate type.
Jim Laskey434b40b2006-02-23 22:37:30 +00001390 if (!Name.empty()) Ty->AddString(DW_AT_name, DW_FORM_string, Name);
Jim Laskeyb8509c52006-03-23 18:07:55 +00001391 // Add source line info if available.
1392 AddSourceLine(Ty, TyDesc->getFile(), TyDesc->getLine());
Jim Laskey434b40b2006-02-23 22:37:30 +00001393
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001394 // Add to context owner.
Jim Laskey92ae7402006-03-01 18:20:30 +00001395 Context->AddChild(Ty);
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001396
1397 return Slot;
1398}
1399
Jim Laskeyb8509c52006-03-23 18:07:55 +00001400/// NewCompileUnit - Create new compile unit and it's debug information entry.
Jim Laskey063e7652006-01-17 17:31:53 +00001401///
Jim Laskeybd761842006-02-27 17:27:12 +00001402CompileUnit *DwarfWriter::NewCompileUnit(CompileUnitDesc *UnitDesc,
1403 unsigned ID) {
1404 // Construct debug information entry.
1405 DIE *Die = new DIE(DW_TAG_compile_unit);
1406 Die->AddLabel (DW_AT_stmt_list, DW_FORM_data4, DWLabel("line", 0));
1407 Die->AddLabel (DW_AT_high_pc, DW_FORM_addr, DWLabel("text_end", 0));
1408 Die->AddLabel (DW_AT_low_pc, DW_FORM_addr, DWLabel("text_begin", 0));
1409 Die->AddString(DW_AT_producer, DW_FORM_string, UnitDesc->getProducer());
1410 Die->AddUInt (DW_AT_language, DW_FORM_data1, UnitDesc->getLanguage());
1411 Die->AddString(DW_AT_name, DW_FORM_string, UnitDesc->getFileName());
1412 Die->AddString(DW_AT_comp_dir, DW_FORM_string, UnitDesc->getDirectory());
1413
Jim Laskeyb8509c52006-03-23 18:07:55 +00001414 // Add debug information entry to descriptor map.
Jim Laskey90c79d72006-03-23 23:02:34 +00001415 DIE *&Slot = getDieMapSlotFor(UnitDesc);
1416 Slot = Die;
Jim Laskeybd761842006-02-27 17:27:12 +00001417
1418 // Construct compile unit.
1419 CompileUnit *Unit = new CompileUnit(UnitDesc, ID, Die);
1420
1421 // Add Unit to compile unit map.
1422 DescToUnitMap[UnitDesc] = Unit;
1423
1424 return Unit;
1425}
Jim Laskey0420f2a2006-02-22 19:02:11 +00001426
Jim Laskeybd761842006-02-27 17:27:12 +00001427/// FindCompileUnit - Get the compile unit for the given descriptor.
1428///
1429CompileUnit *DwarfWriter::FindCompileUnit(CompileUnitDesc *UnitDesc) {
1430 CompileUnit *Unit = DescToUnitMap[UnitDesc];
1431 assert(Unit && "Missing compile unit.");
Jim Laskeyd18e2892006-01-20 20:34:06 +00001432 return Unit;
Jim Laskey063e7652006-01-17 17:31:53 +00001433}
1434
Jim Laskey0420f2a2006-02-22 19:02:11 +00001435/// NewGlobalVariable - Add a new global variable DIE.
1436///
1437DIE *DwarfWriter::NewGlobalVariable(GlobalVariableDesc *GVD) {
Jim Laskey0420f2a2006-02-22 19:02:11 +00001438 // Get the compile unit context.
Jim Laskeybd761842006-02-27 17:27:12 +00001439 CompileUnitDesc *UnitDesc = static_cast<CompileUnitDesc *>(GVD->getContext());
1440 CompileUnit *Unit = FindCompileUnit(UnitDesc);
Jim Laskey90c79d72006-03-23 23:02:34 +00001441
1442 // Check for pre-existence.
1443 DIE *&Slot = Unit->getDieMapSlotFor(GVD);
1444 if (Slot) return Slot;
1445
Jim Laskey0420f2a2006-02-22 19:02:11 +00001446 // Get the global variable itself.
1447 GlobalVariable *GV = GVD->getGlobalVariable();
1448 // Generate the mangled name.
1449 std::string MangledName = Asm->Mang->getValueName(GV);
1450
1451 // Gather the details (simplify add attribute code.)
1452 const std::string &Name = GVD->getName();
Jim Laskey0420f2a2006-02-22 19:02:11 +00001453
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001454 // Get the global's type.
Jim Laskey90c79d72006-03-23 23:02:34 +00001455 DIE *Type = NewType(Unit->getDie(), GVD->getType(), Unit);
Jim Laskeyf4afdd92006-02-23 16:58:18 +00001456
1457 // Create the globale variable DIE.
Jim Laskey0420f2a2006-02-22 19:02:11 +00001458 DIE *VariableDie = new DIE(DW_TAG_variable);
1459 VariableDie->AddString (DW_AT_name, DW_FORM_string, Name);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001460 VariableDie->AddDIEntry (DW_AT_type, DW_FORM_ref4, Type);
1461 VariableDie->AddUInt (DW_AT_external, DW_FORM_flag, 1);
Jim Laskeyb8509c52006-03-23 18:07:55 +00001462
1463 // Add source line info if available.
1464 AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001465
Jim Laskeyb8509c52006-03-23 18:07:55 +00001466 // Add address.
Jim Laskeyb80af6f2006-03-03 21:00:14 +00001467 DIEBlock *Block = new DIEBlock();
1468 Block->AddUInt(DW_FORM_data1, DW_OP_addr);
1469 Block->AddObjectLabel(DW_FORM_udata, MangledName);
1470 Block->ComputeSize(*this);
1471 VariableDie->AddBlock(DW_AT_location, 0, Block);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001472
1473 // Add to map.
1474 Slot = VariableDie;
1475
1476 // Add to context owner.
Jim Laskeybd761842006-02-27 17:27:12 +00001477 Unit->getDie()->AddChild(VariableDie);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001478
1479 // Expose as global.
Jim Laskeybd761842006-02-27 17:27:12 +00001480 // FIXME - need to check external flag.
1481 Unit->AddGlobal(Name, VariableDie);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001482
1483 return VariableDie;
1484}
1485
1486/// NewSubprogram - Add a new subprogram DIE.
1487///
1488DIE *DwarfWriter::NewSubprogram(SubprogramDesc *SPD) {
Jim Laskey0420f2a2006-02-22 19:02:11 +00001489 // Get the compile unit context.
Jim Laskeybd761842006-02-27 17:27:12 +00001490 CompileUnitDesc *UnitDesc = static_cast<CompileUnitDesc *>(SPD->getContext());
1491 CompileUnit *Unit = FindCompileUnit(UnitDesc);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001492
Jim Laskey90c79d72006-03-23 23:02:34 +00001493 // Check for pre-existence.
1494 DIE *&Slot = Unit->getDieMapSlotFor(SPD);
1495 if (Slot) return Slot;
1496
Jim Laskey0420f2a2006-02-22 19:02:11 +00001497 // Gather the details (simplify add attribute code.)
1498 const std::string &Name = SPD->getName();
Jim Laskey90c79d72006-03-23 23:02:34 +00001499 DIE *Type = NewType(Unit->getDie(), SPD->getType(), Unit);
Jim Laskey9d0ff8e2006-03-15 19:09:58 +00001500 unsigned IsExternal = SPD->isStatic() ? 0 : 1;
Jim Laskey0420f2a2006-02-22 19:02:11 +00001501
Jim Laskey8a8e9752006-02-27 20:37:42 +00001502 DIE *SubprogramDie = new DIE(DW_TAG_subprogram);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001503 SubprogramDie->AddString (DW_AT_name, DW_FORM_string, Name);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001504 SubprogramDie->AddDIEntry (DW_AT_type, DW_FORM_ref4, Type);
Jim Laskey9d0ff8e2006-03-15 19:09:58 +00001505 SubprogramDie->AddUInt (DW_AT_external, DW_FORM_flag, IsExternal);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001506
Jim Laskeyb8509c52006-03-23 18:07:55 +00001507 // Add source line info if available.
1508 AddSourceLine(SubprogramDie, UnitDesc, SPD->getLine());
1509
Jim Laskey0420f2a2006-02-22 19:02:11 +00001510 // Add to map.
1511 Slot = SubprogramDie;
1512
1513 // Add to context owner.
Jim Laskeybd761842006-02-27 17:27:12 +00001514 Unit->getDie()->AddChild(SubprogramDie);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001515
1516 // Expose as global.
Jim Laskeybd761842006-02-27 17:27:12 +00001517 Unit->AddGlobal(Name, SubprogramDie);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001518
1519 return SubprogramDie;
1520}
1521
Jim Laskeyb8509c52006-03-23 18:07:55 +00001522
1523/// NewScopeVariable - Create a new scope variable.
1524///
1525DIE *DwarfWriter::NewScopeVariable(DebugVariable *DV, CompileUnit *Unit) {
1526 // Get the descriptor.
1527 VariableDesc *VD = DV->getDesc();
1528
1529 // Translate tag to proper Dwarf tag. The result variable is dropped for now.
1530 unsigned Tag;
1531 switch (VD->getTag()) {
1532 case DW_TAG_return_variable: return NULL;
1533 case DW_TAG_arg_variable: Tag = DW_TAG_formal_parameter; break;
1534 case DW_TAG_auto_variable: // fall thru
1535 default: Tag = DW_TAG_variable; break;
1536 }
1537
1538 // Define variable debug information entry.
1539 DIE *VariableDie = new DIE(Tag);
1540 VariableDie->AddString(DW_AT_name, DW_FORM_string, VD->getName());
1541
1542 // Add source line info if available.
1543 AddSourceLine(VariableDie, VD->getFile(), VD->getLine());
1544
1545 // Add variable type.
Jim Laskey90c79d72006-03-23 23:02:34 +00001546 DIE *Type = NewType(Unit->getDie(), VD->getType(), Unit);
Jim Laskeyb8509c52006-03-23 18:07:55 +00001547 VariableDie->AddDIEntry(DW_AT_type, DW_FORM_ref4, Type);
1548
1549 // Get variable address.
1550 MachineLocation Location;
1551 Asm->TM.getRegisterInfo()->getLocation(*MF, DV->getFrameIndex(), Location);
1552
1553 // Add computation for variable.
1554 DIEBlock *Block = new DIEBlock();
1555 if (Location.isRegister()) {
1556 // FIXME - This is a real hack.
1557 Block->AddUInt(DW_FORM_data1, DW_OP_reg0 + Location.getRegister());
1558 } else {
1559 // FIXME - This is a real hack.
1560 Block->AddUInt(DW_FORM_data1, DW_OP_breg0 + Location.getRegister());
1561 Block->AddUInt(DW_FORM_sdata, Location.getOffset());
1562 }
1563 Block->ComputeSize(*this);
1564 VariableDie->AddBlock(DW_AT_location, 0, Block);
1565
1566 return VariableDie;
1567}
1568
1569/// ConstructScope - Construct the components of a scope.
1570///
1571void DwarfWriter::ConstructScope(DebugScope *ParentScope,
1572 DIE *ParentDie, CompileUnit *Unit) {
1573 // Add variables to scope.
1574 std::vector<DebugVariable *> &Variables = ParentScope->getVariables();
1575 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
1576 DIE *VariableDie = NewScopeVariable(Variables[i], Unit);
1577 if (VariableDie) ParentDie->AddChild(VariableDie);
1578 }
1579
1580 // Add nested scopes.
1581 std::vector<DebugScope *> &Scopes = ParentScope->getScopes();
1582 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
1583 // Define the Scope debug information entry.
1584 DebugScope *Scope = Scopes[j];
1585 // FIXME - Ignore inlined functions for the time being.
1586 if (Scope->getParent()) continue;
1587
1588 DIE *ScopeDie = new DIE(DW_TAG_lexical_block);
1589
1590 // Add the scope bounds.
1591 if (unsigned StartID = Scope->getStartLabelID()) {
1592 ScopeDie->AddLabel(DW_AT_low_pc, DW_FORM_addr,
1593 DWLabel("loc", StartID));
1594 } else {
1595 ScopeDie->AddLabel(DW_AT_low_pc, DW_FORM_addr,
1596 DWLabel("func_begin", SubprogramCount));
1597 }
1598 if (unsigned EndID = Scope->getEndLabelID()) {
1599 ScopeDie->AddLabel(DW_AT_high_pc, DW_FORM_addr,
1600 DWLabel("loc", EndID));
1601 } else {
1602 ScopeDie->AddLabel(DW_AT_high_pc, DW_FORM_addr,
1603 DWLabel("func_end", SubprogramCount));
1604 }
1605
1606 // Add the scope contents.
1607 ConstructScope(Scope, ScopeDie, Unit);
1608 ParentDie->AddChild(ScopeDie);
1609 }
1610}
1611
1612/// ConstructRootScope - Construct the scope for the subprogram.
1613///
1614void DwarfWriter::ConstructRootScope(DebugScope *RootScope) {
1615 // Exit if there is no root scope.
1616 if (!RootScope) return;
1617
1618 // Get the subprogram debug information entry.
1619 SubprogramDesc *SPD = cast<SubprogramDesc>(RootScope->getDesc());
Jim Laskey90c79d72006-03-23 23:02:34 +00001620
1621 // Get the compile unit context.
1622 CompileUnitDesc *UnitDesc = static_cast<CompileUnitDesc *>(SPD->getContext());
1623 CompileUnit *Unit = FindCompileUnit(UnitDesc);
1624
1625 // Get the subprogram die.
1626 DIE *SPDie = Unit->getDieMapSlotFor(SPD);
Jim Laskeyb8509c52006-03-23 18:07:55 +00001627 assert(SPDie && "Missing subprogram descriptor");
1628
1629 // Add the function bounds.
1630 SPDie->AddLabel(DW_AT_low_pc, DW_FORM_addr,
1631 DWLabel("func_begin", SubprogramCount));
1632 SPDie->AddLabel(DW_AT_high_pc, DW_FORM_addr,
1633 DWLabel("func_end", SubprogramCount));
1634
Jim Laskeyb8509c52006-03-23 18:07:55 +00001635 ConstructScope(RootScope, SPDie, Unit);
1636}
1637
Jim Laskey063e7652006-01-17 17:31:53 +00001638/// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
1639/// tools to recognize the object file contains Dwarf information.
Jim Laskeyb2efb852006-01-04 22:28:25 +00001640///
1641void DwarfWriter::EmitInitial() const {
Jim Laskey063e7652006-01-17 17:31:53 +00001642 // Dwarf sections base addresses.
Jim Laskey0420f2a2006-02-22 19:02:11 +00001643 Asm->SwitchSection(DwarfFrameSection, 0);
1644 EmitLabel("section_frame", 0);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001645 Asm->SwitchSection(DwarfInfoSection, 0);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001646 EmitLabel("section_info", 0);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001647 EmitLabel("info", 0);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001648 Asm->SwitchSection(DwarfAbbrevSection, 0);
1649 EmitLabel("section_abbrev", 0);
1650 EmitLabel("abbrev", 0);
1651 Asm->SwitchSection(DwarfARangesSection, 0);
1652 EmitLabel("section_aranges", 0);
1653 Asm->SwitchSection(DwarfMacInfoSection, 0);
1654 EmitLabel("section_macinfo", 0);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001655 Asm->SwitchSection(DwarfLineSection, 0);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001656 EmitLabel("section_line", 0);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001657 EmitLabel("line", 0);
Jim Laskey0420f2a2006-02-22 19:02:11 +00001658 Asm->SwitchSection(DwarfLocSection, 0);
1659 EmitLabel("section_loc", 0);
1660 Asm->SwitchSection(DwarfPubNamesSection, 0);
1661 EmitLabel("section_pubnames", 0);
1662 Asm->SwitchSection(DwarfStrSection, 0);
1663 EmitLabel("section_str", 0);
1664 Asm->SwitchSection(DwarfRangesSection, 0);
1665 EmitLabel("section_ranges", 0);
1666
Jim Laskey063e7652006-01-17 17:31:53 +00001667 Asm->SwitchSection(TextSection, 0);
1668 EmitLabel("text_begin", 0);
1669 Asm->SwitchSection(DataSection, 0);
1670 EmitLabel("data_begin", 0);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00001671}
1672
Jim Laskey063e7652006-01-17 17:31:53 +00001673/// EmitDIE - Recusively Emits a debug information entry.
1674///
1675void DwarfWriter::EmitDIE(DIE *Die) const {
1676 // Get the abbreviation for this DIE.
1677 unsigned AbbrevID = Die->getAbbrevID();
1678 const DIEAbbrev &Abbrev = Abbreviations[AbbrevID];
Jim Laskey0d086af2006-02-27 12:43:29 +00001679
1680 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00001681
1682 // Emit the code (index) for the abbreviation.
1683 EmitULEB128Bytes(AbbrevID);
1684 EOL(std::string("Abbrev [" +
1685 utostr(AbbrevID) +
Jim Laskey0d086af2006-02-27 12:43:29 +00001686 "] 0x" + utohexstr(Die->getOffset()) +
1687 ":0x" + utohexstr(Die->getSize()) + " " +
1688 TagString(Abbrev.getTag())));
Jim Laskey063e7652006-01-17 17:31:53 +00001689
1690 const std::vector<DIEValue *> &Values = Die->getValues();
Jim Laskeyd18e2892006-01-20 20:34:06 +00001691 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
Jim Laskey063e7652006-01-17 17:31:53 +00001692
1693 // Emit the DIE attribute values.
Jim Laskey52060a02006-01-24 00:49:18 +00001694 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001695 unsigned Attr = AbbrevData[i].getAttribute();
1696 unsigned Form = AbbrevData[i].getForm();
Jim Laskey063e7652006-01-17 17:31:53 +00001697 assert(Form && "Too many attributes for DIE (check abbreviation)");
1698
1699 switch (Attr) {
1700 case DW_AT_sibling: {
Jim Laskeyda427fa2006-01-27 20:31:25 +00001701 EmitInt32(Die->SiblingOffset());
Jim Laskey063e7652006-01-17 17:31:53 +00001702 break;
1703 }
1704 default: {
1705 // Emit an attribute using the defined form.
1706 Values[i]->EmitValue(*this, Form);
1707 break;
1708 }
1709 }
1710
1711 EOL(AttributeString(Attr));
1712 }
1713
1714 // Emit the DIE children if any.
1715 if (Abbrev.getChildrenFlag() == DW_CHILDREN_yes) {
1716 const std::vector<DIE *> &Children = Die->getChildren();
1717
Jim Laskey52060a02006-01-24 00:49:18 +00001718 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
Jim Laskey063e7652006-01-17 17:31:53 +00001719 EmitDIE(Children[j]);
1720 }
1721
Jim Laskeyda427fa2006-01-27 20:31:25 +00001722 EmitInt8(0); EOL("End Of Children Mark");
Jim Laskey063e7652006-01-17 17:31:53 +00001723 }
1724}
1725
1726/// SizeAndOffsetDie - Compute the size and offset of a DIE.
1727///
Jim Laskeyb8509c52006-03-23 18:07:55 +00001728unsigned DwarfWriter::SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
1729 // Get the children.
1730 const std::vector<DIE *> &Children = Die->getChildren();
1731
1732 // If not last sibling and has children then add sibling offset attribute.
1733 if (!Last && !Children.empty()) Die->AddSiblingOffset();
1734
Jim Laskey0420f2a2006-02-22 19:02:11 +00001735 // Record the abbreviation.
1736 Die->Complete(*this);
1737
Jim Laskey063e7652006-01-17 17:31:53 +00001738 // Get the abbreviation for this DIE.
1739 unsigned AbbrevID = Die->getAbbrevID();
1740 const DIEAbbrev &Abbrev = Abbreviations[AbbrevID];
1741
1742 // Set DIE offset
1743 Die->setOffset(Offset);
1744
1745 // Start the size with the size of abbreviation code.
1746 Offset += SizeULEB128(AbbrevID);
1747
1748 const std::vector<DIEValue *> &Values = Die->getValues();
Jim Laskeyd18e2892006-01-20 20:34:06 +00001749 const std::vector<DIEAbbrevData> &AbbrevData = Abbrev.getData();
Jim Laskey063e7652006-01-17 17:31:53 +00001750
1751 // Emit the DIE attribute values.
Jim Laskey52060a02006-01-24 00:49:18 +00001752 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
Jim Laskey063e7652006-01-17 17:31:53 +00001753 // Size attribute value.
Jim Laskeyd18e2892006-01-20 20:34:06 +00001754 Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
Jim Laskey063e7652006-01-17 17:31:53 +00001755 }
1756
1757 // Emit the DIE children if any.
Jim Laskeyb8509c52006-03-23 18:07:55 +00001758 if (!Children.empty()) {
1759 assert(Abbrev.getChildrenFlag() == DW_CHILDREN_yes &&
1760 "Children flag not set");
Jim Laskey063e7652006-01-17 17:31:53 +00001761
Jim Laskey52060a02006-01-24 00:49:18 +00001762 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
Jim Laskeyb8509c52006-03-23 18:07:55 +00001763 Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
Jim Laskey063e7652006-01-17 17:31:53 +00001764 }
1765
1766 // End of children marker.
1767 Offset += sizeof(int8_t);
1768 }
1769
1770 Die->setSize(Offset - Die->getOffset());
1771 return Offset;
1772}
1773
1774/// SizeAndOffsets - Compute the size and offset of all the DIEs.
1775///
1776void DwarfWriter::SizeAndOffsets() {
Jim Laskey063e7652006-01-17 17:31:53 +00001777
1778 // Process each compile unit.
Jim Laskey52060a02006-01-24 00:49:18 +00001779 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
Jim Laskeybd761842006-02-27 17:27:12 +00001780 CompileUnit *Unit = CompileUnits[i];
1781 if (Unit->hasContent()) {
1782 // Compute size of compile unit header
1783 unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
1784 sizeof(int16_t) + // DWARF version number
1785 sizeof(int32_t) + // Offset Into Abbrev. Section
1786 sizeof(int8_t); // Pointer Size (in bytes)
Jim Laskeyb8509c52006-03-23 18:07:55 +00001787 SizeAndOffsetDie(Unit->getDie(), Offset, (i + 1) == N);
Jim Laskeybd761842006-02-27 17:27:12 +00001788 }
Jim Laskey063e7652006-01-17 17:31:53 +00001789 }
1790}
1791
1792/// EmitDebugInfo - Emit the debug info section.
1793///
1794void DwarfWriter::EmitDebugInfo() const {
1795 // Start debug info section.
1796 Asm->SwitchSection(DwarfInfoSection, 0);
1797
Jim Laskeybd761842006-02-27 17:27:12 +00001798 // Process each compile unit.
1799 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
1800 CompileUnit *Unit = CompileUnits[i];
1801
1802 if (Unit->hasContent()) {
1803 DIE *Die = Unit->getDie();
Jim Laskey0d086af2006-02-27 12:43:29 +00001804 // Emit the compile units header.
Jim Laskeybd761842006-02-27 17:27:12 +00001805 EmitLabel("info_begin", Unit->getID());
Jim Laskey0d086af2006-02-27 12:43:29 +00001806 // Emit size of content not including length itself
Jim Laskeybd761842006-02-27 17:27:12 +00001807 unsigned ContentSize = Die->getSize() +
Jim Laskey0d086af2006-02-27 12:43:29 +00001808 sizeof(int16_t) + // DWARF version number
1809 sizeof(int32_t) + // Offset Into Abbrev. Section
1810 sizeof(int8_t); // Pointer Size (in bytes)
1811
1812 EmitInt32(ContentSize); EOL("Length of Compilation Unit Info");
1813 EmitInt16(DWARF_VERSION); EOL("DWARF version number");
1814 EmitReference("abbrev_begin", 0); EOL("Offset Into Abbrev. Section");
1815 EmitInt8(AddressSize); EOL("Address Size (in bytes)");
1816
Jim Laskeybd761842006-02-27 17:27:12 +00001817 EmitDIE(Die);
1818 EmitLabel("info_end", Unit->getID());
Jim Laskey063e7652006-01-17 17:31:53 +00001819 }
Jim Laskey0d086af2006-02-27 12:43:29 +00001820
1821 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00001822 }
1823}
1824
1825/// EmitAbbreviations - Emit the abbreviation section.
1826///
1827void DwarfWriter::EmitAbbreviations() const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001828 // Check to see if it is worth the effort.
1829 if (!Abbreviations.empty()) {
1830 // Start the debug abbrev section.
1831 Asm->SwitchSection(DwarfAbbrevSection, 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001832
Jim Laskeyd18e2892006-01-20 20:34:06 +00001833 EmitLabel("abbrev_begin", 0);
Jim Laskey063e7652006-01-17 17:31:53 +00001834
Jim Laskeyd18e2892006-01-20 20:34:06 +00001835 // For each abbrevation.
1836 for (unsigned AbbrevID = 1, NAID = Abbreviations.size();
Jim Laskey52060a02006-01-24 00:49:18 +00001837 AbbrevID <= NAID; ++AbbrevID) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00001838 // Get abbreviation data
1839 const DIEAbbrev &Abbrev = Abbreviations[AbbrevID];
Jim Laskey063e7652006-01-17 17:31:53 +00001840
Jim Laskeyd18e2892006-01-20 20:34:06 +00001841 // Emit the abbrevations code (base 1 index.)
1842 EmitULEB128Bytes(AbbrevID); EOL("Abbreviation Code");
Jim Laskey063e7652006-01-17 17:31:53 +00001843
Jim Laskeyd18e2892006-01-20 20:34:06 +00001844 // Emit the abbreviations data.
1845 Abbrev.Emit(*this);
Jim Laskey0d086af2006-02-27 12:43:29 +00001846
1847 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00001848 }
Jim Laskeyd18e2892006-01-20 20:34:06 +00001849
1850 EmitLabel("abbrev_end", 0);
Jim Laskey0d086af2006-02-27 12:43:29 +00001851
1852 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00001853 }
1854}
1855
1856/// EmitDebugLines - Emit source line information.
1857///
1858void DwarfWriter::EmitDebugLines() const {
1859 // Minimum line delta, thus ranging from -10..(255-10).
1860 const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
1861 // Maximum line delta, thus ranging from -10..(255-10).
1862 const int MaxLineDelta = 255 + MinLineDelta;
1863
1864 // Start the dwarf line section.
1865 Asm->SwitchSection(DwarfLineSection, 0);
1866
1867 // Construct the section header.
1868
1869 EmitDifference("line_end", 0, "line_begin", 0);
1870 EOL("Length of Source Line Info");
1871 EmitLabel("line_begin", 0);
1872
Jim Laskeyda427fa2006-01-27 20:31:25 +00001873 EmitInt16(DWARF_VERSION); EOL("DWARF version number");
Jim Laskey063e7652006-01-17 17:31:53 +00001874
1875 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0);
1876 EOL("Prolog Length");
1877 EmitLabel("line_prolog_begin", 0);
1878
Jim Laskeyda427fa2006-01-27 20:31:25 +00001879 EmitInt8(1); EOL("Minimum Instruction Length");
Jim Laskey063e7652006-01-17 17:31:53 +00001880
Jim Laskeyda427fa2006-01-27 20:31:25 +00001881 EmitInt8(1); EOL("Default is_stmt_start flag");
Jim Laskey063e7652006-01-17 17:31:53 +00001882
Jim Laskeyda427fa2006-01-27 20:31:25 +00001883 EmitInt8(MinLineDelta); EOL("Line Base Value (Special Opcodes)");
Jim Laskey063e7652006-01-17 17:31:53 +00001884
Jim Laskeyda427fa2006-01-27 20:31:25 +00001885 EmitInt8(MaxLineDelta); EOL("Line Range Value (Special Opcodes)");
Jim Laskey063e7652006-01-17 17:31:53 +00001886
Jim Laskeyda427fa2006-01-27 20:31:25 +00001887 EmitInt8(-MinLineDelta); EOL("Special Opcode Base");
Jim Laskey063e7652006-01-17 17:31:53 +00001888
1889 // Line number standard opcode encodings argument count
Jim Laskeyda427fa2006-01-27 20:31:25 +00001890 EmitInt8(0); EOL("DW_LNS_copy arg count");
1891 EmitInt8(1); EOL("DW_LNS_advance_pc arg count");
1892 EmitInt8(1); EOL("DW_LNS_advance_line arg count");
1893 EmitInt8(1); EOL("DW_LNS_set_file arg count");
1894 EmitInt8(1); EOL("DW_LNS_set_column arg count");
1895 EmitInt8(0); EOL("DW_LNS_negate_stmt arg count");
1896 EmitInt8(0); EOL("DW_LNS_set_basic_block arg count");
1897 EmitInt8(0); EOL("DW_LNS_const_add_pc arg count");
1898 EmitInt8(1); EOL("DW_LNS_fixed_advance_pc arg count");
Jim Laskey063e7652006-01-17 17:31:53 +00001899
1900 const UniqueVector<std::string> &Directories = DebugInfo->getDirectories();
1901 const UniqueVector<SourceFileInfo> &SourceFiles = DebugInfo->getSourceFiles();
1902
1903 // Emit directories.
1904 for (unsigned DirectoryID = 1, NDID = Directories.size();
Jim Laskey52060a02006-01-24 00:49:18 +00001905 DirectoryID <= NDID; ++DirectoryID) {
Jim Laskey063e7652006-01-17 17:31:53 +00001906 EmitString(Directories[DirectoryID]); EOL("Directory");
1907 }
Jim Laskeyda427fa2006-01-27 20:31:25 +00001908 EmitInt8(0); EOL("End of directories");
Jim Laskey063e7652006-01-17 17:31:53 +00001909
1910 // Emit files.
1911 for (unsigned SourceID = 1, NSID = SourceFiles.size();
Jim Laskey52060a02006-01-24 00:49:18 +00001912 SourceID <= NSID; ++SourceID) {
Jim Laskey063e7652006-01-17 17:31:53 +00001913 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
1914 EmitString(SourceFile.getName()); EOL("Source");
1915 EmitULEB128Bytes(SourceFile.getDirectoryID()); EOL("Directory #");
1916 EmitULEB128Bytes(0); EOL("Mod date");
1917 EmitULEB128Bytes(0); EOL("File size");
1918 }
Jim Laskeyda427fa2006-01-27 20:31:25 +00001919 EmitInt8(0); EOL("End of files");
Jim Laskey063e7652006-01-17 17:31:53 +00001920
1921 EmitLabel("line_prolog_end", 0);
1922
1923 // Emit line information
1924 const std::vector<SourceLineInfo *> &LineInfos = DebugInfo->getSourceLines();
1925
1926 // Dwarf assumes we start with first line of first source file.
1927 unsigned Source = 1;
1928 unsigned Line = 1;
1929
1930 // Construct rows of the address, source, line, column matrix.
Jim Laskey52060a02006-01-24 00:49:18 +00001931 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
Jim Laskey063e7652006-01-17 17:31:53 +00001932 SourceLineInfo *LineInfo = LineInfos[i];
Jim Laskey0420f2a2006-02-22 19:02:11 +00001933
1934 if (DwarfVerbose) {
1935 unsigned SourceID = LineInfo->getSourceID();
1936 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
1937 unsigned DirectoryID = SourceFile.getDirectoryID();
1938 O << "\t"
1939 << Asm->CommentString << " "
1940 << Directories[DirectoryID]
1941 << SourceFile.getName() << ":"
1942 << LineInfo->getLine() << "\n";
1943 }
Jim Laskey063e7652006-01-17 17:31:53 +00001944
1945 // Define the line address.
Jim Laskeyda427fa2006-01-27 20:31:25 +00001946 EmitInt8(0); EOL("Extended Op");
1947 EmitInt8(4 + 1); EOL("Op size");
1948 EmitInt8(DW_LNE_set_address); EOL("DW_LNE_set_address");
Jim Laskeyb8509c52006-03-23 18:07:55 +00001949 EmitReference("loc", LineInfo->getLabelID()); EOL("Location label");
Jim Laskey063e7652006-01-17 17:31:53 +00001950
1951 // If change of source, then switch to the new source.
1952 if (Source != LineInfo->getSourceID()) {
1953 Source = LineInfo->getSourceID();
Jim Laskeyda427fa2006-01-27 20:31:25 +00001954 EmitInt8(DW_LNS_set_file); EOL("DW_LNS_set_file");
Jim Laskeybd761842006-02-27 17:27:12 +00001955 EmitULEB128Bytes(Source); EOL("New Source");
Jim Laskey063e7652006-01-17 17:31:53 +00001956 }
1957
1958 // If change of line.
1959 if (Line != LineInfo->getLine()) {
1960 // Determine offset.
1961 int Offset = LineInfo->getLine() - Line;
1962 int Delta = Offset - MinLineDelta;
1963
1964 // Update line.
1965 Line = LineInfo->getLine();
1966
1967 // If delta is small enough and in range...
1968 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
1969 // ... then use fast opcode.
Jim Laskeyda427fa2006-01-27 20:31:25 +00001970 EmitInt8(Delta - MinLineDelta); EOL("Line Delta");
Jim Laskey063e7652006-01-17 17:31:53 +00001971 } else {
1972 // ... otherwise use long hand.
Jim Laskeyda427fa2006-01-27 20:31:25 +00001973 EmitInt8(DW_LNS_advance_line); EOL("DW_LNS_advance_line");
Jim Laskey063e7652006-01-17 17:31:53 +00001974 EmitSLEB128Bytes(Offset); EOL("Line Offset");
Jim Laskeyda427fa2006-01-27 20:31:25 +00001975 EmitInt8(DW_LNS_copy); EOL("DW_LNS_copy");
Jim Laskey063e7652006-01-17 17:31:53 +00001976 }
1977 } else {
1978 // Copy the previous row (different address or source)
Jim Laskeyda427fa2006-01-27 20:31:25 +00001979 EmitInt8(DW_LNS_copy); EOL("DW_LNS_copy");
Jim Laskey063e7652006-01-17 17:31:53 +00001980 }
1981 }
1982
Jim Laskey0420f2a2006-02-22 19:02:11 +00001983 // Define last address.
1984 EmitInt8(0); EOL("Extended Op");
1985 EmitInt8(4 + 1); EOL("Op size");
1986 EmitInt8(DW_LNE_set_address); EOL("DW_LNE_set_address");
1987 EmitReference("text_end", 0); EOL("Location label");
1988
Jim Laskey063e7652006-01-17 17:31:53 +00001989 // Mark end of matrix.
Jim Laskeyda427fa2006-01-27 20:31:25 +00001990 EmitInt8(0); EOL("DW_LNE_end_sequence");
Jim Laskey063e7652006-01-17 17:31:53 +00001991 EmitULEB128Bytes(1); O << "\n";
Jim Laskeyda427fa2006-01-27 20:31:25 +00001992 EmitInt8(1); O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00001993
1994 EmitLabel("line_end", 0);
Jim Laskey0d086af2006-02-27 12:43:29 +00001995
1996 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00001997}
Jim Laskey19ef4ef2006-01-17 20:41:40 +00001998
1999/// EmitDebugFrame - Emit visible names into a debug frame section.
2000///
2001void DwarfWriter::EmitDebugFrame() {
Jim Laskeyb8509c52006-03-23 18:07:55 +00002002 // Start the dwarf pubnames section.
2003 Asm->SwitchSection(DwarfFrameSection, 0);
2004
2005 EmitDifference("frame_common_end", 0,
2006 "frame_common_begin", 0);
2007 EOL("Length of Common Information Entry");
2008
2009 EmitLabel("frame_common_begin", 0);
2010 EmitInt32(DW_CIE_ID); EOL("CIE Identifier Tag");
2011 EmitInt8(DW_CIE_VERSION); EOL("CIE Version");
2012 EmitString(""); EOL("CIE Augmentation");
2013 EmitULEB128Bytes(1); EOL("CIE Code Alignment Factor");
2014 // FIXME - needs to change based on stack direction.
2015 EmitSLEB128Bytes(-sizeof(int32_t)); EOL("CIE Data Alignment Factor");
2016 // FIXME - hard coded for PPC (LR).
2017 EmitInt8(0x41); EOL("CIE RA Column Hardcoded (PPC LR)");
2018 // FIXME - hard coded for PPC 0(SP).
2019 EmitULEB128Bytes(DW_CFA_def_cfa); EOL("DW_CFA_def_cfa");
2020 EmitULEB128Bytes(1); EOL("PPC Register SP");
2021 EmitULEB128Bytes(0); EOL("PPC offset 0 as in 0(SP)");
2022 EmitAlign(2);
2023 EmitLabel("frame_common_end", 0);
2024
2025 O << "\n";
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002026}
2027
2028/// EmitDebugPubNames - Emit visible names into a debug pubnames section.
2029///
2030void DwarfWriter::EmitDebugPubNames() {
Jim Laskeybd761842006-02-27 17:27:12 +00002031 // Start the dwarf pubnames section.
2032 Asm->SwitchSection(DwarfPubNamesSection, 0);
Jim Laskeyd18e2892006-01-20 20:34:06 +00002033
Jim Laskeybd761842006-02-27 17:27:12 +00002034 // Process each compile unit.
2035 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2036 CompileUnit *Unit = CompileUnits[i];
Jim Laskeyd18e2892006-01-20 20:34:06 +00002037
Jim Laskeybd761842006-02-27 17:27:12 +00002038 if (Unit->hasContent()) {
2039 EmitDifference("pubnames_end", Unit->getID(),
2040 "pubnames_begin", Unit->getID());
2041 EOL("Length of Public Names Info");
2042
2043 EmitLabel("pubnames_begin", Unit->getID());
2044
2045 EmitInt16(DWARF_VERSION); EOL("DWARF Version");
2046
2047 EmitReference("info_begin", Unit->getID());
2048 EOL("Offset of Compilation Unit Info");
Jim Laskeyd18e2892006-01-20 20:34:06 +00002049
Jim Laskeybd761842006-02-27 17:27:12 +00002050 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID());
2051 EOL("Compilation Unit Length");
2052
2053 std::map<std::string, DIE *> &Globals = Unit->getGlobals();
2054
2055 for (std::map<std::string, DIE *>::iterator GI = Globals.begin(),
2056 GE = Globals.end();
2057 GI != GE; ++GI) {
2058 const std::string &Name = GI->first;
2059 DIE * Entity = GI->second;
2060
2061 EmitInt32(Entity->getOffset()); EOL("DIE offset");
2062 EmitString(Name); EOL("External Name");
2063 }
Jim Laskeyd18e2892006-01-20 20:34:06 +00002064
Jim Laskeybd761842006-02-27 17:27:12 +00002065 EmitInt32(0); EOL("End Mark");
2066 EmitLabel("pubnames_end", Unit->getID());
2067
2068 O << "\n";
Jim Laskeyd18e2892006-01-20 20:34:06 +00002069 }
Jim Laskeyd18e2892006-01-20 20:34:06 +00002070 }
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002071}
2072
2073/// EmitDebugStr - Emit visible names into a debug str section.
2074///
2075void DwarfWriter::EmitDebugStr() {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002076 // Check to see if it is worth the effort.
2077 if (!StringPool.empty()) {
2078 // Start the dwarf str section.
2079 Asm->SwitchSection(DwarfStrSection, 0);
2080
Jim Laskeyb8509c52006-03-23 18:07:55 +00002081 // For each of strings in the string pool.
Jim Laskeyd18e2892006-01-20 20:34:06 +00002082 for (unsigned StringID = 1, N = StringPool.size();
Jim Laskey52060a02006-01-24 00:49:18 +00002083 StringID <= N; ++StringID) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00002084 // Emit a label for reference from debug information entries.
2085 EmitLabel("string", StringID);
2086 // Emit the string itself.
2087 const std::string &String = StringPool[StringID];
2088 EmitString(String); O << "\n";
2089 }
Jim Laskey0d086af2006-02-27 12:43:29 +00002090
2091 O << "\n";
Jim Laskeyd18e2892006-01-20 20:34:06 +00002092 }
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002093}
2094
2095/// EmitDebugLoc - Emit visible names into a debug loc section.
2096///
2097void DwarfWriter::EmitDebugLoc() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00002098 // Start the dwarf loc section.
2099 Asm->SwitchSection(DwarfLocSection, 0);
Jim Laskey0d086af2006-02-27 12:43:29 +00002100
2101 O << "\n";
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002102}
2103
2104/// EmitDebugARanges - Emit visible names into a debug aranges section.
2105///
2106void DwarfWriter::EmitDebugARanges() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00002107 // Start the dwarf aranges section.
2108 Asm->SwitchSection(DwarfARangesSection, 0);
2109
2110 // FIXME - Mock up
Jim Laskeybd761842006-02-27 17:27:12 +00002111#if 0
2112 // Process each compile unit.
2113 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2114 CompileUnit *Unit = CompileUnits[i];
2115
2116 if (Unit->hasContent()) {
2117 // Don't include size of length
2118 EmitInt32(0x1c); EOL("Length of Address Ranges Info");
2119
2120 EmitInt16(DWARF_VERSION); EOL("Dwarf Version");
2121
2122 EmitReference("info_begin", Unit->getID());
2123 EOL("Offset of Compilation Unit Info");
Jim Laskeye719a7c2006-01-18 16:54:26 +00002124
Jim Laskeybd761842006-02-27 17:27:12 +00002125 EmitInt8(AddressSize); EOL("Size of Address");
Jim Laskeye719a7c2006-01-18 16:54:26 +00002126
Jim Laskeybd761842006-02-27 17:27:12 +00002127 EmitInt8(0); EOL("Size of Segment Descriptor");
Jim Laskeye719a7c2006-01-18 16:54:26 +00002128
Jim Laskeybd761842006-02-27 17:27:12 +00002129 EmitInt16(0); EOL("Pad (1)");
2130 EmitInt16(0); EOL("Pad (2)");
Jim Laskeye719a7c2006-01-18 16:54:26 +00002131
Jim Laskeybd761842006-02-27 17:27:12 +00002132 // Range 1
2133 EmitReference("text_begin", 0); EOL("Address");
2134 EmitDifference("text_end", 0, "text_begin", 0); EOL("Length");
Jim Laskeye719a7c2006-01-18 16:54:26 +00002135
Jim Laskeybd761842006-02-27 17:27:12 +00002136 EmitInt32(0); EOL("EOM (1)");
2137 EmitInt32(0); EOL("EOM (2)");
2138
2139 O << "\n";
2140 }
2141 }
2142#endif
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002143}
2144
2145/// EmitDebugRanges - Emit visible names into a debug ranges section.
2146///
2147void DwarfWriter::EmitDebugRanges() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00002148 // Start the dwarf ranges section.
2149 Asm->SwitchSection(DwarfRangesSection, 0);
Jim Laskey0d086af2006-02-27 12:43:29 +00002150
2151 O << "\n";
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002152}
2153
2154/// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
2155///
2156void DwarfWriter::EmitDebugMacInfo() {
Jim Laskeye719a7c2006-01-18 16:54:26 +00002157 // Start the dwarf macinfo section.
2158 Asm->SwitchSection(DwarfMacInfoSection, 0);
Jim Laskey0d086af2006-02-27 12:43:29 +00002159
2160 O << "\n";
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002161}
Jim Laskey063e7652006-01-17 17:31:53 +00002162
Jim Laskey52060a02006-01-24 00:49:18 +00002163/// ConstructCompileUnitDIEs - Create a compile unit DIE for each source and
2164/// header file.
2165void DwarfWriter::ConstructCompileUnitDIEs() {
Jim Laskey86cbdba2006-02-06 15:33:21 +00002166 const UniqueVector<CompileUnitDesc *> CUW = DebugInfo->getCompileUnits();
Jim Laskey6e87c0e2006-01-26 21:22:49 +00002167
2168 for (unsigned i = 1, N = CUW.size(); i <= N; ++i) {
Jim Laskeybd761842006-02-27 17:27:12 +00002169 CompileUnit *Unit = NewCompileUnit(CUW[i], i);
Jim Laskey52060a02006-01-24 00:49:18 +00002170 CompileUnits.push_back(Unit);
2171 }
2172}
2173
2174/// ConstructGlobalDIEs - Create DIEs for each of the externally visible global
2175/// variables.
Jim Laskeyb8509c52006-03-23 18:07:55 +00002176void DwarfWriter::ConstructGlobalDIEs() {
Jim Laskey86cbdba2006-02-06 15:33:21 +00002177 std::vector<GlobalVariableDesc *> GlobalVariables =
Jim Laskeyb8509c52006-03-23 18:07:55 +00002178 DebugInfo->getAnchoredDescriptors<GlobalVariableDesc>(*M);
Jim Laskeyb3e789a2006-01-26 20:21:46 +00002179
2180 for (unsigned i = 0, N = GlobalVariables.size(); i < N; ++i) {
Jim Laskey86cbdba2006-02-06 15:33:21 +00002181 GlobalVariableDesc *GVD = GlobalVariables[i];
Jim Laskey0420f2a2006-02-22 19:02:11 +00002182 NewGlobalVariable(GVD);
Jim Laskey52060a02006-01-24 00:49:18 +00002183 }
2184}
2185
Jim Laskey0420f2a2006-02-22 19:02:11 +00002186/// ConstructSubprogramDIEs - Create DIEs for each of the externally visible
2187/// subprograms.
Jim Laskeyb8509c52006-03-23 18:07:55 +00002188void DwarfWriter::ConstructSubprogramDIEs() {
Jim Laskey0420f2a2006-02-22 19:02:11 +00002189 std::vector<SubprogramDesc *> Subprograms =
Jim Laskeyb8509c52006-03-23 18:07:55 +00002190 DebugInfo->getAnchoredDescriptors<SubprogramDesc>(*M);
Jim Laskey0420f2a2006-02-22 19:02:11 +00002191
2192 for (unsigned i = 0, N = Subprograms.size(); i < N; ++i) {
2193 SubprogramDesc *SPD = Subprograms[i];
2194 NewSubprogram(SPD);
2195 }
2196}
Jim Laskey52060a02006-01-24 00:49:18 +00002197
Jim Laskey063e7652006-01-17 17:31:53 +00002198/// ShouldEmitDwarf - Determine if Dwarf declarations should be made.
Jim Laskeyb2efb852006-01-04 22:28:25 +00002199///
2200bool DwarfWriter::ShouldEmitDwarf() {
2201 // Check if debug info is present.
2202 if (!DebugInfo || !DebugInfo->hasInfo()) return false;
2203
2204 // Make sure initial declarations are made.
2205 if (!didInitial) {
2206 EmitInitial();
Jim Laskeyb8509c52006-03-23 18:07:55 +00002207
2208 // Create all the compile unit DIEs.
2209 ConstructCompileUnitDIEs();
2210
2211 // Create DIEs for each of the externally visible global variables.
2212 ConstructGlobalDIEs();
2213
2214 // Create DIEs for each of the externally visible subprograms.
2215 ConstructSubprogramDIEs();
2216
Jim Laskeyb2efb852006-01-04 22:28:25 +00002217 didInitial = true;
2218 }
2219
2220 // Okay to emit.
2221 return true;
2222}
2223
Jim Laskey063e7652006-01-17 17:31:53 +00002224//===----------------------------------------------------------------------===//
Jim Laskeyd18e2892006-01-20 20:34:06 +00002225// Main entry points.
Jim Laskey063e7652006-01-17 17:31:53 +00002226//
Jim Laskey52060a02006-01-24 00:49:18 +00002227
2228DwarfWriter::DwarfWriter(std::ostream &OS, AsmPrinter *A)
2229: O(OS)
2230, Asm(A)
Jim Laskeyb8509c52006-03-23 18:07:55 +00002231, M(NULL)
2232, MF(NULL)
Jim Laskey52060a02006-01-24 00:49:18 +00002233, DebugInfo(NULL)
2234, didInitial(false)
Jim Laskeyb8509c52006-03-23 18:07:55 +00002235, SubprogramCount(0)
Jim Laskey52060a02006-01-24 00:49:18 +00002236, CompileUnits()
2237, Abbreviations()
Jim Laskey52060a02006-01-24 00:49:18 +00002238, StringPool()
Jim Laskeybd761842006-02-27 17:27:12 +00002239, DescToUnitMap()
Jim Laskey0420f2a2006-02-22 19:02:11 +00002240, DescToDieMap()
2241, TypeToDieMap()
Jim Laskey52060a02006-01-24 00:49:18 +00002242, AddressSize(sizeof(int32_t))
2243, hasLEB128(false)
2244, hasDotLoc(false)
2245, hasDotFile(false)
2246, needsSet(false)
2247, DwarfAbbrevSection(".debug_abbrev")
2248, DwarfInfoSection(".debug_info")
2249, DwarfLineSection(".debug_line")
2250, DwarfFrameSection(".debug_frame")
2251, DwarfPubNamesSection(".debug_pubnames")
2252, DwarfPubTypesSection(".debug_pubtypes")
2253, DwarfStrSection(".debug_str")
2254, DwarfLocSection(".debug_loc")
2255, DwarfARangesSection(".debug_aranges")
2256, DwarfRangesSection(".debug_ranges")
2257, DwarfMacInfoSection(".debug_macinfo")
2258, TextSection(".text")
2259, DataSection(".data")
2260{}
2261DwarfWriter::~DwarfWriter() {
2262 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i) {
2263 delete CompileUnits[i];
Jim Laskey063e7652006-01-17 17:31:53 +00002264 }
Jim Laskey52060a02006-01-24 00:49:18 +00002265}
Jim Laskey063e7652006-01-17 17:31:53 +00002266
2267/// BeginModule - Emit all Dwarf sections that should come prior to the content.
Jim Laskeyb2efb852006-01-04 22:28:25 +00002268///
Jim Laskeyb8509c52006-03-23 18:07:55 +00002269void DwarfWriter::BeginModule(Module *M) {
2270 this->M = M;
2271
Jim Laskeyb2efb852006-01-04 22:28:25 +00002272 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00002273 EOL("Dwarf Begin Module");
Jim Laskeyb2efb852006-01-04 22:28:25 +00002274}
2275
Jim Laskey063e7652006-01-17 17:31:53 +00002276/// EndModule - Emit all Dwarf sections that should come after the content.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00002277///
Jim Laskeyb8509c52006-03-23 18:07:55 +00002278void DwarfWriter::EndModule() {
Jim Laskeyb2efb852006-01-04 22:28:25 +00002279 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00002280 EOL("Dwarf End Module");
2281
2282 // Standard sections final addresses.
Jim Laskeye719a7c2006-01-18 16:54:26 +00002283 Asm->SwitchSection(TextSection, 0);
Jim Laskey063e7652006-01-17 17:31:53 +00002284 EmitLabel("text_end", 0);
Jim Laskeye719a7c2006-01-18 16:54:26 +00002285 Asm->SwitchSection(DataSection, 0);
Jim Laskey063e7652006-01-17 17:31:53 +00002286 EmitLabel("data_end", 0);
Jim Laskeyd18e2892006-01-20 20:34:06 +00002287
Jim Laskey063e7652006-01-17 17:31:53 +00002288 // Compute DIE offsets and sizes.
2289 SizeAndOffsets();
2290
2291 // Emit all the DIEs into a debug info section
2292 EmitDebugInfo();
2293
2294 // Corresponding abbreviations into a abbrev section.
2295 EmitAbbreviations();
2296
2297 // Emit source line correspondence into a debug line section.
2298 EmitDebugLines();
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002299
2300 // Emit info into a debug frame section.
Jim Laskeyb8509c52006-03-23 18:07:55 +00002301 EmitDebugFrame();
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002302
2303 // Emit info into a debug pubnames section.
2304 EmitDebugPubNames();
2305
Jim Laskey19ef4ef2006-01-17 20:41:40 +00002306 // Emit info into a debug str section.
2307 EmitDebugStr();
2308
2309 // Emit info into a debug loc section.
2310 EmitDebugLoc();
2311
2312 // Emit info into a debug aranges section.
2313 EmitDebugARanges();
2314
2315 // Emit info into a debug ranges section.
2316 EmitDebugRanges();
2317
2318 // Emit info into a debug macinfo section.
2319 EmitDebugMacInfo();
Jim Laskeya7cea6f2006-01-04 13:52:30 +00002320}
2321
Jim Laskeye719a7c2006-01-18 16:54:26 +00002322/// BeginFunction - Gather pre-function debug information.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00002323///
Jim Laskeyb8509c52006-03-23 18:07:55 +00002324void DwarfWriter::BeginFunction(MachineFunction *MF) {
2325 this->MF = MF;
2326
Jim Laskeyb2efb852006-01-04 22:28:25 +00002327 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00002328 EOL("Dwarf Begin Function");
Jim Laskeyb8509c52006-03-23 18:07:55 +00002329
2330 // Define begin label for subprogram.
2331 Asm->SwitchSection(TextSection, 0);
2332 EmitLabel("func_begin", ++SubprogramCount);
Jim Laskeya7cea6f2006-01-04 13:52:30 +00002333}
2334
Jim Laskeyb8509c52006-03-23 18:07:55 +00002335
Jim Laskeye719a7c2006-01-18 16:54:26 +00002336/// EndFunction - Gather and emit post-function debug information.
Jim Laskeya7cea6f2006-01-04 13:52:30 +00002337///
Jim Laskeyb8509c52006-03-23 18:07:55 +00002338void DwarfWriter::EndFunction() {
Jim Laskeyb2efb852006-01-04 22:28:25 +00002339 if (!ShouldEmitDwarf()) return;
Jim Laskey063e7652006-01-17 17:31:53 +00002340 EOL("Dwarf End Function");
Jim Laskeyb8509c52006-03-23 18:07:55 +00002341
2342 // Define end label for subprogram.
2343 Asm->SwitchSection(TextSection, 0);
2344 EmitLabel("func_end", SubprogramCount);
2345
2346 // Construct scopes for subprogram.
2347 ConstructRootScope(DebugInfo->getRootScope());
2348 DebugInfo->ClearScopes();
Jim Laskeya7cea6f2006-01-04 13:52:30 +00002349}