Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 1 | //===- CGSCCPassManager.cpp - Managing & running CGSCC passes -------------===// |
| 2 | // |
| 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 | |
| 10 | #include "llvm/Analysis/CGSCCPassManager.h" |
| 11 | #include "llvm/Support/CommandLine.h" |
| 12 | #include "llvm/Support/Debug.h" |
| 13 | |
| 14 | using namespace llvm; |
| 15 | |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 16 | // Explicit instantiations for the core proxy templates. |
| 17 | namespace llvm { |
Chandler Carruth | afcec4c | 2016-02-27 10:45:35 +0000 | [diff] [blame] | 18 | template class PassManager<LazyCallGraph::SCC>; |
| 19 | template class AnalysisManager<LazyCallGraph::SCC>; |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 20 | template class InnerAnalysisManagerProxy<CGSCCAnalysisManager, Module>; |
NAKAMURA Takumi | df0cd72 | 2016-02-28 17:17:00 +0000 | [diff] [blame^] | 21 | template class AnalysisBase<CGSCCAnalysisManagerModuleProxy>; |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 22 | template class OuterAnalysisManagerProxy<ModuleAnalysisManager, |
| 23 | LazyCallGraph::SCC>; |
NAKAMURA Takumi | df0cd72 | 2016-02-28 17:17:00 +0000 | [diff] [blame^] | 24 | template class AnalysisBase<ModuleAnalysisManagerCGSCCProxy>; |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 25 | template class InnerAnalysisManagerProxy<FunctionAnalysisManager, |
| 26 | LazyCallGraph::SCC>; |
NAKAMURA Takumi | df0cd72 | 2016-02-28 17:17:00 +0000 | [diff] [blame^] | 27 | template class AnalysisBase<FunctionAnalysisManagerCGSCCProxy>; |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 28 | template class OuterAnalysisManagerProxy<CGSCCAnalysisManager, Function>; |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 29 | } |