//===- MarkupFilter.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 // //===----------------------------------------------------------------------===// /// /// \file /// This file declares a filter that replaces symbolizer markup with /// human-readable expressions. /// //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_SYMBOLIZE_MARKUPFILTER_H #define LLVM_DEBUGINFO_SYMBOLIZE_MARKUPFILTER_H #include "llvm/ADT/DenseMap.h" #include "llvm/DebugInfo/Symbolize/Markup.h" #include "llvm/Object/BuildID.h" #include "llvm/Support/WithColor.h" #include "llvm/Support/raw_ostream.h" #include <map> namespace llvm { namespace symbolize { class LLVMSymbolizer; /// Filter to convert parsed log symbolizer markup elements into human-readable /// text. class MarkupFilter { … }; } // end namespace symbolize } // end namespace llvm #endif // LLVM_DEBUGINFO_SYMBOLIZE_MARKUPFILTER_H