LLVM 19.0.0git
RemarkStringTable.cpp
Go to the documentation of this file.
1//===- RemarkStringTable.cpp ----------------------------------------------===//
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// Implementation of the Remark string table used at remark generation.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/ADT/StringRef.h"
15#include "llvm/Remarks/Remark.h"
18#include <vector>
19
20using namespace llvm;
21using namespace llvm::remarks;
22
24 for (unsigned i = 0, e = Other.size(); i < e; ++i)
25 if (Expected<StringRef> MaybeStr = Other[i])
26 add(*MaybeStr);
27 else
28 llvm_unreachable("Unexpected error while building remarks string table.");
29}
30
31std::pair<unsigned, StringRef> StringTable::add(StringRef Str) {
32 size_t NextID = StrTab.size();
33 auto KV = StrTab.insert({Str, NextID});
34 // If it's a new string, add it to the final size.
35 if (KV.second)
36 SerializedSize += KV.first->first().size() + 1; // +1 for the '\0'
37 // Can be either NextID or the previous ID if the string is already there.
38 return {KV.first->second, KV.first->first()};
39}
40
42 auto Impl = [&](StringRef &S) { S = add(S).second; };
43 Impl(R.PassName);
44 Impl(R.RemarkName);
45 Impl(R.FunctionName);
46 if (R.Loc)
47 Impl(R.Loc->SourceFilePath);
48 for (Argument &Arg : R.Args) {
49 Impl(Arg.Key);
50 Impl(Arg.Val);
51 if (Arg.Loc)
52 Impl(Arg.Loc->SourceFilePath);
53 }
54}
55
57 // Emit the sequence of strings.
58 for (StringRef Str : serialize()) {
59 OS << Str;
60 // Explicitly emit a '\0'.
61 OS.write('\0');
62 }
63}
64
65std::vector<StringRef> StringTable::serialize() const {
66 std::vector<StringRef> Strings{StrTab.size()};
67 for (const auto &KV : StrTab)
68 Strings[KV.second] = KV.first();
69 return Strings;
70}
std::optional< std::vector< StOtherPiece > > Other
Definition: ELFYAML.cpp:1291
raw_pwrite_stream & OS
Tagged union holding either a T or a Error.
Definition: Error.h:474
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
raw_ostream & write(unsigned char C)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Other
Any other memory.
A key-value pair with a debug location that is used to display the remarks at the right place in the ...
Definition: Remark.h:46
std::optional< RemarkLocation > Loc
Definition: Remark.h:51
In-memory representation of the string table parsed from a buffer (e.g.
Definition: RemarkParser.h:60
A remark type used for both emission and parsing.
Definition: Remark.h:97
std::vector< StringRef > serialize() const
Serialize the string table to a vector.
size_t SerializedSize
Total size of the string table when serialized.
void internalize(Remark &R)
Modify R to use strings from this string table.
StringMap< unsigned, BumpPtrAllocator > StrTab
The string table containing all the unique strings used in the output.
std::pair< unsigned, StringRef > add(StringRef Str)
Add a string to the table. It returns an unique ID of the string.