blob: 12479bfd3c5bbe73a3b26758f3226c5a02e7a13e [file] [log] [blame]
Benjamin Krameraa2f78f2011-09-13 19:42:23 +00001//===-- DWARFDebugInfoEntry.h -----------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
11#define LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
12
13#include "DWARFAbbreviationDeclaration.h"
Alexey Samsonovc942e6b2012-09-04 08:12:33 +000014#include "llvm/ADT/SmallVector.h"
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000015#include "llvm/Support/DataTypes.h"
16
17namespace llvm {
18
Benjamin Kramer32664932011-09-14 20:52:27 +000019class DWARFDebugAranges;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000020class DWARFCompileUnit;
David Blaikie07e22442013-09-23 22:44:40 +000021class DWARFUnit;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000022class DWARFContext;
23class DWARFFormValue;
Alexey Samsonov3211e612013-08-06 10:49:15 +000024struct DWARFDebugInfoEntryInlinedChain;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000025
26/// DWARFDebugInfoEntryMinimal - A DIE with only the minimum required data.
27class DWARFDebugInfoEntryMinimal {
28 /// Offset within the .debug_info of the start of this entry.
Benjamin Kramerf7e0a312011-11-05 15:35:00 +000029 uint32_t Offset;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000030
31 /// How many to subtract from "this" to get the parent.
32 /// If zero this die has no parent.
33 uint32_t ParentIdx;
34
35 /// How many to add to "this" to get the sibling.
36 uint32_t SiblingIdx;
37
38 const DWARFAbbreviationDeclaration *AbbrevDecl;
39public:
Benjamin Kramer1b2a65c2011-09-14 00:15:32 +000040 DWARFDebugInfoEntryMinimal()
41 : Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {}
42
David Blaikie07e22442013-09-23 22:44:40 +000043 void dump(raw_ostream &OS, const DWARFUnit *u, unsigned recurseDepth,
44 unsigned indent = 0) const;
45 void dumpAttribute(raw_ostream &OS, const DWARFUnit *u, uint32_t *offset_ptr,
46 uint16_t attr, uint16_t form, unsigned indent = 0) const;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000047
Alexey Samsonova56bbf02013-10-28 23:41:49 +000048 /// Extracts a debug info entry, which is a child of a given unit,
Alexey Samsonovc03f2ee2013-04-08 14:37:16 +000049 /// starting at a given offset. If DIE can't be extracted, returns false and
50 /// doesn't change OffsetPtr.
Alexey Samsonova56bbf02013-10-28 23:41:49 +000051 bool extractFast(const DWARFUnit *U, uint32_t *OffsetPtr);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000052
53 /// Extract a debug info entry for a given compile unit from the
54 /// .debug_info and .debug_abbrev data starting at the given offset.
Alexey Samsonovc03f2ee2013-04-08 14:37:16 +000055 /// If compile unit can't be parsed, returns false and doesn't change
56 /// OffsetPtr.
David Blaikie07e22442013-09-23 22:44:40 +000057 bool extract(const DWARFUnit *U, uint32_t *OffsetPtr);
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000058
59 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; }
60 bool isNULL() const { return AbbrevDecl == 0; }
Alexey Samsonovc942e6b2012-09-04 08:12:33 +000061
62 /// Returns true if DIE represents a subprogram (not inlined).
63 bool isSubprogramDIE() const;
64 /// Returns true if DIE represents a subprogram or an inlined
65 /// subroutine.
66 bool isSubroutineDIE() const;
67
Benjamin Kramerf7e0a312011-11-05 15:35:00 +000068 uint32_t getOffset() const { return Offset; }
Benjamin Krameraa2f78f2011-09-13 19:42:23 +000069 uint32_t getNumAttributes() const {
70 return !isNULL() ? AbbrevDecl->getNumAttributes() : 0;
71 }
72 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
73
74 // We know we are kept in a vector of contiguous entries, so we know
75 // our parent will be some index behind "this".
76 DWARFDebugInfoEntryMinimal *getParent() {
77 return ParentIdx > 0 ? this - ParentIdx : 0;
78 }
79 const DWARFDebugInfoEntryMinimal *getParent() const {
80 return ParentIdx > 0 ? this - ParentIdx : 0;
81 }
82 // We know we are kept in a vector of contiguous entries, so we know
83 // our sibling will be some index after "this".
84 DWARFDebugInfoEntryMinimal *getSibling() {
85 return SiblingIdx > 0 ? this + SiblingIdx : 0;
86 }
87 const DWARFDebugInfoEntryMinimal *getSibling() const {
88 return SiblingIdx > 0 ? this + SiblingIdx : 0;
89 }
90 // We know we are kept in a vector of contiguous entries, so we know
91 // we don't need to store our child pointer, if we have a child it will
92 // be the next entry in the list...
93 DWARFDebugInfoEntryMinimal *getFirstChild() {
94 return hasChildren() ? this + 1 : 0;
95 }
96 const DWARFDebugInfoEntryMinimal *getFirstChild() const {
97 return hasChildren() ? this + 1 : 0;
98 }
99
100 void setParent(DWARFDebugInfoEntryMinimal *parent) {
101 if (parent) {
102 // We know we are kept in a vector of contiguous entries, so we know
103 // our parent will be some index behind "this".
104 ParentIdx = this - parent;
Benjamin Kramereaa74332011-09-13 21:47:32 +0000105 } else
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000106 ParentIdx = 0;
107 }
108 void setSibling(DWARFDebugInfoEntryMinimal *sibling) {
Benjamin Kramereaa74332011-09-13 21:47:32 +0000109 if (sibling) {
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000110 // We know we are kept in a vector of contiguous entries, so we know
111 // our sibling will be some index after "this".
112 SiblingIdx = sibling - this;
113 sibling->setParent(getParent());
Benjamin Kramereaa74332011-09-13 21:47:32 +0000114 } else
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000115 SiblingIdx = 0;
116 }
117
118 const DWARFAbbreviationDeclaration *getAbbreviationDeclarationPtr() const {
119 return AbbrevDecl;
120 }
121
Alexey Samsonovcaabb0e2013-10-17 13:28:16 +0000122 bool getAttributeValue(const DWARFUnit *U, const uint16_t Attr,
123 DWARFFormValue &FormValue) const;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000124
Alexey Samsonovcaabb0e2013-10-17 13:28:16 +0000125 const char *getAttributeValueAsString(const DWARFUnit *U, const uint16_t Attr,
126 const char *FailValue) const;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000127
David Blaikie07e22442013-09-23 22:44:40 +0000128 uint64_t getAttributeValueAsAddress(const DWARFUnit *U, const uint16_t Attr,
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000129 uint64_t FailValue) const;
130
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000131 uint64_t getAttributeValueAsUnsignedConstant(const DWARFUnit *U,
132 const uint16_t Attr,
133 uint64_t FailValue) const;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000134
Alexey Samsonovcaabb0e2013-10-17 13:28:16 +0000135 uint64_t getAttributeValueAsReference(const DWARFUnit *U, const uint16_t Attr,
136 uint64_t FailValue) const;
Benjamin Kramer32664932011-09-14 20:52:27 +0000137
Alexey Samsonov48cbda52013-10-28 23:01:48 +0000138 uint64_t getAttributeValueAsSectionOffset(const DWARFUnit *U,
139 const uint16_t Attr,
140 uint64_t FailValue) const;
141
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000142 /// Retrieves DW_AT_low_pc and DW_AT_high_pc from CU.
143 /// Returns true if both attributes are present.
David Blaikie07e22442013-09-23 22:44:40 +0000144 bool getLowAndHighPC(const DWARFUnit *U, uint64_t &LowPC,
145 uint64_t &HighPC) const;
Alexey Samsonovf4462fa2012-07-02 05:54:45 +0000146
David Blaikie07e22442013-09-23 22:44:40 +0000147 void buildAddressRangeTable(const DWARFUnit *U,
Alexey Samsonove3ba81b2013-08-27 09:20:22 +0000148 DWARFDebugAranges *DebugAranges,
149 uint32_t CUOffsetInAranges) const;
Alexey Samsonovf4462fa2012-07-02 05:54:45 +0000150
David Blaikie07e22442013-09-23 22:44:40 +0000151 bool addressRangeContainsAddress(const DWARFUnit *U,
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000152 const uint64_t Address) const;
153
154 /// If a DIE represents a subprogram (or inlined subroutine),
155 /// returns its mangled name (or short name, if mangled is missing).
156 /// This name may be fetched from specification or abstract origin
157 /// for this subprogram. Returns null if no name is found.
David Blaikie07e22442013-09-23 22:44:40 +0000158 const char *getSubroutineName(const DWARFUnit *U) const;
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000159
160 /// Retrieves values of DW_AT_call_file, DW_AT_call_line and
161 /// DW_AT_call_column from DIE (or zeroes if they are missing).
David Blaikie07e22442013-09-23 22:44:40 +0000162 void getCallerFrame(const DWARFUnit *U, uint32_t &CallFile,
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000163 uint32_t &CallLine, uint32_t &CallColumn) const;
164
Alexey Samsonovc942e6b2012-09-04 08:12:33 +0000165 /// Get inlined chain for a given address, rooted at the current DIE.
166 /// Returns empty chain if address is not contained in address range
167 /// of current DIE.
Alexey Samsonov3211e612013-08-06 10:49:15 +0000168 DWARFDebugInfoEntryInlinedChain
David Blaikie07e22442013-09-23 22:44:40 +0000169 getInlinedChainForAddress(const DWARFUnit *U, const uint64_t Address) const;
Alexey Samsonov3211e612013-08-06 10:49:15 +0000170};
171
172/// DWARFDebugInfoEntryInlinedChain - represents a chain of inlined_subroutine
173/// DIEs, (possibly ending with subprogram DIE), all of which are contained
174/// in some concrete inlined instance tree. Address range for each DIE
175/// (except the last DIE) in this chain is contained in address
176/// range for next DIE in the chain.
177struct DWARFDebugInfoEntryInlinedChain {
David Blaikie07e22442013-09-23 22:44:40 +0000178 DWARFDebugInfoEntryInlinedChain() : U(0) {}
Alexey Samsonov3211e612013-08-06 10:49:15 +0000179 SmallVector<DWARFDebugInfoEntryMinimal, 4> DIEs;
David Blaikie07e22442013-09-23 22:44:40 +0000180 const DWARFUnit *U;
Benjamin Krameraa2f78f2011-09-13 19:42:23 +0000181};
182
183}
184
185#endif