CIRCT  19.0.0git
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 
39 
40 namespace circt {
41 
42 inline void registerAllPasses() {
43  // Conversion Passes
44  registerConversionPasses();
45 
46  // Transformation passes
47  registerTransformsPasses();
48 
49  // LEC transformation passes
50  registerLECTransformsPasses();
51 
52  // Standard Passes
71 }
72 
73 } // namespace circt
74 
75 #endif // CIRCT_INITALLPASSES_H_
static void registerPasses()
Definition: CIRCTModule.cpp:39
void registerESIPasses()
Definition: ESIPasses.cpp:264
void initLLHDTransformationPasses()
Register the LLHD Transformation passes.
This file defines an intermediate representation for circuits acting as an abstraction for constraint...
Definition: DebugAnalysis.h:21
void registerAllPasses()
Definition: InitAllPasses.h:42