HomeSort by relevance Sort by last modified time
    Searched refs:DomBB (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineDominators.h 128 /// creates a new node as a child of DomBB dominator node,linking it into
131 MachineBasicBlock *DomBB) {
132 return DT->addNewBlock(BB, DomBB);
LiveVariables.h 298 /// addNewBlock - Add a new basic block BB between DomBB and SuccBB. All
299 /// variables that are live out of DomBB and live into SuccBB will be marked
303 MachineBasicBlock *DomBB,
  /external/llvm/lib/Transforms/Utils/
LCSSA.cpp 201 // along their unwind edge. The code below tests to see whether DomBB dominates
202 // the value, so adjust DomBB to the normal destination block, which is
204 BasicBlock *DomBB = Inst->getParent();
206 DomBB = Inv->getNormalDest();
208 DomTreeNode *DomNode = DT->getNode(DomBB);
  /external/llvm/lib/Analysis/
IVUsers.cpp 90 BasicBlock *DomBB = Rung->getBlock();
91 Loop *DomLoop = LI->getLoopFor(DomBB);
92 if (DomLoop && DomLoop->getHeader() == DomBB) {
  /external/llvm/include/llvm/Analysis/
Dominators.h 479 /// creates a new node as a child of DomBB dominator node,linking it into
481 DomTreeNodeBase<NodeT> *addNewBlock(NodeT *BB, NodeT *DomBB) {
483 DomTreeNodeBase<NodeT> *IDomNode = getNode(DomBB);
813 /// creates a new node as a child of DomBB dominator node,linking it into
815 inline DomTreeNode *addNewBlock(BasicBlock *BB, BasicBlock *DomBB) {
816 return DT->addNewBlock(BB, DomBB);
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 802 /// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
803 /// variables that are live out of DomBB will be marked as passing live through
806 MachineBasicBlock *DomBB,

Completed in 232 milliseconds