//===-- xray-graph.h - XRay Function Call Graph Renderer --------*- 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 // //===----------------------------------------------------------------------===// // // A class to get a color from a specified gradient. // //===----------------------------------------------------------------------===// #ifndef XRAY_COLOR_HELPER_H #define XRAY_COLOR_HELPER_H #include "llvm/ADT/ArrayRef.h" #include <tuple> namespace llvm { namespace xray { /// The color helper class it a healper class which allows you to easily get a /// color in a gradient. This is used to color-code edges in XRay-Graph tools. /// /// There are two types of color schemes in this class: /// - Sequential schemes, which are used to represent information from some /// minimum to some maximum. These take an input in the range [0,1] /// - Diverging schemes, which are used to represent information representing /// differenes, or a range that goes from negative to positive. These take /// an input in the range [-1,1]. /// Usage; /// ColorHelper S(ColorHelper::SequentialScheme::OrRd); //Chose a color scheme. /// for (double p = 0.0; p <= 1; p += 0.1){ /// cout() << S.getColor(p) << " \n"; // Sample the gradient at 0.1 intervals /// } /// /// ColorHelper D(ColorHelper::DivergingScheme::Spectral); // Choose a color /// // scheme. /// for (double p= -1; p <= 1 ; p += 0.1){ /// cout() << D.getColor(p) << " \n"; // sample the gradient at 0.1 intervals /// } class ColorHelper { … }; } // namespace xray } // namespace llvm #endif