annotate src/cpu/x86/vm/interpreterRT_x86_64.cpp @ 6725:da91efe96a93

6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
author coleenp
date Sat, 01 Sep 2012 13:25:18 -0400
parents f95d63e2154a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
2 * Copyright (c) 2003, 2012, 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: 1506
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1506
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: 1506
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/interpreterRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/universe.inline.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
30 #include "oops/method.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "runtime/icache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "runtime/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Implementation of SignatureHandlerGenerator
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Register InterpreterRuntime::SignatureHandlerGenerator::from() { return r14; }
a61af66fc99e Initial load
duke
parents:
diff changeset
42 Register InterpreterRuntime::SignatureHandlerGenerator::to() { return rsp; }
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Register InterpreterRuntime::SignatureHandlerGenerator::temp() { return rscratch1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void InterpreterRuntime::SignatureHandlerGenerator::pass_int() {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 const Address src(from(), Interpreter::local_offset_in_bytes(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #ifdef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
49 switch (_num_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 case 0:
a61af66fc99e Initial load
duke
parents:
diff changeset
51 __ movl(c_rarg1, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 case 1:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 __ movl(c_rarg2, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 case 2:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 __ movl(c_rarg3, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
63 __ movl(rax, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 __ movl(Address(to(), _stack_offset), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
69 switch (_num_int_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 case 0:
a61af66fc99e Initial load
duke
parents:
diff changeset
71 __ movl(c_rarg1, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 case 1:
a61af66fc99e Initial load
duke
parents:
diff changeset
75 __ movl(c_rarg2, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case 2:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 __ movl(c_rarg3, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 case 3:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 __ movl(c_rarg4, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 case 4:
a61af66fc99e Initial load
duke
parents:
diff changeset
87 __ movl(c_rarg5, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
91 __ movl(rax, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 __ movl(Address(to(), _stack_offset), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void InterpreterRuntime::SignatureHandlerGenerator::pass_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 const Address src(from(), Interpreter::local_offset_in_bytes(offset() + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #ifdef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
103 switch (_num_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 case 0:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
105 __ movptr(c_rarg1, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 case 1:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
109 __ movptr(c_rarg2, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 case 2:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
113 __ movptr(c_rarg3, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 case 3:
a61af66fc99e Initial load
duke
parents:
diff changeset
117 default:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
118 __ movptr(rax, src);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
119 __ movptr(Address(to(), _stack_offset), rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
124 switch (_num_int_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 case 0:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
126 __ movptr(c_rarg1, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 case 1:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
130 __ movptr(c_rarg2, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 case 2:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
134 __ movptr(c_rarg3, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 case 3:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
138 __ movptr(c_rarg4, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 case 4:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
142 __ movptr(c_rarg5, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 default:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
146 __ movptr(rax, src);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
147 __ movptr(Address(to(), _stack_offset), rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void InterpreterRuntime::SignatureHandlerGenerator::pass_float() {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 const Address src(from(), Interpreter::local_offset_in_bytes(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 #ifdef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (_num_args < Argument::n_float_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 __ movflt(as_XMMRegister(++_num_args), src);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 __ movl(rax, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 __ movl(Address(to(), _stack_offset), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
166 if (_num_fp_args < Argument::n_float_register_parameters_c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 __ movflt(as_XMMRegister(_num_fp_args++), src);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 __ movl(rax, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 __ movl(Address(to(), _stack_offset), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 void InterpreterRuntime::SignatureHandlerGenerator::pass_double() {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 const Address src(from(), Interpreter::local_offset_in_bytes(offset() + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 #ifdef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (_num_args < Argument::n_float_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 __ movdbl(as_XMMRegister(++_num_args), src);
a61af66fc99e Initial load
duke
parents:
diff changeset
182 } else {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
183 __ movptr(rax, src);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
184 __ movptr(Address(to(), _stack_offset), rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (_num_fp_args < Argument::n_float_register_parameters_c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 __ movdbl(as_XMMRegister(_num_fp_args++), src);
a61af66fc99e Initial load
duke
parents:
diff changeset
190 } else {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
191 __ movptr(rax, src);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
192 __ movptr(Address(to(), _stack_offset), rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 void InterpreterRuntime::SignatureHandlerGenerator::pass_object() {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 const Address src(from(), Interpreter::local_offset_in_bytes(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 #ifdef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
202 switch (_num_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 case 0:
a61af66fc99e Initial load
duke
parents:
diff changeset
204 assert(offset() == 0, "argument register 1 can only be (non-null) receiver");
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
205 __ lea(c_rarg1, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
206 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 case 1:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
209 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210 __ xorl(c_rarg2, c_rarg2);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
211 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
212 __ cmov(Assembler::notEqual, c_rarg2, rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 case 2:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
216 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 __ xorl(c_rarg3, c_rarg3);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
218 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
219 __ cmov(Assembler::notEqual, c_rarg3, rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
220 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
222 default:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
223 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 __ xorl(temp(), temp());
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
225 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
226 __ cmov(Assembler::notEqual, temp(), rax);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
227 __ movptr(Address(to(), _stack_offset), temp());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
232 switch (_num_int_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 case 0:
a61af66fc99e Initial load
duke
parents:
diff changeset
234 assert(offset() == 0, "argument register 1 can only be (non-null) receiver");
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
235 __ lea(c_rarg1, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
238 case 1:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
239 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
240 __ xorl(c_rarg2, c_rarg2);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
241 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
242 __ cmov(Assembler::notEqual, c_rarg2, rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
243 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 case 2:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
246 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247 __ xorl(c_rarg3, c_rarg3);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
248 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
249 __ cmov(Assembler::notEqual, c_rarg3, rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
250 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 case 3:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
253 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
254 __ xorl(c_rarg4, c_rarg4);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
255 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
256 __ cmov(Assembler::notEqual, c_rarg4, rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 case 4:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
260 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 __ xorl(c_rarg5, c_rarg5);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
262 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
263 __ cmov(Assembler::notEqual, c_rarg5, rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 default:
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
267 __ lea(rax, src);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
268 __ xorl(temp(), temp());
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
269 __ cmpptr(src, 0);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
270 __ cmov(Assembler::notEqual, temp(), rax);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
271 __ movptr(Address(to(), _stack_offset), temp());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
272 _stack_offset += wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 void InterpreterRuntime::SignatureHandlerGenerator::generate(uint64_t fingerprint) {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // generate code to handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
280 iterate(fingerprint);
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // return result handler
a61af66fc99e Initial load
duke
parents:
diff changeset
283 __ lea(rax, ExternalAddress(Interpreter::result_handler(method()->result_type())));
a61af66fc99e Initial load
duke
parents:
diff changeset
284 __ ret(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 __ flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // Implementation of SignatureHandlerLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 void SignatureHandlerLibrary::pd_set_handler(address handler) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 #ifdef _WIN64
a61af66fc99e Initial load
duke
parents:
diff changeset
296 class SlowSignatureHandler
a61af66fc99e Initial load
duke
parents:
diff changeset
297 : public NativeSignatureIterator {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
299 address _from;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 intptr_t* _to;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 intptr_t* _reg_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 intptr_t* _fp_identifiers;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 unsigned int _num_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 virtual void pass_int()
a61af66fc99e Initial load
duke
parents:
diff changeset
306 {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 jint from_obj = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
308 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 if (_num_args < Argument::n_int_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 *_reg_args++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
312 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
313 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 virtual void pass_long()
a61af66fc99e Initial load
duke
parents:
diff changeset
319 {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 intptr_t from_obj = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
321 _from -= 2*Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 if (_num_args < Argument::n_int_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 *_reg_args++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 virtual void pass_object()
a61af66fc99e Initial load
duke
parents:
diff changeset
332 {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 intptr_t *from_addr = (intptr_t*)(_from + Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
334 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335 if (_num_args < Argument::n_int_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 *_reg_args++ = (*from_addr == 0) ? NULL : (intptr_t) from_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
338 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 *_to++ = (*from_addr == 0) ? NULL : (intptr_t) from_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 virtual void pass_float()
a61af66fc99e Initial load
duke
parents:
diff changeset
344 {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 jint from_obj = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
346 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 if (_num_args < Argument::n_float_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
349 *_reg_args++ = from_obj;
645
c3a720eefe82 6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents: 337
diff changeset
350 *_fp_identifiers |= (intptr_t)(0x01 << (_num_args*2)); // mark as float
0
a61af66fc99e Initial load
duke
parents:
diff changeset
351 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
352 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
353 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 virtual void pass_double()
a61af66fc99e Initial load
duke
parents:
diff changeset
358 {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 intptr_t from_obj = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
360 _from -= 2*Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
361
a61af66fc99e Initial load
duke
parents:
diff changeset
362 if (_num_args < Argument::n_float_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 *_reg_args++ = from_obj;
645
c3a720eefe82 6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents: 337
diff changeset
364 *_fp_identifiers |= (intptr_t)(0x3 << (_num_args*2)); // mark as double
0
a61af66fc99e Initial load
duke
parents:
diff changeset
365 _num_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
372 SlowSignatureHandler(methodHandle method, address from, intptr_t* to)
a61af66fc99e Initial load
duke
parents:
diff changeset
373 : NativeSignatureIterator(method)
a61af66fc99e Initial load
duke
parents:
diff changeset
374 {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 _from = from;
a61af66fc99e Initial load
duke
parents:
diff changeset
376 _to = to;
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378 _reg_args = to - (method->is_static() ? 4 : 5);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 _fp_identifiers = to - 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 _to = _to + 4; // Windows reserves stack space for register arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
381 *(int*) _fp_identifiers = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
382 _num_args = (method->is_static() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 };
a61af66fc99e Initial load
duke
parents:
diff changeset
385 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
386 class SlowSignatureHandler
a61af66fc99e Initial load
duke
parents:
diff changeset
387 : public NativeSignatureIterator {
a61af66fc99e Initial load
duke
parents:
diff changeset
388 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
389 address _from;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 intptr_t* _to;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 intptr_t* _int_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 intptr_t* _fp_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 intptr_t* _fp_identifiers;
a61af66fc99e Initial load
duke
parents:
diff changeset
394 unsigned int _num_int_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 unsigned int _num_fp_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 virtual void pass_int()
a61af66fc99e Initial load
duke
parents:
diff changeset
398 {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 jint from_obj = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
400 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 if (_num_int_args < Argument::n_int_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 *_int_args++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
404 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
405 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
408 }
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 virtual void pass_long()
a61af66fc99e Initial load
duke
parents:
diff changeset
411 {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 intptr_t from_obj = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
413 _from -= 2*Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 if (_num_int_args < Argument::n_int_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 *_int_args++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
418 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 virtual void pass_object()
a61af66fc99e Initial load
duke
parents:
diff changeset
424 {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 intptr_t *from_addr = (intptr_t*)(_from + Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
426 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if (_num_int_args < Argument::n_int_register_parameters_c-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 *_int_args++ = (*from_addr == 0) ? NULL : (intptr_t)from_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
430 _num_int_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
431 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 *_to++ = (*from_addr == 0) ? NULL : (intptr_t) from_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 virtual void pass_float()
a61af66fc99e Initial load
duke
parents:
diff changeset
437 {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 jint from_obj = *(jint*)(_from+Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
439 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 if (_num_fp_args < Argument::n_float_register_parameters_c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 *_fp_args++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
443 _num_fp_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 *_to++ = from_obj;
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 virtual void pass_double()
a61af66fc99e Initial load
duke
parents:
diff changeset
450 {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 intptr_t from_obj = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 844
diff changeset
452 _from -= 2*Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 if (_num_fp_args < Argument::n_float_register_parameters_c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
455 *_fp_args++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
456 *_fp_identifiers |= (1 << _num_fp_args); // mark as double
a61af66fc99e Initial load
duke
parents:
diff changeset
457 _num_fp_args++;
a61af66fc99e Initial load
duke
parents:
diff changeset
458 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 *_to++ = from_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
464 SlowSignatureHandler(methodHandle method, address from, intptr_t* to)
a61af66fc99e Initial load
duke
parents:
diff changeset
465 : NativeSignatureIterator(method)
a61af66fc99e Initial load
duke
parents:
diff changeset
466 {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 _from = from;
a61af66fc99e Initial load
duke
parents:
diff changeset
468 _to = to;
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 _int_args = to - (method->is_static() ? 14 : 15);
a61af66fc99e Initial load
duke
parents:
diff changeset
471 _fp_args = to - 9;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 _fp_identifiers = to - 10;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 *(int*) _fp_identifiers = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 _num_int_args = (method->is_static() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 _num_fp_args = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477 };
a61af66fc99e Initial load
duke
parents:
diff changeset
478 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 IRT_ENTRY(address,
a61af66fc99e Initial load
duke
parents:
diff changeset
482 InterpreterRuntime::slow_signature_handler(JavaThread* thread,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
483 Method* method,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
484 intptr_t* from,
a61af66fc99e Initial load
duke
parents:
diff changeset
485 intptr_t* to))
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
486 methodHandle m(thread, (Method*)method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
487 assert(m->is_native(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
490 SlowSignatureHandler(m, (address)from, to + 1).iterate(UCONST64(-1));
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // return result handler
a61af66fc99e Initial load
duke
parents:
diff changeset
493 return Interpreter::result_handler(m->result_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
494 IRT_END