2017-08-17 21:26:39 +00:00
|
|
|
//===- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit -----*- C++ -*-===//
|
2014-10-04 15:49:50 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-10-04 15:49:50 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains support for writing dwarf compile unit.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
|
2017-08-17 21:26:39 +00:00
|
|
|
#include "DwarfDebug.h"
|
2014-10-04 15:49:50 +00:00
|
|
|
#include "DwarfUnit.h"
|
2017-08-17 21:26:39 +00:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-06-07 03:48:56 +00:00
|
|
|
#include "llvm/BinaryFormat/Dwarf.h"
|
2018-12-18 23:10:17 +00:00
|
|
|
#include "llvm/CodeGen/DbgEntityHistoryCalculator.h"
|
2017-08-17 21:26:39 +00:00
|
|
|
#include "llvm/CodeGen/LexicalScopes.h"
|
|
|
|
#include "llvm/IR/DebugInfoMetadata.h"
|
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2014-10-04 15:49:50 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class AsmPrinter;
|
2020-07-22 19:00:28 +01:00
|
|
|
class DIE;
|
|
|
|
class DIELoc;
|
|
|
|
class DIEValueList;
|
2014-10-04 15:49:50 +00:00
|
|
|
class DwarfFile;
|
2017-08-17 21:26:39 +00:00
|
|
|
class GlobalVariable;
|
|
|
|
class MCExpr;
|
2014-10-04 15:49:50 +00:00
|
|
|
class MCSymbol;
|
2017-08-17 21:26:39 +00:00
|
|
|
class MDNode;
|
2014-10-04 15:49:50 +00:00
|
|
|
|
2019-11-30 23:48:32 +03:00
|
|
|
enum class UnitKind { Skeleton, Full };
|
|
|
|
|
2017-04-22 02:18:00 +00:00
|
|
|
class DwarfCompileUnit final : public DwarfUnit {
|
2016-02-11 19:57:46 +00:00
|
|
|
/// A numeric ID unique among all CUs in the module
|
|
|
|
unsigned UniqueID;
|
2018-10-20 07:36:39 +00:00
|
|
|
bool HasRangeLists = false;
|
2016-02-11 19:57:46 +00:00
|
|
|
|
2020-04-05 00:59:11 +05:30
|
|
|
/// The start of the unit line section, this is also
|
|
|
|
/// reused in appyStmtList.
|
|
|
|
MCSymbol *LineTableStartSym;
|
2014-10-04 15:49:50 +00:00
|
|
|
|
2014-11-01 18:18:07 +00:00
|
|
|
/// Skeleton unit associated with this unit.
|
2017-08-17 21:26:39 +00:00
|
|
|
DwarfCompileUnit *Skeleton = nullptr;
|
2014-11-01 18:18:07 +00:00
|
|
|
|
2014-11-02 01:21:40 +00:00
|
|
|
/// The start of the unit within its section.
|
2020-08-10 15:56:30 +07:00
|
|
|
MCSymbol *LabelBegin = nullptr;
|
2014-11-02 01:21:40 +00:00
|
|
|
|
2016-02-01 14:09:41 +00:00
|
|
|
/// The start of the unit macro info within macro section.
|
|
|
|
MCSymbol *MacroLabelBegin;
|
|
|
|
|
2021-12-23 18:10:52 +02:00
|
|
|
using ImportedEntityList = SmallVector<const MDNode *, 8>;
|
|
|
|
using ImportedEntityMap = DenseMap<const MDNode *, ImportedEntityList>;
|
|
|
|
|
|
|
|
ImportedEntityMap ImportedEntities;
|
|
|
|
|
2014-11-02 06:16:39 +00:00
|
|
|
/// GlobalNames - A map of globally visible named entities for this unit.
|
|
|
|
StringMap<const DIE *> GlobalNames;
|
|
|
|
|
|
|
|
/// GlobalTypes - A map of globally visible types for this unit.
|
|
|
|
StringMap<const DIE *> GlobalTypes;
|
|
|
|
|
2014-11-03 16:40:43 +00:00
|
|
|
// List of ranges for a given compile unit.
|
2014-11-03 23:10:59 +00:00
|
|
|
SmallVector<RangeSpan, 2> CURanges;
|
2014-11-03 16:40:43 +00:00
|
|
|
|
2014-11-03 21:15:30 +00:00
|
|
|
// The base address of this unit, if any. Used for relative references in
|
|
|
|
// ranges/locs.
|
2017-08-17 21:26:39 +00:00
|
|
|
const MCSymbol *BaseAddress = nullptr;
|
2014-11-03 21:15:30 +00:00
|
|
|
|
2021-12-23 18:10:52 +02:00
|
|
|
DenseMap<const MDNode *, DIE *> AbstractSPDies;
|
2018-08-17 15:22:04 +00:00
|
|
|
DenseMap<const DINode *, std::unique_ptr<DbgEntity>> AbstractEntities;
|
2017-05-12 01:13:45 +00:00
|
|
|
|
2018-05-22 17:27:31 +00:00
|
|
|
/// DWO ID for correlating skeleton and split units.
|
|
|
|
uint64_t DWOId = 0;
|
|
|
|
|
2022-01-24 14:29:05 +01:00
|
|
|
const DIFile *LastFile = nullptr;
|
|
|
|
unsigned LastFileID;
|
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Construct a DIE for the given DbgVariable without initializing the
|
2014-10-09 17:56:36 +00:00
|
|
|
/// DbgVariable's DIE reference.
|
2015-06-25 23:52:10 +00:00
|
|
|
DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract);
|
2014-10-09 17:56:36 +00:00
|
|
|
|
2014-11-02 08:51:37 +00:00
|
|
|
bool isDwoUnit() const override;
|
|
|
|
|
2021-12-23 18:10:52 +02:00
|
|
|
DenseMap<const MDNode *, DIE *> &getAbstractSPDies() {
|
2017-05-12 01:13:45 +00:00
|
|
|
if (isDwoUnit() && !DD->shareAcrossDWOCUs())
|
2021-12-23 18:10:52 +02:00
|
|
|
return AbstractSPDies;
|
|
|
|
return DU->getAbstractSPDies();
|
2017-05-12 01:13:45 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:22:04 +00:00
|
|
|
DenseMap<const DINode *, std::unique_ptr<DbgEntity>> &getAbstractEntities() {
|
2017-05-12 01:13:45 +00:00
|
|
|
if (isDwoUnit() && !DD->shareAcrossDWOCUs())
|
2018-08-17 15:22:04 +00:00
|
|
|
return AbstractEntities;
|
|
|
|
return DU->getAbstractEntities();
|
2017-05-12 01:13:45 +00:00
|
|
|
}
|
|
|
|
|
2019-04-24 18:09:44 +00:00
|
|
|
void finishNonUnitTypeDIE(DIE& D, const DICompositeType *CTy) override;
|
|
|
|
|
2014-10-04 15:49:50 +00:00
|
|
|
public:
|
2015-04-29 16:38:44 +00:00
|
|
|
DwarfCompileUnit(unsigned UID, const DICompileUnit *Node, AsmPrinter *A,
|
2019-11-30 23:48:32 +03:00
|
|
|
DwarfDebug *DW, DwarfFile *DWU,
|
|
|
|
UnitKind Kind = UnitKind::Full);
|
2014-10-04 15:49:50 +00:00
|
|
|
|
2018-10-20 07:36:39 +00:00
|
|
|
bool hasRangeLists() const { return HasRangeLists; }
|
2016-02-11 19:57:46 +00:00
|
|
|
unsigned getUniqueID() const { return UniqueID; }
|
|
|
|
|
2014-11-01 00:50:34 +00:00
|
|
|
DwarfCompileUnit *getSkeleton() const {
|
2014-11-01 19:26:05 +00:00
|
|
|
return Skeleton;
|
2014-11-01 00:50:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 18:50:28 +00:00
|
|
|
bool includeMinimalInlineScopes() const;
|
|
|
|
|
2015-03-10 16:58:10 +00:00
|
|
|
void initStmtList();
|
2014-10-04 15:49:50 +00:00
|
|
|
|
|
|
|
/// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
|
|
|
|
void applyStmtList(DIE &D);
|
|
|
|
|
2020-04-05 00:59:11 +05:30
|
|
|
/// Get line table start symbol for this unit.
|
|
|
|
MCSymbol *getLineTableStartSym() const { return LineTableStartSym; }
|
|
|
|
|
2016-12-20 02:09:43 +00:00
|
|
|
/// A pair of GlobalVariable and DIExpression.
|
|
|
|
struct GlobalExpr {
|
|
|
|
const GlobalVariable *Var;
|
|
|
|
const DIExpression *Expr;
|
|
|
|
};
|
|
|
|
|
2019-03-19 13:16:28 +00:00
|
|
|
struct BaseTypeRef {
|
|
|
|
BaseTypeRef(unsigned BitSize, dwarf::TypeKind Encoding) :
|
|
|
|
BitSize(BitSize), Encoding(Encoding) {}
|
|
|
|
unsigned BitSize;
|
|
|
|
dwarf::TypeKind Encoding;
|
|
|
|
DIE *Die = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<BaseTypeRef> ExprRefedBaseTypes;
|
|
|
|
|
2016-12-20 02:09:43 +00:00
|
|
|
/// Get or create global variable DIE.
|
|
|
|
DIE *
|
|
|
|
getOrCreateGlobalVariableDIE(const DIGlobalVariable *GV,
|
|
|
|
ArrayRef<GlobalExpr> GlobalExprs);
|
2014-10-04 15:49:50 +00:00
|
|
|
|
Add LLVM IR debug info support for Fortran COMMON blocks
COMMON blocks are a feature of Fortran that has no direct analog in C languages, but they are similar to data sections in assembly language programming. A COMMON block is a named area of memory that holds a collection of variables. Fortran subprograms may map the COMMON block memory area to their own, possibly distinct, non-empty list of variables. A Fortran COMMON block might look like the following example.
COMMON /ALPHA/ I, J
For this construct, the compiler generates a new scope-like DI construct (!DICommonBlock) into which variables (see I, J above) can be placed. As the common block implies a range of storage with global lifetime, the !DICommonBlock refers to a !DIGlobalVariable. The Fortran variable that comprise the COMMON block are also linked via metadata to offsets within the global variable that stands for the entire common block.
@alpha_ = common global %alphabytes_ zeroinitializer, align 64, !dbg !27, !dbg !30, !dbg !33
!14 = distinct !DISubprogram(…)
!20 = distinct !DICommonBlock(scope: !14, declaration: !25, name: "alpha")
!25 = distinct !DIGlobalVariable(scope: !20, name: "common alpha", type: !24)
!27 = !DIGlobalVariableExpression(var: !25, expr: !DIExpression())
!29 = distinct !DIGlobalVariable(scope: !20, name: "i", file: !3, type: !28)
!30 = !DIGlobalVariableExpression(var: !29, expr: !DIExpression())
!31 = distinct !DIGlobalVariable(scope: !20, name: "j", file: !3, type: !28)
!32 = !DIExpression(DW_OP_plus_uconst, 4)
!33 = !DIGlobalVariableExpression(var: !31, expr: !32)
The DWARF generated for this is as follows.
DW_TAG_common_block:
DW_AT_name: alpha
DW_AT_location: @alpha_+0
DW_TAG_variable:
DW_AT_name: common alpha
DW_AT_type: array of 8 bytes
DW_AT_location: @alpha_+0
DW_TAG_variable:
DW_AT_name: i
DW_AT_type: integer*4
DW_AT_location: @Alpha+0
DW_TAG_variable:
DW_AT_name: j
DW_AT_type: integer*4
DW_AT_location: @Alpha+4
Patch by Eric Schweitz!
Differential Revision: https://reviews.llvm.org/D54327
llvm-svn: 357934
2019-04-08 19:13:55 +00:00
|
|
|
DIE *getOrCreateCommonBlock(const DICommonBlock *CB,
|
|
|
|
ArrayRef<GlobalExpr> GlobalExprs);
|
|
|
|
|
|
|
|
void addLocationAttribute(DIE *ToDIE, const DIGlobalVariable *GV,
|
|
|
|
ArrayRef<GlobalExpr> GlobalExprs);
|
|
|
|
|
2014-10-04 15:49:50 +00:00
|
|
|
/// addLabelAddress - Add a dwarf label attribute data and value using
|
|
|
|
/// either DW_FORM_addr or DW_FORM_GNU_addr_index.
|
|
|
|
void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
|
|
|
|
const MCSymbol *Label);
|
|
|
|
|
|
|
|
/// addLocalLabelAddress - Add a dwarf label attribute data and value using
|
|
|
|
/// DW_FORM_addr only.
|
|
|
|
void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
|
|
|
|
const MCSymbol *Label);
|
|
|
|
|
|
|
|
DwarfCompileUnit &getCU() override { return *this; }
|
|
|
|
|
2018-01-12 19:17:50 +00:00
|
|
|
unsigned getOrCreateSourceID(const DIFile *File) override;
|
2014-10-04 15:49:50 +00:00
|
|
|
|
2021-12-23 18:10:52 +02:00
|
|
|
void addImportedEntity(const DIImportedEntity* IE) {
|
|
|
|
DIScope *Scope = IE->getScope();
|
|
|
|
assert(Scope && "Invalid Scope encoding!");
|
|
|
|
if (!isa<DILocalScope>(Scope))
|
|
|
|
// No need to add imported enities that are not local declaration.
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto *LocalScope = cast<DILocalScope>(Scope)->getNonLexicalBlockFileScope();
|
|
|
|
ImportedEntities[LocalScope].push_back(IE);
|
|
|
|
}
|
|
|
|
|
2014-10-04 15:49:50 +00:00
|
|
|
/// addRange - Add an address range to the list of ranges for this unit.
|
|
|
|
void addRange(RangeSpan Range);
|
2014-10-04 15:58:47 +00:00
|
|
|
|
|
|
|
void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End);
|
2014-10-04 16:24:00 +00:00
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Find DIE for the given subprogram and attach appropriate
|
2014-10-04 16:24:00 +00:00
|
|
|
/// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
|
|
|
|
/// variables in this scope then create and insert DIEs for these
|
|
|
|
/// variables.
|
2015-04-29 16:38:44 +00:00
|
|
|
DIE &updateSubprogramScopeDIE(const DISubprogram *SP);
|
2014-10-08 22:20:02 +00:00
|
|
|
|
2021-11-27 17:56:40 +02:00
|
|
|
void constructScopeDIE(LexicalScope *Scope, DIE &ParentScopeDIE);
|
2014-10-09 00:11:39 +00:00
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// A helper function to construct a RangeSpanList for a given
|
2014-10-09 00:11:39 +00:00
|
|
|
/// lexical scope.
|
2014-11-03 23:10:59 +00:00
|
|
|
void addScopeRangeList(DIE &ScopeDIE, SmallVector<RangeSpan, 2> Range);
|
|
|
|
|
|
|
|
void attachRangesOrLowHighPC(DIE &D, SmallVector<RangeSpan, 2> Ranges);
|
2014-10-09 00:21:42 +00:00
|
|
|
|
|
|
|
void attachRangesOrLowHighPC(DIE &D,
|
|
|
|
const SmallVectorImpl<InsnRange> &Ranges);
|
2017-08-17 21:26:39 +00:00
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// This scope represents inlined body of a function. Construct
|
2014-10-09 16:50:53 +00:00
|
|
|
/// DIE to represent this concrete inlined copy of the function.
|
2015-06-25 23:52:10 +00:00
|
|
|
DIE *constructInlinedScopeDIE(LexicalScope *Scope);
|
2014-10-09 17:08:42 +00:00
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Construct new DW_TAG_lexical_block for this scope and
|
2014-10-09 17:08:42 +00:00
|
|
|
/// attach DW_AT_low_pc/DW_AT_high_pc labels.
|
2015-06-25 23:52:10 +00:00
|
|
|
DIE *constructLexicalScopeDIE(LexicalScope *Scope);
|
2014-10-09 17:56:36 +00:00
|
|
|
|
|
|
|
/// constructVariableDIE - Construct a DIE for the given DbgVariable.
|
2015-06-25 23:52:10 +00:00
|
|
|
DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false);
|
2014-10-09 17:56:39 +00:00
|
|
|
|
2015-06-25 23:52:10 +00:00
|
|
|
DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope,
|
|
|
|
DIE *&ObjectPointer);
|
2014-10-09 18:24:28 +00:00
|
|
|
|
2018-08-17 15:22:04 +00:00
|
|
|
/// Construct a DIE for the given DbgLabel.
|
|
|
|
DIE *constructLabelDIE(DbgLabel &DL, const LexicalScope &Scope);
|
|
|
|
|
2019-03-19 13:16:28 +00:00
|
|
|
void createBaseTypeDIEs();
|
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Construct a DIE for this subprogram scope.
|
2018-10-05 20:37:17 +00:00
|
|
|
DIE &constructSubprogramScopeDIE(const DISubprogram *Sub,
|
|
|
|
LexicalScope *Scope);
|
2014-10-09 20:26:15 +00:00
|
|
|
|
|
|
|
DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE);
|
2014-10-10 06:39:26 +00:00
|
|
|
|
2014-10-31 21:57:02 +00:00
|
|
|
void constructAbstractSubprogramScopeDIE(LexicalScope *Scope);
|
2014-10-10 06:39:29 +00:00
|
|
|
|
2020-03-17 17:56:28 -07:00
|
|
|
/// Whether to use the GNU analog for a DWARF5 tag, attribute, or location
|
|
|
|
/// atom. Only applicable when emitting otherwise DWARF4-compliant debug info.
|
|
|
|
bool useGNUAnalogForDwarf5Feature() const;
|
|
|
|
|
2019-08-26 20:53:34 +00:00
|
|
|
/// This takes a DWARF 5 tag and returns it or a GNU analog.
|
|
|
|
dwarf::Tag getDwarf5OrGNUTag(dwarf::Tag Tag) const;
|
|
|
|
|
|
|
|
/// This takes a DWARF 5 attribute and returns it or a GNU analog.
|
|
|
|
dwarf::Attribute getDwarf5OrGNUAttr(dwarf::Attribute Attr) const;
|
2019-07-31 16:51:28 +00:00
|
|
|
|
2019-08-26 20:53:12 +00:00
|
|
|
/// This takes a DWARF 5 location atom and either returns it or a GNU analog.
|
|
|
|
dwarf::LocationAtom getDwarf5OrGNULocationAtom(dwarf::LocationAtom Loc) const;
|
|
|
|
|
2018-10-05 20:37:17 +00:00
|
|
|
/// Construct a call site entry DIE describing a call within \p Scope to a
|
2021-08-09 12:40:21 +01:00
|
|
|
/// callee described by \p CalleeSP.
|
2019-07-31 16:51:28 +00:00
|
|
|
/// \p IsTail specifies whether the call is a tail call.
|
2020-01-09 18:00:33 -08:00
|
|
|
/// \p PCAddr points to the PC value after the call instruction.
|
2020-03-17 17:56:28 -07:00
|
|
|
/// \p CallAddr points to the PC value at the call instruction (or is null).
|
2019-07-31 16:51:28 +00:00
|
|
|
/// \p CallReg is a register location for an indirect call. For direct calls
|
|
|
|
/// the \p CallReg is set to 0.
|
2021-08-09 12:40:21 +01:00
|
|
|
DIE &constructCallSiteEntryDIE(DIE &ScopeDIE, const DISubprogram *CalleeSP,
|
|
|
|
bool IsTail, const MCSymbol *PCAddr,
|
2020-03-17 17:56:28 -07:00
|
|
|
const MCSymbol *CallAddr, unsigned CallReg);
|
2019-07-31 16:51:28 +00:00
|
|
|
/// Construct call site parameter DIEs for the \p CallSiteDIE. The \p Params
|
|
|
|
/// were collected by the \ref collectCallSiteParameters.
|
|
|
|
/// Note: The order of parameters does not matter, since debuggers recognize
|
|
|
|
/// call site parameters by the DW_AT_location attribute.
|
|
|
|
void constructCallSiteParmEntryDIEs(DIE &CallSiteDIE,
|
|
|
|
SmallVector<DbgCallSiteParam, 4> &Params);
|
2018-10-05 20:37:17 +00:00
|
|
|
|
2021-12-23 18:10:52 +02:00
|
|
|
/// Construct import_module DIE.
|
|
|
|
DIE *constructImportedEntityDIE(const DIImportedEntity *Module);
|
2014-10-24 21:31:09 +00:00
|
|
|
|
2015-04-29 16:38:44 +00:00
|
|
|
void finishSubprogramDefinition(const DISubprogram *SP);
|
2018-08-17 15:22:04 +00:00
|
|
|
void finishEntityDefinition(const DbgEntity *Entity);
|
2017-08-17 21:26:39 +00:00
|
|
|
|
2017-05-12 01:13:45 +00:00
|
|
|
/// Find abstract variable associated with Var.
|
2018-09-06 02:22:06 +00:00
|
|
|
using InlinedEntity = DbgValueHistoryMap::InlinedEntity;
|
2018-08-17 15:22:04 +00:00
|
|
|
DbgEntity *getExistingAbstractEntity(const DINode *Node);
|
|
|
|
void createAbstractEntity(const DINode *Node, LexicalScope *Scope);
|
2014-10-31 22:30:30 +00:00
|
|
|
|
2014-11-01 18:18:07 +00:00
|
|
|
/// Set the skeleton unit associated with this unit.
|
2014-11-01 19:26:05 +00:00
|
|
|
void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; }
|
2014-11-01 20:06:28 +00:00
|
|
|
|
2018-05-22 17:27:31 +00:00
|
|
|
unsigned getHeaderSize() const override {
|
|
|
|
// DWARF v5 added the DWO ID to the header for split/skeleton units.
|
|
|
|
unsigned DWOIdSize =
|
|
|
|
DD->getDwarfVersion() >= 5 && DD->useSplitDwarf() ? sizeof(uint64_t)
|
|
|
|
: 0;
|
|
|
|
return DwarfUnit::getHeaderSize() + DWOIdSize;
|
|
|
|
}
|
2014-11-01 23:07:14 +00:00
|
|
|
unsigned getLength() {
|
2020-09-15 11:30:30 +07:00
|
|
|
return Asm->getUnitLengthFieldByteSize() + // Length field
|
|
|
|
getHeaderSize() + getUnitDie().getSize();
|
2014-11-01 23:07:14 +00:00
|
|
|
}
|
2014-11-01 23:59:23 +00:00
|
|
|
|
2015-03-10 16:58:10 +00:00
|
|
|
void emitHeader(bool UseOffsets) override;
|
2014-11-02 01:21:40 +00:00
|
|
|
|
2018-12-14 22:34:03 +00:00
|
|
|
/// Add the DW_AT_addr_base attribute to the unit DIE.
|
|
|
|
void addAddrTableBase();
|
|
|
|
|
2014-11-02 01:21:40 +00:00
|
|
|
MCSymbol *getLabelBegin() const {
|
2020-08-10 15:56:30 +07:00
|
|
|
assert(LabelBegin && "LabelBegin is not initialized");
|
2014-11-02 01:21:40 +00:00
|
|
|
return LabelBegin;
|
|
|
|
}
|
2014-11-02 06:16:39 +00:00
|
|
|
|
2016-02-01 14:09:41 +00:00
|
|
|
MCSymbol *getMacroLabelBegin() const {
|
|
|
|
return MacroLabelBegin;
|
|
|
|
}
|
|
|
|
|
2014-11-02 06:16:39 +00:00
|
|
|
/// Add a new global name to the compile unit.
|
2017-02-03 00:44:18 +00:00
|
|
|
void addGlobalName(StringRef Name, const DIE &Die,
|
|
|
|
const DIScope *Context) override;
|
|
|
|
|
|
|
|
/// Add a new global name present in a type unit to this compile unit.
|
|
|
|
void addGlobalNameForTypeUnit(StringRef Name, const DIScope *Context);
|
2014-11-02 06:16:39 +00:00
|
|
|
|
|
|
|
/// Add a new global type to the compile unit.
|
2015-04-29 16:38:44 +00:00
|
|
|
void addGlobalType(const DIType *Ty, const DIE &Die,
|
|
|
|
const DIScope *Context) override;
|
2014-11-02 06:16:39 +00:00
|
|
|
|
2017-02-03 00:44:18 +00:00
|
|
|
/// Add a new global type present in a type unit to this compile unit.
|
|
|
|
void addGlobalTypeUnitType(const DIType *Ty, const DIScope *Context);
|
|
|
|
|
2014-11-02 06:16:39 +00:00
|
|
|
const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
|
|
|
|
const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
|
2014-11-02 06:37:23 +00:00
|
|
|
|
|
|
|
/// Add DW_AT_location attribute for a DbgVariable based on provided
|
|
|
|
/// MachineLocation.
|
|
|
|
void addVariableAddress(const DbgVariable &DV, DIE &Die,
|
|
|
|
MachineLocation Location);
|
2014-11-02 06:46:40 +00:00
|
|
|
/// Add an address attribute to a die based on the location provided.
|
|
|
|
void addAddress(DIE &Die, dwarf::Attribute Attribute,
|
2015-01-19 17:57:29 +00:00
|
|
|
const MachineLocation &Location);
|
2014-11-02 06:58:44 +00:00
|
|
|
|
|
|
|
/// Start with the address based on the location provided, and generate the
|
|
|
|
/// DWARF information necessary to find the actual variable (navigating the
|
|
|
|
/// extra location information encoded in the type) based on the starting
|
|
|
|
/// location. Add the DWARF information to the die.
|
|
|
|
void addComplexAddress(const DbgVariable &DV, DIE &Die,
|
|
|
|
dwarf::Attribute Attribute,
|
|
|
|
const MachineLocation &Location);
|
2014-11-02 07:03:19 +00:00
|
|
|
|
|
|
|
/// Add a Dwarf loclistptr attribute data and value.
|
|
|
|
void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index);
|
2014-11-02 07:06:51 +00:00
|
|
|
void applyVariableAttributes(const DbgVariable &Var, DIE &VariableDie);
|
2014-11-02 07:11:55 +00:00
|
|
|
|
|
|
|
/// Add a Dwarf expression attribute data and value.
|
|
|
|
void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
|
2014-11-02 08:09:09 +00:00
|
|
|
|
2015-04-29 16:38:44 +00:00
|
|
|
void applySubprogramAttributesToDefinition(const DISubprogram *SP,
|
2015-04-20 22:10:08 +00:00
|
|
|
DIE &SPDie);
|
2014-11-03 02:41:49 +00:00
|
|
|
|
2018-08-17 15:22:04 +00:00
|
|
|
void applyLabelAttributes(const DbgLabel &Label, DIE &LabelDie);
|
|
|
|
|
2014-11-03 16:40:43 +00:00
|
|
|
/// getRanges - Get the list of ranges for this unit.
|
|
|
|
const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
|
2014-11-03 23:10:59 +00:00
|
|
|
SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); }
|
2014-11-03 21:15:30 +00:00
|
|
|
|
|
|
|
void setBaseAddress(const MCSymbol *Base) { BaseAddress = Base; }
|
|
|
|
const MCSymbol *getBaseAddress() const { return BaseAddress; }
|
2017-09-12 21:50:41 +00:00
|
|
|
|
2018-05-22 17:27:31 +00:00
|
|
|
uint64_t getDWOId() const { return DWOId; }
|
|
|
|
void setDWOId(uint64_t DwoId) { DWOId = DwoId; }
|
|
|
|
|
2017-09-12 21:50:41 +00:00
|
|
|
bool hasDwarfPubSections() const;
|
2019-03-19 13:16:28 +00:00
|
|
|
|
|
|
|
void addBaseTypeRef(DIEValueList &Die, int64_t Idx);
|
2014-10-04 15:49:50 +00:00
|
|
|
};
|
|
|
|
|
2017-08-17 21:26:39 +00:00
|
|
|
} // end namespace llvm
|
2014-10-04 15:49:50 +00:00
|
|
|
|
2017-08-17 21:26:39 +00:00
|
|
|
#endif // LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|