hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/BytecodeLoadConstant.java
author jrose
Sat, 30 Oct 2010 13:08:23 -0700
changeset 7114 65d21c4c6337
parent 5882 6b2aecc4f7d8
child 8076 96d498ec7ae1
permissions -rw-r--r--
6984311: JSR 292 needs optional bootstrap method parameters Summary: Allow CONSTANT_InvokeDynamic nodes to have any number of extra operands. Reviewed-by: twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 5882
diff changeset
     2
 * Copyright (c) 2002, 2010, 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.interpreter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
import sun.jvm.hotspot.oops.*;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    28
import sun.jvm.hotspot.runtime.*;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
import sun.jvm.hotspot.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
public class BytecodeLoadConstant extends BytecodeWithCPIndex {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  BytecodeLoadConstant(Method method, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    super(method, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    36
  public boolean hasCacheIndex() {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    37
    // normal ldc uses CP index, but fast_aldc uses swapped CP cache index
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    38
    return javaCode() != code();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    39
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    40
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  public int index() {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    42
    int i = javaCode() == Bytecodes._ldc ?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                 (int) (0xFF & javaByteAt(1))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
               : (int) (0xFFFF & javaShortAt(1));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    45
    if (hasCacheIndex()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    46
      return (0xFFFF & VM.getVM().getBytes().swapShort((short) i));
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    47
    } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    48
      return i;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    49
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    50
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    51
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    52
  public int poolIndex() {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    53
    int i = index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    54
    if (hasCacheIndex()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    55
      ConstantPoolCache cpCache = method().getConstants().getCache();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    56
      return cpCache.getEntryAt(i).getConstantPoolIndex();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    57
    } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    58
      return i;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    59
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    60
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    61
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    62
  public int cacheIndex() {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    63
    if (hasCacheIndex()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    64
      return index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    65
    } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    66
      return -1;  // no cache index
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    67
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    68
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    69
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    70
  private Oop getCachedConstant() {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    71
    int i = cacheIndex();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    72
    if (i >= 0) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    73
      ConstantPoolCache cpCache = method().getConstants().getCache();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    74
      return cpCache.getEntryAt(i).getF1();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    75
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    76
    return null;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  public void verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      Assert.that(isValid(), "check load constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  public boolean isValid() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    int jcode = javaCode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    boolean codeOk = jcode == Bytecodes._ldc || jcode == Bytecodes._ldc_w ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
           jcode == Bytecodes._ldc2_w;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    if (! codeOk) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    ConstantTag ctag = method().getConstants().getTagAt(index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    if (jcode == Bytecodes._ldc2_w) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
       // has to be double or long
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
       return (ctag.isDouble() || ctag.isLong()) ? true: false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
       // has to be int or float or String or Klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
       return (ctag.isUnresolvedString() || ctag.isString()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
               || ctag.isUnresolvedKlass() || ctag.isKlass()
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    99
               || ctag.isMethodHandle() || ctag.isMethodType()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
               || ctag.isInt() || ctag.isFloat())? true: false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    }
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 boolean isKlassConstant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    int jcode = javaCode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    if (jcode == Bytecodes._ldc2_w) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
       return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    ConstantTag ctag = method().getConstants().getTagAt(index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    return ctag.isKlass() || ctag.isUnresolvedKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // return Symbol (if unresolved) or Klass (if resolved)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  public Oop getKlass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      Assert.that(isKlassConstant(), "not a klass literal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    // tag change from 'unresolved' to 'klass' does not happen atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    // We just look at the object at the corresponding index and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // decide based on the oop type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    ConstantPool cpool = method().getConstants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    int cpIndex = index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    Oop oop = cpool.getObjAt(cpIndex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    if (oop.isKlass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
       return (Klass) oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    } else if (oop.isSymbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
       return (Symbol) oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
       throw new RuntimeException("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  public static BytecodeLoadConstant at(Method method, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    BytecodeLoadConstant b = new BytecodeLoadConstant(method, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      b.verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    return b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  /** Like at, but returns null if the BCI is not at ldc or ldc_w or ldc2_w  */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  public static BytecodeLoadConstant atCheck(Method method, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    BytecodeLoadConstant b = new BytecodeLoadConstant(method, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    return (b.isValid() ? b : null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  public static BytecodeLoadConstant at(BytecodeStream bcs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    return new BytecodeLoadConstant(bcs.method(), bcs.bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  public String getConstantValue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    ConstantPool cpool = method().getConstants();
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   154
    int cpIndex = poolIndex();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    ConstantTag ctag = cpool.getTagAt(cpIndex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    if (ctag.isInt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
       return "<int " + Integer.toString(cpool.getIntAt(cpIndex)) +">";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    } else if (ctag.isLong()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
       return "<long " + Long.toString(cpool.getLongAt(cpIndex)) + "L>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    } else if (ctag.isFloat()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
       return "<float " + Float.toString(cpool.getFloatAt(cpIndex)) + "F>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    } else if (ctag.isDouble()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
       return "<double " + Double.toString(cpool.getDoubleAt(cpIndex)) + "D>";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    } else if (ctag.isString() || ctag.isUnresolvedString()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
       // tag change from 'unresolved' to 'string' does not happen atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
       // We just look at the object at the corresponding index and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
       // decide based on the oop type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
       Oop obj = cpool.getObjAt(cpIndex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
       if (obj.isSymbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
          Symbol sym = (Symbol) obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
          return "<String \"" + sym.asString() + "\">";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
       } else if (obj.isInstance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
          return "<String \"" + OopUtilities.stringOopToString(obj) + "\">";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
          throw new RuntimeException("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    } else if (ctag.isKlass() || ctag.isUnresolvedKlass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
       // tag change from 'unresolved' to 'klass' does not happen atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
       // We just look at the object at the corresponding index and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
       // decide based on the oop type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
       Oop obj = cpool.getObjAt(cpIndex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
       if (obj.isKlass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
          Klass k = (Klass) obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
          return "<Class " + k.getName().asString() + "@" + k.getHandle() + ">";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
       } else if (obj.isSymbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
          Symbol sym = (Symbol) obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
          return "<Class " + sym.asString() + ">";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
          throw new RuntimeException("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
       }
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 5882
diff changeset
   191
    } else if (ctag.isMethodHandle()) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   192
       Oop x = getCachedConstant();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   193
       int refidx = cpool.getMethodHandleIndexAt(cpIndex);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   194
       int refkind = cpool.getMethodHandleRefKindAt(cpIndex);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   195
       return "<MethodHandle kind=" + Integer.toString(refkind) +
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   196
           " ref=" + Integer.toString(refidx)
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   197
           + (x == null ? "" : " @" + x.getHandle()) + ">";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   198
    } else if (ctag.isMethodType()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   199
       Oop x = getCachedConstant();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   200
       int refidx = cpool.getMethodTypeIndexAt(cpIndex);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   201
       return "<MethodType " + cpool.getSymbolAt(refidx).asString()
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   202
           + (x == null ? "" : " @" + x.getHandle()) + ">";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
       if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
         Assert.that(false, "invalid load constant type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
       return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  public String toString() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    StringBuffer buf = new StringBuffer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    buf.append(getJavaBytecodeName());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    buf.append(spaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    buf.append('#');
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   216
    buf.append(Integer.toString(poolIndex()));
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   217
    if (hasCacheIndex()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   218
       buf.append('(');
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   219
       buf.append(Integer.toString(cacheIndex()));
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   220
       buf.append(')');
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   221
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    buf.append(spaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    buf.append(getConstantValue());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    if (code() != javaCode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
       buf.append(spaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
       buf.append('[');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
       buf.append(getBytecodeName());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
       buf.append(']');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    return buf.toString();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}