David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit ---*- 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 compile unit. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H |
| 15 | #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H |
| 16 | |
| 17 | #include "DwarfUnit.h" |
| 18 | #include "llvm/Support/Dwarf.h" |
| 19 | #include "llvm/ADT/StringRef.h" |
| 20 | #include "llvm/IR/DebugInfo.h" |
| 21 | |
| 22 | namespace llvm { |
| 23 | |
| 24 | class AsmPrinter; |
| 25 | class DIE; |
| 26 | class DwarfDebug; |
| 27 | class DwarfFile; |
| 28 | class MCSymbol; |
David Blaikie | 9c65b13 | 2014-10-08 22:20:02 +0000 | [diff] [blame] | 29 | class LexicalScope; |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 30 | |
| 31 | class DwarfCompileUnit : public DwarfUnit { |
| 32 | /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding |
| 33 | /// the need to search for it in applyStmtList. |
| 34 | unsigned stmtListIndex; |
| 35 | |
| 36 | public: |
| 37 | DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A, |
| 38 | DwarfDebug *DW, DwarfFile *DWU); |
| 39 | |
| 40 | void initStmtList(MCSymbol *DwarfLineSectionSym); |
| 41 | |
| 42 | /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE. |
| 43 | void applyStmtList(DIE &D); |
| 44 | |
| 45 | /// getOrCreateGlobalVariableDIE - get or create global variable DIE. |
| 46 | DIE *getOrCreateGlobalVariableDIE(DIGlobalVariable GV); |
| 47 | |
| 48 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 49 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 50 | void addLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 51 | const MCSymbol *Label); |
| 52 | |
| 53 | /// addLocalLabelAddress - Add a dwarf label attribute data and value using |
| 54 | /// DW_FORM_addr only. |
| 55 | void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 56 | const MCSymbol *Label); |
| 57 | |
David Blaikie | e5feec5 | 2014-10-08 23:30:05 +0000 | [diff] [blame] | 58 | /// addSectionDelta - Add a label delta attribute data and value. |
| 59 | void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi, |
| 60 | const MCSymbol *Lo); |
| 61 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 62 | DwarfCompileUnit &getCU() override { return *this; } |
| 63 | |
| 64 | unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override; |
| 65 | |
| 66 | /// addRange - Add an address range to the list of ranges for this unit. |
| 67 | void addRange(RangeSpan Range); |
David Blaikie | 14499a7 | 2014-10-04 15:58:47 +0000 | [diff] [blame] | 68 | |
| 69 | void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End); |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 70 | |
David Blaikie | 6c0ee4e | 2014-10-08 22:46:27 +0000 | [diff] [blame] | 71 | /// addSectionLabel - Add a Dwarf section label attribute data and value. |
| 72 | /// |
| 73 | void addSectionLabel(DIE &Die, dwarf::Attribute Attribute, |
| 74 | const MCSymbol *Label, const MCSymbol *Sec); |
| 75 | |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 76 | /// \brief Find DIE for the given subprogram and attach appropriate |
| 77 | /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global |
| 78 | /// variables in this scope then create and insert DIEs for these |
| 79 | /// variables. |
| 80 | DIE &updateSubprogramScopeDIE(DISubprogram SP); |
David Blaikie | 9c65b13 | 2014-10-08 22:20:02 +0000 | [diff] [blame] | 81 | |
| 82 | void constructScopeDIE(LexicalScope *Scope, |
| 83 | SmallVectorImpl<std::unique_ptr<DIE>> &FinalChildren); |
David Blaikie | 5240020 | 2014-10-09 00:11:39 +0000 | [diff] [blame] | 84 | |
| 85 | /// \brief A helper function to construct a RangeSpanList for a given |
| 86 | /// lexical scope. |
| 87 | void addScopeRangeList(DIE &ScopeDIE, |
| 88 | const SmallVectorImpl<InsnRange> &Range); |
David Blaikie | de12375 | 2014-10-09 00:21:42 +0000 | [diff] [blame] | 89 | |
| 90 | void attachRangesOrLowHighPC(DIE &D, |
| 91 | const SmallVectorImpl<InsnRange> &Ranges); |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | } // end llvm namespace |
| 95 | |
| 96 | #endif |