1 /*
   2  * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.memory;
  26 
  27 import java.io.*;
  28 import java.util.*;
  29 import sun.jvm.hotspot.debugger.*;
  30 import sun.jvm.hotspot.gc.shared.*;
  31 import sun.jvm.hotspot.gc.g1.G1CollectedHeap;
  32 import sun.jvm.hotspot.gc.parallel.*;
  33 import sun.jvm.hotspot.oops.*;
  34 import sun.jvm.hotspot.types.*;
  35 import sun.jvm.hotspot.runtime.*;
  36 
  37 
  38 public class Universe {
  39   private static AddressField collectedHeapField;
  40   private static VirtualConstructor heapConstructor;
  41   private static sun.jvm.hotspot.types.OopField mainThreadGroupField;
  42   private static sun.jvm.hotspot.types.OopField systemThreadGroupField;
  43 
  44   // single dimensional primitive array klasses
  45   private static sun.jvm.hotspot.types.AddressField boolArrayKlassField;
  46   private static sun.jvm.hotspot.types.AddressField byteArrayKlassField;
  47   private static sun.jvm.hotspot.types.AddressField charArrayKlassField;
  48   private static sun.jvm.hotspot.types.AddressField intArrayKlassField;
  49   private static sun.jvm.hotspot.types.AddressField shortArrayKlassField;
  50   private static sun.jvm.hotspot.types.AddressField longArrayKlassField;
  51   private static sun.jvm.hotspot.types.AddressField singleArrayKlassField;
  52   private static sun.jvm.hotspot.types.AddressField doubleArrayKlassField;
  53 
  54   private static AddressField narrowOopBaseField;
  55   private static CIntegerField narrowOopShiftField;
  56   private static AddressField narrowKlassBaseField;
  57   private static CIntegerField narrowKlassShiftField;
  58 
  59   public enum NARROW_OOP_MODE {
  60     UnscaledNarrowOop,
  61     ZeroBasedNarrowOop,
  62     HeapBasedNarrowOop
  63   }
  64 
  65   static {
  66     VM.registerVMInitializedObserver(new Observer() {
  67         public void update(Observable o, Object data) {
  68           initialize(VM.getVM().getTypeDataBase());
  69         }
  70       });
  71   }
  72 
  73   private static synchronized void initialize(TypeDataBase db) {
  74     Type type = db.lookupType("Universe");
  75 
  76     collectedHeapField = type.getAddressField("_collectedHeap");
  77 
  78     heapConstructor = new VirtualConstructor(db);
  79     heapConstructor.addMapping("GenCollectedHeap", GenCollectedHeap.class);
  80     heapConstructor.addMapping("ParallelScavengeHeap", ParallelScavengeHeap.class);
  81     heapConstructor.addMapping("G1CollectedHeap", G1CollectedHeap.class);
  82 
  83     mainThreadGroupField   = type.getOopField("_main_thread_group");
  84     systemThreadGroupField = type.getOopField("_system_thread_group");
  85 
  86     boolArrayKlassField      = type.getAddressField("_boolArrayKlassObj");
  87     byteArrayKlassField      = type.getAddressField("_byteArrayKlassObj");
  88     charArrayKlassField      = type.getAddressField("_charArrayKlassObj");
  89     intArrayKlassField       = type.getAddressField("_intArrayKlassObj");
  90     shortArrayKlassField     = type.getAddressField("_shortArrayKlassObj");
  91     longArrayKlassField      = type.getAddressField("_longArrayKlassObj");
  92     singleArrayKlassField    = type.getAddressField("_singleArrayKlassObj");
  93     doubleArrayKlassField    = type.getAddressField("_doubleArrayKlassObj");
  94 
  95     narrowOopBaseField = type.getAddressField("_narrow_oop._base");
  96     narrowOopShiftField = type.getCIntegerField("_narrow_oop._shift");
  97     narrowKlassBaseField = type.getAddressField("_narrow_klass._base");
  98     narrowKlassShiftField = type.getCIntegerField("_narrow_klass._shift");
  99 
 100     UniverseExt.initialize(heapConstructor);
 101   }
 102 
 103   public Universe() {
 104   }
 105   public static String narrowOopModeToString(NARROW_OOP_MODE mode) {
 106     switch (mode) {
 107     case UnscaledNarrowOop:
 108       return "32-bits Oops";
 109     case ZeroBasedNarrowOop:
 110       return "zero based Compressed Oops";
 111     case HeapBasedNarrowOop:
 112       return "Compressed Oops with base";
 113     }
 114     return "";
 115   }
 116   public CollectedHeap heap() {
 117     return (CollectedHeap) heapConstructor.instantiateWrapperFor(collectedHeapField.getValue());
 118   }
 119 
 120   public static long getNarrowOopBase() {
 121     if (narrowOopBaseField.getValue() == null) {
 122       return 0;
 123     } else {
 124       return narrowOopBaseField.getValue().minus(null);
 125     }
 126   }
 127 
 128   public static int getNarrowOopShift() {
 129     return (int)narrowOopShiftField.getValue();
 130   }
 131 
 132   public static long getNarrowKlassBase() {
 133     if (narrowKlassBaseField.getValue() == null) {
 134       return 0;
 135     } else {
 136       return narrowKlassBaseField.getValue().minus(null);
 137     }
 138   }
 139 
 140   public static int getNarrowKlassShift() {
 141     return (int)narrowKlassShiftField.getValue();
 142   }
 143 
 144 
 145   /** Returns "TRUE" iff "p" points into the allocated area of the heap. */
 146   public boolean isIn(Address p) {
 147     return heap().isIn(p);
 148   }
 149 
 150   /** Returns "TRUE" iff "p" points into the reserved area of the heap. */
 151   public boolean isInReserved(Address p) {
 152     return heap().isInReserved(p);
 153   }
 154 
 155   private Oop newOop(OopHandle handle) {
 156     return VM.getVM().getObjectHeap().newOop(handle);
 157   }
 158 
 159   public Oop mainThreadGroup() {
 160     return newOop(mainThreadGroupField.getValue());
 161   }
 162 
 163   public Oop systemThreadGroup() {
 164     return newOop(systemThreadGroupField.getValue());
 165   }
 166 
 167   // iterate through the single dimensional primitive array klasses
 168   // refer to basic_type_classes_do(void f(Klass*)) in universe.cpp
 169   public void basicTypeClassesDo(SystemDictionary.ClassVisitor visitor) {
 170     visitor.visit(new TypeArrayKlass(boolArrayKlassField.getValue()));
 171     visitor.visit(new TypeArrayKlass(byteArrayKlassField.getValue()));
 172     visitor.visit(new TypeArrayKlass(charArrayKlassField.getValue()));
 173     visitor.visit(new TypeArrayKlass(intArrayKlassField.getValue()));
 174     visitor.visit(new TypeArrayKlass(shortArrayKlassField.getValue()));
 175     visitor.visit(new TypeArrayKlass(longArrayKlassField.getValue()));
 176     visitor.visit(new TypeArrayKlass(singleArrayKlassField.getValue()));
 177     visitor.visit(new TypeArrayKlass(doubleArrayKlassField.getValue()));
 178   }
 179 
 180   public void print() { printOn(System.out); }
 181   public void printOn(PrintStream tty) {
 182     heap().printOn(tty);
 183   }
 184 
 185   // Check whether an element of a typeArrayOop with the given type must be
 186   // aligned 0 mod 8.  The typeArrayOop itself must be aligned at least this
 187   // strongly.
 188   public static boolean elementTypeShouldBeAligned(BasicType type) {
 189     return type == BasicType.T_DOUBLE || type == BasicType.T_LONG;
 190   }
 191 
 192   // Check whether an object field (static/non-static) of the given type must be
 193   // aligned 0 mod 8.
 194   public static boolean fieldTypeShouldBeAligned(BasicType type) {
 195     return type == BasicType.T_DOUBLE || type == BasicType.T_LONG;
 196   }
 197 }