Searched defs:eden (Results 1 - 6 of 6) sorted by relevance
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
H A D | DefNewGeneration.java | 34 /** DefNewGeneration is a young generation containing eden, from- and 67 public EdenSpace eden() { method in class:DefNewGeneration 79 public long capacity() { return eden().capacity() + from().capacity(); /* to() is only used during scavenge */ } 80 public long used() { return eden().used() + from().used(); /* to() is only used during scavenge */ } 81 public long free() { return eden().free() + from().free(); /* to() is only used during scavenge */ } 82 public long contiguousAvailable() { return eden().free(); } 89 blk.doSpace(eden()); 97 tty.print(" eden"); 98 eden().printOn(tty);
|
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | gcHeapSummary.hpp | 98 PSHeapSummary(VirtualSpaceSummary& heap_space, size_t heap_used, VirtualSpaceSummary old, SpaceSummary old_space, VirtualSpaceSummary young, SpaceSummary eden, SpaceSummary from, SpaceSummary to) : argument 99 GCHeapSummary(heap_space, heap_used), _old(old), _old_space(old_space), _young(young), _eden(eden), _from(from), _to(to) { } 103 const SpaceSummary& eden() const { return _eden; } function in class:PSHeapSummary
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | defNewGeneration.hpp | 40 // DefNewGeneration is a young generation containing eden, from- and 65 // location in eden or from-space during the collection. If 70 // Objects are in eden or from-space 71 // All roots into the young generation point into eden or from-space. 74 // Objects may be in eden, from-space, or to-space 75 // An object A in eden or from-space may have a copy B 216 EdenSpace* eden() const { return _eden_space; } function in class:DefNewGeneration 288 // Save the tops for eden, from, and to 359 // cleared if the minimum size of eden is 0. If mangle_space
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | memoryService.cpp | 275 MemoryPool* eden = add_space(young_gen->eden(), local 296 MemoryPool* eden = add_space(parnew_gen->eden(), local 396 EdenMutableSpacePool* eden = new EdenMutableSpacePool(gen, local 407 major_mgr->add_pool(eden); 409 minor_mgr->add_pool(eden); 411 _pools_list->append(eden); 438 G1EdenPool* eden = new G1EdenPool(g1h); local 441 major_mgr->add_pool(eden); [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
H A D | concurrentMarkSweepGeneration.cpp | 1142 EdenSpace* eden = gen0->as_DefNewGeneration()->eden(); local 1153 size_t free_words = eden->free() / HeapWordSize; 1158 _icms_start_limit = eden->top() + offset_words; 1159 _icms_stop_limit = eden->end() - offset_words; 1169 if (tmp_stop > _icms_stop_limit && tmp_stop < eden->end()) { 1176 _icms_start_limit = _icms_stop_limit = eden->end(); 1180 eden->set_soft_end(_icms_start_limit); 1187 percent_of_space(eden, _icms_start_limit), 1188 percent_of_space(eden, _icms_stop_limi [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | parallelScavengeHeap.cpp | 546 // Size is too big for eden, or gc is locked out. 575 // We assume that allocation in eden will fail unless we collect. 908 MutableSpace* eden = young_gen()->eden_space(); local 909 SpaceSummary eden_space(eden->bottom(), eden->end(), eden->used_in_bytes()); 969 gclog_or_tty->print("eden ");
|
Completed in 90 milliseconds