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 130 /// creates a new node as a child of DomBB dominator node,linking it into
133 MachineBasicBlock *DomBB) {
134 return DT->addNewBlock(BB, DomBB);
LiveVariables.h 292 /// addNewBlock - Add a new basic block BB between DomBB and SuccBB. All
293 /// variables that are live out of DomBB and live into SuccBB will be marked
297 MachineBasicBlock *DomBB,
  /external/llvm/lib/Transforms/Utils/
LCSSA.cpp 211 // along their unwind edge. The code below tests to see whether DomBB dominates
212 // the value, so adjust DomBB to the normal destination block, which is
214 BasicBlock *DomBB = Inst->getParent();
216 DomBB = Inv->getNormalDest();
218 DomTreeNode *DomNode = DT->getNode(DomBB);
  /external/llvm/lib/Analysis/
IVUsers.cpp 91 BasicBlock *DomBB = Rung->getBlock();
92 Loop *DomLoop = LI->getLoopFor(DomBB);
93 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);
829 /// creates a new node as a child of DomBB dominator node,linking it into
831 inline DomTreeNode *addNewBlock(BasicBlock *BB, BasicBlock *DomBB) {
832 return DT->addNewBlock(BB, DomBB);
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 778 /// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
779 /// variables that are live out of DomBB will be marked as passing live through
782 MachineBasicBlock *DomBB,

Completed in 118 milliseconds