CIRCT 22.0.0git
Loading...
Searching...
No Matches
InitAllPasses.h
Go to the documentation of this file.
1//===- InitAllPasses.h - CIRCT Global Pass Registration ---------*- C++ -*-===//
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 defines a helper to trigger the registration of all passes to the
10// system.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CIRCT_INITALLPASSES_H_
15#define CIRCT_INITALLPASSES_H_
16
48
49namespace circt {
50
51inline void registerAllPasses() {
52 // Conversion Passes
53 registerCIRCTConversionPasses();
54
55 // Transformation passes
56 registerCIRCTTransformsPasses();
57
58 // LEC transformation passes
59 registerLECTransformsPasses();
60
61 // BMC transformation passes
62 registerBMCTransformsPasses();
63
64 // Standard Passes
65 arc::registerPasses();
66 calyx::registerPasses();
67 comb::registerPasses();
68 dc::registerPasses();
69 emit::registerPasses();
71 firrtl::registerPasses();
72 fsm::registerPasses();
73 handshake::registerPasses();
74 hw::registerPasses();
75 kanagawa::registerPasses();
76 llhd::registerPasses();
77 moore::registerPasses();
78 msft::registerPasses();
79 om::registerPasses();
80 pipeline::registerPasses();
81 rtg::registerRTGPasses();
82 seq::registerPasses();
83 sim::registerPasses();
84 ssp::registerPasses();
85 sv::registerPasses();
86 systemc::registerPasses();
87 verif::registerPasses();
88 synth::registerPasses();
89
90 // Register pass pipelines
92}
93
94} // namespace circt
95
96#endif // CIRCT_INITALLPASSES_H_
void registerESIPasses()
void registerPipelines()
Registers all pipelines for the rtg dialect.
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
void registerAllPasses()