2013-08-09 07:45:55 +08:00
|
|
|
//===-- llvm/CodeGen/DIEHash.h - Dwarf Hashing Framework -------*- C++ -*--===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2013-08-09 07:45:55 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains support for DWARF4 hashing of DIEs.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DIEHASH_H
|
|
|
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_DIEHASH_H
|
2014-03-08 06:40:30 +08:00
|
|
|
|
2013-10-22 02:59:40 +08:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2015-01-14 19:23:27 +08:00
|
|
|
#include "llvm/CodeGen/DIE.h"
|
2013-08-09 07:45:55 +08:00
|
|
|
#include "llvm/Support/MD5.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2014-02-20 10:50:45 +08:00
|
|
|
class AsmPrinter;
|
2013-08-09 07:45:55 +08:00
|
|
|
class CompileUnit;
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// An object containing the capability of hashing and adding hash
|
2013-08-09 07:45:55 +08:00
|
|
|
/// attributes onto a DIE.
|
2013-09-12 02:05:11 +08:00
|
|
|
class DIEHash {
|
2013-08-13 09:21:55 +08:00
|
|
|
// Collection of all attributes used in hashing a particular DIE.
|
|
|
|
struct DIEAttrs {
|
2017-05-24 02:27:09 +08:00
|
|
|
#define HANDLE_DIE_HASH_ATTR(NAME) DIEValue NAME;
|
|
|
|
#include "DIEHashAttributes.def"
|
2013-08-13 09:21:55 +08:00
|
|
|
};
|
|
|
|
|
2013-08-09 07:45:55 +08:00
|
|
|
public:
|
2014-04-24 14:44:33 +08:00
|
|
|
DIEHash(AsmPrinter *A = nullptr) : AP(A) {}
|
2014-02-20 10:50:45 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Computes the CU signature.
|
2017-05-29 14:32:34 +08:00
|
|
|
uint64_t computeCUSignature(StringRef DWOName, const DIE &Die);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Computes the type signature.
|
2013-10-25 02:29:03 +08:00
|
|
|
uint64_t computeTypeSignature(const DIE &Die);
|
2013-09-04 05:57:57 +08:00
|
|
|
|
2013-08-09 07:45:55 +08:00
|
|
|
// Helper routines to process parts of a DIE.
|
2013-08-13 09:21:55 +08:00
|
|
|
private:
|
2018-07-18 17:07:54 +08:00
|
|
|
/// Adds the parent context of \param Parent to the hash.
|
2018-07-17 02:51:40 +08:00
|
|
|
void addParentContext(const DIE &Parent);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Adds the attributes of \param Die to the hash.
|
2013-10-25 02:29:03 +08:00
|
|
|
void addAttributes(const DIE &Die);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Computes the full DWARF4 7.27 hash of the DIE.
|
2013-10-25 02:29:03 +08:00
|
|
|
void computeHash(const DIE &Die);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2013-08-09 07:45:55 +08:00
|
|
|
// Routines that add DIEValues to the hash.
|
2014-03-08 06:40:30 +08:00
|
|
|
public:
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Adds \param Value to the hash.
|
2014-03-08 06:40:30 +08:00
|
|
|
void update(uint8_t Value) { Hash.update(Value); }
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Encodes and adds \param Value to the hash as a ULEB128.
|
2013-08-09 07:45:55 +08:00
|
|
|
void addULEB128(uint64_t Value);
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Encodes and adds \param Value to the hash as a SLEB128.
|
2013-10-17 07:36:20 +08:00
|
|
|
void addSLEB128(int64_t Value);
|
|
|
|
|
2014-03-08 06:40:30 +08:00
|
|
|
private:
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Adds \param Str to the hash and includes a NULL byte.
|
2013-08-09 07:45:55 +08:00
|
|
|
void addString(StringRef Str);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Collects the attributes of DIE \param Die into the \param Attrs
|
2013-08-13 09:21:55 +08:00
|
|
|
/// structure.
|
2013-10-25 02:29:03 +08:00
|
|
|
void collectAttributes(const DIE &Die, DIEAttrs &Attrs);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes the attributes in \param Attrs in order.
|
2013-10-22 06:36:50 +08:00
|
|
|
void hashAttributes(const DIEAttrs &Attrs, dwarf::Tag Tag);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes the data in a block like DIEValue, e.g. DW_FORM_block or
|
2014-02-20 10:50:45 +08:00
|
|
|
/// DW_FORM_exprloc.
|
2015-06-26 07:46:41 +08:00
|
|
|
void hashBlockData(const DIE::const_value_range &Values);
|
2014-02-20 10:50:45 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes the contents pointed to in the .debug_loc section.
|
2014-03-08 08:29:41 +08:00
|
|
|
void hashLocList(const DIELocList &LocList);
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes an individual attribute.
|
2016-06-18 04:41:14 +08:00
|
|
|
void hashAttribute(const DIEValue &Value, dwarf::Tag Tag);
|
2013-08-13 09:21:55 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes an attribute that refers to another DIE.
|
2013-10-25 01:51:43 +08:00
|
|
|
void hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag,
|
2013-10-25 02:29:03 +08:00
|
|
|
const DIE &Entry);
|
2013-10-25 01:51:43 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes a reference to a named type in such a way that is
|
2013-10-25 01:51:43 +08:00
|
|
|
/// independent of whether that type is described by a declaration or a
|
|
|
|
/// definition.
|
2013-10-25 02:29:03 +08:00
|
|
|
void hashShallowTypeReference(dwarf::Attribute Attribute, const DIE &Entry,
|
|
|
|
StringRef Name);
|
2013-10-25 01:51:43 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Hashes a reference to a previously referenced type DIE.
|
2013-11-19 17:28:34 +08:00
|
|
|
void hashRepeatedTypeReference(dwarf::Attribute Attribute,
|
|
|
|
unsigned DieNumber);
|
2013-10-25 01:51:43 +08:00
|
|
|
|
2013-10-26 02:38:43 +08:00
|
|
|
void hashNestedType(const DIE &Die, StringRef Name);
|
|
|
|
|
2013-08-09 07:45:55 +08:00
|
|
|
private:
|
|
|
|
MD5 Hash;
|
2014-02-20 10:50:45 +08:00
|
|
|
AsmPrinter *AP;
|
2013-10-25 02:29:03 +08:00
|
|
|
DenseMap<const DIE *, unsigned> Numbering;
|
2013-08-09 07:45:55 +08:00
|
|
|
};
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2014-03-08 06:40:30 +08:00
|
|
|
|
|
|
|
#endif
|