LLZK 2.0.0
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
Ops.h
Go to the documentation of this file.
1//===-- Ops.h ---------------------------------------------------*- C++ -*-===//
2//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2025 Veridise Inc.
6// SPDX-License-Identifier: Apache-2.0
7//
8//===----------------------------------------------------------------------===//
9
10#pragma once
11
16#include "llzk/Util/Constants.h"
18
19#include <mlir/IR/OpImplementation.h>
20#include <mlir/Interfaces/CallInterfaces.h>
21#include <mlir/Interfaces/ControlFlowInterfaces.h>
22#include <mlir/Interfaces/FunctionInterfaces.h>
23
24#include <cstdint>
25
26// Include TableGen'd declarations
27#define GET_OP_CLASSES
29
30namespace llzk::function {
31
43
50FunctionKind fnNameToKind(mlir::StringRef name);
51
52} // namespace llzk::function
FunctionKind fnNameToKind(mlir::StringRef name)
Given a function name, return the corresponding FunctionKind.
Definition Ops.cpp:51
FunctionKind
Kinds of functions in LLZK.
Definition Ops.h:33
@ StructConstrain
Function within a struct named FUNC_NAME_CONSTRAIN.
Definition Ops.h:37
@ StructProduct
Function within a struct named FUNC_NAME_PRODUCT.
Definition Ops.h:39
@ StructCompute
Function within a struct named FUNC_NAME_COMPUTE.
Definition Ops.h:35
@ Free
Function that is not within a struct.
Definition Ops.h:41