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

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.inline.hpp51 guarantee(!_root_refs_stack->contains(p), "should only be in here once");
52 _root_refs_stack->push(p);
108 _root_refs_stack->push(p);
H A DmarkSweep.cpp50 GrowableArray<void*>* MarkSweep::_root_refs_stack = NULL; member in class:MarkSweep
213 ptrdiff_t index = _root_refs_stack->find(p);
215 int l = _root_refs_stack->length();
217 void* last = _root_refs_stack->pop();
219 _root_refs_stack->at_put(index, last);
221 _root_refs_stack->remove(p);
H A DmarkSweep.hpp148 static GrowableArray<void*>* _root_refs_stack; member in class:MarkSweep
/openjdk7/hotspot/src/share/vm/memory/
H A DgenMarkSweep.cpp123 guarantee(_root_refs_stack->length() == 0, "should be empty by now");
214 _root_refs_stack = new (ResourceObj::C_HEAP, mtGC) GrowableArray<void*>(100, true);
254 delete _root_refs_stack;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.hpp1165 static GrowableArray<void*>* _root_refs_stack;
1394 guarantee(!_root_refs_stack->contains(p), "should only be in here once");
1395 _root_refs_stack->push(p);
1445 _root_refs_stack->push(p);
H A DpsParallelCompact.cpp120 GrowableArray<void*>* PSParallelCompact::_root_refs_stack = NULL; member in class:PSParallelCompact
2886 ptrdiff_t index = _root_refs_stack->find(p);
2888 int l = _root_refs_stack->length();
2890 void* last = _root_refs_stack->pop();
2892 _root_refs_stack->at_put(index, last);
2894 _root_refs_stack->remove(p);

Completed in 52 milliseconds