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