blob: dc149cf8bc5260c6f3efa51802c558a2e64bd85d [file] [log] [blame]
Bill Wendling88423ee2009-05-15 00:11:17 +00001//===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Data structures for DWARF info entries.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DIE.h"
15#include "DwarfPrinter.h"
16#include "llvm/CodeGen/AsmPrinter.h"
17#include "llvm/Target/TargetAsmInfo.h"
18#include "llvm/Target/TargetData.h"
19#include <ostream>
20using namespace llvm;
21
22//===----------------------------------------------------------------------===//
23// DIEAbbrevData Implementation
24//===----------------------------------------------------------------------===//
25
26/// Profile - Used to gather unique data for the abbreviation folding set.
27///
28void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
29 ID.AddInteger(Attribute);
30 ID.AddInteger(Form);
31}
32
33//===----------------------------------------------------------------------===//
34// DIEAbbrev Implementation
35//===----------------------------------------------------------------------===//
36
37/// Profile - Used to gather unique data for the abbreviation folding set.
38///
39void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
40 ID.AddInteger(Tag);
41 ID.AddInteger(ChildrenFlag);
42
43 // For each attribute description.
44 for (unsigned i = 0, N = Data.size(); i < N; ++i)
45 Data[i].Profile(ID);
46}
47
48/// Emit - Print the abbreviation using the specified asm printer.
49///
50void DIEAbbrev::Emit(const AsmPrinter *Asm) const {
51 // Emit its Dwarf tag type.
52 Asm->EmitULEB128Bytes(Tag);
53 Asm->EOL(dwarf::TagString(Tag));
54
55 // Emit whether it has children DIEs.
56 Asm->EmitULEB128Bytes(ChildrenFlag);
57 Asm->EOL(dwarf::ChildrenString(ChildrenFlag));
58
59 // For each attribute description.
60 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
61 const DIEAbbrevData &AttrData = Data[i];
62
63 // Emit attribute type.
64 Asm->EmitULEB128Bytes(AttrData.getAttribute());
65 Asm->EOL(dwarf::AttributeString(AttrData.getAttribute()));
66
67 // Emit form type.
68 Asm->EmitULEB128Bytes(AttrData.getForm());
69 Asm->EOL(dwarf::FormEncodingString(AttrData.getForm()));
70 }
71
72 // Mark end of abbreviation.
73 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(1)");
74 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(2)");
75}
76
77#ifndef NDEBUG
78void DIEAbbrev::print(std::ostream &O) {
79 O << "Abbreviation @"
80 << std::hex << (intptr_t)this << std::dec
81 << " "
82 << dwarf::TagString(Tag)
83 << " "
84 << dwarf::ChildrenString(ChildrenFlag)
85 << "\n";
86
87 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
88 O << " "
89 << dwarf::AttributeString(Data[i].getAttribute())
90 << " "
91 << dwarf::FormEncodingString(Data[i].getForm())
92 << "\n";
93 }
94}
95void DIEAbbrev::dump() { print(cerr); }
96#endif
97
98//===----------------------------------------------------------------------===//
99// DIE Implementation
100//===----------------------------------------------------------------------===//
101
102DIE::~DIE() {
103 for (unsigned i = 0, N = Children.size(); i < N; ++i)
104 delete Children[i];
105}
106
107/// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
108///
109void DIE::AddSiblingOffset() {
110 DIEInteger *DI = new DIEInteger(0);
111 Values.insert(Values.begin(), DI);
112 Abbrev.AddFirstAttribute(dwarf::DW_AT_sibling, dwarf::DW_FORM_ref4);
113}
114
115/// Profile - Used to gather unique data for the value folding set.
116///
117void DIE::Profile(FoldingSetNodeID &ID) {
118 Abbrev.Profile(ID);
119
120 for (unsigned i = 0, N = Children.size(); i < N; ++i)
121 ID.AddPointer(Children[i]);
122
123 for (unsigned j = 0, M = Values.size(); j < M; ++j)
124 ID.AddPointer(Values[j]);
125}
126
127#ifndef NDEBUG
128void DIE::print(std::ostream &O, unsigned IncIndent) {
129 static unsigned IndentCount = 0;
130 IndentCount += IncIndent;
131 const std::string Indent(IndentCount, ' ');
132 bool isBlock = Abbrev.getTag() == 0;
133
134 if (!isBlock) {
135 O << Indent
136 << "Die: "
137 << "0x" << std::hex << (intptr_t)this << std::dec
138 << ", Offset: " << Offset
139 << ", Size: " << Size
140 << "\n";
141
142 O << Indent
143 << dwarf::TagString(Abbrev.getTag())
144 << " "
145 << dwarf::ChildrenString(Abbrev.getChildrenFlag());
146 } else {
147 O << "Size: " << Size;
148 }
149 O << "\n";
150
151 const SmallVector<DIEAbbrevData, 8> &Data = Abbrev.getData();
152
153 IndentCount += 2;
154 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
155 O << Indent;
156
157 if (!isBlock)
158 O << dwarf::AttributeString(Data[i].getAttribute());
159 else
160 O << "Blk[" << i << "]";
161
162 O << " "
163 << dwarf::FormEncodingString(Data[i].getForm())
164 << " ";
165 Values[i]->print(O);
166 O << "\n";
167 }
168 IndentCount -= 2;
169
170 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
171 Children[j]->print(O, 4);
172 }
173
174 if (!isBlock) O << "\n";
175 IndentCount -= IncIndent;
176}
177
178void DIE::dump() {
179 print(cerr);
180}
181#endif
182
183
184#ifndef NDEBUG
185void DIEValue::dump() {
186 print(cerr);
187}
188#endif
189
190//===----------------------------------------------------------------------===//
191// DIEInteger Implementation
192//===----------------------------------------------------------------------===//
193
194/// EmitValue - Emit integer of appropriate size.
195///
196void DIEInteger::EmitValue(Dwarf *D, unsigned Form) const {
197 const AsmPrinter *Asm = D->getAsm();
198 switch (Form) {
199 case dwarf::DW_FORM_flag: // Fall thru
200 case dwarf::DW_FORM_ref1: // Fall thru
201 case dwarf::DW_FORM_data1: Asm->EmitInt8(Integer); break;
202 case dwarf::DW_FORM_ref2: // Fall thru
203 case dwarf::DW_FORM_data2: Asm->EmitInt16(Integer); break;
204 case dwarf::DW_FORM_ref4: // Fall thru
205 case dwarf::DW_FORM_data4: Asm->EmitInt32(Integer); break;
206 case dwarf::DW_FORM_ref8: // Fall thru
207 case dwarf::DW_FORM_data8: Asm->EmitInt64(Integer); break;
208 case dwarf::DW_FORM_udata: Asm->EmitULEB128Bytes(Integer); break;
209 case dwarf::DW_FORM_sdata: Asm->EmitSLEB128Bytes(Integer); break;
210 default: assert(0 && "DIE Value form not supported yet"); break;
211 }
212}
213
214/// SizeOf - Determine size of integer value in bytes.
215///
216unsigned DIEInteger::SizeOf(const TargetData *TD, unsigned Form) const {
217 switch (Form) {
218 case dwarf::DW_FORM_flag: // Fall thru
219 case dwarf::DW_FORM_ref1: // Fall thru
220 case dwarf::DW_FORM_data1: return sizeof(int8_t);
221 case dwarf::DW_FORM_ref2: // Fall thru
222 case dwarf::DW_FORM_data2: return sizeof(int16_t);
223 case dwarf::DW_FORM_ref4: // Fall thru
224 case dwarf::DW_FORM_data4: return sizeof(int32_t);
225 case dwarf::DW_FORM_ref8: // Fall thru
226 case dwarf::DW_FORM_data8: return sizeof(int64_t);
227 case dwarf::DW_FORM_udata: return TargetAsmInfo::getULEB128Size(Integer);
228 case dwarf::DW_FORM_sdata: return TargetAsmInfo::getSLEB128Size(Integer);
229 default: assert(0 && "DIE Value form not supported yet"); break;
230 }
231 return 0;
232}
233
234/// Profile - Used to gather unique data for the value folding set.
235///
236void DIEInteger::Profile(FoldingSetNodeID &ID, unsigned Int) {
237 ID.AddInteger(isInteger);
238 ID.AddInteger(Int);
239}
240void DIEInteger::Profile(FoldingSetNodeID &ID) {
241 Profile(ID, Integer);
242}
243
244#ifndef NDEBUG
245void DIEInteger::print(std::ostream &O) {
246 O << "Int: " << (int64_t)Integer
247 << " 0x" << std::hex << Integer << std::dec;
248}
249#endif
250
251//===----------------------------------------------------------------------===//
252// DIEString Implementation
253//===----------------------------------------------------------------------===//
254
255/// EmitValue - Emit string value.
256///
257void DIEString::EmitValue(Dwarf *D, unsigned Form) const {
258 D->getAsm()->EmitString(Str);
259}
260
261/// Profile - Used to gather unique data for the value folding set.
262///
263void DIEString::Profile(FoldingSetNodeID &ID, const std::string &Str) {
264 ID.AddInteger(isString);
265 ID.AddString(Str);
266}
267void DIEString::Profile(FoldingSetNodeID &ID) {
268 Profile(ID, Str);
269}
270
271#ifndef NDEBUG
272void DIEString::print(std::ostream &O) {
273 O << "Str: \"" << Str << "\"";
274}
275#endif
276
277//===----------------------------------------------------------------------===//
278// DIEDwarfLabel Implementation
279//===----------------------------------------------------------------------===//
280
281/// EmitValue - Emit label value.
282///
283void DIEDwarfLabel::EmitValue(Dwarf *D, unsigned Form) const {
284 bool IsSmall = Form == dwarf::DW_FORM_data4;
285 D->EmitReference(Label, false, IsSmall);
286}
287
288/// SizeOf - Determine size of label value in bytes.
289///
290unsigned DIEDwarfLabel::SizeOf(const TargetData *TD, unsigned Form) const {
291 if (Form == dwarf::DW_FORM_data4) return 4;
292 return TD->getPointerSize();
293}
294
295/// Profile - Used to gather unique data for the value folding set.
296///
297void DIEDwarfLabel::Profile(FoldingSetNodeID &ID, const DWLabel &Label) {
298 ID.AddInteger(isLabel);
299 Label.Profile(ID);
300}
301void DIEDwarfLabel::Profile(FoldingSetNodeID &ID) {
302 Profile(ID, Label);
303}
304
305#ifndef NDEBUG
306void DIEDwarfLabel::print(std::ostream &O) {
307 O << "Lbl: ";
308 Label.print(O);
309}
310#endif
311
312//===----------------------------------------------------------------------===//
313// DIEObjectLabel Implementation
314//===----------------------------------------------------------------------===//
315
316/// EmitValue - Emit label value.
317///
318void DIEObjectLabel::EmitValue(Dwarf *D, unsigned Form) const {
319 bool IsSmall = Form == dwarf::DW_FORM_data4;
320 D->EmitReference(Label, false, IsSmall);
321}
322
323/// SizeOf - Determine size of label value in bytes.
324///
325unsigned DIEObjectLabel::SizeOf(const TargetData *TD, unsigned Form) const {
326 if (Form == dwarf::DW_FORM_data4) return 4;
327 return TD->getPointerSize();
328}
329
330/// Profile - Used to gather unique data for the value folding set.
331///
332void DIEObjectLabel::Profile(FoldingSetNodeID &ID, const std::string &Label) {
333 ID.AddInteger(isAsIsLabel);
334 ID.AddString(Label);
335}
336void DIEObjectLabel::Profile(FoldingSetNodeID &ID) {
337 Profile(ID, Label.c_str());
338}
339
340#ifndef NDEBUG
341void DIEObjectLabel::print(std::ostream &O) {
342 O << "Obj: " << Label;
343}
344#endif
345
346//===----------------------------------------------------------------------===//
347// DIESectionOffset Implementation
348//===----------------------------------------------------------------------===//
349
350/// EmitValue - Emit delta value.
351///
352void DIESectionOffset::EmitValue(Dwarf *D, unsigned Form) const {
353 bool IsSmall = Form == dwarf::DW_FORM_data4;
354 D->EmitSectionOffset(Label.getTag(), Section.getTag(),
355 Label.getNumber(), Section.getNumber(),
356 IsSmall, IsEH, UseSet);
357}
358
359/// SizeOf - Determine size of delta value in bytes.
360///
361unsigned DIESectionOffset::SizeOf(const TargetData *TD, unsigned Form) const {
362 if (Form == dwarf::DW_FORM_data4) return 4;
363 return TD->getPointerSize();
364}
365
366/// Profile - Used to gather unique data for the value folding set.
367///
368void DIESectionOffset::Profile(FoldingSetNodeID &ID, const DWLabel &Label,
369 const DWLabel &Section) {
370 ID.AddInteger(isSectionOffset);
371 Label.Profile(ID);
372 Section.Profile(ID);
373 // IsEH and UseSet are specific to the Label/Section that we will emit the
374 // offset for; so Label/Section are enough for uniqueness.
375}
376void DIESectionOffset::Profile(FoldingSetNodeID &ID) {
377 Profile(ID, Label, Section);
378}
379
380#ifndef NDEBUG
381void DIESectionOffset::print(std::ostream &O) {
382 O << "Off: ";
383 Label.print(O);
384 O << "-";
385 Section.print(O);
386 O << "-" << IsEH << "-" << UseSet;
387}
388#endif
389
390//===----------------------------------------------------------------------===//
391// DIEDelta Implementation
392//===----------------------------------------------------------------------===//
393
394/// EmitValue - Emit delta value.
395///
396void DIEDelta::EmitValue(Dwarf *D, unsigned Form) const {
397 bool IsSmall = Form == dwarf::DW_FORM_data4;
398 D->EmitDifference(LabelHi, LabelLo, IsSmall);
399}
400
401/// SizeOf - Determine size of delta value in bytes.
402///
403unsigned DIEDelta::SizeOf(const TargetData *TD, unsigned Form) const {
404 if (Form == dwarf::DW_FORM_data4) return 4;
405 return TD->getPointerSize();
406}
407
408/// Profile - Used to gather unique data for the value folding set.
409///
410void DIEDelta::Profile(FoldingSetNodeID &ID, const DWLabel &LabelHi,
411 const DWLabel &LabelLo) {
412 ID.AddInteger(isDelta);
413 LabelHi.Profile(ID);
414 LabelLo.Profile(ID);
415}
416void DIEDelta::Profile(FoldingSetNodeID &ID) {
417 Profile(ID, LabelHi, LabelLo);
418}
419
420#ifndef NDEBUG
421void DIEDelta::print(std::ostream &O) {
422 O << "Del: ";
423 LabelHi.print(O);
424 O << "-";
425 LabelLo.print(O);
426}
427#endif
428
429//===----------------------------------------------------------------------===//
430// DIEEntry Implementation
431//===----------------------------------------------------------------------===//
432
433/// EmitValue - Emit debug information entry offset.
434///
435void DIEEntry::EmitValue(Dwarf *D, unsigned Form) const {
436 D->getAsm()->EmitInt32(Entry->getOffset());
437}
438
439/// Profile - Used to gather unique data for the value folding set.
440///
441void DIEEntry::Profile(FoldingSetNodeID &ID, DIE *Entry) {
442 ID.AddInteger(isEntry);
443 ID.AddPointer(Entry);
444}
445void DIEEntry::Profile(FoldingSetNodeID &ID) {
446 ID.AddInteger(isEntry);
447
448 if (Entry)
449 ID.AddPointer(Entry);
450 else
451 ID.AddPointer(this);
452}
453
454#ifndef NDEBUG
455void DIEEntry::print(std::ostream &O) {
456 O << "Die: 0x" << std::hex << (intptr_t)Entry << std::dec;
457}
458#endif
459
460//===----------------------------------------------------------------------===//
461// DIEBlock Implementation
462//===----------------------------------------------------------------------===//
463
464/// ComputeSize - calculate the size of the block.
465///
466unsigned DIEBlock::ComputeSize(const TargetData *TD) {
467 if (!Size) {
468 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
469 for (unsigned i = 0, N = Values.size(); i < N; ++i)
470 Size += Values[i]->SizeOf(TD, AbbrevData[i].getForm());
471 }
472
473 return Size;
474}
475
476/// EmitValue - Emit block data.
477///
478void DIEBlock::EmitValue(Dwarf *D, unsigned Form) const {
479 const AsmPrinter *Asm = D->getAsm();
480 switch (Form) {
481 case dwarf::DW_FORM_block1: Asm->EmitInt8(Size); break;
482 case dwarf::DW_FORM_block2: Asm->EmitInt16(Size); break;
483 case dwarf::DW_FORM_block4: Asm->EmitInt32(Size); break;
484 case dwarf::DW_FORM_block: Asm->EmitULEB128Bytes(Size); break;
485 default: assert(0 && "Improper form for block"); break;
486 }
487
488 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
489 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
490 Asm->EOL();
491 Values[i]->EmitValue(D, AbbrevData[i].getForm());
492 }
493}
494
495/// SizeOf - Determine size of block data in bytes.
496///
497unsigned DIEBlock::SizeOf(const TargetData *TD, unsigned Form) const {
498 switch (Form) {
499 case dwarf::DW_FORM_block1: return Size + sizeof(int8_t);
500 case dwarf::DW_FORM_block2: return Size + sizeof(int16_t);
501 case dwarf::DW_FORM_block4: return Size + sizeof(int32_t);
502 case dwarf::DW_FORM_block: return Size + TargetAsmInfo::getULEB128Size(Size);
503 default: assert(0 && "Improper form for block"); break;
504 }
505 return 0;
506}
507
508void DIEBlock::Profile(FoldingSetNodeID &ID) {
509 ID.AddInteger(isBlock);
510 DIE::Profile(ID);
511}
512
513#ifndef NDEBUG
514void DIEBlock::print(std::ostream &O) {
515 O << "Blk: ";
516 DIE::print(O, 5);
517}
518#endif