annotate src/share/vm/interpreter/bytecodeTracer.cpp @ 734:3672e1dac765

6834142: method->print_codes(): Error: ShouldNotReachHere() Summary: Restore the call to Bytecodes::java_code() in BytecodePrinter::print_attributes(). Reviewed-by: jrose
author kvn
date Mon, 27 Apr 2009 12:45:14 -0700
parents be93aad57795
children bd02caa94611
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
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 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_bytecodeTracer.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Standard closure for BytecodeTracer: prints the current bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // and its attributes using bytecode-specific information.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class BytecodePrinter: public BytecodeClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // %%% This field is not GC-ed, and so can contain garbage
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // between critical sections. Use only pointer-comparison
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // operations on the pointer, except within a critical section.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // (Also, ensure that occasional false positives are benign.)
a61af66fc99e Initial load
duke
parents:
diff changeset
40 methodOop _current_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 bool _is_wide;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 address _next_pc; // current decoding position
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 void align() { _next_pc = (address)round_to((intptr_t)_next_pc, sizeof(jint)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 int get_byte() { return *(jbyte*) _next_pc++; } // signed
a61af66fc99e Initial load
duke
parents:
diff changeset
46 short get_short() { short i=Bytes::get_Java_u2(_next_pc); _next_pc+=2; return i; }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 int get_int() { int i=Bytes::get_Java_u4(_next_pc); _next_pc+=4; return i; }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int get_index() { return *(address)_next_pc++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int get_big_index() { int i=Bytes::get_Java_u2(_next_pc); _next_pc+=2; return i; }
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
51 int get_giant_index() { int i=Bytes::get_native_u4(_next_pc); _next_pc+=4; return i; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int get_index_special() { return (is_wide()) ? get_big_index() : get_index(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 methodOop method() { return _current_method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
54 bool is_wide() { return _is_wide; }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
57 bool check_index(int i, bool in_cp_cache, int& cp_index, outputStream* st = tty);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void print_constant(int i, outputStream* st = tty);
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
59 void print_field_or_method(int i, outputStream* st = tty);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 void print_attributes(Bytecodes::Code code, int bci, outputStream* st = tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void bytecode_epilog(int bci, outputStream* st = tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 BytecodePrinter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _is_wide = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // This method is called while executing the raw bytecodes, so none of
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // the adjustments that BytecodeStream performs applies.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 if (_current_method != method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Note 1: This code will not work as expected with true MT/MP.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Need an explicit lock or a different solution.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // It is possible for this block to be skipped, if a garbage
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // _current_method pointer happens to have the same bits as
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // the incoming method. We could lose a line of trace output.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // This is acceptable in a debug-only feature.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
a61af66fc99e Initial load
duke
parents:
diff changeset
81 method->print_name(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _current_method = method();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 Bytecodes::Code code;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 if (is_wide()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // bcp wasn't advanced if previous bytecode was _wide.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 code = Bytecodes::code_at(bcp+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 code = Bytecodes::code_at(bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int bci = bcp - method->code_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 st->print("%8d %4d " INTPTR_FORMAT " " INTPTR_FORMAT " %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
96 BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code));
a61af66fc99e Initial load
duke
parents:
diff changeset
97 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 st->print("%8d %4d %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
99 BytecodeCounter::counter_value(), bci, Bytecodes::name(code));
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _next_pc = is_wide() ? bcp+2 : bcp+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 print_attributes(code, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Set is_wide for the next one, since the caller of this doesn't skip
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // the next bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 _is_wide = (code == Bytecodes::_wide);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Used for methodOop::print_codes(). The input bcp comes from
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // BytecodeStream, which will skip wide bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void trace(methodHandle method, address bcp, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 _current_method = method();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 Bytecodes::Code code = Bytecodes::code_at(bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Set is_wide
a61af66fc99e Initial load
duke
parents:
diff changeset
115 _is_wide = (code == Bytecodes::_wide);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if (is_wide()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 code = Bytecodes::code_at(bcp+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int bci = bcp - method->code_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // Print bytecode index and name
a61af66fc99e Initial load
duke
parents:
diff changeset
121 if (is_wide()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 st->print("%d %s_w", bci, Bytecodes::name(code));
a61af66fc99e Initial load
duke
parents:
diff changeset
123 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 st->print("%d %s", bci, Bytecodes::name(code));
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _next_pc = is_wide() ? bcp+2 : bcp+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 print_attributes(code, bci, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 bytecode_epilog(bci, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 };
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Implementation of BytecodeTracer
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // %%% This set_closure thing seems overly general, given that
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // nobody uses it. Also, if BytecodePrinter weren't hidden
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // then methodOop could use instances of it directly and it
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // would be easier to remove races on _current_method and bcp.
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Since this is not product functionality, we can defer cleanup.
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 BytecodeClosure* BytecodeTracer::_closure = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 static BytecodePrinter std_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 BytecodeClosure* BytecodeTracer::std_closure() {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return &::std_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 void BytecodeTracer::trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (TraceBytecodes && BytecodeCounter::counter_value() >= TraceBytecodesAt) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 ttyLocker ttyl; // 5065316: keep the following output coherent
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // The ttyLocker also prevents races between two threads
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // trying to use the single instance of BytecodePrinter.
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Using the ttyLocker prevents the system from coming to
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // a safepoint within this code, which is sensitive to methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // movement.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 //
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // There used to be a leaf mutex here, but the ttyLocker will
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // work just as well, as long as the printing operations never block.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 //
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // We put the locker on the static trace method, not the
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // virtual one, because the clients of this module go through
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // the static method.
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _closure->trace(method, bcp, tos, tos2, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void BytecodeTracer::trace(methodHandle method, address bcp, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 ttyLocker ttyl; // 5065316: keep the following output coherent
a61af66fc99e Initial load
duke
parents:
diff changeset
170 _closure->trace(method, bcp, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void print_oop(oop value, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 if (value == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 st->print_cr(" NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
176 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 Handle h_value (THREAD, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 symbolHandle sym = java_lang_String::as_symbol(h_value, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (sym->utf8_length() > 32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 st->print_cr(" ....");
a61af66fc99e Initial load
duke
parents:
diff changeset
182 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 sym->print_on(st); st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
188 bool BytecodePrinter::check_index(int i, bool in_cp_cache, int& cp_index, outputStream* st) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
189 constantPoolOop constants = method()->constants();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
190 int ilimit = constants->length(), climit = 0;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
191
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
192 constantPoolCacheOop cache = NULL;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
193 if (in_cp_cache) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
194 cache = constants->cache();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
195 if (cache != NULL) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
196 //climit = cache->length(); // %%% private!
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
197 size_t size = cache->size() * HeapWordSize;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
198 size -= sizeof(constantPoolCacheOopDesc);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
199 size /= sizeof(ConstantPoolCacheEntry);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
200 climit = (int) size;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
201 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
202 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
203
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
204 if (in_cp_cache && constantPoolCacheOopDesc::is_secondary_index(i)) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
205 i = constantPoolCacheOopDesc::decode_secondary_index(i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
206 st->print(" secondary cache[%d] of", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
207 if (i >= 0 && i < climit) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
208 if (!cache->entry_at(i)->is_secondary_entry()) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
209 st->print_cr(" not secondary entry?", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
210 return false;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
211 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
212 i = cache->entry_at(i)->main_entry_index();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
213 goto check_cache_index;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
214 } else {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
215 st->print_cr(" not in cache[*]?", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
216 return false;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
217 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
218 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
219
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
220 if (cache != NULL) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
221 i = Bytes::swap_u2(i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
222 if (WizardMode) st->print(" (swap=%d)", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
223 goto check_cache_index;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
224 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
225
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
226 check_cp_index:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
227 if (i >= 0 && i < ilimit) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
228 if (WizardMode) st->print(" cp[%d]", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
229 cp_index = i;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
230 return true;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
231 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
232
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
233 st->print_cr(" CP[%d] not in CP", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
234 return false;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
235
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
236 check_cache_index:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
237 if (i >= 0 && i < climit) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
238 if (cache->entry_at(i)->is_secondary_entry()) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
239 st->print_cr(" secondary entry?");
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
240 return false;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
241 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
242 i = cache->entry_at(i)->constant_pool_index();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
243 goto check_cp_index;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
244 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
245 st->print_cr(" not in CP[*]?", i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
246 return false;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
247 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
248
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void BytecodePrinter::print_constant(int i, outputStream* st) {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
250 int orig_i = i;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
251 if (!check_index(orig_i, false, i, st)) return;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
252
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253 constantPoolOop constants = method()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
254 constantTag tag = constants->tag_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 if (tag.is_int()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 st->print_cr(" " INT32_FORMAT, constants->int_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
258 } else if (tag.is_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 st->print_cr(" " INT64_FORMAT, constants->long_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
260 } else if (tag.is_float()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 st->print_cr(" %f", constants->float_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
262 } else if (tag.is_double()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 st->print_cr(" %f", constants->double_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
264 } else if (tag.is_string()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 oop string = constants->resolved_string_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 print_oop(string, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 } else if (tag.is_unresolved_string()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 st->print_cr(" <unresolved string at %d>", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
269 } else if (tag.is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 st->print_cr(" %s", constants->resolved_klass_at(i)->klass_part()->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
271 } else if (tag.is_unresolved_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 st->print_cr(" <unresolved klass at %d>", i);
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
273 } else {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
274 st->print_cr(" bad tag=%d at %d", tag.value(), i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
275 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
276 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
277
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
278 void BytecodePrinter::print_field_or_method(int i, outputStream* st) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
279 int orig_i = i;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
280 if (!check_index(orig_i, true, i, st)) return;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
281
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
282 constantPoolOop constants = method()->constants();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
283 constantTag tag = constants->tag_at(i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
284
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
285 switch (tag.value()) {
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
286 case JVM_CONSTANT_InterfaceMethodref:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
287 case JVM_CONSTANT_Methodref:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
288 case JVM_CONSTANT_Fieldref:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
289 break;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
290 default:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
291 st->print_cr(" bad tag=%d at %d", tag.value(), i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
292 return;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
293 }
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
294
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
295 symbolOop name = constants->name_ref_at(orig_i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
296 symbolOop signature = constants->signature_ref_at(orig_i);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
297 st->print_cr(" %d <%s> <%s> ", i, name->as_C_string(), signature->as_C_string());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 void BytecodePrinter::print_attributes(Bytecodes::Code code, int bci, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Show attributes of pre-rewritten codes
734
3672e1dac765 6834142: method->print_codes(): Error: ShouldNotReachHere()
kvn
parents: 726
diff changeset
303 code = Bytecodes::java_code(code);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // If the code doesn't have any fields there's nothing to print.
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // note this is ==1 because the tableswitch and lookupswitch are
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // zero size (for some reason) and we want to print stuff out for them.
a61af66fc99e Initial load
duke
parents:
diff changeset
307 if (Bytecodes::length_for(code) == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
309 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 switch(code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Java specific bytecodes only matter.
a61af66fc99e Initial load
duke
parents:
diff changeset
314 case Bytecodes::_bipush:
a61af66fc99e Initial load
duke
parents:
diff changeset
315 st->print_cr(" " INT32_FORMAT, get_byte());
a61af66fc99e Initial load
duke
parents:
diff changeset
316 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
317 case Bytecodes::_sipush:
a61af66fc99e Initial load
duke
parents:
diff changeset
318 st->print_cr(" " INT32_FORMAT, get_short());
a61af66fc99e Initial load
duke
parents:
diff changeset
319 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 case Bytecodes::_ldc:
a61af66fc99e Initial load
duke
parents:
diff changeset
321 print_constant(get_index(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 case Bytecodes::_ldc_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
325 case Bytecodes::_ldc2_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
326 print_constant(get_big_index(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
327 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 case Bytecodes::_iload:
a61af66fc99e Initial load
duke
parents:
diff changeset
330 case Bytecodes::_lload:
a61af66fc99e Initial load
duke
parents:
diff changeset
331 case Bytecodes::_fload:
a61af66fc99e Initial load
duke
parents:
diff changeset
332 case Bytecodes::_dload:
a61af66fc99e Initial load
duke
parents:
diff changeset
333 case Bytecodes::_aload:
a61af66fc99e Initial load
duke
parents:
diff changeset
334 case Bytecodes::_istore:
a61af66fc99e Initial load
duke
parents:
diff changeset
335 case Bytecodes::_lstore:
a61af66fc99e Initial load
duke
parents:
diff changeset
336 case Bytecodes::_fstore:
a61af66fc99e Initial load
duke
parents:
diff changeset
337 case Bytecodes::_dstore:
a61af66fc99e Initial load
duke
parents:
diff changeset
338 case Bytecodes::_astore:
a61af66fc99e Initial load
duke
parents:
diff changeset
339 st->print_cr(" #%d", get_index_special());
a61af66fc99e Initial load
duke
parents:
diff changeset
340 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 case Bytecodes::_iinc:
a61af66fc99e Initial load
duke
parents:
diff changeset
343 { int index = get_index_special();
a61af66fc99e Initial load
duke
parents:
diff changeset
344 jint offset = is_wide() ? get_short(): get_byte();
a61af66fc99e Initial load
duke
parents:
diff changeset
345 st->print_cr(" #%d " INT32_FORMAT, index, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
347 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 case Bytecodes::_newarray: {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 BasicType atype = (BasicType)get_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
351 const char* str = type2name(atype);
a61af66fc99e Initial load
duke
parents:
diff changeset
352 if (str == NULL || atype == T_OBJECT || atype == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
353 assert(false, "Unidentified basic type");
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355 st->print_cr(" %s", str);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
357 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
358 case Bytecodes::_anewarray: {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 int klass_index = get_big_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
360 constantPoolOop constants = method()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
361 symbolOop name = constants->klass_name_at(klass_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 st->print_cr(" %s ", name->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 case Bytecodes::_multianewarray: {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 int klass_index = get_big_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
367 int nof_dims = get_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
368 constantPoolOop constants = method()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
369 symbolOop name = constants->klass_name_at(klass_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 st->print_cr(" %s %d", name->as_C_string(), nof_dims);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 }
a61af66fc99e Initial load
duke
parents:
diff changeset
372 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
375 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
376 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
377 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
378 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
379 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
380 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
381 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
382 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
383 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
384 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
385 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
386 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
387 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
388 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
389 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
390 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
391 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
392 st->print_cr(" %d", bci + get_short());
a61af66fc99e Initial load
duke
parents:
diff changeset
393 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
396 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
397 st->print_cr(" %d", bci + get_int());
a61af66fc99e Initial load
duke
parents:
diff changeset
398 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 case Bytecodes::_ret: st->print_cr(" %d", get_index_special()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
403 { align();
a61af66fc99e Initial load
duke
parents:
diff changeset
404 int default_dest = bci + get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
405 int lo = get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
406 int hi = get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
407 int len = hi - lo + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
408 jint* dest = NEW_RESOURCE_ARRAY(jint, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 dest[i] = bci + get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 st->print(" %d " INT32_FORMAT " " INT32_FORMAT " ",
a61af66fc99e Initial load
duke
parents:
diff changeset
413 default_dest, lo, hi);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 int first = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
415 for (int ll = lo; ll <= hi; ll++, first = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 int idx = ll - lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 const char *format = first ? " %d:" INT32_FORMAT " (delta: %d)" :
a61af66fc99e Initial load
duke
parents:
diff changeset
418 ", %d:" INT32_FORMAT " (delta: %d)";
a61af66fc99e Initial load
duke
parents:
diff changeset
419 st->print(format, ll, dest[idx], dest[idx]-bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
424 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
425 { align();
a61af66fc99e Initial load
duke
parents:
diff changeset
426 int default_dest = bci + get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
427 int len = get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
428 jint* key = NEW_RESOURCE_ARRAY(jint, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
429 jint* dest = NEW_RESOURCE_ARRAY(jint, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
430 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 key [i] = get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
432 dest[i] = bci + get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
433 };
a61af66fc99e Initial load
duke
parents:
diff changeset
434 st->print(" %d %d ", default_dest, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
435 bool first = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 for (int ll = 0; ll < len; ll++, first = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 const char *format = first ? " " INT32_FORMAT ":" INT32_FORMAT :
a61af66fc99e Initial load
duke
parents:
diff changeset
438 ", " INT32_FORMAT ":" INT32_FORMAT ;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 st->print(format, key[ll], dest[ll]);
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 case Bytecodes::_putstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
446 case Bytecodes::_getstatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
447 case Bytecodes::_putfield:
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
448 case Bytecodes::_getfield:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
449 print_field_or_method(get_big_index(), st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
450 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
453 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
454 case Bytecodes::_invokestatic:
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
455 print_field_or_method(get_big_index(), st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
456 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
459 { int i = get_big_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
460 int n = get_index();
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
461 get_index(); // ignore zero byte
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
462 print_field_or_method(i, st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
463 }
a61af66fc99e Initial load
duke
parents:
diff changeset
464 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
465
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
466 case Bytecodes::_invokedynamic:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
467 print_field_or_method(get_giant_index(), st);
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
468 break;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
469
0
a61af66fc99e Initial load
duke
parents:
diff changeset
470 case Bytecodes::_new:
a61af66fc99e Initial load
duke
parents:
diff changeset
471 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
472 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
473 { int i = get_big_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
474 constantPoolOop constants = method()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
475 symbolOop name = constants->klass_name_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
476 st->print_cr(" %d <%s>", i, name->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480 case Bytecodes::_wide:
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // length is zero not one, but printed with no more info.
a61af66fc99e Initial load
duke
parents:
diff changeset
482 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
485 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
486 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 void BytecodePrinter::bytecode_epilog(int bci, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
492 methodDataOop mdo = method()->method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
493 if (mdo != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 ProfileData* data = mdo->bci_to_data(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 if (data != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 st->print(" %d", mdo->dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
497 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
498 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
501 }
a61af66fc99e Initial load
duke
parents:
diff changeset
502 #endif // PRODUCT