src/share/vm/gc_implementation/concurrentMarkSweep/vmStructs_cms.hpp

Sat, 01 Dec 2007 00:00:00 +0000

author
duke
date
Sat, 01 Dec 2007 00:00:00 +0000
changeset 435
a61af66fc99e
child 587
c70a245cad3a
child 622
790e66e5fbac
permissions
-rw-r--r--

Initial load

duke@435 1 /*
duke@435 2 * Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 #define VM_STRUCTS_CMS(nonstatic_field, \
duke@435 26 static_field) \
duke@435 27 nonstatic_field(CompactibleFreeListSpace, _collector, CMSCollector*) \
duke@435 28 nonstatic_field(CompactibleFreeListSpace, _bt, BlockOffsetArrayNonContigSpace) \
duke@435 29 \
duke@435 30 nonstatic_field(CMSPermGen, _gen, ConcurrentMarkSweepGeneration*) \
duke@435 31 nonstatic_field(CMSBitMap, _bmStartWord, HeapWord*) \
duke@435 32 nonstatic_field(CMSBitMap, _bmWordSize, size_t) \
duke@435 33 nonstatic_field(CMSBitMap, _shifter, const int) \
duke@435 34 nonstatic_field(CMSBitMap, _bm, BitMap) \
duke@435 35 nonstatic_field(CMSBitMap, _virtual_space, VirtualSpace) \
duke@435 36 nonstatic_field(CMSCollector, _markBitMap, CMSBitMap) \
duke@435 37 nonstatic_field(ConcurrentMarkSweepGeneration, _cmsSpace, CompactibleFreeListSpace*) \
duke@435 38 static_field(ConcurrentMarkSweepThread, _collector, CMSCollector*) \
duke@435 39 nonstatic_field(FreeChunk, _next, FreeChunk*) \
duke@435 40 nonstatic_field(FreeChunk, _prev, FreeChunk*) \
duke@435 41 nonstatic_field(FreeChunk, _size, size_t)
duke@435 42
duke@435 43 #define VM_TYPES_CMS(declare_type, \
duke@435 44 declare_toplevel_type) \
duke@435 45 \
duke@435 46 declare_type(ConcurrentMarkSweepGeneration,CardGeneration) \
duke@435 47 declare_type(CompactibleFreeListSpace, CompactibleSpace) \
duke@435 48 declare_type(CMSPermGenGen, ConcurrentMarkSweepGeneration) \
duke@435 49 declare_type(CMSPermGen, PermGen) \
duke@435 50 declare_type(ConcurrentMarkSweepThread, NamedThread) \
duke@435 51 declare_type(SurrogateLockerThread, JavaThread) \
duke@435 52 declare_toplevel_type(CMSCollector) \
duke@435 53 declare_toplevel_type(CMSBitMap) \
duke@435 54 declare_toplevel_type(FreeChunk) \
duke@435 55 declare_toplevel_type(ConcurrentMarkSweepThread*) \
duke@435 56 declare_toplevel_type(ConcurrentMarkSweepGeneration*) \
duke@435 57 declare_toplevel_type(SurrogateLockerThread*) \
duke@435 58 declare_toplevel_type(CompactibleFreeListSpace*) \
duke@435 59 declare_toplevel_type(CMSCollector*) \
duke@435 60 declare_toplevel_type(FreeChunk*)
duke@435 61
duke@435 62 #define VM_INT_CONSTANTS_CMS(declare_constant) \
duke@435 63 declare_constant(Generation::ConcurrentMarkSweep) \
duke@435 64 declare_constant(PermGen::ConcurrentMarkSweep)

mercurial