MLIR  19.0.0git
Public Member Functions | Static Public Member Functions | List of all members
mlir::AttrTypeBytecodeReader< T > Class Template Referenceabstract

A class to interact with the attributes and types parser when parsing MLIR bytecode. More...

#include "mlir/Bytecode/BytecodeReaderConfig.h"

Public Member Functions

 AttrTypeBytecodeReader ()=default
 
virtual ~AttrTypeBytecodeReader ()=default
 
virtual LogicalResult read (DialectBytecodeReader &reader, StringRef dialectName, T &entry)=0
 

Static Public Member Functions

template<typename CallableT , std::enable_if_t< std::is_convertible_v< CallableT, std::function< LogicalResult(DialectBytecodeReader &, StringRef, T &)>>, bool > = true>
static std::unique_ptr< AttrTypeBytecodeReader< T > > fromCallable (CallableT &&readFn)
 Return an Attribute/Type printer implemented via the given callable, whose form should match that of the parse function above. More...
 

Detailed Description

template<class T>
class mlir::AttrTypeBytecodeReader< T >

A class to interact with the attributes and types parser when parsing MLIR bytecode.

Definition at line 30 of file BytecodeReaderConfig.h.

Constructor & Destructor Documentation

◆ AttrTypeBytecodeReader()

template<class T >
mlir::AttrTypeBytecodeReader< T >::AttrTypeBytecodeReader ( )
default

◆ ~AttrTypeBytecodeReader()

template<class T >
virtual mlir::AttrTypeBytecodeReader< T >::~AttrTypeBytecodeReader ( )
virtualdefault

Member Function Documentation

◆ fromCallable()

template<class T >
template<typename CallableT , std::enable_if_t< std::is_convertible_v< CallableT, std::function< LogicalResult(DialectBytecodeReader &, StringRef, T &)>>, bool > = true>
static std::unique_ptr<AttrTypeBytecodeReader<T> > mlir::AttrTypeBytecodeReader< T >::fromCallable ( CallableT &&  readFn)
inlinestatic

Return an Attribute/Type printer implemented via the given callable, whose form should match that of the parse function above.

Definition at line 47 of file BytecodeReaderConfig.h.

References mlir::AttrTypeBytecodeReader< T >::AttrTypeBytecodeReader(), and mlir::AttrTypeBytecodeReader< T >::read().

◆ read()

template<class T >
virtual LogicalResult mlir::AttrTypeBytecodeReader< T >::read ( DialectBytecodeReader reader,
StringRef  dialectName,
T &  entry 
)
pure virtual

The documentation for this class was generated from the following file: