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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsCompactionManager.hpp81 OverflowTaskQueue<oop, mtGC> _marking_stack; member in class:ParCompactionManager
84 // Is there a way to reuse the _marking_stack for the
129 OverflowTaskQueue<oop, mtGC>* marking_stack() { return &_marking_stack; }
182 inline void push(oop obj) { _marking_stack.push(obj); }
218 return _marking_stack.is_empty() && _objarray_stack.is_empty();
H A DpsMarkSweep.cpp504 _marking_stack.clear();
556 assert(_marking_stack.is_empty(), "just drained");
560 assert(_marking_stack.is_empty(), "just drained");
567 assert(_marking_stack.is_empty(), "stack should be empty by now");
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MarkSweep.cpp161 assert(GenMarkSweep::_marking_stack.is_empty(),
173 assert(GenMarkSweep::_marking_stack.is_empty(),
178 assert(GenMarkSweep::_marking_stack.is_empty(), "just drained");
185 assert(GenMarkSweep::_marking_stack.is_empty(),
/openjdk7/hotspot/src/share/vm/memory/
H A DgenMarkSweep.cpp247 _marking_stack.clear();
309 assert(_marking_stack.is_empty(), "just drained");
313 assert(_marking_stack.is_empty(), "just drained");
320 assert(_marking_stack.is_empty(), "stack should be empty by now");
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp35 Stack<oop, mtGC> MarkSweep::_marking_stack; member in class:MarkSweep
97 assert(_marking_stack.is_empty(), "Marking stack should be empty");
123 while (!_marking_stack.is_empty()) {
124 oop obj = _marking_stack.pop();
134 } while (!_marking_stack.is_empty() || !_objarray_stack.is_empty());
H A DmarkSweep.inline.hpp73 _marking_stack.push(obj);
H A DmarkSweep.hpp127 static Stack<oop, mtGC> _marking_stack; member in class:MarkSweep

Completed in 38 milliseconds