LLVM API Documentation

Classes | Public Member Functions | Public Attributes | Static Public Attributes
llvm::MachineDominatorTree Class Reference

#include <MachineDominators.h>

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

List of all members.

Classes

struct  CriticalEdge
 Helper structure used to hold all the basic blocks involved in the split of a critical edge.

Public Member Functions

 MachineDominatorTree ()
 ~MachineDominatorTree ()
DominatorTreeBase
< MachineBasicBlock > & 
getBase ()
void getAnalysisUsage (AnalysisUsage &AU) const override
const std::vector
< MachineBasicBlock * > & 
getRoots () const
MachineBasicBlockgetRoot () const
MachineDomTreeNodegetRootNode () const
bool runOnMachineFunction (MachineFunction &F) override
bool dominates (const MachineDomTreeNode *A, const MachineDomTreeNode *B) const
bool dominates (const MachineBasicBlock *A, const MachineBasicBlock *B) const
bool dominates (const MachineInstr *A, const MachineInstr *B) const
bool properlyDominates (const MachineDomTreeNode *A, const MachineDomTreeNode *B) const
bool properlyDominates (const MachineBasicBlock *A, const MachineBasicBlock *B) const
MachineBasicBlockfindNearestCommonDominator (MachineBasicBlock *A, MachineBasicBlock *B)
MachineDomTreeNodeoperator[] (MachineBasicBlock *BB) const
MachineDomTreeNodegetNode (MachineBasicBlock *BB) const
MachineDomTreeNodeaddNewBlock (MachineBasicBlock *BB, MachineBasicBlock *DomBB)
void changeImmediateDominator (MachineBasicBlock *N, MachineBasicBlock *NewIDom)
void changeImmediateDominator (MachineDomTreeNode *N, MachineDomTreeNode *NewIDom)
void eraseNode (MachineBasicBlock *BB)
void splitBlock (MachineBasicBlock *NewBB)
bool isReachableFromEntry (const MachineBasicBlock *A)
void releaseMemory () override
void print (raw_ostream &OS, const Module *) const override
void recordSplitCriticalEdge (MachineBasicBlock *FromBB, MachineBasicBlock *ToBB, MachineBasicBlock *NewBB)
 Record that the critical edge (FromBB, ToBB) has been split with NewBB. This is best to use this method instead of directly update the underlying information, because this helps mitigating the number of time the DT information is invalidated.

Public Attributes

DominatorTreeBase
< MachineBasicBlock > * 
DT

Static Public Attributes

static char ID = 0

Detailed Description

DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.

Definition at line 41 of file MachineDominators.h.


Constructor & Destructor Documentation

Definition at line 51 of file MachineDominators.cpp.

References DT.


Member Function Documentation

addNewBlock - Add a new node to the dominator tree information. This creates a new node as a child of DomBB dominator node,linking it into the children list of the immediate dominator.

Definition at line 244 of file MachineDominators.h.

changeImmediateDominator - This method is used to update the dominator tree information when a node's immediate dominator changes.

Definition at line 253 of file MachineDominators.h.

Definition at line 259 of file MachineDominators.h.

Definition at line 175 of file MachineDominators.h.

Referenced by computeADRP(), and isCandidate().

Definition at line 181 of file MachineDominators.h.

eraseNode - Removes a node from the dominator tree. Block must not dominate any other blocks. Removes node from its immediate dominator's children list. Deletes dominator node associated with basic block BB.

Definition at line 268 of file MachineDominators.h.

findNearestCommonDominator - Find nearest common dominator basic block for basic block A and B. If there is no such block then return NULL.

Definition at line 222 of file MachineDominators.h.

void llvm::MachineDominatorTree::getAnalysisUsage ( AnalysisUsage AU) const [override, virtual]

getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.

For MachineFunctionPasses, calling AU.preservesCFG() indicates that the pass does not modify the MachineBasicBlock CFG.

Reimplemented from llvm::MachineFunctionPass.

Definition at line 147 of file MachineDominators.h.

getNode - return the (Post)DominatorTree node for the specified basic block. This is the same as using operator[] on this class.

Definition at line 236 of file MachineDominators.h.

Definition at line 163 of file MachineDominators.h.

getRoots - Return the root blocks of the current CFG. This may include multiple blocks if we are computing post dominators. For forward dominators, this will always be a single block (the entry node).

Definition at line 158 of file MachineDominators.h.

isReachableFromEntry - Return true if A is dominated by the entry block of the function containing it.

Definition at line 282 of file MachineDominators.h.

MachineDomTreeNode* llvm::MachineDominatorTree::operator[] ( MachineBasicBlock BB) const [inline]

Definition at line 228 of file MachineDominators.h.

void MachineDominatorTree::print ( raw_ostream O,
const Module M 
) const [override, virtual]

print - Print out the internal state of the pass. This is called by Analyze to print out the contents of an analysis. Otherwise it is not necessary to implement this method. Beware that the module pointer MAY be null. This automatically forwards to a virtual function that does not provide the Module* in case the analysis doesn't need it it can just be ignored.

Reimplemented from llvm::Pass.

Definition at line 59 of file MachineDominators.cpp.

References DT, and llvm::DominatorTreeBase< NodeT >::print().

Definition at line 208 of file MachineDominators.h.

Definition at line 214 of file MachineDominators.h.

Record that the critical edge (FromBB, ToBB) has been split with NewBB. This is best to use this method instead of directly update the underlying information, because this helps mitigating the number of time the DT information is invalidated.

Note:
Do not use this method with regular edges.
To benefit from the compile time improvement incurred by this method, the users of this method have to limit the queries to the DT interface between two edges splitting. In other words, they have to pack the splitting of critical edges as much as possible.

Definition at line 303 of file MachineDominators.h.

void MachineDominatorTree::releaseMemory ( ) [override, virtual]

releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memory when it is no longer needed. The default behavior of passes is to hold onto memory for the entire duration of their lifetime (which is the entire compile time). For pipelined passes, this is not a big deal because that memory gets recycled every time the pass is invoked on another program unit. For IP passes, it is more important to free memory when it is unused.

Optionally implement this function to release pass memory when it is no longer used.

Reimplemented from llvm::Pass.

Definition at line 55 of file MachineDominators.cpp.

References DT, and llvm::DominatorTreeBase< NodeT >::releaseMemory().

runOnMachineFunction - This method must be overloaded to perform the desired machine code transformation or analysis.

Implements llvm::MachineFunctionPass.

Definition at line 37 of file MachineDominators.cpp.

References llvm::SmallSet< T, N, C >::clear(), llvm::SmallVectorImpl< T >::clear(), DT, and llvm::DominatorTreeBase< NodeT >::recalculate().

splitBlock - BB is split and now it has one successor. Update dominator tree to reflect this change.

Definition at line 275 of file MachineDominators.h.


Member Data Documentation

char MachineDominatorTree::ID = 0 [static]

Definition at line 140 of file MachineDominators.h.


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