Lines Matching refs:Index
53 // LiveToVarMap maps a liveness bitvector index to a Variable. This is
54 // generally just for printing/dumping. The index should be less than
61 // of each variable's live range within this block. The index/key of each
86 SizeT Index = Node->getIndex();
87 resize(Index);
88 return Nodes[Index].LiveIn;
91 SizeT Index = Node->getIndex();
92 resize(Index);
93 return Nodes[Index].LiveOut;
97 SizeT Index = Node->getIndex();
98 resize(Index);
99 return &Nodes[Index].LiveBegin;
102 SizeT Index = Node->getIndex();
103 resize(Index);
104 return &Nodes[Index].LiveEnd;
106 bool getRangeMask(SizeT Index) const { return RangeMask[Index]; }
128 /// Resize Nodes so that Nodes[Index] is valid.
129 void resize(SizeT Index) {
130 if (Index >= Nodes.size()) {
132 Nodes.resize(Index + 1);
142 /// VarToLiveMap maps a Variable's Variable::Number to its live index within