annotate src/share/vm/interpreter/templateInterpreter.cpp @ 24225:a2dbb6fcc923

Added tag jvmci-0.33 for changeset 3aed4cb813f4
author Doug Simon <doug.simon@oracle.com>
date Fri, 18 Aug 2017 22:47:33 +0200
parents f13e777eb255
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
2 * Copyright (c) 1997, 2016, 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: 1489
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1489
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: 1489
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: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "interpreter/interpreterGenerator.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "interpreter/interpreterRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "interpreter/templateTable.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 # define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 void TemplateInterpreter::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 if (_code != NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // assertions
a61af66fc99e Initial load
duke
parents:
diff changeset
38 assert((int)Bytecodes::number_of_codes <= (int)DispatchTable::length,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 "dispatch table too small");
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 AbstractInterpreter::initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 TemplateTable::initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // generate interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
46 { ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 TraceTime timer("Interpreter generation", TraceStartupTime);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int code_size = InterpreterCodeSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 NOT_PRODUCT(code_size *= 4;) // debug uses extra interpreter code space
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _code = new StubQueue(new InterpreterCodeletInterface, code_size, NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 "Interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
52 InterpreterGenerator g(_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 if (PrintInterpreter) print();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // initialize dispatch table
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _active_table = _normal_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Implementation of EntryPoint
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 EntryPoint::EntryPoint() {
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
64 assert(number_of_states == 10, "check the code below");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _entry[btos] = NULL;
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
66 _entry[ztos] = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 _entry[ctos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _entry[stos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _entry[atos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 _entry[itos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 _entry[ltos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 _entry[ftos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 _entry[dtos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _entry[vtos] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
78 EntryPoint::EntryPoint(address bentry, address zentry, address centry, address sentry, address aentry, address ientry, address lentry, address fentry, address dentry, address ventry) {
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
79 assert(number_of_states == 10, "check the code below");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _entry[btos] = bentry;
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
81 _entry[ztos] = zentry;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _entry[ctos] = centry;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _entry[stos] = sentry;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 _entry[atos] = aentry;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _entry[itos] = ientry;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _entry[ltos] = lentry;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _entry[ftos] = fentry;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 _entry[dtos] = dentry;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 _entry[vtos] = ventry;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void EntryPoint::set_entry(TosState state, address entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(0 <= state && state < number_of_states, "state out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _entry[state] = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 address EntryPoint::entry(TosState state) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 assert(0 <= state && state < number_of_states, "state out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return _entry[state];
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void EntryPoint::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 tty->print("[");
a61af66fc99e Initial load
duke
parents:
diff changeset
107 for (int i = 0; i < number_of_states; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (i > 0) tty->print(", ");
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13010
diff changeset
109 tty->print(INTPTR_FORMAT, p2i(_entry[i]));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 tty->print("]");
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 bool EntryPoint::operator == (const EntryPoint& y) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 int i = number_of_states;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 while (i-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 if (_entry[i] != y._entry[i]) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Implementation of DispatchTable
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 EntryPoint DispatchTable::entry(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 assert(0 <= i && i < length, "index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
129 return
a61af66fc99e Initial load
duke
parents:
diff changeset
130 EntryPoint(
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _table[btos][i],
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
132 _table[ztos][i],
0
a61af66fc99e Initial load
duke
parents:
diff changeset
133 _table[ctos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _table[stos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
135 _table[atos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
136 _table[itos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
137 _table[ltos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
138 _table[ftos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _table[dtos][i],
a61af66fc99e Initial load
duke
parents:
diff changeset
140 _table[vtos][i]
a61af66fc99e Initial load
duke
parents:
diff changeset
141 );
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 void DispatchTable::set_entry(int i, EntryPoint& entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 assert(0 <= i && i < length, "index out of bounds");
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
147 assert(number_of_states == 10, "check the code below");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _table[btos][i] = entry.entry(btos);
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
149 _table[ztos][i] = entry.entry(ztos);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _table[ctos][i] = entry.entry(ctos);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 _table[stos][i] = entry.entry(stos);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 _table[atos][i] = entry.entry(atos);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 _table[itos][i] = entry.entry(itos);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 _table[ltos][i] = entry.entry(ltos);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 _table[ftos][i] = entry.entry(ftos);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 _table[dtos][i] = entry.entry(dtos);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 _table[vtos][i] = entry.entry(vtos);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 bool DispatchTable::operator == (DispatchTable& y) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 int i = length;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 while (i-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 EntryPoint t = y.entry(i); // for compiler compatibility (BugId 4150096)
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if (!(entry(i) == t)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 address TemplateInterpreter::_remove_activation_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 address TemplateInterpreter::_remove_activation_preserving_args_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 address TemplateInterpreter::_throw_ArrayIndexOutOfBoundsException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 address TemplateInterpreter::_throw_ArrayStoreException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 address TemplateInterpreter::_throw_ArithmeticException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 address TemplateInterpreter::_throw_ClassCastException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 address TemplateInterpreter::_throw_NullPointerException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 address TemplateInterpreter::_throw_StackOverflowError_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 address TemplateInterpreter::_throw_exception_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
183 EntryPoint TemplateInterpreter::_trace_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
185 EntryPoint TemplateInterpreter::_return_entry[TemplateInterpreter::number_of_return_entries];
a61af66fc99e Initial load
duke
parents:
diff changeset
186 EntryPoint TemplateInterpreter::_earlyret_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 EntryPoint TemplateInterpreter::_deopt_entry [TemplateInterpreter::number_of_deopt_entries ];
a61af66fc99e Initial load
duke
parents:
diff changeset
188 EntryPoint TemplateInterpreter::_continuation_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 EntryPoint TemplateInterpreter::_safept_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
190
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
191 address TemplateInterpreter::_invoke_return_entry[TemplateInterpreter::number_of_return_addrs];
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
192 address TemplateInterpreter::_invokeinterface_return_entry[TemplateInterpreter::number_of_return_addrs];
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
193 address TemplateInterpreter::_invokedynamic_return_entry[TemplateInterpreter::number_of_return_addrs];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 DispatchTable TemplateInterpreter::_active_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 DispatchTable TemplateInterpreter::_normal_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 DispatchTable TemplateInterpreter::_safept_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 address TemplateInterpreter::_wentry_point[DispatchTable::length];
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 TemplateInterpreterGenerator::TemplateInterpreterGenerator(StubQueue* _code): AbstractInterpreterGenerator(_code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 _unimplemented_bytecode = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 _illegal_bytecode_sequence = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 static const BasicType types[Interpreter::number_of_result_handlers] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 T_BOOLEAN,
a61af66fc99e Initial load
duke
parents:
diff changeset
207 T_CHAR ,
a61af66fc99e Initial load
duke
parents:
diff changeset
208 T_BYTE ,
a61af66fc99e Initial load
duke
parents:
diff changeset
209 T_SHORT ,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 T_INT ,
a61af66fc99e Initial load
duke
parents:
diff changeset
211 T_LONG ,
a61af66fc99e Initial load
duke
parents:
diff changeset
212 T_VOID ,
a61af66fc99e Initial load
duke
parents:
diff changeset
213 T_FLOAT ,
a61af66fc99e Initial load
duke
parents:
diff changeset
214 T_DOUBLE ,
a61af66fc99e Initial load
duke
parents:
diff changeset
215 T_OBJECT
a61af66fc99e Initial load
duke
parents:
diff changeset
216 };
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void TemplateInterpreterGenerator::generate_all() {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 AbstractInterpreterGenerator::generate_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 { CodeletMark cm(_masm, "error exits");
a61af66fc99e Initial load
duke
parents:
diff changeset
222 _unimplemented_bytecode = generate_error_exit("unimplemented bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
223 _illegal_bytecode_sequence = generate_error_exit("illegal bytecode sequence - method not verified");
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
227 if (TraceBytecodes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 CodeletMark cm(_masm, "bytecode tracing support");
a61af66fc99e Initial load
duke
parents:
diff changeset
229 Interpreter::_trace_code =
a61af66fc99e Initial load
duke
parents:
diff changeset
230 EntryPoint(
a61af66fc99e Initial load
duke
parents:
diff changeset
231 generate_trace_code(btos),
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
232 generate_trace_code(ztos),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 generate_trace_code(ctos),
a61af66fc99e Initial load
duke
parents:
diff changeset
234 generate_trace_code(stos),
a61af66fc99e Initial load
duke
parents:
diff changeset
235 generate_trace_code(atos),
a61af66fc99e Initial load
duke
parents:
diff changeset
236 generate_trace_code(itos),
a61af66fc99e Initial load
duke
parents:
diff changeset
237 generate_trace_code(ltos),
a61af66fc99e Initial load
duke
parents:
diff changeset
238 generate_trace_code(ftos),
a61af66fc99e Initial load
duke
parents:
diff changeset
239 generate_trace_code(dtos),
a61af66fc99e Initial load
duke
parents:
diff changeset
240 generate_trace_code(vtos)
a61af66fc99e Initial load
duke
parents:
diff changeset
241 );
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 { CodeletMark cm(_masm, "return entry points");
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
246 const int index_size = sizeof(u2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247 for (int i = 0; i < Interpreter::number_of_return_entries; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 Interpreter::_return_entry[i] =
a61af66fc99e Initial load
duke
parents:
diff changeset
249 EntryPoint(
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
250 generate_return_entry_for(itos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
251 generate_return_entry_for(itos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
252 generate_return_entry_for(itos, i, index_size),
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
253 generate_return_entry_for(itos, i, index_size),
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
254 generate_return_entry_for(atos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
255 generate_return_entry_for(itos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
256 generate_return_entry_for(ltos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
257 generate_return_entry_for(ftos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
258 generate_return_entry_for(dtos, i, index_size),
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
259 generate_return_entry_for(vtos, i, index_size)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
260 );
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
264 { CodeletMark cm(_masm, "invoke return entry points");
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
265 // These states are in order specified in TosState, except btos/ztos/ctos/stos are
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
266 // really the same as itos since there is no top of stack optimization for these types
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
267 const TosState states[] = {itos, itos, itos, itos, itos, ltos, ftos, dtos, atos, vtos, ilgl};
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
268 const int invoke_length = Bytecodes::length_for(Bytecodes::_invokestatic);
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
269 const int invokeinterface_length = Bytecodes::length_for(Bytecodes::_invokeinterface);
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
270 const int invokedynamic_length = Bytecodes::length_for(Bytecodes::_invokedynamic);
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
271
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
272 for (int i = 0; i < Interpreter::number_of_return_addrs; i++) {
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
273 TosState state = states[i];
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
274 assert(state != ilgl, "states array is wrong above");
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
275 Interpreter::_invoke_return_entry[i] = generate_return_entry_for(state, invoke_length, sizeof(u2));
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
276 Interpreter::_invokeinterface_return_entry[i] = generate_return_entry_for(state, invokeinterface_length, sizeof(u2));
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
277 Interpreter::_invokedynamic_return_entry[i] = generate_return_entry_for(state, invokedynamic_length, sizeof(u4));
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
278 }
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
279 }
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
280
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281 { CodeletMark cm(_masm, "earlyret entry points");
a61af66fc99e Initial load
duke
parents:
diff changeset
282 Interpreter::_earlyret_entry =
a61af66fc99e Initial load
duke
parents:
diff changeset
283 EntryPoint(
a61af66fc99e Initial load
duke
parents:
diff changeset
284 generate_earlyret_entry_for(btos),
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
285 generate_earlyret_entry_for(ztos),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286 generate_earlyret_entry_for(ctos),
a61af66fc99e Initial load
duke
parents:
diff changeset
287 generate_earlyret_entry_for(stos),
a61af66fc99e Initial load
duke
parents:
diff changeset
288 generate_earlyret_entry_for(atos),
a61af66fc99e Initial load
duke
parents:
diff changeset
289 generate_earlyret_entry_for(itos),
a61af66fc99e Initial load
duke
parents:
diff changeset
290 generate_earlyret_entry_for(ltos),
a61af66fc99e Initial load
duke
parents:
diff changeset
291 generate_earlyret_entry_for(ftos),
a61af66fc99e Initial load
duke
parents:
diff changeset
292 generate_earlyret_entry_for(dtos),
a61af66fc99e Initial load
duke
parents:
diff changeset
293 generate_earlyret_entry_for(vtos)
a61af66fc99e Initial load
duke
parents:
diff changeset
294 );
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 { CodeletMark cm(_masm, "deoptimization entry points");
a61af66fc99e Initial load
duke
parents:
diff changeset
298 for (int i = 0; i < Interpreter::number_of_deopt_entries; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 Interpreter::_deopt_entry[i] =
a61af66fc99e Initial load
duke
parents:
diff changeset
300 EntryPoint(
11173
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
301 ((InterpreterGenerator*)this)->generate_deopt_entry_for(itos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
302 ((InterpreterGenerator*)this)->generate_deopt_entry_for(itos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
303 ((InterpreterGenerator*)this)->generate_deopt_entry_for(itos, i),
23660
Doug Simon <doug.simon@oracle.com>
parents: 18041 23614
diff changeset
304 ((InterpreterGenerator*)this)->generate_deopt_entry_for(itos, i),
11173
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
305 ((InterpreterGenerator*)this)->generate_deopt_entry_for(atos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
306 ((InterpreterGenerator*)this)->generate_deopt_entry_for(itos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
307 ((InterpreterGenerator*)this)->generate_deopt_entry_for(ltos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
308 ((InterpreterGenerator*)this)->generate_deopt_entry_for(ftos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
309 ((InterpreterGenerator*)this)->generate_deopt_entry_for(dtos, i),
6b0fd0964b87 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 9046 11080
diff changeset
310 ((InterpreterGenerator*)this)->generate_deopt_entry_for(vtos, i)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
311 );
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 { CodeletMark cm(_masm, "result handlers for native calls");
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // The various result converter stublets.
a61af66fc99e Initial load
duke
parents:
diff changeset
317 int is_generated[Interpreter::number_of_result_handlers];
a61af66fc99e Initial load
duke
parents:
diff changeset
318 memset(is_generated, 0, sizeof(is_generated));
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 for (int i = 0; i < Interpreter::number_of_result_handlers; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 BasicType type = types[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
322 if (!is_generated[Interpreter::BasicType_as_index(type)]++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 Interpreter::_native_abi_to_tosca[Interpreter::BasicType_as_index(type)] = generate_result_handler_for(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 { CodeletMark cm(_masm, "continuation entry points");
a61af66fc99e Initial load
duke
parents:
diff changeset
329 Interpreter::_continuation_entry =
a61af66fc99e Initial load
duke
parents:
diff changeset
330 EntryPoint(
a61af66fc99e Initial load
duke
parents:
diff changeset
331 generate_continuation_for(btos),
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
332 generate_continuation_for(ztos),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 generate_continuation_for(ctos),
a61af66fc99e Initial load
duke
parents:
diff changeset
334 generate_continuation_for(stos),
a61af66fc99e Initial load
duke
parents:
diff changeset
335 generate_continuation_for(atos),
a61af66fc99e Initial load
duke
parents:
diff changeset
336 generate_continuation_for(itos),
a61af66fc99e Initial load
duke
parents:
diff changeset
337 generate_continuation_for(ltos),
a61af66fc99e Initial load
duke
parents:
diff changeset
338 generate_continuation_for(ftos),
a61af66fc99e Initial load
duke
parents:
diff changeset
339 generate_continuation_for(dtos),
a61af66fc99e Initial load
duke
parents:
diff changeset
340 generate_continuation_for(vtos)
a61af66fc99e Initial load
duke
parents:
diff changeset
341 );
a61af66fc99e Initial load
duke
parents:
diff changeset
342 }
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 { CodeletMark cm(_masm, "safepoint entry points");
a61af66fc99e Initial load
duke
parents:
diff changeset
345 Interpreter::_safept_entry =
a61af66fc99e Initial load
duke
parents:
diff changeset
346 EntryPoint(
a61af66fc99e Initial load
duke
parents:
diff changeset
347 generate_safept_entry_for(btos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
348 generate_safept_entry_for(ztos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
349 generate_safept_entry_for(ctos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
350 generate_safept_entry_for(stos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
351 generate_safept_entry_for(atos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
352 generate_safept_entry_for(itos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
353 generate_safept_entry_for(ltos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
354 generate_safept_entry_for(ftos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
355 generate_safept_entry_for(dtos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint)),
a61af66fc99e Initial load
duke
parents:
diff changeset
356 generate_safept_entry_for(vtos, CAST_FROM_FN_PTR(address, InterpreterRuntime::at_safepoint))
a61af66fc99e Initial load
duke
parents:
diff changeset
357 );
a61af66fc99e Initial load
duke
parents:
diff changeset
358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 { CodeletMark cm(_masm, "exception handling");
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // (Note: this is not safepoint safe because thread may return to compiled code)
a61af66fc99e Initial load
duke
parents:
diff changeset
362 generate_throw_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 { CodeletMark cm(_masm, "throw exception entrypoints");
a61af66fc99e Initial load
duke
parents:
diff changeset
366 Interpreter::_throw_ArrayIndexOutOfBoundsException_entry = generate_ArrayIndexOutOfBounds_handler("java/lang/ArrayIndexOutOfBoundsException");
a61af66fc99e Initial load
duke
parents:
diff changeset
367 Interpreter::_throw_ArrayStoreException_entry = generate_klass_exception_handler("java/lang/ArrayStoreException" );
a61af66fc99e Initial load
duke
parents:
diff changeset
368 Interpreter::_throw_ArithmeticException_entry = generate_exception_handler("java/lang/ArithmeticException" , "/ by zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 Interpreter::_throw_ClassCastException_entry = generate_ClassCastException_handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
370 Interpreter::_throw_NullPointerException_entry = generate_exception_handler("java/lang/NullPointerException" , NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
371 Interpreter::_throw_StackOverflowError_entry = generate_StackOverflowError_handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 #define method_entry(kind) \
a61af66fc99e Initial load
duke
parents:
diff changeset
377 { CodeletMark cm(_masm, "method entry point (kind = " #kind ")"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
378 Interpreter::_entry_table[Interpreter::kind] = generate_method_entry(Interpreter::kind); \
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // all non-native method kinds
a61af66fc99e Initial load
duke
parents:
diff changeset
382 method_entry(zerolocals)
a61af66fc99e Initial load
duke
parents:
diff changeset
383 method_entry(zerolocals_synchronized)
a61af66fc99e Initial load
duke
parents:
diff changeset
384 method_entry(empty)
a61af66fc99e Initial load
duke
parents:
diff changeset
385 method_entry(accessor)
a61af66fc99e Initial load
duke
parents:
diff changeset
386 method_entry(abstract)
a61af66fc99e Initial load
duke
parents:
diff changeset
387 method_entry(java_lang_math_sin )
a61af66fc99e Initial load
duke
parents:
diff changeset
388 method_entry(java_lang_math_cos )
a61af66fc99e Initial load
duke
parents:
diff changeset
389 method_entry(java_lang_math_tan )
a61af66fc99e Initial load
duke
parents:
diff changeset
390 method_entry(java_lang_math_abs )
a61af66fc99e Initial load
duke
parents:
diff changeset
391 method_entry(java_lang_math_sqrt )
a61af66fc99e Initial load
duke
parents:
diff changeset
392 method_entry(java_lang_math_log )
a61af66fc99e Initial load
duke
parents:
diff changeset
393 method_entry(java_lang_math_log10)
6084
6759698e3140 7133857: exp() and pow() should use the x87 ISA on x86
roland
parents: 3451
diff changeset
394 method_entry(java_lang_math_exp )
6759698e3140 7133857: exp() and pow() should use the x87 ISA on x86
roland
parents: 3451
diff changeset
395 method_entry(java_lang_math_pow )
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2142
diff changeset
396 method_entry(java_lang_ref_reference_get)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
397
11080
b800986664f4 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 6926
diff changeset
398 if (UseCRC32Intrinsics) {
b800986664f4 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 6926
diff changeset
399 method_entry(java_util_zip_CRC32_update)
b800986664f4 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 6926
diff changeset
400 method_entry(java_util_zip_CRC32_updateBytes)
b800986664f4 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 6926
diff changeset
401 method_entry(java_util_zip_CRC32_updateByteBuffer)
b800986664f4 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 6926
diff changeset
402 }
b800986664f4 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 6926
diff changeset
403
6926
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6725
diff changeset
404 initialize_method_handle_entries();
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6084
diff changeset
405
0
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // all native method kinds (must be one contiguous block)
a61af66fc99e Initial load
duke
parents:
diff changeset
407 Interpreter::_native_entry_begin = Interpreter::code()->code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
408 method_entry(native)
a61af66fc99e Initial load
duke
parents:
diff changeset
409 method_entry(native_synchronized)
a61af66fc99e Initial load
duke
parents:
diff changeset
410 Interpreter::_native_entry_end = Interpreter::code()->code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 #undef method_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // Bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
415 set_entry_points_for_all_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
416 set_safepoints_for_all_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 address TemplateInterpreterGenerator::generate_error_exit(const char* msg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 address entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
423 __ stop(msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 void TemplateInterpreterGenerator::set_entry_points_for_all_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 for (int i = 0; i < DispatchTable::length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 Bytecodes::Code code = (Bytecodes::Code)i;
a61af66fc99e Initial load
duke
parents:
diff changeset
433 if (Bytecodes::is_defined(code)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 set_entry_points(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
435 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
436 set_unimplemented(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
437 }
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 void TemplateInterpreterGenerator::set_safepoints_for_all_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 for (int i = 0; i < DispatchTable::length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 Bytecodes::Code code = (Bytecodes::Code)i;
a61af66fc99e Initial load
duke
parents:
diff changeset
445 if (Bytecodes::is_defined(code)) Interpreter::_safept_table.set_entry(code, Interpreter::_safept_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 void TemplateInterpreterGenerator::set_unimplemented(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 address e = _unimplemented_bytecode;
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
452 EntryPoint entry(e, e, e, e, e, e, e, e, e, e);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
453 Interpreter::_normal_table.set_entry(i, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
454 Interpreter::_wentry_point[i] = _unimplemented_bytecode;
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 void TemplateInterpreterGenerator::set_entry_points(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 CodeletMark cm(_masm, Bytecodes::name(code), code);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // initialize entry points
a61af66fc99e Initial load
duke
parents:
diff changeset
461 assert(_unimplemented_bytecode != NULL, "should have been generated before");
a61af66fc99e Initial load
duke
parents:
diff changeset
462 assert(_illegal_bytecode_sequence != NULL, "should have been generated before");
a61af66fc99e Initial load
duke
parents:
diff changeset
463 address bep = _illegal_bytecode_sequence;
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
464 address zep = _illegal_bytecode_sequence;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
465 address cep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 address sep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
467 address aep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
468 address iep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 address lep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
470 address fep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 address dep = _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 address vep = _unimplemented_bytecode;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 address wep = _unimplemented_bytecode;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // code for short & wide version of bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
475 if (Bytecodes::is_defined(code)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 Template* t = TemplateTable::template_for(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
477 assert(t->is_valid(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
478 set_short_entry_points(t, bep, cep, sep, aep, iep, lep, fep, dep, vep);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480 if (Bytecodes::wide_is_defined(code)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
481 Template* t = TemplateTable::template_for_wide(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
482 assert(t->is_valid(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
483 set_wide_entry_point(t, wep);
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // set entry points
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
486 EntryPoint entry(bep, zep, cep, sep, aep, iep, lep, fep, dep, vep);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
487 Interpreter::_normal_table.set_entry(code, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 Interpreter::_wentry_point[code] = wep;
a61af66fc99e Initial load
duke
parents:
diff changeset
489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 void TemplateInterpreterGenerator::set_wide_entry_point(Template* t, address& wep) {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 assert(t->is_valid(), "template must exist");
1489
cff162798819 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 1071
diff changeset
494 assert(t->tos_in() == vtos, "only vtos tos_in supported for wide instructions");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
495 wep = __ pc(); generate_and_dispatch(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 }
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 void TemplateInterpreterGenerator::set_short_entry_points(Template* t, address& bep, address& cep, address& sep, address& aep, address& iep, address& lep, address& fep, address& dep, address& vep) {
a61af66fc99e Initial load
duke
parents:
diff changeset
500 assert(t->is_valid(), "template must exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
501 switch (t->tos_in()) {
1071
b18963243361 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points
twisti
parents: 1059
diff changeset
502 case btos:
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 17937
diff changeset
503 case ztos:
1071
b18963243361 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points
twisti
parents: 1059
diff changeset
504 case ctos:
b18963243361 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points
twisti
parents: 1059
diff changeset
505 case stos:
b18963243361 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points
twisti
parents: 1059
diff changeset
506 ShouldNotReachHere(); // btos/ctos/stos should use itos.
b18963243361 6902000: use ShouldNotReachHere() for btos/ctos/stos in TemplateInterpreterGenerator::set_short_entry_points
twisti
parents: 1059
diff changeset
507 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
508 case atos: vep = __ pc(); __ pop(atos); aep = __ pc(); generate_and_dispatch(t); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
509 case itos: vep = __ pc(); __ pop(itos); iep = __ pc(); generate_and_dispatch(t); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
510 case ltos: vep = __ pc(); __ pop(ltos); lep = __ pc(); generate_and_dispatch(t); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 case ftos: vep = __ pc(); __ pop(ftos); fep = __ pc(); generate_and_dispatch(t); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 case dtos: vep = __ pc(); __ pop(dtos); dep = __ pc(); generate_and_dispatch(t); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
513 case vtos: set_vtos_entry_points(t, bep, cep, sep, aep, iep, lep, fep, dep, vep); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
514 default : ShouldNotReachHere(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518
a61af66fc99e Initial load
duke
parents:
diff changeset
519 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 void TemplateInterpreterGenerator::generate_and_dispatch(Template* t, TosState tos_out) {
a61af66fc99e Initial load
duke
parents:
diff changeset
522 if (PrintBytecodeHistogram) histogram_bytecode(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
523 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // debugging code
a61af66fc99e Initial load
duke
parents:
diff changeset
525 if (CountBytecodes || TraceBytecodes || StopInterpreterAt > 0) count_bytecode();
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if (PrintBytecodePairHistogram) histogram_bytecode_pair(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
527 if (TraceBytecodes) trace_bytecode(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
528 if (StopInterpreterAt > 0) stop_interpreter_at();
a61af66fc99e Initial load
duke
parents:
diff changeset
529 __ verify_FPU(1, t->tos_in());
a61af66fc99e Initial load
duke
parents:
diff changeset
530 #endif // !PRODUCT
23822
626f594dffa6 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
csahu
parents: 17937
diff changeset
531 int step = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
532 if (!t->does_dispatch()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
533 step = t->is_wide() ? Bytecodes::wide_length_for(t->bytecode()) : Bytecodes::length_for(t->bytecode());
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if (tos_out == ilgl) tos_out = t->tos_out();
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // compute bytecode size
a61af66fc99e Initial load
duke
parents:
diff changeset
536 assert(step > 0, "just checkin'");
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // setup stuff for dispatching next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
538 if (ProfileInterpreter && VerifyDataPointer
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
539 && MethodData::bytecode_has_profile(t->bytecode())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
540 __ verify_method_data_pointer();
a61af66fc99e Initial load
duke
parents:
diff changeset
541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
542 __ dispatch_prolog(tos_out, step);
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // generate template
a61af66fc99e Initial load
duke
parents:
diff changeset
545 t->generate(_masm);
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // advance
a61af66fc99e Initial load
duke
parents:
diff changeset
547 if (t->does_dispatch()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // make sure execution doesn't go beyond this point if code is broken
a61af66fc99e Initial load
duke
parents:
diff changeset
550 __ should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
551 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
552 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // dispatch to next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
554 __ dispatch_epilog(tos_out, step);
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // Entry points
a61af66fc99e Initial load
duke
parents:
diff changeset
560
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
561 /**
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
562 * Returns the return entry table for the given invoke bytecode.
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
563 */
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
564 address* TemplateInterpreter::invoke_return_entry_table_for(Bytecodes::Code code) {
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
565 switch (code) {
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
566 case Bytecodes::_invokestatic:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
567 case Bytecodes::_invokespecial:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
568 case Bytecodes::_invokevirtual:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
569 case Bytecodes::_invokehandle:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
570 return Interpreter::invoke_return_entry_table();
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
571 case Bytecodes::_invokeinterface:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
572 return Interpreter::invokeinterface_return_entry_table();
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
573 case Bytecodes::_invokedynamic:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
574 return Interpreter::invokedynamic_return_entry_table();
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
575 default:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
576 fatal(err_msg("invalid bytecode: %s", Bytecodes::name(code)));
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
577 return NULL;
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
578 }
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
579 }
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
580
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
581 /**
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
582 * Returns the return entry address for the given top-of-stack state and bytecode.
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
583 */
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
584 address TemplateInterpreter::return_entry(TosState state, int length, Bytecodes::Code code) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
585 guarantee(0 <= length && length < Interpreter::number_of_return_entries, "illegal length");
13010
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
586 const int index = TosState_as_index(state);
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
587 switch (code) {
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
588 case Bytecodes::_invokestatic:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
589 case Bytecodes::_invokespecial:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
590 case Bytecodes::_invokevirtual:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
591 case Bytecodes::_invokehandle:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
592 return _invoke_return_entry[index];
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
593 case Bytecodes::_invokeinterface:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
594 return _invokeinterface_return_entry[index];
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
595 case Bytecodes::_invokedynamic:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
596 return _invokedynamic_return_entry[index];
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
597 default:
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
598 assert(!Bytecodes::is_invoke(code), err_msg("invoke instructions should be handled separately: %s", Bytecodes::name(code)));
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
599 return _return_entry[length].entry(state);
bd3237e0e18d 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 11080
diff changeset
600 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
601 }
a61af66fc99e Initial load
duke
parents:
diff changeset
602
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 address TemplateInterpreter::deopt_entry(TosState state, int length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
605 guarantee(0 <= length && length < Interpreter::number_of_deopt_entries, "illegal length");
a61af66fc99e Initial load
duke
parents:
diff changeset
606 return _deopt_entry[length].entry(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
608
a61af66fc99e Initial load
duke
parents:
diff changeset
609 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
610 // Suport for invokes
a61af66fc99e Initial load
duke
parents:
diff changeset
611
a61af66fc99e Initial load
duke
parents:
diff changeset
612 int TemplateInterpreter::TosState_as_index(TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
613 assert( state < number_of_states , "Invalid state in TosState_as_index");
a61af66fc99e Initial load
duke
parents:
diff changeset
614 assert(0 <= (int)state && (int)state < TemplateInterpreter::number_of_return_addrs, "index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
615 return (int)state;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617
a61af66fc99e Initial load
duke
parents:
diff changeset
618
a61af66fc99e Initial load
duke
parents:
diff changeset
619 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
620 // Safepoint suppport
a61af66fc99e Initial load
duke
parents:
diff changeset
621
a61af66fc99e Initial load
duke
parents:
diff changeset
622 static inline void copy_table(address* from, address* to, int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // Copy non-overlapping tables. The copy has to occur word wise for MT safety.
a61af66fc99e Initial load
duke
parents:
diff changeset
624 while (size-- > 0) *to++ = *from++;
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 void TemplateInterpreter::notice_safepoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 if (!_notice_safepoints) {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 // switch to safepoint dispatch table
a61af66fc99e Initial load
duke
parents:
diff changeset
630 _notice_safepoints = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
631 copy_table((address*)&_safept_table, (address*)&_active_table, sizeof(_active_table) / sizeof(address));
a61af66fc99e Initial load
duke
parents:
diff changeset
632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
634
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // switch from the dispatch table which notices safepoints back to the
a61af66fc99e Initial load
duke
parents:
diff changeset
636 // normal dispatch table. So that we can notice single stepping points,
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // keep the safepoint dispatch table if we are single stepping in JVMTI.
a61af66fc99e Initial load
duke
parents:
diff changeset
638 // Note that the should_post_single_step test is exactly as fast as the
a61af66fc99e Initial load
duke
parents:
diff changeset
639 // JvmtiExport::_enabled test and covers both cases.
a61af66fc99e Initial load
duke
parents:
diff changeset
640 void TemplateInterpreter::ignore_safepoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
641 if (_notice_safepoints) {
a61af66fc99e Initial load
duke
parents:
diff changeset
642 if (!JvmtiExport::should_post_single_step()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // switch to normal dispatch table
a61af66fc99e Initial load
duke
parents:
diff changeset
644 _notice_safepoints = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 copy_table((address*)&_normal_table, (address*)&_active_table, sizeof(_active_table) / sizeof(address));
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
649
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
650 //------------------------------------------------------------------------------------------------------------------------
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
651 // Deoptimization support
0
a61af66fc99e Initial load
duke
parents:
diff changeset
652
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
653 // If deoptimization happens, this function returns the point of next bytecode to continue execution
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
654 address TemplateInterpreter::deopt_continue_after_entry(Method* method, address bcp, int callee_parameters, bool is_top_frame) {
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
655 return AbstractInterpreter::deopt_continue_after_entry(method, bcp, callee_parameters, is_top_frame);
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
656 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
657
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
658 // If deoptimization happens, this function returns the point where the interpreter reexecutes
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
659 // the bytecode.
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
660 // Note: Bytecodes::_athrow (C1 only) and Bytecodes::_return are the special cases
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
661 // that do not return "Interpreter::deopt_entry(vtos, 0)"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
662 address TemplateInterpreter::deopt_reexecute_entry(Method* method, address bcp) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 assert(method->contains(bcp), "just checkin'");
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
664 Bytecodes::Code code = Bytecodes::java_code_at(method, bcp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
665 if (code == Bytecodes::_return) {
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
666 // This is used for deopt during registration of finalizers
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
667 // during Object.<init>. We simply need to resume execution at
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
668 // the standard return vtos bytecode to pop the frame normally.
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
669 // reexecuting the real bytecode would cause double registration
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
670 // of the finalizable object.
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
671 return _normal_table.entry(Bytecodes::_return).entry(vtos);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
672 } else {
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
673 return AbstractInterpreter::deopt_reexecute_entry(method, bcp);
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
674 }
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
675 }
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
676
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
677 // If deoptimization happens, the interpreter should reexecute this bytecode.
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
678 // This function mainly helps the compilers to set up the reexecute bit.
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
679 bool TemplateInterpreter::bytecode_should_reexecute(Bytecodes::Code code) {
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
680 if (code == Bytecodes::_return) {
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
681 //Yes, we consider Bytecodes::_return as a special case of reexecution
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
682 return true;
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
683 } else {
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
684 return AbstractInterpreter::bytecode_should_reexecute(code);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
685 }
a61af66fc99e Initial load
duke
parents:
diff changeset
686 }
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 #endif // !CC_INTERP