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

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcPolicyCounters.hpp44 PerfVariable* _tenuring_threshold; member in class:GCPolicyCounters
62 return _tenuring_threshold;
H A DgcPolicyCounters.cpp54 _tenuring_threshold =
H A DgcTrace.hpp142 uint _tenuring_threshold; member in class:YoungGCTracer
145 YoungGCTracer(GCName name) : GCTracer(name), _tenuring_threshold(UNSET_TENURING_THRESHOLD) {}
H A DgcTrace.cpp173 assert(_tenuring_threshold != UNSET_TENURING_THRESHOLD, "Tenuring threshold has not been reported");
178 _tenuring_threshold = UNSET_TENURING_THRESHOLD;
188 _tenuring_threshold = tenuring_threshold;
H A DgcTraceSend.cpp81 e.set_tenuringThreshold(_tenuring_threshold);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsScavenge.hpp72 static int _tenuring_threshold; // tenuring threshold for next scavenge member in class:PSScavenge
95 static int tenuring_threshold() { return _tenuring_threshold; }
H A DpsScavenge.cpp66 int PSScavenge::_tenuring_threshold = 0; member in class:PSScavenge
317 assert(!NeverTenure || _tenuring_threshold == markOopDesc::max_age + 1, "Sanity");
318 assert(!AlwaysTenure || _tenuring_threshold == 0, "Sanity");
541 _tenuring_threshold =
544 _tenuring_threshold,
551 _tenuring_threshold, MaxTenuringThreshold);
556 counters->update_tenuring_threshold(_tenuring_threshold);
819 _tenuring_threshold = 0;
821 _tenuring_threshold = markOopDesc::max_age + 1;
824 _tenuring_threshold
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.hpp859 int _tenuring_threshold; member in class:G1CollectorPolicy
878 uint tenuring_threshold() const { return _tenuring_threshold; }
882 if (age < _tenuring_threshold && src_region->is_young()) {
900 _tenuring_threshold = 0;
H A Dg1CollectorPolicy.cpp283 _tenuring_threshold = MaxTenuringThreshold;
1420 _tenuring_threshold = _survivors_age_table.compute_tenuring_threshold(
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.hpp48 int _tenuring_threshold; // Tenuring threshold for next collection. member in class:DefNewGeneration
336 int tenuring_threshold() { return _tenuring_threshold; }
H A DdefNewGeneration.cpp204 _tenuring_threshold = MaxTenuringThreshold;
636 _tenuring_threshold =
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp580 _tenuring_threshold =
583 _tenuring_threshold,
600 counters->update_tenuring_threshold(_tenuring_threshold);
H A DparNewGeneration.cpp889 _tenuring_threshold =
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp547 nonstatic_field(DefNewGeneration, _tenuring_threshold, int) \

Completed in 6790 milliseconds