LLVM
8.0.1
|
#include "llvm/Transforms/Utils/SSAUpdaterImpl.h"
Public Member Functions | |
SSAUpdaterImpl (UpdaterT *U, AvailableValsTy *A, SmallVectorImpl< PhiT *> *Ins) | |
ValT | GetValue (BlkT *BB) |
GetValue - Check to see if AvailableVals has an entry for the specified BB and if so, return it. More... | |
BBInfo * | BuildBlockList (BlkT *BB, BlockListTy *BlockList) |
BuildBlockList - Starting from the specified basic block, traverse back through its predecessors until reaching blocks with known values. More... | |
BBInfo * | IntersectDominators (BBInfo *Blk1, BBInfo *Blk2) |
IntersectDominators - This is the dataflow lattice "meet" operation for finding dominators. More... | |
void | FindDominators (BlockListTy *BlockList, BBInfo *PseudoEntry) |
FindDominators - Calculate the dominator tree for the subset of the CFG corresponding to the basic blocks on the BlockList. More... | |
bool | IsDefInDomFrontier (const BBInfo *Pred, const BBInfo *IDom) |
IsDefInDomFrontier - Search up the dominator tree from Pred to IDom for any blocks containing definitions of the value. More... | |
void | FindPHIPlacement (BlockListTy *BlockList) |
FindPHIPlacement - PHIs are needed in the iterated dominance frontiers of the known definitions. More... | |
void | FindAvailableVals (BlockListTy *BlockList) |
FindAvailableVal - If this block requires a PHI, first check if an existing PHI matches the PHI placement and reaching definitions computed earlier, and if not, create a new PHI. More... | |
void | FindExistingPHI (BlkT *BB, BlockListTy *BlockList) |
FindExistingPHI - Look through the PHI nodes in a block to see if any of them match what is needed. More... | |
bool | CheckIfPHIMatches (PhiT *PHI) |
CheckIfPHIMatches - Check if a PHI node matches the placement and values in the BBMap. More... | |
void | RecordMatchingPHIs (BlockListTy *BlockList) |
RecordMatchingPHIs - For each PHI node that matches, record it in both the BBMap and the AvailableVals mapping. More... | |
Definition at line 31 of file SSAUpdaterImpl.h.
|
inlineexplicit |
Definition at line 86 of file SSAUpdaterImpl.h.
|
inline |
BuildBlockList - Starting from the specified basic block, traverse back through its predecessors until reaching blocks with known values.
Create BBInfo structures for the blocks and append them to the block list.
Definition at line 116 of file SSAUpdaterImpl.h.
References llvm::BumpPtrAllocatorImpl< AllocatorT, SlabSize, SizeThreshold >::Allocate(), llvm::SmallVectorTemplateCommon< T >::back(), llvm::SmallVectorImpl< T >::clear(), E, llvm::SmallVectorBase::empty(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::FindAndConstruct(), Info, llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::lookup(), llvm::SmallVectorTemplateBase< T >::pop_back(), llvm::SmallVectorImpl< T >::pop_back_val(), llvm::SmallVectorTemplateBase< T >::push_back(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), SI, and llvm::SmallVectorBase::size().
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::GetValue().
|
inline |
CheckIfPHIMatches - Check if a PHI node matches the placement and values in the BBMap.
Definition at line 405 of file SSAUpdaterImpl.h.
References E, llvm::SmallVectorBase::empty(), I, llvm::SmallVectorImpl< T >::pop_back_val(), and llvm::SmallVectorTemplateBase< T >::push_back().
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::FindExistingPHI().
|
inline |
FindAvailableVal - If this block requires a PHI, first check if an existing PHI matches the PHI placement and reaching definitions computed earlier, and if not, create a new PHI.
Visit all the block's predecessors to calculate the available value for each one and fill in the incoming values for a new PHI.
Definition at line 332 of file SSAUpdaterImpl.h.
References llvm::SmallVectorTemplateCommon< T, typename >::begin(), llvm::dbgs(), E, llvm::SmallVectorTemplateCommon< T, typename >::end(), llvm::SSAUpdaterImpl< UpdaterT >::FindExistingPHI(), I, Info, LLVM_DEBUG, llvm::SmallVectorTemplateBase< T >::push_back(), llvm::SmallVectorTemplateCommon< T, typename >::rbegin(), and llvm::SmallVectorTemplateCommon< T, typename >::rend().
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::GetValue().
|
inline |
FindDominators - Calculate the dominator tree for the subset of the CFG corresponding to the basic blocks on the BlockList.
This uses the algorithm from: "A Simple, Fast Dominance Algorithm" by Cooper, Harvey and Kennedy, published in Software–Practice and Experience, 2001, 4:1-10. Because the CFG subset does not include any edges leading into blocks that define the value, the results are not the usual dominator tree. The CFG subset has a single pseudo-entry node with edges to a set of root nodes for blocks that define the value. The dominators for this subset CFG are not the standard dominators but they are adequate for placing PHIs within the subset CFG.
Definition at line 241 of file SSAUpdaterImpl.h.
References E, I, Info, llvm::SSAUpdaterImpl< UpdaterT >::IntersectDominators(), llvm::SmallVectorTemplateCommon< T, typename >::rbegin(), and llvm::SmallVectorTemplateCommon< T, typename >::rend().
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::GetValue().
|
inline |
FindExistingPHI - Look through the PHI nodes in a block to see if any of them match what is needed.
Definition at line 390 of file SSAUpdaterImpl.h.
References llvm::SmallVectorTemplateCommon< T, typename >::begin(), llvm::SSAUpdaterImpl< UpdaterT >::CheckIfPHIMatches(), E, llvm::SmallVectorTemplateCommon< T, typename >::end(), I, and llvm::SSAUpdaterImpl< UpdaterT >::RecordMatchingPHIs().
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::FindAvailableVals().
|
inline |
FindPHIPlacement - PHIs are needed in the iterated dominance frontiers of the known definitions.
Iteratively add PHIs in the dom frontiers until nothing changes. Along the way, keep track of the nearest dominating definitions for non-PHI blocks.
Definition at line 295 of file SSAUpdaterImpl.h.
References E, I, Info, llvm::SSAUpdaterImpl< UpdaterT >::IsDefInDomFrontier(), llvm::SmallVectorTemplateCommon< T, typename >::rbegin(), and llvm::SmallVectorTemplateCommon< T, typename >::rend().
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::GetValue().
|
inline |
GetValue - Check to see if AvailableVals has an entry for the specified BB and if so, return it.
If not, construct SSA form by first calculating the required placement of PHIs and then inserting new PHIs where needed.
Definition at line 94 of file SSAUpdaterImpl.h.
References llvm::SSAUpdaterImpl< UpdaterT >::BuildBlockList(), llvm::SSAUpdaterImpl< UpdaterT >::FindAvailableVals(), llvm::SSAUpdaterImpl< UpdaterT >::FindDominators(), llvm::SSAUpdaterImpl< UpdaterT >::FindPHIPlacement(), and llvm::SmallVectorBase::size().
Referenced by llvm::SSAUpdaterTraits< SSAUpdater >::GetPHIValue(), and llvm::SSAUpdaterTraits< MachineSSAUpdater >::GetPHIValue().
|
inline |
IntersectDominators - This is the dataflow lattice "meet" operation for finding dominators.
Given two basic blocks, it walks up the dominator tree until it finds a common dominator of both. It uses the postorder number of the blocks to determine how to do that.
Definition at line 215 of file SSAUpdaterImpl.h.
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::FindDominators().
|
inline |
IsDefInDomFrontier - Search up the dominator tree from Pred to IDom for any blocks containing definitions of the value.
If one is found, then the successor of Pred is in the dominance frontier for the definition, and this function returns true.
Definition at line 283 of file SSAUpdaterImpl.h.
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::FindPHIPlacement().
|
inline |
RecordMatchingPHIs - For each PHI node that matches, record it in both the BBMap and the AvailableVals mapping.
Definition at line 452 of file SSAUpdaterImpl.h.
References llvm::SmallVectorTemplateCommon< T, typename >::begin(), E, llvm::SmallVectorTemplateCommon< T, typename >::end(), and I.
Referenced by llvm::SSAUpdaterImpl< UpdaterT >::FindExistingPHI().