From 3a294d6085c69ad7ac1572a2c976624efe66a082 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 26 Sep 2002 16:14:37 +0000 Subject: [PATCH] - Add methods to ImmediateDominators & DominatorTree to allow updates - Make DominatorTree::Node not inherit from std::vector git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3938 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/Dominators.h | 35 ++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index af2a0e384c9..5fd70864695 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -183,6 +183,14 @@ public: IDoms[BB] = IDom; } + /// setImmediateDominator - Update the immediate dominator information to + /// change the current immediate dominator for the specified block to another + /// block. This method requires that BB already have an IDom, otherwise just + /// use addNewBlock. + void setImmediateDominator(BasicBlock *BB, BasicBlock *NewIDom) { + assert(IDoms.find(BB) != IDoms.end() && "BB doesn't have idom yet!"); + IDoms[BB] = NewIDom; + } // print - Convert to human readable form virtual void print(std::ostream &OS) const; @@ -224,16 +232,25 @@ protected: void reset(); typedef std::map NodeMapType; public: - class Node2 : public std::vector { + class Node2 { friend class DominatorTree; friend class PostDominatorTree; friend class DominatorTreeBase; BasicBlock *TheNode; Node2 *IDom; + std::vector Children; public: + typedef std::vector::iterator iterator; + typedef std::vector::const_iterator const_iterator; + + iterator begin() { return Children.begin(); } + iterator end() { return Children.end(); } + const_iterator begin() const { return Children.begin(); } + const_iterator end() const { return Children.end(); } + inline BasicBlock *getNode() const { return TheNode; } inline Node2 *getIDom() const { return IDom; } - inline const std::vector &getChildren() const { return *this; } + inline const std::vector &getChildren() const { return Children; } // dominates - Returns true iff this dominates N. Note that this is not a // constant time operation! @@ -247,7 +264,9 @@ public: private: inline Node2(BasicBlock *node, Node *iDom) : TheNode(node), IDom(iDom) {} - inline Node2 *addChild(Node *C) { push_back(C); return C; } + inline Node2 *addChild(Node *C) { Children.push_back(C); return C; } + + void setIDom(Node2 *NewIDom); }; public: @@ -268,7 +287,7 @@ public: return getNode(BB); } - // API to update (Post)DominatorTree information based on modifications to + //===--------------------------------------------------------------------===// // API to update (Post)DominatorTree information based on modifications to // the CFG... /// createNewNode - Add a new node to the dominator tree information. This @@ -282,6 +301,14 @@ public: return New; } + /// changeImmediateDominator - This method is used to update the dominator + /// tree information when a node's immediate dominator changes. + /// + void changeImmediateDominator(Node *Node, Node *NewIDom) { + assert(Node && NewIDom && "Cannot change null node pointers!"); + Node->setIDom(NewIDom); + } + /// print - Convert to human readable form virtual void print(std::ostream &OS) const; }; -- 2.34.1