hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/SymbolTable.java
author jiangli
Fri, 30 Jan 2015 20:31:05 -0500
changeset 28822 fa57694ade05
parent 22234 da823d78ad65
permissions -rw-r--r--
8071962: The SA code needs to be updated to support Symbol lookup from the shared archive. Summary: Support shared symbols lookup. Reviewed-by: minqi, sspitsyn, dsamersoff, iklam
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28822
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
     2
 * Copyright (c) 2001, 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
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.oops.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.types.*;
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.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
public class SymbolTable extends sun.jvm.hotspot.utilities.Hashtable {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  static {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    VM.registerVMInitializedObserver(new Observer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
        public void update(Observable o, Object data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
          initialize(VM.getVM().getTypeDataBase());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  private static synchronized void initialize(TypeDataBase db) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    Type type = db.lookupType("SymbolTable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    theTableField  = type.getAddressField("_the_table");
28822
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    47
    sharedTableField = type.getAddressField("_shared_table");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  private static AddressField theTableField;
28822
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    52
  private static AddressField sharedTableField;
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    53
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    54
  private CompactHashTable sharedTable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  public static SymbolTable getTheTable() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    Address tmp = theTableField.getValue();
28822
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    59
    SymbolTable table = (SymbolTable) VMObjectFactory.newObject(SymbolTable.class, tmp);
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    60
    Address shared = sharedTableField.getStaticFieldAddress();
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    61
    table.sharedTable = (CompactHashTable)VMObjectFactory.newObject(CompactHashTable.class, shared);
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    62
    return table;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  public SymbolTable(Address addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    super(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  /** Clone of VM's "temporary" probe routine, as the SA currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      does not support mutation so lookup() would have no effect
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      anyway. Returns null if the given string is not in the symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      table. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  public Symbol probe(String name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      return probe(toModifiedUTF8Bytes(name));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    } catch (IOException e) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  /** Clone of VM's "temporary" probe routine, as the SA currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      does not support mutation so lookup() would have no effect
28822
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    83
      anyway. Searches the regular symbol table and the shared symbol
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    84
      table. Null is returned if the given name is not found in both
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    85
      tables. */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  public Symbol probe(byte[] name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    long hashValue = hashSymbol(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    for (HashtableEntry e = (HashtableEntry) bucket(hashToIndex(hashValue)); e != null; e = (HashtableEntry) e.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      if (e.hash() == hashValue) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
    90
         Symbol sym = Symbol.create(e.literalValue());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
         if (sym.equals(name)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
           return sym;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    }
28822
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    96
fa57694ade05 8071962: The SA code needs to be updated to support Symbol lookup from the shared archive.
jiangli
parents: 22234
diff changeset
    97
    return sharedTable.probe(name, hashValue);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  public interface SymbolVisitor {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    public void visit(Symbol sym);
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 void symbolsDo(SymbolVisitor visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    int numBuckets = tableSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    for (int i = 0; i < numBuckets; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      for (HashtableEntry e = (HashtableEntry) bucket(i); e != null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
           e = (HashtableEntry) e.next()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
   109
        visitor.visit(Symbol.create(e.literalValue()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  private static byte[] toModifiedUTF8Bytes(String name) throws IOException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    DataOutputStream dos = new DataOutputStream(baos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    dos.writeUTF(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    dos.flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    byte[] buf = baos.toByteArray();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    byte[] res = new byte[buf.length - 2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // skip the length part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    System.arraycopy(buf, 2, res, 0, res.length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}