annotate agent/src/share/classes/sun/jvm/hotspot/oops/Method.java @ 20456:64156d22e49d

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