From 2e761e29f86efcf0ae4fb99ab5ef67c2ce392787 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 11 Jan 2006 05:08:57 +0000 Subject: [PATCH] Switch loopinfo to using ETForest instead of DominatorSet to compute itself.Patch by Daniel Berlin! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25200 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/LoopInfo.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index 839b47ca297..dd278e76c8b 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -35,7 +35,7 @@ namespace llvm { -struct DominatorSet; +struct ETForest; class LoopInfo; class PHINode; class Instruction; @@ -267,8 +267,6 @@ public: virtual void releaseMemory(); void print(std::ostream &O, const Module* = 0) const; - /// getAnalysisUsage - Requires dominator sets - /// virtual void getAnalysisUsage(AnalysisUsage &AU) const; /// removeLoop - This removes the specified top-level loop from this loop info @@ -299,8 +297,8 @@ public: static void stub(); // Noop private: - void Calculate(const DominatorSet &DS); - Loop *ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS); + void Calculate(const ETForest &EF); + Loop *ConsiderForLoop(BasicBlock *BB, const ETForest &EF); void MoveSiblingLoopInto(Loop *NewChild, Loop *NewParent); void InsertLoopInto(Loop *L, Loop *Parent); };