blob: 171805f7d24cd9a08618b7e4dad43585621f5d9e [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 Carruth74a8a222016-06-17 07:15:29 +000010#include "llvm/IR/PassManager.h"
Chandler Carruth74015a72013-11-13 01:12:08 +000011#include "llvm/ADT/STLExtras.h"
Juergen Ributzka34390c72014-05-16 02:33:15 +000012#include "llvm/IR/LLVMContext.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 Carruth8abdf752016-08-20 04:57:28 +000018template class AllAnalysesOn<Module>;
19template class AllAnalysesOn<Function>;
Chandler Carruthafcec4c2016-02-27 10:45:35 +000020template class PassManager<Module>;
21template class PassManager<Function>;
22template class AnalysisManager<Module>;
23template class AnalysisManager<Function>;
Chandler Carruth2a540942016-02-27 10:38:10 +000024template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;
25template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
Chandler Carruth851a2aa2013-11-21 02:11:31 +000026}
Chandler Carruthdab4eae2016-11-23 17:53:26 +000027
28AnalysisKey PreservedAnalyses::AllAnalysesKey;