tonyp@3168: /* tonyp@3168: * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. tonyp@3168: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. tonyp@3168: * tonyp@3168: * This code is free software; you can redistribute it and/or modify it tonyp@3168: * under the terms of the GNU General Public License version 2 only, as tonyp@3168: * published by the Free Software Foundation. tonyp@3168: * tonyp@3168: * This code is distributed in the hope that it will be useful, but WITHOUT tonyp@3168: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or tonyp@3168: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License tonyp@3168: * version 2 for more details (a copy is included in the LICENSE file that tonyp@3168: * accompanied this code). tonyp@3168: * tonyp@3168: * You should have received a copy of the GNU General Public License version tonyp@3168: * 2 along with this work; if not, write to the Free Software Foundation, tonyp@3168: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. tonyp@3168: * tonyp@3168: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA tonyp@3168: * or visit www.oracle.com if you need additional information or have any tonyp@3168: * questions. tonyp@3168: * tonyp@3168: */ tonyp@3168: tonyp@3168: #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_VMSTRUCTS_G1_HPP tonyp@3168: #define SHARE_VM_GC_IMPLEMENTATION_G1_VMSTRUCTS_G1_HPP tonyp@3168: tonyp@3168: #include "gc_implementation/g1/heapRegion.hpp" tonyp@3168: #include "gc_implementation/g1/heapRegionSeq.inline.hpp" tonyp@3168: #include "gc_implementation/g1/g1CollectedHeap.inline.hpp" tonyp@3168: tonyp@3168: #define VM_STRUCTS_G1(nonstatic_field, static_field) \ tonyp@3168: \ tonyp@3168: static_field(HeapRegion, GrainBytes, int) \ tonyp@3168: \ tonyp@3168: nonstatic_field(HeapRegionSeq, _regions, HeapRegion**) \ tonyp@3168: nonstatic_field(HeapRegionSeq, _length, size_t) \ tonyp@3168: \ tonyp@3168: nonstatic_field(G1CollectedHeap, _hrs, HeapRegionSeq) \ tonyp@3168: nonstatic_field(G1CollectedHeap, _g1_committed, MemRegion) \ tonyp@3168: nonstatic_field(G1CollectedHeap, _summary_bytes_used, size_t) \ tonyp@3168: tonyp@3168: tonyp@3168: #define VM_TYPES_G1(declare_type, declare_toplevel_type) \ tonyp@3168: \ tonyp@3168: declare_type(G1CollectedHeap, SharedHeap) \ tonyp@3168: \ tonyp@3168: declare_type(HeapRegion, ContiguousSpace) \ tonyp@3168: declare_toplevel_type(HeapRegionSeq) \ tonyp@3168: \ tonyp@3168: declare_toplevel_type(G1CollectedHeap*) \ tonyp@3168: declare_toplevel_type(HeapRegion*) \ tonyp@3168: tonyp@3168: #endif // SHARE_VM_GC_IMPLEMENTATION_G1_VMSTRUCTS_G1_HPP