AsmPrinter: Make DIEString small
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DIE.cpp
1 //===--- 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 "llvm/CodeGen/DIE.h"
15 #include "DwarfCompileUnit.h"
16 #include "DwarfDebug.h"
17 #include "DwarfUnit.h"
18 #include "llvm/ADT/Twine.h"
19 #include "llvm/CodeGen/AsmPrinter.h"
20 #include "llvm/IR/DataLayout.h"
21 #include "llvm/MC/MCAsmInfo.h"
22 #include "llvm/MC/MCContext.h"
23 #include "llvm/MC/MCStreamer.h"
24 #include "llvm/MC/MCSymbol.h"
25 #include "llvm/Support/Debug.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/Format.h"
28 #include "llvm/Support/FormattedStream.h"
29 #include "llvm/Support/LEB128.h"
30 #include "llvm/Support/MD5.h"
31 #include "llvm/Support/raw_ostream.h"
32 using namespace llvm;
33
34 //===----------------------------------------------------------------------===//
35 // DIEAbbrevData Implementation
36 //===----------------------------------------------------------------------===//
37
38 /// Profile - Used to gather unique data for the abbreviation folding set.
39 ///
40 void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
41   // Explicitly cast to an integer type for which FoldingSetNodeID has
42   // overloads.  Otherwise MSVC 2010 thinks this call is ambiguous.
43   ID.AddInteger(unsigned(Attribute));
44   ID.AddInteger(unsigned(Form));
45 }
46
47 //===----------------------------------------------------------------------===//
48 // DIEAbbrev Implementation
49 //===----------------------------------------------------------------------===//
50
51 /// Profile - Used to gather unique data for the abbreviation folding set.
52 ///
53 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
54   ID.AddInteger(unsigned(Tag));
55   ID.AddInteger(unsigned(Children));
56
57   // For each attribute description.
58   for (unsigned i = 0, N = Data.size(); i < N; ++i)
59     Data[i].Profile(ID);
60 }
61
62 /// Emit - Print the abbreviation using the specified asm printer.
63 ///
64 void DIEAbbrev::Emit(const AsmPrinter *AP) const {
65   // Emit its Dwarf tag type.
66   AP->EmitULEB128(Tag, dwarf::TagString(Tag));
67
68   // Emit whether it has children DIEs.
69   AP->EmitULEB128((unsigned)Children, dwarf::ChildrenString(Children));
70
71   // For each attribute description.
72   for (unsigned i = 0, N = Data.size(); i < N; ++i) {
73     const DIEAbbrevData &AttrData = Data[i];
74
75     // Emit attribute type.
76     AP->EmitULEB128(AttrData.getAttribute(),
77                     dwarf::AttributeString(AttrData.getAttribute()));
78
79     // Emit form type.
80     AP->EmitULEB128(AttrData.getForm(),
81                     dwarf::FormEncodingString(AttrData.getForm()));
82   }
83
84   // Mark end of abbreviation.
85   AP->EmitULEB128(0, "EOM(1)");
86   AP->EmitULEB128(0, "EOM(2)");
87 }
88
89 #ifndef NDEBUG
90 void DIEAbbrev::print(raw_ostream &O) {
91   O << "Abbreviation @"
92     << format("0x%lx", (long)(intptr_t)this)
93     << "  "
94     << dwarf::TagString(Tag)
95     << " "
96     << dwarf::ChildrenString(Children)
97     << '\n';
98
99   for (unsigned i = 0, N = Data.size(); i < N; ++i) {
100     O << "  "
101       << dwarf::AttributeString(Data[i].getAttribute())
102       << "  "
103       << dwarf::FormEncodingString(Data[i].getForm())
104       << '\n';
105   }
106 }
107 void DIEAbbrev::dump() { print(dbgs()); }
108 #endif
109
110 /// Climb up the parent chain to get the unit DIE to which this DIE
111 /// belongs.
112 const DIE *DIE::getUnit() const {
113   const DIE *Cu = getUnitOrNull();
114   assert(Cu && "We should not have orphaned DIEs.");
115   return Cu;
116 }
117
118 /// Climb up the parent chain to get the unit DIE this DIE belongs
119 /// to. Return NULL if DIE is not added to an owner yet.
120 const DIE *DIE::getUnitOrNull() const {
121   const DIE *p = this;
122   while (p) {
123     if (p->getTag() == dwarf::DW_TAG_compile_unit ||
124         p->getTag() == dwarf::DW_TAG_type_unit)
125       return p;
126     p = p->getParent();
127   }
128   return nullptr;
129 }
130
131 DIEValue *DIE::findAttribute(dwarf::Attribute Attribute) const {
132   const SmallVectorImpl<DIEValue *> &Values = getValues();
133   const DIEAbbrev &Abbrevs = getAbbrev();
134
135   // Iterate through all the attributes until we find the one we're
136   // looking for, if we can't find it return NULL.
137   for (size_t i = 0; i < Values.size(); ++i)
138     if (Abbrevs.getData()[i].getAttribute() == Attribute)
139       return Values[i];
140   return nullptr;
141 }
142
143 #ifndef NDEBUG
144 void DIE::print(raw_ostream &O, unsigned IndentCount) const {
145   const std::string Indent(IndentCount, ' ');
146   bool isBlock = Abbrev.getTag() == 0;
147
148   if (!isBlock) {
149     O << Indent
150       << "Die: "
151       << format("0x%lx", (long)(intptr_t)this)
152       << ", Offset: " << Offset
153       << ", Size: " << Size << "\n";
154
155     O << Indent
156       << dwarf::TagString(Abbrev.getTag())
157       << " "
158       << dwarf::ChildrenString(Abbrev.hasChildren()) << "\n";
159   } else {
160     O << "Size: " << Size << "\n";
161   }
162
163   const SmallVectorImpl<DIEAbbrevData> &Data = Abbrev.getData();
164
165   IndentCount += 2;
166   for (unsigned i = 0, N = Data.size(); i < N; ++i) {
167     O << Indent;
168
169     if (!isBlock)
170       O << dwarf::AttributeString(Data[i].getAttribute());
171     else
172       O << "Blk[" << i << "]";
173
174     O <<  "  "
175       << dwarf::FormEncodingString(Data[i].getForm())
176       << " ";
177     Values[i]->print(O);
178     O << "\n";
179   }
180   IndentCount -= 2;
181
182   for (unsigned j = 0, M = Children.size(); j < M; ++j) {
183     Children[j]->print(O, IndentCount+4);
184   }
185
186   if (!isBlock) O << "\n";
187 }
188
189 void DIE::dump() {
190   print(dbgs());
191 }
192 #endif
193
194 void DIEValue::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
195   switch (Ty) {
196 #define EMIT_VALUE_IMPL(Kind)                                                  \
197   case is##Kind:                                                               \
198     cast<DIE##Kind>(this)->EmitValueImpl(AP, Form);                            \
199     break;
200     EMIT_VALUE_IMPL(Integer)
201     EMIT_VALUE_IMPL(String)
202     EMIT_VALUE_IMPL(Expr)
203     EMIT_VALUE_IMPL(Label)
204     EMIT_VALUE_IMPL(Delta)
205     EMIT_VALUE_IMPL(Entry)
206     EMIT_VALUE_IMPL(TypeSignature)
207     EMIT_VALUE_IMPL(Block)
208     EMIT_VALUE_IMPL(Loc)
209     EMIT_VALUE_IMPL(LocList)
210 #undef EMIT_VALUE_IMPL
211   }
212 }
213
214 unsigned DIEValue::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
215   switch (Ty) {
216 #define SIZE_OF_IMPL(Kind)                                                     \
217   case is##Kind:                                                               \
218     return cast<DIE##Kind>(this)->SizeOfImpl(AP, Form);
219     SIZE_OF_IMPL(Integer)
220     SIZE_OF_IMPL(String)
221     SIZE_OF_IMPL(Expr)
222     SIZE_OF_IMPL(Label)
223     SIZE_OF_IMPL(Delta)
224     SIZE_OF_IMPL(Entry)
225     SIZE_OF_IMPL(TypeSignature)
226     SIZE_OF_IMPL(Block)
227     SIZE_OF_IMPL(Loc)
228     SIZE_OF_IMPL(LocList)
229 #undef SIZE_OF_IMPL
230   }
231   llvm_unreachable("Unknown DIE kind");
232 }
233
234 #ifndef NDEBUG
235 void DIEValue::print(raw_ostream &O) const {
236   switch (Ty) {
237 #define PRINT_IMPL(Kind)                                                       \
238   case is##Kind:                                                               \
239     cast<DIE##Kind>(this)->printImpl(O);                                       \
240     break;
241     PRINT_IMPL(Integer)
242     PRINT_IMPL(String)
243     PRINT_IMPL(Expr)
244     PRINT_IMPL(Label)
245     PRINT_IMPL(Delta)
246     PRINT_IMPL(Entry)
247     PRINT_IMPL(TypeSignature)
248     PRINT_IMPL(Block)
249     PRINT_IMPL(Loc)
250     PRINT_IMPL(LocList)
251 #undef PRINT_IMPL
252   }
253 }
254
255 void DIEValue::dump() const {
256   print(dbgs());
257 }
258 #endif
259
260 //===----------------------------------------------------------------------===//
261 // DIEInteger Implementation
262 //===----------------------------------------------------------------------===//
263
264 /// EmitValue - Emit integer of appropriate size.
265 ///
266 void DIEInteger::EmitValueImpl(const AsmPrinter *Asm, dwarf::Form Form) const {
267   unsigned Size = ~0U;
268   switch (Form) {
269   case dwarf::DW_FORM_flag_present:
270     // Emit something to keep the lines and comments in sync.
271     // FIXME: Is there a better way to do this?
272     Asm->OutStreamer->AddBlankLine();
273     return;
274   case dwarf::DW_FORM_flag:  // Fall thru
275   case dwarf::DW_FORM_ref1:  // Fall thru
276   case dwarf::DW_FORM_data1: Size = 1; break;
277   case dwarf::DW_FORM_ref2:  // Fall thru
278   case dwarf::DW_FORM_data2: Size = 2; break;
279   case dwarf::DW_FORM_sec_offset: // Fall thru
280   case dwarf::DW_FORM_strp: // Fall thru
281   case dwarf::DW_FORM_ref4:  // Fall thru
282   case dwarf::DW_FORM_data4: Size = 4; break;
283   case dwarf::DW_FORM_ref8:  // Fall thru
284   case dwarf::DW_FORM_ref_sig8:  // Fall thru
285   case dwarf::DW_FORM_data8: Size = 8; break;
286   case dwarf::DW_FORM_GNU_str_index: Asm->EmitULEB128(Integer); return;
287   case dwarf::DW_FORM_GNU_addr_index: Asm->EmitULEB128(Integer); return;
288   case dwarf::DW_FORM_udata: Asm->EmitULEB128(Integer); return;
289   case dwarf::DW_FORM_sdata: Asm->EmitSLEB128(Integer); return;
290   case dwarf::DW_FORM_addr:
291     Size = Asm->getDataLayout().getPointerSize(); break;
292   case dwarf::DW_FORM_ref_addr:
293     Size = SizeOf(Asm, dwarf::DW_FORM_ref_addr);
294     break;
295   default: llvm_unreachable("DIE Value form not supported yet");
296   }
297   Asm->OutStreamer->EmitIntValue(Integer, Size);
298 }
299
300 /// SizeOf - Determine size of integer value in bytes.
301 ///
302 unsigned DIEInteger::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
303   switch (Form) {
304   case dwarf::DW_FORM_flag_present: return 0;
305   case dwarf::DW_FORM_flag:  // Fall thru
306   case dwarf::DW_FORM_ref1:  // Fall thru
307   case dwarf::DW_FORM_data1: return sizeof(int8_t);
308   case dwarf::DW_FORM_ref2:  // Fall thru
309   case dwarf::DW_FORM_data2: return sizeof(int16_t);
310   case dwarf::DW_FORM_sec_offset: // Fall thru
311   case dwarf::DW_FORM_strp: // Fall thru
312   case dwarf::DW_FORM_ref4:  // Fall thru
313   case dwarf::DW_FORM_data4: return sizeof(int32_t);
314   case dwarf::DW_FORM_ref8:  // Fall thru
315   case dwarf::DW_FORM_ref_sig8:  // Fall thru
316   case dwarf::DW_FORM_data8: return sizeof(int64_t);
317   case dwarf::DW_FORM_GNU_str_index: return getULEB128Size(Integer);
318   case dwarf::DW_FORM_GNU_addr_index: return getULEB128Size(Integer);
319   case dwarf::DW_FORM_udata: return getULEB128Size(Integer);
320   case dwarf::DW_FORM_sdata: return getSLEB128Size(Integer);
321   case dwarf::DW_FORM_addr:  return AP->getDataLayout().getPointerSize();
322   case dwarf::DW_FORM_ref_addr:
323     if (AP->OutStreamer->getContext().getDwarfVersion() == 2)
324       return AP->getDataLayout().getPointerSize();
325     return sizeof(int32_t);
326   default: llvm_unreachable("DIE Value form not supported yet");
327   }
328 }
329
330 #ifndef NDEBUG
331 void DIEInteger::printImpl(raw_ostream &O) const {
332   O << "Int: " << (int64_t)Integer << "  0x";
333   O.write_hex(Integer);
334 }
335 #endif
336
337 //===----------------------------------------------------------------------===//
338 // DIEExpr Implementation
339 //===----------------------------------------------------------------------===//
340
341 /// EmitValue - Emit expression value.
342 ///
343 void DIEExpr::EmitValueImpl(const AsmPrinter *AP, dwarf::Form Form) const {
344   AP->OutStreamer->EmitValue(Expr, SizeOf(AP, Form));
345 }
346
347 /// SizeOf - Determine size of expression value in bytes.
348 ///
349 unsigned DIEExpr::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
350   if (Form == dwarf::DW_FORM_data4) return 4;
351   if (Form == dwarf::DW_FORM_sec_offset) return 4;
352   if (Form == dwarf::DW_FORM_strp) return 4;
353   return AP->getDataLayout().getPointerSize();
354 }
355
356 #ifndef NDEBUG
357 void DIEExpr::printImpl(raw_ostream &O) const {
358   O << "Expr: ";
359   Expr->print(O);
360 }
361 #endif
362
363 //===----------------------------------------------------------------------===//
364 // DIELabel Implementation
365 //===----------------------------------------------------------------------===//
366
367 /// EmitValue - Emit label value.
368 ///
369 void DIELabel::EmitValueImpl(const AsmPrinter *AP, dwarf::Form Form) const {
370   AP->EmitLabelReference(Label, SizeOf(AP, Form),
371                          Form == dwarf::DW_FORM_strp ||
372                              Form == dwarf::DW_FORM_sec_offset ||
373                              Form == dwarf::DW_FORM_ref_addr);
374 }
375
376 /// SizeOf - Determine size of label value in bytes.
377 ///
378 unsigned DIELabel::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
379   if (Form == dwarf::DW_FORM_data4) return 4;
380   if (Form == dwarf::DW_FORM_sec_offset) return 4;
381   if (Form == dwarf::DW_FORM_strp) return 4;
382   return AP->getDataLayout().getPointerSize();
383 }
384
385 #ifndef NDEBUG
386 void DIELabel::printImpl(raw_ostream &O) const {
387   O << "Lbl: " << Label->getName();
388 }
389 #endif
390
391 //===----------------------------------------------------------------------===//
392 // DIEDelta Implementation
393 //===----------------------------------------------------------------------===//
394
395 /// EmitValue - Emit delta value.
396 ///
397 void DIEDelta::EmitValueImpl(const AsmPrinter *AP, dwarf::Form Form) const {
398   AP->EmitLabelDifference(LabelHi, LabelLo, SizeOf(AP, Form));
399 }
400
401 /// SizeOf - Determine size of delta value in bytes.
402 ///
403 unsigned DIEDelta::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
404   if (Form == dwarf::DW_FORM_data4) return 4;
405   if (Form == dwarf::DW_FORM_sec_offset) return 4;
406   if (Form == dwarf::DW_FORM_strp) return 4;
407   return AP->getDataLayout().getPointerSize();
408 }
409
410 #ifndef NDEBUG
411 void DIEDelta::printImpl(raw_ostream &O) const {
412   O << "Del: " << LabelHi->getName() << "-" << LabelLo->getName();
413 }
414 #endif
415
416 //===----------------------------------------------------------------------===//
417 // DIEString Implementation
418 //===----------------------------------------------------------------------===//
419
420 /// EmitValue - Emit string value.
421 ///
422 void DIEString::EmitValueImpl(const AsmPrinter *AP, dwarf::Form Form) const {
423   assert(
424       (Form == dwarf::DW_FORM_strp || Form == dwarf::DW_FORM_GNU_str_index) &&
425       "Expected valid string form");
426
427   // Index of string in symbol table.
428   if (Form == dwarf::DW_FORM_GNU_str_index) {
429     DIEInteger(S.getIndex()).EmitValue(AP, Form);
430     return;
431   }
432
433   // Relocatable symbol.
434   assert(Form == dwarf::DW_FORM_strp);
435   if (AP->MAI->doesDwarfUseRelocationsAcrossSections()) {
436     DIELabel(S.getSymbol()).EmitValue(AP, Form);
437     return;
438   }
439
440   // Offset into symbol table.
441   DIEInteger(S.getOffset()).EmitValue(AP, Form);
442 }
443
444 /// SizeOf - Determine size of delta value in bytes.
445 ///
446 unsigned DIEString::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
447   assert(
448       (Form == dwarf::DW_FORM_strp || Form == dwarf::DW_FORM_GNU_str_index) &&
449       "Expected valid string form");
450
451   // Index of string in symbol table.
452   if (Form == dwarf::DW_FORM_GNU_str_index)
453     return DIEInteger(S.getIndex()).SizeOf(AP, Form);
454
455   // Relocatable symbol.
456   if (AP->MAI->doesDwarfUseRelocationsAcrossSections())
457     return DIELabel(S.getSymbol()).SizeOf(AP, Form);
458
459   // Offset into symbol table.
460   return DIEInteger(S.getOffset()).SizeOf(AP, Form);
461 }
462
463 #ifndef NDEBUG
464 void DIEString::printImpl(raw_ostream &O) const {
465   O << "String: " << S.getString();
466 }
467 #endif
468
469 //===----------------------------------------------------------------------===//
470 // DIEEntry Implementation
471 //===----------------------------------------------------------------------===//
472
473 /// EmitValue - Emit debug information entry offset.
474 ///
475 void DIEEntry::EmitValueImpl(const AsmPrinter *AP, dwarf::Form Form) const {
476
477   if (Form == dwarf::DW_FORM_ref_addr) {
478     const DwarfDebug *DD = AP->getDwarfDebug();
479     unsigned Addr = Entry.getOffset();
480     assert(!DD->useSplitDwarf() && "TODO: dwo files can't have relocations.");
481     // For DW_FORM_ref_addr, output the offset from beginning of debug info
482     // section. Entry->getOffset() returns the offset from start of the
483     // compile unit.
484     DwarfCompileUnit *CU = DD->lookupUnit(Entry.getUnit());
485     assert(CU && "CUDie should belong to a CU.");
486     Addr += CU->getDebugInfoOffset();
487     if (AP->MAI->doesDwarfUseRelocationsAcrossSections())
488       AP->EmitLabelPlusOffset(CU->getSectionSym(), Addr,
489                               DIEEntry::getRefAddrSize(AP));
490     else
491       AP->OutStreamer->EmitIntValue(Addr, DIEEntry::getRefAddrSize(AP));
492   } else
493     AP->EmitInt32(Entry.getOffset());
494 }
495
496 unsigned DIEEntry::getRefAddrSize(const AsmPrinter *AP) {
497   // DWARF4: References that use the attribute form DW_FORM_ref_addr are
498   // specified to be four bytes in the DWARF 32-bit format and eight bytes
499   // in the DWARF 64-bit format, while DWARF Version 2 specifies that such
500   // references have the same size as an address on the target system.
501   const DwarfDebug *DD = AP->getDwarfDebug();
502   assert(DD && "Expected Dwarf Debug info to be available");
503   if (DD->getDwarfVersion() == 2)
504     return AP->getDataLayout().getPointerSize();
505   return sizeof(int32_t);
506 }
507
508 #ifndef NDEBUG
509 void DIEEntry::printImpl(raw_ostream &O) const {
510   O << format("Die: 0x%lx", (long)(intptr_t)&Entry);
511 }
512 #endif
513
514 //===----------------------------------------------------------------------===//
515 // DIETypeSignature Implementation
516 //===----------------------------------------------------------------------===//
517 void DIETypeSignature::EmitValueImpl(const AsmPrinter *Asm, dwarf::Form Form) const {
518   assert(Form == dwarf::DW_FORM_ref_sig8);
519   Asm->OutStreamer->EmitIntValue(Unit.getTypeSignature(), 8);
520 }
521
522 #ifndef NDEBUG
523 void DIETypeSignature::printImpl(raw_ostream &O) const {
524   O << format("Type Unit: 0x%lx", Unit.getTypeSignature());
525 }
526 #endif
527
528 //===----------------------------------------------------------------------===//
529 // DIELoc Implementation
530 //===----------------------------------------------------------------------===//
531
532 /// ComputeSize - calculate the size of the location expression.
533 ///
534 unsigned DIELoc::ComputeSize(const AsmPrinter *AP) const {
535   if (!Size) {
536     const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
537     for (unsigned i = 0, N = Values.size(); i < N; ++i)
538       Size += Values[i]->SizeOf(AP, AbbrevData[i].getForm());
539   }
540
541   return Size;
542 }
543
544 /// EmitValue - Emit location data.
545 ///
546 void DIELoc::EmitValueImpl(const AsmPrinter *Asm, dwarf::Form Form) const {
547   switch (Form) {
548   default: llvm_unreachable("Improper form for block");
549   case dwarf::DW_FORM_block1: Asm->EmitInt8(Size);    break;
550   case dwarf::DW_FORM_block2: Asm->EmitInt16(Size);   break;
551   case dwarf::DW_FORM_block4: Asm->EmitInt32(Size);   break;
552   case dwarf::DW_FORM_block:
553   case dwarf::DW_FORM_exprloc:
554     Asm->EmitULEB128(Size); break;
555   }
556
557   const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
558   for (unsigned i = 0, N = Values.size(); i < N; ++i)
559     Values[i]->EmitValue(Asm, AbbrevData[i].getForm());
560 }
561
562 /// SizeOf - Determine size of location data in bytes.
563 ///
564 unsigned DIELoc::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
565   switch (Form) {
566   case dwarf::DW_FORM_block1: return Size + sizeof(int8_t);
567   case dwarf::DW_FORM_block2: return Size + sizeof(int16_t);
568   case dwarf::DW_FORM_block4: return Size + sizeof(int32_t);
569   case dwarf::DW_FORM_block:
570   case dwarf::DW_FORM_exprloc:
571     return Size + getULEB128Size(Size);
572   default: llvm_unreachable("Improper form for block");
573   }
574 }
575
576 #ifndef NDEBUG
577 void DIELoc::printImpl(raw_ostream &O) const {
578   O << "ExprLoc: ";
579   DIE::print(O, 5);
580 }
581 #endif
582
583 //===----------------------------------------------------------------------===//
584 // DIEBlock Implementation
585 //===----------------------------------------------------------------------===//
586
587 /// ComputeSize - calculate the size of the block.
588 ///
589 unsigned DIEBlock::ComputeSize(const AsmPrinter *AP) const {
590   if (!Size) {
591     const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
592     for (unsigned i = 0, N = Values.size(); i < N; ++i)
593       Size += Values[i]->SizeOf(AP, AbbrevData[i].getForm());
594   }
595
596   return Size;
597 }
598
599 /// EmitValue - Emit block data.
600 ///
601 void DIEBlock::EmitValueImpl(const AsmPrinter *Asm, dwarf::Form Form) const {
602   switch (Form) {
603   default: llvm_unreachable("Improper form for block");
604   case dwarf::DW_FORM_block1: Asm->EmitInt8(Size);    break;
605   case dwarf::DW_FORM_block2: Asm->EmitInt16(Size);   break;
606   case dwarf::DW_FORM_block4: Asm->EmitInt32(Size);   break;
607   case dwarf::DW_FORM_block:  Asm->EmitULEB128(Size); break;
608   }
609
610   const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
611   for (unsigned i = 0, N = Values.size(); i < N; ++i)
612     Values[i]->EmitValue(Asm, AbbrevData[i].getForm());
613 }
614
615 /// SizeOf - Determine size of block data in bytes.
616 ///
617 unsigned DIEBlock::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
618   switch (Form) {
619   case dwarf::DW_FORM_block1: return Size + sizeof(int8_t);
620   case dwarf::DW_FORM_block2: return Size + sizeof(int16_t);
621   case dwarf::DW_FORM_block4: return Size + sizeof(int32_t);
622   case dwarf::DW_FORM_block:  return Size + getULEB128Size(Size);
623   default: llvm_unreachable("Improper form for block");
624   }
625 }
626
627 #ifndef NDEBUG
628 void DIEBlock::printImpl(raw_ostream &O) const {
629   O << "Blk: ";
630   DIE::print(O, 5);
631 }
632 #endif
633
634 //===----------------------------------------------------------------------===//
635 // DIELocList Implementation
636 //===----------------------------------------------------------------------===//
637
638 unsigned DIELocList::SizeOfImpl(const AsmPrinter *AP, dwarf::Form Form) const {
639   if (Form == dwarf::DW_FORM_data4)
640     return 4;
641   if (Form == dwarf::DW_FORM_sec_offset)
642     return 4;
643   return AP->getDataLayout().getPointerSize();
644 }
645
646 /// EmitValue - Emit label value.
647 ///
648 void DIELocList::EmitValueImpl(const AsmPrinter *AP, dwarf::Form Form) const {
649   DwarfDebug *DD = AP->getDwarfDebug();
650   MCSymbol *Label = DD->getDebugLocs().getList(Index).Label;
651
652   if (AP->MAI->doesDwarfUseRelocationsAcrossSections() && !DD->useSplitDwarf())
653     AP->emitSectionOffset(Label);
654   else
655     AP->EmitLabelDifference(Label, Label->getSection().getBeginSymbol(), 4);
656 }
657
658 #ifndef NDEBUG
659 void DIELocList::printImpl(raw_ostream &O) const {
660   O << "LocList: " << Index;
661
662 }
663 #endif