//===- OutlinedHashTreeRecord.h --------------------------------*- 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 defines the OutlinedHashTreeRecord class. This class holds the outlined // hash tree for both serialization and deserialization processes. It utilizes // two data formats for serialization: raw binary data and YAML. // These two formats can be used interchangeably. // //===---------------------------------------------------------------------===// #ifndef LLVM_CGDATA_OUTLINEDHASHTREERECORD_H #define LLVM_CGDATA_OUTLINEDHASHTREERECORD_H #include "llvm/CGData/OutlinedHashTree.h" namespace llvm { /// HashNodeStable is the serialized, stable, and compact representation /// of a HashNode. struct HashNodeStable { … }; IdHashNodeStableMapTy; IdHashNodeMapTy; HashNodeIdMapTy; struct OutlinedHashTreeRecord { … }; } // end namespace llvm #endif // LLVM_CGDATA_OUTLINEDHASHTREERECORD_H