LLZK
2.0.0
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
Cast.h
Go to the documentation of this file.
1
//===-- Cast.h - C API for Cast dialect ---------------------------*- 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
// This header declares the C interface for registering and accessing the
11
// Cast dialect. A dialect should be registered with a context to make it
12
// available to users of the context. These users must load the dialect
13
// before using any of its attributes, operations, or types. Parser and pass
14
// manager can load registered dialects automatically.
15
//
16
//===----------------------------------------------------------------------===//
17
18
#ifndef LLZK_C_DIALECT_CAST_H
19
#define LLZK_C_DIALECT_CAST_H
20
21
#include "
llzk-c/Support.h
"
22
23
#include <mlir-c/IR.h>
24
25
// Include the generated CAPI
26
#include "
llzk/Dialect/Cast/IR/Ops.capi.h.inc
"
27
28
#ifdef __cplusplus
29
extern
"C"
{
30
#endif
31
33
MLIR_DECLARE_CAPI_DIALECT_REGISTRATION
(Cast, llzk__cast);
34
36
LLZK_DECLARE_SUFFIX_OP_BUILD_METHOD
(
37
Cast, IntToFeltOp, WithType, MlirType feltType, MlirValue value
38
);
39
40
#ifdef __cplusplus
41
}
42
#endif
43
44
#endif
// LLZK_C_DIALECT_CAST_H
Ops.capi.h.inc
MLIR_DECLARE_CAPI_DIALECT_REGISTRATION
MLIR_DECLARE_CAPI_DIALECT_REGISTRATION(Cast, llzk__cast)
Get reference to the LLZK cast dialect.
Support.h
LLZK_DECLARE_SUFFIX_OP_BUILD_METHOD
#define LLZK_DECLARE_SUFFIX_OP_BUILD_METHOD(dialect, op, suffix,...)
Definition
Support.h:33
include
llzk-c
Dialect
Cast.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.