blob: 9d5b4cb0516998fa5d4df90078db4f8a1736fc3a [file] [log] [blame]
Hans Wennborgf88287f2014-03-19 18:41:38 +00001//===- PassManager.cpp - Infrastructure for managing & running IR passes --===//
Chandler Carruth74015a72013-11-13 01:12:08 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Chandler Carruth74015a72013-11-13 01:12:08 +000010#include "llvm/ADT/STLExtras.h"
Juergen Ributzka34390c72014-05-16 02:33:15 +000011#include "llvm/IR/LLVMContext.h"
Chandler Carrutha13f27c2014-01-11 11:52:05 +000012#include "llvm/IR/PassManager.h"
Chandler Carruth74015a72013-11-13 01:12:08 +000013
14using namespace llvm;
Chandler Carrutha13f27c2014-01-11 11:52:05 +000015
Chandler Carruth2a540942016-02-27 10:38:10 +000016// Explicit template instantiations for core template typedefs.
17namespace llvm {
Chandler Carruthafcec4c2016-02-27 10:45:35 +000018template class PassManager<Module>;
19template class PassManager<Function>;
20template class AnalysisManager<Module>;
21template class AnalysisManager<Function>;
Chandler Carruth2a540942016-02-27 10:38:10 +000022template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;
23template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
Chandler Carruth851a2aa2013-11-21 02:11:31 +000024}