Searched refs:eden (Results 1 - 12 of 12) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/serial/
H A DDefNewGeneration.java35 /** DefNewGeneration is a young generation containing eden, from- and
68 public ContiguousSpace eden() { method in class:DefNewGeneration
80 public long capacity() { return eden().capacity() + from().capacity(); /* to() is only used during scavenge */ }
81 public long used() { return eden().used() + from().used(); /* to() is only used during scavenge */ }
82 public long free() { return eden().free() + from().free(); /* to() is only used during scavenge */ }
83 public long contiguousAvailable() { return eden().free(); }
90 blk.doSpace(eden());
98 tty.print(" eden");
99 eden().printOn(tty);
/openjdk10/hotspot/src/share/vm/gc/serial/
H A DdefNewGeneration.cpp208 // Compute the maximum eden and survivor space sizes. These sizes
224 _eden_counters = new CSpaceCounters("eden", 0, _max_eden_size, _eden_space,
260 // May happen due to 64Kb rounding, if so adjust eden size back up
285 // A minimum eden size implies that there is a part of eden that
287 // newly formed eden.
299 eden()->check_mangled_unused_area(limit);
306 eden()->initialize(edenMR,
310 // portion of eden above its top. This can cause newly
314 eden()
[all...]
H A DdefNewGeneration.hpp43 // DefNewGeneration is a young generation containing eden, from- and
68 // location in eden or from-space during the collection. If
73 // Objects are in eden or from-space
74 // All roots into the young generation point into eden or from-space.
77 // Objects may be in eden, from-space, or to-space
78 // An object A in eden or from-space may have a copy B
210 ContiguousSpace* eden() const { return _eden_space; } function in class:DefNewGeneration
280 // Save the tops for eden, from, and to
344 // cleared if the minimum size of eden is 0. If mangle_space
/openjdk10/hotspot/src/share/vm/services/
H A DmemoryService.cpp255 MemoryPool* eden = add_space(young_gen->eden(), local
275 MemoryPool* eden = add_space(parnew_gen->eden(), local
337 EdenMutableSpacePool* eden = new EdenMutableSpacePool(young_gen, local
348 major_mgr->add_pool(eden);
350 minor_mgr->add_pool(eden);
352 _pools_list->append(eden);
370 G1EdenPool* eden = new G1EdenPool(g1h); local
373 major_mgr->add_pool(eden);
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java97 ContiguousSpace eden = ((DefNewGeneration)gen).eden();
99 printSpace(eden);
185 MutableSpace eden = youngGen.edenSpace();
187 printMutableSpace(eden);
/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) { }
121 const SpaceSummary& eden() const { return _eden; } function in class:PSHeapSummary
H A DgcTraceSend.cpp374 const SpaceSummary& eden_space = ps_heap_summary->eden();
386 e.set_edenSpace(to_trace_struct(ps_heap_summary->eden()));
H A DgenCollectedHeap.cpp195 _gen_policy->initialize_size_policy(def_new_gen->eden()->capacity(),
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DparallelScavengeHeap.cpp357 // Size is too big for eden, or gc is locked out.
398 // We assume that allocation in eden will fail unless we collect.
540 MutableSpace* eden = young_gen()->eden_space(); local
541 SpaceSummary eden_space(eden->bottom(), eden->end(), eden->used_in_bytes());
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DconcurrentMarkSweepGeneration.inline.hpp263 return _young_gen->eden()->used();
267 return _young_gen->eden()->capacity();
H A DparNewGeneration.cpp1006 eden()->clear(SpaceDecorator::Mangle);
H A DconcurrentMarkSweepGeneration.cpp1494 _young_gen->eden()->used(),
1626 ContiguousSpace* eden_space = _young_gen->eden();
1631 log.trace("eden " PTR_FORMAT "-" PTR_FORMAT "-" PTR_FORMAT "(" SIZE_FORMAT ")",
3647 // CMSScheduleRemarkEdenSizeThreshold >= max eden size
3713 // When CMSEdenChunksRecordAlways is true, the eden chunk array
4360 ContiguousSpace* eden_space = young_gen->eden();
4505 assert(nth_task == 0 && n_tasks == 1, "Can have only 1 eden task");
4673 // Record object boundaries in _eden_chunk_array by sampling the eden
4674 // top in the slow-path eden object allocation code path and record
4795 if (!_young_gen->eden()
[all...]

Completed in 116 milliseconds