Background: The yaml-strtab format looks just like the yaml format, except that the values in the key/value pairs of the remarks are deduplicated and replaced by indices into a string table (see removed test cases for examples). The motivation behind this format was to reduce size of the remarks files. However, it was quickly superseded by the bitstream format. Therefore, remove the yaml-strtab format, as it doesn't have a good usecase anymore: - It isn't particularly efficient - It isn't human-readable - It isn't straightforward to parse in external tools that can't use the remarks library. We don't even support it in opt-viewer. llvm-remarkutil is also missing options to parse/convert yaml-strtab, so the chance that anyone is actually using this format is low.
50 lines
1.9 KiB
C++
50 lines
1.9 KiB
C++
//===- RemarkSerializer.cpp -----------------------------------------------===//
|
|
//
|
|
// 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 tools for serializing remarks.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Remarks/RemarkSerializer.h"
|
|
#include "llvm/Remarks/BitstreamRemarkSerializer.h"
|
|
#include "llvm/Remarks/YAMLRemarkSerializer.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::remarks;
|
|
|
|
Expected<std::unique_ptr<RemarkSerializer>>
|
|
remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
|
|
raw_ostream &OS) {
|
|
switch (RemarksFormat) {
|
|
case Format::Unknown:
|
|
return createStringError(std::errc::invalid_argument,
|
|
"Unknown remark serializer format.");
|
|
case Format::YAML:
|
|
return std::make_unique<YAMLRemarkSerializer>(OS, Mode);
|
|
case Format::Bitstream:
|
|
return std::make_unique<BitstreamRemarkSerializer>(OS, Mode);
|
|
}
|
|
llvm_unreachable("Unknown remarks::Format enum");
|
|
}
|
|
|
|
Expected<std::unique_ptr<RemarkSerializer>>
|
|
remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
|
|
raw_ostream &OS, remarks::StringTable StrTab) {
|
|
switch (RemarksFormat) {
|
|
case Format::Unknown:
|
|
return createStringError(std::errc::invalid_argument,
|
|
"Unknown remark serializer format.");
|
|
case Format::YAML:
|
|
return std::make_unique<YAMLRemarkSerializer>(OS, Mode, std::move(StrTab));
|
|
case Format::Bitstream:
|
|
return std::make_unique<BitstreamRemarkSerializer>(OS, Mode,
|
|
std::move(StrTab));
|
|
}
|
|
llvm_unreachable("Unknown remarks::Format enum");
|
|
}
|