blob: 1322743247eea959713259b7eb4594dabb425808 [file] [log] [blame]
Eric Christopher0d27ca12013-08-08 23:45:55 +00001//===-- llvm/CodeGen/DIEHash.cpp - Dwarf Hashing Framework ----------------===//
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// This file contains support for DWARF4 hashing of DIEs.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "dwarfdebug"
15
16#include "DIE.h"
17#include "DIEHash.h"
18#include "DwarfCompileUnit.h"
19#include "llvm/ADT/ArrayRef.h"
20#include "llvm/ADT/StringRef.h"
21#include "llvm/Support/Debug.h"
22#include "llvm/Support/Dwarf.h"
23#include "llvm/Support/Endian.h"
24#include "llvm/Support/MD5.h"
25#include "llvm/Support/raw_ostream.h"
26
27using namespace llvm;
28
29/// \brief Grabs the string in whichever attribute is passed in and returns
30/// a reference to it.
31static StringRef getDIEStringAttr(DIE *Die, uint16_t Attr) {
32 const SmallVectorImpl<DIEValue *> &Values = Die->getValues();
33 const DIEAbbrev &Abbrevs = Die->getAbbrev();
34
35 // Iterate through all the attributes until we find the one we're
36 // looking for, if we can't find it return an empty string.
37 for (size_t i = 0; i < Values.size(); ++i) {
38 if (Abbrevs.getData()[i].getAttribute() == Attr) {
39 DIEValue *V = Values[i];
40 assert(isa<DIEString>(V) && "String requested. Not a string.");
41 DIEString *S = cast<DIEString>(V);
42 return S->getString();
43 }
44 }
45 return StringRef("");
46}
47
48/// \brief Adds the string in \p Str to the hash. This also hashes
49/// a trailing NULL with the string.
50void DIEHash::addString(StringRef Str) {
51 DEBUG(dbgs() << "Adding string " << Str << " to hash.\n");
52 Hash.update(Str);
53 Hash.update(makeArrayRef((uint8_t)'\0'));
54}
55
56// FIXME: The LEB128 routines are copied and only slightly modified out of
57// LEB128.h.
58
59/// \brief Adds the unsigned in \p Value to the hash encoded as a ULEB128.
60void DIEHash::addULEB128(uint64_t Value) {
61 DEBUG(dbgs() << "Adding ULEB128 " << Value << " to hash.\n");
62 do {
63 uint8_t Byte = Value & 0x7f;
64 Value >>= 7;
65 if (Value != 0)
66 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
67 Hash.update(Byte);
68 } while (Value != 0);
69}
70
71/// \brief Including \p Parent adds the context of Parent to the hash..
72void DIEHash::addParentContext(DIE *Parent) {
73
74 DEBUG(dbgs() << "Adding parent context to hash...\n");
75
76 // [7.27.2] For each surrounding type or namespace beginning with the
77 // outermost such construct...
78 SmallVector<DIE *, 1> Parents;
79 while (Parent->getTag() != dwarf::DW_TAG_compile_unit) {
80 Parents.push_back(Parent);
81 Parent = Parent->getParent();
82 }
83
84 // Reverse iterate over our list to go from the outermost construct to the
85 // innermost.
86 for (SmallVectorImpl<DIE *>::reverse_iterator I = Parents.rbegin(),
87 E = Parents.rend();
88 I != E; ++I) {
89 DIE *Die = *I;
90
91 // ... Append the letter "C" to the sequence...
92 addULEB128('C');
93
94 // ... Followed by the DWARF tag of the construct...
95 addULEB128(Die->getTag());
96
97 // ... Then the name, taken from the DW_AT_name attribute.
98 StringRef Name = getDIEStringAttr(Die, dwarf::DW_AT_name);
99 DEBUG(dbgs() << "... adding context: " << Name << "\n");
100 if (!Name.empty())
101 addString(Name);
102 }
103}
104
Eric Christopher0710bfa2013-08-13 01:21:55 +0000105// Collect all of the attributes for a particular DIE in single structure.
David Blaikiecbb5c732013-08-14 22:23:05 +0000106void DIEHash::collectAttributes(DIE *Die, DIEAttrs &Attrs) {
Eric Christopher0710bfa2013-08-13 01:21:55 +0000107 const SmallVectorImpl<DIEValue *> &Values = Die->getValues();
108 const DIEAbbrev &Abbrevs = Die->getAbbrev();
109
110#define COLLECT_ATTR(NAME) \
David Blaikiecbb5c732013-08-14 22:23:05 +0000111 Attrs.NAME.Val = Values[i]; \
112 Attrs.NAME.Desc = &Abbrevs.getData()[i];
Eric Christopher0710bfa2013-08-13 01:21:55 +0000113
114 for (size_t i = 0, e = Values.size(); i != e; ++i) {
115 DEBUG(dbgs() << "Attribute: "
116 << dwarf::AttributeString(Abbrevs.getData()[i].getAttribute())
117 << " added.\n");
118 switch (Abbrevs.getData()[i].getAttribute()) {
119 case dwarf::DW_AT_name:
120 COLLECT_ATTR(DW_AT_name);
121 break;
Eric Christopher7ced4fa2013-08-28 00:10:38 +0000122 case dwarf::DW_AT_language:
123 COLLECT_ATTR(DW_AT_language);
124 break;
Eric Christopher0710bfa2013-08-13 01:21:55 +0000125 default:
126 break;
127 }
128 }
129}
130
131// Hash an individual attribute \param Attr based on the type of attribute and
132// the form.
133void DIEHash::hashAttribute(AttrEntry Attr) {
134 const DIEValue *Value = Attr.Val;
135 const DIEAbbrevData *Desc = Attr.Desc;
136
137 // TODO: Add support for types.
138
139 // Add the letter A to the hash.
140 addULEB128('A');
141
142 // Then the attribute code and form.
143 addULEB128(Desc->getAttribute());
144 addULEB128(Desc->getForm());
145
146 // TODO: Add support for additional forms.
147 switch (Desc->getForm()) {
148 case dwarf::DW_FORM_strp:
149 addString(cast<DIEString>(Value)->getString());
150 break;
Eric Christopher7ced4fa2013-08-28 00:10:38 +0000151 case dwarf::DW_FORM_data1:
152 case dwarf::DW_FORM_data2:
153 case dwarf::DW_FORM_data4:
154 case dwarf::DW_FORM_data8:
155 case dwarf::DW_FORM_udata:
156 addULEB128(cast<DIEInteger>(Value)->getValue());
157 break;
Eric Christopher0710bfa2013-08-13 01:21:55 +0000158 }
159}
160
161// Go through the attributes from \param Attrs in the order specified in 7.27.4
162// and hash them.
David Blaikiecbb5c732013-08-14 22:23:05 +0000163void DIEHash::hashAttributes(const DIEAttrs &Attrs) {
Eric Christopher0710bfa2013-08-13 01:21:55 +0000164#define ADD_ATTR(ATTR) \
165 { \
166 if (ATTR.Val != 0) \
167 hashAttribute(ATTR); \
168 }
169
170 // FIXME: Add the rest.
171 ADD_ATTR(Attrs.DW_AT_name);
Eric Christopher7ced4fa2013-08-28 00:10:38 +0000172 ADD_ATTR(Attrs.DW_AT_language);
Eric Christopher0710bfa2013-08-13 01:21:55 +0000173}
174
175// Add all of the attributes for \param Die to the hash.
176void DIEHash::addAttributes(DIE *Die) {
177 DIEAttrs Attrs;
178 memset(&Attrs, 0, sizeof(Attrs));
David Blaikiecbb5c732013-08-14 22:23:05 +0000179 collectAttributes(Die, Attrs);
Eric Christopher0710bfa2013-08-13 01:21:55 +0000180 hashAttributes(Attrs);
181}
182
183// Compute the hash of a DIE. This is based on the type signature computation
184// given in section 7.27 of the DWARF4 standard. It is the md5 hash of a
185// flattened description of the DIE.
186void DIEHash::computeHash(DIE *Die) {
187
188 // Append the letter 'D', followed by the DWARF tag of the DIE.
189 addULEB128('D');
190 addULEB128(Die->getTag());
191
192 // Add each of the attributes of the DIE.
193 addAttributes(Die);
194
195 // Then hash each of the children of the DIE.
196 for (std::vector<DIE *>::const_iterator I = Die->getChildren().begin(),
197 E = Die->getChildren().end();
198 I != E; ++I)
199 computeHash(*I);
200}
201
Eric Christopher0d27ca12013-08-08 23:45:55 +0000202/// This is based on the type signature computation given in section 7.27 of the
203/// DWARF4 standard. It is the md5 hash of a flattened description of the DIE
Eric Christopherdd0cd3c2013-08-12 23:59:24 +0000204/// with the exception that we are hashing only the context and the name of the
205/// type.
Eric Christopher0d27ca12013-08-08 23:45:55 +0000206uint64_t DIEHash::computeDIEODRSignature(DIE *Die) {
207
208 // Add the contexts to the hash. We won't be computing the ODR hash for
209 // function local types so it's safe to use the generic context hashing
210 // algorithm here.
211 // FIXME: If we figure out how to account for linkage in some way we could
212 // actually do this with a slight modification to the parent hash algorithm.
213 DIE *Parent = Die->getParent();
214 if (Parent)
215 addParentContext(Parent);
216
217 // Add the current DIE information.
218
219 // Add the DWARF tag of the DIE.
220 addULEB128(Die->getTag());
221
222 // Add the name of the type to the hash.
223 addString(getDIEStringAttr(Die, dwarf::DW_AT_name));
224
225 // Now get the result.
226 MD5::MD5Result Result;
227 Hash.final(Result);
228
229 // ... take the least significant 8 bytes and return those. Our MD5
230 // implementation always returns its results in little endian, swap bytes
231 // appropriately.
232 return *reinterpret_cast<support::ulittle64_t *>(Result + 8);
233}
Eric Christopher0710bfa2013-08-13 01:21:55 +0000234
235/// This is based on the type signature computation given in section 7.27 of the
236/// DWARF4 standard. It is an md5 hash of the flattened description of the DIE
237/// with the inclusion of the full CU and all top level CU entities.
238uint64_t DIEHash::computeCUSignature(DIE *Die) {
239
240 // Hash the DIE.
241 computeHash(Die);
242
243 // Now return the result.
244 MD5::MD5Result Result;
245 Hash.final(Result);
246
247 // ... take the least significant 8 bytes and return those. Our MD5
248 // implementation always returns its results in little endian, swap bytes
249 // appropriately.
250 return *reinterpret_cast<support::ulittle64_t *>(Result + 8);
251}