LLZK 2.0.0
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
llzk::component::StructDefOp Class Reference
Inheritance diagram for llzk::component::StructDefOp:
[legend]
Collaboration diagram for llzk::component::StructDefOp:
[legend]

Public Types

using Adaptor = StructDefOpAdaptor
template<typename RangeT>
using GenericAdaptor = StructDefOpGenericAdaptor<RangeT>
using FoldAdaptor = GenericAdaptor<::llvm::ArrayRef<::mlir::Attribute>>
using Properties = FoldAdaptor::Properties

Public Member Functions

static ::llvm::ArrayRef<::llvm::StringRef > getAttributeNames ()
::mlir::StringAttr getSymNameAttrName ()
std::pair< unsigned, unsigned > getODSOperandIndexAndLength (unsigned index)
::mlir::Operation::operand_range getODSOperands (unsigned index)
std::pair< unsigned, unsigned > getODSResultIndexAndLength (unsigned index)
::mlir::Operation::result_range getODSResults (unsigned index)
::mlir::Region & getBodyRegion ()
void writeProperties (::mlir::DialectBytecodeWriter &writer)
::mlir::StringAttr getSymNameAttr ()
::llvm::StringRef getSymName ()
void setSymNameAttr (::mlir::StringAttr attr)
void setSymName (::llvm::StringRef attrValue)
::llvm::LogicalResult verifyInvariantsImpl ()
::llvm::LogicalResult verifyInvariants ()
::llvm::LogicalResult verifyRegions ()
void print (::mlir::OpAsmPrinter &_odsPrinter)
StructType getType (::std::optional<::mlir::ArrayAttr > constParams={})
 Gets the StructType representing this struct.
StructType getType (::std::optional<::mlir::ArrayAttr > constParams={}) const
MemberDefOp getMemberDef (::mlir::StringAttr memberName)
 Gets the MemberDefOp that defines the member in this structure with the given name, if present.
::std::vector< MemberDefOpgetMemberDefs ()
 Get all MemberDefOp in this structure.
::mlir::LogicalResult hasColumns ()
 Returns whether the struct defines members marked as columns.
::mlir::LogicalResult hasSignals ()
 Returns whether the struct defines members marked as signals.
::llzk::function::FuncDefOp getComputeFuncOp ()
 Gets the FuncDefOp that defines the compute function in this structure, if present, or nullptr otherwise.
::llzk::function::FuncDefOp getConstrainFuncOp ()
 Gets the FuncDefOp that defines the constrain function in this structure, if present, or nullptr otherwise.
::llzk::function::FuncDefOp getProductFuncOp ()
 Gets the FuncDefOp that defines the product function in this structure, if present, or nullptr otherwise.
bool hasComputeConstrain ()
 Returns true iff this structure defines compute and constrain functions.
::std::string getHeaderString ()
 Generate header string, in the same format as the assemblyFormat.
bool hasTemplateSymbolBindings ()
 Return true iff the struct.def appears within a poly.template that defines constant parameters and/or expressions.
::llvm::SmallVector<::mlir::Attribute > getTemplateParamOpNames ()
 If this struct.def is within a poly.template, return names of all poly.param within the poly.template in the order they are defined.
::llvm::SmallVector<::mlir::Attribute > getTemplateExprOpNames ()
 If this struct.def is within a poly.template, return names of all poly.expr within the poly.template in the order they are defined.
::mlir::SymbolRefAttr getFullyQualifiedName ()
 Return the full name for this struct from the root module, including any surrounding module scopes.
bool isMainComponent ()
 Return true iff this struct.def is the main struct. See llzk::MAIN_ATTR_NAME.

Static Public Member Functions

