LLZK 2.0.0
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 - RAM 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 2025 Veridise Inc.
6// SPDX-License-Identifier: Apache-2.0
7//
8//===----------------------------------------------------------------------===//
9
11
14
15// TableGen'd implementation files
17
18//===------------------------------------------------------------------===//
19// RAMDialect
20//===------------------------------------------------------------------===//
21
22auto llzk::ram::RAMDialect::initialize() -> void {
23 // clang-format off
24 addOperations<
25 #define GET_OP_LIST
27 >();
28 // clang-format on
29 addInterfaces<LLZKDialectBytecodeInterface<RAMDialect>>();
30}