Centralize the handling of unique ids for temporary labels.
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DwarfDebug.h
1 //===-- llvm/CodeGen/DwarfDebug.h - Dwarf Debug Framework ------*- C++ -*--===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains support for writing dwarf debug info into asm files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFDEBUG_H
15 #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFDEBUG_H
16
17 #include "AsmPrinterHandler.h"
18 #include "DbgValueHistoryCalculator.h"
19 #include "DebugLocEntry.h"
20 #include "DebugLocList.h"
21 #include "DwarfAccelTable.h"
22 #include "DwarfFile.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/FoldingSet.h"
25 #include "llvm/ADT/MapVector.h"
26 #include "llvm/ADT/SmallPtrSet.h"
27 #include "llvm/ADT/StringMap.h"
28 #include "llvm/CodeGen/DIE.h"
29 #include "llvm/CodeGen/LexicalScopes.h"
30 #include "llvm/CodeGen/MachineInstr.h"
31 #include "llvm/IR/DebugInfo.h"
32 #include "llvm/IR/DebugLoc.h"
33 #include "llvm/MC/MCDwarf.h"
34 #include "llvm/MC/MachineLocation.h"
35 #include "llvm/Support/Allocator.h"
36 #include <memory>
37
38 namespace llvm {
39
40 class AsmPrinter;
41 class ByteStreamer;
42 class ConstantInt;
43 class ConstantFP;
44 class DwarfCompileUnit;
45 class DwarfDebug;
46 class DwarfTypeUnit;
47 class DwarfUnit;
48 class MachineModuleInfo;
49
50 //===----------------------------------------------------------------------===//
51 /// \brief This class is used to record source line correspondence.
52 class SrcLineInfo {
53   unsigned Line;     // Source line number.
54   unsigned Column;   // Source column.
55   unsigned SourceID; // Source ID number.
56   MCSymbol *Label;   // Label in code ID number.
57 public:
58   SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
59       : Line(L), Column(C), SourceID(S), Label(label) {}
60
61   // Accessors
62   unsigned getLine() const { return Line; }
63   unsigned getColumn() const { return Column; }
64   unsigned getSourceID() const { return SourceID; }
65   MCSymbol *getLabel() const { return Label; }
66 };
67
68 //===----------------------------------------------------------------------===//
69 /// \brief This class is used to track local variable information.
70 ///
71 /// - Variables whose location changes over time have a DotDebugLocOffset and
72 ///   the other fields are not used.
73 ///
74 /// - Variables that are described by multiple MMI table entries have multiple
75 ///   expressions and frame indices.
76 class DbgVariable {
77   DIVariable Var;             /// Variable Descriptor.
78   SmallVector<DIExpression, 1> Expr; /// Complex address location expression.
79   DIE *TheDIE;                /// Variable DIE.
80   unsigned DotDebugLocOffset; /// Offset in DotDebugLocEntries.
81   const MachineInstr *MInsn;  /// DBG_VALUE instruction of the variable.
82   SmallVector<int, 1> FrameIndex; /// Frame index of the variable.
83   DwarfDebug *DD;
84
85 public:
86   /// Construct a DbgVariable from a DIVariable.
87     DbgVariable(DIVariable V, DIExpression E, DwarfDebug *DD, int FI = ~0)
88     : Var(V), Expr(1, E), TheDIE(nullptr), DotDebugLocOffset(~0U),
89       MInsn(nullptr), DD(DD) {
90     FrameIndex.push_back(FI);
91     assert(Var.Verify());
92     assert(!E || E->isValid());
93   }
94
95   /// Construct a DbgVariable from a DEBUG_VALUE.
96   /// AbstractVar may be NULL.
97   DbgVariable(const MachineInstr *DbgValue, DwarfDebug *DD)
98       : Var(DbgValue->getDebugVariable()),
99         Expr(1, DbgValue->getDebugExpression()), TheDIE(nullptr),
100         DotDebugLocOffset(~0U), MInsn(DbgValue), DD(DD) {
101     FrameIndex.push_back(~0);
102   }
103
104   // Accessors.
105   DIVariable getVariable() const { return Var; }
106   const ArrayRef<DIExpression> getExpression() const { return Expr; }
107   void setDIE(DIE &D) { TheDIE = &D; }
108   DIE *getDIE() const { return TheDIE; }
109   void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; }
110   unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; }
111   StringRef getName() const { return Var.getName(); }
112   const MachineInstr *getMInsn() const { return MInsn; }
113   const ArrayRef<int> getFrameIndex() const { return FrameIndex; }
114
115   void addMMIEntry(const DbgVariable &V) {
116     assert(  DotDebugLocOffset == ~0U &&   !MInsn && "not an MMI entry");
117     assert(V.DotDebugLocOffset == ~0U && !V.MInsn && "not an MMI entry");
118     assert(V.Var == Var && "conflicting DIVariable");
119
120     if (V.getFrameIndex().back() != ~0) {
121       auto E = V.getExpression();
122       auto FI = V.getFrameIndex();
123       Expr.append(E.begin(), E.end());
124       FrameIndex.append(FI.begin(), FI.end());
125     }
126     assert(Expr.size() > 1
127            ? std::all_of(Expr.begin(), Expr.end(),
128                          [](DIExpression &E) { return E.isBitPiece(); })
129            : (true && "conflicting locations for variable"));
130   }
131
132   // Translate tag to proper Dwarf tag.
133   dwarf::Tag getTag() const {
134     if (Var.getTag() == dwarf::DW_TAG_arg_variable)
135       return dwarf::DW_TAG_formal_parameter;
136
137     return dwarf::DW_TAG_variable;
138   }
139   /// \brief Return true if DbgVariable is artificial.
140   bool isArtificial() const {
141     if (Var.isArtificial())
142       return true;
143     if (getType().isArtificial())
144       return true;
145     return false;
146   }
147
148   bool isObjectPointer() const {
149     if (Var.isObjectPointer())
150       return true;
151     if (getType().isObjectPointer())
152       return true;
153     return false;
154   }
155
156   bool variableHasComplexAddress() const {
157     assert(Var.isVariable() && "Invalid complex DbgVariable!");
158     assert(Expr.size() == 1 &&
159            "variableHasComplexAddress() invoked on multi-FI variable");
160     return Expr.back().getNumElements() > 0;
161   }
162   bool isBlockByrefVariable() const;
163   DIType getType() const;
164
165 private:
166   /// resolve - Look in the DwarfDebug map for the MDNode that
167   /// corresponds to the reference.
168   template <typename T> T resolve(DIRef<T> Ref) const;
169 };
170
171
172 /// \brief Helper used to pair up a symbol and its DWARF compile unit.
173 struct SymbolCU {
174   SymbolCU(DwarfCompileUnit *CU, const MCSymbol *Sym) : Sym(Sym), CU(CU) {}
175   const MCSymbol *Sym;
176   DwarfCompileUnit *CU;
177 };
178
179 /// \brief Collects and handles dwarf debug information.
180 class DwarfDebug : public AsmPrinterHandler {
181   // Target of Dwarf emission.
182   AsmPrinter *Asm;
183
184   // Collected machine module information.
185   MachineModuleInfo *MMI;
186
187   // All DIEValues are allocated through this allocator.
188   BumpPtrAllocator DIEValueAllocator;
189
190   // Maps MDNode with its corresponding DwarfCompileUnit.
191   MapVector<const MDNode *, DwarfCompileUnit *> CUMap;
192
193   // Maps subprogram MDNode with its corresponding DwarfCompileUnit.
194   MapVector<const MDNode *, DwarfCompileUnit *> SPMap;
195
196   // Maps a CU DIE with its corresponding DwarfCompileUnit.
197   DenseMap<const DIE *, DwarfCompileUnit *> CUDieMap;
198
199   // List of all labels used in aranges generation.
200   std::vector<SymbolCU> ArangeLabels;
201
202   // Size of each symbol emitted (for those symbols that have a specific size).
203   DenseMap<const MCSymbol *, uint64_t> SymSize;
204
205   LexicalScopes LScopes;
206
207   // Collection of abstract variables.
208   DenseMap<const MDNode *, std::unique_ptr<DbgVariable>> AbstractVariables;
209   SmallVector<std::unique_ptr<DbgVariable>, 64> ConcreteVariables;
210
211   // Collection of DebugLocEntry. Stored in a linked list so that DIELocLists
212   // can refer to them in spite of insertions into this list.
213   SmallVector<DebugLocList, 4> DotDebugLocEntries;
214
215   // This is a collection of subprogram MDNodes that are processed to
216   // create DIEs.
217   SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
218
219   // Maps instruction with label emitted before instruction.
220   DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
221
222   // Maps instruction with label emitted after instruction.
223   DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
224
225   // History of DBG_VALUE and clobber instructions for each user variable.
226   // Variables are listed in order of appearance.
227   DbgValueHistoryMap DbgValues;
228
229   // Previous instruction's location information. This is used to determine
230   // label location to indicate scope boundries in dwarf debug info.
231   DebugLoc PrevInstLoc;
232   MCSymbol *PrevLabel;
233
234   // This location indicates end of function prologue and beginning of function
235   // body.
236   DebugLoc PrologEndLoc;
237
238   // If nonnull, stores the current machine function we're processing.
239   const MachineFunction *CurFn;
240
241   // If nonnull, stores the current machine instruction we're processing.
242   const MachineInstr *CurMI;
243
244   // If nonnull, stores the CU in which the previous subprogram was contained.
245   const DwarfCompileUnit *PrevCU;
246
247   // As an optimization, there is no need to emit an entry in the directory
248   // table for the same directory as DW_AT_comp_dir.
249   StringRef CompilationDir;
250
251   // Holder for the file specific debug information.
252   DwarfFile InfoHolder;
253
254   // Holders for the various debug information flags that we might need to
255   // have exposed. See accessor functions below for description.
256
257   // Holder for imported entities.
258   typedef SmallVector<std::pair<const MDNode *, const MDNode *>, 32>
259   ImportedEntityMap;
260   ImportedEntityMap ScopesWithImportedEntities;
261
262   // Map from MDNodes for user-defined types to the type units that describe
263   // them.
264   DenseMap<const MDNode *, const DwarfTypeUnit *> DwarfTypeUnits;
265
266   SmallVector<std::pair<std::unique_ptr<DwarfTypeUnit>, DICompositeType>, 1>
267       TypeUnitsUnderConstruction;
268
269   // Whether to emit the pubnames/pubtypes sections.
270   bool HasDwarfPubSections;
271
272   // Whether or not to use AT_ranges for compilation units.
273   bool HasCURanges;
274
275   // Whether we emitted a function into a section other than the default
276   // text.
277   bool UsedNonDefaultText;
278
279   // Whether to use the GNU TLS opcode (instead of the standard opcode).
280   bool UseGNUTLSOpcode;
281
282   // Version of dwarf we're emitting.
283   unsigned DwarfVersion;
284
285   // Maps from a type identifier to the actual MDNode.
286   DITypeIdentifierMap TypeIdentifierMap;
287
288   // DWARF5 Experimental Options
289   bool HasDwarfAccelTables;
290   bool HasSplitDwarf;
291
292   // Separated Dwarf Variables
293   // In general these will all be for bits that are left in the
294   // original object file, rather than things that are meant
295   // to be in the .dwo sections.
296
297   // Holder for the skeleton information.
298   DwarfFile SkeletonHolder;
299
300   /// Store file names for type units under fission in a line table header that
301   /// will be emitted into debug_line.dwo.
302   // FIXME: replace this with a map from comp_dir to table so that we can emit
303   // multiple tables during LTO each of which uses directory 0, referencing the
304   // comp_dir of all the type units that use it.
305   MCDwarfDwoLineTable SplitTypeUnitFileTable;
306
307   // True iff there are multiple CUs in this module.
308   bool SingleCU;
309   bool IsDarwin;
310   bool IsPS4;
311
312   AddressPool AddrPool;
313
314   DwarfAccelTable AccelNames;
315   DwarfAccelTable AccelObjC;
316   DwarfAccelTable AccelNamespace;
317   DwarfAccelTable AccelTypes;
318
319   DenseMap<const Function *, DISubprogram> FunctionDIs;
320
321   MCDwarfDwoLineTable *getDwoLineTable(const DwarfCompileUnit &);
322
323   const SmallVectorImpl<std::unique_ptr<DwarfUnit>> &getUnits() {
324     return InfoHolder.getUnits();
325   }
326
327   /// \brief Find abstract variable associated with Var.
328   DbgVariable *getExistingAbstractVariable(const DIVariable &DV,
329                                            DIVariable &Cleansed);
330   DbgVariable *getExistingAbstractVariable(const DIVariable &DV);
331   void createAbstractVariable(const DIVariable &DV, LexicalScope *Scope);
332   void ensureAbstractVariableIsCreated(const DIVariable &Var,
333                                        const MDNode *Scope);
334   void ensureAbstractVariableIsCreatedIfScoped(const DIVariable &Var,
335                                                const MDNode *Scope);
336
337   /// \brief Construct a DIE for this abstract scope.
338   void constructAbstractSubprogramScopeDIE(LexicalScope *Scope);
339
340   /// \brief Compute the size and offset of a DIE given an incoming Offset.
341   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
342
343   /// \brief Compute the size and offset of all the DIEs.
344   void computeSizeAndOffsets();
345
346   /// \brief Collect info for variables that were optimized out.
347   void collectDeadVariables();
348
349   void finishVariableDefinitions();
350
351   void finishSubprogramDefinitions();
352
353   /// \brief Finish off debug information after all functions have been
354   /// processed.
355   void finalizeModuleInfo();
356
357   /// \brief Emit the debug info section.
358   void emitDebugInfo();
359
360   /// \brief Emit the abbreviation section.
361   void emitAbbreviations();
362
363   /// \brief Emit a specified accelerator table.
364   void emitAccel(DwarfAccelTable &Accel, const MCSection *Section,
365                  StringRef TableName);
366
367   /// \brief Emit visible names into a hashed accelerator table section.
368   void emitAccelNames();
369
370   /// \brief Emit objective C classes and categories into a hashed
371   /// accelerator table section.
372   void emitAccelObjC();
373
374   /// \brief Emit namespace dies into a hashed accelerator table.
375   void emitAccelNamespaces();
376
377   /// \brief Emit type dies into a hashed accelerator table.
378   void emitAccelTypes();
379
380   /// \brief Emit visible names into a debug pubnames section.
381   /// \param GnuStyle determines whether or not we want to emit
382   /// additional information into the table ala newer gcc for gdb
383   /// index.
384   void emitDebugPubNames(bool GnuStyle = false);
385
386   /// \brief Emit visible types into a debug pubtypes section.
387   /// \param GnuStyle determines whether or not we want to emit
388   /// additional information into the table ala newer gcc for gdb
389   /// index.
390   void emitDebugPubTypes(bool GnuStyle = false);
391
392   void emitDebugPubSection(
393       bool GnuStyle, const MCSection *PSec, StringRef Name,
394       const StringMap<const DIE *> &(DwarfCompileUnit::*Accessor)() const);
395
396   /// \brief Emit visible names into a debug str section.
397   void emitDebugStr();
398
399   /// \brief Emit visible names into a debug loc section.
400   void emitDebugLoc();
401
402   /// \brief Emit visible names into a debug loc dwo section.
403   void emitDebugLocDWO();
404
405   /// \brief Emit visible names into a debug aranges section.
406   void emitDebugARanges();
407
408   /// \brief Emit visible names into a debug ranges section.
409   void emitDebugRanges();
410
411   /// \brief Emit inline info using custom format.
412   void emitDebugInlineInfo();
413
414   /// DWARF 5 Experimental Split Dwarf Emitters
415
416   /// \brief Initialize common features of skeleton units.
417   void initSkeletonUnit(const DwarfUnit &U, DIE &Die,
418                         std::unique_ptr<DwarfUnit> NewU);
419
420   /// \brief Construct the split debug info compile unit for the debug info
421   /// section.
422   DwarfCompileUnit &constructSkeletonCU(const DwarfCompileUnit &CU);
423
424   /// \brief Construct the split debug info compile unit for the debug info
425   /// section.
426   DwarfTypeUnit &constructSkeletonTU(DwarfTypeUnit &TU);
427
428   /// \brief Emit the debug info dwo section.
429   void emitDebugInfoDWO();
430
431   /// \brief Emit the debug abbrev dwo section.
432   void emitDebugAbbrevDWO();
433
434   /// \brief Emit the debug line dwo section.
435   void emitDebugLineDWO();
436
437   /// \brief Emit the debug str dwo section.
438   void emitDebugStrDWO();
439
440   /// Flags to let the linker know we have emitted new style pubnames. Only
441   /// emit it here if we don't have a skeleton CU for split dwarf.
442   void addGnuPubAttributes(DwarfUnit &U, DIE &D) const;
443
444   /// \brief Create new DwarfCompileUnit for the given metadata node with tag
445   /// DW_TAG_compile_unit.
446   DwarfCompileUnit &constructDwarfCompileUnit(DICompileUnit DIUnit);
447
448   /// \brief Construct imported_module or imported_declaration DIE.
449   void constructAndAddImportedEntityDIE(DwarfCompileUnit &TheCU,
450                                         const MDNode *N);
451
452   /// \brief Register a source line with debug info. Returns the unique
453   /// label that was emitted and which provides correspondence to the
454   /// source line list.
455   void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
456                         unsigned Flags);
457
458   /// \brief Indentify instructions that are marking the beginning of or
459   /// ending of a scope.
460   void identifyScopeMarkers();
461
462   /// \brief Populate LexicalScope entries with variables' info.
463   void collectVariableInfo(DwarfCompileUnit &TheCU, DISubprogram SP,
464                            SmallPtrSetImpl<const MDNode *> &ProcessedVars);
465
466   /// \brief Build the location list for all DBG_VALUEs in the
467   /// function that describe the same variable.
468   void buildLocationList(SmallVectorImpl<DebugLocEntry> &DebugLoc,
469                          const DbgValueHistoryMap::InstrRanges &Ranges);
470
471   /// \brief Collect variable information from the side table maintained
472   /// by MMI.
473   void collectVariableInfoFromMMITable(SmallPtrSetImpl<const MDNode *> &P);
474
475   /// \brief Ensure that a label will be emitted before MI.
476   void requestLabelBeforeInsn(const MachineInstr *MI) {
477     LabelsBeforeInsn.insert(std::make_pair(MI, nullptr));
478   }
479
480   /// \brief Ensure that a label will be emitted after MI.
481   void requestLabelAfterInsn(const MachineInstr *MI) {
482     LabelsAfterInsn.insert(std::make_pair(MI, nullptr));
483   }
484
485 public:
486   //===--------------------------------------------------------------------===//
487   // Main entry points.
488   //
489   DwarfDebug(AsmPrinter *A, Module *M);
490
491   ~DwarfDebug() override;
492
493   /// \brief Emit all Dwarf sections that should come prior to the
494   /// content.
495   void beginModule();
496
497   /// \brief Emit all Dwarf sections that should come after the content.
498   void endModule() override;
499
500   /// \brief Gather pre-function debug information.
501   void beginFunction(const MachineFunction *MF) override;
502
503   /// \brief Gather and emit post-function debug information.
504   void endFunction(const MachineFunction *MF) override;
505
506   /// \brief Process beginning of an instruction.
507   void beginInstruction(const MachineInstr *MI) override;
508
509   /// \brief Process end of an instruction.
510   void endInstruction() override;
511
512   /// \brief Add a DIE to the set of types that we're going to pull into
513   /// type units.
514   void addDwarfTypeUnitType(DwarfCompileUnit &CU, StringRef Identifier,
515                             DIE &Die, DICompositeType CTy);
516
517   /// \brief Add a label so that arange data can be generated for it.
518   void addArangeLabel(SymbolCU SCU) { ArangeLabels.push_back(SCU); }
519
520   /// \brief For symbols that have a size designated (e.g. common symbols),
521   /// this tracks that size.
522   void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {
523     SymSize[Sym] = Size;
524   }
525
526   /// \brief Returns whether to use DW_OP_GNU_push_tls_address, instead of the
527   /// standard DW_OP_form_tls_address opcode
528   bool useGNUTLSOpcode() const { return UseGNUTLSOpcode; }
529
530   // Experimental DWARF5 features.
531
532   /// \brief Returns whether or not to emit tables that dwarf consumers can
533   /// use to accelerate lookup.
534   bool useDwarfAccelTables() const { return HasDwarfAccelTables; }
535
536   /// \brief Returns whether or not to change the current debug info for the
537   /// split dwarf proposal support.
538   bool useSplitDwarf() const { return HasSplitDwarf; }
539
540   /// Returns the Dwarf Version.
541   unsigned getDwarfVersion() const { return DwarfVersion; }
542
543   /// Returns the previous CU that was being updated
544   const DwarfCompileUnit *getPrevCU() const { return PrevCU; }
545   void setPrevCU(const DwarfCompileUnit *PrevCU) { this->PrevCU = PrevCU; }
546
547   /// Returns the entries for the .debug_loc section.
548   const SmallVectorImpl<DebugLocList> &
549   getDebugLocEntries() const {
550     return DotDebugLocEntries;
551   }
552
553   /// \brief Emit an entry for the debug loc section. This can be used to
554   /// handle an entry that's going to be emitted into the debug loc section.
555   void emitDebugLocEntry(ByteStreamer &Streamer,
556                          const DebugLocEntry &Entry);
557   /// \brief emit a single value for the debug loc section.
558   void emitDebugLocValue(ByteStreamer &Streamer,
559                          const DebugLocEntry::Value &Value,
560                          unsigned PieceOffsetInBits = 0);
561   /// Emits an optimal (=sorted) sequence of DW_OP_pieces.
562   void emitLocPieces(ByteStreamer &Streamer,
563                      const DITypeIdentifierMap &Map,
564                      ArrayRef<DebugLocEntry::Value> Values);
565
566   /// Emit the location for a debug loc entry, including the size header.
567   void emitDebugLocEntryLocation(const DebugLocEntry &Entry);
568
569   /// Find the MDNode for the given reference.
570   template <typename T> T resolve(DIRef<T> Ref) const {
571     return Ref.resolve(TypeIdentifierMap);
572   }
573
574   /// \brief Return the TypeIdentifierMap.
575   const DITypeIdentifierMap &getTypeIdentifierMap() const {
576     return TypeIdentifierMap;
577   }
578
579   /// Find the DwarfCompileUnit for the given CU Die.
580   DwarfCompileUnit *lookupUnit(const DIE *CU) const {
581     return CUDieMap.lookup(CU);
582   }
583   /// isSubprogramContext - Return true if Context is either a subprogram
584   /// or another context nested inside a subprogram.
585   bool isSubprogramContext(const MDNode *Context);
586
587   void addSubprogramNames(DISubprogram SP, DIE &Die);
588
589   AddressPool &getAddressPool() { return AddrPool; }
590
591   void addAccelName(StringRef Name, const DIE &Die);
592
593   void addAccelObjC(StringRef Name, const DIE &Die);
594
595   void addAccelNamespace(StringRef Name, const DIE &Die);
596
597   void addAccelType(StringRef Name, const DIE &Die, char Flags);
598
599   const MachineFunction *getCurrentFunction() const { return CurFn; }
600
601   iterator_range<ImportedEntityMap::const_iterator>
602   findImportedEntitiesForScope(const MDNode *Scope) const {
603     return make_range(std::equal_range(
604         ScopesWithImportedEntities.begin(), ScopesWithImportedEntities.end(),
605         std::pair<const MDNode *, const MDNode *>(Scope, nullptr),
606         less_first()));
607   }
608
609   /// \brief A helper function to check whether the DIE for a given Scope is
610   /// going to be null.
611   bool isLexicalScopeDIENull(LexicalScope *Scope);
612
613   /// \brief Return Label preceding the instruction.
614   MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
615
616   /// \brief Return Label immediately following the instruction.
617   MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
618
619   // FIXME: Sink these functions down into DwarfFile/Dwarf*Unit.
620
621   SmallPtrSet<const MDNode *, 16> &getProcessedSPNodes() {
622     return ProcessedSPNodes;
623   }
624 };
625 } // End of namespace llvm
626
627 #endif