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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.hpp158 volatile unsigned _gc_time_stamp; member in class:G1OffsetTableContigSpace
178 void reset_gc_time_stamp() { _gc_time_stamp = 0; }
179 unsigned get_gc_time_stamp() { return _gc_time_stamp; }
H A DheapRegion.cpp757 st->print(" TS %5d", _gc_time_stamp);
954 assert( _gc_time_stamp <= g1h->get_gc_time_stamp(), "invariant" );
955 if (_gc_time_stamp < g1h->get_gc_time_stamp())
965 if (_gc_time_stamp < curr_gc_time_stamp) {
968 // set_saved_mark and before _gc_time_stamp = ..., then the latter
970 // of region. If it does so after _gc_time_stamp = ..., then it
975 _gc_time_stamp = curr_gc_time_stamp;
989 _gc_time_stamp(0)
H A Dg1CollectedHeap.hpp375 volatile unsigned _gc_time_stamp; member in class:G1CollectedHeap
1058 // of G1CollectedHeap::_gc_time_stamp.
1142 return _gc_time_stamp;
1146 _gc_time_stamp = 0;
1156 ++_gc_time_stamp;
H A Dg1CollectedHeap.cpp1928 _gc_time_stamp(0),
2329 unsigned _gc_time_stamp; member in class:CheckGCTimeStampsHRClosure
2334 _gc_time_stamp(gc_time_stamp), _failures(false) { }
2338 if (_gc_time_stamp != region_gc_time_stamp) {
2341 region_gc_time_stamp, _gc_time_stamp);
2351 CheckGCTimeStampsHRClosure cl(_gc_time_stamp);

Completed in 56 milliseconds