LLVM 22.0.0git
MSFBuilder.cpp
Go to the documentation of this file.
1//===- MSFBuilder.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
10#include "llvm/ADT/ArrayRef.h"
15#include "llvm/Support/Endian.h"
16#include "llvm/Support/Error.h"
20#include <algorithm>
21#include <cassert>
22#include <cstdint>
23#include <cstring>
24#include <utility>
25#include <vector>
26
27using namespace llvm;
28using namespace llvm::msf;
29using namespace llvm::support;
30
31static const uint32_t kSuperBlockBlock = 0;
34static const uint32_t kNumReservedPages = 3;
35
38
39MSFBuilder::MSFBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow,
41 : Allocator(Allocator), IsGrowable(CanGrow),
43 BlockMapAddr(kDefaultBlockMapAddr), FreeBlocks(MinBlockCount, true) {
44 FreeBlocks[kSuperBlockBlock] = false;
45 FreeBlocks[kFreePageMap0Block] = false;
46 FreeBlocks[kFreePageMap1Block] = false;
47 FreeBlocks[BlockMapAddr] = false;
48}
49
51 uint32_t BlockSize,
52 uint32_t MinBlockCount, bool CanGrow) {
53 if (!isValidBlockSize(BlockSize))
55 "The requested block size is unsupported");
56
57 return MSFBuilder(BlockSize,
58 std::max(MinBlockCount, msf::getMinimumBlockCount()),
59 CanGrow, Allocator);
60}
61
63 if (Addr == BlockMapAddr)
64 return Error::success();
65
66 if (Addr >= FreeBlocks.size()) {
67 if (!IsGrowable)
69 "Cannot grow the number of blocks");
70 FreeBlocks.resize(Addr + 1, true);
71 }
72
73 if (!isBlockFree(Addr))
76 "Requested block map address is already in use");
77 FreeBlocks[BlockMapAddr] = true;
78 FreeBlocks[Addr] = false;
79 BlockMapAddr = Addr;
80 return Error::success();
81}
82
83void MSFBuilder::setFreePageMap(uint32_t Fpm) { FreePageMap = Fpm; }
84
85void MSFBuilder::setUnknown1(uint32_t Unk1) { Unknown1 = Unk1; }
86
88 for (auto B : DirectoryBlocks)
89 FreeBlocks[B] = true;
90 for (auto B : DirBlocks) {
91 if (!isBlockFree(B)) {
93 "Attempt to reuse an allocated block");
94 }
95 FreeBlocks[B] = false;
96 }
97
98 DirectoryBlocks = DirBlocks;
99 return Error::success();
100}
101
102Error MSFBuilder::allocateBlocks(uint32_t NumBlocks,
104 if (NumBlocks == 0)
105 return Error::success();
106
107 uint32_t NumFreeBlocks = FreeBlocks.count();
108 if (NumFreeBlocks < NumBlocks) {
109 if (!IsGrowable)
111 "There are no free Blocks in the file");
112 uint32_t AllocBlocks = NumBlocks - NumFreeBlocks;
113 uint32_t OldBlockCount = FreeBlocks.size();
114 uint32_t NewBlockCount = AllocBlocks + OldBlockCount;
115 uint32_t NextFpmBlock = alignTo(OldBlockCount, BlockSize) + 1;
116 FreeBlocks.resize(NewBlockCount, true);
117 // If we crossed over an fpm page, we actually need to allocate 2 extra
118 // blocks for each FPM group crossed and mark both blocks from the group as
119 // used. FPM blocks are marked as allocated regardless of whether or not
120 // they ultimately describe the status of blocks in the file. This means
121 // that not only are extraneous blocks at the end of the main FPM marked as
122 // allocated, but also blocks from the alternate FPM are always marked as
123 // allocated.
124 while (NextFpmBlock < NewBlockCount) {
125 NewBlockCount += 2;
126 FreeBlocks.resize(NewBlockCount, true);
127 FreeBlocks.reset(NextFpmBlock, NextFpmBlock + 2);
128 NextFpmBlock += BlockSize;
129 }
130 }
131
132 int I = 0;
133 int Block = FreeBlocks.find_first();
134 do {
135 assert(Block != -1 && "We ran out of Blocks!");
136
137 uint32_t NextBlock = static_cast<uint32_t>(Block);
138 Blocks[I++] = NextBlock;
139 FreeBlocks.reset(NextBlock);
140 Block = FreeBlocks.find_next(Block);
141 } while (--NumBlocks > 0);
142 return Error::success();
143}
144
148
149uint32_t MSFBuilder::getNumFreeBlocks() const { return FreeBlocks.count(); }
150
151uint32_t MSFBuilder::getTotalBlockCount() const { return FreeBlocks.size(); }
152
153bool MSFBuilder::isBlockFree(uint32_t Idx) const { return FreeBlocks[Idx]; }
154
156 ArrayRef<uint32_t> Blocks) {
157 // Add a new stream mapped to the specified blocks. Verify that the specified
158 // blocks are both necessary and sufficient for holding the requested number
159 // of bytes, and verify that all requested blocks are free.
160 uint32_t ReqBlocks = bytesToBlocks(Size, BlockSize);
161 if (ReqBlocks != Blocks.size())
164 "Incorrect number of blocks for requested stream size");
165 for (auto Block : Blocks) {
166 if (Block >= FreeBlocks.size())
167 FreeBlocks.resize(Block + 1, true);
168
169 if (!FreeBlocks.test(Block))
172 "Attempt to re-use an already allocated block");
173 }
174 // Mark all the blocks occupied by the new stream as not free.
175 for (auto Block : Blocks) {
176 FreeBlocks.reset(Block);
177 }
178 StreamData.push_back(std::make_pair(Size, Blocks));
179 return StreamData.size() - 1;
180}
181
183 uint32_t ReqBlocks = bytesToBlocks(Size, BlockSize);
184 std::vector<uint32_t> NewBlocks;
185 NewBlocks.resize(ReqBlocks);
186 if (auto EC = allocateBlocks(ReqBlocks, NewBlocks))
187 return std::move(EC);
188 StreamData.push_back(std::make_pair(Size, NewBlocks));
189 return StreamData.size() - 1;
190}
191
193 uint32_t OldSize = getStreamSize(Idx);
194 if (OldSize == Size)
195 return Error::success();
196
197 uint32_t NewBlocks = bytesToBlocks(Size, BlockSize);
198 uint32_t OldBlocks = bytesToBlocks(OldSize, BlockSize);
199
200 if (NewBlocks > OldBlocks) {
201 uint32_t AddedBlocks = NewBlocks - OldBlocks;
202 // If we're growing, we have to allocate new Blocks.
203 std::vector<uint32_t> AddedBlockList;
204 AddedBlockList.resize(AddedBlocks);
205 if (auto EC = allocateBlocks(AddedBlocks, AddedBlockList))
206 return EC;
207 auto &CurrentBlocks = StreamData[Idx].second;
208 llvm::append_range(CurrentBlocks, AddedBlockList);
209 } else if (OldBlocks > NewBlocks) {
210 // For shrinking, free all the Blocks in the Block map, update the stream
211 // data, then shrink the directory.
212 uint32_t RemovedBlocks = OldBlocks - NewBlocks;
213 auto CurrentBlocks = ArrayRef<uint32_t>(StreamData[Idx].second);
214 auto RemovedBlockList = CurrentBlocks.drop_front(NewBlocks);
215 for (auto P : RemovedBlockList)
216 FreeBlocks[P] = true;
217 StreamData[Idx].second = CurrentBlocks.drop_back(RemovedBlocks);
218 }
219
220 StreamData[Idx].first = Size;
221 return Error::success();
222}
223
224uint32_t MSFBuilder::getNumStreams() const { return StreamData.size(); }
225
227 return StreamData[StreamIdx].first;
228}
229
231 return StreamData[StreamIdx].second;
232}
233
234uint32_t MSFBuilder::computeDirectoryByteSize() const {
235 // The directory has the following layout, where each item is a ulittle32_t:
236 // NumStreams
237 // StreamSizes[NumStreams]
238 // StreamBlocks[NumStreams][]
239 uint32_t Size = sizeof(ulittle32_t); // NumStreams
240 Size += StreamData.size() * sizeof(ulittle32_t); // StreamSizes
241 for (const auto &D : StreamData) {
242 uint32_t ExpectedNumBlocks = bytesToBlocks(D.first, BlockSize);
243 assert(ExpectedNumBlocks == D.second.size() &&
244 "Unexpected number of blocks");
245 Size += ExpectedNumBlocks * sizeof(ulittle32_t);
246 }
247 return Size;
248}
249
251 llvm::TimeTraceScope timeScope("MSF: Generate layout");
252
253 SuperBlock *SB = Allocator.Allocate<SuperBlock>();
254 MSFLayout L;
255 L.SB = SB;
256
257 std::memcpy(SB->MagicBytes, Magic, sizeof(Magic));
258 SB->BlockMapAddr = BlockMapAddr;
259 SB->BlockSize = BlockSize;
260 SB->NumDirectoryBytes = computeDirectoryByteSize();
261 SB->FreeBlockMapBlock = FreePageMap;
262 SB->Unknown1 = Unknown1;
263
264 uint32_t NumDirectoryBlocks = bytesToBlocks(SB->NumDirectoryBytes, BlockSize);
265 if (NumDirectoryBlocks > DirectoryBlocks.size()) {
266 // Our hint wasn't enough to satisfy the entire directory. Allocate
267 // remaining pages.
268 std::vector<uint32_t> ExtraBlocks;
269 uint32_t NumExtraBlocks = NumDirectoryBlocks - DirectoryBlocks.size();
270 ExtraBlocks.resize(NumExtraBlocks);
271 if (auto EC = allocateBlocks(NumExtraBlocks, ExtraBlocks))
272 return std::move(EC);
273 llvm::append_range(DirectoryBlocks, ExtraBlocks);
274 } else if (NumDirectoryBlocks < DirectoryBlocks.size()) {
275 uint32_t NumUnnecessaryBlocks = DirectoryBlocks.size() - NumDirectoryBlocks;
276 for (auto B :
277 ArrayRef<uint32_t>(DirectoryBlocks).drop_back(NumUnnecessaryBlocks))
278 FreeBlocks[B] = true;
279 DirectoryBlocks.resize(NumDirectoryBlocks);
280 }
281
282 // Don't set the number of blocks in the file until after allocating Blocks
283 // for the directory, since the allocation might cause the file to need to
284 // grow.
285 SB->NumBlocks = FreeBlocks.size();
286
287 ulittle32_t *DirBlocks = Allocator.Allocate<ulittle32_t>(NumDirectoryBlocks);
288 llvm::uninitialized_copy(DirectoryBlocks, DirBlocks);
289 L.DirectoryBlocks = ArrayRef<ulittle32_t>(DirBlocks, NumDirectoryBlocks);
290
291 // The stream sizes should be re-allocated as a stable pointer and the stream
292 // map should have each of its entries allocated as a separate stable pointer.
293 if (!StreamData.empty()) {
294 ulittle32_t *Sizes = Allocator.Allocate<ulittle32_t>(StreamData.size());
295 L.StreamSizes = ArrayRef<ulittle32_t>(Sizes, StreamData.size());
296 L.StreamMap.resize(StreamData.size());
297 for (uint32_t I = 0; I < StreamData.size(); ++I) {
298 Sizes[I] = StreamData[I].first;
299 ulittle32_t *BlockList =
300 Allocator.Allocate<ulittle32_t>(StreamData[I].second.size());
301 llvm::uninitialized_copy(StreamData[I].second, BlockList);
302 L.StreamMap[I] =
303 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size());
304 }
305 }
306
307 L.FreePageMap = FreeBlocks;
308
309 return L;
310}
311
312static void commitFpm(WritableBinaryStream &MsfBuffer, const MSFLayout &Layout,
314 auto FpmStream =
316
317 // We only need to create the alt fpm stream so that it gets initialized.
319 true);
320
321 uint32_t BI = 0;
322 BinaryStreamWriter FpmWriter(*FpmStream);
323 while (BI < Layout.SB->NumBlocks) {
324 uint8_t ThisByte = 0;
325 for (uint32_t I = 0; I < 8; ++I) {
326 bool IsFree =
327 (BI < Layout.SB->NumBlocks) ? Layout.FreePageMap.test(BI) : true;
328 uint8_t Mask = uint8_t(IsFree) << I;
329 ThisByte |= Mask;
330 ++BI;
331 }
332 cantFail(FpmWriter.writeObject(ThisByte));
333 }
334 assert(FpmWriter.bytesRemaining() == 0);
335}
336
338 MSFLayout &Layout) {
339 llvm::TimeTraceScope timeScope("Commit MSF");
340
342 if (!L)
343 return L.takeError();
344
345 Layout = std::move(*L);
346
347 uint64_t FileSize = uint64_t(Layout.SB->BlockSize) * Layout.SB->NumBlocks;
348 // Ensure that the file size is under the limit for the specified block size.
349 if (FileSize > getMaxFileSizeFromBlockSize(Layout.SB->BlockSize)) {
350 msf_error_code error_code = [](uint32_t BlockSize) {
351 switch (BlockSize) {
352 case 8192:
354 case 16384:
356 case 32768:
358 default:
360 }
361 }(Layout.SB->BlockSize);
362
364 error_code,
365 formatv("File size {0,1:N} too large for current PDB page size {1}",
366 FileSize, Layout.SB->BlockSize));
367 }
368
369 uint64_t NumDirectoryBlocks =
371 uint64_t DirectoryBlockMapSize =
372 NumDirectoryBlocks * sizeof(support::ulittle32_t);
373 if (DirectoryBlockMapSize > Layout.SB->BlockSize) {
375 formatv("The directory block map ({0} bytes) "
376 "doesn't fit in a block ({1} bytes)",
377 DirectoryBlockMapSize,
378 Layout.SB->BlockSize));
379 }
380
381 auto OutFileOrError = FileOutputBuffer::create(Path, FileSize);
382 if (auto EC = OutFileOrError.takeError())
383 return std::move(EC);
384
385 FileBufferByteStream Buffer(std::move(*OutFileOrError),
387 BinaryStreamWriter Writer(Buffer);
388
389 if (auto EC = Writer.writeObject(*Layout.SB))
390 return std::move(EC);
391
392 commitFpm(Buffer, Layout, Allocator);
393
394 uint32_t BlockMapOffset =
396 Writer.setOffset(BlockMapOffset);
397 if (auto EC = Writer.writeArray(Layout.DirectoryBlocks))
398 return std::move(EC);
399
401 Layout, Buffer, Allocator);
402 BinaryStreamWriter DW(*DirStream);
403 if (auto EC = DW.writeInteger<uint32_t>(Layout.StreamSizes.size()))
404 return std::move(EC);
405
406 if (auto EC = DW.writeArray(Layout.StreamSizes))
407 return std::move(EC);
408
409 for (const auto &Blocks : Layout.StreamMap) {
410 if (auto EC = DW.writeArray(Blocks))
411 return std::move(EC);
412 }
413
414 return std::move(Buffer);
415}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define I(x, y, z)
Definition MD5.cpp:57
static const uint32_t kFreePageMap1Block
static void commitFpm(WritableBinaryStream &MsfBuffer, const MSFLayout &Layout, BumpPtrAllocator &Allocator)
static const uint32_t kSuperBlockBlock
static const uint32_t kFreePageMap0Block
static const uint32_t kDefaultBlockMapAddr
static const uint32_t kNumReservedPages
static const uint32_t kDefaultFreePageMap
#define P(N)
Basic Register Allocator
static const int BlockSize
Definition TarWriter.cpp:33
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
size_t size() const
size - Get the array size.
Definition ArrayRef.h:142
Provides write only access to a subclass of WritableBinaryStream.
Error writeArray(ArrayRef< T > Array)
Writes an array of objects of type T to the underlying stream, as if by using memcpy.
Error writeInteger(T Value)
Write the integer Value to the underlying stream in the specified endianness.
Error writeObject(const T &Obj)
Writes the object Obj to the underlying stream, as if by using memcpy.
bool test(unsigned Idx) const
Definition BitVector.h:480
BitVector & reset()
Definition BitVector.h:411
int find_first() const
find_first - Returns the index of the first set bit, -1 if none of the bits are set.
Definition BitVector.h:319
void resize(unsigned N, bool t=false)
resize - Grow or shrink the bitvector.
Definition BitVector.h:360
size_type count() const
count - Returns the number of bits which are set.
Definition BitVector.h:181
int find_next(unsigned Prev) const
find_next - Returns the index of the next set bit following the "Prev" bit.
Definition BitVector.h:327
size_type size() const
size - Returns the number of bits in this bitvector.
Definition BitVector.h:178
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
An implementation of WritableBinaryStream backed by an llvm FileOutputBuffer.
static LLVM_ABI Expected< std::unique_ptr< FileOutputBuffer > > create(StringRef FilePath, size_t Size, unsigned Flags=0)
Factory method to create an OutputBuffer object which manages a read/write buffer of the specified si...
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition ArrayRef.h:298
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
The TimeTraceScope is a helper class to call the begin and end functions of the time trace profiler.
A BinaryStream which can be read from as well as written to.
LLVM_ABI uint32_t getNumStreams() const
Get the total number of streams in the MSF layout.
LLVM_ABI Error setBlockMapAddr(uint32_t Addr)
Request the block map to be at a specific block address.
LLVM_ABI ArrayRef< uint32_t > getStreamBlocks(uint32_t StreamIdx) const
Get the list of blocks allocated to a particular stream.
LLVM_ABI Error setDirectoryBlocksHint(ArrayRef< uint32_t > DirBlocks)
LLVM_ABI uint32_t getTotalBlockCount() const
Get the total number of blocks in the MSF file.
LLVM_ABI uint32_t getNumFreeBlocks() const
Get the total number of blocks that exist in the MSF file but are not allocated to any valid data.
LLVM_ABI Error setStreamSize(uint32_t Idx, uint32_t Size)
Update the size of an existing stream.
LLVM_ABI Expected< FileBufferByteStream > commit(StringRef Path, MSFLayout &Layout)
Write the MSF layout to the underlying file.
LLVM_ABI Expected< MSFLayout > generateLayout()
Finalize the layout and build the headers and structures that describe the MSF layout and can be writ...
LLVM_ABI bool isBlockFree(uint32_t Idx) const
Check whether a particular block is allocated or free.
LLVM_ABI void setFreePageMap(uint32_t Fpm)
LLVM_ABI uint32_t getStreamSize(uint32_t StreamIdx) const
Get the size of a stream by index.
static LLVM_ABI Expected< MSFBuilder > create(BumpPtrAllocator &Allocator, uint32_t BlockSize, uint32_t MinBlockCount=0, bool CanGrow=true)
Create a new MSFBuilder.
LLVM_ABI uint32_t getNumUsedBlocks() const
Get the total number of blocks that will be allocated to actual data in this MSF file.
LLVM_ABI void setUnknown1(uint32_t Unk1)
LLVM_ABI Expected< uint32_t > addStream(uint32_t Size, ArrayRef< uint32_t > Blocks)
Add a stream to the MSF file with the given size, occupying the given list of blocks.
static std::unique_ptr< WritableMappedBlockStream > createFpmStream(const MSFLayout &Layout, WritableBinaryStreamRef MsfData, BumpPtrAllocator &Allocator, bool AltFpm=false)
static std::unique_ptr< WritableMappedBlockStream > createDirectoryStream(const MSFLayout &Layout, WritableBinaryStreamRef MsfData, BumpPtrAllocator &Allocator)
uint32_t getMinimumBlockCount()
Definition MSFCommon.h:126
uint64_t blockToOffset(uint64_t BlockNumber, uint64_t BlockSize)
Definition MSFCommon.h:136
uint64_t getMaxFileSizeFromBlockSize(uint32_t Size)
Given the specified block size, returns the maximum possible file size.
Definition MSFCommon.h:112
bool isValidBlockSize(uint32_t Size)
Definition MSFCommon.h:91
uint64_t bytesToBlocks(uint64_t NumBytes, uint64_t BlockSize)
Definition MSFCommon.h:132
static const char Magic[]
Definition MSFCommon.h:24
detail::packed_endian_specific_integral< uint32_t, llvm::endianness::little, unaligned > ulittle32_t
Definition Endian.h:290
This is an optimization pass for GlobalISel generic memory operations.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2136
auto uninitialized_copy(R &&Src, IterTy Dst)
Definition STLExtras.h:2053
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
Definition Error.h:340
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
Definition Error.h:769
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition Alignment.h:144
ArrayRef(const T &OneElt) -> ArrayRef< T >
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
ArrayRef< support::ulittle32_t > StreamSizes
Definition MSFCommon.h:68
ArrayRef< support::ulittle32_t > DirectoryBlocks
Definition MSFCommon.h:67
const SuperBlock * SB
Definition MSFCommon.h:65
BitVector FreePageMap
Definition MSFCommon.h:66
std::vector< ArrayRef< support::ulittle32_t > > StreamMap
Definition MSFCommon.h:69
support::ulittle32_t NumBlocks
Definition MSFCommon.h:43
support::ulittle32_t BlockSize
Definition MSFCommon.h:37
support::ulittle32_t Unknown1
Definition MSFCommon.h:47
char MagicBytes[sizeof(Magic)]
Definition MSFCommon.h:33
support::ulittle32_t NumDirectoryBytes
Definition MSFCommon.h:45
support::ulittle32_t BlockMapAddr
Definition MSFCommon.h:49
support::ulittle32_t FreeBlockMapBlock
Definition MSFCommon.h:39