//===- bolt/Profile/Heatmap.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 // //===----------------------------------------------------------------------===// #ifndef BOLT_PROFILE_HEATMAP_H #define BOLT_PROFILE_HEATMAP_H #include "llvm/ADT/StringRef.h" #include <cstdint> #include <map> #include <vector> namespace llvm { class raw_ostream; namespace bolt { /// Struct representing a section name and its address range in the binary. struct SectionNameAndRange { … }; class Heatmap { … }; } // namespace bolt } // namespace llvm #endif