2011-09-13 21:42:23 +02:00
|
|
|
//===-- DWARFDebugInfoEntry.h -----------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
|
|
|
|
#define LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
|
|
|
|
|
|
|
|
#include "DWARFAbbreviationDeclaration.h"
|
2012-09-04 10:12:33 +02:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2011-09-13 21:42:23 +02:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2011-09-14 22:52:27 +02:00
|
|
|
class DWARFDebugAranges;
|
2011-09-13 21:42:23 +02:00
|
|
|
class DWARFCompileUnit;
|
|
|
|
class DWARFContext;
|
|
|
|
class DWARFFormValue;
|
2012-09-04 10:12:33 +02:00
|
|
|
class DWARFInlinedSubroutineChain;
|
2011-09-13 21:42:23 +02:00
|
|
|
|
|
|
|
/// DWARFDebugInfoEntryMinimal - A DIE with only the minimum required data.
|
|
|
|
class DWARFDebugInfoEntryMinimal {
|
|
|
|
/// Offset within the .debug_info of the start of this entry.
|
2011-11-05 16:35:00 +01:00
|
|
|
uint32_t Offset;
|
2011-09-13 21:42:23 +02:00
|
|
|
|
|
|
|
/// How many to subtract from "this" to get the parent.
|
|
|
|
/// If zero this die has no parent.
|
|
|
|
uint32_t ParentIdx;
|
|
|
|
|
|
|
|
/// How many to add to "this" to get the sibling.
|
|
|
|
uint32_t SiblingIdx;
|
|
|
|
|
|
|
|
const DWARFAbbreviationDeclaration *AbbrevDecl;
|
|
|
|
public:
|
2011-09-14 02:15:32 +02:00
|
|
|
DWARFDebugInfoEntryMinimal()
|
|
|
|
: Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {}
|
|
|
|
|
2011-09-13 21:42:23 +02:00
|
|
|
void dump(raw_ostream &OS, const DWARFCompileUnit *cu,
|
|
|
|
unsigned recurseDepth, unsigned indent = 0) const;
|
|
|
|
void dumpAttribute(raw_ostream &OS, const DWARFCompileUnit *cu,
|
|
|
|
uint32_t *offset_ptr, uint16_t attr, uint16_t form,
|
|
|
|
unsigned indent = 0) const;
|
|
|
|
|
2013-04-08 16:37:16 +02:00
|
|
|
/// Extracts a debug info entry, which is a child of a given compile unit,
|
|
|
|
/// starting at a given offset. If DIE can't be extracted, returns false and
|
|
|
|
/// doesn't change OffsetPtr.
|
|
|
|
bool extractFast(const DWARFCompileUnit *CU, const uint8_t *FixedFormSizes,
|
|
|
|
uint32_t *OffsetPtr);
|
2011-09-13 21:42:23 +02:00
|
|
|
|
|
|
|
/// Extract a debug info entry for a given compile unit from the
|
|
|
|
/// .debug_info and .debug_abbrev data starting at the given offset.
|
2013-04-08 16:37:16 +02:00
|
|
|
/// If compile unit can't be parsed, returns false and doesn't change
|
|
|
|
/// OffsetPtr.
|
|
|
|
bool extract(const DWARFCompileUnit *CU, uint32_t *OffsetPtr);
|
2011-09-13 21:42:23 +02:00
|
|
|
|
|
|
|
uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; }
|
|
|
|
bool isNULL() const { return AbbrevDecl == 0; }
|
2012-09-04 10:12:33 +02:00
|
|
|
|
|
|
|
/// Returns true if DIE represents a subprogram (not inlined).
|
|
|
|
bool isSubprogramDIE() const;
|
|
|
|
/// Returns true if DIE represents a subprogram or an inlined
|
|
|
|
/// subroutine.
|
|
|
|
bool isSubroutineDIE() const;
|
|
|
|
|
2011-11-05 16:35:00 +01:00
|
|
|
uint32_t getOffset() const { return Offset; }
|
2011-09-13 21:42:23 +02:00
|
|
|
uint32_t getNumAttributes() const {
|
|
|
|
return !isNULL() ? AbbrevDecl->getNumAttributes() : 0;
|
|
|
|
}
|
|
|
|
bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
|
|
|
|
|
|
|
|
// We know we are kept in a vector of contiguous entries, so we know
|
|
|
|
// our parent will be some index behind "this".
|
|
|
|
DWARFDebugInfoEntryMinimal *getParent() {
|
|
|
|
return ParentIdx > 0 ? this - ParentIdx : 0;
|
|
|
|
}
|
|
|
|
const DWARFDebugInfoEntryMinimal *getParent() const {
|
|
|
|
return ParentIdx > 0 ? this - ParentIdx : 0;
|
|
|
|
}
|
|
|
|
// We know we are kept in a vector of contiguous entries, so we know
|
|
|
|
// our sibling will be some index after "this".
|
|
|
|
DWARFDebugInfoEntryMinimal *getSibling() {
|
|
|
|
return SiblingIdx > 0 ? this + SiblingIdx : 0;
|
|
|
|
}
|
|
|
|
const DWARFDebugInfoEntryMinimal *getSibling() const {
|
|
|
|
return SiblingIdx > 0 ? this + SiblingIdx : 0;
|
|
|
|
}
|
|
|
|
// We know we are kept in a vector of contiguous entries, so we know
|
|
|
|
// we don't need to store our child pointer, if we have a child it will
|
|
|
|
// be the next entry in the list...
|
|
|
|
DWARFDebugInfoEntryMinimal *getFirstChild() {
|
|
|
|
return hasChildren() ? this + 1 : 0;
|
|
|
|
}
|
|
|
|
const DWARFDebugInfoEntryMinimal *getFirstChild() const {
|
|
|
|
return hasChildren() ? this + 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setParent(DWARFDebugInfoEntryMinimal *parent) {
|
|
|
|
if (parent) {
|
|
|
|
// We know we are kept in a vector of contiguous entries, so we know
|
|
|
|
// our parent will be some index behind "this".
|
|
|
|
ParentIdx = this - parent;
|
2011-09-13 23:47:32 +02:00
|
|
|
} else
|
2011-09-13 21:42:23 +02:00
|
|
|
ParentIdx = 0;
|
|
|
|
}
|
|
|
|
void setSibling(DWARFDebugInfoEntryMinimal *sibling) {
|
2011-09-13 23:47:32 +02:00
|
|
|
if (sibling) {
|
2011-09-13 21:42:23 +02:00
|
|
|
// We know we are kept in a vector of contiguous entries, so we know
|
|
|
|
// our sibling will be some index after "this".
|
|
|
|
SiblingIdx = sibling - this;
|
|
|
|
sibling->setParent(getParent());
|
2011-09-13 23:47:32 +02:00
|
|
|
} else
|
2011-09-13 21:42:23 +02:00
|
|
|
SiblingIdx = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const DWARFAbbreviationDeclaration *getAbbreviationDeclarationPtr() const {
|
|
|
|
return AbbrevDecl;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t getAttributeValue(const DWARFCompileUnit *cu,
|
|
|
|
const uint16_t attr, DWARFFormValue &formValue,
|
|
|
|
uint32_t *end_attr_offset_ptr = 0) const;
|
|
|
|
|
|
|
|
const char* getAttributeValueAsString(const DWARFCompileUnit* cu,
|
|
|
|
const uint16_t attr,
|
|
|
|
const char *fail_value) const;
|
|
|
|
|
|
|
|
uint64_t getAttributeValueAsUnsigned(const DWARFCompileUnit *cu,
|
|
|
|
const uint16_t attr,
|
|
|
|
uint64_t fail_value) const;
|
|
|
|
|
|
|
|
uint64_t getAttributeValueAsReference(const DWARFCompileUnit *cu,
|
|
|
|
const uint16_t attr,
|
|
|
|
uint64_t fail_value) const;
|
|
|
|
|
|
|
|
int64_t getAttributeValueAsSigned(const DWARFCompileUnit* cu,
|
|
|
|
const uint16_t attr,
|
|
|
|
int64_t fail_value) const;
|
2011-09-14 22:52:27 +02:00
|
|
|
|
2012-09-04 10:12:33 +02:00
|
|
|
/// Retrieves DW_AT_low_pc and DW_AT_high_pc from CU.
|
|
|
|
/// Returns true if both attributes are present.
|
|
|
|
bool getLowAndHighPC(const DWARFCompileUnit *CU,
|
|
|
|
uint64_t &LowPC, uint64_t &HighPC) const;
|
|
|
|
|
|
|
|
void buildAddressRangeTable(const DWARFCompileUnit *CU,
|
|
|
|
DWARFDebugAranges *DebugAranges) const;
|
|
|
|
|
|
|
|
bool addressRangeContainsAddress(const DWARFCompileUnit *CU,
|
|
|
|
const uint64_t Address) const;
|
|
|
|
|
|
|
|
/// If a DIE represents a subprogram (or inlined subroutine),
|
|
|
|
/// returns its mangled name (or short name, if mangled is missing).
|
|
|
|
/// This name may be fetched from specification or abstract origin
|
|
|
|
/// for this subprogram. Returns null if no name is found.
|
|
|
|
const char* getSubroutineName(const DWARFCompileUnit *CU) const;
|
|
|
|
|
|
|
|
/// Retrieves values of DW_AT_call_file, DW_AT_call_line and
|
|
|
|
/// DW_AT_call_column from DIE (or zeroes if they are missing).
|
|
|
|
void getCallerFrame(const DWARFCompileUnit *CU, uint32_t &CallFile,
|
|
|
|
uint32_t &CallLine, uint32_t &CallColumn) const;
|
|
|
|
|
|
|
|
/// InlinedChain - represents a chain of inlined_subroutine
|
|
|
|
/// DIEs, (possibly ending with subprogram DIE), all of which are contained
|
|
|
|
/// in some concrete inlined instance tree. Address range for each DIE
|
|
|
|
/// (except the last DIE) in this chain is contained in address
|
|
|
|
/// range for next DIE in the chain.
|
|
|
|
typedef SmallVector<DWARFDebugInfoEntryMinimal, 4> InlinedChain;
|
|
|
|
|
|
|
|
/// Get inlined chain for a given address, rooted at the current DIE.
|
|
|
|
/// Returns empty chain if address is not contained in address range
|
|
|
|
/// of current DIE.
|
|
|
|
InlinedChain getInlinedChainForAddress(const DWARFCompileUnit *CU,
|
|
|
|
const uint64_t Address) const;
|
2011-09-13 21:42:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|