46dbc7693698d39e1277886ffcb08dc2be88d345
[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 DIEAbbrev DIE::generateAbbrev() const {
111   DIEAbbrev Abbrev(Tag, hasChildren());
112   for (const DIEValue &V : Values)
113     Abbrev.AddAttribute(V.getAttribute(), V.getForm());
114   return Abbrev;
115 }
116
117 /// Climb up the parent chain to get the unit DIE to which this DIE
118 /// belongs.
119 const DIE *DIE::getUnit() const {
120   const DIE *Cu = getUnitOrNull();
121   assert(Cu && "We should not have orphaned DIEs.");
122   return Cu;
123 }
124
125 /// Climb up the parent chain to get the unit DIE this DIE belongs
126 /// to. Return NULL if DIE is not added to an owner yet.
127 const DIE *DIE::getUnitOrNull() const {
128   const DIE *p = this;
129   while (p) {
130     if (p->getTag() == dwarf::DW_TAG_compile_unit ||
131         p->getTag() == dwarf::DW_TAG_type_unit)
132       return p;
133     p = p->getParent();
134   }
135   return nullptr;
136 }
137
138 DIEValue DIE::findAttribute(dwarf::Attribute Attribute) const {
139   // Iterate through all the attributes until we find the one we're
140   // looking for, if we can't find it return NULL.
141   for (const auto &V : values())
142     if (V.getAttribute() == Attribute)
143       return V;
144   return DIEValue();
145 }
146
147 #ifndef NDEBUG
148 void DIE::print(raw_ostream &O, unsigned IndentCount) const {
149   const std::string Indent(IndentCount, ' ');
150   bool isBlock = getTag() == 0;
151
152   if (!isBlock) {
153     O << Indent
154       << "Die: "
155       << format("0x%lx", (long)(intptr_t)this)
156       << ", Offset: " << Offset
157       << ", Size: " << Size << "\n";
158
159     O << Indent
160       << dwarf::TagString(getTag())
161       << " "
162       << dwarf::ChildrenString(hasChildren()) << "\n";
163   } else {
164     O << "Size: " << Size << "\n";
165   }
166
167   IndentCount += 2;
168   unsigned I = 0;
169   for (const auto &V : Values) {
170     O << Indent;
171
172     if (!isBlock)
173       O << dwarf::AttributeString(V.getAttribute());
174     else
175       O << "Blk[" << I++ << "]";
176
177     O << "  " << dwarf::FormEncodingString(V.getForm()) << " ";
178     V.print(O);
179     O << "\n";
180   }
181   IndentCount -= 2;
182
183   for (const auto &Child : children())
184     Child.print(O, IndentCount + 4);
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) const {
195   switch (Ty) {
196   case isNone:
197     llvm_unreachable("Expected valid DIEValue");
198 #define HANDLE_DIEVALUE(T)                                                     \
199   case is##T:                                                                  \
200     getDIE##T().EmitValue(AP, Form);                                           \
201     break;
202 #include "llvm/CodeGen/DIEValue.def"
203   }
204 }
205
206 unsigned DIEValue::SizeOf(const AsmPrinter *AP) const {
207   switch (Ty) {
208   case isNone:
209     llvm_unreachable("Expected valid DIEValue");
210 #define HANDLE_DIEVALUE(T)                                                     \
211   case is##T:                                                                  \
212     return getDIE##T().SizeOf(AP, Form);
213 #include "llvm/CodeGen/DIEValue.def"
214   }
215   llvm_unreachable("Unknown DIE kind");
216 }
217
218 #ifndef NDEBUG
219 void DIEValue::print(raw_ostream &O) const {
220   switch (Ty) {
221   case isNone:
222     llvm_unreachable("Expected valid DIEValue");
223 #define HANDLE_DIEVALUE(T)                                                     \
224   case is##T:                                                                  \
225     getDIE##T().print(O);                                                      \
226     break;
227 #include "llvm/CodeGen/DIEValue.def"
228   }
229 }
230
231 void DIEValue::dump() const {
232   print(dbgs());
233 }
234 #endif
235
236 //===----------------------------------------------------------------------===//
237 // DIEInteger Implementation
238 //===----------------------------------------------------------------------===//
239
240 /// EmitValue - Emit integer of appropriate size.
241 ///
242 void DIEInteger::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const {
243   unsigned Size = ~0U;
244   switch (Form) {
245   case dwarf::DW_FORM_flag_present:
246     // Emit something to keep the lines and comments in sync.
247     // FIXME: Is there a better way to do this?
248     Asm->OutStreamer->AddBlankLine();
249     return;
250   case dwarf::DW_FORM_flag:  // Fall thru
251   case dwarf::DW_FORM_ref1:  // Fall thru
252   case dwarf::DW_FORM_data1: Size = 1; break;
253   case dwarf::DW_FORM_ref2:  // Fall thru
254   case dwarf::DW_FORM_data2: Size = 2; break;
255   case dwarf::DW_FORM_sec_offset: // Fall thru
256   case dwarf::DW_FORM_strp: // Fall thru
257   case dwarf::DW_FORM_ref4:  // Fall thru
258   case dwarf::DW_FORM_data4: Size = 4; break;
259   case dwarf::DW_FORM_ref8:  // Fall thru
260   case dwarf::DW_FORM_ref_sig8:  // Fall thru
261   case dwarf::DW_FORM_data8: Size = 8; break;
262   case dwarf::DW_FORM_GNU_str_index: Asm->EmitULEB128(Integer); return;
263   case dwarf::DW_FORM_GNU_addr_index: Asm->EmitULEB128(Integer); return;
264   case dwarf::DW_FORM_udata: Asm->EmitULEB128(Integer); return;
265   case dwarf::DW_FORM_sdata: Asm->EmitSLEB128(Integer); return;
266   case dwarf::DW_FORM_addr:
267     Size = Asm->getDataLayout().getPointerSize(); break;
268   case dwarf::DW_FORM_ref_addr:
269     Size = SizeOf(Asm, dwarf::DW_FORM_ref_addr);
270     break;
271   default: llvm_unreachable("DIE Value form not supported yet");
272   }
273   Asm->OutStreamer->EmitIntValue(Integer, Size);
274 }
275
276 /// SizeOf - Determine size of integer value in bytes.
277 ///
278 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
279   switch (Form) {
280   case dwarf::DW_FORM_flag_present: return 0;
281   case dwarf::DW_FORM_flag:  // Fall thru
282   case dwarf::DW_FORM_ref1:  // Fall thru
283   case dwarf::DW_FORM_data1: return sizeof(int8_t);
284   case dwarf::DW_FORM_ref2:  // Fall thru
285   case dwarf::DW_FORM_data2: return sizeof(int16_t);
286   case dwarf::DW_FORM_sec_offset: // Fall thru
287   case dwarf::DW_FORM_strp: // Fall thru
288   case dwarf::DW_FORM_ref4:  // Fall thru
289   case dwarf::DW_FORM_data4: return sizeof(int32_t);
290   case dwarf::DW_FORM_ref8:  // Fall thru
291   case dwarf::DW_FORM_ref_sig8:  // Fall thru
292   case dwarf::DW_FORM_data8: return sizeof(int64_t);
293   case dwarf::DW_FORM_GNU_str_index: return getULEB128Size(Integer);
294   case dwarf::DW_FORM_GNU_addr_index: return getULEB128Size(Integer);
295   case dwarf::DW_FORM_udata: return getULEB128Size(Integer);
296   case dwarf::DW_FORM_sdata: return getSLEB128Size(Integer);
297   case dwarf::DW_FORM_addr:  return AP->getDataLayout().getPointerSize();
298   case dwarf::DW_FORM_ref_addr:
299     if (AP->OutStreamer->getContext().getDwarfVersion() == 2)
300       return AP->getDataLayout().getPointerSize();
301     return sizeof(int32_t);
302   default: llvm_unreachable("DIE Value form not supported yet");
303   }
304 }
305
306 #ifndef NDEBUG
307 void DIEInteger::print(raw_ostream &O) const {
308   O << "Int: " << (int64_t)Integer << "  0x";
309   O.write_hex(Integer);
310 }
311 #endif
312
313 //===----------------------------------------------------------------------===//
314 // DIEExpr Implementation
315 //===----------------------------------------------------------------------===//
316
317 /// EmitValue - Emit expression value.
318 ///
319 void DIEExpr::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
320   AP->OutStreamer->EmitValue(Expr, SizeOf(AP, Form));
321 }
322
323 /// SizeOf - Determine size of expression value in bytes.
324 ///
325 unsigned DIEExpr::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
326   if (Form == dwarf::DW_FORM_data4) return 4;
327   if (Form == dwarf::DW_FORM_sec_offset) return 4;
328   if (Form == dwarf::DW_FORM_strp) return 4;
329   return AP->getDataLayout().getPointerSize();
330 }
331
332 #ifndef NDEBUG
333 void DIEExpr::print(raw_ostream &O) const { O << "Expr: " << *Expr; }
334 #endif
335
336 //===----------------------------------------------------------------------===//
337 // DIELabel Implementation
338 //===----------------------------------------------------------------------===//
339
340 /// EmitValue - Emit label value.
341 ///
342 void DIELabel::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
343   AP->EmitLabelReference(Label, SizeOf(AP, Form),
344                          Form == dwarf::DW_FORM_strp ||
345                              Form == dwarf::DW_FORM_sec_offset ||
346                              Form == dwarf::DW_FORM_ref_addr);
347 }
348
349 /// SizeOf - Determine size of label value in bytes.
350 ///
351 unsigned DIELabel::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
352   if (Form == dwarf::DW_FORM_data4) return 4;
353   if (Form == dwarf::DW_FORM_sec_offset) return 4;
354   if (Form == dwarf::DW_FORM_strp) return 4;
355   return AP->getDataLayout().getPointerSize();
356 }
357
358 #ifndef NDEBUG
359 void DIELabel::print(raw_ostream &O) const { O << "Lbl: " << Label->getName(); }
360 #endif
361
362 //===----------------------------------------------------------------------===//
363 // DIEDelta Implementation
364 //===----------------------------------------------------------------------===//
365
366 /// EmitValue - Emit delta value.
367 ///
368 void DIEDelta::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
369   AP->EmitLabelDifference(LabelHi, LabelLo, SizeOf(AP, Form));
370 }
371
372 /// SizeOf - Determine size of delta value in bytes.
373 ///
374 unsigned DIEDelta::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
375   if (Form == dwarf::DW_FORM_data4) return 4;
376   if (Form == dwarf::DW_FORM_sec_offset) return 4;
377   if (Form == dwarf::DW_FORM_strp) return 4;
378   return AP->getDataLayout().getPointerSize();
379 }
380
381 #ifndef NDEBUG
382 void DIEDelta::print(raw_ostream &O) const {
383   O << "Del: " << LabelHi->getName() << "-" << LabelLo->getName();
384 }
385 #endif
386
387 //===----------------------------------------------------------------------===//
388 // DIEString Implementation
389 //===----------------------------------------------------------------------===//
390
391 /// EmitValue - Emit string value.
392 ///
393 void DIEString::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
394   assert(
395       (Form == dwarf::DW_FORM_strp || Form == dwarf::DW_FORM_GNU_str_index) &&
396       "Expected valid string form");
397
398   // Index of string in symbol table.
399   if (Form == dwarf::DW_FORM_GNU_str_index) {
400     DIEInteger(S.getIndex()).EmitValue(AP, Form);
401     return;
402   }
403
404   // Relocatable symbol.
405   assert(Form == dwarf::DW_FORM_strp);
406   if (AP->MAI->doesDwarfUseRelocationsAcrossSections()) {
407     DIELabel(S.getSymbol()).EmitValue(AP, Form);
408     return;
409   }
410
411   // Offset into symbol table.
412   DIEInteger(S.getOffset()).EmitValue(AP, Form);
413 }
414
415 /// SizeOf - Determine size of delta value in bytes.
416 ///
417 unsigned DIEString::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
418   assert(
419       (Form == dwarf::DW_FORM_strp || Form == dwarf::DW_FORM_GNU_str_index) &&
420       "Expected valid string form");
421
422   // Index of string in symbol table.
423   if (Form == dwarf::DW_FORM_GNU_str_index)
424     return DIEInteger(S.getIndex()).SizeOf(AP, Form);
425
426   // Relocatable symbol.
427   if (AP->MAI->doesDwarfUseRelocationsAcrossSections())
428     return DIELabel(S.getSymbol()).SizeOf(AP, Form);
429
430   // Offset into symbol table.
431   return DIEInteger(S.getOffset()).SizeOf(AP, Form);
432 }
433
434 #ifndef NDEBUG
435 void DIEString::print(raw_ostream &O) const {
436   O << "String: " << S.getString();
437 }
438 #endif
439
440 //===----------------------------------------------------------------------===//
441 // DIEEntry Implementation
442 //===----------------------------------------------------------------------===//
443
444 /// EmitValue - Emit debug information entry offset.
445 ///
446 void DIEEntry::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
447
448   if (Form == dwarf::DW_FORM_ref_addr) {
449     const DwarfDebug *DD = AP->getDwarfDebug();
450     unsigned Addr = Entry->getOffset();
451     assert(!DD->useSplitDwarf() && "TODO: dwo files can't have relocations.");
452     // For DW_FORM_ref_addr, output the offset from beginning of debug info
453     // section. Entry->getOffset() returns the offset from start of the
454     // compile unit.
455     DwarfCompileUnit *CU = DD->lookupUnit(Entry->getUnit());
456     assert(CU && "CUDie should belong to a CU.");
457     Addr += CU->getDebugInfoOffset();
458     if (AP->MAI->doesDwarfUseRelocationsAcrossSections())
459       AP->EmitLabelPlusOffset(CU->getSectionSym(), Addr,
460                               DIEEntry::getRefAddrSize(AP));
461     else
462       AP->OutStreamer->EmitIntValue(Addr, DIEEntry::getRefAddrSize(AP));
463   } else
464     AP->EmitInt32(Entry->getOffset());
465 }
466
467 unsigned DIEEntry::getRefAddrSize(const AsmPrinter *AP) {
468   // DWARF4: References that use the attribute form DW_FORM_ref_addr are
469   // specified to be four bytes in the DWARF 32-bit format and eight bytes
470   // in the DWARF 64-bit format, while DWARF Version 2 specifies that such
471   // references have the same size as an address on the target system.
472   const DwarfDebug *DD = AP->getDwarfDebug();
473   assert(DD && "Expected Dwarf Debug info to be available");
474   if (DD->getDwarfVersion() == 2)
475     return AP->getDataLayout().getPointerSize();
476   return sizeof(int32_t);
477 }
478
479 #ifndef NDEBUG
480 void DIEEntry::print(raw_ostream &O) const {
481   O << format("Die: 0x%lx", (long)(intptr_t)&Entry);
482 }
483 #endif
484
485 //===----------------------------------------------------------------------===//
486 // DIETypeSignature Implementation
487 //===----------------------------------------------------------------------===//
488 void DIETypeSignature::EmitValue(const AsmPrinter *Asm,
489                                  dwarf::Form Form) const {
490   assert(Form == dwarf::DW_FORM_ref_sig8);
491   Asm->OutStreamer->EmitIntValue(Unit->getTypeSignature(), 8);
492 }
493
494 #ifndef NDEBUG
495 void DIETypeSignature::print(raw_ostream &O) const {
496   O << format("Type Unit: 0x%lx", Unit->getTypeSignature());
497 }
498 #endif
499
500 //===----------------------------------------------------------------------===//
501 // DIELoc Implementation
502 //===----------------------------------------------------------------------===//
503
504 /// ComputeSize - calculate the size of the location expression.
505 ///
506 unsigned DIELoc::ComputeSize(const AsmPrinter *AP) const {
507   if (!Size) {
508     for (const auto &V : Values)
509       Size += V.SizeOf(AP);
510   }
511
512   return Size;
513 }
514
515 /// EmitValue - Emit location data.
516 ///
517 void DIELoc::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const {
518   switch (Form) {
519   default: llvm_unreachable("Improper form for block");
520   case dwarf::DW_FORM_block1: Asm->EmitInt8(Size);    break;
521   case dwarf::DW_FORM_block2: Asm->EmitInt16(Size);   break;
522   case dwarf::DW_FORM_block4: Asm->EmitInt32(Size);   break;
523   case dwarf::DW_FORM_block:
524   case dwarf::DW_FORM_exprloc:
525     Asm->EmitULEB128(Size); break;
526   }
527
528   for (const auto &V : Values)
529     V.EmitValue(Asm);
530 }
531
532 /// SizeOf - Determine size of location data in bytes.
533 ///
534 unsigned DIELoc::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
535   switch (Form) {
536   case dwarf::DW_FORM_block1: return Size + sizeof(int8_t);
537   case dwarf::DW_FORM_block2: return Size + sizeof(int16_t);
538   case dwarf::DW_FORM_block4: return Size + sizeof(int32_t);
539   case dwarf::DW_FORM_block:
540   case dwarf::DW_FORM_exprloc:
541     return Size + getULEB128Size(Size);
542   default: llvm_unreachable("Improper form for block");
543   }
544 }
545
546 #ifndef NDEBUG
547 void DIELoc::print(raw_ostream &O) const {
548   O << "ExprLoc: ";
549   DIE::print(O, 5);
550 }
551 #endif
552
553 //===----------------------------------------------------------------------===//
554 // DIEBlock Implementation
555 //===----------------------------------------------------------------------===//
556
557 /// ComputeSize - calculate the size of the block.
558 ///
559 unsigned DIEBlock::ComputeSize(const AsmPrinter *AP) const {
560   if (!Size) {
561     for (const auto &V : Values)
562       Size += V.SizeOf(AP);
563   }
564
565   return Size;
566 }
567
568 /// EmitValue - Emit block data.
569 ///
570 void DIEBlock::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const {
571   switch (Form) {
572   default: llvm_unreachable("Improper form for block");
573   case dwarf::DW_FORM_block1: Asm->EmitInt8(Size);    break;
574   case dwarf::DW_FORM_block2: Asm->EmitInt16(Size);   break;
575   case dwarf::DW_FORM_block4: Asm->EmitInt32(Size);   break;
576   case dwarf::DW_FORM_block:  Asm->EmitULEB128(Size); break;
577   }
578
579   for (const auto &V : Values)
580     V.EmitValue(Asm);
581 }
582
583 /// SizeOf - Determine size of block data in bytes.
584 ///
585 unsigned DIEBlock::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
586   switch (Form) {
587   case dwarf::DW_FORM_block1: return Size + sizeof(int8_t);
588   case dwarf::DW_FORM_block2: return Size + sizeof(int16_t);
589   case dwarf::DW_FORM_block4: return Size + sizeof(int32_t);
590   case dwarf::DW_FORM_block:  return Size + getULEB128Size(Size);
591   default: llvm_unreachable("Improper form for block");
592   }
593 }
594
595 #ifndef NDEBUG
596 void DIEBlock::print(raw_ostream &O) const {
597   O << "Blk: ";
598   DIE::print(O, 5);
599 }
600 #endif
601
602 //===----------------------------------------------------------------------===//
603 // DIELocList Implementation
604 //===----------------------------------------------------------------------===//
605
606 unsigned DIELocList::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
607   if (Form == dwarf::DW_FORM_data4)
608     return 4;
609   if (Form == dwarf::DW_FORM_sec_offset)
610     return 4;
611   return AP->getDataLayout().getPointerSize();
612 }
613
614 /// EmitValue - Emit label value.
615 ///
616 void DIELocList::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
617   DwarfDebug *DD = AP->getDwarfDebug();
618   MCSymbol *Label = DD->getDebugLocs().getList(Index).Label;
619   AP->emitDwarfSymbolReference(Label, /*ForceOffset*/ DD->useSplitDwarf());
620 }
621
622 #ifndef NDEBUG
623 void DIELocList::print(raw_ostream &O) const { O << "LocList: " << Index; }
624 #endif