Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 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 "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 Wendling | 6679ee4 | 2009-05-18 22:02:36 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallSet.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/StringMap.h" |
| 27 | #include "llvm/ADT/UniqueVector.h" |
| 28 | #include <string> |
| 29 | |
| 30 | namespace llvm { |
| 31 | |
| 32 | class CompileUnit; |
| 33 | class DbgVariable; |
| 34 | class DbgScope; |
| 35 | class DbgConcreteScope; |
| 36 | class MachineFrameInfo; |
| 37 | class MachineModuleInfo; |
| 38 | class TargetAsmInfo; |
| 39 | class Timer; |
| 40 | |
| 41 | //===----------------------------------------------------------------------===// |
| 42 | /// SrcLineInfo - This class is used to record source line correspondence. |
| 43 | /// |
| 44 | class 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. |
| 49 | public: |
| 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 | |
| 60 | class 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 Patel | 1dbc771 | 2009-06-29 20:45:18 +0000 | [diff] [blame] | 73 | /// ModuleCU - All DIEs are inserted in ModuleCU. |
| 74 | CompileUnit *ModuleCU; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 75 | |
| 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 Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 123 | UniqueVector<const MCSection*> SectionMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 124 | |
| 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. |
| 142 | DenseMap<GlobalVariable *, DbgScope *> DbgScopeMap; |
| 143 | |
| 144 | /// DbgAbstractScopeMap - Tracks abstract instance scopes in the current |
| 145 | /// function. |
| 146 | DenseMap<GlobalVariable *, DbgScope *> DbgAbstractScopeMap; |
| 147 | |
| 148 | /// DbgConcreteScopeMap - Tracks concrete instance scopes in the current |
| 149 | /// function. |
| 150 | DenseMap<GlobalVariable *, |
| 151 | SmallVector<DbgScope *, 8> > DbgConcreteScopeMap; |
| 152 | |
| 153 | /// InlineInfo - Keep track of inlined functions and their location. This |
| 154 | /// information is used to populate debug_inlined section. |
| 155 | DenseMap<GlobalVariable *, SmallVector<unsigned, 4> > InlineInfo; |
| 156 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 157 | /// AbstractInstanceRootMap - Map of abstract instance roots of inlined |
| 158 | /// functions. These are subroutine entries that contain a DW_AT_inline |
| 159 | /// attribute. |
| 160 | DenseMap<const GlobalVariable *, DbgScope *> AbstractInstanceRootMap; |
| 161 | |
| 162 | /// AbstractInstanceRootList - List of abstract instance roots of inlined |
| 163 | /// functions. These are subroutine entries that contain a DW_AT_inline |
| 164 | /// attribute. |
| 165 | SmallVector<DbgScope *, 32> AbstractInstanceRootList; |
| 166 | |
| 167 | /// LexicalScopeStack - A stack of lexical scopes. The top one is the current |
| 168 | /// scope. |
| 169 | SmallVector<DbgScope *, 16> LexicalScopeStack; |
| 170 | |
| 171 | /// CompileUnitOffsets - A vector of the offsets of the compile units. This is |
| 172 | /// used when calculating the "origin" of a concrete instance of an inlined |
| 173 | /// function. |
| 174 | DenseMap<CompileUnit *, unsigned> CompileUnitOffsets; |
| 175 | |
| 176 | /// DebugTimer - Timer for the Dwarf debug writer. |
| 177 | Timer *DebugTimer; |
Devang Patel | 43da8fb | 2009-07-13 21:26:33 +0000 | [diff] [blame] | 178 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 179 | struct FunctionDebugFrameInfo { |
| 180 | unsigned Number; |
| 181 | std::vector<MachineMove> Moves; |
| 182 | |
| 183 | FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M) |
| 184 | : Number(Num), Moves(M) {} |
| 185 | }; |
| 186 | |
| 187 | std::vector<FunctionDebugFrameInfo> DebugFrames; |
| 188 | |
| 189 | /// getSourceDirectoryAndFileIds - Return the directory and file ids that |
| 190 | /// maps to the source id. Source id starts at 1. |
| 191 | std::pair<unsigned, unsigned> |
| 192 | getSourceDirectoryAndFileIds(unsigned SId) const { |
| 193 | return SourceIds[SId-1]; |
| 194 | } |
| 195 | |
| 196 | /// getNumSourceDirectories - Return the number of source directories in the |
| 197 | /// debug info. |
| 198 | unsigned getNumSourceDirectories() const { |
| 199 | return DirectoryNames.size(); |
| 200 | } |
| 201 | |
| 202 | /// getSourceDirectoryName - Return the name of the directory corresponding |
| 203 | /// to the id. |
| 204 | const std::string &getSourceDirectoryName(unsigned Id) const { |
| 205 | return DirectoryNames[Id - 1]; |
| 206 | } |
| 207 | |
| 208 | /// getSourceFileName - Return the name of the source file corresponding |
| 209 | /// to the id. |
| 210 | const std::string &getSourceFileName(unsigned Id) const { |
| 211 | return SourceFileNames[Id - 1]; |
| 212 | } |
| 213 | |
| 214 | /// getNumSourceIds - Return the number of unique source ids. |
| 215 | unsigned getNumSourceIds() const { |
| 216 | return SourceIds.size(); |
| 217 | } |
| 218 | |
| 219 | /// AssignAbbrevNumber - Define a unique number for the abbreviation. |
| 220 | /// |
| 221 | void AssignAbbrevNumber(DIEAbbrev &Abbrev); |
| 222 | |
Bill Wendling | 995f80a | 2009-05-20 23:24:48 +0000 | [diff] [blame] | 223 | /// CreateDIEEntry - Creates a new DIEEntry to be a proxy for a debug |
| 224 | /// information entry. |
| 225 | DIEEntry *CreateDIEEntry(DIE *Entry = NULL); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 226 | |
| 227 | /// SetDIEEntry - Set a DIEEntry once the debug information entry is defined. |
| 228 | /// |
| 229 | void SetDIEEntry(DIEEntry *Value, DIE *Entry); |
| 230 | |
| 231 | /// AddUInt - Add an unsigned integer attribute data and value. |
| 232 | /// |
| 233 | void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer); |
| 234 | |
| 235 | /// AddSInt - Add an signed integer attribute data and value. |
| 236 | /// |
| 237 | void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer); |
| 238 | |
| 239 | /// AddString - Add a string attribute data and value. |
| 240 | /// |
| 241 | void AddString(DIE *Die, unsigned Attribute, unsigned Form, |
| 242 | const std::string &String); |
| 243 | |
| 244 | /// AddLabel - Add a Dwarf label attribute data and value. |
| 245 | /// |
| 246 | void AddLabel(DIE *Die, unsigned Attribute, unsigned Form, |
| 247 | const DWLabel &Label); |
| 248 | |
| 249 | /// AddObjectLabel - Add an non-Dwarf label attribute data and value. |
| 250 | /// |
| 251 | void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form, |
| 252 | const std::string &Label); |
| 253 | |
| 254 | /// AddSectionOffset - Add a section offset label attribute data and value. |
| 255 | /// |
| 256 | void AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form, |
| 257 | const DWLabel &Label, const DWLabel &Section, |
| 258 | bool isEH = false, bool useSet = true); |
| 259 | |
| 260 | /// AddDelta - Add a label delta attribute data and value. |
| 261 | /// |
| 262 | void AddDelta(DIE *Die, unsigned Attribute, unsigned Form, |
| 263 | const DWLabel &Hi, const DWLabel &Lo); |
| 264 | |
| 265 | /// AddDIEEntry - Add a DIE attribute data and value. |
| 266 | /// |
| 267 | void AddDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) { |
Bill Wendling | 995f80a | 2009-05-20 23:24:48 +0000 | [diff] [blame] | 268 | Die->AddValue(Attribute, Form, CreateDIEEntry(Entry)); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /// AddBlock - Add block data. |
| 272 | /// |
| 273 | void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block); |
| 274 | |
| 275 | /// AddSourceLine - Add location information to specified debug information |
| 276 | /// entry. |
| 277 | void AddSourceLine(DIE *Die, const DIVariable *V); |
| 278 | |
| 279 | /// AddSourceLine - Add location information to specified debug information |
| 280 | /// entry. |
| 281 | void AddSourceLine(DIE *Die, const DIGlobal *G); |
| 282 | |
| 283 | void AddSourceLine(DIE *Die, const DIType *Ty); |
| 284 | |
| 285 | /// AddAddress - Add an address attribute to a die based on the location |
| 286 | /// provided. |
| 287 | void AddAddress(DIE *Die, unsigned Attribute, |
| 288 | const MachineLocation &Location); |
| 289 | |
| 290 | /// AddType - Add a new type attribute to the specified entity. |
| 291 | void AddType(CompileUnit *DW_Unit, DIE *Entity, DIType Ty); |
| 292 | |
| 293 | /// ConstructTypeDIE - Construct basic type die from DIBasicType. |
| 294 | void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 295 | DIBasicType BTy); |
| 296 | |
| 297 | /// ConstructTypeDIE - Construct derived type die from DIDerivedType. |
| 298 | void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 299 | DIDerivedType DTy); |
| 300 | |
| 301 | /// ConstructTypeDIE - Construct type DIE from DICompositeType. |
| 302 | void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 303 | DICompositeType CTy); |
| 304 | |
| 305 | /// ConstructSubrangeDIE - Construct subrange DIE from DISubrange. |
| 306 | void ConstructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy); |
| 307 | |
| 308 | /// ConstructArrayTypeDIE - Construct array type DIE from DICompositeType. |
| 309 | void ConstructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, |
| 310 | DICompositeType *CTy); |
| 311 | |
| 312 | /// ConstructEnumTypeDIE - Construct enum type DIE from DIEnumerator. |
| 313 | DIE *ConstructEnumTypeDIE(CompileUnit *DW_Unit, DIEnumerator *ETy); |
| 314 | |
| 315 | /// CreateGlobalVariableDIE - Create new DIE using GV. |
| 316 | DIE *CreateGlobalVariableDIE(CompileUnit *DW_Unit, |
| 317 | const DIGlobalVariable &GV); |
| 318 | |
| 319 | /// CreateMemberDIE - Create new member DIE. |
| 320 | DIE *CreateMemberDIE(CompileUnit *DW_Unit, const DIDerivedType &DT); |
| 321 | |
| 322 | /// CreateSubprogramDIE - Create new DIE using SP. |
| 323 | DIE *CreateSubprogramDIE(CompileUnit *DW_Unit, |
| 324 | const DISubprogram &SP, |
Bill Wendling | 6679ee4 | 2009-05-18 22:02:36 +0000 | [diff] [blame] | 325 | bool IsConstructor = false, |
| 326 | bool IsInlined = false); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 327 | |
| 328 | /// FindCompileUnit - Get the compile unit for the given descriptor. |
| 329 | /// |
| 330 | CompileUnit &FindCompileUnit(DICompileUnit Unit) const; |
| 331 | |
Bill Wendling | 995f80a | 2009-05-20 23:24:48 +0000 | [diff] [blame] | 332 | /// CreateDbgScopeVariable - Create a new scope variable. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 333 | /// |
Bill Wendling | 995f80a | 2009-05-20 23:24:48 +0000 | [diff] [blame] | 334 | DIE *CreateDbgScopeVariable(DbgVariable *DV, CompileUnit *Unit); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 335 | |
| 336 | /// getOrCreateScope - Returns the scope associated with the given descriptor. |
| 337 | /// |
| 338 | DbgScope *getOrCreateScope(GlobalVariable *V); |
| 339 | |
| 340 | /// ConstructDbgScope - Construct the components of a scope. |
| 341 | /// |
| 342 | void ConstructDbgScope(DbgScope *ParentScope, |
| 343 | unsigned ParentStartID, unsigned ParentEndID, |
| 344 | DIE *ParentDie, CompileUnit *Unit); |
| 345 | |
| 346 | /// ConstructFunctionDbgScope - Construct the scope for the subprogram. |
| 347 | /// |
Bill Wendling | 1795616 | 2009-05-20 23:28:48 +0000 | [diff] [blame] | 348 | void ConstructFunctionDbgScope(DbgScope *RootScope, |
| 349 | bool AbstractScope = false); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 350 | |
| 351 | /// ConstructDefaultDbgScope - Construct a default scope for the subprogram. |
| 352 | /// |
| 353 | void ConstructDefaultDbgScope(MachineFunction *MF); |
| 354 | |
| 355 | /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc |
| 356 | /// tools to recognize the object file contains Dwarf information. |
| 357 | void EmitInitial(); |
| 358 | |
| 359 | /// EmitDIE - Recusively Emits a debug information entry. |
| 360 | /// |
| 361 | void EmitDIE(DIE *Die); |
| 362 | |
| 363 | /// SizeAndOffsetDie - Compute the size and offset of a DIE. |
| 364 | /// |
| 365 | unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last); |
| 366 | |
| 367 | /// SizeAndOffsets - Compute the size and offset of all the DIEs. |
| 368 | /// |
| 369 | void SizeAndOffsets(); |
| 370 | |
| 371 | /// EmitDebugInfo / EmitDebugInfoPerCU - Emit the debug info section. |
| 372 | /// |
| 373 | void EmitDebugInfoPerCU(CompileUnit *Unit); |
| 374 | |
| 375 | void EmitDebugInfo(); |
| 376 | |
| 377 | /// EmitAbbreviations - Emit the abbreviation section. |
| 378 | /// |
| 379 | void EmitAbbreviations() const; |
| 380 | |
| 381 | /// EmitEndOfLineMatrix - Emit the last address of the section and the end of |
| 382 | /// the line matrix. |
| 383 | /// |
| 384 | void EmitEndOfLineMatrix(unsigned SectionEnd); |
| 385 | |
| 386 | /// EmitDebugLines - Emit source line information. |
| 387 | /// |
| 388 | void EmitDebugLines(); |
| 389 | |
| 390 | /// EmitCommonDebugFrame - Emit common frame info into a debug frame section. |
| 391 | /// |
| 392 | void EmitCommonDebugFrame(); |
| 393 | |
| 394 | /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame |
| 395 | /// section. |
| 396 | void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo); |
| 397 | |
| 398 | void EmitDebugPubNamesPerCU(CompileUnit *Unit); |
| 399 | |
| 400 | /// EmitDebugPubNames - Emit visible names into a debug pubnames section. |
| 401 | /// |
| 402 | void EmitDebugPubNames(); |
| 403 | |
| 404 | /// EmitDebugStr - Emit visible names into a debug str section. |
| 405 | /// |
| 406 | void EmitDebugStr(); |
| 407 | |
| 408 | /// EmitDebugLoc - Emit visible names into a debug loc section. |
| 409 | /// |
| 410 | void EmitDebugLoc(); |
| 411 | |
| 412 | /// EmitDebugARanges - Emit visible names into a debug aranges section. |
| 413 | /// |
| 414 | void EmitDebugARanges(); |
| 415 | |
| 416 | /// EmitDebugRanges - Emit visible names into a debug ranges section. |
| 417 | /// |
| 418 | void EmitDebugRanges(); |
| 419 | |
| 420 | /// EmitDebugMacInfo - Emit visible names into a debug macinfo section. |
| 421 | /// |
| 422 | void EmitDebugMacInfo(); |
| 423 | |
| 424 | /// EmitDebugInlineInfo - Emit inline info using following format. |
| 425 | /// Section Header: |
| 426 | /// 1. length of section |
| 427 | /// 2. Dwarf version number |
| 428 | /// 3. address size. |
| 429 | /// |
| 430 | /// Entries (one "entry" for each function that was inlined): |
| 431 | /// |
| 432 | /// 1. offset into __debug_str section for MIPS linkage name, if exists; |
| 433 | /// otherwise offset into __debug_str for regular function name. |
| 434 | /// 2. offset into __debug_str section for regular function name. |
| 435 | /// 3. an unsigned LEB128 number indicating the number of distinct inlining |
| 436 | /// instances for the function. |
| 437 | /// |
| 438 | /// The rest of the entry consists of a {die_offset, low_pc} pair for each |
| 439 | /// inlined instance; the die_offset points to the inlined_subroutine die in |
| 440 | /// the __debug_info section, and the low_pc is the starting address for the |
| 441 | /// inlining instance. |
| 442 | void EmitDebugInlineInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 443 | |
| 444 | /// GetOrCreateSourceID - Look up the source id with the given directory and |
| 445 | /// source file names. If none currently exists, create a new id and insert it |
| 446 | /// in the SourceIds map. This can update DirectoryNames and SourceFileNames maps |
| 447 | /// as well. |
| 448 | unsigned GetOrCreateSourceID(const std::string &DirName, |
| 449 | const std::string &FileName); |
| 450 | |
| 451 | void ConstructCompileUnit(GlobalVariable *GV); |
| 452 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 453 | void ConstructGlobalVariableDIE(GlobalVariable *GV); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 454 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 455 | void ConstructSubprogram(GlobalVariable *GV); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 456 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 457 | public: |
| 458 | //===--------------------------------------------------------------------===// |
| 459 | // Main entry points. |
| 460 | // |
| 461 | DwarfDebug(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T); |
| 462 | virtual ~DwarfDebug(); |
| 463 | |
| 464 | /// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should |
| 465 | /// be emitted. |
| 466 | bool ShouldEmitDwarfDebug() const { return shouldEmit; } |
| 467 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 468 | /// BeginModule - Emit all Dwarf sections that should come prior to the |
| 469 | /// content. |
Devang Patel | 208622d | 2009-06-25 22:36:02 +0000 | [diff] [blame] | 470 | void BeginModule(Module *M, MachineModuleInfo *MMI); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 471 | |
| 472 | /// EndModule - Emit all Dwarf sections that should come after the content. |
| 473 | /// |
| 474 | void EndModule(); |
| 475 | |
| 476 | /// BeginFunction - Gather pre-function debug information. Assumes being |
| 477 | /// emitted immediately after the function entry point. |
| 478 | void BeginFunction(MachineFunction *MF); |
| 479 | |
| 480 | /// EndFunction - Gather and emit post-function debug information. |
| 481 | /// |
| 482 | void EndFunction(MachineFunction *MF); |
| 483 | |
| 484 | /// RecordSourceLine - Records location information and associates it with a |
| 485 | /// label. Returns a unique label ID used to generate a label and provide |
| 486 | /// correspondence to the source line list. |
| 487 | unsigned RecordSourceLine(Value *V, unsigned Line, unsigned Col); |
| 488 | |
| 489 | /// RecordSourceLine - Records location information and associates it with a |
| 490 | /// label. Returns a unique label ID used to generate a label and provide |
| 491 | /// correspondence to the source line list. |
| 492 | unsigned RecordSourceLine(unsigned Line, unsigned Col, DICompileUnit CU); |
| 493 | |
| 494 | /// getRecordSourceLineCount - Return the number of source lines in the debug |
| 495 | /// info. |
| 496 | unsigned getRecordSourceLineCount() const { |
| 497 | return Lines.size(); |
| 498 | } |
| 499 | |
| 500 | /// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be |
| 501 | /// timed. Look up the source id with the given directory and source file |
| 502 | /// names. If none currently exists, create a new id and insert it in the |
| 503 | /// SourceIds map. This can update DirectoryNames and SourceFileNames maps as |
| 504 | /// well. |
| 505 | unsigned getOrCreateSourceID(const std::string &DirName, |
| 506 | const std::string &FileName); |
| 507 | |
| 508 | /// RecordRegionStart - Indicate the start of a region. |
| 509 | unsigned RecordRegionStart(GlobalVariable *V); |
| 510 | |
| 511 | /// RecordRegionEnd - Indicate the end of a region. |
| 512 | unsigned RecordRegionEnd(GlobalVariable *V); |
| 513 | |
| 514 | /// RecordVariable - Indicate the declaration of a local variable. |
Devang Patel | 24f20e0 | 2009-08-22 17:12:53 +0000 | [diff] [blame] | 515 | void RecordVariable(GlobalVariable *GV, unsigned FrameIndex); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 516 | |
| 517 | //// RecordInlinedFnStart - Indicate the start of inlined subroutine. |
| 518 | unsigned RecordInlinedFnStart(DISubprogram &SP, DICompileUnit CU, |
| 519 | unsigned Line, unsigned Col); |
| 520 | |
| 521 | /// RecordInlinedFnEnd - Indicate the end of inlined subroutine. |
| 522 | unsigned RecordInlinedFnEnd(DISubprogram &SP); |
| 523 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 524 | }; |
| 525 | |
| 526 | } // End of namespace llvm |
| 527 | |
| 528 | #endif |