CIRCT  18.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 
38 
39 namespace circt {
40 
41 inline void registerAllPasses() {
42  // Conversion Passes
43  registerConversionPasses();
44 
45  // Transformation passes
46  registerTransformsPasses();
47 
48  // Standard Passes
67 }
68 
69 } // namespace circt
70 
71 #endif // CIRCT_INITALLPASSES_H_
static void registerPasses()
Definition: CIRCTModule.cpp:37
void registerESIPasses()
Definition: ESIPasses.cpp:228
void initLLHDTransformationPasses()
Register the LLHD Transformation passes.
This file defines an intermediate representation for circuits acting as an abstraction for constraint...
void registerAllPasses()
Definition: InitAllPasses.h:41