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

/openjdk10/hotspot/src/share/vm/gc/shared/
H A DgcHeapSummary.hpp116 PSHeapSummary(VirtualSpaceSummary& heap_space, size_t heap_used, VirtualSpaceSummary old, SpaceSummary old_space, VirtualSpaceSummary young, SpaceSummary eden, SpaceSummary from, SpaceSummary to) : argument
117 GCHeapSummary(heap_space, heap_used), _old(old), _old_space(old_space), _young(young), _eden(eden), _from(from), _to(to) { }
120 const VirtualSpaceSummary& young() const { return _young; } function in class:PSHeapSummary
H A DcollectorPolicy.cpp229 // The young generation must be aligned and have room for eden + two survivors
240 assert(NewSize >= _min_young_size, "Ergonomics decided on a too small young gen size");
241 assert(NewSize <= MaxNewSize, "Ergonomics decided on incompatible initial and maximum young gen sizes");
242 assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize, "Ergonomics decided on incompatible maximum young gen and heap sizes");
252 assert(MaxNewSize < MaxHeapSize, "Ergonomics decided on incompatible maximum young and heap sizes");
256 assert(_min_young_size <= _initial_young_size, "Ergonomics decided on incompatible minimum and initial young gen sizes");
257 assert(_initial_young_size <= _max_young_size, "Ergonomics decided on incompatible initial and maximum young gen sizes");
262 "Ergonomics made minimum young generation larger than minimum heap");
264 "Ergonomics made initial young generation larger than initial heap");
266 "Ergonomics made maximum young generatio
[all...]
H A DgcTraceSend.cpp373 const VirtualSpaceSummary& young_summary = ps_heap_summary->young();
385 e.set_youngSpace(to_trace_struct(ps_heap_summary->young()));
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DparallelScavengeHeap.cpp340 // cannot be satisfied from the young gen. This routine detects that condition;
342 // attempted from the young gen. The parameter 'addr' should be the result of
343 // that young gen allocation attempt.
400 // First level allocation failure, scavenge and allocate in young gen.
406 // Mark sweep and allocate in young generation.
415 // After mark sweep and young generation allocation failure,
422 // More complete mark sweep and allocate in young generation.
468 // young gen and, a fortiori, for initializing stores to
500 "addr should be in allocated part of young gen");
536 PSYoungGen* young local
[all...]

Completed in 73 milliseconds