OSDN Git Service

Add support for DW_FORM_dataN and DW_FORM_udata to the DIE hashing
[android-x86/external-llvm.git] / lib / CodeGen / AsmPrinter / DIEHash.h
1 //===-- llvm/CodeGen/DIEHash.h - Dwarf Hashing Framework -------*- 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 // This file contains support for DWARF4 hashing of DIEs.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Support/MD5.h"
15
16 namespace llvm {
17
18 class CompileUnit;
19
20 /// \brief An object containing the capability of hashing and adding hash
21 /// attributes onto a DIE.
22 class DIEHash {
23   // The entry for a particular attribute.
24   struct AttrEntry {
25     const DIEValue *Val;
26     const DIEAbbrevData *Desc;
27   };
28
29   // Collection of all attributes used in hashing a particular DIE.
30   struct DIEAttrs {
31     AttrEntry DW_AT_name;
32     AttrEntry DW_AT_language;
33   };
34
35 public:
36   /// \brief Computes the ODR signature
37   uint64_t computeDIEODRSignature(DIE *Die);
38
39   /// \brief Computes the CU signature
40   uint64_t computeCUSignature(DIE *Die);
41
42   // Helper routines to process parts of a DIE.
43 private:
44   /// \brief Adds the parent context of \param Die to the hash.
45   void addParentContext(DIE *Die);
46
47   /// \brief Adds the attributes of \param Die to the hash.
48   void addAttributes(DIE *Die);
49
50   /// \brief Computes the full DWARF4 7.27 hash of the DIE.
51   void computeHash(DIE *Die);
52
53   // Routines that add DIEValues to the hash.
54 private:
55   /// \brief Encodes and adds \param Value to the hash as a ULEB128.
56   void addULEB128(uint64_t Value);
57
58   /// \brief Adds \param Str to the hash and includes a NULL byte.
59   void addString(StringRef Str);
60
61   /// \brief Collects the attributes of DIE \param Die into the \param Attrs
62   /// structure.
63   void collectAttributes(DIE *Die, DIEAttrs &Attrs);
64
65   /// \brief Hashes the attributes in \param Attrs in order.
66   void hashAttributes(const DIEAttrs &Attrs);
67
68   /// \brief Hashes an individual attribute.
69   void hashAttribute(AttrEntry Attr);
70
71 private:
72   MD5 Hash;
73 };
74 }