blob: f671ae3403bffd0a6c56b5c616ffa683a5cad898 [file] [log] [blame]
Bill Wendling0310d762009-05-15 09:23:25 +00001//===-- 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 "DIE.h"
18#include "DwarfPrinter.h"
19#include "llvm/CodeGen/AsmPrinter.h"
20#include "llvm/CodeGen/MachineLocation.h"
21#include "llvm/Analysis/DebugInfo.h"
22#include "llvm/Support/raw_ostream.h"
23#include "llvm/ADT/DenseMap.h"
24#include "llvm/ADT/FoldingSet.h"
Bill Wendling6679ee42009-05-18 22:02:36 +000025#include "llvm/ADT/SmallSet.h"
Bill Wendling0310d762009-05-15 09:23:25 +000026#include "llvm/ADT/StringMap.h"
27#include "llvm/ADT/UniqueVector.h"
28#include <string>
29
30namespace llvm {
31
32class CompileUnit;
33class DbgVariable;
34class DbgScope;
35class DbgConcreteScope;
36class MachineFrameInfo;
37class MachineModuleInfo;
Chris Lattneraf76e592009-08-22 20:48:53 +000038class MCAsmInfo;
Bill Wendling0310d762009-05-15 09:23:25 +000039class Timer;
40
41//===----------------------------------------------------------------------===//
42/// SrcLineInfo - This class is used to record source line correspondence.
43///
44class VISIBILITY_HIDDEN SrcLineInfo {
45 unsigned Line; // Source line number.
46 unsigned Column; // Source column.
47 unsigned SourceID; // Source ID number.
48 unsigned LabelID; // Label in code ID number.
49public:
50 SrcLineInfo(unsigned L, unsigned C, unsigned S, unsigned I)
51 : Line(L), Column(C), SourceID(S), LabelID(I) {}
52
53 // Accessors
54 unsigned getLine() const { return Line; }
55 unsigned getColumn() const { return Column; }
56 unsigned getSourceID() const { return SourceID; }
57 unsigned getLabelID() const { return LabelID; }
58};
59
60class VISIBILITY_HIDDEN DwarfDebug : public Dwarf {
61 //===--------------------------------------------------------------------===//
62 // Attributes used to construct specific Dwarf sections.
63 //
64
65 /// CompileUnitMap - A map of global variables representing compile units to
66 /// compile units.
67 DenseMap<Value *, CompileUnit *> CompileUnitMap;
68
69 /// CompileUnits - All the compile units in this module.
70 ///
71 SmallVector<CompileUnit *, 8> CompileUnits;
72
Devang Patel1dbc7712009-06-29 20:45:18 +000073 /// ModuleCU - All DIEs are inserted in ModuleCU.
74 CompileUnit *ModuleCU;
Bill Wendling0310d762009-05-15 09:23:25 +000075
76 /// AbbreviationsSet - Used to uniquely define abbreviations.
77 ///
78 FoldingSet<DIEAbbrev> AbbreviationsSet;
79
80 /// Abbreviations - A list of all the unique abbreviations in use.
81 ///
82 std::vector<DIEAbbrev *> Abbreviations;
83
84 /// DirectoryIdMap - Directory name to directory id map.
85 ///
86 StringMap<unsigned> DirectoryIdMap;
87
88 /// DirectoryNames - A list of directory names.
89 SmallVector<std::string, 8> DirectoryNames;
90
91 /// SourceFileIdMap - Source file name to source file id map.
92 ///
93 StringMap<unsigned> SourceFileIdMap;
94
95 /// SourceFileNames - A list of source file names.
96 SmallVector<std::string, 8> SourceFileNames;
97
98 /// SourceIdMap - Source id map, i.e. pair of directory id and source file
99 /// id mapped to a unique id.
100 DenseMap<std::pair<unsigned, unsigned>, unsigned> SourceIdMap;
101
102 /// SourceIds - Reverse map from source id to directory id + file id pair.
103 ///
104 SmallVector<std::pair<unsigned, unsigned>, 8> SourceIds;
105
106 /// Lines - List of of source line correspondence.
107 std::vector<SrcLineInfo> Lines;
108
109 /// ValuesSet - Used to uniquely define values.
110 ///
111 FoldingSet<DIEValue> ValuesSet;
112
113 /// Values - A list of all the unique values in use.
114 ///
115 std::vector<DIEValue *> Values;
116
117 /// StringPool - A UniqueVector of strings used by indirect references.
118 ///
119 UniqueVector<std::string> StringPool;
120
121 /// SectionMap - Provides a unique id per text section.
122 ///
Chris Lattnera87dea42009-07-31 18:48:30 +0000123 UniqueVector<const MCSection*> SectionMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000124
125 /// SectionSourceLines - Tracks line numbers per text section.
126 ///
127 std::vector<std::vector<SrcLineInfo> > SectionSourceLines;
128
129 /// didInitial - Flag to indicate if initial emission has been done.
130 ///
131 bool didInitial;
132
133 /// shouldEmit - Flag to indicate if debug information should be emitted.
134 ///
135 bool shouldEmit;
136
137 // FunctionDbgScope - Top level scope for the current function.
138 //
139 DbgScope *FunctionDbgScope;
140
141 /// DbgScopeMap - Tracks the scopes in the current function.
Devang Patele4b27562009-08-28 23:24:31 +0000142 DenseMap<MDNode *, DbgScope *> DbgScopeMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000143
Devang Patelaf9e8472009-10-01 20:31:14 +0000144 typedef DenseMap<const MachineInstr *, SmallVector<DbgScope *, 2> >
145 InsnToDbgScopeMapTy;
146
147 /// DbgScopeBeginMap - Maps instruction with a list DbgScopes it starts.
148 InsnToDbgScopeMapTy DbgScopeBeginMap;
149
150 /// DbgScopeEndMap - Maps instruction with a list DbgScopes it ends.
151 InsnToDbgScopeMapTy DbgScopeEndMap;
152
Bill Wendling0310d762009-05-15 09:23:25 +0000153 /// DbgAbstractScopeMap - Tracks abstract instance scopes in the current
154 /// function.
Devang Patele4b27562009-08-28 23:24:31 +0000155 DenseMap<MDNode *, DbgScope *> DbgAbstractScopeMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000156
157 /// DbgConcreteScopeMap - Tracks concrete instance scopes in the current
158 /// function.
Devang Patele4b27562009-08-28 23:24:31 +0000159 DenseMap<MDNode *,
Bill Wendling0310d762009-05-15 09:23:25 +0000160 SmallVector<DbgScope *, 8> > DbgConcreteScopeMap;
161
162 /// InlineInfo - Keep track of inlined functions and their location. This
163 /// information is used to populate debug_inlined section.
Devang Patele4b27562009-08-28 23:24:31 +0000164 DenseMap<MDNode *, SmallVector<unsigned, 4> > InlineInfo;
Bill Wendling0310d762009-05-15 09:23:25 +0000165
Bill Wendling0310d762009-05-15 09:23:25 +0000166 /// AbstractInstanceRootMap - Map of abstract instance roots of inlined
167 /// functions. These are subroutine entries that contain a DW_AT_inline
168 /// attribute.
Devang Patele4b27562009-08-28 23:24:31 +0000169 DenseMap<const MDNode *, DbgScope *> AbstractInstanceRootMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000170
171 /// AbstractInstanceRootList - List of abstract instance roots of inlined
172 /// functions. These are subroutine entries that contain a DW_AT_inline
173 /// attribute.
174 SmallVector<DbgScope *, 32> AbstractInstanceRootList;
175
176 /// LexicalScopeStack - A stack of lexical scopes. The top one is the current
177 /// scope.
178 SmallVector<DbgScope *, 16> LexicalScopeStack;
179
180 /// CompileUnitOffsets - A vector of the offsets of the compile units. This is
181 /// used when calculating the "origin" of a concrete instance of an inlined
182 /// function.
183 DenseMap<CompileUnit *, unsigned> CompileUnitOffsets;
184
185 /// DebugTimer - Timer for the Dwarf debug writer.
186 Timer *DebugTimer;
Devang Patel43da8fb2009-07-13 21:26:33 +0000187
Bill Wendling0310d762009-05-15 09:23:25 +0000188 struct FunctionDebugFrameInfo {
189 unsigned Number;
190 std::vector<MachineMove> Moves;
191
192 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
193 : Number(Num), Moves(M) {}
194 };
195
196 std::vector<FunctionDebugFrameInfo> DebugFrames;
197
198 /// getSourceDirectoryAndFileIds - Return the directory and file ids that
199 /// maps to the source id. Source id starts at 1.
200 std::pair<unsigned, unsigned>
201 getSourceDirectoryAndFileIds(unsigned SId) const {
202 return SourceIds[SId-1];
203 }
204
205 /// getNumSourceDirectories - Return the number of source directories in the
206 /// debug info.
207 unsigned getNumSourceDirectories() const {
208 return DirectoryNames.size();
209 }
210
211 /// getSourceDirectoryName - Return the name of the directory corresponding
212 /// to the id.
213 const std::string &getSourceDirectoryName(unsigned Id) const {
214 return DirectoryNames[Id - 1];
215 }
216
217 /// getSourceFileName - Return the name of the source file corresponding
218 /// to the id.
219 const std::string &getSourceFileName(unsigned Id) const {
220 return SourceFileNames[Id - 1];
221 }
222
223 /// getNumSourceIds - Return the number of unique source ids.
224 unsigned getNumSourceIds() const {
225 return SourceIds.size();
226 }
227
228 /// AssignAbbrevNumber - Define a unique number for the abbreviation.
229 ///
230 void AssignAbbrevNumber(DIEAbbrev &Abbrev);
231
Bill Wendling995f80a2009-05-20 23:24:48 +0000232 /// CreateDIEEntry - Creates a new DIEEntry to be a proxy for a debug
233 /// information entry.
234 DIEEntry *CreateDIEEntry(DIE *Entry = NULL);
Bill Wendling0310d762009-05-15 09:23:25 +0000235
236 /// SetDIEEntry - Set a DIEEntry once the debug information entry is defined.
237 ///
238 void SetDIEEntry(DIEEntry *Value, DIE *Entry);
239
240 /// AddUInt - Add an unsigned integer attribute data and value.
241 ///
242 void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
243
244 /// AddSInt - Add an signed integer attribute data and value.
245 ///
246 void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
247
248 /// AddString - Add a string attribute data and value.
249 ///
250 void AddString(DIE *Die, unsigned Attribute, unsigned Form,
251 const std::string &String);
252
253 /// AddLabel - Add a Dwarf label attribute data and value.
254 ///
255 void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
256 const DWLabel &Label);
257
258 /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
259 ///
260 void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
261 const std::string &Label);
262
263 /// AddSectionOffset - Add a section offset label attribute data and value.
264 ///
265 void AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
266 const DWLabel &Label, const DWLabel &Section,
267 bool isEH = false, bool useSet = true);
268
269 /// AddDelta - Add a label delta attribute data and value.
270 ///
271 void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
272 const DWLabel &Hi, const DWLabel &Lo);
273
274 /// AddDIEEntry - Add a DIE attribute data and value.
275 ///
276 void AddDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
Bill Wendling995f80a2009-05-20 23:24:48 +0000277 Die->AddValue(Attribute, Form, CreateDIEEntry(Entry));
Bill Wendling0310d762009-05-15 09:23:25 +0000278 }
279
280 /// AddBlock - Add block data.
281 ///
282 void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
283
284 /// AddSourceLine - Add location information to specified debug information
285 /// entry.
286 void AddSourceLine(DIE *Die, const DIVariable *V);
Bill Wendling0310d762009-05-15 09:23:25 +0000287 void AddSourceLine(DIE *Die, const DIGlobal *G);
Devang Patel82dfc0c2009-08-31 22:47:13 +0000288 void AddSourceLine(DIE *Die, const DISubprogram *SP);
Bill Wendling0310d762009-05-15 09:23:25 +0000289 void AddSourceLine(DIE *Die, const DIType *Ty);
290
291 /// AddAddress - Add an address attribute to a die based on the location
292 /// provided.
293 void AddAddress(DIE *Die, unsigned Attribute,
294 const MachineLocation &Location);
295
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000296 /// AddComplexAddress - Start with the address based on the location provided,
297 /// and generate the DWARF information necessary to find the actual variable
298 /// (navigating the extra location information encoded in the type) based on
299 /// the starting location. Add the DWARF information to the die.
300 ///
301 void AddComplexAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
302 const MachineLocation &Location);
303
304 // FIXME: Should be reformulated in terms of AddComplexAddress.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000305 /// AddBlockByrefAddress - Start with the address based on the location
306 /// provided, and generate the DWARF information necessary to find the
307 /// actual Block variable (navigating the Block struct) based on the
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000308 /// starting location. Add the DWARF information to the die. Obsolete,
309 /// please use AddComplexAddress instead.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000310 ///
311 void AddBlockByrefAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
312 const MachineLocation &Location);
313
Bill Wendling0310d762009-05-15 09:23:25 +0000314 /// AddType - Add a new type attribute to the specified entity.
315 void AddType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty);
316
317 /// ConstructTypeDIE - Construct basic type die from DIBasicType.
318 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
319 DIBasicType BTy);
320
321 /// ConstructTypeDIE - Construct derived type die from DIDerivedType.
322 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
323 DIDerivedType DTy);
324
325 /// ConstructTypeDIE - Construct type DIE from DICompositeType.
326 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
327 DICompositeType CTy);
328
329 /// ConstructSubrangeDIE - Construct subrange DIE from DISubrange.
330 void ConstructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
331
332 /// ConstructArrayTypeDIE - Construct array type DIE from DICompositeType.
333 void ConstructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
334 DICompositeType *CTy);
335
336 /// ConstructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
337 DIE *ConstructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy);
338
339 /// CreateGlobalVariableDIE - Create new DIE using GV.
340 DIE *CreateGlobalVariableDIE(CompileUnit *DW_Unit,
341 const DIGlobalVariable &GV);
342
343 /// CreateMemberDIE - Create new member DIE.
344 DIE *CreateMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT);
345
346 /// CreateSubprogramDIE - Create new DIE using SP.
347 DIE *CreateSubprogramDIE(CompileUnit *DW_Unit,
348 const DISubprogram &SP,
Bill Wendling6679ee42009-05-18 22:02:36 +0000349 bool IsConstructor = false,
350 bool IsInlined = false);
Bill Wendling0310d762009-05-15 09:23:25 +0000351
352 /// FindCompileUnit - Get the compile unit for the given descriptor.
353 ///
354 CompileUnit &FindCompileUnit(DICompileUnit Unit) const;
355
Bill Wendling995f80a2009-05-20 23:24:48 +0000356 /// CreateDbgScopeVariable - Create a new scope variable.
Bill Wendling0310d762009-05-15 09:23:25 +0000357 ///
Bill Wendling995f80a2009-05-20 23:24:48 +0000358 DIE *CreateDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit);
Bill Wendling0310d762009-05-15 09:23:25 +0000359
Devang Patelaf9e8472009-10-01 20:31:14 +0000360 /// getDbgScope - Returns the scope associated with the given descriptor.
Bill Wendling0310d762009-05-15 09:23:25 +0000361 ///
Devang Patele4b27562009-08-28 23:24:31 +0000362 DbgScope *getOrCreateScope(MDNode *N);
Devang Patelaf9e8472009-10-01 20:31:14 +0000363 DbgScope *getDbgScope(MDNode *N, const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000364
365 /// ConstructDbgScope - Construct the components of a scope.
366 ///
367 void ConstructDbgScope(DbgScope *ParentScope,
368 unsigned ParentStartID, unsigned ParentEndID,
369 DIE *ParentDie, CompileUnit *Unit);
370
371 /// ConstructFunctionDbgScope - Construct the scope for the subprogram.
372 ///
Bill Wendling17956162009-05-20 23:28:48 +0000373 void ConstructFunctionDbgScope(DbgScope *RootScope,
374 bool AbstractScope = false);
Bill Wendling0310d762009-05-15 09:23:25 +0000375
376 /// ConstructDefaultDbgScope - Construct a default scope for the subprogram.
377 ///
378 void ConstructDefaultDbgScope(MachineFunction *MF);
379
380 /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
381 /// tools to recognize the object file contains Dwarf information.
382 void EmitInitial();
383
384 /// EmitDIE - Recusively Emits a debug information entry.
385 ///
386 void EmitDIE(DIE *Die);
387
388 /// SizeAndOffsetDie - Compute the size and offset of a DIE.
389 ///
390 unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last);
391
392 /// SizeAndOffsets - Compute the size and offset of all the DIEs.
393 ///
394 void SizeAndOffsets();
395
396 /// EmitDebugInfo / EmitDebugInfoPerCU - Emit the debug info section.
397 ///
398 void EmitDebugInfoPerCU(CompileUnit *Unit);
399
400 void EmitDebugInfo();
401
402 /// EmitAbbreviations - Emit the abbreviation section.
403 ///
404 void EmitAbbreviations() const;
405
406 /// EmitEndOfLineMatrix - Emit the last address of the section and the end of
407 /// the line matrix.
408 ///
409 void EmitEndOfLineMatrix(unsigned SectionEnd);
410
411 /// EmitDebugLines - Emit source line information.
412 ///
413 void EmitDebugLines();
414
415 /// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
416 ///
417 void EmitCommonDebugFrame();
418
419 /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
420 /// section.
421 void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo);
422
423 void EmitDebugPubNamesPerCU(CompileUnit *Unit);
424
425 /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
426 ///
427 void EmitDebugPubNames();
428
429 /// EmitDebugStr - Emit visible names into a debug str section.
430 ///
431 void EmitDebugStr();
432
433 /// EmitDebugLoc - Emit visible names into a debug loc section.
434 ///
435 void EmitDebugLoc();
436
437 /// EmitDebugARanges - Emit visible names into a debug aranges section.
438 ///
439 void EmitDebugARanges();
440
441 /// EmitDebugRanges - Emit visible names into a debug ranges section.
442 ///
443 void EmitDebugRanges();
444
445 /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
446 ///
447 void EmitDebugMacInfo();
448
449 /// EmitDebugInlineInfo - Emit inline info using following format.
450 /// Section Header:
451 /// 1. length of section
452 /// 2. Dwarf version number
453 /// 3. address size.
454 ///
455 /// Entries (one "entry" for each function that was inlined):
456 ///
457 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
458 /// otherwise offset into __debug_str for regular function name.
459 /// 2. offset into __debug_str section for regular function name.
460 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
461 /// instances for the function.
462 ///
463 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
464 /// inlined instance; the die_offset points to the inlined_subroutine die in
465 /// the __debug_info section, and the low_pc is the starting address for the
466 /// inlining instance.
467 void EmitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000468
469 /// GetOrCreateSourceID - Look up the source id with the given directory and
470 /// source file names. If none currently exists, create a new id and insert it
471 /// in the SourceIds map. This can update DirectoryNames and SourceFileNames maps
472 /// as well.
Devang Patel5ccdd102009-09-29 18:40:58 +0000473 unsigned GetOrCreateSourceID(const char *DirName,
474 const char *FileName);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000475
Devang Patele4b27562009-08-28 23:24:31 +0000476 void ConstructCompileUnit(MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000477
Devang Patele4b27562009-08-28 23:24:31 +0000478 void ConstructGlobalVariableDIE(MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000479
Devang Patele4b27562009-08-28 23:24:31 +0000480 void ConstructSubprogram(MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000481
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000482 // FIXME: This should go away in favor of complex addresses.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000483 /// Find the type the programmer originally declared the variable to be
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000484 /// and return that type. Obsolete, use GetComplexAddrType instead.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000485 ///
486 DIType GetBlockByrefType(DIType Ty, std::string Name);
487
Bill Wendling0310d762009-05-15 09:23:25 +0000488public:
489 //===--------------------------------------------------------------------===//
490 // Main entry points.
491 //
Chris Lattneraf76e592009-08-22 20:48:53 +0000492 DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T);
Bill Wendling0310d762009-05-15 09:23:25 +0000493 virtual ~DwarfDebug();
494
495 /// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should
496 /// be emitted.
497 bool ShouldEmitDwarfDebug() const { return shouldEmit; }
498
Bill Wendling0310d762009-05-15 09:23:25 +0000499 /// BeginModule - Emit all Dwarf sections that should come prior to the
500 /// content.
Devang Patel208622d2009-06-25 22:36:02 +0000501 void BeginModule(Module *M, MachineModuleInfo *MMI);
Bill Wendling0310d762009-05-15 09:23:25 +0000502
503 /// EndModule - Emit all Dwarf sections that should come after the content.
504 ///
505 void EndModule();
506
507 /// BeginFunction - Gather pre-function debug information. Assumes being
508 /// emitted immediately after the function entry point.
509 void BeginFunction(MachineFunction *MF);
510
511 /// EndFunction - Gather and emit post-function debug information.
512 ///
513 void EndFunction(MachineFunction *MF);
514
515 /// RecordSourceLine - Records location information and associates it with a
516 /// label. Returns a unique label ID used to generate a label and provide
517 /// correspondence to the source line list.
518 unsigned RecordSourceLine(Value *V, unsigned Line, unsigned Col);
519
520 /// RecordSourceLine - Records location information and associates it with a
521 /// label. Returns a unique label ID used to generate a label and provide
522 /// correspondence to the source line list.
Devang Patel3d910832009-09-30 22:51:28 +0000523 unsigned RecordSourceLine(unsigned Line, unsigned Col, MDNode *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000524
525 /// getRecordSourceLineCount - Return the number of source lines in the debug
526 /// info.
527 unsigned getRecordSourceLineCount() const {
528 return Lines.size();
529 }
530
531 /// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
532 /// timed. Look up the source id with the given directory and source file
533 /// names. If none currently exists, create a new id and insert it in the
534 /// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
535 /// well.
536 unsigned getOrCreateSourceID(const std::string &DirName,
537 const std::string &FileName);
538
539 /// RecordRegionStart - Indicate the start of a region.
Devang Patele4b27562009-08-28 23:24:31 +0000540 unsigned RecordRegionStart(MDNode *N);
Bill Wendling0310d762009-05-15 09:23:25 +0000541
542 /// RecordRegionEnd - Indicate the end of a region.
Devang Patele4b27562009-08-28 23:24:31 +0000543 unsigned RecordRegionEnd(MDNode *N);
Bill Wendling0310d762009-05-15 09:23:25 +0000544
545 /// RecordVariable - Indicate the declaration of a local variable.
Devang Patele4b27562009-08-28 23:24:31 +0000546 void RecordVariable(MDNode *N, unsigned FrameIndex);
Bill Wendling0310d762009-05-15 09:23:25 +0000547
548 //// RecordInlinedFnStart - Indicate the start of inlined subroutine.
549 unsigned RecordInlinedFnStart(DISubprogram &SP, DICompileUnit CU,
550 unsigned Line, unsigned Col);
551
552 /// RecordInlinedFnEnd - Indicate the end of inlined subroutine.
553 unsigned RecordInlinedFnEnd(DISubprogram &SP);
554
Devang Patelaf9e8472009-10-01 20:31:14 +0000555 /// ExtractScopeInformation - Scan machine instructions in this function
556 /// and collect DbgScopes. Return true, if atleast one scope was found.
557 bool ExtractScopeInformation(MachineFunction *MF);
558
559 void SetDbgScopeLabels(const MachineInstr *MI, unsigned Label);
Bill Wendling0310d762009-05-15 09:23:25 +0000560};
561
562} // End of namespace llvm
563
564#endif