blob: 53f84c114d3200db533cd2c6baf10cdd124b7d93 [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 Patelfd07cf52009-10-05 23:40:42 +0000144 /// ScopedGVs - Tracks global variables that are not at file scope.
145 /// For example void f() { static int b = 42; }
146 SmallVector<WeakVH, 4> ScopedGVs;
147
Devang Patelaf9e8472009-10-01 20:31:14 +0000148 typedef DenseMap<const MachineInstr *, SmallVector<DbgScope *, 2> >
149 InsnToDbgScopeMapTy;
150
151 /// DbgScopeBeginMap - Maps instruction with a list DbgScopes it starts.
152 InsnToDbgScopeMapTy DbgScopeBeginMap;
153
154 /// DbgScopeEndMap - Maps instruction with a list DbgScopes it ends.
155 InsnToDbgScopeMapTy DbgScopeEndMap;
156
Bill Wendling0310d762009-05-15 09:23:25 +0000157 /// DbgAbstractScopeMap - Tracks abstract instance scopes in the current
158 /// function.
Devang Patele4b27562009-08-28 23:24:31 +0000159 DenseMap<MDNode *, DbgScope *> DbgAbstractScopeMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000160
161 /// DbgConcreteScopeMap - Tracks concrete instance scopes in the current
162 /// function.
Devang Patele4b27562009-08-28 23:24:31 +0000163 DenseMap<MDNode *,
Bill Wendling0310d762009-05-15 09:23:25 +0000164 SmallVector<DbgScope *, 8> > DbgConcreteScopeMap;
165
166 /// InlineInfo - Keep track of inlined functions and their location. This
167 /// information is used to populate debug_inlined section.
Devang Patele4b27562009-08-28 23:24:31 +0000168 DenseMap<MDNode *, SmallVector<unsigned, 4> > InlineInfo;
Bill Wendling0310d762009-05-15 09:23:25 +0000169
Bill Wendling0310d762009-05-15 09:23:25 +0000170 /// AbstractInstanceRootMap - Map of abstract instance roots of inlined
171 /// functions. These are subroutine entries that contain a DW_AT_inline
172 /// attribute.
Devang Patele4b27562009-08-28 23:24:31 +0000173 DenseMap<const MDNode *, DbgScope *> AbstractInstanceRootMap;
Bill Wendling0310d762009-05-15 09:23:25 +0000174
175 /// AbstractInstanceRootList - List of abstract instance roots of inlined
176 /// functions. These are subroutine entries that contain a DW_AT_inline
177 /// attribute.
178 SmallVector<DbgScope *, 32> AbstractInstanceRootList;
179
180 /// LexicalScopeStack - A stack of lexical scopes. The top one is the current
181 /// scope.
182 SmallVector<DbgScope *, 16> LexicalScopeStack;
183
184 /// CompileUnitOffsets - A vector of the offsets of the compile units. This is
185 /// used when calculating the "origin" of a concrete instance of an inlined
186 /// function.
187 DenseMap<CompileUnit *, unsigned> CompileUnitOffsets;
188
189 /// DebugTimer - Timer for the Dwarf debug writer.
190 Timer *DebugTimer;
Devang Patel43da8fb2009-07-13 21:26:33 +0000191
Bill Wendling0310d762009-05-15 09:23:25 +0000192 struct FunctionDebugFrameInfo {
193 unsigned Number;
194 std::vector<MachineMove> Moves;
195
196 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
197 : Number(Num), Moves(M) {}
198 };
199
200 std::vector<FunctionDebugFrameInfo> DebugFrames;
201
202 /// getSourceDirectoryAndFileIds - Return the directory and file ids that
203 /// maps to the source id. Source id starts at 1.
204 std::pair<unsigned, unsigned>
205 getSourceDirectoryAndFileIds(unsigned SId) const {
206 return SourceIds[SId-1];
207 }
208
209 /// getNumSourceDirectories - Return the number of source directories in the
210 /// debug info.
211 unsigned getNumSourceDirectories() const {
212 return DirectoryNames.size();
213 }
214
215 /// getSourceDirectoryName - Return the name of the directory corresponding
216 /// to the id.
217 const std::string &getSourceDirectoryName(unsigned Id) const {
218 return DirectoryNames[Id - 1];
219 }
220
221 /// getSourceFileName - Return the name of the source file corresponding
222 /// to the id.
223 const std::string &getSourceFileName(unsigned Id) const {
224 return SourceFileNames[Id - 1];
225 }
226
227 /// getNumSourceIds - Return the number of unique source ids.
228 unsigned getNumSourceIds() const {
229 return SourceIds.size();
230 }
231
232 /// AssignAbbrevNumber - Define a unique number for the abbreviation.
233 ///
234 void AssignAbbrevNumber(DIEAbbrev &Abbrev);
235
Bill Wendling995f80a2009-05-20 23:24:48 +0000236 /// CreateDIEEntry - Creates a new DIEEntry to be a proxy for a debug
237 /// information entry.
238 DIEEntry *CreateDIEEntry(DIE *Entry = NULL);
Bill Wendling0310d762009-05-15 09:23:25 +0000239
240 /// SetDIEEntry - Set a DIEEntry once the debug information entry is defined.
241 ///
242 void SetDIEEntry(DIEEntry *Value, DIE *Entry);
243
244 /// AddUInt - Add an unsigned integer attribute data and value.
245 ///
246 void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
247
248 /// AddSInt - Add an signed integer attribute data and value.
249 ///
250 void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
251
252 /// AddString - Add a string attribute data and value.
253 ///
254 void AddString(DIE *Die, unsigned Attribute, unsigned Form,
255 const std::string &String);
256
257 /// AddLabel - Add a Dwarf label attribute data and value.
258 ///
259 void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
260 const DWLabel &Label);
261
262 /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
263 ///
264 void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
265 const std::string &Label);
266
267 /// AddSectionOffset - Add a section offset label attribute data and value.
268 ///
269 void AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
270 const DWLabel &Label, const DWLabel &Section,
271 bool isEH = false, bool useSet = true);
272
273 /// AddDelta - Add a label delta attribute data and value.
274 ///
275 void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
276 const DWLabel &Hi, const DWLabel &Lo);
277
278 /// AddDIEEntry - Add a DIE attribute data and value.
279 ///
280 void AddDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
Bill Wendling995f80a2009-05-20 23:24:48 +0000281 Die->AddValue(Attribute, Form, CreateDIEEntry(Entry));
Bill Wendling0310d762009-05-15 09:23:25 +0000282 }
283
284 /// AddBlock - Add block data.
285 ///
286 void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
287
288 /// AddSourceLine - Add location information to specified debug information
289 /// entry.
290 void AddSourceLine(DIE *Die, const DIVariable *V);
Bill Wendling0310d762009-05-15 09:23:25 +0000291 void AddSourceLine(DIE *Die, const DIGlobal *G);
Devang Patel82dfc0c2009-08-31 22:47:13 +0000292 void AddSourceLine(DIE *Die, const DISubprogram *SP);
Bill Wendling0310d762009-05-15 09:23:25 +0000293 void AddSourceLine(DIE *Die, const DIType *Ty);
294
295 /// AddAddress - Add an address attribute to a die based on the location
296 /// provided.
297 void AddAddress(DIE *Die, unsigned Attribute,
298 const MachineLocation &Location);
299
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000300 /// AddComplexAddress - Start with the address based on the location provided,
301 /// and generate the DWARF information necessary to find the actual variable
302 /// (navigating the extra location information encoded in the type) based on
303 /// the starting location. Add the DWARF information to the die.
304 ///
305 void AddComplexAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
306 const MachineLocation &Location);
307
308 // FIXME: Should be reformulated in terms of AddComplexAddress.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000309 /// AddBlockByrefAddress - Start with the address based on the location
310 /// provided, and generate the DWARF information necessary to find the
311 /// actual Block variable (navigating the Block struct) based on the
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000312 /// starting location. Add the DWARF information to the die. Obsolete,
313 /// please use AddComplexAddress instead.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000314 ///
315 void AddBlockByrefAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
316 const MachineLocation &Location);
317
Bill Wendling0310d762009-05-15 09:23:25 +0000318 /// AddType - Add a new type attribute to the specified entity.
319 void AddType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty);
320
321 /// ConstructTypeDIE - Construct basic type die from DIBasicType.
322 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
323 DIBasicType BTy);
324
325 /// ConstructTypeDIE - Construct derived type die from DIDerivedType.
326 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
327 DIDerivedType DTy);
328
329 /// ConstructTypeDIE - Construct type DIE from DICompositeType.
330 void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
331 DICompositeType CTy);
332
333 /// ConstructSubrangeDIE - Construct subrange DIE from DISubrange.
334 void ConstructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
335
336 /// ConstructArrayTypeDIE - Construct array type DIE from DICompositeType.
337 void ConstructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
338 DICompositeType *CTy);
339
340 /// ConstructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
341 DIE *ConstructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy);
342
343 /// CreateGlobalVariableDIE - Create new DIE using GV.
344 DIE *CreateGlobalVariableDIE(CompileUnit *DW_Unit,
345 const DIGlobalVariable &GV);
346
347 /// CreateMemberDIE - Create new member DIE.
348 DIE *CreateMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT);
349
350 /// CreateSubprogramDIE - Create new DIE using SP.
351 DIE *CreateSubprogramDIE(CompileUnit *DW_Unit,
352 const DISubprogram &SP,
Bill Wendling6679ee42009-05-18 22:02:36 +0000353 bool IsConstructor = false,
354 bool IsInlined = false);
Bill Wendling0310d762009-05-15 09:23:25 +0000355
356 /// FindCompileUnit - Get the compile unit for the given descriptor.
357 ///
358 CompileUnit &FindCompileUnit(DICompileUnit Unit) const;
359
Bill Wendling995f80a2009-05-20 23:24:48 +0000360 /// CreateDbgScopeVariable - Create a new scope variable.
Bill Wendling0310d762009-05-15 09:23:25 +0000361 ///
Bill Wendling995f80a2009-05-20 23:24:48 +0000362 DIE *CreateDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit);
Bill Wendling0310d762009-05-15 09:23:25 +0000363
Devang Patelaf9e8472009-10-01 20:31:14 +0000364 /// getDbgScope - Returns the scope associated with the given descriptor.
Bill Wendling0310d762009-05-15 09:23:25 +0000365 ///
Devang Patele4b27562009-08-28 23:24:31 +0000366 DbgScope *getOrCreateScope(MDNode *N);
Devang Patelaf9e8472009-10-01 20:31:14 +0000367 DbgScope *getDbgScope(MDNode *N, const MachineInstr *MI);
Bill Wendling0310d762009-05-15 09:23:25 +0000368
369 /// ConstructDbgScope - Construct the components of a scope.
370 ///
371 void ConstructDbgScope(DbgScope *ParentScope,
372 unsigned ParentStartID, unsigned ParentEndID,
373 DIE *ParentDie, CompileUnit *Unit);
374
375 /// ConstructFunctionDbgScope - Construct the scope for the subprogram.
376 ///
Bill Wendling17956162009-05-20 23:28:48 +0000377 void ConstructFunctionDbgScope(DbgScope *RootScope,
378 bool AbstractScope = false);
Bill Wendling0310d762009-05-15 09:23:25 +0000379
380 /// ConstructDefaultDbgScope - Construct a default scope for the subprogram.
381 ///
382 void ConstructDefaultDbgScope(MachineFunction *MF);
383
384 /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
385 /// tools to recognize the object file contains Dwarf information.
386 void EmitInitial();
387
388 /// EmitDIE - Recusively Emits a debug information entry.
389 ///
390 void EmitDIE(DIE *Die);
391
392 /// SizeAndOffsetDie - Compute the size and offset of a DIE.
393 ///
394 unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last);
395
396 /// SizeAndOffsets - Compute the size and offset of all the DIEs.
397 ///
398 void SizeAndOffsets();
399
400 /// EmitDebugInfo / EmitDebugInfoPerCU - Emit the debug info section.
401 ///
402 void EmitDebugInfoPerCU(CompileUnit *Unit);
403
404 void EmitDebugInfo();
405
406 /// EmitAbbreviations - Emit the abbreviation section.
407 ///
408 void EmitAbbreviations() const;
409
410 /// EmitEndOfLineMatrix - Emit the last address of the section and the end of
411 /// the line matrix.
412 ///
413 void EmitEndOfLineMatrix(unsigned SectionEnd);
414
415 /// EmitDebugLines - Emit source line information.
416 ///
417 void EmitDebugLines();
418
419 /// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
420 ///
421 void EmitCommonDebugFrame();
422
423 /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
424 /// section.
425 void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo);
426
427 void EmitDebugPubNamesPerCU(CompileUnit *Unit);
428
429 /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
430 ///
431 void EmitDebugPubNames();
432
433 /// EmitDebugStr - Emit visible names into a debug str section.
434 ///
435 void EmitDebugStr();
436
437 /// EmitDebugLoc - Emit visible names into a debug loc section.
438 ///
439 void EmitDebugLoc();
440
441 /// EmitDebugARanges - Emit visible names into a debug aranges section.
442 ///
443 void EmitDebugARanges();
444
445 /// EmitDebugRanges - Emit visible names into a debug ranges section.
446 ///
447 void EmitDebugRanges();
448
449 /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
450 ///
451 void EmitDebugMacInfo();
452
453 /// EmitDebugInlineInfo - Emit inline info using following format.
454 /// Section Header:
455 /// 1. length of section
456 /// 2. Dwarf version number
457 /// 3. address size.
458 ///
459 /// Entries (one "entry" for each function that was inlined):
460 ///
461 /// 1. offset into __debug_str section for MIPS linkage name, if exists;
462 /// otherwise offset into __debug_str for regular function name.
463 /// 2. offset into __debug_str section for regular function name.
464 /// 3. an unsigned LEB128 number indicating the number of distinct inlining
465 /// instances for the function.
466 ///
467 /// The rest of the entry consists of a {die_offset, low_pc} pair for each
468 /// inlined instance; the die_offset points to the inlined_subroutine die in
469 /// the __debug_info section, and the low_pc is the starting address for the
470 /// inlining instance.
471 void EmitDebugInlineInfo();
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000472
473 /// GetOrCreateSourceID - Look up the source id with the given directory and
474 /// source file names. If none currently exists, create a new id and insert it
475 /// in the SourceIds map. This can update DirectoryNames and SourceFileNames maps
476 /// as well.
Devang Patel5ccdd102009-09-29 18:40:58 +0000477 unsigned GetOrCreateSourceID(const char *DirName,
478 const char *FileName);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000479
Devang Patele4b27562009-08-28 23:24:31 +0000480 void ConstructCompileUnit(MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000481
Devang Patele4b27562009-08-28 23:24:31 +0000482 void ConstructGlobalVariableDIE(MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000483
Devang Patele4b27562009-08-28 23:24:31 +0000484 void ConstructSubprogram(MDNode *N);
Bill Wendlingf0fb9872009-05-20 23:19:06 +0000485
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000486 // FIXME: This should go away in favor of complex addresses.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000487 /// Find the type the programmer originally declared the variable to be
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000488 /// and return that type. Obsolete, use GetComplexAddrType instead.
Caroline Ticedc8f6042009-08-31 21:19:37 +0000489 ///
490 DIType GetBlockByrefType(DIType Ty, std::string Name);
491
Bill Wendling0310d762009-05-15 09:23:25 +0000492public:
493 //===--------------------------------------------------------------------===//
494 // Main entry points.
495 //
Chris Lattneraf76e592009-08-22 20:48:53 +0000496 DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T);
Bill Wendling0310d762009-05-15 09:23:25 +0000497 virtual ~DwarfDebug();
498
499 /// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should
500 /// be emitted.
501 bool ShouldEmitDwarfDebug() const { return shouldEmit; }
502
Bill Wendling0310d762009-05-15 09:23:25 +0000503 /// BeginModule - Emit all Dwarf sections that should come prior to the
504 /// content.
Devang Patel208622d2009-06-25 22:36:02 +0000505 void BeginModule(Module *M, MachineModuleInfo *MMI);
Bill Wendling0310d762009-05-15 09:23:25 +0000506
507 /// EndModule - Emit all Dwarf sections that should come after the content.
508 ///
509 void EndModule();
510
511 /// BeginFunction - Gather pre-function debug information. Assumes being
512 /// emitted immediately after the function entry point.
513 void BeginFunction(MachineFunction *MF);
514
515 /// EndFunction - Gather and emit post-function debug information.
516 ///
517 void EndFunction(MachineFunction *MF);
518
519 /// RecordSourceLine - Records location information and associates it with a
520 /// label. Returns a unique label ID used to generate a label and provide
521 /// correspondence to the source line list.
522 unsigned RecordSourceLine(Value *V, unsigned Line, unsigned Col);
523
524 /// RecordSourceLine - Records location information and associates it with a
525 /// label. Returns a unique label ID used to generate a label and provide
526 /// correspondence to the source line list.
Devang Patel3d910832009-09-30 22:51:28 +0000527 unsigned RecordSourceLine(unsigned Line, unsigned Col, MDNode *Scope);
Bill Wendling0310d762009-05-15 09:23:25 +0000528
529 /// getRecordSourceLineCount - Return the number of source lines in the debug
530 /// info.
531 unsigned getRecordSourceLineCount() const {
532 return Lines.size();
533 }
534
535 /// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
536 /// timed. Look up the source id with the given directory and source file
537 /// names. If none currently exists, create a new id and insert it in the
538 /// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
539 /// well.
540 unsigned getOrCreateSourceID(const std::string &DirName,
541 const std::string &FileName);
542
543 /// RecordRegionStart - Indicate the start of a region.
Devang Patele4b27562009-08-28 23:24:31 +0000544 unsigned RecordRegionStart(MDNode *N);
Bill Wendling0310d762009-05-15 09:23:25 +0000545
546 /// RecordRegionEnd - Indicate the end of a region.
Devang Patele4b27562009-08-28 23:24:31 +0000547 unsigned RecordRegionEnd(MDNode *N);
Bill Wendling0310d762009-05-15 09:23:25 +0000548
549 /// RecordVariable - Indicate the declaration of a local variable.
Devang Patele4b27562009-08-28 23:24:31 +0000550 void RecordVariable(MDNode *N, unsigned FrameIndex);
Bill Wendling0310d762009-05-15 09:23:25 +0000551
552 //// RecordInlinedFnStart - Indicate the start of inlined subroutine.
553 unsigned RecordInlinedFnStart(DISubprogram &SP, DICompileUnit CU,
554 unsigned Line, unsigned Col);
555
556 /// RecordInlinedFnEnd - Indicate the end of inlined subroutine.
557 unsigned RecordInlinedFnEnd(DISubprogram &SP);
558
Devang Patelaf9e8472009-10-01 20:31:14 +0000559 /// ExtractScopeInformation - Scan machine instructions in this function
560 /// and collect DbgScopes. Return true, if atleast one scope was found.
561 bool ExtractScopeInformation(MachineFunction *MF);
562
Devang Patele717faa2009-10-06 01:26:37 +0000563 /// CollectVariableInfo - Populate DbgScope entries with variables' info.
564 void CollectVariableInfo();
565
Devang Patel0d20ac82009-10-06 01:50:42 +0000566 /// SetDbgScopeBeginLabels - Update DbgScope begin labels for the scopes that
567 /// start with this machine instruction.
568 void SetDbgScopeBeginLabels(const MachineInstr *MI, unsigned Label);
569
570 /// SetDbgScopeEndLabels - Update DbgScope end labels for the scopes that
571 /// end with this machine instruction.
572 void SetDbgScopeEndLabels(const MachineInstr *MI, unsigned Label);
Bill Wendling0310d762009-05-15 09:23:25 +0000573};
574
575} // End of namespace llvm
576
577#endif