LLVM API Documentation

Public Member Functions
llvm::legacy::PassManagerBase Class Reference

#include <LegacyPassManager.h>

Inheritance diagram for llvm::legacy::PassManagerBase:
Inheritance graph
[legend]

List of all members.

Public Member Functions

virtual ~PassManagerBase ()
virtual void add (Pass *P)=0

Detailed Description

PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having to hard-code what kind of pass manager it is.

Definition at line 36 of file LegacyPassManager.h.


Constructor & Destructor Documentation

Definition at line 1940 of file LegacyPassManager.cpp.


Member Function Documentation

virtual void llvm::legacy::PassManagerBase::add ( Pass P) [pure virtual]

add - Add a pass to the queue of passes to run. This passes ownership of the Pass to the PassManager. When the PassManager is destroyed, the pass will be destroyed as well, so there is no need to delete the pass. This implies that all passes MUST be allocated with 'new'.

Implemented in llvm::legacy::FunctionPassManager, and llvm::legacy::PassManager.


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