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