|
LLZK 0.1.0
Veridise's ZK Language IR
|
Public Types | |
| using | Adaptor = WriteArrayOpAdaptor |
| template<typename RangeT> | |
| using | GenericAdaptor = WriteArrayOpGenericAdaptor<RangeT> |
| using | FoldAdaptor = GenericAdaptor<::llvm::ArrayRef<::mlir::Attribute>> |
Public Member Functions | |
| static ::llvm::ArrayRef<::llvm::StringRef > | getAttributeNames () |
| std::pair< unsigned, unsigned > | getODSOperandIndexAndLength (unsigned index) |
| ::mlir::Operation::operand_range | getODSOperands (unsigned index) |
| ::mlir::TypedValue<::llzk::array::ArrayType > | getArrRef () |
| ::mlir::Operation::operand_range | getIndices () |
| ::mlir::TypedValue<::mlir::Type > | getRvalue () |
| ::mlir::OpOperand & | getArrRefMutable () |
| ::mlir::MutableOperandRange | getIndicesMutable () |
| ::mlir::OpOperand & | getRvalueMutable () |
| std::pair< unsigned, unsigned > | getODSResultIndexAndLength (unsigned index) |
| ::mlir::Operation::result_range | getODSResults (unsigned index) |
| ::llvm::LogicalResult | verifyInvariantsImpl () |
| ::llvm::LogicalResult | verifyInvariants () |
| ::llvm::LogicalResult | verify () |
| bool | canRewire (const ::mlir::DestructurableMemorySlot &slot, ::llvm::SmallPtrSetImpl<::mlir::Attribute > &usedIndices, ::mlir::SmallVectorImpl<::mlir::MemorySlot > &mustBeSafelyUsed, const ::mlir::DataLayout &dataLayout) |
| Required by DestructurableAllocationOpInterface / SROA pass. | |
| ::mlir::DeletionKind | rewire (const ::mlir::DestructurableMemorySlot &slot, ::llvm::DenseMap<::mlir::Attribute, ::mlir::MemorySlot > &subslots, ::mlir::OpBuilder &builder, const ::mlir::DataLayout &dataLayout) |
| Required by DestructurableAllocationOpInterface / SROA pass. | |
| bool | loadsFrom (const ::mlir::MemorySlot &slot) |
| Required by PromotableMemOpInterface / mem2reg pass. | |
| bool | storesTo (const ::mlir::MemorySlot &slot) |
| Required by PromotableMemOpInterface / mem2reg pass. | |
| ::mlir::Value | getStored (const ::mlir::MemorySlot &slot, ::mlir::OpBuilder &builder, ::mlir::Value reachingDef, const ::mlir::DataLayout &dataLayout) |
| Required by PromotableAllocationOpInterface / mem2reg pass. | |
| bool | canUsesBeRemoved (const ::mlir::MemorySlot &slot, const ::llvm::SmallPtrSetImpl<::mlir::OpOperand * > &blockingUses, ::llvm::SmallVectorImpl<::mlir::OpOperand * > &newBlockingUses, const ::mlir::DataLayout &datalayout) |
| Required by PromotableMemOpInterface / mem2reg pass. | |
| ::mlir::DeletionKind | removeBlockingUses (const ::mlir::MemorySlot &slot, const ::llvm::SmallPtrSetImpl< mlir::OpOperand * > &blockingUses, ::mlir::OpBuilder &builder, ::mlir::Value reachingDefinition, const ::mlir::DataLayout &dataLayout) |
| Required by PromotableMemOpInterface / mem2reg pass. | |
| ::llvm::LogicalResult | verifySymbolUses (::mlir::SymbolTableCollection &symbolTable) |
| bool | isRead () |
| Return true if the op is a read, false if it's a write. | |
| void | print (::mlir::OpAsmPrinter &_odsPrinter) |
| inline ::llzk::array::ArrayType | getArrRefType () |
| Gets the type of the referenced base array. | |
Static Public Member Functions | |
| static constexpr ::llvm::StringLiteral | getOperationName () |
| static void | build (::mlir::OpBuilder &odsBuilder, ::mlir::OperationState &odsState, ::mlir::Value arr_ref, ::mlir::ValueRange indices, ::mlir::Value rvalue) |
| static void | build (::mlir::OpBuilder &odsBuilder, ::mlir::OperationState &odsState, ::mlir::TypeRange resultTypes, ::mlir::Value arr_ref, ::mlir::ValueRange indices, ::mlir::Value rvalue) |
| 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) |
| using llzk::array::WriteArrayOp::FoldAdaptor = GenericAdaptor<::llvm::ArrayRef<::mlir::Attribute>> |
| using llzk::array::WriteArrayOp::GenericAdaptor = WriteArrayOpGenericAdaptor<RangeT> |
|
static |
Definition at line 1540 of file Ops.cpp.inc.
|
static |
Definition at line 1532 of file Ops.cpp.inc.
|
static |
Definition at line 1526 of file Ops.cpp.inc.
| bool llzk::array::WriteArrayOp::canRewire | ( | const ::mlir::DestructurableMemorySlot & | slot, |
| ::llvm::SmallPtrSetImpl<::mlir::Attribute > & | usedIndices, | ||
| ::mlir::SmallVectorImpl<::mlir::MemorySlot > & | mustBeSafelyUsed, | ||
| const ::mlir::DataLayout & | dataLayout ) |
Required by DestructurableAllocationOpInterface / SROA pass.
Definition at line 1678 of file Ops.cpp.inc.
| bool llzk::array::WriteArrayOp::canUsesBeRemoved | ( | const ::mlir::MemorySlot & | slot, |
| const ::llvm::SmallPtrSetImpl<::mlir::OpOperand * > & | blockingUses, | ||
| ::llvm::SmallVectorImpl<::mlir::OpOperand * > & | newBlockingUses, | ||
| const ::mlir::DataLayout & | datalayout ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| mlir::MutableOperandRange llzk::array::WriteArrayOp::getIndicesMutable | ( | ) |
Definition at line 1520 of file Ops.cpp.inc.
| std::pair< unsigned, unsigned > llzk::array::WriteArrayOp::getODSOperandIndexAndLength | ( | unsigned | index | ) |
Definition at line 1502 of file Ops.cpp.inc.
|
inline |
|
inline |
|
inline |
|
inlinestatic |
|
inline |
|
inline |
| mlir::Value llzk::array::WriteArrayOp::getStored | ( | const ::mlir::MemorySlot & | slot, |
| ::mlir::OpBuilder & | builder, | ||
| ::mlir::Value | reachingDef, | ||
| const ::mlir::DataLayout & | dataLayout ) |
Required by PromotableAllocationOpInterface / mem2reg pass.
Definition at line 1705 of file Ops.cpp.inc.
| bool llzk::array::WriteArrayOp::isRead | ( | ) |
Return true if the op is a read, false if it's a write.
Definition at line 1711 of file Ops.cpp.inc.
| bool llzk::array::WriteArrayOp::loadsFrom | ( | const ::mlir::MemorySlot & | slot | ) |
Required by PromotableMemOpInterface / mem2reg pass.
Definition at line 1695 of file Ops.cpp.inc.
|
static |
Definition at line 1581 of file Ops.cpp.inc.
| void llzk::array::WriteArrayOp::print | ( | ::mlir::OpAsmPrinter & | _odsPrinter | ) |
Definition at line 1646 of file Ops.cpp.inc.
| DeletionKind llzk::array::WriteArrayOp::removeBlockingUses | ( | const ::mlir::MemorySlot & | slot, |
| const ::llvm::SmallPtrSetImpl< mlir::OpOperand * > & | blockingUses, | ||
| ::mlir::OpBuilder & | builder, | ||
| ::mlir::Value | reachingDefinition, | ||
| const ::mlir::DataLayout & | dataLayout ) |
| mlir::DeletionKind llzk::array::WriteArrayOp::rewire | ( | const ::mlir::DestructurableMemorySlot & | slot, |
| ::llvm::DenseMap<::mlir::Attribute, ::mlir::MemorySlot > & | subslots, | ||
| ::mlir::OpBuilder & | builder, | ||
| const ::mlir::DataLayout & | dataLayout ) |
Required by DestructurableAllocationOpInterface / SROA pass.
Definition at line 1687 of file Ops.cpp.inc.
| bool llzk::array::WriteArrayOp::storesTo | ( | const ::mlir::MemorySlot & | slot | ) |
Required by PromotableMemOpInterface / mem2reg pass.
Definition at line 1700 of file Ops.cpp.inc.
| llvm::LogicalResult llzk::array::WriteArrayOp::verifyInvariants | ( | ) |
Definition at line 1575 of file Ops.cpp.inc.
| llvm::LogicalResult llzk::array::WriteArrayOp::verifyInvariantsImpl | ( | ) |
Definition at line 1548 of file Ops.cpp.inc.
| LogicalResult llzk::array::WriteArrayOp::verifySymbolUses | ( | ::mlir::SymbolTableCollection & | symbolTable | ) |