CIRCT  20.0.0git
Classes | Typedefs | Functions
OM.h File Reference
#include "mlir-c/IR.h"
Include dependency graph for OM.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  OMEvaluator
 A value type for use in C APIs that just wraps a pointer to an Evaluator. More...
 
struct  OMEvaluatorValue
 A value type for use in C APIs that just wraps a pointer to an Object. More...
 

Typedefs

typedef struct OMEvaluator OMEvaluator
 
typedef struct OMEvaluatorValue OMEvaluatorValue
 

Functions

 MLIR_DECLARE_CAPI_DIALECT_REGISTRATION (OM, om)
 
MLIR_CAPI_EXPORTED bool omTypeIsAAnyType (MlirType type)
 Is the Type an AnyType. More...
 
MLIR_CAPI_EXPORTED MlirTypeID omAnyTypeGetTypeID (void)
 Get the TypeID for an AnyType. More...
 
MLIR_CAPI_EXPORTED bool omTypeIsAClassType (MlirType type)
 Is the Type a ClassType. More...
 
MLIR_CAPI_EXPORTED MlirTypeID omClassTypeGetTypeID (void)
 Get the TypeID for a ClassType. More...
 
MLIR_CAPI_EXPORTED MlirIdentifier omClassTypeGetName (MlirType type)
 Get the name for a ClassType. More...
 
MLIR_CAPI_EXPORTED bool omTypeIsAFrozenBasePathType (MlirType type)
 Is the Type a FrozenBasePathType. More...
 
MLIR_CAPI_EXPORTED MlirTypeID omFrozenBasePathTypeGetTypeID (void)
 Get the TypeID for a FrozenBasePathType. More...
 
MLIR_CAPI_EXPORTED bool omTypeIsAFrozenPathType (MlirType type)
 Is the Type a FrozenPathType. More...
 
MLIR_CAPI_EXPORTED MlirTypeID omFrozenPathTypeGetTypeID (void)
 Get the TypeID for a FrozenPathType. More...
 
MLIR_CAPI_EXPORTED bool omTypeIsAListType (MlirType type)
 Is the Type a ListType. More...
 
MLIR_CAPI_EXPORTED MlirTypeID omListTypeGetTypeID (void)
 Get the TypeID for a ListType. More...
 
MLIR_CAPI_EXPORTED MlirType omListTypeGetElementType (MlirType type)
 
MLIR_CAPI_EXPORTED bool omTypeIsAMapType (MlirType type)
 Is the Type a MapType. More...
 
MLIR_CAPI_EXPORTED MlirType omMapTypeGetKeyType (MlirType type)
 Return a key type of a map. More...
 
MLIR_CAPI_EXPORTED bool omTypeIsAStringType (MlirType type)
 Is the Type a StringType. More...
 
MLIR_CAPI_EXPORTED OMEvaluator omEvaluatorNew (MlirModule mod)
 Construct an Evaluator with an IR module. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorInstantiate (OMEvaluator evaluator, MlirAttribute className, intptr_t nActualParams, OMEvaluatorValue *actualParams)
 Use the Evaluator to Instantiate an Object from its class name and actual parameters. More...
 
MLIR_CAPI_EXPORTED MlirModule omEvaluatorGetModule (OMEvaluator evaluator)
 Get the Module the Evaluator is built from. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorObjectIsNull (OMEvaluatorValue object)
 Query if the Object is null. More...
 
MLIR_CAPI_EXPORTED MlirType omEvaluatorObjectGetType (OMEvaluatorValue object)
 Get the Type from an Object, which will be a ClassType. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorObjectGetField (OMEvaluatorValue object, MlirAttribute name)
 Get a field from an Object, which must contain a field of that name. More...
 
MLIR_CAPI_EXPORTED unsigned omEvaluatorObjectGetHash (OMEvaluatorValue object)
 Get the object hash. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorObjectIsEq (OMEvaluatorValue object, OMEvaluatorValue other)
 Check equality of two objects. More...
 
MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorObjectGetFieldNames (OMEvaluatorValue object)
 Get all the field names from an Object, can be empty if object has no fields. More...
 
MLIR_CAPI_EXPORTED MlirContext omEvaluatorValueGetContext (OMEvaluatorValue evaluatorValue)
 
