2013-12-02 19:33:10 +00:00
|
|
|
//===-- llvm/CodeGen/DwarfUnit.h - Dwarf Compile Unit ---*- C++ -*--===//
|
2011-04-12 17:40:32 +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 CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
#define CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
|
|
|
|
|
|
|
#include "DIE.h"
|
2013-10-05 00:27:02 +00:00
|
|
|
#include "DwarfDebug.h"
|
2011-04-12 17:40:32 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2013-10-21 17:28:37 +00:00
|
|
|
#include "llvm/ADT/Optional.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2014-03-18 02:34:52 +00:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2014-03-06 00:22:06 +00:00
|
|
|
#include "llvm/IR/DIBuilder.h"
|
2014-03-06 00:46:21 +00:00
|
|
|
#include "llvm/IR/DebugInfo.h"
|
2013-06-28 20:05:04 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2013-12-06 22:33:05 +00:00
|
|
|
#include "llvm/MC/MCSection.h"
|
2014-03-18 01:17:26 +00:00
|
|
|
#include "llvm/MC/MCDwarf.h"
|
2011-04-12 17:40:32 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
class MachineLocation;
|
|
|
|
class MachineOperand;
|
|
|
|
class ConstantInt;
|
2013-01-20 01:18:01 +00:00
|
|
|
class ConstantFP;
|
2011-04-12 22:53:02 +00:00
|
|
|
class DbgVariable;
|
2014-02-12 00:31:30 +00:00
|
|
|
class DwarfCompileUnit;
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-12-03 00:45:45 +00:00
|
|
|
// Data structure to hold a range for range lists.
|
|
|
|
class RangeSpan {
|
|
|
|
public:
|
|
|
|
RangeSpan(MCSymbol *S, MCSymbol *E) : Start(S), End(E) {}
|
2013-12-04 19:06:58 +00:00
|
|
|
const MCSymbol *getStart() const { return Start; }
|
|
|
|
const MCSymbol *getEnd() const { return End; }
|
2014-03-20 19:16:16 +00:00
|
|
|
void setEnd(const MCSymbol *E) { End = E; }
|
2013-12-03 00:45:45 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const MCSymbol *Start, *End;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RangeSpanList {
|
|
|
|
private:
|
|
|
|
// Index for locating within the debug_range section this particular span.
|
2013-12-04 22:04:50 +00:00
|
|
|
MCSymbol *RangeSym;
|
2013-12-03 00:45:45 +00:00
|
|
|
// List of ranges.
|
|
|
|
SmallVector<RangeSpan, 2> Ranges;
|
|
|
|
|
|
|
|
public:
|
2013-12-04 22:04:50 +00:00
|
|
|
RangeSpanList(MCSymbol *Sym) : RangeSym(Sym) {}
|
|
|
|
MCSymbol *getSym() const { return RangeSym; }
|
2013-12-03 00:45:45 +00:00
|
|
|
const SmallVectorImpl<RangeSpan> &getRanges() const { return Ranges; }
|
|
|
|
void addRange(RangeSpan Range) { Ranges.push_back(Range); }
|
|
|
|
};
|
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2013-12-02 19:33:10 +00:00
|
|
|
/// Unit - This dwarf writer support class manages information associated
|
2011-04-12 17:40:32 +00:00
|
|
|
/// with a source file.
|
2013-12-09 23:32:48 +00:00
|
|
|
class DwarfUnit {
|
2013-12-02 19:33:10 +00:00
|
|
|
protected:
|
2012-12-03 18:45:45 +00:00
|
|
|
/// UniqueID - a numeric ID unique among all CUs in the module
|
|
|
|
unsigned UniqueID;
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2014-01-09 03:03:27 +00:00
|
|
|
/// Node - MDNode for the compile unit.
|
2014-01-09 03:23:41 +00:00
|
|
|
DICompileUnit CUNode;
|
2014-01-09 03:03:27 +00:00
|
|
|
|
2013-12-02 22:09:48 +00:00
|
|
|
/// Unit debug information entry.
|
2014-04-28 21:14:27 +00:00
|
|
|
DIE UnitDie;
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2013-12-02 22:09:48 +00:00
|
|
|
/// Offset of the UnitDie from beginning of debug info section.
|
2013-11-21 01:29:16 +00:00
|
|
|
unsigned DebugInfoOffset;
|
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// Asm - Target of Dwarf emission.
|
|
|
|
AsmPrinter *Asm;
|
|
|
|
|
2012-12-20 21:58:36 +00:00
|
|
|
// Holders for some common dwarf information.
|
2011-04-12 22:53:02 +00:00
|
|
|
DwarfDebug *DD;
|
2013-12-05 18:06:10 +00:00
|
|
|
DwarfFile *DU;
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-12-02 22:09:48 +00:00
|
|
|
/// IndexTyDie - An anonymous type for index type. Owned by UnitDie.
|
2011-04-12 17:40:32 +00:00
|
|
|
DIE *IndexTyDie;
|
|
|
|
|
2013-05-08 00:11:10 +00:00
|
|
|
/// MDNodeToDieMap - Tracks the mapping of unit level debug information
|
2011-04-12 17:40:32 +00:00
|
|
|
/// variables to debug information entries.
|
|
|
|
DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
|
|
|
|
|
2013-05-08 00:11:10 +00:00
|
|
|
/// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information
|
2011-04-12 17:40:32 +00:00
|
|
|
/// descriptors to debug information entries using a DIEEntry proxy.
|
|
|
|
DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
|
|
|
|
|
2013-02-12 18:00:14 +00:00
|
|
|
/// GlobalNames - A map of globally visible named entities for this unit.
|
2013-11-21 00:48:22 +00:00
|
|
|
StringMap<const DIE *> GlobalNames;
|
2013-02-12 18:00:14 +00:00
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
/// GlobalTypes - A map of globally visible types for this unit.
|
2013-11-21 00:48:22 +00:00
|
|
|
StringMap<const DIE *> GlobalTypes;
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// DIEBlocks - A list of all the DIEBlocks in use.
|
|
|
|
std::vector<DIEBlock *> DIEBlocks;
|
2014-02-16 08:46:55 +00:00
|
|
|
|
|
|
|
/// DIELocs - A list of all the DIELocs in use.
|
|
|
|
std::vector<DIELoc *> DIELocs;
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2011-08-15 17:24:54 +00:00
|
|
|
/// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
|
|
|
|
/// need DW_AT_containing_type attribute. This attribute points to a DIE that
|
|
|
|
/// corresponds to the MDNode mapped with the subprogram DIE.
|
|
|
|
DenseMap<DIE *, const MDNode *> ContainingTypeMap;
|
|
|
|
|
2013-12-20 04:16:18 +00:00
|
|
|
// List of ranges for a given compile unit.
|
|
|
|
SmallVector<RangeSpan, 1> CURanges;
|
|
|
|
|
2013-12-03 00:45:45 +00:00
|
|
|
// List of range lists for a given compile unit, separate from the ranges for
|
|
|
|
// the CU itself.
|
2013-12-04 19:06:58 +00:00
|
|
|
SmallVector<RangeSpanList, 1> CURangeLists;
|
2013-12-03 00:45:45 +00:00
|
|
|
|
2013-10-05 00:39:55 +00:00
|
|
|
// DIEValueAllocator - All DIEValues are allocated through this allocator.
|
|
|
|
BumpPtrAllocator DIEValueAllocator;
|
|
|
|
|
|
|
|
// DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
|
|
|
|
DIEInteger *DIEIntegerOne;
|
2013-11-19 23:08:21 +00:00
|
|
|
|
2013-12-06 22:14:48 +00:00
|
|
|
/// The section this unit will be emitted in.
|
|
|
|
const MCSection *Section;
|
|
|
|
|
|
|
|
/// A label at the start of the non-dwo section related to this unit.
|
|
|
|
MCSymbol *SectionSym;
|
|
|
|
|
2013-12-06 22:33:05 +00:00
|
|
|
/// The start of the unit within its section.
|
|
|
|
MCSymbol *LabelBegin;
|
|
|
|
|
|
|
|
/// The end of the unit within its section.
|
|
|
|
MCSymbol *LabelEnd;
|
|
|
|
|
2013-12-30 17:22:27 +00:00
|
|
|
/// Skeleton unit associated with this unit.
|
|
|
|
DwarfUnit *Skeleton;
|
|
|
|
|
2014-04-28 21:14:27 +00:00
|
|
|
DwarfUnit(unsigned UID, dwarf::Tag, DICompileUnit CU, AsmPrinter *A,
|
|
|
|
DwarfDebug *DW, DwarfFile *DWU);
|
2013-12-02 19:33:10 +00:00
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
public:
|
2013-12-09 23:32:48 +00:00
|
|
|
virtual ~DwarfUnit();
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2013-12-30 17:22:27 +00:00
|
|
|
/// Set the skeleton unit associated with this unit.
|
2014-04-22 22:39:41 +00:00
|
|
|
void setSkeleton(DwarfUnit &Skel) { Skeleton = &Skel; }
|
2013-12-30 17:22:27 +00:00
|
|
|
|
|
|
|
/// Get the skeleton unit associated with this unit.
|
|
|
|
DwarfUnit *getSkeleton() const { return Skeleton; }
|
|
|
|
|
2013-12-06 22:14:48 +00:00
|
|
|
/// Pass in the SectionSym even though we could recreate it in every compile
|
|
|
|
/// unit (type units will have actually distinct symbols once they're in
|
|
|
|
/// comdat sections).
|
|
|
|
void initSection(const MCSection *Section, MCSymbol *SectionSym) {
|
|
|
|
assert(!this->Section);
|
|
|
|
this->Section = Section;
|
|
|
|
this->SectionSym = SectionSym;
|
2013-12-06 22:33:05 +00:00
|
|
|
this->LabelBegin =
|
|
|
|
Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID());
|
|
|
|
this->LabelEnd =
|
|
|
|
Asm->GetTempSymbol(Section->getLabelEndName(), getUniqueID());
|
2013-12-06 22:14:48 +00:00
|
|
|
}
|
2013-12-09 17:51:30 +00:00
|
|
|
|
2013-12-06 22:14:48 +00:00
|
|
|
const MCSection *getSection() const {
|
|
|
|
assert(Section);
|
|
|
|
return Section;
|
|
|
|
}
|
|
|
|
|
2013-12-30 17:22:27 +00:00
|
|
|
/// If there's a skeleton then return the section symbol for the skeleton
|
|
|
|
/// unit, otherwise return the section symbol for this unit.
|
|
|
|
MCSymbol *getLocalSectionSym() const {
|
|
|
|
if (Skeleton)
|
|
|
|
return Skeleton->getSectionSym();
|
2014-01-02 21:03:28 +00:00
|
|
|
return getSectionSym();
|
2013-12-30 17:22:27 +00:00
|
|
|
}
|
|
|
|
|
2013-12-06 22:33:05 +00:00
|
|
|
MCSymbol *getSectionSym() const {
|
2013-12-06 22:14:48 +00:00
|
|
|
assert(Section);
|
|
|
|
return SectionSym;
|
|
|
|
}
|
|
|
|
|
2013-12-30 17:22:27 +00:00
|
|
|
/// If there's a skeleton then return the begin label for the skeleton unit,
|
|
|
|
/// otherwise return the local label for this unit.
|
|
|
|
MCSymbol *getLocalLabelBegin() const {
|
|
|
|
if (Skeleton)
|
|
|
|
return Skeleton->getLabelBegin();
|
2014-01-02 21:03:28 +00:00
|
|
|
return getLabelBegin();
|
2013-12-30 17:22:27 +00:00
|
|
|
}
|
|
|
|
|
2013-12-06 22:33:05 +00:00
|
|
|
MCSymbol *getLabelBegin() const {
|
|
|
|
assert(Section);
|
|
|
|
return LabelBegin;
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbol *getLabelEnd() const {
|
|
|
|
assert(Section);
|
|
|
|
return LabelEnd;
|
|
|
|
}
|
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
// Accessors.
|
2013-08-26 23:58:22 +00:00
|
|
|
unsigned getUniqueID() const { return UniqueID; }
|
2014-01-09 03:23:41 +00:00
|
|
|
uint16_t getLanguage() const { return CUNode.getLanguage(); }
|
|
|
|
DICompileUnit getCUNode() const { return CUNode; }
|
2014-04-28 21:14:27 +00:00
|
|
|
DIE &getUnitDie() { return UnitDie; }
|
2013-11-21 00:48:22 +00:00
|
|
|
const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
|
|
|
|
const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2013-10-29 22:57:10 +00:00
|
|
|
unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
|
|
|
|
void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
|
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
/// hasContent - Return true if this compile unit has something to write out.
|
2014-04-28 21:14:27 +00:00
|
|
|
bool hasContent() const { return !UnitDie.getChildren().empty(); }
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2013-12-20 04:16:18 +00:00
|
|
|
/// addRange - Add an address range to the list of ranges for this unit.
|
2014-03-20 19:16:16 +00:00
|
|
|
void addRange(RangeSpan Range);
|
2013-12-20 04:16:18 +00:00
|
|
|
|
|
|
|
/// getRanges - Get the list of ranges for this unit.
|
|
|
|
const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
|
|
|
|
SmallVectorImpl<RangeSpan> &getRanges() { return CURanges; }
|
|
|
|
|
2013-12-03 00:45:45 +00:00
|
|
|
/// addRangeList - Add an address range list to the list of range lists.
|
2013-12-04 19:06:58 +00:00
|
|
|
void addRangeList(RangeSpanList Ranges) { CURangeLists.push_back(Ranges); }
|
2013-12-03 00:45:45 +00:00
|
|
|
|
|
|
|
/// getRangeLists - Get the vector of range lists.
|
2013-12-04 19:06:58 +00:00
|
|
|
const SmallVectorImpl<RangeSpanList> &getRangeLists() const {
|
2013-12-03 00:45:45 +00:00
|
|
|
return CURangeLists;
|
|
|
|
}
|
2013-12-04 19:06:58 +00:00
|
|
|
SmallVectorImpl<RangeSpanList> &getRangeLists() { return CURangeLists; }
|
2013-12-03 00:45:45 +00:00
|
|
|
|
2013-10-17 02:06:06 +00:00
|
|
|
/// getParentContextString - Get a string containing the language specific
|
|
|
|
/// context for a global name.
|
|
|
|
std::string getParentContextString(DIScope Context) const;
|
|
|
|
|
2013-02-12 18:00:14 +00:00
|
|
|
/// addGlobalName - Add a new global entity to the compile unit.
|
|
|
|
///
|
2014-04-25 18:26:14 +00:00
|
|
|
void addGlobalName(StringRef Name, DIE &Die, DIScope Context);
|
2013-02-12 18:00:14 +00:00
|
|
|
|
2013-09-20 23:22:52 +00:00
|
|
|
/// addAccelNamespace - Add a new name to the namespace accelerator table.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addAccelNamespace(StringRef Name, const DIE &Die);
|
2013-09-20 23:22:52 +00:00
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
/// getDIE - Returns the debug information entry map slot for the
|
2013-10-31 17:54:35 +00:00
|
|
|
/// specified debug variable. We delegate the request to DwarfDebug
|
|
|
|
/// when the MDNode can be part of the type system, since DIEs for
|
|
|
|
/// the type system can be shared across CUs and the mappings are
|
|
|
|
/// kept in DwarfDebug.
|
2013-11-15 23:09:13 +00:00
|
|
|
DIE *getDIE(DIDescriptor D) const;
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2014-02-16 08:46:55 +00:00
|
|
|
/// getDIELoc - Returns a fresh newly allocated DIELoc.
|
|
|
|
DIELoc *getDIELoc() { return new (DIEValueAllocator) DIELoc(); }
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-10-31 17:54:35 +00:00
|
|
|
/// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug
|
|
|
|
/// when the MDNode can be part of the type system, since DIEs for
|
|
|
|
/// the type system can be shared across CUs and the mappings are
|
|
|
|
/// kept in DwarfDebug.
|
2013-11-15 23:09:13 +00:00
|
|
|
void insertDIE(DIDescriptor Desc, DIE *D);
|
2011-04-12 17:40:32 +00:00
|
|
|
|
2012-08-24 01:14:27 +00:00
|
|
|
/// addFlag - Add a flag that is true to the DIE.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addFlag(DIE &Die, dwarf::Attribute Attribute);
|
2012-12-20 21:58:40 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// addUInt - Add an unsigned integer attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addUInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
|
2013-10-21 17:28:37 +00:00
|
|
|
uint64_t Integer);
|
|
|
|
|
2014-04-25 18:26:14 +00:00
|
|
|
void addUInt(DIE &Block, dwarf::Form Form, uint64_t Integer);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addSInt - Add an signed integer attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
|
2013-10-21 17:28:37 +00:00
|
|
|
int64_t Integer);
|
|
|
|
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addString - Add a string attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addString(DIE &Die, dwarf::Attribute Attribute, const StringRef Str);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-01-07 19:32:41 +00:00
|
|
|
/// addLocalString - Add a string attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLocalString(DIE &Die, dwarf::Attribute Attribute,
|
2013-11-19 09:28:34 +00:00
|
|
|
const StringRef Str);
|
2013-01-07 19:32:41 +00:00
|
|
|
|
2013-07-02 18:46:26 +00:00
|
|
|
/// addExpr - Add a Dwarf expression attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
|
2013-07-02 18:46:26 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// addLabel - Add a Dwarf label attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLabel(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form,
|
2011-04-12 22:53:02 +00:00
|
|
|
const MCSymbol *Label);
|
|
|
|
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
|
2013-10-21 17:28:37 +00:00
|
|
|
|
2014-03-05 22:41:20 +00:00
|
|
|
/// addLocationList - Add a Dwarf loclistptr attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index);
|
2014-03-05 22:41:20 +00:00
|
|
|
|
2013-11-21 23:46:41 +00:00
|
|
|
/// addSectionLabel - Add a Dwarf section label attribute data and value.
|
|
|
|
///
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
|
2013-11-26 22:23:27 +00:00
|
|
|
const MCSymbol *Label);
|
2013-11-21 23:46:41 +00:00
|
|
|
|
|
|
|
/// addSectionOffset - Add an offset into a section attribute data and value.
|
|
|
|
///
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer);
|
2013-11-21 23:46:41 +00:00
|
|
|
|
2013-01-18 22:11:33 +00:00
|
|
|
/// addOpAddress - Add a dwarf op address data and value using the
|
|
|
|
/// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addOpAddress(DIELoc &Die, const MCSymbol *Label);
|
2013-01-18 22:11:33 +00:00
|
|
|
|
2013-11-21 23:46:41 +00:00
|
|
|
/// addSectionDelta - Add a label delta attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
|
2013-11-21 23:46:41 +00:00
|
|
|
const MCSymbol *Lo);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2014-03-07 01:30:55 +00:00
|
|
|
/// addLabelDelta - Add a label delta attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLabelDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
|
2014-03-07 01:30:55 +00:00
|
|
|
const MCSymbol *Lo);
|
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// addDIEEntry - Add a DIE attribute data and value.
|
2014-04-25 19:33:43 +00:00
|
|
|
void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry);
|
2012-12-20 21:58:40 +00:00
|
|
|
|
2013-10-31 17:54:35 +00:00
|
|
|
/// addDIEEntry - Add a DIE attribute data and value.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIEEntry *Entry);
|
2013-10-31 17:54:35 +00:00
|
|
|
|
2014-04-25 18:26:14 +00:00
|
|
|
void addDIETypeSignature(DIE &Die, const DwarfTypeUnit &Type);
|
2013-12-17 23:32:35 +00:00
|
|
|
|
2014-02-16 08:46:55 +00:00
|
|
|
/// addBlock - Add block data.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Block);
|
2014-02-16 08:46:55 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// addBlock - Add block data.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addBlock(DIE &Die, dwarf::Attribute Attribute, DIEBlock *Block);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addSourceLine - Add location information to specified debug information
|
|
|
|
/// entry.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSourceLine(DIE &Die, unsigned Line, StringRef File,
|
2014-02-12 00:11:25 +00:00
|
|
|
StringRef Directory);
|
2014-04-25 18:26:14 +00:00
|
|
|
void addSourceLine(DIE &Die, DIVariable V);
|
|
|
|
void addSourceLine(DIE &Die, DIGlobalVariable G);
|
|
|
|
void addSourceLine(DIE &Die, DISubprogram SP);
|
|
|
|
void addSourceLine(DIE &Die, DIType Ty);
|
|
|
|
void addSourceLine(DIE &Die, DINameSpace NS);
|
|
|
|
void addSourceLine(DIE &Die, DIObjCProperty Ty);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addAddress - Add an address attribute to a die based on the location
|
|
|
|
/// provided.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addAddress(DIE &Die, dwarf::Attribute Attribute,
|
2013-11-19 09:28:34 +00:00
|
|
|
const MachineLocation &Location, bool Indirect = false);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addConstantValue - Add constant value entry in variable DIE.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addConstantValue(DIE &Die, const MachineOperand &MO, DIType Ty);
|
2014-05-11 15:56:59 +00:00
|
|
|
void addConstantValue(DIE &Die, const ConstantInt *CI, DIType Ty);
|
|
|
|
void addConstantValue(DIE &Die, const APInt &Val, DIType Ty);
|
2014-04-25 18:26:14 +00:00
|
|
|
void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned);
|
2014-05-11 16:08:41 +00:00
|
|
|
void addConstantValue(DIE &Die, bool Unsigned, uint64_t Val);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addConstantFPValue - Add constant value entry in variable DIE.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addConstantFPValue(DIE &Die, const MachineOperand &MO);
|
|
|
|
void addConstantFPValue(DIE &Die, const ConstantFP *CFP);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addTemplateParams - Add template parameters in buffer.
|
|
|
|
void addTemplateParams(DIE &Buffer, DIArray TParams);
|
|
|
|
|
2011-04-26 19:06:18 +00:00
|
|
|
/// addRegisterOp - Add register operand.
|
2014-08-01 22:11:58 +00:00
|
|
|
void addRegisterOpPiece(DIELoc &TheDie, unsigned Reg,
|
|
|
|
unsigned SizeInBits = 0, unsigned OffsetInBits = 0);
|
2011-04-26 19:06:18 +00:00
|
|
|
|
|
|
|
/// addRegisterOffset - Add register offset.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addRegisterOffset(DIELoc &TheDie, unsigned Reg, int64_t Offset);
|
2011-04-26 19:06:18 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// addComplexAddress - 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.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addComplexAddress(const DbgVariable &DV, DIE &Die,
|
2013-11-19 09:28:34 +00:00
|
|
|
dwarf::Attribute Attribute,
|
2011-04-12 22:53:02 +00:00
|
|
|
const MachineLocation &Location);
|
|
|
|
|
|
|
|
// FIXME: Should be reformulated in terms of addComplexAddress.
|
|
|
|
/// addBlockByrefAddress - Start with the address based on the location
|
|
|
|
/// provided, and generate the DWARF information necessary to find the
|
|
|
|
/// actual Block variable (navigating the Block struct) based on the
|
|
|
|
/// starting location. Add the DWARF information to the die. Obsolete,
|
|
|
|
/// please use addComplexAddress instead.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
|
2013-11-19 09:28:34 +00:00
|
|
|
dwarf::Attribute Attribute,
|
2011-04-12 22:53:02 +00:00
|
|
|
const MachineLocation &Location);
|
|
|
|
|
2012-12-20 21:58:40 +00:00
|
|
|
/// addVariableAddress - Add DW_AT_location attribute for a
|
2011-04-27 22:45:24 +00:00
|
|
|
/// DbgVariable based on provided MachineLocation.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addVariableAddress(const DbgVariable &DV, DIE &Die,
|
2013-06-24 21:07:27 +00:00
|
|
|
MachineLocation Location);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2012-03-28 07:34:31 +00:00
|
|
|
/// addType - Add a new type attribute to the specified entity. This takes
|
|
|
|
/// and attribute parameter because DW_AT_friend attributes are also
|
|
|
|
/// type references.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addType(DIE &Entity, DIType Ty,
|
2013-11-19 09:28:34 +00:00
|
|
|
dwarf::Attribute Attribute = dwarf::DW_AT_type);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// getOrCreateNameSpace - Create a DIE for DINameSpace.
|
|
|
|
DIE *getOrCreateNameSpace(DINameSpace NS);
|
|
|
|
|
2011-08-15 17:24:54 +00:00
|
|
|
/// getOrCreateSubprogramDIE - Create new DIE using SP.
|
|
|
|
DIE *getOrCreateSubprogramDIE(DISubprogram SP);
|
|
|
|
|
2014-05-27 18:37:38 +00:00
|
|
|
void applySubprogramAttributes(DISubprogram SP, DIE &SPDie);
|
2014-06-06 22:29:05 +00:00
|
|
|
void applySubprogramAttributesToDefinition(DISubprogram SP, DIE &SPDie);
|
2014-06-13 22:18:23 +00:00
|
|
|
void applyVariableAttributes(const DbgVariable &Var, DIE &VariableDie);
|
2014-05-27 18:37:38 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
|
|
|
|
/// given DIType.
|
2011-08-16 22:09:43 +00:00
|
|
|
DIE *getOrCreateTypeDIE(const MDNode *N);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-11-19 23:08:21 +00:00
|
|
|
/// getOrCreateContextDIE - Get context owner's DIE.
|
|
|
|
DIE *createTypeDIE(DICompositeType Ty);
|
|
|
|
|
2013-10-05 00:05:51 +00:00
|
|
|
/// getOrCreateContextDIE - Get context owner's DIE.
|
|
|
|
DIE *getOrCreateContextDIE(DIScope Context);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-10-05 00:05:51 +00:00
|
|
|
/// constructContainingTypeDIEs - Construct DIEs for types that contain
|
|
|
|
/// vtables.
|
|
|
|
void constructContainingTypeDIEs();
|
|
|
|
|
|
|
|
/// constructVariableDIE - Construct a DIE for the given DbgVariable.
|
2014-04-25 20:00:34 +00:00
|
|
|
std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
|
2014-05-27 19:34:32 +00:00
|
|
|
bool Abstract = false);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2014-02-25 22:27:14 +00:00
|
|
|
/// constructSubprogramArguments - Construct function argument DIEs.
|
2014-07-28 22:24:06 +00:00
|
|
|
void constructSubprogramArguments(DIE &Buffer, DITypeArray Args);
|
2014-02-25 22:27:14 +00:00
|
|
|
|
2013-10-29 00:53:03 +00:00
|
|
|
/// Create a DIE with the given Tag, add the DIE to its parent, and
|
|
|
|
/// call insertDIE if MD is not null.
|
2014-04-25 18:52:29 +00:00
|
|
|
DIE &createAndAddDIE(unsigned Tag, DIE &Parent,
|
2013-11-19 09:28:34 +00:00
|
|
|
DIDescriptor N = DIDescriptor());
|
2013-10-29 00:53:03 +00:00
|
|
|
|
2013-10-30 20:42:41 +00:00
|
|
|
/// Compute the size of a header for this unit, not including the initial
|
|
|
|
/// length field.
|
2013-12-13 21:33:40 +00:00
|
|
|
virtual unsigned getHeaderSize() const {
|
2013-10-30 20:42:41 +00:00
|
|
|
return sizeof(int16_t) + // DWARF version number
|
|
|
|
sizeof(int32_t) + // Offset Into Abbrev. Section
|
|
|
|
sizeof(int8_t); // Pointer Size (in bytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Emit the header for this unit, not including the initial length field.
|
2014-03-24 20:28:10 +00:00
|
|
|
virtual void emitHeader(const MCSymbol *ASectionSym) const;
|
2013-10-30 20:42:41 +00:00
|
|
|
|
2014-02-12 00:31:30 +00:00
|
|
|
virtual DwarfCompileUnit &getCU() = 0;
|
2014-02-12 00:32:05 +00:00
|
|
|
|
2014-04-26 17:27:38 +00:00
|
|
|
/// constructTypeDIE - Construct type DIE from DICompositeType.
|
|
|
|
void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
|
|
|
|
|
2013-12-02 19:33:10 +00:00
|
|
|
protected:
|
|
|
|
/// getOrCreateStaticMemberDIE - Create new static data member DIE.
|
|
|
|
DIE *getOrCreateStaticMemberDIE(DIDerivedType DT);
|
|
|
|
|
2014-03-18 01:17:26 +00:00
|
|
|
/// Look up the source ID with the given directory and source file names. If
|
|
|
|
/// none currently exists, create a new ID and insert it in the line table.
|
|
|
|
virtual unsigned getOrCreateSourceID(StringRef File, StringRef Directory) = 0;
|
|
|
|
|
2013-10-05 00:05:51 +00:00
|
|
|
private:
|
2014-04-25 17:32:19 +00:00
|
|
|
/// \brief Construct a DIE for the given DbgVariable without initializing the
|
|
|
|
/// DbgVariable's DIE reference.
|
2014-04-25 20:00:34 +00:00
|
|
|
std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV,
|
2014-05-27 19:34:32 +00:00
|
|
|
bool Abstract);
|
2014-04-25 17:32:19 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// constructTypeDIE - Construct basic type die from DIBasicType.
|
2013-10-04 23:49:29 +00:00
|
|
|
void constructTypeDIE(DIE &Buffer, DIBasicType BTy);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// constructTypeDIE - Construct derived type die from DIDerivedType.
|
2013-10-04 23:49:29 +00:00
|
|
|
void constructTypeDIE(DIE &Buffer, DIDerivedType DTy);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// constructSubrangeDIE - Construct subrange DIE from DISubrange.
|
|
|
|
void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
|
|
|
|
|
|
|
|
/// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
|
2013-11-11 18:52:31 +00:00
|
|
|
void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
|
2013-11-11 18:52:39 +00:00
|
|
|
void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-10-23 23:00:44 +00:00
|
|
|
/// constructMemberDIE - Construct member DIE from DIDerivedType.
|
|
|
|
void constructMemberDIE(DIE &Buffer, DIDerivedType DT);
|
2013-10-18 21:14:19 +00:00
|
|
|
|
2013-10-23 23:05:28 +00:00
|
|
|
/// constructTemplateTypeParameterDIE - Construct new DIE for the given
|
|
|
|
/// DITemplateTypeParameter.
|
|
|
|
void constructTemplateTypeParameterDIE(DIE &Buffer,
|
|
|
|
DITemplateTypeParameter TP);
|
|
|
|
|
|
|
|
/// constructTemplateValueParameterDIE - Construct new DIE for the given
|
|
|
|
/// DITemplateValueParameter.
|
|
|
|
void constructTemplateValueParameterDIE(DIE &Buffer,
|
|
|
|
DITemplateValueParameter TVP);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2013-10-05 00:05:51 +00:00
|
|
|
/// getLowerBoundDefault - Return the default lower bound for an array. If the
|
|
|
|
/// DWARF version doesn't handle the language, return -1.
|
|
|
|
int64_t getDefaultLowerBound() const;
|
|
|
|
|
|
|
|
/// getDIEEntry - Returns the debug information entry for the specified
|
|
|
|
/// debug variable.
|
|
|
|
DIEEntry *getDIEEntry(const MDNode *N) const {
|
|
|
|
return MDNodeToDIEEntryMap.lookup(N);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// insertDIEEntry - Insert debug information entry into the map.
|
|
|
|
void insertDIEEntry(const MDNode *N, DIEEntry *E) {
|
|
|
|
MDNodeToDIEEntryMap.insert(std::make_pair(N, E));
|
|
|
|
}
|
|
|
|
|
|
|
|
// getIndexTyDie - Get an anonymous type for index type.
|
|
|
|
DIE *getIndexTyDie() { return IndexTyDie; }
|
|
|
|
|
|
|
|
// setIndexTyDie - Set D as anonymous type for index which can be reused
|
|
|
|
// later.
|
|
|
|
void setIndexTyDie(DIE *D) { IndexTyDie = D; }
|
|
|
|
|
|
|
|
/// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
|
|
|
|
/// information entry.
|
2014-04-25 19:33:43 +00:00
|
|
|
DIEEntry *createDIEEntry(DIE &Entry);
|
2013-05-06 23:33:07 +00:00
|
|
|
|
2013-10-05 00:27:02 +00:00
|
|
|
/// resolve - Look in the DwarfDebug map for the MDNode that
|
2013-10-05 00:32:34 +00:00
|
|
|
/// corresponds to the reference.
|
2013-10-05 00:27:02 +00:00
|
|
|
template <typename T> T resolve(DIRef<T> Ref) const {
|
|
|
|
return DD->resolve(Ref);
|
|
|
|
}
|
2013-11-19 22:51:04 +00:00
|
|
|
|
|
|
|
/// If this is a named finished type then include it in the list of types for
|
|
|
|
/// the accelerator tables.
|
2014-04-25 18:52:29 +00:00
|
|
|
void updateAcceleratorTables(DIScope Context, DIType Ty, const DIE &TyDIE);
|
2011-04-12 17:40:32 +00:00
|
|
|
};
|
|
|
|
|
2013-12-09 23:57:44 +00:00
|
|
|
class DwarfCompileUnit : public DwarfUnit {
|
2014-02-14 23:58:13 +00:00
|
|
|
/// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding
|
|
|
|
/// the need to search for it in applyStmtList.
|
|
|
|
unsigned stmtListIndex;
|
|
|
|
|
2013-12-02 19:33:10 +00:00
|
|
|
public:
|
2014-04-28 21:14:27 +00:00
|
|
|
DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A,
|
|
|
|
DwarfDebug *DW, DwarfFile *DWU);
|
2013-12-02 19:33:10 +00:00
|
|
|
|
2014-02-14 22:41:51 +00:00
|
|
|
void initStmtList(MCSymbol *DwarfLineSectionSym);
|
|
|
|
|
2014-02-14 23:58:13 +00:00
|
|
|
/// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
|
|
|
|
void applyStmtList(DIE &D);
|
|
|
|
|
2013-12-02 19:33:10 +00:00
|
|
|
/// createGlobalVariableDIE - create global variable DIE.
|
|
|
|
void createGlobalVariableDIE(DIGlobalVariable GV);
|
|
|
|
|
|
|
|
/// addLabelAddress - Add a dwarf label attribute data and value using
|
|
|
|
/// either DW_FORM_addr or DW_FORM_GNU_addr_index.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
|
2014-03-20 19:16:16 +00:00
|
|
|
const MCSymbol *Label);
|
|
|
|
|
|
|
|
/// addLocalLabelAddress - Add a dwarf label attribute data and value using
|
|
|
|
/// DW_FORM_addr only.
|
2014-04-25 18:26:14 +00:00
|
|
|
void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
|
2014-03-20 19:16:16 +00:00
|
|
|
const MCSymbol *Label);
|
2014-02-12 00:31:30 +00:00
|
|
|
|
2014-03-02 09:09:27 +00:00
|
|
|
DwarfCompileUnit &getCU() override { return *this; }
|
2014-03-17 23:53:25 +00:00
|
|
|
|
2014-03-18 01:17:26 +00:00
|
|
|
unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override;
|
2013-12-02 19:33:10 +00:00
|
|
|
};
|
|
|
|
|
2013-12-09 23:57:44 +00:00
|
|
|
class DwarfTypeUnit : public DwarfUnit {
|
2013-12-02 19:33:10 +00:00
|
|
|
private:
|
2013-12-13 21:33:40 +00:00
|
|
|
uint64_t TypeSignature;
|
|
|
|
const DIE *Ty;
|
2014-02-12 00:31:30 +00:00
|
|
|
DwarfCompileUnit &CU;
|
2014-03-18 02:13:23 +00:00
|
|
|
MCDwarfDwoLineTable *SplitLineTable;
|
2013-12-02 19:33:10 +00:00
|
|
|
|
|
|
|
public:
|
2014-04-28 21:14:27 +00:00
|
|
|
DwarfTypeUnit(unsigned UID, DwarfCompileUnit &CU, AsmPrinter *A,
|
|
|
|
DwarfDebug *DW, DwarfFile *DWU,
|
2014-03-18 02:13:23 +00:00
|
|
|
MCDwarfDwoLineTable *SplitLineTable = nullptr);
|
2013-12-02 19:33:10 +00:00
|
|
|
|
2013-12-13 21:33:40 +00:00
|
|
|
void setTypeSignature(uint64_t Signature) { TypeSignature = Signature; }
|
2013-12-17 23:32:35 +00:00
|
|
|
uint64_t getTypeSignature() const { return TypeSignature; }
|
2013-12-13 21:33:40 +00:00
|
|
|
void setType(const DIE *Ty) { this->Ty = Ty; }
|
|
|
|
|
|
|
|
/// Emit the header for this unit, not including the initial length field.
|
2014-03-24 20:28:10 +00:00
|
|
|
void emitHeader(const MCSymbol *ASectionSym) const override;
|
2014-03-02 09:09:27 +00:00
|
|
|
unsigned getHeaderSize() const override {
|
2013-12-13 21:33:40 +00:00
|
|
|
return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature
|
|
|
|
sizeof(uint32_t); // Type DIE Offset
|
|
|
|
}
|
|
|
|
void initSection(const MCSection *Section);
|
2014-07-25 17:11:58 +00:00
|
|
|
// Bring in the base function (taking two args, including the section symbol)
|
|
|
|
// for use when building DWO type units (they don't go in unique comdat
|
|
|
|
// sections)
|
|
|
|
using DwarfUnit::initSection;
|
2014-03-02 09:09:27 +00:00
|
|
|
DwarfCompileUnit &getCU() override { return CU; }
|
2014-03-18 01:17:26 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
unsigned getOrCreateSourceID(StringRef File, StringRef Directory) override;
|
2013-12-02 19:33:10 +00:00
|
|
|
};
|
2011-04-12 17:40:32 +00:00
|
|
|
} // end llvm namespace
|
|
|
|
#endif
|