Try to speed up gccld hot spot in BasicVN::getEqualNumberNodes by making
authorReid Spencer <rspencer@reidspencer.com>
Thu, 23 Dec 2004 21:13:26 +0000 (21:13 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 23 Dec 2004 21:13:26 +0000 (21:13 +0000)
a function call at the core of the loop inline and removing unused
stack variables from an often called function. This doesn't improve things
much, the real saving will be by reducing the number of calls to this
function (100K+ when linking kimwitu++).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19119 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ValueNumbering.cpp

index 49b75bd6acc05b40f6ea6871ba1cb0883de01054..2e1174b69e7ce5fa508b86a8414f25ff97bc2dfc 100644 (file)
@@ -145,8 +145,7 @@ static inline bool isIdenticalBinaryInst(const Instruction &I1,
 }
 
 void BVNImpl::handleBinaryInst(Instruction &I) {
-  Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
-  Function *F = I.getParent()->getParent();
+  Value *LHS = I.getOperand(0);
   
   for (Value::use_iterator UI = LHS->use_begin(), UE = LHS->use_end();
        UI != UE; ++UI)
@@ -162,7 +161,7 @@ void BVNImpl::handleBinaryInst(Instruction &I) {
 // using a brute force comparison.  This is useful for instructions with an
 // arbitrary number of arguments.
 //
-static bool IdenticalComplexInst(const Instruction *I1, const Instruction *I2) {
+static inline bool IdenticalComplexInst(const Instruction *I1, const Instruction *I2) {
   assert(I1->getOpcode() == I2->getOpcode());
   // Equal if they are in the same function...
   return I1->getParent()->getParent() == I2->getParent()->getParent() &&