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

  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 49 BBInfo *IDom; // Immediate dominator.
55 : BB(ThisBB), AvailableVal(V), DefBB(V ? this : 0), BlkNum(0), IDom(0),
157 Info->IDom = PseudoEntry;
203 Blk1 = Blk1->IDom;
208 Blk2 = Blk2->IDom;
255 // Check if the IDom value has changed.
256 if (NewIDom && NewIDom != Info->IDom) {
257 Info->IDom = NewIDom;
264 /// IsDefInDomFrontier - Search up the dominator tree from Pred to IDom for
268 bool IsDefInDomFrontier(const BBInfo *Pred, const BBInfo *IDom) {
    [all...]
  /external/llvm/include/llvm/Analysis/
Dominators.h 66 DomTreeNodeBase<NodeT> *IDom;
83 DomTreeNodeBase<NodeT> *getIDom() const { return IDom; }
88 DomTreeNodeBase(NodeT *BB, DomTreeNodeBase<NodeT> *iDom)
89 : TheBB(BB), IDom(iDom), DFSNumIn(-1), DFSNumOut(-1) { }
123 assert(IDom && "No immediate dominator?");
124 if (IDom != NewIDom) {
126 std::find(IDom->Children.begin(), IDom->Children.end(), this);
127 assert(I != IDom->Children.end() &
    [all...]
  /external/llvm/lib/CodeGen/
LiveRangeCalc.cpp 275 MachineDomTreeNode *IDom = Node->getIDom();
280 bool needPHI = !IDom || !Seen.test(IDom->getBlock()->getNumber());
282 // IDom dominates all of our predecessors, but it may not be their
284 // properly dominated by IDom. If so, we need a phi-def here.
286 IDomValue = LiveOut[IDom->getBlock()];
290 LiveOut[IDom->getBlock()].second = IDomValue.second =
307 if (DomTree->dominates(IDom, Value.second)) {
SplitKit.cpp 719 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
722 if (!IDom || !MDT.dominates(DefDomNode, IDom))
725 MBB = IDom->getBlock();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 94 milliseconds