mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-27 18:28:14 +00:00
806e9fff60
This ensures that the polly passes get properly registered both, when using polly as a loadable module and when directly linking it into clang/opt/bugpoint. llvm-svn: 204255
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
//===---------- Polly.cpp - Initialize the Polly Module -------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "polly/RegisterPasses.h"
|
|
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
|
|
|
|
namespace {
|
|
|
|
/// @brief Initialize Polly passes when library is loaded.
|
|
///
|
|
/// We use the constructor of a statically declared object to initialize the
|
|
/// different Polly passes right after the Polly library is loaded. This ensures
|
|
/// that the Polly passes are available e.g. in the 'opt' tool.
|
|
class StaticInitializer {
|
|
public:
|
|
StaticInitializer() {
|
|
llvm::PassRegistry &Registry = *llvm::PassRegistry::getPassRegistry();
|
|
polly::initializePollyPasses(Registry);
|
|
}
|
|
};
|
|
static StaticInitializer InitializeEverything;
|
|
} // end of anonymous namespace.
|