annotate src/cpu/sparc/vm/interpreterRT_sparc.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents a61af66fc99e
children 6b2273dd6fa9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1998-2006 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
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_sparc.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Implementation of SignatureHandlerGenerator
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 void InterpreterRuntime::SignatureHandlerGenerator::pass_word(int size_of_arg, int offset_in_arg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 Argument jni_arg(jni_offset() + offset_in_arg, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Register Rtmp = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 __ ld(Llocals, Interpreter::local_offset_in_bytes(offset()), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 __ store_argument(Rtmp, jni_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 void InterpreterRuntime::SignatureHandlerGenerator::pass_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Argument jni_arg(jni_offset(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Register Rtmp = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // check at least one tag is okay
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 __ ld_ptr(Llocals, Interpreter::local_tag_offset_in_bytes(offset() + 1), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
51 __ cmp(Rtmp, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 __ brx(Assembler::equal, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 __ stop("Native object has bad tag value");
a61af66fc99e Initial load
duke
parents:
diff changeset
55 __ bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
60 __ ldx(Llocals, Interpreter::local_offset_in_bytes(offset() + 1), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 __ store_long_argument(Rtmp, jni_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
63 __ ld(Llocals, Interpreter::local_offset_in_bytes(offset() + 1), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 __ store_argument(Rtmp, jni_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 __ ld(Llocals, Interpreter::local_offset_in_bytes(offset() + 0), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 Argument successor(jni_arg.successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
67 __ store_argument(Rtmp, successor);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void InterpreterRuntime::SignatureHandlerGenerator::pass_float() {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 Argument jni_arg(jni_offset(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 FloatRegister Rtmp = F0;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 __ ldf(FloatRegisterImpl::S, Llocals, Interpreter::local_offset_in_bytes(offset()), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 __ store_float_argument(Rtmp, jni_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void InterpreterRuntime::SignatureHandlerGenerator::pass_double() {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 Argument jni_arg(jni_offset(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
85 FloatRegister Rtmp = F0;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 __ ldf(FloatRegisterImpl::D, Llocals, Interpreter::local_offset_in_bytes(offset() + 1), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 __ store_double_argument(Rtmp, jni_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
89 Register Rtmp = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 __ ld(Llocals, Interpreter::local_offset_in_bytes(offset() + 1), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 __ store_argument(Rtmp, jni_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 __ ld(Llocals, Interpreter::local_offset_in_bytes(offset()), Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 Argument successor(jni_arg.successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
94 __ store_argument(Rtmp, successor);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 void InterpreterRuntime::SignatureHandlerGenerator::pass_object() {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 Argument jni_arg(jni_offset(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 Argument java_arg( offset(), true);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 Register Rtmp1 = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 Register Rtmp2 = jni_arg.is_register() ? jni_arg.as_register() : O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 Register Rtmp3 = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // the handle for a receiver will never be null
a61af66fc99e Initial load
duke
parents:
diff changeset
106 bool do_NULL_check = offset() != 0 || is_static();
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 Address h_arg = Address(Llocals, 0, Interpreter::local_offset_in_bytes(offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
109 __ ld_ptr(h_arg, Rtmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // check we have the obj and not the tag
a61af66fc99e Initial load
duke
parents:
diff changeset
113 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 __ mov(frame::TagReference, Rtmp3);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 __ cmp(Rtmp1, Rtmp3);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 __ brx(Assembler::notEqual, true, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 __ stop("Native object passed tag by mistake");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 __ bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
122 if (!do_NULL_check) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 __ add(h_arg, Rtmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (Rtmp1 == Rtmp2)
a61af66fc99e Initial load
duke
parents:
diff changeset
126 __ tst(Rtmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 else __ addcc(G0, Rtmp1, Rtmp2); // optimize mov/test pair
a61af66fc99e Initial load
duke
parents:
diff changeset
128 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 __ brx(Assembler::notZero, true, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
130 __ delayed()->add(h_arg, Rtmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 __ store_ptr_argument(Rtmp2, jni_arg); // this is often a no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void InterpreterRuntime::SignatureHandlerGenerator::generate(uint64_t fingerprint) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // generate code to handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
140 iterate(fingerprint);
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // return result handler
a61af66fc99e Initial load
duke
parents:
diff changeset
143 Address result_handler(Lscratch, Interpreter::result_handler(method()->result_type()));
a61af66fc99e Initial load
duke
parents:
diff changeset
144 __ sethi(result_handler);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 __ delayed()->add(result_handler, result_handler.base());
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 __ flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Implementation of SignatureHandlerLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void SignatureHandlerLibrary::pd_set_handler(address handler) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 class SlowSignatureHandler: public NativeSignatureIterator {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
159 address _from;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 intptr_t* _to;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 intptr_t* _RegArgSignature; // Signature of first Arguments to be passed in Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
162 uint _argcount;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 enum { // We need to differenciate float from non floats in reg args
a61af66fc99e Initial load
duke
parents:
diff changeset
165 non_float = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
166 float_sig = 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
167 double_sig = 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
168 long_sig = 3
a61af66fc99e Initial load
duke
parents:
diff changeset
169 };
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
172 void verify_tag(frame::Tag t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 assert(!TaggedStackInterpreter ||
a61af66fc99e Initial load
duke
parents:
diff changeset
174 *(intptr_t*)(_from+Interpreter::local_tag_offset_in_bytes(0)) == t, "wrong tag");
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 virtual void pass_int() {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
180 debug_only(verify_tag(frame::TagValue));
a61af66fc99e Initial load
duke
parents:
diff changeset
181 _from -= Interpreter::stackElementSize();
a61af66fc99e Initial load
duke
parents:
diff changeset
182 add_signature( non_float );
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 virtual void pass_object() {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // pass address of from
a61af66fc99e Initial load
duke
parents:
diff changeset
187 intptr_t *from_addr = (intptr_t*)(_from + Interpreter::local_offset_in_bytes(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
188 *_to++ = (*from_addr == 0) ? NULL : (intptr_t) from_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 debug_only(verify_tag(frame::TagReference));
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _from -= Interpreter::stackElementSize();
a61af66fc99e Initial load
duke
parents:
diff changeset
191 add_signature( non_float );
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
195 virtual void pass_float() {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
197 debug_only(verify_tag(frame::TagValue));
a61af66fc99e Initial load
duke
parents:
diff changeset
198 _from -= Interpreter::stackElementSize();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 add_signature( float_sig );
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 virtual void pass_double() {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 *_to++ = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
204 debug_only(verify_tag(frame::TagValue));
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _from -= 2*Interpreter::stackElementSize();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 add_signature( double_sig );
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 virtual void pass_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 _to[0] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
211 debug_only(verify_tag(frame::TagValue));
a61af66fc99e Initial load
duke
parents:
diff changeset
212 _to += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
213 _from -= 2*Interpreter::stackElementSize();
a61af66fc99e Initial load
duke
parents:
diff changeset
214 add_signature( long_sig );
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // pass_double() is pass_long() and pass_float() only _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
218 virtual void pass_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 _to[0] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
220 _to[1] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
221 debug_only(verify_tag(frame::TagValue));
a61af66fc99e Initial load
duke
parents:
diff changeset
222 _to += 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 _from -= 2*Interpreter::stackElementSize();
a61af66fc99e Initial load
duke
parents:
diff changeset
224 add_signature( non_float );
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 virtual void add_signature( intptr_t sig_type ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 if ( _argcount < (sizeof (intptr_t))*4 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 *_RegArgSignature |= (sig_type << (_argcount*2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
231 _argcount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
237 SlowSignatureHandler(methodHandle method, address from, intptr_t* to, intptr_t *RegArgSig) : NativeSignatureIterator(method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 _from = from;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 _to = to;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 _RegArgSignature = RegArgSig;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 *_RegArgSignature = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 _argcount = method->is_static() ? 2 : 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244 };
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 IRT_ENTRY(address, InterpreterRuntime::slow_signature_handler(
a61af66fc99e Initial load
duke
parents:
diff changeset
248 JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
249 methodOopDesc* method,
a61af66fc99e Initial load
duke
parents:
diff changeset
250 intptr_t* from,
a61af66fc99e Initial load
duke
parents:
diff changeset
251 intptr_t* to ))
a61af66fc99e Initial load
duke
parents:
diff changeset
252 methodHandle m(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 assert(m->is_native(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // Warning: We use reg arg slot 00 temporarily to return the RegArgSignature
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // back to the code that pops the arguments into the CPU registers
a61af66fc99e Initial load
duke
parents:
diff changeset
257 SlowSignatureHandler(m, (address)from, m->is_static() ? to+2 : to+1, to).iterate(UCONST64(-1));
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // return result handler
a61af66fc99e Initial load
duke
parents:
diff changeset
259 return Interpreter::result_handler(m->result_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
260 IRT_END