LLVM 19.0.0git
Classes | Enumerations | Functions | Variables
llvm::msf Namespace Reference

Classes

class  IMSFFile
 
class  MappedBlockStream
 MappedBlockStream represents data stored in an MSF file into chunks of a particular size (called the Block Size), and whose chunks may not be necessarily contiguous. More...
 
class  MSFBuilder
 
class  MSFError
 Base class for errors originating when parsing raw PDB files. More...
 
struct  MSFLayout
 
class  MSFStreamLayout
 Describes the layout of a stream in an MSF layout. More...
 
struct  SuperBlock
 
class  WritableMappedBlockStream
 

Enumerations

enum class  msf_error_code {
  unspecified = 1 , insufficient_buffer , not_writable , no_stream ,
  invalid_format , block_in_use , size_overflow_4096 , size_overflow_8192 ,
  size_overflow_16384 , size_overflow_32768 , stream_directory_overflow
}
 

Functions

MSFStreamLayout getFpmStreamLayout (const MSFLayout &Msf, bool IncludeUnusedFpmData=false, bool AltFpm=false)
 Determine the layout of the FPM stream, given the MSF layout.
 
bool isValidBlockSize (uint32_t Size)
 
uint64_t getMaxFileSizeFromBlockSize (uint32_t Size)
 Given the specified block size, returns the maximum possible file size.
 
uint32_t getMinimumBlockCount ()
 
uint32_t getFirstUnreservedBlock ()
 
uint64_t bytesToBlocks (uint64_t NumBytes, uint64_t BlockSize)
 
uint64_t blockToOffset (uint64_t BlockNumber, uint64_t BlockSize)
 
uint32_t getFpmIntervalLength (const MSFLayout &L)
 
uint32_t getNumFpmIntervals (uint32_t BlockSize, uint32_t NumBlocks, bool IncludeUnusedFpmData, int FpmNumber)
 Given an MSF with the specified block size and number of blocks, determine how many pieces the specified Fpm is split into.
 
uint32_t getNumFpmIntervals (const MSFLayout &L, bool IncludeUnusedFpmData=false, bool AltFpm=false)
 
Error validateSuperBlock (const SuperBlock &SB)
 
const std::error_category & MSFErrCategory ()
 
std::error_code make_error_code (msf_error_code E)
 

Variables

static const char Magic []
 

Enumeration Type Documentation

◆ msf_error_code

enum class llvm::msf::msf_error_code
strong
Enumerator
unspecified 
insufficient_buffer 
not_writable 
no_stream 
invalid_format 
block_in_use 
size_overflow_4096 
size_overflow_8192 
size_overflow_16384 
size_overflow_32768 
stream_directory_overflow 

Definition at line 16 of file MSFError.h.

Function Documentation

◆ blockToOffset()

uint64_t llvm::msf::blockToOffset ( uint64_t  BlockNumber,
uint64_t  BlockSize 
)
inline

◆ bytesToBlocks()

uint64_t llvm::msf::bytesToBlocks ( uint64_t  NumBytes,
uint64_t  BlockSize 
)
inline

◆ getFirstUnreservedBlock()

uint32_t llvm::msf::getFirstUnreservedBlock ( )
inline

Definition at line 129 of file MSFCommon.h.

◆ getFpmIntervalLength()

uint32_t llvm::msf::getFpmIntervalLength ( const MSFLayout L)
inline

Definition at line 139 of file MSFCommon.h.

Referenced by getFpmStreamLayout().

◆ getFpmStreamLayout()

MSFStreamLayout llvm::msf::getFpmStreamLayout ( const MSFLayout Msf,
bool  IncludeUnusedFpmData = false,
bool  AltFpm = false 
)

◆ getMaxFileSizeFromBlockSize()

uint64_t llvm::msf::getMaxFileSizeFromBlockSize ( uint32_t  Size)
inline

Given the specified block size, returns the maximum possible file size.

Block Size | Max File Size <= 4096 | 4GB 8192 | 8GB 16384 | 16GB 32768 | 32GB Size - the block size of the MSF

Definition at line 111 of file MSFCommon.h.

References Size.

Referenced by llvm::msf::MSFBuilder::commit().

◆ getMinimumBlockCount()

uint32_t llvm::msf::getMinimumBlockCount ( )
inline

Definition at line 125 of file MSFCommon.h.

Referenced by llvm::msf::MSFBuilder::create().

◆ getNumFpmIntervals() [1/2]

uint32_t llvm::msf::getNumFpmIntervals ( const MSFLayout L,
bool  IncludeUnusedFpmData = false,
bool  AltFpm = false 
)
inline

Definition at line 171 of file MSFCommon.h.

References getNumFpmIntervals().

◆ getNumFpmIntervals() [2/2]

uint32_t llvm::msf::getNumFpmIntervals ( uint32_t  BlockSize,
uint32_t  NumBlocks,
bool  IncludeUnusedFpmData,
int  FpmNumber 
)
inline

Given an MSF with the specified block size and number of blocks, determine how many pieces the specified Fpm is split into.

BlockSize - the block size of the MSF NumBlocks - the total number of blocks in the MSF IncludeUnusedFpmData - When true, this will count every block that is both in the file and matches the form of an FPM block, even if some of those FPM blocks are unused (a single FPM block can describe the allocation status of up to 32,767 blocks, although one appears only every 4,096 blocks). So there are 8x as many blocks that match the form as there are blocks that are necessary to describe the allocation status of the file. When this parameter is false, these extraneous trailing blocks are not counted.

Definition at line 155 of file MSFCommon.h.

References assert(), BlockSize, and llvm::divideCeil().

Referenced by getFpmStreamLayout(), and getNumFpmIntervals().

◆ isValidBlockSize()

bool llvm::msf::isValidBlockSize ( uint32_t  Size)
inline

Definition at line 90 of file MSFCommon.h.

References Size.

Referenced by llvm::msf::MSFBuilder::create(), and validateSuperBlock().

◆ make_error_code()

std::error_code llvm::msf::make_error_code ( msf_error_code  E)
inline

Definition at line 41 of file MSFError.h.

References E, and MSFErrCategory().

◆ MSFErrCategory()

const std::error_category & llvm::msf::MSFErrCategory ( )

Definition at line 54 of file MSFError.cpp.

Referenced by make_error_code().

◆ validateSuperBlock()

Error llvm::msf::validateSuperBlock ( const SuperBlock SB)

Variable Documentation

◆ Magic

const char llvm::msf::Magic[]
static
Initial value:
= {'M', 'i', 'c', 'r', 'o', 's', 'o', 'f',
't', ' ', 'C', '/', 'C', '+', '+', ' ',
'M', 'S', 'F', ' ', '7', '.', '0', '0',
'\r', '\n', '\x1a', 'D', 'S', '\0', '\0', '\0'}

Definition at line 23 of file MSFCommon.h.

Referenced by llvm::pdb::NativeSession::createFromExe(), llvm::msf::MSFBuilder::generateLayout(), loadPdbFile(), and validateSuperBlock().