diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-12 20:14:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-12 20:14:27 +0000 |
commit | 6007cb6c4d923e2dee4a1133fb6d1bb00a37062d (patch) | |
tree | 9127272bd52c09423de062d5ade17139202143e8 /lib/Transforms | |
parent | e132d95b628af3dd1ef855033b0ce0651a0e460f (diff) | |
download | external_llvm-6007cb6c4d923e2dee4a1133fb6d1bb00a37062d.zip external_llvm-6007cb6c4d923e2dee4a1133fb6d1bb00a37062d.tar.gz external_llvm-6007cb6c4d923e2dee4a1133fb6d1bb00a37062d.tar.bz2 |
Assign finer grained ranks, make sure to reassociate top-level after reassociating bottom level
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/Reassociate.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/Transforms/Scalar/Reassociate.cpp b/lib/Transforms/Scalar/Reassociate.cpp index c4f5fb1..fe03211 100644 --- a/lib/Transforms/Scalar/Reassociate.cpp +++ b/lib/Transforms/Scalar/Reassociate.cpp @@ -57,20 +57,20 @@ namespace { Pass *createReassociatePass() { return new Reassociate(); } void Reassociate::BuildRankMap(Function &F) { - unsigned i = 1; + unsigned i = 2; ReversePostOrderTraversal<Function*> RPOT(&F); for (ReversePostOrderTraversal<Function*>::rpo_iterator I = RPOT.begin(), E = RPOT.end(); I != E; ++I) - RankMap[*I] = ++i; + RankMap[*I] = ++i << 16; } unsigned Reassociate::getRank(Value *V) { if (isa<Argument>(V)) return 1; // Function argument... if (Instruction *I = dyn_cast<Instruction>(V)) { - // If this is an expression, return the MAX(rank(LHS), rank(RHS)) so that we - // can reassociate expressions for code motion! Since we do not recurse for - // PHI nodes, we cannot have infinite recursion here, because there cannot - // be loops in the value graph that do not go through PHI nodes. + // If this is an expression, return the 1+MAX(rank(LHS), rank(RHS)) so that + // we can reassociate expressions for code motion! Since we do not recurse + // for PHI nodes, we cannot have infinite recursion here, because there + // cannot be loops in the value graph that do not go through PHI nodes. // if (I->getOpcode() == Instruction::PHINode || I->getOpcode() == Instruction::Alloca || @@ -87,7 +87,10 @@ unsigned Reassociate::getRank(Value *V) { i != e && Rank != MaxRank; ++i) Rank = std::max(Rank, getRank(I->getOperand(i))); - return CachedRank = Rank; + DEBUG(std::cerr << "Calculated Rank[" << V->getName() << "] = " + << Rank+1 << "\n"); + + return CachedRank = Rank+1; } // Otherwise it's a global or constant, rank 0. @@ -145,6 +148,7 @@ bool Reassociate::ReassociateExpr(BinaryOperator *I) { // Since we modified the RHS instruction, make sure that we recheck it. ReassociateExpr(LHSI); + ReassociateExpr(I); return true; } } |