Switch SelectionDAG::ReplaceAllUsesOfValueWith to use a SmallSetVector for
authorChris Lattner <sabre@nondot.org>
Sun, 4 Feb 2007 00:14:31 +0000 (00:14 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 4 Feb 2007 00:14:31 +0000 (00:14 +0000)
the users set (most nodes have 1 or 2 users).  This speeds up the isel pass
3.2% on kimwitu.

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

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 24b49b246ccfd0c3322f7b93dc93590be1a6ed6f..cced06be1f5ae135316ee57169a3cafbc85fbafa 100644 (file)
@@ -2409,8 +2409,9 @@ void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
     return;
   }
   
-  // Get all of the users in a nice, deterministically ordered, uniqued set.
-  SetVector<SDNode*> Users(From.Val->use_begin(), From.Val->use_end());
+  // Get all of the users of From.Val.  We want these in a nice,
+  // deterministically ordered and uniqued set, so we use a SmallSetVector.
+  SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
 
   while (!Users.empty()) {
     // We know that this user uses some value of From.  If it is the right