MLIR  19.0.0git
Public Member Functions | Static Public Member Functions | List of all members
mlir::spirv::ScalarType Class Reference

#include "mlir/Dialect/SPIRV/IR/SPIRVTypes.h"

+ Inheritance diagram for mlir::spirv::ScalarType:

Public Member Functions

void getExtensions (SPIRVType::ExtensionArrayRefVector &extensions, std::optional< StorageClass > storage=std::nullopt)
 
void getCapabilities (SPIRVType::CapabilityArrayRefVector &capabilities, std::optional< StorageClass > storage=std::nullopt)
 
std::optional< int64_t > getSizeInBytes ()
 
- Public Member Functions inherited from mlir::spirv::SPIRVType
bool isScalarOrVector ()
 
void getExtensions (ExtensionArrayRefVector &extensions, std::optional< StorageClass > storage=std::nullopt)
 Appends to extensions the extensions needed for this type to appear in the given storage class. More...
 
void getCapabilities (CapabilityArrayRefVector &capabilities, std::optional< StorageClass > storage=std::nullopt)
 Appends to capabilities the capabilities needed for this type to appear in the given storage class. More...
 
std::optional< int64_t > getSizeInBytes ()
 Returns the size in bytes for each type. More...
 
constexpr Type ()=default
 
 Type (const ImplType *impl)
 
 Type (const Type &other)=default
 
- Public Member Functions inherited from mlir::Type
constexpr Type ()=default
 
 Type (const ImplType *impl)
 
 Type (const Type &other)=default
 
Typeoperator= (const Type &other)=default
 
bool operator== (Type other) const
 
bool operator!= (Type other) const
 
 operator bool () const
 
bool operator! () const
 
template<typename... Tys>
bool isa () const
 
template<typename... Tys>
bool isa_and_nonnull () const
 
template<typename U >
dyn_cast () const
 
template<typename U >
dyn_cast_or_null () const
 
template<typename U >
cast () const
 
TypeID getTypeID ()
 Return a unique identifier for the concrete type. More...
 
MLIRContextgetContext () const
 Return the MLIRContext in which this type was uniqued. More...
 
DialectgetDialect () const
 Get the dialect this type is registered to. More...
 
bool isIndex () const
 
bool isFloat8E5M2 () const
 
bool isFloat8E4M3FN () const
 
bool isFloat8E5M2FNUZ () const
 
bool isFloat8E4M3FNUZ () const
 
bool isFloat8E4M3B11FNUZ () const
 
bool isBF16 () const
 
bool isF16 () const
 
bool isTF32 () const
 
bool isF32 () const
 
bool isF64 () const
 
bool isF80 () const
 
bool isF128 () const
 
bool isInteger () const
 Return true if this is an integer type (with the specified width). More...
 
bool isInteger (unsigned width) const
 Return true if this is an integer type with the specified width. More...
 
bool isSignlessInteger () const
 Return true if this is a signless integer type (with the specified width). More...
 
bool isSignlessInteger (unsigned width) const
 
bool isSignedInteger () const
 Return true if this is a signed integer type (with the specified width). More...
 
bool isSignedInteger (unsigned width) const
 
bool isUnsignedInteger () const
 Return true if this is an unsigned integer type (with the specified width). More...
 
bool isUnsignedInteger (unsigned width) const
 
unsigned getIntOrFloatBitWidth () const
 Return the bit width of an integer or a float type, assert failure on other types. More...
 
bool isSignlessIntOrIndex () const
 Return true if this is a signless integer or index type. More...
 
bool isSignlessIntOrIndexOrFloat () const
 Return true if this is a signless integer, index, or float type. More...
 
bool isSignlessIntOrFloat () const
 Return true of this is a signless integer or a float type. More...
 
bool isIntOrIndex () const
 Return true if this is an integer (of any signedness) or an index type. More...
 
bool isIntOrFloat () const
 Return true if this is an integer (of any signedness) or a float type. More...
 
bool isIntOrIndexOrFloat () const
 Return true if this is an integer (of any signedness), index, or float type. More...
 
void print (raw_ostream &os) const
 Print the current type. More...
 
void print (raw_ostream &os, AsmState &state) const
 
void dump () const
 
const void * getAsOpaquePointer () const
 Methods for supporting PointerLikeTypeTraits. More...
 
