* Code Cleanups
[oota-llvm.git] / lib / Target / SparcV9 / RegAlloc / IGNode.h
1 /* Title:   IGNode.h                      -*- C++ -*-
2    Author:  Ruchira Sasanka
3    Date:    July 25, 01
4    Purpose: Represents a node in an interference graph. 
5    Notes:
6
7    For efficiency, the AdjList is updated only once - ie. we can add but not
8    remove nodes from AdjList. 
9
10    The removal of nodes from IG is simulated by decrementing the CurDegree.
11    If this node is put on stack (that is removed from IG), the CurDegree of all
12    the neighbors are decremented and this node is marked OnSack. Hence
13    the effective neighbors in the AdjList are the ones that do not have the
14    OnStack flag set (therefore, they are in the IG).
15
16    The methods that modify/use the CurDegree Must be called only
17    after all modifications to the IG are over (i.e., all neighbors are fixed).
18
19    The vector representation is the most efficient one for adj list.
20    Though nodes are removed when coalsing is done, we access it in sequence
21    for far many times when coloring (colorNode()).
22
23 */
24
25 #ifndef IG_NODE_H
26 #define IG_NODE_H
27
28 #include "llvm/CodeGen/RegAllocCommon.h"
29 #include "llvm/CodeGen/LiveRange.h"
30 class LiveRange;
31 class RegClass;
32
33 //----------------------------------------------------------------------------
34 // Class IGNode
35 //
36 // Represents a node in an interference graph.
37 //----------------------------------------------------------------------------
38
39 class IGNode {
40   const int Index;            // index within IGNodeList 
41
42   bool OnStack;               // this has been pushed on to stack for coloring
43
44   std::vector<IGNode *> AdjList;   // adjacency list for this live range
45
46   int CurDegree;     
47   //
48   // set by InterferenceGraph::setCurDegreeOfIGNodes() after calculating
49   // all adjacency lists.
50   // Decremented when a neighbor is pushed on to the stack. 
51   // After that, never incremented/set again nor used.
52
53   LiveRange *const ParentLR;  // parent LR (cannot be a const)
54 public:
55
56   // constructor
57   //
58   IGNode(LiveRange *LR, unsigned index);
59
60   inline unsigned int getIndex() const { return Index; }
61
62   // adjLists must be updated only once.  However, the CurDegree can be changed
63   //
64   inline void addAdjIGNode(IGNode *AdjNode) { AdjList.push_back(AdjNode);  } 
65
66   inline IGNode *getAdjIGNode(unsigned ind) const 
67     { assert ( ind < AdjList.size()); return AdjList[ind]; }
68
69   // delete a node in AdjList - node must be in the list
70   // should not be called often
71   //
72   void delAdjIGNode(const IGNode *Node); 
73
74   inline unsigned getNumOfNeighbors() const { return AdjList.size(); }
75
76   inline bool isOnStack() const { return OnStack; }
77
78   // remove form IG and pushes on to stack (reduce the degree of neighbors)
79   //
80   void pushOnStack(); 
81
82   // CurDegree is the effective number of neighbors when neighbors are
83   // pushed on to the stack during the coloring phase. Must be called
84   // after all modifications to the IG are over (i.e., all neighbors are
85   // fixed).
86   //
87   inline void setCurDegree() {
88     assert(CurDegree == -1);
89     CurDegree = AdjList.size();
90   }
91
92   inline int getCurDegree() const { return CurDegree; }
93
94   // called when a neigh is pushed on to stack
95   //
96   inline void decCurDegree() { assert(CurDegree > 0); --CurDegree; }
97
98
99   // The following methods call the methods in ParentLR
100   // They are added to this class for convenience
101   // If many of these are called within a single scope,
102   // consider calling the methods directly on LR
103
104   inline void setRegClass(RegClass *RC) { ParentLR->setRegClass(RC);  }
105
106   inline RegClass *getRegClass() const { return ParentLR->getRegClass(); }
107
108   inline bool hasColor() const { return ParentLR->hasColor();  }
109
110   inline unsigned int getColor() const { return ParentLR->getColor();  }
111
112   inline void setColor(unsigned Col) { ParentLR->setColor(Col);  }
113
114   inline void markForSpill() { ParentLR->markForSpill(); }
115
116   inline void markForSaveAcrossCalls() { ParentLR->markForSaveAcrossCalls();  }
117
118   inline unsigned int isCallInterference() const 
119   { return ParentLR->isCallInterference(); } 
120
121   inline LiveRange *getParentLR() const { return ParentLR; }
122 };
123
124 #endif