::mlir::StringAttr getSymNameAttrName (::mlir::OperationName name)
static constexpr ::llvm::StringLiteral getOperationName ()
::llvm::LogicalResult setPropertiesFromAttr (Properties &prop, ::mlir::Attribute attr, ::llvm::function_ref<::mlir::InFlightDiagnostic()> emitError)
::mlir::Attribute getPropertiesAsAttr (::mlir::MLIRContext *ctx, const Properties &prop)
static llvm::hash_code computePropertiesHash (const Properties &prop)
static std::optional< mlir::Attribute > getInherentAttr (::mlir::MLIRContext *ctx, const Properties &prop, llvm::StringRef name)
static void setInherentAttr (Properties &prop, llvm::StringRef name, mlir::Attribute value)
static void populateInherentAttrs (::mlir::MLIRContext *ctx, const Properties &prop, ::mlir::NamedAttrList &attrs)
::llvm::LogicalResult verifyInherentAttrs (::mlir::OperationName opName, ::mlir::NamedAttrList &attrs, llvm::function_ref<::mlir::InFlightDiagnostic()> emitError)
::llvm::LogicalResult readProperties (::mlir::DialectBytecodeReader &reader, ::mlir::OperationState &state)
static void build (::mlir::OpBuilder &odsBuilder, ::mlir::OperationState &odsState, ::mlir::StringAttr sym_name)
static void build (::mlir::OpBuilder &odsBuilder, ::mlir::OperationState &odsState, ::mlir::TypeRange resultTypes, ::mlir::StringAttr sym_name)
static void build (::mlir::OpBuilder &odsBuilder, ::mlir::OperationState &odsState, ::llvm::StringRef sym_name)
static void build (::mlir::OpBuilder &odsBuilder, ::mlir::OperationState &odsState, ::mlir::TypeRange resultTypes, ::llvm::StringRef sym_name)
static void build (::mlir::OpBuilder &, ::mlir::OperationState &odsState, ::mlir::TypeRange resultTypes, ::mlir::ValueRange operands, ::llvm::ArrayRef<::mlir::NamedAttribute > attributes={})
::mlir::ParseResult parse (::mlir::OpAsmParser &parser, ::mlir::OperationState &result)

Detailed Description

Definition at line 1143 of file Ops.h.inc.

Member Typedef Documentation

◆ Adaptor

◆ FoldAdaptor

using llzk::component::StructDefOp::FoldAdaptor = GenericAdaptor<::llvm::ArrayRef<::mlir::Attribute>>

Definition at line 1150 of file Ops.h.inc.

◆ GenericAdaptor

Definition at line 1149 of file Ops.h.inc.

◆ Properties

Member Function Documentation

◆ build() [1/5]

void llzk::component::StructDefOp::build ( ::mlir::OpBuilder & ,
::mlir::OperationState & odsState,
::mlir::TypeRange resultTypes,
::mlir::ValueRange operands,
::llvm::ArrayRef<::mlir::NamedAttribute > attributes = {} )
static

Definition at line 1633 of file Ops.cpp.inc.

◆ build() [2/5]

void llzk::component::StructDefOp::build ( ::mlir::OpBuilder & odsBuilder,
::mlir::OperationState & odsState,
::llvm::StringRef sym_name )
static

Definition at line 1621 of file Ops.cpp.inc.

◆ build() [3/5]

void llzk::component::StructDefOp::build ( ::mlir::OpBuilder & odsBuilder,
::mlir::OperationState & odsState,
::mlir::StringAttr sym_name )
static

Definition at line 1609 of file Ops.cpp.inc.

◆ build() [4/5]

void llzk::component::StructDefOp::build ( ::mlir::OpBuilder & odsBuilder,
::mlir::OperationState & odsState,
::mlir::TypeRange resultTypes,
::llvm::StringRef sym_name )
static

Definition at line 1626 of file Ops.cpp.inc.

◆ build() [5/5]

void llzk::component::StructDefOp::build ( ::mlir::OpBuilder & odsBuilder,
::mlir::OperationState & odsState,
::mlir::TypeRange resultTypes,
::mlir::StringAttr sym_name )
static

Definition at line 1614 of file Ops.cpp.inc.

◆ computePropertiesHash()

llvm::hash_code llzk::component::StructDefOp::computePropertiesHash ( const Properties & prop)
static

Definition at line 1569 of file Ops.cpp.inc.

◆ getAttributeNames()

::llvm::ArrayRef<::llvm::StringRef > llzk::component::StructDefOp::getAttributeNames ( )
inline

Definition at line 1152 of file Ops.h.inc.

◆ getBodyRegion()

::mlir::Region & llzk::component::StructDefOp::getBodyRegion ( )
inline

Definition at line 1189 of file Ops.h.inc.

◆ getComputeFuncOp()

FuncDefOp llzk::component::StructDefOp::getComputeFuncOp ( )

Gets the FuncDefOp that defines the compute function in this structure, if present, or nullptr otherwise.

Definition at line 466 of file Ops.cpp.

◆ getConstrainFuncOp()

FuncDefOp llzk::component::StructDefOp::getConstrainFuncOp ( )

Gets the FuncDefOp that defines the constrain function in this structure, if present, or nullptr otherwise.

