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
12
#include "
llzk/Dialect/Function/IR/Attrs.h
"
13
#include "
llzk/Dialect/Polymorphic/IR/Ops.h
"
14
#include "
llzk/Dialect/Shared/OpHelpers.h
"
15
#include "
llzk/Dialect/Struct/IR/Ops.h
"
16
#include "
llzk/Util/Constants.h
"
17
#include "
llzk/Util/SymbolHelper.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
28
#include "
llzk/Dialect/Function/IR/Ops.h.inc
"
29
30
namespace
llzk::function
{
31
33
enum class
FunctionKind
: std::uint8_t {
35
StructCompute
,
37
StructConstrain
,
39
StructProduct
,
41
Free
42
};
43
50
FunctionKind
fnNameToKind
(mlir::StringRef name);
51
52
}
// namespace llzk::function
Attrs.h
Ops.h.inc
OpHelpers.h
Ops.h
Ops.h
SymbolHelper.h
Constants.h
llzk::function
Definition
Ops.cpp:49
llzk::function::fnNameToKind
FunctionKind fnNameToKind(mlir::StringRef name)
Given a function name, return the corresponding FunctionKind.
Definition
Ops.cpp:51
llzk::function::FunctionKind
FunctionKind
Kinds of functions in LLZK.
Definition
Ops.h:33
llzk::function::FunctionKind::StructConstrain
@ StructConstrain
Function within a struct named FUNC_NAME_CONSTRAIN.
Definition
Ops.h:37
llzk::function::FunctionKind::StructProduct
@ StructProduct
Function within a struct named FUNC_NAME_PRODUCT.
Definition
Ops.h:39
llzk::function::FunctionKind::StructCompute
@ StructCompute
Function within a struct named FUNC_NAME_COMPUTE.
Definition
Ops.h:35
llzk::function::FunctionKind::Free
@ Free
Function that is not within a struct.
Definition
Ops.h:41
include
llzk
Dialect
Function
IR
Ops.h
Generated by
1.14.0
Copyright 2025 Veridise Inc. under the Apache License v2.0. Copyright 2026 Project LLZK under the Apache License v2.0.