Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:48:20

0001 //===------ polly/RegisterPasses.h - Register the Polly passes *- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 //
0009 // Functions to register the Polly passes in a LLVM pass manager.
0010 //
0011 //===----------------------------------------------------------------------===//
0012 
0013 #ifndef POLLY_REGISTER_PASSES_H
0014 #define POLLY_REGISTER_PASSES_H
0015 
0016 namespace llvm {
0017 class PassRegistry;
0018 class PassBuilder;
0019 struct PassPluginLibraryInfo;
0020 namespace legacy {
0021 class PassManagerBase;
0022 } // namespace legacy
0023 } // namespace llvm
0024 
0025 namespace polly {
0026 void initializePollyPasses(llvm::PassRegistry &Registry);
0027 void registerPollyPasses(llvm::PassBuilder &PB);
0028 } // namespace polly
0029 
0030 llvm::PassPluginLibraryInfo getPollyPluginInfo();
0031 
0032 #endif