Definition at line 470 of file Ops.cpp.

◆ getFullyQualifiedName()

SymbolRefAttr llzk::component::StructDefOp::getFullyQualifiedName ( )

Return the full name for this struct from the root module, including any surrounding module scopes.

Definition at line 216 of file Ops.cpp.

◆ getHeaderString()

std::string llzk::component::StructDefOp::getHeaderString ( )

Generate header string, in the same format as the assemblyFormat.

Definition at line 179 of file Ops.cpp.

◆ getInherentAttr()

std::optional< mlir::Attribute > llzk::component::StructDefOp::getInherentAttr ( ::mlir::MLIRContext * ctx,
const Properties & prop,
llvm::StringRef name )
static

Definition at line 1574 of file Ops.cpp.inc.

◆ getMemberDef()

MemberDefOp llzk::component::StructDefOp::getMemberDef ( ::mlir::StringAttr memberName)

Gets the MemberDefOp that defines the member in this structure with the given name, if present.

Definition at line 445 of file Ops.cpp.

◆ getMemberDefs()

std::vector< MemberDefOp > llzk::component::StructDefOp::getMemberDefs ( )

Get all MemberDefOp in this structure.

Definition at line 456 of file Ops.cpp.

◆ getODSOperandIndexAndLength()

std::pair< unsigned, unsigned > llzk::component::StructDefOp::getODSOperandIndexAndLength ( unsigned index)
inline

Definition at line 1169 of file Ops.h.inc.

◆ getODSOperands()

::mlir::Operation::operand_range llzk::component::StructDefOp::getODSOperands ( unsigned index)
inline

Definition at line 1173 of file Ops.h.inc.

◆ getODSResultIndexAndLength()

std::pair< unsigned, unsigned > llzk::component::StructDefOp::getODSResultIndexAndLength ( unsigned index)
inline

Definition at line 1179 of file Ops.h.inc.

◆ getODSResults()

::mlir::Operation::result_range llzk::component::StructDefOp::getODSResults ( unsigned index)
inline

Definition at line 1183 of file Ops.h.inc.

◆ getOperationName()

constexpr ::llvm::StringLiteral llzk::component::StructDefOp::getOperationName ( )
inlinestatic

Definition at line 1165 of file Ops.h.inc.

◆ getProductFuncOp()

FuncDefOp llzk::component::StructDefOp::getProductFuncOp ( )

Gets the FuncDefOp that defines the product function in this structure, if present, or nullptr otherwise.

Definition at line 474 of file Ops.cpp.

◆ getPropertiesAsAttr()

mlir::Attribute llzk::component::StructDefOp::getPropertiesAsAttr ( ::mlir::MLIRContext * ctx,
const Properties & prop )
static

Definition at line 1553 of file Ops.cpp.inc.

◆ getSymName()

llvm::StringRef llzk::component::StructDefOp::getSymName ( )

Definition at line 1600 of file Ops.cpp.inc.

◆ getSymNameAttr()

::mlir::StringAttr llzk::component::StructDefOp::getSymNameAttr ( )
inline

Definition at line 1202 of file Ops.h.inc.

◆ getSymNameAttrName() [1/2]

::mlir::StringAttr llzk::component::StructDefOp::getSymNameAttrName ( )
inline

Definition at line 1157 of file Ops.h.inc.

◆ getSymNameAttrName() [2/2]

::mlir::StringAttr llzk::component::StructDefOp::getSymNameAttrName ( ::mlir::OperationName name)
inlinestatic

Definition at line 1161 of file Ops.h.inc.

◆ getTemplateExprOpNames()

SmallVector< Attribute > llzk::component::StructDefOp::getTemplateExprOpNames ( )

If this struct.def is within a poly.template, return names of all poly.expr within the poly.template in the order they are defined.

Otherwise, return empty. The names are returned as FlatSymbolRefAttr but the more general Attribute type is used in the return type since that's usually what's needed.

Definition at line 208 of file Ops.cpp.

◆ getTemplateParamOpNames()

SmallVector< Attribute > llzk::component::StructDefOp::getTemplateParamOpNames ( )

If this struct.def is within a poly.template, return names of all poly.param within the poly.template in the order they are defined.

Otherwise, return empty. The names are returned as FlatSymbolRefAttr but the more general Attribute type is used in the return type since that's usually what's needed.

Definition at line 200 of file Ops.cpp.

◆ getType() [1/2]

