//===-- YAMLRemarkSerializer.h - YAML Remark serialization ---*- 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 an interface for serializing remarks to YAML. // //===----------------------------------------------------------------------===// #ifndef LLVM_REMARKS_YAMLREMARKSERIALIZER_H #define LLVM_REMARKS_YAMLREMARKSERIALIZER_H #include "llvm/Remarks/RemarkSerializer.h" #include "llvm/Support/YAMLTraits.h" #include <optional> namespace llvm { namespace remarks { /// Serialize the remarks to YAML. One remark entry looks like this: /// --- !<TYPE> /// Pass: <PASSNAME> /// Name: <REMARKNAME> /// DebugLoc: { File: <SOURCEFILENAME>, Line: <SOURCELINE>, /// Column: <SOURCECOLUMN> } /// Function: <FUNCTIONNAME> /// Args: /// - <KEY>: <VALUE> /// DebugLoc: { File: <FILE>, Line: <LINE>, Column: <COL> } /// ... struct YAMLRemarkSerializer : public RemarkSerializer { … }; struct YAMLMetaSerializer : public MetaSerializer { … }; /// Serialize the remarks to YAML using a string table. An remark entry looks /// like the regular YAML remark but instead of string entries it's using /// numbers that map to an index in the string table. struct YAMLStrTabRemarkSerializer : public YAMLRemarkSerializer { … }; struct YAMLStrTabMetaSerializer : public YAMLMetaSerializer { … }; } // end namespace remarks } // end namespace llvm #endif // LLVM_REMARKS_YAMLREMARKSERIALIZER_H