annotate src/cpu/x86/vm/interpreterRT_x86_64.cpp @ 1552:c18cbe5936b8

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