hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/Universe.java
author xdono
Tue, 28 Jul 2009 12:12:40 -0700
changeset 3261 c7d5aae8d3f7
parent 2254 f13dda645a4b
child 5547 f4b087cbb361
permissions -rw-r--r--
6862919: Update copyright year Summary: Update copyright for files that have been modified in 2009, up to 07/09 Reviewed-by: tbell, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2254
diff changeset
     2
 * Copyright 2000-2009 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.gc_interface.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.gc_implementation.parallelScavenge.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.oops.*;
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.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
public class Universe {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  private static AddressField collectedHeapField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  private static VirtualConstructor heapConstructor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  private static sun.jvm.hotspot.types.OopField mainThreadGroupField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  private static sun.jvm.hotspot.types.OopField systemThreadGroupField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // single dimensional primitive array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  private static sun.jvm.hotspot.types.OopField boolArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  private static sun.jvm.hotspot.types.OopField byteArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  private static sun.jvm.hotspot.types.OopField charArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  private static sun.jvm.hotspot.types.OopField intArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  private static sun.jvm.hotspot.types.OopField shortArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  private static sun.jvm.hotspot.types.OopField longArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  private static sun.jvm.hotspot.types.OopField singleArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  private static sun.jvm.hotspot.types.OopField doubleArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // system obj array klass object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  private static sun.jvm.hotspot.types.OopField systemObjArrayKlassObjField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
    56
  private static AddressField narrowOopBaseField;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
    57
  private static CIntegerField narrowOopShiftField;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    58
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    VM.registerVMInitializedObserver(new Observer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
        public void update(Observable o, Object data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
          initialize(VM.getVM().getTypeDataBase());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  private static synchronized void initialize(TypeDataBase db) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    Type type = db.lookupType("Universe");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    collectedHeapField = type.getAddressField("_collectedHeap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    heapConstructor = new VirtualConstructor(db);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    heapConstructor.addMapping("GenCollectedHeap", GenCollectedHeap.class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    heapConstructor.addMapping("ParallelScavengeHeap", ParallelScavengeHeap.class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    mainThreadGroupField   = type.getOopField("_main_thread_group");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    systemThreadGroupField = type.getOopField("_system_thread_group");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    boolArrayKlassObjField = type.getOopField("_boolArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    byteArrayKlassObjField = type.getOopField("_byteArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    charArrayKlassObjField = type.getOopField("_charArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    intArrayKlassObjField = type.getOopField("_intArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    shortArrayKlassObjField = type.getOopField("_shortArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    longArrayKlassObjField = type.getOopField("_longArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    singleArrayKlassObjField = type.getOopField("_singleArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    doubleArrayKlassObjField = type.getOopField("_doubleArrayKlassObj");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    systemObjArrayKlassObjField = type.getOopField("_systemObjArrayKlassObj");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    89
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
    90
    narrowOopBaseField = type.getAddressField("_narrow_oop._base");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
    91
    narrowOopShiftField = type.getCIntegerField("_narrow_oop._shift");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  public Universe() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  public CollectedHeap heap() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      return (CollectedHeap) heapConstructor.instantiateWrapperFor(collectedHeapField.getValue());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    } catch (WrongTypeException e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      return new CollectedHeap(collectedHeapField.getValue());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   105
  public static long getNarrowOopBase() {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   106
    if (narrowOopBaseField.getValue() == null) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   107
      return 0;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   108
    } else {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   109
      return narrowOopBaseField.getValue().minus(null);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   110
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   111
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   112
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   113
  public static int getNarrowOopShift() {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   114
    return (int)narrowOopShiftField.getValue();
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   115
  }
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   116
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  /** Returns "TRUE" iff "p" points into the allocated area of the heap. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  public boolean isIn(Address p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    return heap().isIn(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  /** Returns "TRUE" iff "p" points into the reserved area of the heap. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  public boolean isInReserved(Address p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return heap().isInReserved(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  private Oop newOop(OopHandle handle) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    return VM.getVM().getObjectHeap().newOop(handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  public Oop mainThreadGroup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    return newOop(mainThreadGroupField.getValue());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  public Oop systemThreadGroup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    return newOop(systemThreadGroupField.getValue());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  public Oop systemObjArrayKlassObj() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    return newOop(systemObjArrayKlassObjField.getValue());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // iterate through the single dimensional primitive array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // refer to basic_type_classes_do(void f(klassOop)) in universe.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  public void basicTypeClassesDo(SystemDictionary.ClassVisitor visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    visitor.visit((Klass)newOop(boolArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    visitor.visit((Klass)newOop(byteArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    visitor.visit((Klass)newOop(charArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    visitor.visit((Klass)newOop(intArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    visitor.visit((Klass)newOop(shortArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    visitor.visit((Klass)newOop(longArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    visitor.visit((Klass)newOop(singleArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    visitor.visit((Klass)newOop(doubleArrayKlassObjField.getValue()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  public void print() { printOn(System.out); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  public void printOn(PrintStream tty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    heap().printOn(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Check whether an element of a typeArrayOop with the given type must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // aligned 0 mod 8.  The typeArrayOop itself must be aligned at least this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // strongly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  public static boolean elementTypeShouldBeAligned(BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    return type == BasicType.T_DOUBLE || type == BasicType.T_LONG;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Check whether an object field (static/non-static) of the given type must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // aligned 0 mod 8.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  public static boolean fieldTypeShouldBeAligned(BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    return type == BasicType.T_DOUBLE || type == BasicType.T_LONG;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}