< prev index next >

agent/src/share/classes/sun/jvm/hotspot/memory/Universe.java

Print this page
rev 8364 : [mq]: sa


  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_interface.*;
  31 import sun.jvm.hotspot.gc_implementation.g1.G1CollectedHeap;
  32 import sun.jvm.hotspot.gc_implementation.parallelScavenge.*;
  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;




  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;


< prev index next >