CIRCT  19.0.0git
MooreDialect.cpp
Go to the documentation of this file.
1 //===- MooreDialect.cpp - Implement the Moore dialect ---------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the Moore dialect.
10 //
11 //===----------------------------------------------------------------------===//
12 
14 
15 using namespace circt;
16 using namespace circt::moore;
17 
18 //===----------------------------------------------------------------------===//
19 // Dialect specification.
20 //===----------------------------------------------------------------------===//
21 
22 void MooreDialect::initialize() {
23  // Register types.
24  registerTypes();
25 
26  // Register operations.
27  addOperations<
28 #define GET_OP_LIST
29 #include "circt/Dialect/Moore/Moore.cpp.inc"
30  >();
31 }
32 
33 #include "circt/Dialect/Moore/MooreDialect.cpp.inc"
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21