MLIR_CAPI_EXPORTED MlirLocation omEvaluatorValueGetLoc (OMEvaluatorValue evaluatorValue)
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsNull (OMEvaluatorValue evaluatorValue)
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAObject (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is an Object. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAPrimitive (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is a Primitive. More...
 
MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorValueGetPrimitive (OMEvaluatorValue evaluatorValue)
 Get the Primitive from an EvaluatorValue, which must contain a Primitive. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorValueFromPrimitive (MlirAttribute primitive)
 Get the EvaluatorValue from a Primitive value. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAList (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is an Object. More...
 
MLIR_CAPI_EXPORTED intptr_t omEvaluatorListGetNumElements (OMEvaluatorValue evaluatorValue)
 Get the length of the list. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorListGetElement (OMEvaluatorValue evaluatorValue, intptr_t pos)
 Get an element of the list. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsATuple (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is a Tuple. More...
 
MLIR_CAPI_EXPORTED intptr_t omEvaluatorTupleGetNumElements (OMEvaluatorValue evaluatorValue)
 Get the size of the tuple. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorTupleGetElement (OMEvaluatorValue evaluatorValue, intptr_t pos)
 Get an element of the tuple. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorMapGetElement (OMEvaluatorValue evaluatorValue, MlirAttribute attr)
 Get an element of the map. More...
 
MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorMapGetKeys (OMEvaluatorValue object)
 Get an ArrayAttr with the keys in a Map. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAMap (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is a Map. More...
 
MLIR_CAPI_EXPORTED MlirType omEvaluatorMapGetType (OMEvaluatorValue evaluatorValue)
 Get the Type from a Map, which will be a MapType. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsABasePath (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is a BasePath. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorBasePathGetEmpty (MlirContext context)
 Create an empty BasePath. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAPath (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is a Path. More...
 
MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorPathGetAsString (OMEvaluatorValue evaluatorValue)
 Get a string representation of a Path. More...
 
MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAReference (OMEvaluatorValue evaluatorValue)
 Query if the EvaluatorValue is a Reference. More...
 
MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorValueGetReferenceValue (OMEvaluatorValue evaluatorValue)
 Dereference a Reference EvaluatorValue. More...
 
MLIR_CAPI_EXPORTED bool omAttrIsAReferenceAttr (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED MlirAttribute omReferenceAttrGetInnerRef (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED bool omAttrIsAIntegerAttr (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED MlirAttribute omIntegerAttrGetInt (MlirAttribute attr)
 Given an om::IntegerAttr, return the mlir::IntegerAttr. More...
 
MLIR_CAPI_EXPORTED MlirAttribute omIntegerAttrGet (MlirAttribute attr)
 Get an om::IntegerAttr from mlir::IntegerAttr. More...
 
MLIR_CAPI_EXPORTED MlirStringRef omIntegerAttrToString (MlirAttribute attr)
 Get a string representation of an om::IntegerAttr. More...
 
MLIR_CAPI_EXPORTED bool omAttrIsAListAttr (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED intptr_t omListAttrGetNumElements (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED MlirAttribute omListAttrGetElement (MlirAttribute attr, intptr_t pos)
 
MLIR_CAPI_EXPORTED bool omAttrIsAMapAttr (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED intptr_t omMapAttrGetNumElements (MlirAttribute attr)
 
MLIR_CAPI_EXPORTED MlirIdentifier omMapAttrGetElementKey (MlirAttribute attr, intptr_t pos)
 
MLIR_CAPI_EXPORTED MlirAttribute omMapAttrGetElementValue (MlirAttribute attr, intptr_t pos)
 

Typedef Documentation

◆ OMEvaluator

typedef struct OMEvaluator OMEvaluator

Definition at line 71 of file OM.h.

◆ OMEvaluatorValue

Definition at line 71 of file OM.h.

Function Documentation

◆ MLIR_DECLARE_CAPI_DIALECT_REGISTRATION()

MLIR_DECLARE_CAPI_DIALECT_REGISTRATION ( OM  ,
om   
)

◆ omAnyTypeGetTypeID()

MLIR_CAPI_EXPORTED MlirTypeID omAnyTypeGetTypeID ( void  )

Get the TypeID for an AnyType.

Definition at line 36 of file OM.cpp.

References circt::esi::detail::getTypeID(), and wrap().

◆ omAttrIsAIntegerAttr()

MLIR_CAPI_EXPORTED bool omAttrIsAIntegerAttr ( MlirAttribute  attr)

Definition at line 387 of file OM.cpp.

References unwrap().

◆ omAttrIsAListAttr()

MLIR_CAPI_EXPORTED bool omAttrIsAListAttr ( MlirAttribute  attr)

Definition at line 415 of file OM.cpp.

References unwrap().

◆ omAttrIsAMapAttr()

MLIR_CAPI_EXPORTED bool omAttrIsAMapAttr ( MlirAttribute  attr)

Definition at line 433 of file OM.cpp.

References unwrap().

◆ omAttrIsAReferenceAttr()

MLIR_CAPI_EXPORTED bool omAttrIsAReferenceAttr ( MlirAttribute  attr)

Definition at line 374 of file OM.cpp.

References unwrap().

◆ omClassTypeGetName()

MLIR_CAPI_EXPORTED MlirIdentifier omClassTypeGetName ( MlirType  type)

Get the name for a ClassType.

Definition at line 45 of file OM.cpp.

References unwrap(), and wrap().

◆ omClassTypeGetTypeID()

MLIR_CAPI_EXPORTED MlirTypeID omClassTypeGetTypeID ( void  )

Get the TypeID for a ClassType.

Definition at line 42 of file OM.cpp.

References circt::esi::detail::getTypeID(), and wrap().

◆ omEvaluatorBasePathGetEmpty()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorBasePathGetEmpty ( MlirContext  context)

Create an empty BasePath.

Definition at line 332 of file OM.cpp.

References unwrap(), and wrap().

◆ omEvaluatorGetModule()

MLIR_CAPI_EXPORTED MlirModule omEvaluatorGetModule ( OMEvaluator  evaluator)

Get the Module the Evaluator is built from.

Definition at line 157 of file OM.cpp.

References unwrap(), and wrap().

◆ omEvaluatorInstantiate()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorInstantiate ( OMEvaluator  evaluator,
MlirAttribute  className,
intptr_t  nActualParams,
OMEvaluatorValue actualParams 
)

Use the Evaluator to Instantiate an Object from its class name and actual parameters.

Definition at line 129 of file OM.cpp.

References circt::om::Evaluator::instantiate(), unwrap(), and wrap().

◆ omEvaluatorListGetElement()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorListGetElement ( OMEvaluatorValue  evaluatorValue,
intptr_t  pos 
)

Get an element of the list.

Get an element of the list.

Definition at line 287 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorListGetNumElements()

MLIR_CAPI_EXPORTED intptr_t omEvaluatorListGetNumElements ( OMEvaluatorValue  evaluatorValue)

Get the length of the list.

Get the length of the list.

Definition at line 280 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorMapGetElement()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorMapGetElement ( OMEvaluatorValue  evaluatorValue,
MlirAttribute  attr 
)

Get an element of the map.

Get an element of the map.

Definition at line 313 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorMapGetKeys()

MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorMapGetKeys ( OMEvaluatorValue  object)

Get an ArrayAttr with the keys in a Map.

Definition at line 198 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorMapGetType()

MLIR_CAPI_EXPORTED MlirType omEvaluatorMapGetType ( OMEvaluatorValue  evaluatorValue)

Get the Type from a Map, which will be a MapType.

Definition at line 193 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorNew()

MLIR_CAPI_EXPORTED OMEvaluator omEvaluatorNew ( MlirModule  mod)

Construct an Evaluator with an IR module.

Definition at line 122 of file OM.cpp.

References unwrap(), and wrap().

◆ omEvaluatorObjectGetField()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorObjectGetField ( OMEvaluatorValue  object,
MlirAttribute  name 
)

Get a field from an Object, which must contain a field of that name.

Definition at line 203 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorObjectGetFieldNames()

MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorObjectGetFieldNames ( OMEvaluatorValue  object)

Get all the field names from an Object, can be empty if object has no fields.

Get all the field names from an Object, can be empty if object has no fields.

Definition at line 189 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorObjectGetHash()

MLIR_CAPI_EXPORTED unsigned omEvaluatorObjectGetHash ( OMEvaluatorValue  object)

Get the object hash.

Get the object hash.

Definition at line 178 of file OM.cpp.

References circt::calyx::direction::get(), circt::esi::hash_value(), and unwrap().

◆ omEvaluatorObjectGetType()

MLIR_CAPI_EXPORTED MlirType omEvaluatorObjectGetType ( OMEvaluatorValue  object)

Get the Type from an Object, which will be a ClassType.

Definition at line 173 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorObjectIsEq()

MLIR_CAPI_EXPORTED bool omEvaluatorObjectIsEq ( OMEvaluatorValue  object,
OMEvaluatorValue  other 
)

Check equality of two objects.

Check equality of two objects.

Definition at line 183 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorObjectIsNull()

MLIR_CAPI_EXPORTED bool omEvaluatorObjectIsNull ( OMEvaluatorValue  object)

Query if the Object is null.

Definition at line 167 of file OM.cpp.

◆ omEvaluatorPathGetAsString()

MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorPathGetAsString ( OMEvaluatorValue  evaluatorValue)

Get a string representation of a Path.

Definition at line 340 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorTupleGetElement()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorTupleGetElement ( OMEvaluatorValue  evaluatorValue,
intptr_t  pos 
)

Get an element of the tuple.

Get an element of the tuple.

Definition at line 306 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omEvaluatorTupleGetNumElements()

MLIR_CAPI_EXPORTED intptr_t omEvaluatorTupleGetNumElements ( OMEvaluatorValue  evaluatorValue)

Get the size of the tuple.

Get the size of the tuple.

Definition at line 299 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorValueFromPrimitive()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorValueFromPrimitive ( MlirAttribute  primitive)

Get the EvaluatorValue from a Primitive value.

Get the EvaluatorValue from a Primitive value.

Definition at line 261 of file OM.cpp.

References unwrap(), and wrap().

◆ omEvaluatorValueGetContext()

MLIR_CAPI_EXPORTED MlirContext omEvaluatorValueGetContext ( OMEvaluatorValue  evaluatorValue)

Definition at line 224 of file OM.cpp.

References unwrap(), and wrap().

◆ omEvaluatorValueGetLoc()

MLIR_CAPI_EXPORTED MlirLocation omEvaluatorValueGetLoc ( OMEvaluatorValue  evaluatorValue)

Definition at line 229 of file OM.cpp.

References unwrap(), and wrap().

◆ omEvaluatorValueGetPrimitive()

MLIR_CAPI_EXPORTED MlirAttribute omEvaluatorValueGetPrimitive ( OMEvaluatorValue  evaluatorValue)

Get the Primitive from an EvaluatorValue, which must contain a Primitive.

Definition at line 252 of file OM.cpp.

References assert(), circt::calyx::direction::get(), omEvaluatorValueIsAPrimitive(), unwrap(), and wrap().

◆ omEvaluatorValueGetReferenceValue()

MLIR_CAPI_EXPORTED OMEvaluatorValue omEvaluatorValueGetReferenceValue ( OMEvaluatorValue  evaluatorValue)

Dereference a Reference EvaluatorValue.

Emits an error and returns null if the Reference cannot be dereferenced.

Definition at line 353 of file OM.cpp.

References assert(), circt::calyx::direction::get(), omEvaluatorValueIsAReference(), unwrap(), and wrap().

◆ omEvaluatorValueIsABasePath()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsABasePath ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is a BasePath.

Definition at line 328 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorValueIsAList()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAList ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is an Object.

Query if the EvaluatorValue is an Object.

Definition at line 267 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

Referenced by omEvaluatorValueGetList().

◆ omEvaluatorValueIsAMap()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAMap ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is a Map.

Query if the EvaluatorValue is a Map.

Definition at line 324 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorValueIsAObject()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAObject ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is an Object.

Definition at line 240 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorValueIsAPath()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAPath ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is a Path.

Definition at line 336 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorValueIsAPrimitive()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAPrimitive ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is a Primitive.

Definition at line 246 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

Referenced by omEvaluatorValueGetPrimitive().

◆ omEvaluatorValueIsAReference()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsAReference ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is a Reference.

Definition at line 346 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

Referenced by omEvaluatorValueGetReferenceValue().

◆ omEvaluatorValueIsATuple()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsATuple ( OMEvaluatorValue  evaluatorValue)

Query if the EvaluatorValue is a Tuple.

Definition at line 294 of file OM.cpp.

References circt::calyx::direction::get(), and unwrap().

◆ omEvaluatorValueIsNull()

MLIR_CAPI_EXPORTED bool omEvaluatorValueIsNull ( OMEvaluatorValue  evaluatorValue)

Definition at line 234 of file OM.cpp.

References OMEvaluatorValue::ptr.

◆ omFrozenBasePathTypeGetTypeID()

MLIR_CAPI_EXPORTED MlirTypeID omFrozenBasePathTypeGetTypeID ( void  )

Get the TypeID for a FrozenBasePathType.

Definition at line 55 of file OM.cpp.

References circt::esi::detail::getTypeID(), and wrap().

◆ omFrozenPathTypeGetTypeID()

MLIR_CAPI_EXPORTED MlirTypeID omFrozenPathTypeGetTypeID ( void  )

Get the TypeID for a FrozenPathType.

Definition at line 65 of file OM.cpp.

References circt::esi::detail::getTypeID(), and wrap().

◆ omIntegerAttrGet()

MLIR_CAPI_EXPORTED MlirAttribute omIntegerAttrGet ( MlirAttribute  attr)

Get an om::IntegerAttr from mlir::IntegerAttr.

Definition at line 395 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omIntegerAttrGetInt()

MLIR_CAPI_EXPORTED MlirAttribute omIntegerAttrGetInt ( MlirAttribute  attr)

Given an om::IntegerAttr, return the mlir::IntegerAttr.

Definition at line 391 of file OM.cpp.

References unwrap(), and wrap().

◆ omIntegerAttrToString()

MLIR_CAPI_EXPORTED MlirStringRef omIntegerAttrToString ( MlirAttribute  attr)

Get a string representation of an om::IntegerAttr.

Definition at line 402 of file OM.cpp.

References circt::calyx::direction::get(), unwrap(), and wrap().

◆ omListAttrGetElement()

MLIR_CAPI_EXPORTED MlirAttribute omListAttrGetElement ( MlirAttribute  attr,
intptr_t  pos 
)

Definition at line 424 of file OM.cpp.

References unwrap(), and wrap().

◆ omListAttrGetNumElements()

MLIR_CAPI_EXPORTED intptr_t omListAttrGetNumElements ( MlirAttribute  attr)

Definition at line 419 of file OM.cpp.

References unwrap().

◆ omListTypeGetElementType()

MLIR_CAPI_EXPORTED MlirType omListTypeGetElementType ( MlirType  type)

Definition at line 76 of file OM.cpp.

References unwrap(), and wrap().

◆ omListTypeGetTypeID()

MLIR_CAPI_EXPORTED MlirTypeID omListTypeGetTypeID ( void  )

Get the TypeID for a ListType.

Definition at line 73 of file OM.cpp.

References circt::esi::detail::getTypeID(), and wrap().

◆ omMapAttrGetElementKey()

MLIR_CAPI_EXPORTED MlirIdentifier omMapAttrGetElementKey ( MlirAttribute  attr,
intptr_t  pos 
)

Definition at line 440 of file OM.cpp.

References unwrap(), and wrap().

◆ omMapAttrGetElementValue()

MLIR_CAPI_EXPORTED MlirAttribute omMapAttrGetElementValue ( MlirAttribute  attr,
intptr_t  pos 
)

Definition at line 445 of file OM.cpp.

References unwrap(), and wrap().

◆ omMapAttrGetNumElements()

MLIR_CAPI_EXPORTED intptr_t omMapAttrGetNumElements ( MlirAttribute  attr)

Definition at line 435 of file OM.cpp.

References unwrap().

◆ omMapTypeGetKeyType()

MLIR_CAPI_EXPORTED MlirType omMapTypeGetKeyType ( MlirType  type)

Return a key type of a map.

Definition at line 91 of file OM.cpp.

References unwrap(), and wrap().

◆ omReferenceAttrGetInnerRef()

MLIR_CAPI_EXPORTED MlirAttribute omReferenceAttrGetInnerRef ( MlirAttribute  attr)

Definition at line 378 of file OM.cpp.

References unwrap(), and wrap().

◆ omTypeIsAAnyType()

MLIR_CAPI_EXPORTED bool omTypeIsAAnyType ( MlirType  type)

Is the Type an AnyType.

Definition at line 33 of file OM.cpp.

References unwrap().

◆ omTypeIsAClassType()

MLIR_CAPI_EXPORTED bool omTypeIsAClassType ( MlirType  type)

Is the Type a ClassType.

Definition at line 39 of file OM.cpp.

References unwrap().

◆ omTypeIsAFrozenBasePathType()

MLIR_CAPI_EXPORTED bool omTypeIsAFrozenBasePathType ( MlirType  type)

Is the Type a FrozenBasePathType.

Definition at line 50 of file OM.cpp.

References unwrap().

◆ omTypeIsAFrozenPathType()

MLIR_CAPI_EXPORTED bool omTypeIsAFrozenPathType ( MlirType  type)

Is the Type a FrozenPathType.

Definition at line 60 of file OM.cpp.

References unwrap().

◆ omTypeIsAListType()

MLIR_CAPI_EXPORTED bool omTypeIsAListType ( MlirType  type)

Is the Type a ListType.

Definition at line 70 of file OM.cpp.

References unwrap().

◆ omTypeIsAMapType()

MLIR_CAPI_EXPORTED bool omTypeIsAMapType ( MlirType  type)

Is the Type a MapType.

◆ omTypeIsAStringType()

MLIR_CAPI_EXPORTED bool omTypeIsAStringType ( MlirType  type)

Is the Type a StringType.

Definition at line 81 of file OM.cpp.

References unwrap().