llvm/llvm/lib/Remarks/RemarkStringTable.cpp

//===- RemarkStringTable.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
//
//===----------------------------------------------------------------------===//
//
// Implementation of the Remark string table used at remark generation.
//
//===----------------------------------------------------------------------===//

#include "llvm/Remarks/RemarkStringTable.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Remarks/Remark.h"
#include "llvm/Remarks/RemarkParser.h"
#include "llvm/Support/raw_ostream.h"
#include <vector>

usingnamespacellvm;
usingnamespacellvm::remarks;

StringTable::StringTable(const ParsedStringTable &Other) {}

std::pair<unsigned, StringRef> StringTable::add(StringRef Str) {}

void StringTable::internalize(Remark &R) {}

void StringTable::serialize(raw_ostream &OS) const {}

std::vector<StringRef> StringTable::serialize() const {}