src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/VM.java
changeset 50445 bd6b78feb6a3
parent 49902 3661f31c6df4
child 50929 ef57cfcd22ff
equal deleted inserted replaced
50444:db65921e9a9b 50445:bd6b78feb6a3
    77   private long         stackBias;
    77   private long         stackBias;
    78   private long         logAddressSize;
    78   private long         logAddressSize;
    79   private Universe     universe;
    79   private Universe     universe;
    80   private ObjectHeap   heap;
    80   private ObjectHeap   heap;
    81   private SymbolTable  symbols;
    81   private SymbolTable  symbols;
    82   private StringTable  strings;
       
    83   private SystemDictionary dict;
    82   private SystemDictionary dict;
    84   private ClassLoaderDataGraph cldGraph;
    83   private ClassLoaderDataGraph cldGraph;
    85   private Threads      threads;
    84   private Threads      threads;
    86   private ObjectSynchronizer synchronizer;
    85   private ObjectSynchronizer synchronizer;
    87   private JNIHandles   handles;
    86   private JNIHandles   handles;
   653       symbols = SymbolTable.getTheTable();
   652       symbols = SymbolTable.getTheTable();
   654     }
   653     }
   655     return symbols;
   654     return symbols;
   656   }
   655   }
   657 
   656 
   658   public StringTable getStringTable() {
       
   659     if (strings == null) {
       
   660       strings = StringTable.getTheTable();
       
   661     }
       
   662     return strings;
       
   663   }
       
   664 
       
   665   public SystemDictionary getSystemDictionary() {
   657   public SystemDictionary getSystemDictionary() {
   666     if (dict == null) {
   658     if (dict == null) {
   667       dict = new SystemDictionary();
   659       dict = new SystemDictionary();
   668     }
   660     }
   669     return dict;
   661     return dict;