2017-08-17 21:26:39 +00:00
|
|
|
//===- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit -----*- C++ -*-===//
|
2014-10-04 15:49:50 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains support for writing dwarf compile unit.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
|
2018-08-17 15:22:04 +00:00
|
|
|
#include "DbgEntityHistoryCalculator.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"
|
2017-08-17 21:26:39 +00:00
|
|
|
#include "llvm/CodeGen/DIE.h"
|
|
|
|
#include "llvm/CodeGen/LexicalScopes.h"
|
|
|
|
#include "llvm/IR/DebugInfoMetadata.h"
|
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2014-10-04 15:49:50 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class AsmPrinter;
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
|
2014-10-04 15:49:50 +00:00
|
|
|
/// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding
|
|
|
|
/// the need to search for it in applyStmtList.
|
2015-06-25 23:46:41 +00:00
|
|
|
DIE::value_iterator StmtListValue;
|
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.
|
|
|
|
MCSymbol *LabelBegin;
|
|
|
|
|
2016-02-01 14:09:41 +00:00
|
|
|
/// The start of the unit macro info within macro section.
|
|
|
|
MCSymbol *MacroLabelBegin;
|
|
|
|
|
2017-08-17 21:26:39 +00:00
|
|
|
using ImportedEntityList = SmallVector<const MDNode *, 8>;
|
|
|
|
using ImportedEntityMap = DenseMap<const MDNode *, ImportedEntityList>;
|
2015-10-26 21:36:35 +00:00
|
|
|
|
2016-04-30 01:44:07 +00:00
|
|
|
ImportedEntityMap ImportedEntities;
|
2015-10-26 21:36:35 +00:00
|
|
|
|
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 02:41:49 +00:00
|
|
|
// List of range lists for a given compile unit, separate from the ranges for
|
|
|
|
// the CU itself.
|
|
|
|
SmallVector<RangeSpanList, 1> CURangeLists;
|
|
|
|
|
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
|
|
|
|
2017-05-12 01:13:45 +00: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;
|
|
|
|
|
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;
|
|
|
|
|
2017-05-12 01:13:45 +00:00
|
|
|
DenseMap<const MDNode *, DIE *> &getAbstractSPDies() {
|
|
|
|
if (isDwoUnit() && !DD->shareAcrossDWOCUs())
|
|
|
|
return AbstractSPDies;
|
|
|
|
return DU->getAbstractSPDies();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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,
|
2014-10-04 15:49:50 +00:00
|
|
|
DwarfDebug *DW, DwarfFile *DWU);
|
|
|
|
|
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);
|
|
|
|
|
2016-12-20 02:09:43 +00:00
|
|
|
/// A pair of GlobalVariable and DIExpression.
|
|
|
|
struct GlobalExpr {
|
|
|
|
const GlobalVariable *Var;
|
|
|
|
const DIExpression *Expr;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Get or create global variable DIE.
|
|
|
|
DIE *
|
|
|
|
getOrCreateGlobalVariableDIE(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
|
|
|
|
2016-04-30 01:44:07 +00:00
|
|
|
void addImportedEntity(const DIImportedEntity* IE) {
|
|
|
|
DIScope *Scope = IE->getScope();
|
2016-04-21 16:58:49 +00:00
|
|
|
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();
|
2016-04-30 01:44:07 +00:00
|
|
|
ImportedEntities[LocalScope].push_back(IE);
|
2015-10-26 21:36:35 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
void constructScopeDIE(LexicalScope *Scope,
|
2015-06-25 23:52:10 +00:00
|
|
|
SmallVectorImpl<DIE *> &FinalChildren);
|
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);
|
|
|
|
|
2014-10-09 18:24:28 +00:00
|
|
|
/// A helper function to create children of a Scope DIE.
|
|
|
|
DIE *createScopeChildrenDIE(LexicalScope *Scope,
|
2015-06-25 23:52:10 +00:00
|
|
|
SmallVectorImpl<DIE *> &Children,
|
2017-07-27 00:06:53 +00:00
|
|
|
bool *HasNonScopeChildren = nullptr);
|
2014-10-09 20:21:36 +00:00
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Construct a DIE for this subprogram scope.
|
2016-12-15 23:17:52 +00:00
|
|
|
void 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
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Construct import_module DIE.
|
2015-06-25 23:52:10 +00:00
|
|
|
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() {
|
|
|
|
return sizeof(uint32_t) + // Length field
|
2016-12-01 18:56:29 +00:00
|
|
|
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
|
|
|
|
|
|
|
MCSymbol *getLabelBegin() const {
|
2016-12-01 21:59:09 +00:00
|
|
|
assert(getSection());
|
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 02:41:49 +00:00
|
|
|
/// getRangeLists - Get the vector of range lists.
|
|
|
|
const SmallVectorImpl<RangeSpanList> &getRangeLists() const {
|
2014-11-03 21:52:56 +00:00
|
|
|
return (Skeleton ? Skeleton : this)->CURangeLists;
|
2014-11-03 02:41:49 +00:00
|
|
|
}
|
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;
|
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
|