StructType llzk::component::StructDefOp::getType ( ::std::optional<::mlir::ArrayAttr > constParams = {})

Gets the StructType representing this struct.

If the constParams to use in the type are not given, the StructType will use this->getParams().

◆ getType() [2/2]

StructType llzk::component::StructDefOp::getType ( ::std::optional<::mlir::ArrayAttr > constParams = {}) const
inline

Definition at line 1239 of file Ops.h.inc.

◆ hasColumns()

::mlir::LogicalResult llzk::component::StructDefOp::hasColumns ( )
inline

Returns whether the struct defines members marked as columns.

Definition at line 1251 of file Ops.h.inc.

◆ hasComputeConstrain()

bool llzk::component::StructDefOp::hasComputeConstrain ( )
inline

Returns true iff this structure defines compute and constrain functions.

Definition at line 1274 of file Ops.h.inc.

◆ hasSignals()

::mlir::LogicalResult llzk::component::StructDefOp::hasSignals ( )
inline

Returns whether the struct defines members marked as signals.

Definition at line 1258 of file Ops.h.inc.

◆ hasTemplateSymbolBindings()

bool llzk::component::StructDefOp::hasTemplateSymbolBindings ( )

Return true iff the struct.def appears within a poly.template that defines constant parameters and/or expressions.

Definition at line 193 of file Ops.cpp.

◆ isMainComponent()

bool llzk::component::StructDefOp::isMainComponent ( )

Return true iff this struct.def is the main struct. See llzk::MAIN_ATTR_NAME.

Definition at line 478 of file Ops.cpp.

◆ parse()

mlir::ParseResult llzk::component::StructDefOp::parse ( ::mlir::OpAsmParser & parser,
::mlir::OperationState & result )
static

Definition at line 1673 of file Ops.cpp.inc.

◆ populateInherentAttrs()

void llzk::component::StructDefOp::populateInherentAttrs ( ::mlir::MLIRContext * ctx,
const Properties & prop,
::mlir::NamedAttrList & attrs )
static

Definition at line 1587 of file Ops.cpp.inc.

◆ print()

void llzk::component::StructDefOp::print ( ::mlir::OpAsmPrinter & _odsPrinter)

Definition at line 1698 of file Ops.cpp.inc.

◆ readProperties()

LogicalResult llzk::component::StructDefOp::readProperties ( ::mlir::DialectBytecodeReader & reader,
::mlir::OperationState & state )
static

Definition at line 490 of file Ops.cpp.

◆ setInherentAttr()

void llzk::component::StructDefOp::setInherentAttr ( Properties & prop,
llvm::StringRef name,
mlir::Attribute value )
static

Definition at line 1580 of file Ops.cpp.inc.

◆ setPropertiesFromAttr()

llvm::LogicalResult llzk::component::StructDefOp::setPropertiesFromAttr ( Properties & prop,
::mlir::Attribute attr,
::llvm::function_ref<::mlir::InFlightDiagnostic()> emitError )
static

Definition at line 1530 of file Ops.cpp.inc.

◆ setSymName()

void llzk::component::StructDefOp::setSymName ( ::llvm::StringRef attrValue)

Definition at line 1605 of file Ops.cpp.inc.

◆ setSymNameAttr()

void llzk::component::StructDefOp::setSymNameAttr ( ::mlir::StringAttr attr)
inline

Definition at line 1207 of file Ops.h.inc.

◆ verifyInherentAttrs()

llvm::LogicalResult llzk::component::StructDefOp::verifyInherentAttrs ( ::mlir::OperationName opName,
::mlir::NamedAttrList & attrs,
llvm::function_ref<::mlir::InFlightDiagnostic()> emitError )
static

Definition at line 1591 of file Ops.cpp.inc.

◆ verifyInvariants()

llvm::LogicalResult llzk::component::StructDefOp::verifyInvariants ( )

Definition at line 1669 of file Ops.cpp.inc.

◆ verifyInvariantsImpl()

llvm::LogicalResult llzk::component::StructDefOp::verifyInvariantsImpl ( )

Definition at line 1653 of file Ops.cpp.inc.

◆ verifyRegions()

LogicalResult llzk::component::StructDefOp::verifyRegions ( )

Definition at line 322 of file Ops.cpp.

◆ writeProperties()

void llzk::component::StructDefOp::writeProperties ( ::mlir::DialectBytecodeWriter & writer)

Definition at line 515 of file Ops.cpp.


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