LLVM 19.0.0git
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
llvm::remarks::BitstreamRemarkParser Struct Reference

Parses and holds the state of the latest parsed remark. More...

#include "Remarks/BitstreamRemarkParser.h"

Inheritance diagram for llvm::remarks::BitstreamRemarkParser:
Inheritance graph
[legend]

Public Member Functions

 BitstreamRemarkParser (StringRef Buf)
 Create a parser that expects to find a string table embedded in the stream.
 
 BitstreamRemarkParser (StringRef Buf, ParsedStringTable StrTab)
 Create a parser that uses a pre-parsed string table.
 
Expected< std::unique_ptr< Remark > > next () override
 If no error occurs, this returns a valid Remark object.
 
Error parseMeta ()
 Parse and process the metadata of the buffer.
 
Expected< std::unique_ptr< Remark > > parseRemark ()
 Parse a Bitstream remark.
 
- Public Member Functions inherited from llvm::remarks::RemarkParser
 RemarkParser (Format ParserFormat)
 
virtual Expected< std::unique_ptr< Remark > > next ()=0
 If no error occurs, this returns a valid Remark object.
 
virtual ~RemarkParser ()=default
 

Static Public Member Functions

static bool classof (const RemarkParser *P)
 

Public Attributes

BitstreamParserHelper ParserHelper
 The buffer to parse.
 
std::optional< ParsedStringTableStrTab
 The string table used for parsing strings.
 
std::unique_ptr< MemoryBufferTmpRemarkBuffer
 Temporary remark buffer used when the remarks are stored separately.
 
uint64_t ContainerVersion = 0
 The common metadata used to decide how to parse the buffer.
 
uint64_t RemarkVersion = 0
 
BitstreamRemarkContainerType ContainerType
 
bool ReadyToParseRemarks = false
 Wether the parser is ready to parse remarks.
 
- Public Attributes inherited from llvm::remarks::RemarkParser
Format ParserFormat
 The format of the parser.
 
std::string ExternalFilePrependPath
 Path to prepend when opening an external remark file.
 

Detailed Description

Parses and holds the state of the latest parsed remark.

Definition at line 30 of file BitstreamRemarkParser.h.

Constructor & Destructor Documentation

◆ BitstreamRemarkParser() [1/2]

llvm::remarks::BitstreamRemarkParser::BitstreamRemarkParser ( StringRef  Buf)
inlineexplicit

Create a parser that expects to find a string table embedded in the stream.

Definition at line 48 of file BitstreamRemarkParser.h.

◆ BitstreamRemarkParser() [2/2]

llvm::remarks::BitstreamRemarkParser::BitstreamRemarkParser ( StringRef  Buf,
ParsedStringTable  StrTab 
)
inline

Create a parser that uses a pre-parsed string table.

Definition at line 52 of file BitstreamRemarkParser.h.

Member Function Documentation

◆ classof()

static bool llvm::remarks::BitstreamRemarkParser::classof ( const RemarkParser P)
inlinestatic

Definition at line 58 of file BitstreamRemarkParser.h.

References llvm::remarks::Bitstream, and P.

◆ next()

Expected< std::unique_ptr< Remark > > BitstreamRemarkParser::next ( )
overridevirtual

If no error occurs, this returns a valid Remark object.

If an error of type EndOfFileError occurs, it is safe to recover from it by stopping the parsing. If any other error occurs, it should be propagated to the user. The pointer should never be null.

Implements llvm::remarks::RemarkParser.

Definition at line 332 of file BitstreamRemarkParser.cpp.

References llvm::remarks::BitstreamParserHelper::atEndOfStream(), parseMeta(), parseRemark(), ParserHelper, and ReadyToParseRemarks.

◆ parseMeta()

Error BitstreamRemarkParser::parseMeta ( )

◆ parseRemark()

Expected< std::unique_ptr< Remark > > BitstreamRemarkParser::parseRemark ( )

Parse a Bitstream remark.

Definition at line 492 of file BitstreamRemarkParser.cpp.

References llvm::remarks::BitstreamRemarkParserHelper::parse(), ParserHelper, and llvm::remarks::BitstreamParserHelper::Stream.

Referenced by next().

Member Data Documentation

◆ ContainerType

BitstreamRemarkContainerType llvm::remarks::BitstreamRemarkParser::ContainerType
Initial value:

Definition at line 41 of file BitstreamRemarkParser.h.

Referenced by parseMeta().

◆ ContainerVersion

uint64_t llvm::remarks::BitstreamRemarkParser::ContainerVersion = 0

The common metadata used to decide how to parse the buffer.

This is filled when parsing the metadata block.

Definition at line 39 of file BitstreamRemarkParser.h.

◆ ParserHelper

BitstreamParserHelper llvm::remarks::BitstreamRemarkParser::ParserHelper

The buffer to parse.

Definition at line 32 of file BitstreamRemarkParser.h.

Referenced by next(), parseMeta(), and parseRemark().

◆ ReadyToParseRemarks

bool llvm::remarks::BitstreamRemarkParser::ReadyToParseRemarks = false

Wether the parser is ready to parse remarks.

Definition at line 44 of file BitstreamRemarkParser.h.

Referenced by next().

◆ RemarkVersion

uint64_t llvm::remarks::BitstreamRemarkParser::RemarkVersion = 0

Definition at line 40 of file BitstreamRemarkParser.h.

◆ StrTab

std::optional<ParsedStringTable> llvm::remarks::BitstreamRemarkParser::StrTab

The string table used for parsing strings.

Definition at line 34 of file BitstreamRemarkParser.h.

◆ TmpRemarkBuffer

std::unique_ptr<MemoryBuffer> llvm::remarks::BitstreamRemarkParser::TmpRemarkBuffer

Temporary remark buffer used when the remarks are stored separately.

Definition at line 36 of file BitstreamRemarkParser.h.


The documentation for this struct was generated from the following files: