LLVM API Documentation

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

llvm::CallGraphSCCPass Struct Reference

#include <CallGraphSCCPass.h>

Inheritance diagram for llvm::CallGraphSCCPass:

Inheritance graph
[legend]
Collaboration diagram for llvm::CallGraphSCCPass:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 CallGraphSCCPass (intptr_t pid)
virtual bool doInitialization (CallGraph &CG)
virtual bool runOnSCC (const std::vector< CallGraphNode * > &SCC)=0
virtual bool doFinalization (CallGraph &CG)
virtual void assignPassManager (PMStack &PMS, PassManagerType PMT=PMT_CallGraphPassManager)
 Assign pass manager to manager this pass.
virtual PassManagerType getPotentialPassManagerType () const
 Return what kind of Pass Manager can manage this pass.
virtual void getAnalysisUsage (AnalysisUsage &Info) const

Constructor & Destructor Documentation

llvm::CallGraphSCCPass::CallGraphSCCPass intptr_t  pid  )  [inline, explicit]
 

Definition at line 34 of file CallGraphSCCPass.h.


Member Function Documentation

void CallGraphSCCPass::assignPassManager PMStack PMS,
PassManagerType  PMT = PMT_CallGraphPassManager
[virtual]
 

Assign pass manager to manager this pass.

Reimplemented from llvm::Pass.

Definition at line 156 of file CallGraphSCCPass.cpp.

References llvm::PMDataManager::add(), llvm::PMTopLevelManager::addIndirectPassManager(), llvm::PMStack::empty(), llvm::PMDataManager::getDepth(), llvm::PMDataManager::getPassManagerType(), llvm::PMDataManager::getTopLevelManager(), llvm::PMStack::pop(), llvm::PMStack::push(), llvm::PMTopLevelManager::schedulePass(), and llvm::PMStack::top().

virtual bool llvm::CallGraphSCCPass::doFinalization CallGraph CG  )  [inline, virtual]
 

doFinalization - This method is called after the SCC's of the program has been processed, allowing the pass to do final cleanup as necessary.

Reimplemented in llvm::Inliner.

Definition at line 51 of file CallGraphSCCPass.h.

Referenced by CGPassManager::doFinalization().

virtual bool llvm::CallGraphSCCPass::doInitialization CallGraph CG  )  [inline, virtual]
 

doInitialization - This method is called before the SCC's of the program has been processed, allowing the pass to do initialization as necessary.

Reimplemented in SimpleInliner.

Definition at line 38 of file CallGraphSCCPass.h.

Referenced by CGPassManager::doInitialization().

void CallGraphSCCPass::getAnalysisUsage AnalysisUsage Info  )  const [virtual]
 

getAnalysisUsage - For this class, we declare that we require and preserve the call graph. If the derived class implements this method, it should always explicitly call the implementation here.

Reimplemented from llvm::Pass.

Reimplemented in llvm::Inliner, ArgPromotion, and SRETPromotion.

Definition at line 194 of file CallGraphSCCPass.cpp.

References llvm::AnalysisUsage::addPreserved(), and llvm::AnalysisUsage::addRequired().

Referenced by llvm::Inliner::getAnalysisUsage().

virtual PassManagerType llvm::CallGraphSCCPass::getPotentialPassManagerType  )  const [inline, virtual]
 

Return what kind of Pass Manager can manage this pass.

Reimplemented from llvm::Pass.

Definition at line 60 of file CallGraphSCCPass.h.

References llvm::PassManagerType.

virtual bool llvm::CallGraphSCCPass::runOnSCC const std::vector< CallGraphNode * > &  SCC  )  [pure virtual]
 

runOnSCC - This method should be implemented by the subclass to perform whatever action is necessary for the specified SCC. Note that non-recursive (or only self-recursive) functions will have an SCC size of 1, where recursive portions of the call graph will have SCC size > 1.

Implemented in llvm::Inliner, ArgPromotion, PruneEH, and SRETPromotion.

Referenced by CGPassManager::runOnModule().


The documentation for this struct was generated from the following files:


This web site is hosted by the Computer Science Department at the University of Illinois at Urbana-Champaign.