LLZK 2.1.1
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
Dialect.cpp
Go to the documentation of this file.
1//===-- Dialect.cpp - Verif dialect implementation --------------*- C++ -*-===//
2//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2026 Project LLZK
6// SPDX-License-Identifier: Apache-2.0
7//
8//===----------------------------------------------------------------------===//
9
11
14
15#include <mlir/IR/DialectImplementation.h>
16
17#include <llvm/ADT/TypeSwitch.h>
18
19// TableGen'd implementation files
21
22//===------------------------------------------------------------------===//
23// VerifDialect
24//===------------------------------------------------------------------===//
25
26auto llzk::verif::VerifDialect::initialize() -> void {
27 // clang-format off
28 addOperations<
29 #define GET_OP_LIST
31 >();
32 // clang-format on
33 addInterfaces<LLZKDialectBytecodeInterface<VerifDialect>>();
34}