hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/GenCollectedHeap.java
author brutisso
Thu, 02 Apr 2015 16:08:41 +0200
changeset 30154 39cd4e2ccf1c
parent 29794 2dcbd946f9a8
child 30155 a3a254791703
permissions -rw-r--r--
8076452: Remove SharedHeap Reviewed-by: stefank, sjohanss, david
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
     2
 * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
package sun.jvm.hotspot.memory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
import java.io.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.gc_interface.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
import sun.jvm.hotspot.types.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
import sun.jvm.hotspot.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
30154
39cd4e2ccf1c 8076452: Remove SharedHeap
brutisso
parents: 29794
diff changeset
    36
public class GenCollectedHeap extends CollectedHeap {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  private static CIntegerField nGensField;
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    38
  private static AddressField youngGenField;
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    39
  private static AddressField oldGenField;
29794
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    40
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    41
  private static AddressField youngGenSpecField;
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    42
  private static AddressField oldGenSpecField;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  private static GenerationFactory genFactory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    VM.registerVMInitializedObserver(new Observer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
        public void update(Observable o, Object data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
          initialize(VM.getVM().getTypeDataBase());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  private static synchronized void initialize(TypeDataBase db) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    Type type = db.lookupType("GenCollectedHeap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    nGensField = type.getCIntegerField("_n_gens");
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    58
    youngGenField = type.getAddressField("_young_gen");
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    59
    oldGenField = type.getAddressField("_old_gen");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    genFactory = new GenerationFactory();
29794
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    62
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    63
    Type collectorPolicyType = db.lookupType("GenCollectorPolicy");
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    64
    youngGenSpecField = collectorPolicyType.getAddressField("_young_gen_spec");
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
    65
    oldGenSpecField = collectorPolicyType.getAddressField("_old_gen_spec");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  public GenCollectedHeap(Address addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    super(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  public int nGens() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    return (int) nGensField.getValue(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  public Generation getGen(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (Assert.ASSERTS_ENABLED) {
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    78
      Assert.that((i == 0) || (i == 1), "Index " + i +
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    79
                  " out of range (should be 0 or 1)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    82
    switch (i) {
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    83
    case 0:
29202
bcce9add4235 8073532: jmap -heap fails after generation array removal
mgerdin
parents: 29200
diff changeset
    84
      return genFactory.newObject(youngGenField.getValue(addr));
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    85
    case 1:
29202
bcce9add4235 8073532: jmap -heap fails after generation array removal
mgerdin
parents: 29200
diff changeset
    86
      return genFactory.newObject(oldGenField.getValue(addr));
29200
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    87
    default:
5e480434bef4 8061802: REDO - Remove the generations array
jwilhelm
parents: 27252
diff changeset
    88
      // no generation for i, and assertions disabled.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  public boolean isIn(Address a) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    for (int i = 0; i < nGens(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      Generation gen = getGen(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      if (gen.isIn(a)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5547
diff changeset
   101
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  public long capacity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    long capacity = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    for (int i = 0; i < nGens(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      capacity += getGen(i).capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    return capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  public long used() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    long used = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    for (int i = 0; i < nGens(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      used += getGen(i).used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    return used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  /** Package-private access to GenerationSpecs */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  GenerationSpec spec(int level) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    if (Assert.ASSERTS_ENABLED) {
29794
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   123
      Assert.that((level == 0) || (level == 1), "Index " + level +
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   124
                  " out of range (should be 0 or 1)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
29794
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   127
    if ((level != 0) && (level != 1)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
29794
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   131
    if (level == 0) {
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   132
      return (GenerationSpec)
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   133
              VMObjectFactory.newObject(GenerationSpec.class,
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   134
                      youngGenSpecField.getAddress());
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   135
    } else {
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   136
      return (GenerationSpec)
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   137
              VMObjectFactory.newObject(GenerationSpec.class,
2dcbd946f9a8 8075635: Remove GenerationSpec array
jwilhelm
parents: 29202
diff changeset
   138
                      oldGenSpecField.getAddress());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  public CollectedHeapName kind() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return CollectedHeapName.GEN_COLLECTED_HEAP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  public void printOn(PrintStream tty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    for (int i = 0; i < nGens(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      tty.print("Gen " + i + ": ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      getGen(i).printOn(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      tty.println("Invocations: " + getGen(i).invocations());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      tty.println();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}