Add method IGNode::getCombinedDegree to count the sum of the degrees
authorVikram S. Adve <vadve@cs.uiuc.edu>
Fri, 20 Sep 2002 00:55:04 +0000 (00:55 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Fri, 20 Sep 2002 00:55:04 +0000 (00:55 +0000)
of two nodes, excluding duplicates.

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

lib/CodeGen/RegAlloc/IGNode.h
lib/Target/SparcV9/RegAlloc/IGNode.h

index bcf850f68b321da4ab84333b3c16d63592f4f162..edb178f5bc912fe56107069af0a004a59cbb9ecd 100644 (file)
@@ -72,6 +72,9 @@ public:
 
   inline unsigned getNumOfNeighbors() const { return AdjList.size(); }
 
+  // Get the number of unique neighbors if these two nodes are merged
+  unsigned getCombinedDegree(const IGNode* otherNode) const;
+
   inline bool isOnStack() const { return OnStack; }
 
   // remove form IG and pushes on to stack (reduce the degree of neighbors)
index bcf850f68b321da4ab84333b3c16d63592f4f162..edb178f5bc912fe56107069af0a004a59cbb9ecd 100644 (file)
@@ -72,6 +72,9 @@ public:
 
   inline unsigned getNumOfNeighbors() const { return AdjList.size(); }
 
+  // Get the number of unique neighbors if these two nodes are merged
+  unsigned getCombinedDegree(const IGNode* otherNode) const;
+
   inline bool isOnStack() const { return OnStack; }
 
   // remove form IG and pushes on to stack (reduce the degree of neighbors)