DwarfDebug: Simplify debug_loc merging
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DIEHash.cpp
1 //===-- 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 "ByteStreamer.h"
17 #include "DIEHash.h"
18 #include "DIE.h"
19 #include "DwarfDebug.h"
20 #include "llvm/ADT/ArrayRef.h"
21 #include "llvm/ADT/StringRef.h"
22 #include "llvm/CodeGen/AsmPrinter.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/Dwarf.h"
25 #include "llvm/Support/Endian.h"
26 #include "llvm/Support/MD5.h"
27 #include "llvm/Support/raw_ostream.h"
28
29 using namespace llvm;
30
31 /// \brief Grabs the string in whichever attribute is passed in and returns
32 /// a reference to it.
33 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) {
34   const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
35   const DIEAbbrev &Abbrevs = Die.getAbbrev();
36
37   // Iterate through all the attributes until we find the one we're
38   // looking for, if we can't find it return an empty string.
39   for (size_t i = 0; i < Values.size(); ++i) {
40     if (Abbrevs.getData()[i].getAttribute() == Attr) {
41       DIEValue *V = Values[i];
42       assert(isa<DIEString>(V) && "String requested. Not a string.");
43       DIEString *S = cast<DIEString>(V);
44       return S->getString();
45     }
46   }
47   return StringRef("");
48 }
49
50 /// \brief Adds the string in \p Str to the hash. This also hashes
51 /// a trailing NULL with the string.
52 void DIEHash::addString(StringRef Str) {
53   DEBUG(dbgs() << "Adding string " << Str << " to hash.\n");
54   Hash.update(Str);
55   Hash.update(makeArrayRef((uint8_t)'\0'));
56 }
57
58 // FIXME: The LEB128 routines are copied and only slightly modified out of
59 // LEB128.h.
60
61 /// \brief Adds the unsigned in \p Value to the hash encoded as a ULEB128.
62 void DIEHash::addULEB128(uint64_t Value) {
63   DEBUG(dbgs() << "Adding ULEB128 " << Value << " to hash.\n");
64   do {
65     uint8_t Byte = Value & 0x7f;
66     Value >>= 7;
67     if (Value != 0)
68       Byte |= 0x80; // Mark this byte to show that more bytes will follow.
69     Hash.update(Byte);
70   } while (Value != 0);
71 }
72
73 void DIEHash::addSLEB128(int64_t Value) {
74   DEBUG(dbgs() << "Adding ULEB128 " << Value << " to hash.\n");
75   bool More;
76   do {
77     uint8_t Byte = Value & 0x7f;
78     Value >>= 7;
79     More = !((((Value == 0) && ((Byte & 0x40) == 0)) ||
80               ((Value == -1) && ((Byte & 0x40) != 0))));
81     if (More)
82       Byte |= 0x80; // Mark this byte to show that more bytes will follow.
83     Hash.update(Byte);
84   } while (More);
85 }
86
87 /// \brief Including \p Parent adds the context of Parent to the hash..
88 void DIEHash::addParentContext(const DIE &Parent) {
89
90   DEBUG(dbgs() << "Adding parent context to hash...\n");
91
92   // [7.27.2] For each surrounding type or namespace beginning with the
93   // outermost such construct...
94   SmallVector<const DIE *, 1> Parents;
95   const DIE *Cur = &Parent;
96   while (Cur->getParent()) {
97     Parents.push_back(Cur);
98     Cur = Cur->getParent();
99   }
100   assert(Cur->getTag() == dwarf::DW_TAG_compile_unit ||
101          Cur->getTag() == dwarf::DW_TAG_type_unit);
102
103   // Reverse iterate over our list to go from the outermost construct to the
104   // innermost.
105   for (SmallVectorImpl<const DIE *>::reverse_iterator I = Parents.rbegin(),
106                                                       E = Parents.rend();
107        I != E; ++I) {
108     const DIE &Die = **I;
109
110     // ... Append the letter "C" to the sequence...
111     addULEB128('C');
112
113     // ... Followed by the DWARF tag of the construct...
114     addULEB128(Die.getTag());
115
116     // ... Then the name, taken from the DW_AT_name attribute.
117     StringRef Name = getDIEStringAttr(Die, dwarf::DW_AT_name);
118     DEBUG(dbgs() << "... adding context: " << Name << "\n");
119     if (!Name.empty())
120       addString(Name);
121   }
122 }
123
124 // Collect all of the attributes for a particular DIE in single structure.
125 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) {
126   const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
127   const DIEAbbrev &Abbrevs = Die.getAbbrev();
128
129 #define COLLECT_ATTR(NAME)                                                     \
130   case dwarf::NAME:                                                            \
131     Attrs.NAME.Val = Values[i];                                                \
132     Attrs.NAME.Desc = &Abbrevs.getData()[i];                                   \
133     break
134
135   for (size_t i = 0, e = Values.size(); i != e; ++i) {
136     DEBUG(dbgs() << "Attribute: "
137                  << dwarf::AttributeString(Abbrevs.getData()[i].getAttribute())
138                  << " added.\n");
139     switch (Abbrevs.getData()[i].getAttribute()) {
140       COLLECT_ATTR(DW_AT_name);
141       COLLECT_ATTR(DW_AT_accessibility);
142       COLLECT_ATTR(DW_AT_address_class);
143       COLLECT_ATTR(DW_AT_allocated);
144       COLLECT_ATTR(DW_AT_artificial);
145       COLLECT_ATTR(DW_AT_associated);
146       COLLECT_ATTR(DW_AT_binary_scale);
147       COLLECT_ATTR(DW_AT_bit_offset);
148       COLLECT_ATTR(DW_AT_bit_size);
149       COLLECT_ATTR(DW_AT_bit_stride);
150       COLLECT_ATTR(DW_AT_byte_size);
151       COLLECT_ATTR(DW_AT_byte_stride);
152       COLLECT_ATTR(DW_AT_const_expr);
153       COLLECT_ATTR(DW_AT_const_value);
154       COLLECT_ATTR(DW_AT_containing_type);
155       COLLECT_ATTR(DW_AT_count);
156       COLLECT_ATTR(DW_AT_data_bit_offset);
157       COLLECT_ATTR(DW_AT_data_location);
158       COLLECT_ATTR(DW_AT_data_member_location);
159       COLLECT_ATTR(DW_AT_decimal_scale);
160       COLLECT_ATTR(DW_AT_decimal_sign);
161       COLLECT_ATTR(DW_AT_default_value);
162       COLLECT_ATTR(DW_AT_digit_count);
163       COLLECT_ATTR(DW_AT_discr);
164       COLLECT_ATTR(DW_AT_discr_list);
165       COLLECT_ATTR(DW_AT_discr_value);
166       COLLECT_ATTR(DW_AT_encoding);
167       COLLECT_ATTR(DW_AT_enum_class);
168       COLLECT_ATTR(DW_AT_endianity);
169       COLLECT_ATTR(DW_AT_explicit);
170       COLLECT_ATTR(DW_AT_is_optional);
171       COLLECT_ATTR(DW_AT_location);
172       COLLECT_ATTR(DW_AT_lower_bound);
173       COLLECT_ATTR(DW_AT_mutable);
174       COLLECT_ATTR(DW_AT_ordering);
175       COLLECT_ATTR(DW_AT_picture_string);
176       COLLECT_ATTR(DW_AT_prototyped);
177       COLLECT_ATTR(DW_AT_small);
178       COLLECT_ATTR(DW_AT_segment);
179       COLLECT_ATTR(DW_AT_string_length);
180       COLLECT_ATTR(DW_AT_threads_scaled);
181       COLLECT_ATTR(DW_AT_upper_bound);
182       COLLECT_ATTR(DW_AT_use_location);
183       COLLECT_ATTR(DW_AT_use_UTF8);
184       COLLECT_ATTR(DW_AT_variable_parameter);
185       COLLECT_ATTR(DW_AT_virtuality);
186       COLLECT_ATTR(DW_AT_visibility);
187       COLLECT_ATTR(DW_AT_vtable_elem_location);
188       COLLECT_ATTR(DW_AT_type);
189     default:
190       break;
191     }
192   }
193 }
194
195 void DIEHash::hashShallowTypeReference(dwarf::Attribute Attribute,
196                                        const DIE &Entry, StringRef Name) {
197   // append the letter 'N'
198   addULEB128('N');
199
200   // the DWARF attribute code (DW_AT_type or DW_AT_friend),
201   addULEB128(Attribute);
202
203   // the context of the tag,
204   if (const DIE *Parent = Entry.getParent())
205     addParentContext(*Parent);
206
207   // the letter 'E',
208   addULEB128('E');
209
210   // and the name of the type.
211   addString(Name);
212
213   // Currently DW_TAG_friends are not used by Clang, but if they do become so,
214   // here's the relevant spec text to implement:
215   //
216   // For DW_TAG_friend, if the referenced entry is the DW_TAG_subprogram,
217   // the context is omitted and the name to be used is the ABI-specific name
218   // of the subprogram (e.g., the mangled linker name).
219 }
220
221 void DIEHash::hashRepeatedTypeReference(dwarf::Attribute Attribute,
222                                         unsigned DieNumber) {
223   // a) If T is in the list of [previously hashed types], use the letter
224   // 'R' as the marker
225   addULEB128('R');
226
227   addULEB128(Attribute);
228
229   // and use the unsigned LEB128 encoding of [the index of T in the
230   // list] as the attribute value;
231   addULEB128(DieNumber);
232 }
233
234 void DIEHash::hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag,
235                            const DIE &Entry) {
236   assert(Tag != dwarf::DW_TAG_friend && "No current LLVM clients emit friend "
237                                         "tags. Add support here when there's "
238                                         "a use case");
239   // Step 5
240   // If the tag in Step 3 is one of [the below tags]
241   if ((Tag == dwarf::DW_TAG_pointer_type ||
242        Tag == dwarf::DW_TAG_reference_type ||
243        Tag == dwarf::DW_TAG_rvalue_reference_type ||
244        Tag == dwarf::DW_TAG_ptr_to_member_type) &&
245       // and the referenced type (via the [below attributes])
246       // FIXME: This seems overly restrictive, and causes hash mismatches
247       // there's a decl/def difference in the containing type of a
248       // ptr_to_member_type, but it's what DWARF says, for some reason.
249       Attribute == dwarf::DW_AT_type) {
250     // ... has a DW_AT_name attribute,
251     StringRef Name = getDIEStringAttr(Entry, dwarf::DW_AT_name);
252     if (!Name.empty()) {
253       hashShallowTypeReference(Attribute, Entry, Name);
254       return;
255     }
256   }
257
258   unsigned &DieNumber = Numbering[&Entry];
259   if (DieNumber) {
260     hashRepeatedTypeReference(Attribute, DieNumber);
261     return;
262   }
263
264   // otherwise, b) use the letter 'T' as a the marker, ...
265   addULEB128('T');
266
267   addULEB128(Attribute);
268
269   // ... process the type T recursively by performing Steps 2 through 7, and
270   // use the result as the attribute value.
271   DieNumber = Numbering.size();
272   computeHash(Entry);
273 }
274
275 // Hash all of the values in a block like set of values. This assumes that
276 // all of the data is going to be added as integers.
277 void DIEHash::hashBlockData(const SmallVectorImpl<DIEValue *> &Values) {
278   for (SmallVectorImpl<DIEValue *>::const_iterator I = Values.begin(),
279                                                    E = Values.end();
280        I != E; ++I)
281     Hash.update((uint64_t)cast<DIEInteger>(*I)->getValue());
282 }
283
284 // Hash the contents of a loclistptr class.
285 void DIEHash::hashLocList(const DIELocList &LocList) {
286   SmallVectorImpl<DebugLocEntry>::const_iterator Start =
287       AP->getDwarfDebug()->getDebugLocEntries().begin();
288   Start += LocList.getValue();
289   HashingByteStreamer Streamer(*this);
290   for (SmallVectorImpl<DebugLocEntry>::const_iterator
291            I = Start,
292            E = AP->getDwarfDebug()->getDebugLocEntries().end();
293        I != E; ++I) {
294     const DebugLocEntry &Entry = *I;
295     // Go through the entries until we hit the end of the list,
296     // which is the next empty entry.
297     if (Entry.isEmpty())
298       return;
299     else
300       AP->getDwarfDebug()->emitDebugLocEntry(Streamer, Entry);
301   }
302 }
303
304 // Hash an individual attribute \param Attr based on the type of attribute and
305 // the form.
306 void DIEHash::hashAttribute(AttrEntry Attr, dwarf::Tag Tag) {
307   const DIEValue *Value = Attr.Val;
308   const DIEAbbrevData *Desc = Attr.Desc;
309   dwarf::Attribute Attribute = Desc->getAttribute();
310
311   // Other attribute values use the letter 'A' as the marker, and the value
312   // consists of the form code (encoded as an unsigned LEB128 value) followed by
313   // the encoding of the value according to the form code. To ensure
314   // reproducibility of the signature, the set of forms used in the signature
315   // computation is limited to the following: DW_FORM_sdata, DW_FORM_flag,
316   // DW_FORM_string, and DW_FORM_block.
317
318   switch (Value->getType()) {
319     // 7.27 Step 3
320     // ... An attribute that refers to another type entry T is processed as
321     // follows:
322   case DIEValue::isEntry:
323     hashDIEEntry(Attribute, Tag, *cast<DIEEntry>(Value)->getEntry());
324     break;
325   case DIEValue::isInteger: {
326     addULEB128('A');
327     addULEB128(Attribute);
328     switch (Desc->getForm()) {
329     case dwarf::DW_FORM_data1:
330     case dwarf::DW_FORM_data2:
331     case dwarf::DW_FORM_data4:
332     case dwarf::DW_FORM_data8:
333     case dwarf::DW_FORM_udata:
334     case dwarf::DW_FORM_sdata:
335       addULEB128(dwarf::DW_FORM_sdata);
336       addSLEB128((int64_t)cast<DIEInteger>(Value)->getValue());
337       break;
338     // DW_FORM_flag_present is just flag with a value of one. We still give it a
339     // value so just use the value.
340     case dwarf::DW_FORM_flag_present:
341     case dwarf::DW_FORM_flag:
342       addULEB128(dwarf::DW_FORM_flag);
343       addULEB128((int64_t)cast<DIEInteger>(Value)->getValue());
344       break;
345     default:
346       llvm_unreachable("Unknown integer form!");
347     }
348     break;
349   }
350   case DIEValue::isString:
351     addULEB128('A');
352     addULEB128(Attribute);
353     addULEB128(dwarf::DW_FORM_string);
354     addString(cast<DIEString>(Value)->getString());
355     break;
356   case DIEValue::isBlock:
357   case DIEValue::isLoc:
358   case DIEValue::isLocList:
359     addULEB128('A');
360     addULEB128(Attribute);
361     addULEB128(dwarf::DW_FORM_block);
362     if (isa<DIEBlock>(Value)) {
363       addULEB128(cast<DIEBlock>(Value)->ComputeSize(AP));
364       hashBlockData(cast<DIEBlock>(Value)->getValues());
365     } else if (isa<DIELoc>(Value)) {
366       addULEB128(cast<DIELoc>(Value)->ComputeSize(AP));
367       hashBlockData(cast<DIELoc>(Value)->getValues());
368     } else {
369       // We could add the block length, but that would take
370       // a bit of work and not add a lot of uniqueness
371       // to the hash in some way we could test.
372       hashLocList(*cast<DIELocList>(Value));
373     }
374     break;
375     // FIXME: It's uncertain whether or not we should handle this at the moment.
376   case DIEValue::isExpr:
377   case DIEValue::isLabel:
378   case DIEValue::isDelta:
379   case DIEValue::isTypeSignature:
380     llvm_unreachable("Add support for additional value types.");
381   }
382 }
383
384 // Go through the attributes from \param Attrs in the order specified in 7.27.4
385 // and hash them.
386 void DIEHash::hashAttributes(const DIEAttrs &Attrs, dwarf::Tag Tag) {
387 #define ADD_ATTR(ATTR)                                                         \
388   {                                                                            \
389     if (ATTR.Val != 0)                                                         \
390       hashAttribute(ATTR, Tag);                                                \
391   }
392
393   ADD_ATTR(Attrs.DW_AT_name);
394   ADD_ATTR(Attrs.DW_AT_accessibility);
395   ADD_ATTR(Attrs.DW_AT_address_class);
396   ADD_ATTR(Attrs.DW_AT_allocated);
397   ADD_ATTR(Attrs.DW_AT_artificial);
398   ADD_ATTR(Attrs.DW_AT_associated);
399   ADD_ATTR(Attrs.DW_AT_binary_scale);
400   ADD_ATTR(Attrs.DW_AT_bit_offset);
401   ADD_ATTR(Attrs.DW_AT_bit_size);
402   ADD_ATTR(Attrs.DW_AT_bit_stride);
403   ADD_ATTR(Attrs.DW_AT_byte_size);
404   ADD_ATTR(Attrs.DW_AT_byte_stride);
405   ADD_ATTR(Attrs.DW_AT_const_expr);
406   ADD_ATTR(Attrs.DW_AT_const_value);
407   ADD_ATTR(Attrs.DW_AT_containing_type);
408   ADD_ATTR(Attrs.DW_AT_count);
409   ADD_ATTR(Attrs.DW_AT_data_bit_offset);
410   ADD_ATTR(Attrs.DW_AT_data_location);
411   ADD_ATTR(Attrs.DW_AT_data_member_location);
412   ADD_ATTR(Attrs.DW_AT_decimal_scale);
413   ADD_ATTR(Attrs.DW_AT_decimal_sign);
414   ADD_ATTR(Attrs.DW_AT_default_value);
415   ADD_ATTR(Attrs.DW_AT_digit_count);
416   ADD_ATTR(Attrs.DW_AT_discr);
417   ADD_ATTR(Attrs.DW_AT_discr_list);
418   ADD_ATTR(Attrs.DW_AT_discr_value);
419   ADD_ATTR(Attrs.DW_AT_encoding);
420   ADD_ATTR(Attrs.DW_AT_enum_class);
421   ADD_ATTR(Attrs.DW_AT_endianity);
422   ADD_ATTR(Attrs.DW_AT_explicit);
423   ADD_ATTR(Attrs.DW_AT_is_optional);
424   ADD_ATTR(Attrs.DW_AT_location);
425   ADD_ATTR(Attrs.DW_AT_lower_bound);
426   ADD_ATTR(Attrs.DW_AT_mutable);
427   ADD_ATTR(Attrs.DW_AT_ordering);
428   ADD_ATTR(Attrs.DW_AT_picture_string);
429   ADD_ATTR(Attrs.DW_AT_prototyped);
430   ADD_ATTR(Attrs.DW_AT_small);
431   ADD_ATTR(Attrs.DW_AT_segment);
432   ADD_ATTR(Attrs.DW_AT_string_length);
433   ADD_ATTR(Attrs.DW_AT_threads_scaled);
434   ADD_ATTR(Attrs.DW_AT_upper_bound);
435   ADD_ATTR(Attrs.DW_AT_use_location);
436   ADD_ATTR(Attrs.DW_AT_use_UTF8);
437   ADD_ATTR(Attrs.DW_AT_variable_parameter);
438   ADD_ATTR(Attrs.DW_AT_virtuality);
439   ADD_ATTR(Attrs.DW_AT_visibility);
440   ADD_ATTR(Attrs.DW_AT_vtable_elem_location);
441   ADD_ATTR(Attrs.DW_AT_type);
442
443   // FIXME: Add the extended attributes.
444 }
445
446 // Add all of the attributes for \param Die to the hash.
447 void DIEHash::addAttributes(const DIE &Die) {
448   DIEAttrs Attrs = {};
449   collectAttributes(Die, Attrs);
450   hashAttributes(Attrs, Die.getTag());
451 }
452
453 void DIEHash::hashNestedType(const DIE &Die, StringRef Name) {
454   // 7.27 Step 7
455   // ... append the letter 'S',
456   addULEB128('S');
457
458   // the tag of C,
459   addULEB128(Die.getTag());
460
461   // and the name.
462   addString(Name);
463 }
464
465 // Compute the hash of a DIE. This is based on the type signature computation
466 // given in section 7.27 of the DWARF4 standard. It is the md5 hash of a
467 // flattened description of the DIE.
468 void DIEHash::computeHash(const DIE &Die) {
469   // Append the letter 'D', followed by the DWARF tag of the DIE.
470   addULEB128('D');
471   addULEB128(Die.getTag());
472
473   // Add each of the attributes of the DIE.
474   addAttributes(Die);
475
476   // Then hash each of the children of the DIE.
477   for (std::vector<DIE *>::const_iterator I = Die.getChildren().begin(),
478                                           E = Die.getChildren().end();
479        I != E; ++I) {
480     // 7.27 Step 7
481     // If C is a nested type entry or a member function entry, ...
482     if (isType((*I)->getTag()) || (*I)->getTag() == dwarf::DW_TAG_subprogram) {
483       StringRef Name = getDIEStringAttr(**I, dwarf::DW_AT_name);
484       // ... and has a DW_AT_name attribute
485       if (!Name.empty()) {
486         hashNestedType(**I, Name);
487         continue;
488       }
489     }
490     computeHash(**I);
491   }
492
493   // Following the last (or if there are no children), append a zero byte.
494   Hash.update(makeArrayRef((uint8_t)'\0'));
495 }
496
497 /// This is based on the type signature computation given in section 7.27 of the
498 /// DWARF4 standard. It is the md5 hash of a flattened description of the DIE
499 /// with the exception that we are hashing only the context and the name of the
500 /// type.
501 uint64_t DIEHash::computeDIEODRSignature(const DIE &Die) {
502
503   // Add the contexts to the hash. We won't be computing the ODR hash for
504   // function local types so it's safe to use the generic context hashing
505   // algorithm here.
506   // FIXME: If we figure out how to account for linkage in some way we could
507   // actually do this with a slight modification to the parent hash algorithm.
508   if (const DIE *Parent = Die.getParent())
509     addParentContext(*Parent);
510
511   // Add the current DIE information.
512
513   // Add the DWARF tag of the DIE.
514   addULEB128(Die.getTag());
515
516   // Add the name of the type to the hash.
517   addString(getDIEStringAttr(Die, dwarf::DW_AT_name));
518
519   // Now get the result.
520   MD5::MD5Result Result;
521   Hash.final(Result);
522
523   // ... take the least significant 8 bytes and return those. Our MD5
524   // implementation always returns its results in little endian, swap bytes
525   // appropriately.
526   return *reinterpret_cast<support::ulittle64_t *>(Result + 8);
527 }
528
529 /// This is based on the type signature computation given in section 7.27 of the
530 /// DWARF4 standard. It is an md5 hash of the flattened description of the DIE
531 /// with the inclusion of the full CU and all top level CU entities.
532 // TODO: Initialize the type chain at 0 instead of 1 for CU signatures.
533 uint64_t DIEHash::computeCUSignature(const DIE &Die) {
534   Numbering.clear();
535   Numbering[&Die] = 1;
536
537   // Hash the DIE.
538   computeHash(Die);
539
540   // Now return the result.
541   MD5::MD5Result Result;
542   Hash.final(Result);
543
544   // ... take the least significant 8 bytes and return those. Our MD5
545   // implementation always returns its results in little endian, swap bytes
546   // appropriately.
547   return *reinterpret_cast<support::ulittle64_t *>(Result + 8);
548 }
549
550 /// This is based on the type signature computation given in section 7.27 of the
551 /// DWARF4 standard. It is an md5 hash of the flattened description of the DIE
552 /// with the inclusion of additional forms not specifically called out in the
553 /// standard.
554 uint64_t DIEHash::computeTypeSignature(const DIE &Die) {
555   Numbering.clear();
556   Numbering[&Die] = 1;
557
558   if (const DIE *Parent = Die.getParent())
559     addParentContext(*Parent);
560
561   // Hash the DIE.
562   computeHash(Die);
563
564   // Now return the result.
565   MD5::MD5Result Result;
566   Hash.final(Result);
567
568   // ... take the least significant 8 bytes and return those. Our MD5
569   // implementation always returns its results in little endian, swap bytes
570   // appropriately.
571   return *reinterpret_cast<support::ulittle64_t *>(Result + 8);
572 }