annotate agent/src/share/classes/sun/jvm/hotspot/interpreter/BytecodeLoadConstant.java @ 3904:2090c623107e

7016881: JSR 292: JDI: sun.jvm.hotspot.utilities.AssertionFailure: index out of bounds Reviewed-by: kvn, twisti
author never
date Fri, 02 Sep 2011 22:00:49 -0700
parents 6a991dcb52bb
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2177
diff changeset
2 * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 package sun.jvm.hotspot.interpreter;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 import sun.jvm.hotspot.oops.*;
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
28 import sun.jvm.hotspot.runtime.*;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29 import sun.jvm.hotspot.utilities.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
30
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
31 public class BytecodeLoadConstant extends Bytecode {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 BytecodeLoadConstant(Method method, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 super(method, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
34 }
a61af66fc99e Initial load
duke
parents:
diff changeset
35
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
36 public boolean hasCacheIndex() {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
37 // normal ldc uses CP index, but fast_aldc uses swapped CP cache index
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
38 return code() >= Bytecodes.number_of_java_codes;
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
39 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
40
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
41 int rawIndex() {
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
42 if (javaCode() == Bytecodes._ldc)
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
43 return getIndexU1();
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
44 else
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
45 return getIndexU2(code(), false);
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
46 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
47
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
48 public int poolIndex() {
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
49 int i = rawIndex();
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
50 if (hasCacheIndex()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
51 ConstantPoolCache cpCache = method().getConstants().getCache();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
52 return cpCache.getEntryAt(i).getConstantPoolIndex();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
53 } else {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
54 return i;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
55 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
56 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
57
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
58 public int cacheIndex() {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
59 if (hasCacheIndex()) {
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
60 return rawIndex();
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
61 } else {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
62 return -1; // no cache index
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
63 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
64 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
65
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
66 public BasicType resultType() {
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
67 int index = poolIndex();
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
68 ConstantTag tag = method().getConstants().getTagAt(index);
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
69 return tag.basicType();
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
70 }
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
71
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
72 private Oop getCachedConstant() {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
73 int i = cacheIndex();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
74 if (i >= 0) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
75 ConstantPoolCache cpCache = method().getConstants().getCache();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
76 return cpCache.getEntryAt(i).getF1();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
77 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
78 return null;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 public void verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 Assert.that(isValid(), "check load constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 public boolean isValid() {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 int jcode = javaCode();
a61af66fc99e Initial load
duke
parents:
diff changeset
89 boolean codeOk = jcode == Bytecodes._ldc || jcode == Bytecodes._ldc_w ||
a61af66fc99e Initial load
duke
parents:
diff changeset
90 jcode == Bytecodes._ldc2_w;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 if (! codeOk) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
92
3904
2090c623107e 7016881: JSR 292: JDI: sun.jvm.hotspot.utilities.AssertionFailure: index out of bounds
never
parents: 3838
diff changeset
93 ConstantTag ctag = method().getConstants().getTagAt(poolIndex());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if (jcode == Bytecodes._ldc2_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // has to be double or long
a61af66fc99e Initial load
duke
parents:
diff changeset
96 return (ctag.isDouble() || ctag.isLong()) ? true: false;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // has to be int or float or String or Klass
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return (ctag.isUnresolvedString() || ctag.isString()
a61af66fc99e Initial load
duke
parents:
diff changeset
100 || ctag.isUnresolvedKlass() || ctag.isKlass()
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
101 || ctag.isMethodHandle() || ctag.isMethodType()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 || ctag.isInt() || ctag.isFloat())? true: false;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 public boolean isKlassConstant() {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int jcode = javaCode();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (jcode == Bytecodes._ldc2_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
112 ConstantTag ctag = method().getConstants().getTagAt(poolIndex());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
113 return ctag.isKlass() || ctag.isUnresolvedKlass();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // return Symbol (if unresolved) or Klass (if resolved)
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
117 public Object getKlass() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
118 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 Assert.that(isKlassConstant(), "not a klass literal");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // tag change from 'unresolved' to 'klass' does not happen atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // We just look at the object at the corresponding index and
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // decide based on the oop type.
a61af66fc99e Initial load
duke
parents:
diff changeset
124 ConstantPool cpool = method().getConstants();
3838
6a991dcb52bb 7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries
never
parents: 2426
diff changeset
125 int cpIndex = poolIndex();
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
126 ConstantPool.CPSlot oop = cpool.getSlotAt(cpIndex);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
127 if (oop.isOop()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
128 return (Klass) oop.getOop();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
129 } else if (oop.isMetaData()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
130 return oop.getSymbol();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 throw new RuntimeException("should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 public static BytecodeLoadConstant at(Method method, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 BytecodeLoadConstant b = new BytecodeLoadConstant(method, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 b.verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 return b;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 /** Like at, but returns null if the BCI is not at ldc or ldc_w or ldc2_w */
a61af66fc99e Initial load
duke
parents:
diff changeset
145 public static BytecodeLoadConstant atCheck(Method method, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 BytecodeLoadConstant b = new BytecodeLoadConstant(method, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return (b.isValid() ? b : null);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 public static BytecodeLoadConstant at(BytecodeStream bcs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return new BytecodeLoadConstant(bcs.method(), bcs.bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 public String getConstantValue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 ConstantPool cpool = method().getConstants();
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
156 int cpIndex = poolIndex();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ConstantTag ctag = cpool.getTagAt(cpIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (ctag.isInt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return "<int " + Integer.toString(cpool.getIntAt(cpIndex)) +">";
a61af66fc99e Initial load
duke
parents:
diff changeset
160 } else if (ctag.isLong()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return "<long " + Long.toString(cpool.getLongAt(cpIndex)) + "L>";
a61af66fc99e Initial load
duke
parents:
diff changeset
162 } else if (ctag.isFloat()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return "<float " + Float.toString(cpool.getFloatAt(cpIndex)) + "F>";
a61af66fc99e Initial load
duke
parents:
diff changeset
164 } else if (ctag.isDouble()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 return "<double " + Double.toString(cpool.getDoubleAt(cpIndex)) + "D>";
a61af66fc99e Initial load
duke
parents:
diff changeset
166 } else if (ctag.isString() || ctag.isUnresolvedString()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // tag change from 'unresolved' to 'string' does not happen atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // We just look at the object at the corresponding index and
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // decide based on the oop type.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
170 ConstantPool.CPSlot obj = cpool.getSlotAt(cpIndex);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
171 if (obj.isMetaData()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
172 Symbol sym = obj.getSymbol();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
173 return "<String \"" + sym.asString() + "\">";
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
174 } else if (obj.isOop()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
175 return "<String \"" + OopUtilities.stringOopToString(obj.getOop()) + "\">";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
176 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 throw new RuntimeException("should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 } else if (ctag.isKlass() || ctag.isUnresolvedKlass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // tag change from 'unresolved' to 'klass' does not happen atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // We just look at the object at the corresponding index and
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // decide based on the oop type.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
183 ConstantPool.CPSlot obj = cpool.getSlotAt(cpIndex);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
184 if (obj.isOop()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
185 Klass k = (Klass) obj.getOop();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
186 return "<Class " + k.getName().asString() + "@" + k.getHandle() + ">";
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
187 } else if (obj.isMetaData()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
188 Symbol sym = obj.getSymbol();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
189 return "<Class " + sym.asString() + ">";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
190 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 throw new RuntimeException("should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
1913
3b2dea75431e 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 1602
diff changeset
193 } else if (ctag.isMethodHandle()) {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
194 Oop x = getCachedConstant();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
195 int refidx = cpool.getMethodHandleIndexAt(cpIndex);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
196 int refkind = cpool.getMethodHandleRefKindAt(cpIndex);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
197 return "<MethodHandle kind=" + Integer.toString(refkind) +
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
198 " ref=" + Integer.toString(refidx)
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
199 + (x == null ? "" : " @" + x.getHandle()) + ">";
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
200 } else if (ctag.isMethodType()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
201 Oop x = getCachedConstant();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
202 int refidx = cpool.getMethodTypeIndexAt(cpIndex);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
203 return "<MethodType " + cpool.getSymbolAt(refidx).asString()
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
204 + (x == null ? "" : " @" + x.getHandle()) + ">";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
205 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 Assert.that(false, "invalid load constant type");
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 public String toString() {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 StringBuffer buf = new StringBuffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 buf.append(getJavaBytecodeName());
a61af66fc99e Initial load
duke
parents:
diff changeset
216 buf.append(spaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 buf.append('#');
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
218 buf.append(Integer.toString(poolIndex()));
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
219 if (hasCacheIndex()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
220 buf.append('(');
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
221 buf.append(Integer.toString(cacheIndex()));
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
222 buf.append(')');
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
223 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 buf.append(spaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 buf.append(getConstantValue());
a61af66fc99e Initial load
duke
parents:
diff changeset
226 if (code() != javaCode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 buf.append(spaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 buf.append('[');
a61af66fc99e Initial load
duke
parents:
diff changeset
229 buf.append(getBytecodeName());
a61af66fc99e Initial load
duke
parents:
diff changeset
230 buf.append(']');
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return buf.toString();
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }