CIRCT 20.0.0git
Loading...
Searching...
No Matches
SystemCAttributes.cpp
Go to the documentation of this file.
1//===- SystemCAttributes.cpp - SystemC attribute code defs ----------------===//
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// Implementation for SystemC attributes.
10//
11//===----------------------------------------------------------------------===//
12
15#include "mlir/IR/Builders.h"
16#include "mlir/IR/DialectImplementation.h"
17#include "llvm/ADT/TypeSwitch.h"
18
19using namespace circt::systemc;
20using namespace mlir;
21
22//===----------------------------------------------------------------------===//
23// Generated logic
24//===----------------------------------------------------------------------===//
25
26#define GET_ATTRDEF_CLASSES
27#include "circt/Dialect/SystemC/SystemCAttributes.cpp.inc"
28#include "circt/Dialect/SystemC/SystemCEnums.cpp.inc"
29
30void SystemCDialect::registerAttributes() {
31 addAttributes<
32#define GET_ATTRDEF_LIST
33#include "circt/Dialect/SystemC/SystemCAttributes.cpp.inc"
34 >();
35}