CIRCT 20.0.0git
Loading...
Searching...
No Matches
SSPDialect.cpp
Go to the documentation of this file.
1//===- SSPDialect.cpp - SSP dialect implementation ------------------------===//
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 SSP (static scheduling problem) dialect.
10//
11//===----------------------------------------------------------------------===//
12
15
16using namespace circt;
17using namespace circt::ssp;
18
19void SSPDialect::initialize() {
20 addOperations<
21#define GET_OP_LIST
22#include "circt/Dialect/SSP/SSP.cpp.inc"
23 >();
24 registerAttributes();
25}
26
27#include "circt/Dialect/SSP/SSPDialect.cpp.inc"
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.