template<typename InterfaceT >
bool hasPromiseOrImplementsInterface ()
 Returns true if InterfaceT has been promised by the dialect or implemented. More...
 
template<template< typename T > class Trait>
bool hasTrait ()
 Returns true if the type was registered with a particular trait. More...
 
const AbstractTygetAbstractType () const
 Return the abstract type descriptor for this type. More...
 
ImplTypegetImpl () const
 Return the Type implementation. More...
 
void walkImmediateSubElements (function_ref< void(Attribute)> walkAttrsFn, function_ref< void(Type)> walkTypesFn) const
 Walk all of the immediately nested sub-attributes and sub-types. More...
 
auto replaceImmediateSubElements (ArrayRef< Attribute > replAttrs, ArrayRef< Type > replTypes) const
 Replace the immediately nested sub-attributes and sub-types with those provided. More...
 
template<WalkOrder Order = WalkOrder::PostOrder, typename... WalkFns>
auto walk (WalkFns &&...walkFns)
 Walk this type and all attibutes/types nested within using the provided walk functions. More...
 
template<typename... ReplacementFns>
auto replace (ReplacementFns &&...replacementFns)
 Recursively replace all of the nested sub-attributes and sub-types using the provided map functions. More...
 

Static Public Member Functions

static bool classof (Type type)
 
static bool isValid (FloatType)
 Returns true if the given integer type is valid for the SPIR-V dialect. More...
 
static bool isValid (IntegerType)
 Returns true if the given float type is valid for the SPIR-V dialect. More...
 
- Static Public Member Functions inherited from mlir::spirv::SPIRVType
static bool classof (Type type)
 
- Static Public Member Functions inherited from mlir::Type
static Type getFromOpaquePointer (const void *pointer)
 

Additional Inherited Members

- Public Types inherited from mlir::spirv::SPIRVType
using ExtensionArrayRefVector = SmallVectorImpl< ArrayRef< Extension > >
 The extension requirements for each type are following the ((Extension::A OR Extension::B) AND (Extension::C OR Extension::D)) convention. More...
 
using CapabilityArrayRefVector = SmallVectorImpl< ArrayRef< Capability > >
 The capability requirements for each type are following the ((Capability::A OR Extension::B) AND (Capability::C OR Capability::D)) convention. More...
 
- Public Types inherited from mlir::Type
template<typename ConcreteType , typename BaseType , typename StorageType , template< typename T > class... Traits>
using TypeBase = detail::StorageUserBase< ConcreteType, BaseType, StorageType, detail::TypeUniquer, Traits... >
 Utility class for implementing types. More...
 
using ImplType = TypeStorage
 
using AbstractTy = AbstractType
 
- Protected Attributes inherited from mlir::Type
ImplTypeimpl {nullptr}
 

Detailed Description

Definition at line 81 of file SPIRVTypes.h.

Member Function Documentation

◆ classof()

bool ScalarType::classof ( Type  type)
static

Definition at line 572 of file SPIRVTypes.cpp.

References isValid().

◆ getCapabilities()

void ScalarType::getCapabilities ( SPIRVType::CapabilityArrayRefVector capabilities,
std::optional< StorageClass >  storage = std::nullopt 
)

Definition at line 621 of file SPIRVTypes.cpp.

References mlir::Type::getIntOrFloatBitWidth(), STORAGE_CASE, and WIDTH_CASE.

◆ getExtensions()

void ScalarType::getExtensions ( SPIRVType::ExtensionArrayRefVector extensions,
std::optional< StorageClass >  storage = std::nullopt 
)

Definition at line 590 of file SPIRVTypes.cpp.

References mlir::Type::getIntOrFloatBitWidth().

◆ getSizeInBytes()

std::optional< int64_t > ScalarType::getSizeInBytes ( )

Definition at line 709 of file SPIRVTypes.cpp.

References mlir::Type::getIntOrFloatBitWidth().

◆ isValid() [1/2]

bool ScalarType::isValid ( FloatType  type)
static

Returns true if the given integer type is valid for the SPIR-V dialect.

Definition at line 582 of file SPIRVTypes.cpp.

References mlir::FloatType::getWidth(), and mlir::Type::isBF16().

Referenced by classof(), and parseAndVerifyType().

◆ isValid() [2/2]

bool ScalarType::isValid ( IntegerType  type)
static

Returns true if the given float type is valid for the SPIR-V dialect.

Definition at line 586 of file SPIRVTypes.cpp.


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