CIRCT  19.0.0git
InteropDialect.cpp
Go to the documentation of this file.
1 //===- InteropDialect.cpp - Implement the Interop 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 Interop dialect.
10 //
11 //===----------------------------------------------------------------------===//
12 
14 
15 using namespace circt;
16 using namespace circt::interop;
17 
18 //===----------------------------------------------------------------------===//
19 // Dialect specification.
20 //===----------------------------------------------------------------------===//
21 
22 void InteropDialect::initialize() {
23  // Register operations.
24  addOperations<
25 #define GET_OP_LIST
26 #include "circt/Dialect/Interop/Interop.cpp.inc"
27  >();
28 }
29 
30 #include "circt/Dialect/Interop/InteropDialect.cpp.inc"
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Definition: DebugAnalysis.h:21