2011-04-12 17:40:32 +00:00
|
|
|
//===-- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit ---*- C++ -*--===//
|
|
|
|
//
|
|
|
|
// 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"
|
2011-04-12 17:40:32 +00:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
#include "llvm/DebugInfo.h"
|
2013-06-28 20:05:04 +00:00
|
|
|
#include "llvm/MC/MCExpr.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;
|
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2011-11-07 09:18:32 +00:00
|
|
|
/// CompileUnit - This dwarf writer support class manages information associated
|
2011-04-12 17:40:32 +00:00
|
|
|
/// with a source file.
|
2013-09-11 18:05:11 +00:00
|
|
|
class CompileUnit {
|
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
|
|
|
|
2013-08-26 23:50:38 +00:00
|
|
|
/// Node - MDNode for the compile unit.
|
2013-11-15 23:52:02 +00:00
|
|
|
DICompileUnit Node;
|
2012-02-22 08:46:13 +00:00
|
|
|
|
2013-11-21 01:14:00 +00:00
|
|
|
/// Language - Language for the translation unit associated with this CU.
|
|
|
|
uint16_t Language;
|
|
|
|
|
2013-10-24 21:54:58 +00:00
|
|
|
/// CUDie - Compile unit debug information entry.
|
2011-04-12 17:40:32 +00:00
|
|
|
const OwningPtr<DIE> CUDie;
|
|
|
|
|
2013-11-21 01:29:16 +00:00
|
|
|
/// Offset of the CUDie from beginning of debug info section.
|
|
|
|
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;
|
2012-12-20 21:58:36 +00:00
|
|
|
DwarfUnits *DU;
|
2011-04-12 22:53:02 +00:00
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
/// IndexTyDie - An anonymous type for index type. Owned by CUDie.
|
|
|
|
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-11-07 09:24:32 +00:00
|
|
|
/// AccelNames - A map of names for the name accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
StringMap<std::vector<const DIE *> > AccelNames;
|
2013-11-21 01:29:13 +00:00
|
|
|
|
|
|
|
/// AccelObjC - A map of objc spec for the objc accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
StringMap<std::vector<const DIE *> > AccelObjC;
|
2013-11-21 01:29:13 +00:00
|
|
|
|
|
|
|
/// AccelNamespace - A map of names for the namespace accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
StringMap<std::vector<const DIE *> > AccelNamespace;
|
2013-11-21 01:29:13 +00:00
|
|
|
|
|
|
|
/// AccelTypes - A map of names for the type accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
StringMap<std::vector<std::pair<const DIE *, unsigned> > > AccelTypes;
|
2011-11-07 09:24:32 +00:00
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// DIEBlocks - A list of all the DIEBlocks in use.
|
|
|
|
std::vector<DIEBlock *> DIEBlocks;
|
|
|
|
|
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-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
|
|
|
|
2011-04-12 17:40:32 +00:00
|
|
|
public:
|
2013-11-15 23:52:02 +00:00
|
|
|
CompileUnit(unsigned UID, DIE *D, DICompileUnit CU, AsmPrinter *A,
|
2013-06-24 21:07:27 +00:00
|
|
|
DwarfDebug *DW, DwarfUnits *DWU);
|
2013-11-19 23:08:21 +00:00
|
|
|
CompileUnit(unsigned UID, DIE *D, uint16_t Language, AsmPrinter *A,
|
|
|
|
DwarfDebug *DW, DwarfUnits *DWU);
|
2011-04-12 22:53:02 +00:00
|
|
|
~CompileUnit();
|
2011-04-12 17:40:32 +00:00
|
|
|
|
|
|
|
// Accessors.
|
2013-08-26 23:58:22 +00:00
|
|
|
unsigned getUniqueID() const { return UniqueID; }
|
2013-11-19 23:08:21 +00:00
|
|
|
uint16_t getLanguage() const { return Language; }
|
2013-11-15 23:54:45 +00:00
|
|
|
DICompileUnit getNode() const { return Node; }
|
2013-08-26 23:58:22 +00:00
|
|
|
DIE *getCUDie() const { return CUDie.get(); }
|
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-11-19 22:51:04 +00:00
|
|
|
const StringMap<std::vector<const DIE *> > &getAccelNames() const {
|
2011-11-10 19:25:34 +00:00
|
|
|
return AccelNames;
|
|
|
|
}
|
2013-11-19 22:51:04 +00:00
|
|
|
const StringMap<std::vector<const DIE *> > &getAccelObjC() const {
|
2011-11-07 09:24:32 +00:00
|
|
|
return AccelObjC;
|
|
|
|
}
|
2013-11-19 22:51:04 +00:00
|
|
|
const StringMap<std::vector<const DIE *> > &getAccelNamespace() const {
|
2011-11-10 21:47:55 +00:00
|
|
|
return AccelNamespace;
|
|
|
|
}
|
2013-11-19 22:51:04 +00:00
|
|
|
const StringMap<std::vector<std::pair<const DIE *, unsigned> > > &
|
2013-08-26 23:58:22 +00:00
|
|
|
getAccelTypes() const {
|
2011-11-10 21:47:55 +00:00
|
|
|
return AccelTypes;
|
|
|
|
}
|
2012-12-20 21:58:40 +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.
|
|
|
|
bool hasContent() const { return !CUDie->getChildren().empty(); }
|
|
|
|
|
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.
|
|
|
|
///
|
2013-10-17 02:06:06 +00:00
|
|
|
void addGlobalName(StringRef Name, DIE *Die, DIScope Context);
|
2013-02-12 18:00:14 +00:00
|
|
|
|
2011-11-07 09:24:32 +00:00
|
|
|
/// addAccelName - Add a new name to the name accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
void addAccelName(StringRef Name, const DIE *Die);
|
2013-09-20 23:22:52 +00:00
|
|
|
|
|
|
|
/// addAccelObjC - Add a new name to the ObjC accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
void addAccelObjC(StringRef Name, const DIE *Die);
|
2013-09-20 23:22:52 +00:00
|
|
|
|
|
|
|
/// addAccelNamespace - Add a new name to the namespace accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
void addAccelNamespace(StringRef Name, const DIE *Die);
|
2013-09-20 23:22:52 +00:00
|
|
|
|
|
|
|
/// addAccelType - Add a new type to the type accelerator table.
|
2013-11-19 22:51:04 +00:00
|
|
|
void addAccelType(StringRef Name, std::pair<const DIE *, unsigned> Die);
|
2012-12-20 21:58:40 +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
|
|
|
|
2013-11-21 01:29:13 +00:00
|
|
|
/// getDIEBlock - Returns a fresh newly allocated DIEBlock.
|
2013-10-04 23:49:29 +00:00
|
|
|
DIEBlock *getDIEBlock() { return new (DIEValueAllocator) DIEBlock(); }
|
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
|
|
|
|
|
|
|
/// addDie - Adds or interns the DIE to the compile unit.
|
|
|
|
///
|
2013-10-04 23:49:31 +00:00
|
|
|
void addDie(DIE *Buffer) { CUDie->addChild(Buffer); }
|
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.
|
2013-10-21 17:28:37 +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.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
|
|
|
|
uint64_t Integer);
|
|
|
|
|
|
|
|
void addUInt(DIEBlock *Block, dwarf::Form Form, uint64_t Integer);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addSInt - Add an signed integer attribute data and value.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
|
|
|
|
int64_t Integer);
|
|
|
|
|
|
|
|
void addSInt(DIEBlock *Die, Optional<dwarf::Form> Form, int64_t Integer);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addString - Add a string attribute data and value.
|
2013-10-21 17:28:37 +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.
|
2013-11-19 09:28:34 +00:00
|
|
|
void addLocalString(DIE *Die, dwarf::Attribute Attribute,
|
|
|
|
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.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addExpr(DIEBlock *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.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addLabel(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form,
|
2011-04-12 22:53:02 +00:00
|
|
|
const MCSymbol *Label);
|
|
|
|
|
2013-10-21 17:28:37 +00:00
|
|
|
void addLabel(DIEBlock *Die, dwarf::Form Form, const MCSymbol *Label);
|
|
|
|
|
2013-11-21 23:46:41 +00:00
|
|
|
/// addSectionLabel - Add a Dwarf section label attribute data and value.
|
|
|
|
///
|
2013-11-26 22:23:27 +00:00
|
|
|
void addSectionLabel(DIE *Die, dwarf::Attribute Attribute,
|
|
|
|
const MCSymbol *Label);
|
2013-11-21 23:46:41 +00:00
|
|
|
|
|
|
|
/// addSectionOffset - Add an offset into a section attribute data and value.
|
|
|
|
///
|
|
|
|
void addSectionOffset(DIE *Die, dwarf::Attribute Attribute, uint64_t Integer);
|
|
|
|
|
2013-01-15 23:56:56 +00:00
|
|
|
/// addLabelAddress - Add a dwarf label attribute data and value using
|
|
|
|
/// either DW_FORM_addr or DW_FORM_GNU_addr_index.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addLabelAddress(DIE *Die, dwarf::Attribute Attribute, MCSymbol *Label);
|
2013-01-15 23:56:56 +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.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addOpAddress(DIEBlock *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.
|
|
|
|
void addSectionDelta(DIE *Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
|
|
|
|
const MCSymbol *Lo);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addDIEEntry - Add a DIE attribute data and value.
|
2013-10-21 17:28:37 +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.
|
|
|
|
void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIEEntry *Entry);
|
|
|
|
|
2011-04-12 22:53:02 +00:00
|
|
|
/// addBlock - Add block data.
|
2013-10-21 17:28:37 +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.
|
|
|
|
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);
|
2012-03-29 08:42:56 +00:00
|
|
|
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.
|
2013-11-19 09:28:34 +00:00
|
|
|
void addAddress(DIE *Die, dwarf::Attribute Attribute,
|
|
|
|
const MachineLocation &Location, bool Indirect = false);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addConstantValue - Add constant value entry in variable DIE.
|
2013-07-03 01:08:30 +00:00
|
|
|
void addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty);
|
|
|
|
void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
|
|
|
|
void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
|
2011-04-12 22:53:02 +00:00
|
|
|
|
|
|
|
/// addConstantFPValue - Add constant value entry in variable DIE.
|
2013-07-03 01:08:30 +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.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addRegisterOp(DIEBlock *TheDie, unsigned Reg);
|
2011-04-26 19:06:18 +00:00
|
|
|
|
|
|
|
/// addRegisterOffset - Add register offset.
|
2013-10-21 17:28:37 +00:00
|
|
|
void addRegisterOffset(DIEBlock *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.
|
2013-11-19 09:28:34 +00:00
|
|
|
void addComplexAddress(const DbgVariable &DV, DIE *Die,
|
|
|
|
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.
|
2013-11-19 09:28:34 +00:00
|
|
|
void addBlockByrefAddress(const DbgVariable &DV, DIE *Die,
|
|
|
|
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.
|
2013-06-24 21:07:27 +00:00
|
|
|
void addVariableAddress(const DbgVariable &DV, DIE *Die,
|
|
|
|
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.
|
2013-11-19 09:28:34 +00:00
|
|
|
void addType(DIE *Entity, DIType Ty,
|
|
|
|
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);
|
|
|
|
|
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
|
|
|
|
2011-08-15 17:57:41 +00:00
|
|
|
/// createGlobalVariableDIE - create global variable DIE.
|
2013-11-17 21:55:13 +00:00
|
|
|
void createGlobalVariableDIE(DIGlobalVariable GV);
|
2011-08-15 17:57:41 +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.
|
2013-11-15 01:43:19 +00:00
|
|
|
DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract);
|
2011-04-12 22:53:02 +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.
|
2013-11-19 09:28:34 +00:00
|
|
|
DIE *createAndAddDIE(unsigned Tag, DIE &Parent,
|
|
|
|
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.
|
|
|
|
unsigned getHeaderSize() const {
|
|
|
|
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.
|
|
|
|
void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym);
|
|
|
|
|
2013-10-05 00:05:51 +00:00
|
|
|
private:
|
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
|
|
|
|
|
|
|
/// constructTypeDIE - Construct type DIE from DICompositeType.
|
2013-10-04 23:49:29 +00:00
|
|
|
void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
|
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-14 20:33:57 +00:00
|
|
|
/// getOrCreateStaticMemberDIE - Create new static data member DIE.
|
|
|
|
DIE *getOrCreateStaticMemberDIE(DIDerivedType DT);
|
2013-01-16 01:22:23 +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.
|
|
|
|
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.
|
2013-11-26 00:15:27 +00:00
|
|
|
void updateAcceleratorTables(DIScope Context, DIType Ty, const DIE *TyDIE);
|
2011-04-12 17:40:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end llvm namespace
|
|
|
|
#endif
|