LLVM 20.0.0git
NamedStreamMap.cpp
Go to the documentation of this file.
1//===- NamedStreamMap.cpp - PDB Named Stream Map --------------------------===//
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
10#include "llvm/ADT/StringMap.h"
11#include "llvm/ADT/StringRef.h"
17#include "llvm/Support/Endian.h"
18#include "llvm/Support/Error.h"
19#include <cassert>
20#include <cstdint>
21
22using namespace llvm;
23using namespace llvm::pdb;
24
26
28 // In the reference implementation, this uses
29 // HASH Hasher<ULONG*, USHORT*>::hashPbCb(PB pb, size_t cb, ULONG ulMod).
30 // Here, the type HASH is a typedef of unsigned short.
31 // ** It is not a bug that we truncate the result of hashStringV1, in fact
32 // it is a bug if we do not! **
33 // See NMTNI::hash() in the reference implementation.
34 return static_cast<uint16_t>(hashStringV1(S));
35}
36
38 return NS->getString(Offset);
39}
40
42 return NS->appendStringData(S);
43}
44
45NamedStreamMap::NamedStreamMap() : HashTraits(*this), OffsetIndexMap(1) {}
46
48 uint32_t StringBufferSize;
49 if (auto EC = Stream.readInteger(StringBufferSize))
50 return joinErrors(std::move(EC),
51 make_error<RawError>(raw_error_code::corrupt_file,
52 "Expected string buffer size"));
53
54 StringRef Buffer;
55 if (auto EC = Stream.readFixedString(Buffer, StringBufferSize))
56 return EC;
57 NamesBuffer.assign(Buffer.begin(), Buffer.end());
58
59 return OffsetIndexMap.load(Stream);
60}
61
63 // The first field is the number of bytes of string data.
64 if (auto EC = Writer.writeInteger<uint32_t>(NamesBuffer.size()))
65 return EC;
66
67 // Then the actual string data.
68 StringRef Data(NamesBuffer.data(), NamesBuffer.size());
69 if (auto EC = Writer.writeFixedString(Data))
70 return EC;
71
72 // And finally the Offset Index map.
73 if (auto EC = OffsetIndexMap.commit(Writer))
74 return EC;
75
76 return Error::success();
77}
78
80 return sizeof(uint32_t) // String data size
81 + NamesBuffer.size() // String data
82 + OffsetIndexMap.calculateSerializedLength(); // Offset Index Map
83}
84
85uint32_t NamedStreamMap::size() const { return OffsetIndexMap.size(); }
86
88 assert(NamesBuffer.size() > Offset);
89 return StringRef(NamesBuffer.data() + Offset);
90}
91
94}
95
96bool NamedStreamMap::get(StringRef Stream, uint32_t &StreamNo) const {
97 auto Iter = OffsetIndexMap.find_as(Stream, HashTraits);
98 if (Iter == OffsetIndexMap.end())
99 return false;
100 StreamNo = (*Iter).second;
101 return true;
102}
103
105 StringMap<uint32_t> Result;
106 for (const auto &Entry : OffsetIndexMap) {
107 StringRef Stream(NamesBuffer.data() + Entry.first);
108 Result.try_emplace(Stream, Entry.second);
109 }
110 return Result;
111}
112
114 uint32_t Offset = NamesBuffer.size();
115 llvm::append_range(NamesBuffer, S);
116 NamesBuffer.push_back('\0');
117 return Offset;
118}
119
120void NamedStreamMap::set(StringRef Stream, uint32_t StreamNo) {
121 OffsetIndexMap.set_as(Stream, support::ulittle32_t(StreamNo), HashTraits);
122}
This file defines the StringMap class.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Provides read only access to a subclass of BinaryStream.
Error readInteger(T &Dest)
Read an integer of the specified endianness into Dest and update the stream's offset.
Error readFixedString(StringRef &Dest, uint32_t Length)
Read a Length byte string into Dest.
Provides write only access to a subclass of WritableBinaryStream.
Error writeInteger(T Value)
Write the integer Value to the underlying stream in the specified endianness.
Error writeFixedString(StringRef Str)
Write the string Str to the underlying stream without a null terminator.
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
static ErrorSuccess success()
Create a success value.
Definition: Error.h:337
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:128
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
iterator begin() const
Definition: StringRef.h:116
iterator end() const
Definition: StringRef.h:118
void set(StringRef Stream, uint32_t StreamNo)
Error load(BinaryStreamReader &Stream)
StringMap< uint32_t > entries() const
Error commit(BinaryStreamWriter &Writer) const
uint32_t hashString(uint32_t Offset) const
uint32_t appendStringData(StringRef S)
bool get(StringRef Stream, uint32_t &StreamNo) const
StringRef getString(uint32_t Offset) const
uint32_t calculateSerializedLength() const
uint32_t hashStringV1(StringRef Str)
Definition: Hash.cpp:20
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition: STLExtras.h:2115
Error joinErrors(Error E1, Error E2)
Concatenate errors.
Definition: Error.h:438
NamedStreamMapTraits(NamedStreamMap &NS)
uint16_t hashLookupKey(StringRef S) const
uint32_t lookupKeyToStorageKey(StringRef S)
StringRef storageKeyToLookupKey(uint32_t Offset) const