Searched refs:_clock_index (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp1355 uint _clock_index; // Index in list where to pop from next member in class:Unique_Node_List
1357 Unique_Node_List() : Node_List(), _in_worklist(Thread::current()->resource_area()), _clock_index(0) {}
1358 Unique_Node_List(Arena *a) : Node_List(a), _in_worklist(a), _clock_index(0) {}
1369 if( _clock_index >= size() ) _clock_index = 0;
1370 Node *b = at(_clock_index);
1371 map( _clock_index, Node_List::pop());
1372 if (size() != 0) _clock_index++; // Always start from 0
1386 _clock_index = 0;

Completed in 62 milliseconds