Searched refs:CompactibleFreeListSpace (Results 1 - 16 of 16) sorted by relevance

/openjdk10/hotspot/src/share/vm/gc/cms/
H A DvmStructs_cms.hpp31 nonstatic_field(CompactibleFreeListSpace, _collector, CMSCollector*) \
32 nonstatic_field(CompactibleFreeListSpace, _bt, BlockOffsetArrayNonContigSpace) \
39 nonstatic_field(ConcurrentMarkSweepGeneration, _cmsSpace, CompactibleFreeListSpace*) \
43 nonstatic_field(CompactibleFreeListSpace, _dictionary, AFLBinaryTreeDictionary*) \
44 nonstatic_field(CompactibleFreeListSpace, _indexedFreeList[0], AdaptiveFreeList<FreeChunk>) \
45 nonstatic_field(CompactibleFreeListSpace, _smallLinearAllocBlock, LinearAllocBlock)
52 declare_type(CompactibleFreeListSpace, CompactibleSpace) \
60 declare_toplevel_type(CompactibleFreeListSpace*) \
H A DcompactibleFreeListSpace.cpp51 //// CompactibleFreeListSpace
55 int CompactibleFreeListSpace::_lockRank = Mutex::leaf + 3;
58 size_t CompactibleFreeListSpace::IndexSetStart = 0;
59 size_t CompactibleFreeListSpace::IndexSetStride = 0;
63 void CompactibleFreeListSpace::set_cms_values() {
78 CompactibleFreeListSpace::CompactibleFreeListSpace(BlockOffsetSharedArray* bs, MemRegion mr) : function in class:CompactibleFreeListSpace
85 _freelistLock(_lockRank--, "CompactibleFreeListSpace._lock", true,
88 "CompactibleFreeListSpace._dict_par_lock", true,
136 HeapWord* CompactibleFreeListSpace
[all...]
H A DpromotionInfo.hpp32 class CompactibleFreeListSpace;
119 CompactibleFreeListSpace* _space; // the space to which this belongs
153 void setSpace(CompactibleFreeListSpace* sp) { _space = sp; }
154 CompactibleFreeListSpace* space() const { return _space; }
H A DcompactibleFreeListSpace.hpp37 // space, in this case a CompactibleFreeListSpace.
41 class CompactibleFreeListSpace;
73 class CompactibleFreeListSpace: public CompactibleSpace { class in inherits:CompactibleSpace
307 return CompactibleFreeListSpace::block_is_obj(addr); // Avoid virtual call
311 return CompactibleFreeListSpace::block_size(addr); // Avoid virtual call
331 CompactibleFreeListSpace(BlockOffsetSharedArray* bs, MemRegion mr);
394 // Never mangle CompactibleFreeListSpace
406 // point to objects in the heap. The usage of CompactibleFreeListSpace
514 // most cases in CompactibleFreeListSpace methods.
666 // CompactibleFreeListSpace
[all...]
H A DadaptiveFreeList.hpp31 class CompactibleFreeListSpace;
47 friend class CompactibleFreeListSpace;
H A DconcurrentMarkSweepGeneration.hpp67 class CompactibleFreeListSpace;
501 friend class CompactibleFreeListSpace;
1005 CompactibleFreeListSpace* _cmsSpace; // underlying space (only one for now)
1087 CompactibleFreeListSpace* cmsSpace() const { return _cmsSpace; }
1450 CompactibleFreeListSpace* _space;
1457 CompactibleFreeListSpace* space,
1468 CompactibleFreeListSpace* space,
1478 void set_space(CompactibleFreeListSpace* space) { _space = space; }
1601 CompactibleFreeListSpace* _sp; // Space being swept
1781 const CompactibleFreeListSpace* _s
[all...]
H A DconcurrentMarkSweepGeneration.cpp182 NOT_PRODUCT(CompactibleFreeListSpace* debug_cms_space;)
192 CMSParGCThreadState(CompactibleFreeListSpace* cfls) : lab(cfls) {
214 _cmsSpace = new CompactibleFreeListSpace(_bts, MemRegion(bottom, end));
800 size_t adjustedSize = CompactibleFreeListSpace::adjustObjectSize(size);
950 (int)(CompactibleFreeListSpace::adjustObjectSize(obj->size()));
1024 const size_t alloc_sz = CompactibleFreeListSpace::adjustObjectSize(word_sz);
1574 CompactibleFreeListSpace* cms_space = _cmsGen->cmsSpace();
2086 // Currently the CMS epilogue (see CompactibleFreeListSpace) merely checks
3020 CompactibleFreeListSpace* _cms_space;
3038 CompactibleFreeListSpace* cms_spac
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/cms/
H A DConcurrentMarkSweepGeneration.java55 public CompactibleFreeListSpace cmsSpace() {
56 return (CompactibleFreeListSpace) VMObjectFactory.newObject(
57 CompactibleFreeListSpace.class,
H A DCompactibleFreeListSpace.java38 public class CompactibleFreeListSpace extends CompactibleSpace { class in inherits:CompactibleSpace
63 Type type = db.lookupType("CompactibleFreeListSpace");
71 public CompactibleFreeListSpace(Address addr) { method in class:CompactibleFreeListSpace
/openjdk10/hotspot/src/share/vm/memory/
H A DfreeList.hpp30 class CompactibleFreeListSpace;
46 friend class CompactibleFreeListSpace;
/openjdk10/hotspot/src/share/vm/services/
H A DmemoryPool.hpp40 class CompactibleFreeListSpace;
184 CompactibleFreeListSpace* _space;
186 CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
H A DmemoryService.hpp46 class CompactibleFreeListSpace;
110 static MemoryPool* add_cms_space(CompactibleFreeListSpace* space,
H A DmemoryPool.cpp232 CompactibleFreeListSpacePool::CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
H A DmemoryService.cpp229 MemoryPool* MemoryService::add_cms_space(CompactibleFreeListSpace* space,
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DObjectHeap.java307 CompactibleFreeListSpace cmsSpaceOld = null;
350 handle = handle.addOffsetToAsOopHandle(CompactibleFreeListSpace.adjustObjectSizeInBytes(size));
360 handle = handle.addOffsetToAsOopHandle(CompactibleFreeListSpace.adjustObjectSizeInBytes(obj.getObjectSize()) );
/openjdk10/hotspot/src/share/vm/gc/shared/
H A Dspace.hpp354 friend class CompactibleFreeListSpace;

Completed in 186 milliseconds