1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/include/llvm/IR/StructuralHash.h
serge-sans-paille a12b4db565 (Expensive) Check for Loop, SCC and Region pass return status
This generalizes the logic introduced in https://reviews.llvm.org/D80916 to
other passes.

It's needed by https://reviews.llvm.org/D86442 to assert passes correctly report
their status.

Differential Revision: https://reviews.llvm.org/D86589
2020-08-28 07:56:35 +02:00

35 lines
950 B
C++

//===- llvm/IR/StructuralHash.h - IR Hash for expensive checks --*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file provides hashing of the LLVM IR structure to be used to check
// Passes modification status.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_IR_STRUCTURALHASH_H
#define LLVM_IR_STRUCTURALHASH_H
#ifdef EXPENSIVE_CHECKS
#include <cstdint>
// This header is only meant to be used when -DEXPENSIVE_CHECKS is set
namespace llvm {
class Function;
class Module;
uint64_t StructuralHash(const Function &F);
uint64_t StructuralHash(const Module &M);
} // end namespace llvm
#endif
#endif // LLVM_IR_STRUCTURALHASH_H