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