author | lfoltan |
Mon, 21 Oct 2019 13:13:16 -0400 | |
changeset 58722 | cba8afa5cfed |
parent 58273 | 08a5148e7c4e |
child 59056 | 15936b142f86 |
permissions | -rw-r--r-- |
14385 | 1 |
/* |
58273
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
2 |
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. |
14385 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
26 |
||
27 |
#include "classfile/bytecodeAssembler.hpp" |
|
28 |
#include "interpreter/bytecodes.hpp" |
|
29 |
#include "memory/oopFactory.hpp" |
|
30 |
#include "oops/constantPool.hpp" |
|
49361
1956d0ec092a
8199319: Remove handles.inline.hpp include from reflectionUtils.hpp
stefank
parents:
47216
diff
changeset
|
31 |
#include "runtime/handles.inline.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
22234
diff
changeset
|
32 |
#include "utilities/bytes.hpp" |
14385 | 33 |
|
34 |
u2 BytecodeConstantPool::find_or_add(BytecodeCPEntry const& bcpe) { |
|
35 |
u2 index; |
|
36 |
u2* probe = _indices.get(bcpe); |
|
37 |
if (probe == NULL) { |
|
38 |
index = _entries.length(); |
|
39 |
_entries.append(bcpe); |
|
40 |
_indices.put(bcpe, index); |
|
41 |
} else { |
|
42 |
index = *probe; |
|
43 |
} |
|
44 |
return index + _orig->length(); |
|
45 |
} |
|
46 |
||
47 |
ConstantPool* BytecodeConstantPool::create_constant_pool(TRAPS) const { |
|
48 |
if (_entries.length() == 0) { |
|
49 |
return _orig; |
|
50 |
} |
|
51 |
||
52 |
ConstantPool* cp = ConstantPool::allocate( |
|
53 |
_orig->pool_holder()->class_loader_data(), |
|
54 |
_orig->length() + _entries.length(), CHECK_NULL); |
|
55 |
||
56 |
cp->set_pool_holder(_orig->pool_holder()); |
|
57 |
_orig->copy_cp_to(1, _orig->length() - 1, cp, 1, CHECK_NULL); |
|
58 |
||
49380
74518f9ca4b4
8199342: The constant pool forgets it has a Dynamic entry if there are overpass methods
psandoz
parents:
49361
diff
changeset
|
59 |
// Preserve dynamic constant information from the original pool |
74518f9ca4b4
8199342: The constant pool forgets it has a Dynamic entry if there are overpass methods
psandoz
parents:
49361
diff
changeset
|
60 |
if (_orig->has_dynamic_constant()) { |
74518f9ca4b4
8199342: The constant pool forgets it has a Dynamic entry if there are overpass methods
psandoz
parents:
49361
diff
changeset
|
61 |
cp->set_has_dynamic_constant(); |
74518f9ca4b4
8199342: The constant pool forgets it has a Dynamic entry if there are overpass methods
psandoz
parents:
49361
diff
changeset
|
62 |
} |
74518f9ca4b4
8199342: The constant pool forgets it has a Dynamic entry if there are overpass methods
psandoz
parents:
49361
diff
changeset
|
63 |
|
14385 | 64 |
for (int i = 0; i < _entries.length(); ++i) { |
65 |
BytecodeCPEntry entry = _entries.at(i); |
|
66 |
int idx = i + _orig->length(); |
|
67 |
switch (entry._tag) { |
|
68 |
case BytecodeCPEntry::UTF8: |
|
17304
436c6e158ce5
8010783: assert(s->refcount() != 0) failed: for create_overpasses
acorn
parents:
14385
diff
changeset
|
69 |
entry._u.utf8->increment_refcount(); |
14385 | 70 |
cp->symbol_at_put(idx, entry._u.utf8); |
71 |
break; |
|
72 |
case BytecodeCPEntry::KLASS: |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
25715
diff
changeset
|
73 |
cp->klass_index_at_put( |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
25715
diff
changeset
|
74 |
idx, entry._u.klass); |
14385 | 75 |
break; |
76 |
case BytecodeCPEntry::STRING: |
|
77 |
cp->unresolved_string_at_put( |
|
78 |
idx, cp->symbol_at(entry._u.string)); |
|
79 |
break; |
|
80 |
case BytecodeCPEntry::NAME_AND_TYPE: |
|
81 |
cp->name_and_type_at_put(idx, |
|
82 |
entry._u.name_and_type.name_index, |
|
83 |
entry._u.name_and_type.type_index); |
|
84 |
break; |
|
85 |
case BytecodeCPEntry::METHODREF: |
|
86 |
cp->method_at_put(idx, |
|
87 |
entry._u.methodref.class_index, |
|
88 |
entry._u.methodref.name_and_type_index); |
|
89 |
break; |
|
90 |
default: |
|
91 |
ShouldNotReachHere(); |
|
92 |
} |
|
93 |
} |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
25715
diff
changeset
|
94 |
|
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
25715
diff
changeset
|
95 |
cp->initialize_unresolved_klasses(_orig->pool_holder()->class_loader_data(), |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
25715
diff
changeset
|
96 |
CHECK_NULL); |
14385 | 97 |
return cp; |
98 |
} |
|
99 |
||
100 |
void BytecodeAssembler::append(u1 imm_u1) { |
|
101 |
_code->append(imm_u1); |
|
102 |
} |
|
103 |
||
104 |
void BytecodeAssembler::append(u2 imm_u2) { |
|
105 |
_code->append(0); |
|
106 |
_code->append(0); |
|
107 |
Bytes::put_Java_u2(_code->adr_at(_code->length() - 2), imm_u2); |
|
108 |
} |
|
109 |
||
110 |
void BytecodeAssembler::append(u4 imm_u4) { |
|
111 |
_code->append(0); |
|
112 |
_code->append(0); |
|
113 |
_code->append(0); |
|
114 |
_code->append(0); |
|
115 |
Bytes::put_Java_u4(_code->adr_at(_code->length() - 4), imm_u4); |
|
116 |
} |
|
117 |
||
118 |
void BytecodeAssembler::xload(u4 index, u1 onebyteop, u1 twobyteop) { |
|
119 |
if (index < 4) { |
|
120 |
_code->append(onebyteop + index); |
|
121 |
} else { |
|
122 |
_code->append(twobyteop); |
|
123 |
_code->append((u2)index); |
|
124 |
} |
|
125 |
} |
|
126 |
||
127 |
void BytecodeAssembler::dup() { |
|
128 |
_code->append(Bytecodes::_dup); |
|
129 |
} |
|
130 |
||
131 |
void BytecodeAssembler::_new(Symbol* sym) { |
|
132 |
u2 cpool_index = _cp->klass(sym); |
|
133 |
_code->append(Bytecodes::_new); |
|
134 |
append(cpool_index); |
|
135 |
} |
|
136 |
||
137 |
void BytecodeAssembler::load_string(Symbol* sym) { |
|
138 |
u2 cpool_index = _cp->string(sym); |
|
139 |
if (cpool_index < 0x100) { |
|
140 |
ldc(cpool_index); |
|
141 |
} else { |
|
142 |
ldc_w(cpool_index); |
|
143 |
} |
|
144 |
} |
|
145 |
||
146 |
void BytecodeAssembler::ldc(u1 index) { |
|
147 |
_code->append(Bytecodes::_ldc); |
|
148 |
append(index); |
|
149 |
} |
|
150 |
||
151 |
void BytecodeAssembler::ldc_w(u2 index) { |
|
152 |
_code->append(Bytecodes::_ldc_w); |
|
153 |
append(index); |
|
154 |
} |
|
155 |
||
156 |
void BytecodeAssembler::athrow() { |
|
157 |
_code->append(Bytecodes::_athrow); |
|
158 |
} |
|
159 |
||
160 |
void BytecodeAssembler::iload(u4 index) { |
|
161 |
xload(index, Bytecodes::_iload_0, Bytecodes::_iload); |
|
162 |
} |
|
163 |
||
164 |
void BytecodeAssembler::lload(u4 index) { |
|
165 |
xload(index, Bytecodes::_lload_0, Bytecodes::_lload); |
|
166 |
} |
|
167 |
||
168 |
void BytecodeAssembler::fload(u4 index) { |
|
169 |
xload(index, Bytecodes::_fload_0, Bytecodes::_fload); |
|
170 |
} |
|
171 |
||
172 |
void BytecodeAssembler::dload(u4 index) { |
|
173 |
xload(index, Bytecodes::_dload_0, Bytecodes::_dload); |
|
174 |
} |
|
175 |
||
176 |
void BytecodeAssembler::aload(u4 index) { |
|
177 |
xload(index, Bytecodes::_aload_0, Bytecodes::_aload); |
|
178 |
} |
|
179 |
||
180 |
void BytecodeAssembler::load(BasicType bt, u4 index) { |
|
181 |
switch (bt) { |
|
182 |
case T_BOOLEAN: |
|
183 |
case T_CHAR: |
|
184 |
case T_BYTE: |
|
185 |
case T_SHORT: |
|
186 |
case T_INT: iload(index); break; |
|
187 |
case T_FLOAT: fload(index); break; |
|
188 |
case T_DOUBLE: dload(index); break; |
|
189 |
case T_LONG: lload(index); break; |
|
190 |
default: |
|
58273
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
191 |
if (is_reference_type(bt)) { |
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
192 |
aload(index); |
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
193 |
break; |
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
194 |
} |
14385 | 195 |
ShouldNotReachHere(); |
196 |
} |
|
197 |
} |
|
198 |
||
199 |
void BytecodeAssembler::checkcast(Symbol* sym) { |
|
200 |
u2 cpool_index = _cp->klass(sym); |
|
201 |
_code->append(Bytecodes::_checkcast); |
|
202 |
append(cpool_index); |
|
203 |
} |
|
204 |
||
205 |
void BytecodeAssembler::invokespecial(Method* method) { |
|
206 |
invokespecial(method->klass_name(), method->name(), method->signature()); |
|
207 |
} |
|
208 |
||
209 |
void BytecodeAssembler::invokespecial(Symbol* klss, Symbol* name, Symbol* sig) { |
|
210 |
u2 methodref_index = _cp->methodref(klss, name, sig); |
|
211 |
_code->append(Bytecodes::_invokespecial); |
|
212 |
append(methodref_index); |
|
213 |
} |
|
214 |
||
215 |
void BytecodeAssembler::invokevirtual(Method* method) { |
|
216 |
invokevirtual(method->klass_name(), method->name(), method->signature()); |
|
217 |
} |
|
218 |
||
219 |
void BytecodeAssembler::invokevirtual(Symbol* klss, Symbol* name, Symbol* sig) { |
|
220 |
u2 methodref_index = _cp->methodref(klss, name, sig); |
|
221 |
_code->append(Bytecodes::_invokevirtual); |
|
222 |
append(methodref_index); |
|
223 |
} |
|
224 |
||
225 |
void BytecodeAssembler::ireturn() { |
|
226 |
_code->append(Bytecodes::_ireturn); |
|
227 |
} |
|
228 |
||
229 |
void BytecodeAssembler::lreturn() { |
|
230 |
_code->append(Bytecodes::_lreturn); |
|
231 |
} |
|
232 |
||
233 |
void BytecodeAssembler::freturn() { |
|
234 |
_code->append(Bytecodes::_freturn); |
|
235 |
} |
|
236 |
||
237 |
void BytecodeAssembler::dreturn() { |
|
238 |
_code->append(Bytecodes::_dreturn); |
|
239 |
} |
|
240 |
||
241 |
void BytecodeAssembler::areturn() { |
|
242 |
_code->append(Bytecodes::_areturn); |
|
243 |
} |
|
244 |
||
245 |
void BytecodeAssembler::_return() { |
|
246 |
_code->append(Bytecodes::_return); |
|
247 |
} |
|
248 |
||
249 |
void BytecodeAssembler::_return(BasicType bt) { |
|
250 |
switch (bt) { |
|
251 |
case T_BOOLEAN: |
|
252 |
case T_CHAR: |
|
253 |
case T_BYTE: |
|
254 |
case T_SHORT: |
|
255 |
case T_INT: ireturn(); break; |
|
256 |
case T_FLOAT: freturn(); break; |
|
257 |
case T_DOUBLE: dreturn(); break; |
|
258 |
case T_LONG: lreturn(); break; |
|
259 |
case T_VOID: _return(); break; |
|
260 |
default: |
|
58273
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
261 |
if (is_reference_type(bt)) { |
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
262 |
areturn(); |
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
263 |
break; |
08a5148e7c4e
8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents:
49380
diff
changeset
|
264 |
} |
14385 | 265 |
ShouldNotReachHere(); |
266 |
} |
|
267 |
} |