annotate src/share/vm/interpreter/bytecode.cpp @ 4181:319860ae697a

Simplify FrameMap: make offsets of spill slots and outgoing parameters independent so that they can be allocated at the same time, eliminating the separate phases. This makes the separate StackBlock unnecesary. Change CiStackSlot to use byte offsets instead of spill slot index. This makes CiTarget.spillSlotSize unnecessary.
author Christian Wimmer <Christian.Wimmer@Oracle.com>
date Mon, 02 Jan 2012 14:16:08 -0800
parents 3582bf76420e
children 1d7922586cf6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1135
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1135
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: 1135
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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
26 #include "interpreter/bytecode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
27 #include "interpreter/linkResolver.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
28 #include "oops/constantPoolOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
29 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
30 #include "runtime/fieldType.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
31 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
32 #include "runtime/safepoint.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
33 #include "runtime/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Implementation of Bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
36
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
37 #ifdef ASSERT
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
38
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
39 void Bytecode::assert_same_format_as(Bytecodes::Code testbc, bool is_wide) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
40 Bytecodes::Code thisbc = Bytecodes::cast(byte_at(0));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
41 if (thisbc == Bytecodes::_breakpoint) return; // let the assertion fail silently
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
42 if (is_wide) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
43 assert(thisbc == Bytecodes::_wide, "expected a wide instruction");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
44 thisbc = Bytecodes::cast(byte_at(1));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
45 if (thisbc == Bytecodes::_breakpoint) return;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
46 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
47 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
49 if (thisflags != testflags)
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
50 tty->print_cr("assert_same_format_as(%d) failed on bc=%d%s; %d != %d",
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
51 (int)testbc, (int)thisbc, (is_wide?"/wide":""), testflags, thisflags);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
52 assert(thisflags == testflags, "expected format");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
53 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
54
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
56 int have_fmt = (Bytecodes::flags(bc, is_wide)
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
57 & (Bytecodes::_fmt_has_u2 | Bytecodes::_fmt_has_u4 |
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
58 Bytecodes::_fmt_not_simple |
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
59 // Not an offset field:
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
60 Bytecodes::_fmt_has_o));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
61 int need_fmt = -1;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
62 switch (size) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
63 case 1: need_fmt = 0; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
64 case 2: need_fmt = Bytecodes::_fmt_has_u2; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
65 case 4: need_fmt = Bytecodes::_fmt_has_u4; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
66 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
67 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
68 if (have_fmt != need_fmt) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
69 tty->print_cr("assert_index_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
70 assert(have_fmt == need_fmt, "assert_index_size");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
71 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
72 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
73
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
74 void Bytecode::assert_offset_size(int size, Bytecodes::Code bc, bool is_wide) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
76 int need_fmt = -1;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
77 switch (size) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
78 case 2: need_fmt = Bytecodes::_fmt_bo2; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
79 case 4: need_fmt = Bytecodes::_fmt_bo4; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
80 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
81 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
82 if (have_fmt != need_fmt) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
83 tty->print_cr("assert_offset_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
84 assert(have_fmt == need_fmt, "assert_offset_size");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
85 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
86 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
87
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
90 // Ignore any 'i' field (for iinc):
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
91 & ~Bytecodes::_fmt_has_i);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
92 int need_fmt = -1;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
93 switch (size) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
94 case 1: need_fmt = Bytecodes::_fmt_bc; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
95 case 2: need_fmt = Bytecodes::_fmt_bc | Bytecodes::_fmt_has_u2; break;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
96 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
97 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
98 int length = is_wide ? Bytecodes::wide_length_for(bc) : Bytecodes::length_for(bc);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
99 if (have_fmt != need_fmt || where + size != length) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
100 tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
101 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
102 assert(have_fmt == need_fmt, "assert_constant_size");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
103 assert(where + size == length, "assert_constant_size oob");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
104 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
105
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
106 void Bytecode::assert_native_index(Bytecodes::Code bc, bool is_wide) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
107 assert((Bytecodes::flags(bc, is_wide) & Bytecodes::_fmt_has_nbo) != 0, "native index");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
108 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
109
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
110 #endif //ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Implementation of Bytecode_tableupswitch
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 int Bytecode_tableswitch::dest_offset_at(int i) const {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
115 return get_Java_u4_at(aligned_offset(1 + (3 + i)*jintSize));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Implementation of Bytecode_invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void Bytecode_invoke::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 assert(is_valid(), "check invoke");
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1135
diff changeset
123 assert(method()->constants()->cache() != NULL, "do not call this from verifier or rewriter");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
127 Symbol* Bytecode_member_ref::signature() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 constantPoolOop constants = method()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 return constants->signature_ref_at(index());
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
133 Symbol* Bytecode_member_ref::name() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
134 constantPoolOop constants = method()->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return constants->name_ref_at(index());
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
139 BasicType Bytecode_member_ref::result_type() const {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
140 ResultTypeFinder rts(signature());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 rts.iterate();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 return rts.type();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 methodHandle Bytecode_invoke::static_target(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 methodHandle m;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 KlassHandle resolved_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 constantPoolHandle constants(THREAD, _method->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
150
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
151 if (java_code() == Bytecodes::_invokedynamic) {
1135
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 844
diff changeset
152 LinkResolver::resolve_dynamic_method(m, resolved_klass, constants, index(), CHECK_(methodHandle()));
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
153 } else if (java_code() != Bytecodes::_invokeinterface) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
154 LinkResolver::resolve_method(m, resolved_klass, constants, index(), CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
155 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 LinkResolver::resolve_interface_method(m, resolved_klass, constants, index(), CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 return m;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
162 int Bytecode_member_ref::index() const {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
163 // Note: Rewriter::rewrite changes the Java_u2 of an invokedynamic to a native_u4,
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
164 // at the same time it allocates per-call-site CP cache entries.
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
165 Bytecodes::Code rawc = code();
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
166 if (has_index_u4(rawc))
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
167 return get_index_u4(rawc);
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
168 else
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
169 return get_index_u2_cpcache(rawc);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
172 int Bytecode_member_ref::pool_index() const {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
173 int index = this->index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
174 DEBUG_ONLY({
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
175 if (!has_index_u4(code()))
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
176 index -= constantPoolOopDesc::CPCACHE_INDEX_TAG;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
177 });
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
178 return _method->constants()->cache()->entry_at(index)->constant_pool_index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
179 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Implementation of Bytecode_field
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void Bytecode_field::verify() const {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
184 assert(is_valid(), "check field");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
188 // Implementation of Bytecode_loadconstant
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
189
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
190 int Bytecode_loadconstant::raw_index() const {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
191 Bytecodes::Code rawc = code();
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
192 assert(rawc != Bytecodes::_wide, "verifier prevents this");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
193 if (Bytecodes::java_code(rawc) == Bytecodes::_ldc)
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
194 return get_index_u1(rawc);
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
195 else
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
196 return get_index_u2(rawc, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
199 int Bytecode_loadconstant::pool_index() const {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
200 int index = raw_index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
201 if (has_cache_index()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
202 return _method->constants()->cache()->entry_at(index)->constant_pool_index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
203 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
204 return index;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
205 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
206
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
207 BasicType Bytecode_loadconstant::result_type() const {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
208 int index = pool_index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
209 constantTag tag = _method->constants()->tag_at(index);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
210 return tag.basic_type();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
211 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
212
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
213 oop Bytecode_loadconstant::resolve_constant(TRAPS) const {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
214 assert(_method.not_null(), "must supply method to resolve constant");
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
215 int index = raw_index();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
216 constantPoolOop constants = _method->constants();
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
217 if (has_cache_index()) {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
218 return constants->resolve_cached_constant_at(index, THREAD);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
219 } else {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
220 return constants->resolve_constant_at(index, THREAD);
1574
1eb493f33423 6957080: MethodComparator needs stress testing
jrose
parents: 1565
diff changeset
221 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 //------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Non-product code
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 void Bytecode_lookupswitch::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 switch (Bytecodes::java_code(code())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
232 { int i = number_of_pairs() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 while (i-- > 0) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
234 assert(pair_at(i).match() < pair_at(i+1).match(), "unsorted table entries");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
238 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
239 fatal("not a lookupswitch bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 void Bytecode_tableswitch::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 switch (Bytecodes::java_code(code())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
246 { int lo = low_key();
a61af66fc99e Initial load
duke
parents:
diff changeset
247 int hi = high_key();
a61af66fc99e Initial load
duke
parents:
diff changeset
248 assert (hi >= lo, "incorrect hi/lo values in tableswitch");
a61af66fc99e Initial load
duke
parents:
diff changeset
249 int i = hi - lo - 1 ;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 while (i-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // no special check needed
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
256 fatal("not a tableswitch bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 #endif