hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/Method.java
author jiangli
Tue, 11 Dec 2012 12:41:31 -0500
changeset 14745 03904dd8649b
parent 14586 1262473e8fc1
child 17000 11bf92e571a2
permissions -rw-r--r--
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing. Summary: Move _max_locals and _size_of_parameters to ConstMethod for better sharing. Reviewed-by: coleenp, minqi, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 10547
diff changeset
     2
 * Copyright (c) 2000, 2012, 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.oops;
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.code.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.interpreter.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.memory.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
import sun.jvm.hotspot.types.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
import sun.jvm.hotspot.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// A Method represents a Java method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    39
public class Method extends Metadata {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    VM.registerVMInitializedObserver(new Observer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
        public void update(Observable o, Object data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
          initialize(VM.getVM().getTypeDataBase());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  private static synchronized void initialize(TypeDataBase db) throws WrongTypeException {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    49
    Type type                  = db.lookupType("Method");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    50
    constMethod                = type.getAddressField("_constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    51
    methodData                 = type.getAddressField("_method_data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    methodSize                 = new CIntField(type.getCIntegerField("_method_size"), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    accessFlags                = new CIntField(type.getCIntegerField("_access_flags"), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    code                       = type.getAddressField("_code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    vtableIndex                = new CIntField(type.getCIntegerField("_vtable_index"), 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    if (!VM.getVM().isCore()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
      invocationCounter        = new CIntField(type.getCIntegerField("_invocation_counter"), 0);
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    58
      backedgeCounter          = new CIntField(type.getCIntegerField("_backedge_counter"), 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    bytecodeOffset = type.getSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    62
    interpreterThrowoutCountField = new CIntField(type.getCIntegerField("_interpreter_throwout_count"), 0);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    63
    interpreterInvocationCountField = new CIntField(type.getCIntegerField("_interpreter_invocation_count"), 0);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    interpreterEntry           = type.getAddressField("_interpreter_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    fromCompiledCodeEntryPoint = type.getAddressField("_from_compiled_code_entry_point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    objectInitializerName = null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    classInitializerName = null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    74
  public Method(Address addr) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    75
    super(addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  public boolean isMethod()            { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Fields
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    81
  private static AddressField  constMethod;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    82
  private static AddressField  methodData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  private static CIntField methodSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  private static CIntField accessFlags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  private static CIntField vtableIndex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  private static CIntField invocationCounter;
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    87
  private static CIntField backedgeCounter;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  private static long      bytecodeOffset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  private static AddressField       code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    92
  private static CIntField interpreterThrowoutCountField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    93
  private static CIntField interpreterInvocationCountField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
    94
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // constant method names - <init>, <clinit>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Initialized lazily to avoid initialization ordering dependencies between Method and SymbolTable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  private static Symbol objectInitializerName;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  private static Symbol classInitializerName;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  private static Symbol objectInitializerName() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    if (objectInitializerName == null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      objectInitializerName = VM.getVM().getSymbolTable().probe("<init>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    return objectInitializerName;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  private static Symbol classInitializerName() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    if (classInitializerName == null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      classInitializerName = VM.getVM().getSymbolTable().probe("<clinit>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    return classInitializerName;
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 AddressCField       interpreterEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  private static AddressCField       fromCompiledCodeEntryPoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Accessors for declared fields
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   119
  public ConstMethod  getConstMethod()                {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   120
    Address addr = constMethod.getValue(getAddress());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   121
    return (ConstMethod) VMObjectFactory.newObject(ConstMethod.class, addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   122
  }
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 10547
diff changeset
   123
  public ConstantPool getConstants()                  {
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 10547
diff changeset
   124
    return getConstMethod().getConstants();
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 10547
diff changeset
   125
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   126
  public MethodData   getMethodData()                 {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   127
    Address addr = methodData.getValue(getAddress());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   128
    return (MethodData) VMObjectFactory.newObject(MethodData.class, addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   129
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  /** WARNING: this is in words, not useful in this system; use getObjectSize() instead */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  public long         getMethodSize()                 { return                methodSize.getValue(this);        }
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14477
diff changeset
   132
  public long         getMaxStack()                   { return                getConstMethod().getMaxStack();   }
14745
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   133
  public long         getMaxLocals()                  { return                getConstMethod().getMaxLocals();         }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   134
  public long         getSizeOfParameters()           { return                getConstMethod().getSizeOfParameters();  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  public long         getNameIndex()                  { return                getConstMethod().getNameIndex();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  public long         getSignatureIndex()             { return            getConstMethod().getSignatureIndex(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  public long         getGenericSignatureIndex()      { return     getConstMethod().getGenericSignatureIndex(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  public long         getAccessFlags()                { return                accessFlags.getValue(this);       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  public long         getCodeSize()                   { return                getConstMethod().getCodeSize();   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  public long         getVtableIndex()                { return                vtableIndex.getValue(this);       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  public long         getInvocationCounter()          {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      Assert.that(!VM.getVM().isCore(), "must not be used in core build");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    return invocationCounter.getValue(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   147
  public long         getBackedgeCounter()          {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   148
    if (Assert.ASSERTS_ENABLED) {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   149
      Assert.that(!VM.getVM().isCore(), "must not be used in core build");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   150
    }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   151
    return backedgeCounter.getValue(this);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   152
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // get associated compiled native method, if available, else return null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  public NMethod getNativeMethod() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   156
    Address addr = code.getValue(getAddress());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    return (NMethod) VMObjectFactory.newObject(NMethod.class, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // Convenience routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  public AccessFlags getAccessFlagsObj() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    return new AccessFlags(getAccessFlags());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  /** Get a bytecode or breakpoint at the given bci */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  public int getBytecodeOrBPAt(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    return getConstMethod().getBytecodeOrBPAt(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  /** Fetch the original non-breakpoint bytecode at the specified
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      bci. It is required that there is currently a bytecode at this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      bci. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  public int getOrigBytecodeAt(int bci) {
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   174
    BreakpointInfo bp = getMethodHolder().getBreakpoints();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    for (; bp != null; bp = bp.getNext()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      if (bp.match(this, bci)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        return bp.getOrigBytecode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    System.err.println("Requested bci " + bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    for (; bp != null; bp = bp.getNext()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      System.err.println("Breakpoint at bci " + bp.getBCI() + ", bytecode " +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                         bp.getOrigBytecode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    Assert.that(false, "Should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    return -1; // not reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  public byte getBytecodeByteArg(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    return getConstMethod().getBytecodeByteArg(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  /** Fetches a 16-bit big-endian ("Java ordered") value from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      bytecode stream */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  public short getBytecodeShortArg(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    return getConstMethod().getBytecodeShortArg(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
10251
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   199
  /** Fetches a 16-bit native ordered value from the
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   200
      bytecode stream */
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   201
  public short getNativeShortArg(int bci) {
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   202
    return getConstMethod().getNativeShortArg(bci);
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   203
  }
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   204
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  /** Fetches a 32-bit big-endian ("Java ordered") value from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      bytecode stream */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  public int getBytecodeIntArg(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    return getConstMethod().getBytecodeIntArg(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
10251
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   211
  /** Fetches a 32-bit native ordered value from the
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   212
      bytecode stream */
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   213
  public int getNativeIntArg(int bci) {
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   214
    return getConstMethod().getNativeIntArg(bci);
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   215
  }
71b8938a2821 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 8921
diff changeset
   216
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  public byte[] getByteCode() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    return getConstMethod().getByteCode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  public Address      getCode()                       { return codeField.getValue(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  public Address      getInterpreterEntry()           { return interpreterEntryField.getValue(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  public Address      getFromCompiledCodeEntryPoint() { return fromCompiledCodeEntryPointField.getValue(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // Accessors
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
   227
  public Symbol  getName()          { return getConstants().getSymbolAt(getNameIndex());         }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
   228
  public Symbol  getSignature()     { return getConstants().getSymbolAt(getSignatureIndex());    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  public Symbol  getGenericSignature() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
     long index = getGenericSignatureIndex();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
   231
     return (index != 0L) ? getConstants().getSymbolAt(index) : null;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Method holder (the Klass holding this method)
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   235
  public InstanceKlass   getMethodHolder()  { return getConstants().getPoolHolder();                   }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // Access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  public boolean isPublic()         { return getAccessFlagsObj().isPublic();                           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  public boolean isPrivate()        { return getAccessFlagsObj().isPrivate();                          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  public boolean isProtected()      { return getAccessFlagsObj().isProtected();                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  public boolean isPackagePrivate() { AccessFlags af = getAccessFlagsObj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
                                      return (!af.isPublic() && !af.isPrivate() && !af.isProtected()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  public boolean isStatic()         { return getAccessFlagsObj().isStatic();                           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  public boolean isFinal()          { return getAccessFlagsObj().isFinal();                            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  public boolean isSynchronized()   { return getAccessFlagsObj().isSynchronized();                     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  public boolean isBridge()         { return getAccessFlagsObj().isBridge();                           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  public boolean isVarArgs()        { return getAccessFlagsObj().isVarArgs();                          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  public boolean isNative()         { return getAccessFlagsObj().isNative();                           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  public boolean isAbstract()       { return getAccessFlagsObj().isAbstract();                         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  public boolean isStrict()         { return getAccessFlagsObj().isStrict();                           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  public boolean isSynthetic()      { return getAccessFlagsObj().isSynthetic();                        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  public boolean isConstructor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
     return (!isStatic()) && getName().equals(objectInitializerName());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  public boolean isStaticInitializer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
     return isStatic() && getName().equals(classInitializerName());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  public boolean isObsolete() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
     return getAccessFlagsObj().isObsolete();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  public OopMapCacheEntry getMaskFor(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    OopMapCacheEntry entry = new OopMapCacheEntry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    entry.fill(this, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   271
  public long getSize() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   272
    return getMethodSize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  public void printValueOn(PrintStream tty) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   276
    tty.print("Method " + getName().asString() + getSignature().asString() + "@" + getAddress());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   279
  public void iterateFields(MetadataVisitor visitor) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      visitor.doCInt(methodSize, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      visitor.doCInt(accessFlags, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  public boolean hasLineNumberTable() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    return getConstMethod().hasLineNumberTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  public int getLineNumberFromBCI(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    return getConstMethod().getLineNumberFromBCI(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  public LineNumberTableElement[] getLineNumberTable() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    return getConstMethod().getLineNumberTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  public boolean hasLocalVariableTable() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    return getConstMethod().hasLocalVariableTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  /** Should only be called if table is present */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  public LocalVariableTableElement[] getLocalVariableTable() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    return getConstMethod().getLocalVariableTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  public Symbol getLocalVariableName(int bci, int slot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    if (! hasLocalVariableTable()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
       return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    LocalVariableTableElement[] locals = getLocalVariableTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    for (int l = 0; l < locals.length; l++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
       LocalVariableTableElement local = locals[l];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
       if ((bci >= local.getStartBCI()) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
          (bci < (local.getStartBCI() + local.getLength())) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
          slot == local.getSlot()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
          return getConstants().getSymbolAt(local.getNameCPIndex());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   323
  public boolean hasExceptionTable() {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   324
    return getConstMethod().hasExceptionTable();
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   325
  }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   326
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   327
  public ExceptionTableElement[] getExceptionTable() {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   328
    return getConstMethod().getExceptionTable();
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   329
  }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   330
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  public boolean hasCheckedExceptions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    return getConstMethod().hasCheckedExceptions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  /** Should only be called if table is present */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  public CheckedExceptionElement[] getCheckedExceptions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return getConstMethod().getCheckedExceptions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  /** Returns name and signature in external form for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      purposes */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  public String externalNameAndSignature() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    final StringBuffer buf = new StringBuffer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    buf.append(getMethodHolder().getName().asString());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    buf.append(".");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    buf.append(getName().asString());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    buf.append("(");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    new SignatureConverter(getSignature(), buf).iterateParameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    buf.append(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    return buf.toString().replace('/', '.');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  }
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   352
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   353
  public void dumpReplayData(PrintStream out) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   354
      NMethod nm = getNativeMethod();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   355
      int code_size = 0;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   356
      if (nm != null) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   357
        code_size = (int)nm.codeEnd().minus(nm.getVerifiedEntryPoint());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   358
      }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   359
      Klass holder = getMethodHolder();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   360
      out.println("ciMethod " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   361
                  holder.getName().asString() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   362
                  OopUtilities.escapeString(getName().asString()) + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   363
                  getSignature().asString() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   364
                  getInvocationCounter() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   365
                  getBackedgeCounter() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   366
                  interpreterInvocationCount() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   367
                  interpreterThrowoutCount() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   368
                  code_size);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   369
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   370
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   371
  public int interpreterThrowoutCount() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   372
    return (int) interpreterThrowoutCountField.getValue(this);
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   373
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   374
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   375
  public int interpreterInvocationCount() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   376
    return (int) interpreterInvocationCountField.getValue(this);
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10251
diff changeset
   377
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
}