blob: 35752cd5f6fb83622a70a28a2f425a0bbe0695f8 [file] [log] [blame]
Andrew Walbran3d2c1972020-04-07 12:24:26 +01001//===-- RemarkSerializer.h - Remark serialization interface -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file provides an interface for serializing remarks to different formats.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_REMARKS_REMARK_SERIALIZER_H
14#define LLVM_REMARKS_REMARK_SERIALIZER_H
15
16#include "llvm/Remarks/Remark.h"
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020017#include "llvm/Remarks/RemarkFormat.h"
Andrew Walbran3d2c1972020-04-07 12:24:26 +010018#include "llvm/Remarks/RemarkStringTable.h"
Andrew Walbran3d2c1972020-04-07 12:24:26 +010019#include "llvm/Support/raw_ostream.h"
20
21namespace llvm {
22namespace remarks {
23
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020024enum class SerializerMode {
25 Separate, // A mode where the metadata is serialized separately from the
26 // remarks. Typically, this is used when the remarks need to be
27 // streamed to a side file and the metadata is embedded into the
28 // final result of the compilation.
29 Standalone // A mode where everything can be retrieved in the same
30 // file/buffer. Typically, this is used for storing remarks for
31 // later use.
32};
33
34struct MetaSerializer;
35
Andrew Walbran3d2c1972020-04-07 12:24:26 +010036/// This is the base class for a remark serializer.
37/// It includes support for using a string table while emitting.
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020038struct RemarkSerializer {
39 /// The format of the serializer.
40 Format SerializerFormat;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010041 /// The open raw_ostream that the remark diagnostics are emitted to.
42 raw_ostream &OS;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020043 /// The serialization mode.
44 SerializerMode Mode;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010045 /// The string table containing all the unique strings used in the output.
46 /// The table can be serialized to be consumed after the compilation.
47 Optional<StringTable> StrTab;
48
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020049 RemarkSerializer(Format SerializerFormat, raw_ostream &OS,
50 SerializerMode Mode)
51 : SerializerFormat(SerializerFormat), OS(OS), Mode(Mode), StrTab() {}
Andrew Walbran3d2c1972020-04-07 12:24:26 +010052
53 /// This is just an interface.
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020054 virtual ~RemarkSerializer() = default;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010055 /// Emit a remark to the stream.
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020056 virtual void emit(const Remark &Remark) = 0;
57 /// Return the corresponding metadata serializer.
58 virtual std::unique_ptr<MetaSerializer>
59 metaSerializer(raw_ostream &OS,
60 Optional<StringRef> ExternalFilename = None) = 0;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010061};
62
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020063/// This is the base class for a remark metadata serializer.
64struct MetaSerializer {
65 /// The open raw_ostream that the metadata is emitted to.
66 raw_ostream &OS;
67
68 MetaSerializer(raw_ostream &OS) : OS(OS) {}
69
70 /// This is just an interface.
71 virtual ~MetaSerializer() = default;
72 virtual void emit() = 0;
73};
74
75/// Create a remark serializer.
76Expected<std::unique_ptr<RemarkSerializer>>
77createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
78 raw_ostream &OS);
79
80/// Create a remark serializer that uses a pre-filled string table.
81Expected<std::unique_ptr<RemarkSerializer>>
82createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
83 raw_ostream &OS, remarks::StringTable StrTab);
84
Andrew Walbran3d2c1972020-04-07 12:24:26 +010085} // end namespace remarks
86} // end namespace llvm
87
88#endif /* LLVM_REMARKS_REMARK_SERIALIZER_H */