Pass.cpp revision dce4a407a24b04eebc6a376f8e62b41aaa7b071f
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//===----------------------------------------------------------------------===//
15
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"
23using namespace llvm;
24
25#define DEBUG_TYPE "ir"
26
27//===----------------------------------------------------------------------===//
28// Pass Implementation
29//
30
31// Force out-of-line virtual method.
32Pass::~Pass() {
33  delete Resolver;
34}
35
36// Force out-of-line virtual method.
37ModulePass::~ModulePass() { }
38
39Pass *ModulePass::createPrinterPass(raw_ostream &O,
40                                    const std::string &Banner) const {
41  return createPrintModulePass(O, Banner);
42}
43
44PassManagerType ModulePass::getPotentialPassManagerType() const {
45  return PMT_ModulePassManager;
46}
47
48bool Pass::mustPreserveAnalysisID(char &AID) const {
49  return Resolver->getAnalysisIfAvailable(&AID, true) != nullptr;
50}
51
52// dumpPassStructure - Implement the -debug-pass=Structure option
53void Pass::dumpPassStructure(unsigned Offset) {
54  dbgs().indent(Offset*2) << getPassName() << "\n";
55}
56
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///
61const 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}
68
69void Pass::preparePassManager(PMStack &) {
70  // By default, don't do anything.
71}
72
73PassManagerType Pass::getPotentialPassManagerType() const {
74  // Default implementation.
75  return PMT_Unknown;
76}
77
78void Pass::getAnalysisUsage(AnalysisUsage &) const {
79  // By default, no analysis results are used, all are invalidated.
80}
81
82void Pass::releaseMemory() {
83  // By default, don't do anything.
84}
85
86void Pass::verifyAnalysis() const {
87  // By default, don't do anything.
88}
89
90void *Pass::getAdjustedAnalysisPointer(AnalysisID AID) {
91  return this;
92}
93
94ImmutablePass *Pass::getAsImmutablePass() {
95  return nullptr;
96}
97
98PMDataManager *Pass::getAsPMDataManager() {
99  return nullptr;
100}
101
102void Pass::setResolver(AnalysisResolver *AR) {
103  assert(!Resolver && "Resolver is already set");
104  Resolver = AR;
105}
106
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//
111void Pass::print(raw_ostream &O,const Module*) const {
112  O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n";
113}
114
115// dump - call print(cerr);
116void Pass::dump() const {
117  print(dbgs(), nullptr);
118}
119
120//===----------------------------------------------------------------------===//
121// ImmutablePass Implementation
122//
123// Force out-of-line virtual method.
124ImmutablePass::~ImmutablePass() { }
125
126void ImmutablePass::initializePass() {
127  // By default, don't do anything.
128}
129
130//===----------------------------------------------------------------------===//
131// FunctionPass Implementation
132//
133
134Pass *FunctionPass::createPrinterPass(raw_ostream &O,
135                                      const std::string &Banner) const {
136  return createPrintFunctionPass(O, Banner);
137}
138
139PassManagerType FunctionPass::getPotentialPassManagerType() const {
140  return PMT_FunctionPassManager;
141}
142
143bool 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;
150}
151
152//===----------------------------------------------------------------------===//
153// BasicBlockPass Implementation
154//
155
156Pass *BasicBlockPass::createPrinterPass(raw_ostream &O,
157                                        const std::string &Banner) const {
158  return createPrintBasicBlockPass(O, Banner);
159}
160
161bool BasicBlockPass::doInitialization(Function &) {
162  // By default, don't do anything.
163  return false;
164}
165
166bool BasicBlockPass::doFinalization(Function &) {
167  // By default, don't do anything.
168  return false;
169}
170
171bool 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;
181}
182
183PassManagerType BasicBlockPass::getPotentialPassManagerType() const {
184  return PMT_BasicBlockPassManager;
185}
186
187const PassInfo *Pass::lookupPassInfo(const void *TI) {
188  return PassRegistry::getPassRegistry()->getPassInfo(TI);
189}
190
191const PassInfo *Pass::lookupPassInfo(StringRef Arg) {
192  return PassRegistry::getPassRegistry()->getPassInfo(Arg);
193}
194
195Pass *Pass::createPass(AnalysisID ID) {
196  const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(ID);
197  if (!PI)
198    return nullptr;
199  return PI->createPass();
200}
201
202Pass *PassInfo::createPass() const {
203  assert((!isAnalysisGroup() || NormalCtor) &&
204         "No default implementation found for analysis group!");
205  assert(NormalCtor &&
206         "Cannot call createPass on PassInfo without default ctor!");
207  return NormalCtor();
208}
209
210//===----------------------------------------------------------------------===//
211//                  Analysis Group Implementation Code
212//===----------------------------------------------------------------------===//
213
214// RegisterAGBase implementation
215//
216RegisterAGBase::RegisterAGBase(const char *Name, const void *InterfaceID,
217                               const void *PassID, bool isDefault)
218    : PassInfo(Name, InterfaceID) {
219  PassRegistry::getPassRegistry()->registerAnalysisGroup(InterfaceID, PassID,
220                                                         *this, isDefault);
221}
222
223//===----------------------------------------------------------------------===//
224// PassRegistrationListener implementation
225//
226
227// PassRegistrationListener ctor - Add the current object to the list of
228// PassRegistrationListeners...
229PassRegistrationListener::PassRegistrationListener() {
230  PassRegistry::getPassRegistry()->addRegistrationListener(this);
231}
232
233// dtor - Remove object from list of listeners...
234PassRegistrationListener::~PassRegistrationListener() {
235  PassRegistry::getPassRegistry()->removeRegistrationListener(this);
236}
237
238// enumeratePasses - Iterate over the registered passes, calling the
239// passEnumerate callback on each PassInfo object.
240//
241void PassRegistrationListener::enumeratePasses() {
242  PassRegistry::getPassRegistry()->enumerateWith(this);
243}
244
245PassNameParser::~PassNameParser() {}
246
247//===----------------------------------------------------------------------===//
248//   AnalysisUsage Class Implementation
249//
250
251namespace {
252  struct GetCFGOnlyPasses : public PassRegistrationListener {
253    typedef AnalysisUsage::VectorType VectorType;
254    VectorType &CFGOnlyList;
255    GetCFGOnlyPasses(VectorType &L) : CFGOnlyList(L) {}
256
257    void passEnumerate(const PassInfo *P) override {
258      if (P->isCFGOnlyPass())
259        CFGOnlyList.push_back(P->getTypeInfo());
260    }
261  };
262}
263
264// setPreservesCFG - This function should be called to by the pass, iff they do
265// not:
266//
267//  1. Add or remove basic blocks from the function
268//  2. Modify terminator instructions in any way.
269//
270// This function annotates the AnalysisUsage info object to say that analyses
271// that only depend on the CFG are preserved by this pass.
272//
273void AnalysisUsage::setPreservesCFG() {
274  // Since this transformation doesn't modify the CFG, it preserves all analyses
275  // that only depend on the CFG (like dominators, loop info, etc...)
276  GetCFGOnlyPasses(Preserved).enumeratePasses();
277}
278
279AnalysisUsage &AnalysisUsage::addPreserved(StringRef Arg) {
280  const PassInfo *PI = Pass::lookupPassInfo(Arg);
281  // If the pass exists, preserve it. Otherwise silently do nothing.
282  if (PI) Preserved.push_back(PI->getTypeInfo());
283  return *this;
284}
285
286AnalysisUsage &AnalysisUsage::addRequiredID(const void *ID) {
287  Required.push_back(ID);
288  return *this;
289}
290
291AnalysisUsage &AnalysisUsage::addRequiredID(char &ID) {
292  Required.push_back(&ID);
293  return *this;
294}
295
296AnalysisUsage &AnalysisUsage::addRequiredTransitiveID(char &ID) {
297  Required.push_back(&ID);
298  RequiredTransitive.push_back(&ID);
299  return *this;
300}
301