annotate agent/src/share/classes/sun/jvm/hotspot/interpreter/BytecodeLoadConstant.java @ 2177:3582bf76420e

6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
author coleenp
date Thu, 27 Jan 2011 16:11:27 -0800
parents 3b2dea75431e
children 1d1603768966
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1913
3b2dea75431e 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 1602
diff changeset
2 * Copyright (c) 2002, 2010, 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
a61af66fc99e Initial load
duke
parents:
diff changeset
31 public class BytecodeLoadConstant extends BytecodeWithCPIndex {
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
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
38 return javaCode() != code();
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
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 public int index() {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
42 int i = javaCode() == Bytecodes._ldc ?
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43 (int) (0xFF & javaByteAt(1))
a61af66fc99e Initial load
duke
parents:
diff changeset
44 : (int) (0xFFFF & javaShortAt(1));
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
45 if (hasCacheIndex()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
46 return (0xFFFF & VM.getVM().getBytes().swapShort((short) i));
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
47 } else {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
48 return i;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
49 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
50 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
51
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
52 public int poolIndex() {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
53 int i = index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
54 if (hasCacheIndex()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
55 ConstantPoolCache cpCache = method().getConstants().getCache();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
56 return cpCache.getEntryAt(i).getConstantPoolIndex();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
57 } else {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
58 return i;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
59 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
60 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
61
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
62 public int cacheIndex() {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
63 if (hasCacheIndex()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
64 return index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
65 } else {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
66 return -1; // no cache index
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
67 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
68 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
69
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
70 private Oop getCachedConstant() {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
71 int i = cacheIndex();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
72 if (i >= 0) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
73 ConstantPoolCache cpCache = method().getConstants().getCache();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
74 return cpCache.getEntryAt(i).getF1();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
75 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
76 return null;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 public void verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 Assert.that(isValid(), "check load constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 public boolean isValid() {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int jcode = javaCode();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 boolean codeOk = jcode == Bytecodes._ldc || jcode == Bytecodes._ldc_w ||
a61af66fc99e Initial load
duke
parents:
diff changeset
88 jcode == Bytecodes._ldc2_w;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (! codeOk) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 ConstantTag ctag = method().getConstants().getTagAt(index());
a61af66fc99e Initial load
duke
parents:
diff changeset
92 if (jcode == Bytecodes._ldc2_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // has to be double or long
a61af66fc99e Initial load
duke
parents:
diff changeset
94 return (ctag.isDouble() || ctag.isLong()) ? true: false;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // has to be int or float or String or Klass
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return (ctag.isUnresolvedString() || ctag.isString()
a61af66fc99e Initial load
duke
parents:
diff changeset
98 || ctag.isUnresolvedKlass() || ctag.isKlass()
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
99 || ctag.isMethodHandle() || ctag.isMethodType()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100 || ctag.isInt() || ctag.isFloat())? true: false;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 public boolean isKlassConstant() {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 int jcode = javaCode();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if (jcode == Bytecodes._ldc2_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 ConstantTag ctag = method().getConstants().getTagAt(index());
a61af66fc99e Initial load
duke
parents:
diff changeset
111 return ctag.isKlass() || ctag.isUnresolvedKlass();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // 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
115 public Object getKlass() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 Assert.that(isKlassConstant(), "not a klass literal");
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // tag change from 'unresolved' to 'klass' does not happen atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // We just look at the object at the corresponding index and
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // decide based on the oop type.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 ConstantPool cpool = method().getConstants();
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int cpIndex = index();
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
124 ConstantPool.CPSlot oop = cpool.getSlotAt(cpIndex);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
125 if (oop.isOop()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
126 return (Klass) oop.getOop();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
127 } else if (oop.isMetaData()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
128 return oop.getSymbol();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 throw new RuntimeException("should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 public static BytecodeLoadConstant at(Method method, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 BytecodeLoadConstant b = new BytecodeLoadConstant(method, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 b.verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
139 return b;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e 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 */
a61af66fc99e Initial load
duke
parents:
diff changeset
143 public static BytecodeLoadConstant atCheck(Method method, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 BytecodeLoadConstant b = new BytecodeLoadConstant(method, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return (b.isValid() ? b : null);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 public static BytecodeLoadConstant at(BytecodeStream bcs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 return new BytecodeLoadConstant(bcs.method(), bcs.bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 public String getConstantValue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 ConstantPool cpool = method().getConstants();
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
154 int cpIndex = poolIndex();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 ConstantTag ctag = cpool.getTagAt(cpIndex);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 if (ctag.isInt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 return "<int " + Integer.toString(cpool.getIntAt(cpIndex)) +">";
a61af66fc99e Initial load
duke
parents:
diff changeset
158 } else if (ctag.isLong()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return "<long " + Long.toString(cpool.getLongAt(cpIndex)) + "L>";
a61af66fc99e Initial load
duke
parents:
diff changeset
160 } else if (ctag.isFloat()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return "<float " + Float.toString(cpool.getFloatAt(cpIndex)) + "F>";
a61af66fc99e Initial load
duke
parents:
diff changeset
162 } else if (ctag.isDouble()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return "<double " + Double.toString(cpool.getDoubleAt(cpIndex)) + "D>";
a61af66fc99e Initial load
duke
parents:
diff changeset
164 } else if (ctag.isString() || ctag.isUnresolvedString()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // tag change from 'unresolved' to 'string' does not happen atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // We just look at the object at the corresponding index and
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // decide based on the oop type.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
168 ConstantPool.CPSlot obj = cpool.getSlotAt(cpIndex);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
169 if (obj.isMetaData()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
170 Symbol sym = obj.getSymbol();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
171 return "<String \"" + sym.asString() + "\">";
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
172 } else if (obj.isOop()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
173 return "<String \"" + OopUtilities.stringOopToString(obj.getOop()) + "\">";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 throw new RuntimeException("should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 } else if (ctag.isKlass() || ctag.isUnresolvedKlass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // tag change from 'unresolved' to 'klass' does not happen atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // We just look at the object at the corresponding index and
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // decide based on the oop type.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
181 ConstantPool.CPSlot obj = cpool.getSlotAt(cpIndex);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
182 if (obj.isOop()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
183 Klass k = (Klass) obj.getOop();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
184 return "<Class " + k.getName().asString() + "@" + k.getHandle() + ">";
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
185 } else if (obj.isMetaData()) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
186 Symbol sym = obj.getSymbol();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1913
diff changeset
187 return "<Class " + sym.asString() + ">";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
188 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 throw new RuntimeException("should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
1913
3b2dea75431e 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 1602
diff changeset
191 } else if (ctag.isMethodHandle()) {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
192 Oop x = getCachedConstant();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
193 int refidx = cpool.getMethodHandleIndexAt(cpIndex);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
194 int refkind = cpool.getMethodHandleRefKindAt(cpIndex);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
195 return "<MethodHandle kind=" + Integer.toString(refkind) +
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
196 " ref=" + Integer.toString(refidx)
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
197 + (x == null ? "" : " @" + x.getHandle()) + ">";
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
198 } else if (ctag.isMethodType()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
199 Oop x = getCachedConstant();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
200 int refidx = cpool.getMethodTypeIndexAt(cpIndex);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
201 return "<MethodType " + cpool.getSymbolAt(refidx).asString()
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
202 + (x == null ? "" : " @" + x.getHandle()) + ">";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 Assert.that(false, "invalid load constant type");
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 public String toString() {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 StringBuffer buf = new StringBuffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
213 buf.append(getJavaBytecodeName());
a61af66fc99e Initial load
duke
parents:
diff changeset
214 buf.append(spaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 buf.append('#');
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
216 buf.append(Integer.toString(poolIndex()));
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
217 if (hasCacheIndex()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
218 buf.append('(');
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1552
diff changeset
219 buf.append(Integer.toString(cacheIndex()));
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 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 buf.append(spaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 buf.append(getConstantValue());
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if (code() != javaCode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 buf.append(spaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 buf.append('[');
a61af66fc99e Initial load
duke
parents:
diff changeset
227 buf.append(getBytecodeName());
a61af66fc99e Initial load
duke
parents:
diff changeset
228 buf.append(']');
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 return buf.toString();
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }