g1MemoryPool.hpp 3.7 KB
Newer Older
1
/*
2
 * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
22 23 24
 *
 */

25 26 27 28
#ifndef SHARE_VM_SERVICES_G1MEMORYPOOL_HPP
#define SHARE_VM_SERVICES_G1MEMORYPOOL_HPP

#ifndef SERIALGC
29
#include "gc_implementation/g1/g1MonitoringSupport.hpp"
30 31 32 33
#include "services/memoryPool.hpp"
#include "services/memoryUsage.hpp"
#endif

34 35 36 37 38 39 40 41 42 43 44 45 46 47
// This file contains the three classes that represent the memory
// pools of the G1 spaces: G1EdenPool, G1SurvivorPool, and
// G1OldGenPool. In G1, unlike our other GCs, we do not have a
// physical space for each of those spaces. Instead, we allocate
// regions for all three spaces out of a single pool of regions (that
// pool basically covers the entire heap). As a result, the eden,
// survivor, and old gen are considered logical spaces in G1, as each
// is a set of non-contiguous regions. This is also reflected in the
// way we map them to memory pools here. The easiest way to have done
// this would have been to map the entire G1 heap to a single memory
// pool. However, it's helpful to show how large the eden and survivor
// get, as this does affect the performance and behavior of G1. Which
// is why we introduce the three memory pools implemented here.
//
48 49
// See comments in g1MonitoringSupport.hpp for additional details
// on this model.
50 51 52
//

// This class is shared by the three G1 memory pool classes
53
// (G1EdenPool, G1SurvivorPool, G1OldGenPool).
54 55
class G1MemoryPoolSuper : public CollectedMemoryPool {
protected:
56 57
  const static size_t _undefined_max = (size_t) -1;
  G1MonitoringSupport* _g1mm;
58

59 60 61 62
  // Would only be called from subclasses.
  G1MemoryPoolSuper(G1CollectedHeap* g1h,
                    const char* name,
                    size_t init_size,
63
                    size_t max_size,
64 65 66 67 68 69 70 71 72
                    bool support_usage_threshold);
};

// Memory pool that represents the G1 eden.
class G1EdenPool : public G1MemoryPoolSuper {
public:
  G1EdenPool(G1CollectedHeap* g1h);

  size_t used_in_bytes() {
73
    return _g1mm->eden_space_used();
74
  }
75
  size_t max_size() const {
76
    return _undefined_max;
77 78 79 80 81 82 83 84 85 86
  }
  MemoryUsage get_memory_usage();
};

// Memory pool that represents the G1 survivor.
class G1SurvivorPool : public G1MemoryPoolSuper {
public:
  G1SurvivorPool(G1CollectedHeap* g1h);

  size_t used_in_bytes() {
87
    return _g1mm->survivor_space_used();
88
  }
89
  size_t max_size() const {
90
    return _undefined_max;
91 92 93 94 95 96 97 98 99 100
  }
  MemoryUsage get_memory_usage();
};

// Memory pool that represents the G1 old gen.
class G1OldGenPool : public G1MemoryPoolSuper {
public:
  G1OldGenPool(G1CollectedHeap* g1h);

  size_t used_in_bytes() {
101
    return _g1mm->old_space_used();
102
  }
103
  size_t max_size() const {
104
    return _undefined_max;
105 106 107
  }
  MemoryUsage get_memory_usage();
};
108 109

#endif // SHARE_VM_SERVICES_G1MEMORYPOOL_HPP