Merge .debug_loc entries whenever possible to reduce debug_loc size.
[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 CODEGEN_ASMPRINTER_DWARFDEBUG_H__
15 #define CODEGEN_ASMPRINTER_DWARFDEBUG_H__
16
17 #include "llvm/CodeGen/AsmPrinter.h"
18 #include "llvm/CodeGen/MachineLocation.h"
19 #include "DIE.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/FoldingSet.h"
22 #include "llvm/ADT/SmallPtrSet.h"
23 #include "llvm/ADT/StringMap.h"
24 #include "llvm/ADT/UniqueVector.h"
25 #include "llvm/Support/Allocator.h"
26 #include "llvm/Support/DebugLoc.h"
27
28 namespace llvm {
29
30 class CompileUnit;
31 class DbgConcreteScope;
32 class DbgScope;
33 class DbgVariable;
34 class MachineFrameInfo;
35 class MachineModuleInfo;
36 class MachineOperand;
37 class MCAsmInfo;
38 class DIEAbbrev;
39 class DIE;
40 class DIEBlock;
41 class DIEEntry;
42
43 class DIEnumerator;
44 class DIDescriptor;
45 class DIVariable;
46 class DIGlobal;
47 class DIGlobalVariable;
48 class DISubprogram;
49 class DIBasicType;
50 class DIDerivedType;
51 class DIType;
52 class DINameSpace;
53 class DISubrange;
54 class DICompositeType;
55 class DITemplateTypeParameter;
56 class DITemplateValueParameter;
57
58 //===----------------------------------------------------------------------===//
59 /// SrcLineInfo - This class is used to record source line correspondence.
60 ///
61 class SrcLineInfo {
62   unsigned Line;                     // Source line number.
63   unsigned Column;                   // Source column.
64   unsigned SourceID;                 // Source ID number.
65   MCSymbol *Label;                   // Label in code ID number.
66 public:
67   SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
68     : Line(L), Column(C), SourceID(S), Label(label) {}
69
70   // Accessors
71   unsigned getLine() const { return Line; }
72   unsigned getColumn() const { return Column; }
73   unsigned getSourceID() const { return SourceID; }
74   MCSymbol *getLabel() const { return Label; }
75 };
76
77 /// DotDebugLocEntry - This struct describes location entries emitted in
78 /// .debug_loc section.
79 typedef struct DotDebugLocEntry {
80   const MCSymbol *Begin;
81   const MCSymbol *End;
82   MachineLocation Loc;
83   bool Merged;
84   DotDebugLocEntry() : Begin(0), End(0), Merged(false) {}
85   DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L) 
86     : Begin(B), End(E), Loc(L), Merged(false) {}
87   /// Empty entries are also used as a trigger to emit temp label. Such
88   /// labels are referenced is used to find debug_loc offset for a given DIE.
89   bool isEmpty() { return Begin == 0 && End == 0; }
90   bool isMerged() { return Merged; }
91   void Merge(DotDebugLocEntry *Next) {
92     if (!(Begin && Loc == Next->Loc && End == Next->Begin))
93       return;
94     Next->Begin = Begin;
95     Merged = true;
96   }
97 } DotDebugLocEntry;
98
99 class DwarfDebug {
100   /// Asm - Target of Dwarf emission.
101   AsmPrinter *Asm;
102
103   /// MMI - Collected machine module information.
104   MachineModuleInfo *MMI;
105
106   //===--------------------------------------------------------------------===//
107   // Attributes used to construct specific Dwarf sections.
108   //
109
110   CompileUnit *FirstCU;
111   DenseMap <const MDNode *, CompileUnit *> CUMap;
112
113   /// AbbreviationsSet - Used to uniquely define abbreviations.
114   ///
115   FoldingSet<DIEAbbrev> AbbreviationsSet;
116
117   /// Abbreviations - A list of all the unique abbreviations in use.
118   ///
119   std::vector<DIEAbbrev *> Abbreviations;
120
121   /// SourceIdMap - Source id map, i.e. pair of directory id and source file
122   /// id mapped to a unique id.
123   StringMap<unsigned> SourceIdMap;
124
125   /// DIEBlocks - A list of all the DIEBlocks in use.
126   std::vector<DIEBlock *> DIEBlocks;
127
128   // DIEValueAllocator - All DIEValues are allocated through this allocator.
129   BumpPtrAllocator DIEValueAllocator;
130
131   /// StringPool - A String->Symbol mapping of strings used by indirect
132   /// references.
133   StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
134   unsigned NextStringPoolNumber;
135   
136   MCSymbol *getStringPoolEntry(StringRef Str);
137
138   /// SectionMap - Provides a unique id per text section.
139   ///
140   UniqueVector<const MCSection*> SectionMap;
141
142   // CurrentFnDbgScope - Top level scope for the current function.
143   //
144   DbgScope *CurrentFnDbgScope;
145   
146   /// DbgScopeMap - Tracks the scopes in the current function.  Owns the
147   /// contained DbgScope*s.
148   ///
149   DenseMap<const MDNode *, DbgScope *> DbgScopeMap;
150
151   /// ConcreteScopes - Tracks the concrete scopees in the current function.
152   /// These scopes are also included in DbgScopeMap.
153   DenseMap<const MDNode *, DbgScope *> ConcreteScopes;
154
155   /// AbstractScopes - Tracks the abstract scopes a module. These scopes are
156   /// not included DbgScopeMap.  AbstractScopes owns its DbgScope*s.
157   DenseMap<const MDNode *, DbgScope *> AbstractScopes;
158
159   /// AbstractSPDies - Collection of abstract subprogram DIEs.
160   DenseMap<const MDNode *, DIE *> AbstractSPDies;
161
162   /// AbstractScopesList - Tracks abstract scopes constructed while processing
163   /// a function. This list is cleared during endFunction().
164   SmallVector<DbgScope *, 4>AbstractScopesList;
165
166   /// AbstractVariables - Collection on abstract variables.  Owned by the
167   /// DbgScopes in AbstractScopes.
168   DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
169
170   /// DbgVariableToFrameIndexMap - Tracks frame index used to find 
171   /// variable's value.
172   DenseMap<const DbgVariable *, int> DbgVariableToFrameIndexMap;
173
174   /// DbgVariableToDbgInstMap - Maps DbgVariable to corresponding DBG_VALUE
175   /// machine instruction.
176   DenseMap<const DbgVariable *, const MachineInstr *> DbgVariableToDbgInstMap;
177
178   /// DotDebugLocEntries - Collection of DotDebugLocEntry.
179   SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
180
181   /// UseDotDebugLocEntry - DW_AT_location attributes for the DIEs in this set
182   /// idetifies corresponding .debug_loc entry offset.
183   SmallPtrSet<const DIE *, 4> UseDotDebugLocEntry;
184
185   /// VarToAbstractVarMap - Maps DbgVariable with corresponding Abstract
186   /// DbgVariable, if any.
187   DenseMap<const DbgVariable *, const DbgVariable *> VarToAbstractVarMap;
188
189   /// InliendSubprogramDIEs - Collection of subprgram DIEs that are marked
190   /// (at the end of the module) as DW_AT_inline.
191   SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
192
193   /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
194   /// need DW_AT_containing_type attribute. This attribute points to a DIE that
195   /// corresponds to the MDNode mapped with the subprogram DIE.
196   DenseMap<DIE *, const MDNode *> ContainingTypeMap;
197
198   typedef SmallVector<DbgScope *, 2> ScopeVector;
199
200   SmallPtrSet<const MachineInstr *, 8> InsnsEndScopeSet;
201
202   /// InlineInfo - Keep track of inlined functions and their location.  This
203   /// information is used to populate debug_inlined section.
204   typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
205   DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
206   SmallVector<const MDNode *, 4> InlinedSPNodes;
207
208   // ProcessedSPNodes - This is a collection of subprogram MDNodes that
209   // are processed to create DIEs.
210   SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
211
212   /// LabelsBeforeInsn - Maps instruction with label emitted before 
213   /// instruction.
214   DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
215
216   /// LabelsAfterInsn - Maps instruction with label emitted after
217   /// instruction.
218   DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
219
220   /// insnNeedsLabel - Collection of instructions that need a label to mark
221   /// a debuggging information entity.
222   SmallPtrSet<const MachineInstr *, 8> InsnNeedsLabel;
223
224   SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
225
226   /// Previous instruction's location information. This is used to determine
227   /// label location to indicate scope boundries in dwarf debug info.
228   DebugLoc PrevInstLoc;
229   MCSymbol *PrevLabel;
230
231   struct FunctionDebugFrameInfo {
232     unsigned Number;
233     std::vector<MachineMove> Moves;
234
235     FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
236       : Number(Num), Moves(M) {}
237   };
238
239   std::vector<FunctionDebugFrameInfo> DebugFrames;
240
241   // Section Symbols: these are assembler temporary labels that are emitted at
242   // the beginning of each supported dwarf section.  These are used to form
243   // section offsets and are created by EmitSectionLabels.
244   MCSymbol *DwarfFrameSectionSym, *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
245   MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
246   MCSymbol *DwarfDebugLocSectionSym;
247   MCSymbol *FunctionBeginSym, *FunctionEndSym;
248
249   DIEInteger *DIEIntegerOne;
250 private:
251
252   /// getNumSourceIds - Return the number of unique source ids.
253   unsigned getNumSourceIds() const {
254     return SourceIdMap.size();
255   }
256
257   /// assignAbbrevNumber - Define a unique number for the abbreviation.
258   ///
259   void assignAbbrevNumber(DIEAbbrev &Abbrev);
260
261   /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
262   /// information entry.
263   DIEEntry *createDIEEntry(DIE *Entry);
264
265   /// addUInt - Add an unsigned integer attribute data and value.
266   ///
267   void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
268
269   /// addSInt - Add an signed integer attribute data and value.
270   ///
271   void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
272
273   /// addString - Add a string attribute data and value.
274   ///
275   void addString(DIE *Die, unsigned Attribute, unsigned Form,
276                  const StringRef Str);
277
278   /// addLabel - Add a Dwarf label attribute data and value.
279   ///
280   void addLabel(DIE *Die, unsigned Attribute, unsigned Form,
281                 const MCSymbol *Label);
282
283   /// addDelta - Add a label delta attribute data and value.
284   ///
285   void addDelta(DIE *Die, unsigned Attribute, unsigned Form,
286                 const MCSymbol *Hi, const MCSymbol *Lo);
287
288   /// addDIEEntry - Add a DIE attribute data and value.
289   ///
290   void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry);
291   
292   /// addBlock - Add block data.
293   ///
294   void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
295
296   /// addSourceLine - Add location information to specified debug information
297   /// entry.
298   void addSourceLine(DIE *Die, DIVariable V);
299   void addSourceLine(DIE *Die, DIGlobalVariable G);
300   void addSourceLine(DIE *Die, DISubprogram SP);
301   void addSourceLine(DIE *Die, DIType Ty);
302   void addSourceLine(DIE *Die, DINameSpace NS);
303
304   /// addAddress - Add an address attribute to a die based on the location
305   /// provided.
306   void addAddress(DIE *Die, unsigned Attribute,
307                   const MachineLocation &Location);
308
309   /// addRegisterAddress - Add register location entry in variable DIE.
310   bool addRegisterAddress(DIE *Die, const MachineOperand &MO);
311
312   /// addConstantValue - Add constant value entry in variable DIE.
313   bool addConstantValue(DIE *Die, const MachineOperand &MO);
314   bool addConstantValue(DIE *Die, ConstantInt *CI, bool Unsigned);
315
316   /// addConstantFPValue - Add constant value entry in variable DIE.
317   bool addConstantFPValue(DIE *Die, const MachineOperand &MO);
318
319   /// addComplexAddress - Start with the address based on the location provided,
320   /// and generate the DWARF information necessary to find the actual variable
321   /// (navigating the extra location information encoded in the type) based on
322   /// the starting location.  Add the DWARF information to the die.
323   ///
324   void addComplexAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
325                          const MachineLocation &Location);
326
327   // FIXME: Should be reformulated in terms of addComplexAddress.
328   /// addBlockByrefAddress - Start with the address based on the location
329   /// provided, and generate the DWARF information necessary to find the
330   /// actual Block variable (navigating the Block struct) based on the
331   /// starting location.  Add the DWARF information to the die.  Obsolete,
332   /// please use addComplexAddress instead.
333   ///
334   void addBlockByrefAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
335                             const MachineLocation &Location);
336
337   /// addVariableAddress - Add DW_AT_location attribute for a DbgVariable based
338   /// on provided frame index.
339   void addVariableAddress(DbgVariable *&DV, DIE *Die, int64_t FI);
340
341   /// addToContextOwner - Add Die into the list of its context owner's children.
342   void addToContextOwner(DIE *Die, DIDescriptor Context);
343
344   /// addType - Add a new type attribute to the specified entity.
345   void addType(DIE *Entity, DIType Ty);
346
347  
348   /// getOrCreateNameSpace - Create a DIE for DINameSpace.
349   DIE *getOrCreateNameSpace(DINameSpace NS);
350
351   /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
352   /// given DIType.
353   DIE *getOrCreateTypeDIE(DIType Ty);
354
355   /// getOrCreateTemplateTypeParameterDIE - Find existing DIE or create new DIE 
356   /// for the given DITemplateTypeParameter.
357   DIE *getOrCreateTemplateTypeParameterDIE(DITemplateTypeParameter TP);
358
359   /// getOrCreateTemplateValueParameterDIE - Find existing DIE or create new DIE 
360   /// for the given DITemplateValueParameter.
361   DIE *getOrCreateTemplateValueParameterDIE(DITemplateValueParameter TVP);
362
363   void addPubTypes(DISubprogram SP);
364
365   /// constructTypeDIE - Construct basic type die from DIBasicType.
366   void constructTypeDIE(DIE &Buffer,
367                         DIBasicType BTy);
368
369   /// constructTypeDIE - Construct derived type die from DIDerivedType.
370   void constructTypeDIE(DIE &Buffer,
371                         DIDerivedType DTy);
372
373   /// constructTypeDIE - Construct type DIE from DICompositeType.
374   void constructTypeDIE(DIE &Buffer,
375                         DICompositeType CTy);
376
377   /// constructSubrangeDIE - Construct subrange DIE from DISubrange.
378   void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
379
380   /// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
381   void constructArrayTypeDIE(DIE &Buffer, 
382                              DICompositeType *CTy);
383
384   /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
385   DIE *constructEnumTypeDIE(DIEnumerator ETy);
386
387   /// createMemberDIE - Create new member DIE.
388   DIE *createMemberDIE(DIDerivedType DT);
389
390   /// createSubprogramDIE - Create new DIE using SP.
391   DIE *createSubprogramDIE(DISubprogram SP);
392
393   /// getOrCreateDbgScope - Create DbgScope for the scope.
394   DbgScope *getOrCreateDbgScope(const MDNode *Scope, const MDNode *InlinedAt);
395
396   DbgScope *getOrCreateAbstractScope(const MDNode *N);
397
398   /// findAbstractVariable - Find abstract variable associated with Var.
399   DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
400
401   /// updateSubprogramScopeDIE - Find DIE for the given subprogram and 
402   /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
403   /// If there are global variables in this scope then create and insert
404   /// DIEs for these variables.
405   DIE *updateSubprogramScopeDIE(const MDNode *SPNode);
406
407   /// constructLexicalScope - Construct new DW_TAG_lexical_block 
408   /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
409   DIE *constructLexicalScopeDIE(DbgScope *Scope);
410
411   /// constructInlinedScopeDIE - This scope represents inlined body of
412   /// a function. Construct DIE to represent this concrete inlined copy
413   /// of the function.
414   DIE *constructInlinedScopeDIE(DbgScope *Scope);
415
416   /// constructVariableDIE - Construct a DIE for the given DbgVariable.
417   DIE *constructVariableDIE(DbgVariable *DV, DbgScope *S);
418
419   /// constructScopeDIE - Construct a DIE for this scope.
420   DIE *constructScopeDIE(DbgScope *Scope);
421
422   /// EmitSectionLabels - Emit initial Dwarf sections with a label at
423   /// the start of each one.
424   void EmitSectionLabels();
425
426   /// emitDIE - Recusively Emits a debug information entry.
427   ///
428   void emitDIE(DIE *Die);
429
430   /// computeSizeAndOffset - Compute the size and offset of a DIE.
431   ///
432   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
433
434   /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
435   ///
436   void computeSizeAndOffsets();
437
438   /// EmitDebugInfo - Emit the debug info section.
439   ///
440   void emitDebugInfo();
441
442   /// emitAbbreviations - Emit the abbreviation section.
443   ///
444   void emitAbbreviations() const;
445
446   /// emitEndOfLineMatrix - Emit the last address of the section and the end of
447   /// the line matrix.
448   ///
449   void emitEndOfLineMatrix(unsigned SectionEnd);
450
451   /// emitCommonDebugFrame - Emit common frame info into a debug frame section.
452   ///
453   void emitCommonDebugFrame();
454
455   /// emitFunctionDebugFrame - Emit per function frame info into a debug frame
456   /// section.
457   void emitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo);
458
459   /// emitDebugPubNames - Emit visible names into a debug pubnames section.
460   ///
461   void emitDebugPubNames();
462
463   /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
464   ///
465   void emitDebugPubTypes();
466
467   /// emitDebugStr - Emit visible names into a debug str section.
468   ///
469   void emitDebugStr();
470
471   /// emitDebugLoc - Emit visible names into a debug loc section.
472   ///
473   void emitDebugLoc();
474
475   /// EmitDebugARanges - Emit visible names into a debug aranges section.
476   ///
477   void EmitDebugARanges();
478
479   /// emitDebugRanges - Emit visible names into a debug ranges section.
480   ///
481   void emitDebugRanges();
482
483   /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
484   ///
485   void emitDebugMacInfo();
486
487   /// emitDebugInlineInfo - Emit inline info using following format.
488   /// Section Header:
489   /// 1. length of section
490   /// 2. Dwarf version number
491   /// 3. address size.
492   ///
493   /// Entries (one "entry" for each function that was inlined):
494   ///
495   /// 1. offset into __debug_str section for MIPS linkage name, if exists; 
496   ///   otherwise offset into __debug_str for regular function name.
497   /// 2. offset into __debug_str section for regular function name.
498   /// 3. an unsigned LEB128 number indicating the number of distinct inlining 
499   /// instances for the function.
500   /// 
501   /// The rest of the entry consists of a {die_offset, low_pc}  pair for each 
502   /// inlined instance; the die_offset points to the inlined_subroutine die in
503   /// the __debug_info section, and the low_pc is the starting address  for the
504   ///  inlining instance.
505   void emitDebugInlineInfo();
506
507   /// GetOrCreateSourceID - Look up the source id with the given directory and
508   /// source file names. If none currently exists, create a new id and insert it
509   /// in the SourceIds map.
510   unsigned GetOrCreateSourceID(StringRef FullName);
511
512   /// constructCompileUnit - Create new CompileUnit for the given 
513   /// metadata node with tag DW_TAG_compile_unit.
514   void constructCompileUnit(const MDNode *N);
515
516   /// getCompielUnit - Get CompileUnit DIE.
517   CompileUnit *getCompileUnit(const MDNode *N) const;
518
519   /// constructGlobalVariableDIE - Construct global variable DIE.
520   void constructGlobalVariableDIE(const MDNode *N);
521
522   /// construct SubprogramDIE - Construct subprogram DIE.
523   void constructSubprogramDIE(const MDNode *N);
524
525   /// recordSourceLine - Register a source line with debug info. Returns the
526   /// unique label that was emitted and which provides correspondence to
527   /// the source line list.
528   MCSymbol *recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope);
529   
530   /// recordVariableFrameIndex - Record a variable's index.
531   void recordVariableFrameIndex(const DbgVariable *V, int Index);
532
533   /// findVariableFrameIndex - Return true if frame index for the variable
534   /// is found. Update FI to hold value of the index.
535   bool findVariableFrameIndex(const DbgVariable *V, int *FI);
536
537   /// findDbgScope - Find DbgScope for the debug loc attached with an 
538   /// instruction.
539   DbgScope *findDbgScope(const MachineInstr *MI);
540
541   /// identifyScopeMarkers() - Indentify instructions that are marking
542   /// beginning of or end of a scope.
543   void identifyScopeMarkers();
544
545   /// extractScopeInformation - Scan machine instructions in this function
546   /// and collect DbgScopes. Return true, if atleast one scope was found.
547   bool extractScopeInformation();
548   
549   /// collectVariableInfo - Populate DbgScope entries with variables' info.
550   void collectVariableInfo(const MachineFunction *,
551                            SmallPtrSet<const MDNode *, 16> &ProcessedVars);
552   
553   /// collectVariableInfoFromMMITable - Collect variable information from
554   /// side table maintained by MMI.
555   void collectVariableInfoFromMMITable(const MachineFunction * MF,
556                                        SmallPtrSet<const MDNode *, 16> &P);
557 public:
558   //===--------------------------------------------------------------------===//
559   // Main entry points.
560   //
561   DwarfDebug(AsmPrinter *A, Module *M);
562   ~DwarfDebug();
563
564   /// beginModule - Emit all Dwarf sections that should come prior to the
565   /// content.
566   void beginModule(Module *M);
567
568   /// endModule - Emit all Dwarf sections that should come after the content.
569   ///
570   void endModule();
571
572   /// beginFunction - Gather pre-function debug information.  Assumes being
573   /// emitted immediately after the function entry point.
574   void beginFunction(const MachineFunction *MF);
575
576   /// endFunction - Gather and emit post-function debug information.
577   ///
578   void endFunction(const MachineFunction *MF);
579
580   /// getLabelBeforeInsn - Return Label preceding the instruction.
581   const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
582
583   /// getLabelAfterInsn - Return Label immediately following the instruction.
584   const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
585
586   /// beginInstruction - Process beginning of an instruction.
587   void beginInstruction(const MachineInstr *MI);
588
589   /// endInstruction - Prcess end of an instruction.
590   void endInstruction(const MachineInstr *MI);
591 };
592 } // End of namespace llvm
593
594 #endif