]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - lib/IR/Pass.cpp
Revert "Revert "Revert "PR20038: DebugInfo: Inlined call sites where the caller has...
[opencl/llvm.git] / lib / IR / Pass.cpp
1 //===- Pass.cpp - LLVM Pass Infrastructure Implementation -----------------===//
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 // This file implements the LLVM Pass infrastructure.  It is primarily
11 // responsible with ensuring that passes are executed and batched together
12 // optimally.
13 //
14 //===----------------------------------------------------------------------===//
16 #include "llvm/Pass.h"
17 #include "llvm/IR/Function.h"
18 #include "llvm/IR/IRPrintingPasses.h"
19 #include "llvm/IR/LegacyPassNameParser.h"
20 #include "llvm/PassRegistry.h"
21 #include "llvm/Support/Debug.h"
22 #include "llvm/Support/raw_ostream.h"
23 using namespace llvm;
25 #define DEBUG_TYPE "ir"
27 //===----------------------------------------------------------------------===//
28 // Pass Implementation
29 //
31 // Force out-of-line virtual method.
32 Pass::~Pass() {
33   delete Resolver;
34 }
36 // Force out-of-line virtual method.
37 ModulePass::~ModulePass() { }
39 Pass *ModulePass::createPrinterPass(raw_ostream &O,
40                                     const std::string &Banner) const {
41   return createPrintModulePass(O, Banner);
42 }
44 PassManagerType ModulePass::getPotentialPassManagerType() const {
45   return PMT_ModulePassManager;
46 }
48 bool Pass::mustPreserveAnalysisID(char &AID) const {
49   return Resolver->getAnalysisIfAvailable(&AID, true) != nullptr;
50 }
52 // dumpPassStructure - Implement the -debug-pass=Structure option
53 void Pass::dumpPassStructure(unsigned Offset) {
54   dbgs().indent(Offset*2) << getPassName() << "\n";
55 }
57 /// getPassName - Return a nice clean name for a pass.  This usually
58 /// implemented in terms of the name that is registered by one of the
59 /// Registration templates, but can be overloaded directly.
60 ///
61 const char *Pass::getPassName() const {
62   AnalysisID AID =  getPassID();
63   const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(AID);
64   if (PI)
65     return PI->getPassName();
66   return "Unnamed pass: implement Pass::getPassName()";
67 }
69 void Pass::preparePassManager(PMStack &) {
70   // By default, don't do anything.
71 }
73 PassManagerType Pass::getPotentialPassManagerType() const {
74   // Default implementation.
75   return PMT_Unknown;
76 }
78 void Pass::getAnalysisUsage(AnalysisUsage &) const {
79   // By default, no analysis results are used, all are invalidated.
80 }
82 void Pass::releaseMemory() {
83   // By default, don't do anything.
84 }
86 void Pass::verifyAnalysis() const {
87   // By default, don't do anything.
88 }
90 void *Pass::getAdjustedAnalysisPointer(AnalysisID AID) {
91   return this;
92 }
94 ImmutablePass *Pass::getAsImmutablePass() {
95   return nullptr;
96 }
98 PMDataManager *Pass::getAsPMDataManager() {
99   return nullptr;
102 void Pass::setResolver(AnalysisResolver *AR) {
103   assert(!Resolver && "Resolver is already set");
104   Resolver = AR;
107 // print - Print out the internal state of the pass.  This is called by Analyze
108 // to print out the contents of an analysis.  Otherwise it is not necessary to
109 // implement this method.
110 //
111 void Pass::print(raw_ostream &O,const Module*) const {
112   O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n";
115 // dump - call print(cerr);
116 void Pass::dump() const {
117   print(dbgs(), nullptr);
120 //===----------------------------------------------------------------------===//
121 // ImmutablePass Implementation
122 //
123 // Force out-of-line virtual method.
124 ImmutablePass::~ImmutablePass() { }
126 void ImmutablePass::initializePass() {
127   // By default, don't do anything.
130 //===----------------------------------------------------------------------===//
131 // FunctionPass Implementation
132 //
134 Pass *FunctionPass::createPrinterPass(raw_ostream &O,
135                                       const std::string &Banner) const {
136   return createPrintFunctionPass(O, Banner);
139 PassManagerType FunctionPass::getPotentialPassManagerType() const {
140   return PMT_FunctionPassManager;
143 bool FunctionPass::skipOptnoneFunction(const Function &F) const {
144   if (F.hasFnAttribute(Attribute::OptimizeNone)) {
145     DEBUG(dbgs() << "Skipping pass '" << getPassName()
146           << "' on function " << F.getName() << "\n");
147     return true;
148   }
149   return false;
152 //===----------------------------------------------------------------------===//
153 // BasicBlockPass Implementation
154 //
156 Pass *BasicBlockPass::createPrinterPass(raw_ostream &O,
157                                         const std::string &Banner) const {
158   return createPrintBasicBlockPass(O, Banner);
161 bool BasicBlockPass::doInitialization(Function &) {
162   // By default, don't do anything.
163   return false;
166 bool BasicBlockPass::doFinalization(Function &) {
167   // By default, don't do anything.
168   return false;
171 bool BasicBlockPass::skipOptnoneFunction(const BasicBlock &BB) const {
172   const Function *F = BB.getParent();
173   if (F && F->hasFnAttribute(Attribute::OptimizeNone)) {
174     // Report this only once per function.
175     if (&BB == &F->getEntryBlock())
176       DEBUG(dbgs() << "Skipping pass '" << getPassName()
177             << "' on function " << F->getName() << "\n");
178     return true;
179   }
180   return false;
183 PassManagerType BasicBlockPass::getPotentialPassManagerType() const {
184   return PMT_BasicBlockPassManager;
187 const PassInfo *Pass::lookupPassInfo(const void *TI) {
188   return PassRegistry::getPassRegistry()->getPassInfo(TI);
191 const PassInfo *Pass::lookupPassInfo(StringRef Arg) {
192   return PassRegistry::getPassRegistry()->getPassInfo(Arg);
195 Pass *Pass::createPass(AnalysisID ID) {
196   const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(ID);
197   if (!PI)
198     return nullptr;
199   return PI->createPass();
202 //===----------------------------------------------------------------------===//
203 //                  Analysis Group Implementation Code
204 //===----------------------------------------------------------------------===//
206 // RegisterAGBase implementation
207 //
208 RegisterAGBase::RegisterAGBase(const char *Name, const void *InterfaceID,
209                                const void *PassID, bool isDefault)
210     : PassInfo(Name, InterfaceID) {
211   PassRegistry::getPassRegistry()->registerAnalysisGroup(InterfaceID, PassID,
212                                                          *this, isDefault);
215 //===----------------------------------------------------------------------===//
216 // PassRegistrationListener implementation
217 //
219 // enumeratePasses - Iterate over the registered passes, calling the
220 // passEnumerate callback on each PassInfo object.
221 //
222 void PassRegistrationListener::enumeratePasses() {
223   PassRegistry::getPassRegistry()->enumerateWith(this);
226 PassNameParser::PassNameParser()
227     : Opt(nullptr) {
228   PassRegistry::getPassRegistry()->addRegistrationListener(this);
231 PassNameParser::~PassNameParser() {
232   // This only gets called during static destruction, in which case the
233   // PassRegistry will have already been destroyed by llvm_shutdown().  So
234   // attempting to remove the registration listener is an error.
237 //===----------------------------------------------------------------------===//
238 //   AnalysisUsage Class Implementation
239 //
241 namespace {
242   struct GetCFGOnlyPasses : public PassRegistrationListener {
243     typedef AnalysisUsage::VectorType VectorType;
244     VectorType &CFGOnlyList;
245     GetCFGOnlyPasses(VectorType &L) : CFGOnlyList(L) {}
247     void passEnumerate(const PassInfo *P) override {
248       if (P->isCFGOnlyPass())
249         CFGOnlyList.push_back(P->getTypeInfo());
250     }
251   };
254 // setPreservesCFG - This function should be called to by the pass, iff they do
255 // not:
256 //
257 //  1. Add or remove basic blocks from the function
258 //  2. Modify terminator instructions in any way.
259 //
260 // This function annotates the AnalysisUsage info object to say that analyses
261 // that only depend on the CFG are preserved by this pass.
262 //
263 void AnalysisUsage::setPreservesCFG() {
264   // Since this transformation doesn't modify the CFG, it preserves all analyses
265   // that only depend on the CFG (like dominators, loop info, etc...)
266   GetCFGOnlyPasses(Preserved).enumeratePasses();
269 AnalysisUsage &AnalysisUsage::addPreserved(StringRef Arg) {
270   const PassInfo *PI = Pass::lookupPassInfo(Arg);
271   // If the pass exists, preserve it. Otherwise silently do nothing.
272   if (PI) Preserved.push_back(PI->getTypeInfo());
273   return *this;
276 AnalysisUsage &AnalysisUsage::addRequiredID(const void *ID) {
277   Required.push_back(ID);
278   return *this;
281 AnalysisUsage &AnalysisUsage::addRequiredID(char &ID) {
282   Required.push_back(&ID);
283   return *this;
286 AnalysisUsage &AnalysisUsage::addRequiredTransitiveID(char &ID) {
287   Required.push_back(&ID);
288   RequiredTransitive.push_back(&ID);
289   return *this;