annotate src/cpu/sparc/vm/stubGenerator_sparc.cpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents f8236e79048a
children d1605aabd0a1 37f87013dfd8
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 1997-2007 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/_stubGenerator_sparc.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Declaration and definition of StubGenerator (no .hpp file).
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // For a more detailed description of the stub routine structure
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // see the comment in stubRoutines.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 #define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
35 #define BLOCK_COMMENT(str) /* nothing */
a61af66fc99e Initial load
duke
parents:
diff changeset
36 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #define BLOCK_COMMENT(str) __ block_comment(str)
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 #define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Note: The register L7 is used as L7_thread_cache, and may not be used
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // any other way within this module.
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static const Register& Lstub_temp = L2;
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // -------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Stub Code definitions
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static address handle_unsafe_access() {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 address pc = thread->saved_exception_pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 address npc = thread->saved_exception_npc();
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // pc is the instruction which we must emulate
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // doing a no-op is fine: return garbage from the load
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // request an async exception
a61af66fc99e Initial load
duke
parents:
diff changeset
59 thread->set_pending_unsafe_access_error();
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // return address of next instruction to execute
a61af66fc99e Initial load
duke
parents:
diff changeset
62 return npc;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 class StubGenerator: public StubCodeGenerator {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
69 #define inc_counter_np(a,b,c) (0)
a61af66fc99e Initial load
duke
parents:
diff changeset
70 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
71 void inc_counter_np_(int& counter, Register t1, Register t2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 Address counter_addr(t2, (address) &counter);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 __ sethi(counter_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 __ ld(counter_addr, t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 __ inc(t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 __ st(t1, counter_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #define inc_counter_np(counter, t1, t2) \
a61af66fc99e Initial load
duke
parents:
diff changeset
79 BLOCK_COMMENT("inc_counter " #counter); \
a61af66fc99e Initial load
duke
parents:
diff changeset
80 inc_counter_np_(counter, t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Call stubs are used to call Java from C
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 address generate_call_stub(address& return_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 StubCodeMark mark(this, "StubRoutines", "call_stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
88 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Incoming arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
91 //
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // o0 : call wrapper address
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // o1 : result (address)
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // o2 : result type
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // o3 : method
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // o4 : (interpreter) entry point
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // o5 : parameters (address)
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // [sp + 0x5c]: parameter size (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // [sp + 0x60]: thread
a61af66fc99e Initial load
duke
parents:
diff changeset
100 //
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // +---------------+ <--- sp + 0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // . reg save area .
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // +---------------+ <--- sp + 0x40
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // . extra 7 slots .
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // +---------------+ <--- sp + 0x5c
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // | param. size |
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // +---------------+ <--- sp + 0x60
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // | thread |
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // +---------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // note: if the link argument position changes, adjust
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // the code in frame::entry_frame_call_wrapper()
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 const Argument link = Argument(0, false); // used only for GC
a61af66fc99e Initial load
duke
parents:
diff changeset
120 const Argument result = Argument(1, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 const Argument result_type = Argument(2, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 const Argument method = Argument(3, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 const Argument entry_point = Argument(4, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 const Argument parameters = Argument(5, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 const Argument parameter_size = Argument(6, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 const Argument thread = Argument(7, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // setup thread register
a61af66fc99e Initial load
duke
parents:
diff changeset
129 __ ld_ptr(thread.as_address(), G2_thread);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
130 __ reinit_heapbase();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // make sure we have no pending exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
134 { const Register t = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 __ ld_ptr(G2_thread, in_bytes(Thread::pending_exception_offset()), t);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 __ br_null(t, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
139 __ stop("StubRoutines::call_stub: entered with pending exception");
a61af66fc99e Initial load
duke
parents:
diff changeset
140 __ bind(L);
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 // create activation frame & allocate space for parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
145 { const Register t = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 __ ld_ptr(parameter_size.as_address(), t); // get parameter size (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
147 __ add(t, frame::memory_parameter_word_sp_offset, t); // add space for save area (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
148 __ round_to(t, WordsPerLong); // make sure it is multiple of 2 (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
149 __ sll(t, Interpreter::logStackElementSize(), t); // compute number of bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
150 __ neg(t); // negate so it can be used with save
a61af66fc99e Initial load
duke
parents:
diff changeset
151 __ save(SP, t, SP); // setup new frame
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // +---------------+ <--- sp + 0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // . reg save area .
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // +---------------+ <--- sp + 0x40
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // . extra 7 slots .
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // +---------------+ <--- sp + 0x5c
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // | empty slot | (only if parameter size is even)
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // +---------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // . parameters .
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // +---------------+ <--- fp + 0
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // . reg save area .
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // +---------------+ <--- fp + 0x40
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // . extra 7 slots .
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // +---------------+ <--- fp + 0x5c
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // | param. size |
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // +---------------+ <--- fp + 0x60
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // | thread |
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // +---------------+
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // pass parameters if any
a61af66fc99e Initial load
duke
parents:
diff changeset
184 BLOCK_COMMENT("pass parameters if any");
a61af66fc99e Initial load
duke
parents:
diff changeset
185 { const Register src = parameters.as_in().as_register();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 const Register dst = Lentry_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 const Register tmp = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 const Register cnt = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // test if any parameters & setup of Lentry_args
a61af66fc99e Initial load
duke
parents:
diff changeset
191 Label exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 __ ld_ptr(parameter_size.as_in().as_address(), cnt); // parameter counter
a61af66fc99e Initial load
duke
parents:
diff changeset
193 __ add( FP, STACK_BIAS, dst );
a61af66fc99e Initial load
duke
parents:
diff changeset
194 __ tst(cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 __ br(Assembler::zero, false, Assembler::pn, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 __ delayed()->sub(dst, BytesPerWord, dst); // setup Lentry_args
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // copy parameters if any
a61af66fc99e Initial load
duke
parents:
diff changeset
199 Label loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 __ BIND(loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Store tag first.
a61af66fc99e Initial load
duke
parents:
diff changeset
202 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 __ ld_ptr(src, 0, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 __ add(src, BytesPerWord, src); // get next
a61af66fc99e Initial load
duke
parents:
diff changeset
205 __ st_ptr(tmp, dst, Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // Store parameter value
a61af66fc99e Initial load
duke
parents:
diff changeset
208 __ ld_ptr(src, 0, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 __ add(src, BytesPerWord, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 __ st_ptr(tmp, dst, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
211 __ deccc(cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 __ br(Assembler::greater, false, Assembler::pt, loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 __ delayed()->sub(dst, Interpreter::stackElementSize(), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // done
a61af66fc99e Initial load
duke
parents:
diff changeset
216 __ BIND(exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // setup parameters, method & call Java function
a61af66fc99e Initial load
duke
parents:
diff changeset
220 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // layout_activation_impl checks it's notion of saved SP against
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // this register, so if this changes update it as well.
a61af66fc99e Initial load
duke
parents:
diff changeset
223 const Register saved_SP = Lscratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 __ mov(SP, saved_SP); // keep track of SP before call
a61af66fc99e Initial load
duke
parents:
diff changeset
225 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // setup parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
228 const Register t = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 __ ld_ptr(parameter_size.as_in().as_address(), t); // get parameter size (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
230 __ sll(t, Interpreter::logStackElementSize(), t); // compute number of bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
231 __ sub(FP, t, Gargs); // setup parameter pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
232 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
233 __ add( Gargs, STACK_BIAS, Gargs ); // Account for LP64 stack bias
a61af66fc99e Initial load
duke
parents:
diff changeset
234 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
235 __ mov(SP, O5_savedSP);
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // do the call
a61af66fc99e Initial load
duke
parents:
diff changeset
239 //
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // the following register must be setup:
a61af66fc99e Initial load
duke
parents:
diff changeset
241 //
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // G2_thread
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // G5_method
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // Gargs
a61af66fc99e Initial load
duke
parents:
diff changeset
245 BLOCK_COMMENT("call Java function");
a61af66fc99e Initial load
duke
parents:
diff changeset
246 __ jmpl(entry_point.as_in().as_register(), G0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 __ delayed()->mov(method.as_in().as_register(), G5_method); // setup method
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 BLOCK_COMMENT("call_stub_return_address:");
a61af66fc99e Initial load
duke
parents:
diff changeset
250 return_pc = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // The callee, if it wasn't interpreted, can return with SP changed so
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // we can no longer assert of change of SP.
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // store result depending on type
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // (everything that is not T_OBJECT, T_LONG, T_FLOAT, or T_DOUBLE
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // is treated as T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
258 { const Register addr = result .as_in().as_register();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 const Register type = result_type.as_in().as_register();
a61af66fc99e Initial load
duke
parents:
diff changeset
260 Label is_long, is_float, is_double, is_object, exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 __ cmp(type, T_OBJECT); __ br(Assembler::equal, false, Assembler::pn, is_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 __ delayed()->cmp(type, T_FLOAT); __ br(Assembler::equal, false, Assembler::pn, is_float);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 __ delayed()->cmp(type, T_DOUBLE); __ br(Assembler::equal, false, Assembler::pn, is_double);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 __ delayed()->cmp(type, T_LONG); __ br(Assembler::equal, false, Assembler::pn, is_long);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // store int result
a61af66fc99e Initial load
duke
parents:
diff changeset
268 __ st(O0, addr, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 __ BIND(exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 __ ret();
a61af66fc99e Initial load
duke
parents:
diff changeset
272 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 __ BIND(is_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 __ ba(false, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
276 __ delayed()->st_ptr(O0, addr, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 __ BIND(is_float);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 __ ba(false, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 __ delayed()->stf(FloatRegisterImpl::S, F0, addr, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 __ BIND(is_double);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 __ ba(false, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 __ delayed()->stf(FloatRegisterImpl::D, F0, addr, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 __ BIND(is_long);
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
288 __ ba(false, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 __ delayed()->st_long(O0, addr, G0); // store entire long
a61af66fc99e Initial load
duke
parents:
diff changeset
290 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
291 #if defined(COMPILER2)
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // All return values are where we want them, except for Longs. C2 returns
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // longs in G1 in the 32-bit build whereas the interpreter wants them in O0/O1.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // Since the interpreter will return longs in G1 and O0/O1 in the 32bit
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // build we simply always use G1.
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // Note: I tried to make c2 return longs in O0/O1 and G1 so we wouldn't have to
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // do this here. Unfortunately if we did a rethrow we'd see an machepilog node
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // first which would move g1 -> O0/O1 and destroy the exception we were throwing.
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 __ ba(false, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 __ delayed()->stx(G1, addr, G0); // store entire long
a61af66fc99e Initial load
duke
parents:
diff changeset
302 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
303 __ st(O1, addr, BytesPerInt);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 __ ba(false, exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 __ delayed()->st(O0, addr, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 #endif /* COMPILER2 */
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #endif /* _LP64 */
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // Return point for a Java call if there's an exception thrown in Java code.
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // The exception is caught and transformed into a pending exception stored in
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // JavaThread that can be tested from within the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
317 //
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // Oexception: exception oop
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 address generate_catch_exception() {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 StubCodeMark mark(this, "StubRoutines", "catch_exception");
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
324 // verify that thread corresponds
a61af66fc99e Initial load
duke
parents:
diff changeset
325 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 const Register& temp_reg = Gtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 Address pending_exception_addr (G2_thread, 0, in_bytes(Thread::pending_exception_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
329 Address exception_file_offset_addr(G2_thread, 0, in_bytes(Thread::exception_file_offset ()));
a61af66fc99e Initial load
duke
parents:
diff changeset
330 Address exception_line_offset_addr(G2_thread, 0, in_bytes(Thread::exception_line_offset ()));
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // set pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
333 __ verify_oop(Oexception);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 __ st_ptr(Oexception, pending_exception_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 __ set((intptr_t)__FILE__, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 __ st_ptr(temp_reg, exception_file_offset_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 __ set((intptr_t)__LINE__, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 __ st(temp_reg, exception_line_offset_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // complete return to VM
a61af66fc99e Initial load
duke
parents:
diff changeset
341 assert(StubRoutines::_call_stub_return_address != NULL, "must have been generated before");
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 Address stub_ret(temp_reg, StubRoutines::_call_stub_return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 __ jump_to(stub_ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 //----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // Continuation point for runtime calls returning with a pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // The pending exception check happened in the runtime or native call stub
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // The pending exception in Thread is converted into a Java-level exception
a61af66fc99e Initial load
duke
parents:
diff changeset
355 //
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // Contract with Java-level exception handler: O0 = exception
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // O1 = throwing pc
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 address generate_forward_exception() {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 StubCodeMark mark(this, "StubRoutines", "forward_exception");
a61af66fc99e Initial load
duke
parents:
diff changeset
361 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // Upon entry, O7 has the return address returning into Java
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // (interpreted or compiled) code; i.e. the return address
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // becomes the throwing pc.
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 const Register& handler_reg = Gtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 Address exception_addr (G2_thread, 0, in_bytes(Thread::pending_exception_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // make sure that this code is only executed if there is a pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
373 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 __ ld_ptr(exception_addr, Gtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 __ br_notnull(Gtemp, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
377 __ stop("StubRoutines::forward exception: no pending exception (1)");
a61af66fc99e Initial load
duke
parents:
diff changeset
378 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // compute exception handler into handler_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
383 __ get_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
384 __ ld_ptr(exception_addr, Oexception);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 __ verify_oop(Oexception);
a61af66fc99e Initial load
duke
parents:
diff changeset
386 __ save_frame(0); // compensates for compiler weakness
a61af66fc99e Initial load
duke
parents:
diff changeset
387 __ add(O7->after_save(), frame::pc_return_offset, Lscratch); // save the issuing PC
a61af66fc99e Initial load
duke
parents:
diff changeset
388 BLOCK_COMMENT("call exception_handler_for_return_address");
a61af66fc99e Initial load
duke
parents:
diff changeset
389 __ call_VM_leaf(L7_thread_cache, CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), Lscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
390 __ mov(O0, handler_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
391 __ restore(); // compensates for compiler weakness
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 __ ld_ptr(exception_addr, Oexception);
a61af66fc99e Initial load
duke
parents:
diff changeset
394 __ add(O7, frame::pc_return_offset, Oissuing_pc); // save the issuing PC
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // make sure exception is set
a61af66fc99e Initial load
duke
parents:
diff changeset
398 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
399 __ br_notnull(Oexception, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
400 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
401 __ stop("StubRoutines::forward exception: no pending exception (2)");
a61af66fc99e Initial load
duke
parents:
diff changeset
402 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
404 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // jump to exception handler
a61af66fc99e Initial load
duke
parents:
diff changeset
406 __ jmp(handler_reg, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // clear pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
408 __ delayed()->st_ptr(G0, exception_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 return start;
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 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // Continuation point for throwing of implicit exceptions that are not handled in
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // the current activation. Fabricates an exception oop and initiates normal
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // exception dispatching in this frame. Only callee-saved registers are preserved
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // (through the normal register window / RegisterMap handling).
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // If the compiler needs all registers to be preserved between the fault
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // point and the exception handler then it must assume responsibility for that in
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // AbstractCompiler::continuation_for_implicit_null_exception or
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // continuation_for_implicit_division_by_zero_exception. All other implicit
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // exceptions (e.g., NullPointerException or AbstractMethodError on entry) are
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // either at call sites or otherwise assume that stack unwinding will be initiated,
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // so caller saved registers were assumed volatile in the compiler.
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427 // Note that we generate only this stub into a RuntimeStub, because it needs to be
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // properly traversed and ignored during GC, so we change the meaning of the "__"
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // macro within this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
430 #undef __
a61af66fc99e Initial load
duke
parents:
diff changeset
431 #define __ masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 address generate_throw_exception(const char* name, address runtime_entry, bool restore_saved_exception_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
435 int insts_size = VerifyThread ? 1 * K : 600;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
437 int insts_size = VerifyThread ? 1 * K : 256;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 #endif /* ASSERT */
a61af66fc99e Initial load
duke
parents:
diff changeset
439 int locs_size = 32;
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 CodeBuffer code(name, insts_size, locs_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
442 MacroAssembler* masm = new MacroAssembler(&code);
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // This is an inlined and slightly modified version of call_VM
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // which has the ability to fetch the return PC out of thread-local storage
a61af66fc99e Initial load
duke
parents:
diff changeset
448 __ assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // Note that we always push a frame because on the SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // architecture, for all of our implicit exception kinds at call
a61af66fc99e Initial load
duke
parents:
diff changeset
452 // sites, the implicit exception is taken before the callee frame
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // is pushed.
a61af66fc99e Initial load
duke
parents:
diff changeset
454 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 int frame_complete = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 if (restore_saved_exception_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 Address saved_exception_pc(G2_thread, 0, in_bytes(JavaThread::saved_exception_pc_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
460 __ ld_ptr(saved_exception_pc, I7);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 __ sub(I7, frame::pc_return_offset, I7);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // Note that we always have a runtime stub frame on the top of stack by this point
a61af66fc99e Initial load
duke
parents:
diff changeset
465 Register last_java_sp = SP;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // 64-bit last_java_sp is biased!
a61af66fc99e Initial load
duke
parents:
diff changeset
467 __ set_last_Java_frame(last_java_sp, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
468 if (VerifyThread) __ mov(G2_thread, O0); // about to be smashed; pass early
a61af66fc99e Initial load
duke
parents:
diff changeset
469 __ save_thread(noreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // do the call
a61af66fc99e Initial load
duke
parents:
diff changeset
471 BLOCK_COMMENT("call runtime_entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
472 __ call(runtime_entry, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 if (!VerifyThread)
a61af66fc99e Initial load
duke
parents:
diff changeset
474 __ delayed()->mov(G2_thread, O0); // pass thread as first argument
a61af66fc99e Initial load
duke
parents:
diff changeset
475 else
a61af66fc99e Initial load
duke
parents:
diff changeset
476 __ delayed()->nop(); // (thread already passed)
a61af66fc99e Initial load
duke
parents:
diff changeset
477 __ restore_thread(noreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 __ reset_last_Java_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // check for pending exceptions. use Gtemp as scratch register.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
482 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 Address exception_addr(G2_thread, 0, in_bytes(Thread::pending_exception_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
485 Register scratch_reg = Gtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
486 __ ld_ptr(exception_addr, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
487 __ br_notnull(scratch_reg, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
489 __ should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
490 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
491 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
492 BLOCK_COMMENT("call forward_exception_entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
493 __ call(StubRoutines::forward_exception_entry(), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // we use O7 linkage so that forward_exception_entry has the issuing PC
a61af66fc99e Initial load
duke
parents:
diff changeset
495 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 RuntimeStub* stub = RuntimeStub::new_runtime_stub(name, &code, frame_complete, masm->total_frame_size_in_bytes(0), NULL, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return stub->entry_point();
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 #undef __
a61af66fc99e Initial load
duke
parents:
diff changeset
502 #define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
503
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // Generate a routine that sets all the registers so we
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // can tell if the stop routine prints them correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
507 address generate_test_stop() {
a61af66fc99e Initial load
duke
parents:
diff changeset
508 StubCodeMark mark(this, "StubRoutines", "test_stop");
a61af66fc99e Initial load
duke
parents:
diff changeset
509 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 static jfloat zero = 0.0, one = 1.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // put addr in L0, then load through L0 to F0
a61af66fc99e Initial load
duke
parents:
diff changeset
518 __ set((intptr_t)&zero, L0); __ ldf( FloatRegisterImpl::S, L0, 0, F0);
a61af66fc99e Initial load
duke
parents:
diff changeset
519 __ set((intptr_t)&one, L0); __ ldf( FloatRegisterImpl::S, L0, 0, F1); // 1.0 to F1
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 // use add to put 2..18 in F2..F18
a61af66fc99e Initial load
duke
parents:
diff changeset
522 for ( i = 2; i <= 18; ++i ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 __ fadd( FloatRegisterImpl::S, F1, as_FloatRegister(i-1), as_FloatRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 // Now put double 2 in F16, double 18 in F18
a61af66fc99e Initial load
duke
parents:
diff changeset
527 __ ftof( FloatRegisterImpl::S, FloatRegisterImpl::D, F2, F16 );
a61af66fc99e Initial load
duke
parents:
diff changeset
528 __ ftof( FloatRegisterImpl::S, FloatRegisterImpl::D, F18, F18 );
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // use add to put 20..32 in F20..F32
a61af66fc99e Initial load
duke
parents:
diff changeset
531 for (i = 20; i < 32; i += 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
532 __ fadd( FloatRegisterImpl::D, F16, as_FloatRegister(i-2), as_FloatRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // put 0..7 in i's, 8..15 in l's, 16..23 in o's, 24..31 in g's
a61af66fc99e Initial load
duke
parents:
diff changeset
536 for ( i = 0; i < 8; ++i ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 if (i < 6) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 __ set( i, as_iRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
539 __ set(16 + i, as_oRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
540 __ set(24 + i, as_gRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
542 __ set( 8 + i, as_lRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544
a61af66fc99e Initial load
duke
parents:
diff changeset
545 __ stop("testing stop");
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 __ ret();
a61af66fc99e Initial load
duke
parents:
diff changeset
549 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
552 }
a61af66fc99e Initial load
duke
parents:
diff changeset
553
a61af66fc99e Initial load
duke
parents:
diff changeset
554
a61af66fc99e Initial load
duke
parents:
diff changeset
555 address generate_stop_subroutine() {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 StubCodeMark mark(this, "StubRoutines", "stop_subroutine");
a61af66fc99e Initial load
duke
parents:
diff changeset
557 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 __ stop_subroutine();
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
563
a61af66fc99e Initial load
duke
parents:
diff changeset
564 address generate_flush_callers_register_windows() {
a61af66fc99e Initial load
duke
parents:
diff changeset
565 StubCodeMark mark(this, "StubRoutines", "flush_callers_register_windows");
a61af66fc99e Initial load
duke
parents:
diff changeset
566 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
567
a61af66fc99e Initial load
duke
parents:
diff changeset
568 __ flush_windows();
a61af66fc99e Initial load
duke
parents:
diff changeset
569 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
570 __ delayed()->add( FP, STACK_BIAS, O0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
571 // The returned value must be a stack pointer whose register save area
a61af66fc99e Initial load
duke
parents:
diff changeset
572 // is flushed, and will stay flushed while the caller executes.
a61af66fc99e Initial load
duke
parents:
diff changeset
573
a61af66fc99e Initial load
duke
parents:
diff changeset
574 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576
a61af66fc99e Initial load
duke
parents:
diff changeset
577 // Helper functions for v8 atomic operations.
a61af66fc99e Initial load
duke
parents:
diff changeset
578 //
a61af66fc99e Initial load
duke
parents:
diff changeset
579 void get_v8_oop_lock_ptr(Register lock_ptr_reg, Register mark_oop_reg, Register scratch_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 if (mark_oop_reg == noreg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 address lock_ptr = (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
582 __ set((intptr_t)lock_ptr, lock_ptr_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
583 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
584 assert(scratch_reg != noreg, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
585 address lock_ptr = (address)StubRoutines::Sparc::_v8_oop_lock_cache;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 __ set((intptr_t)lock_ptr, lock_ptr_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 __ and3(mark_oop_reg, StubRoutines::Sparc::v8_oop_lock_mask_in_place, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
588 __ add(lock_ptr_reg, scratch_reg, lock_ptr_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 void generate_v8_lock_prologue(Register lock_reg, Register lock_ptr_reg, Register yield_reg, Label& retry, Label& dontyield, Register mark_oop_reg = noreg, Register scratch_reg = noreg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 get_v8_oop_lock_ptr(lock_ptr_reg, mark_oop_reg, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
595 __ set(StubRoutines::Sparc::locked, lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // Initialize yield counter
a61af66fc99e Initial load
duke
parents:
diff changeset
597 __ mov(G0,yield_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 __ BIND(retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
600 __ cmp(yield_reg, V8AtomicOperationUnderLockSpinCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
601 __ br(Assembler::less, false, Assembler::pt, dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
602 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 // This code can only be called from inside the VM, this
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // stub is only invoked from Atomic::add(). We do not
a61af66fc99e Initial load
duke
parents:
diff changeset
606 // want to use call_VM, because _last_java_sp and such
a61af66fc99e Initial load
duke
parents:
diff changeset
607 // must already be set.
a61af66fc99e Initial load
duke
parents:
diff changeset
608 //
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // Save the regs and make space for a C call
a61af66fc99e Initial load
duke
parents:
diff changeset
610 __ save(SP, -96, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
611 __ save_all_globals_into_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
612 BLOCK_COMMENT("call os::naked_sleep");
a61af66fc99e Initial load
duke
parents:
diff changeset
613 __ call(CAST_FROM_FN_PTR(address, os::naked_sleep));
a61af66fc99e Initial load
duke
parents:
diff changeset
614 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
615 __ restore_globals_from_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
616 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
617 // reset the counter
a61af66fc99e Initial load
duke
parents:
diff changeset
618 __ mov(G0,yield_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 __ BIND(dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
621
a61af66fc99e Initial load
duke
parents:
diff changeset
622 // try to get lock
a61af66fc99e Initial load
duke
parents:
diff changeset
623 __ swap(lock_ptr_reg, 0, lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
624
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // did we get the lock?
a61af66fc99e Initial load
duke
parents:
diff changeset
626 __ cmp(lock_reg, StubRoutines::Sparc::unlocked);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 __ br(Assembler::notEqual, true, Assembler::pn, retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 __ delayed()->add(yield_reg,1,yield_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // yes, got lock. do the operation here.
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632
a61af66fc99e Initial load
duke
parents:
diff changeset
633 void generate_v8_lock_epilogue(Register lock_reg, Register lock_ptr_reg, Register yield_reg, Label& retry, Label& dontyield, Register mark_oop_reg = noreg, Register scratch_reg = noreg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
634 __ st(lock_reg, lock_ptr_reg, 0); // unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // Support for jint Atomic::xchg(jint exchange_value, volatile jint* dest).
a61af66fc99e Initial load
duke
parents:
diff changeset
638 //
a61af66fc99e Initial load
duke
parents:
diff changeset
639 // Arguments :
a61af66fc99e Initial load
duke
parents:
diff changeset
640 //
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // exchange_value: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // dest: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
643 //
a61af66fc99e Initial load
duke
parents:
diff changeset
644 // Results:
a61af66fc99e Initial load
duke
parents:
diff changeset
645 //
a61af66fc99e Initial load
duke
parents:
diff changeset
646 // O0: the value previously stored in dest
a61af66fc99e Initial load
duke
parents:
diff changeset
647 //
a61af66fc99e Initial load
duke
parents:
diff changeset
648 address generate_atomic_xchg() {
a61af66fc99e Initial load
duke
parents:
diff changeset
649 StubCodeMark mark(this, "StubRoutines", "atomic_xchg");
a61af66fc99e Initial load
duke
parents:
diff changeset
650 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 if (UseCASForSwap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // Use CAS instead of swap, just in case the MP hardware
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // prefers to work with just one kind of synch. instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
655 Label retry;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 __ BIND(retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
657 __ mov(O0, O3); // scratch copy of exchange value
a61af66fc99e Initial load
duke
parents:
diff changeset
658 __ ld(O1, 0, O2); // observe the previous value
a61af66fc99e Initial load
duke
parents:
diff changeset
659 // try to replace O2 with O3
a61af66fc99e Initial load
duke
parents:
diff changeset
660 __ cas_under_lock(O1, O2, O3,
a61af66fc99e Initial load
duke
parents:
diff changeset
661 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr(),false);
a61af66fc99e Initial load
duke
parents:
diff changeset
662 __ cmp(O2, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
663 __ br(Assembler::notEqual, false, Assembler::pn, retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
664 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
667 __ delayed()->mov(O2, O0); // report previous value to caller
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
670 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
672 __ delayed()->swap(O1, 0, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
674 const Register& lock_reg = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
675 const Register& lock_ptr_reg = O3;
a61af66fc99e Initial load
duke
parents:
diff changeset
676 const Register& yield_reg = O4;
a61af66fc99e Initial load
duke
parents:
diff changeset
677
a61af66fc99e Initial load
duke
parents:
diff changeset
678 Label retry;
a61af66fc99e Initial load
duke
parents:
diff changeset
679 Label dontyield;
a61af66fc99e Initial load
duke
parents:
diff changeset
680
a61af66fc99e Initial load
duke
parents:
diff changeset
681 generate_v8_lock_prologue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // got the lock, do the swap
a61af66fc99e Initial load
duke
parents:
diff changeset
683 __ swap(O1, 0, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
684
a61af66fc99e Initial load
duke
parents:
diff changeset
685 generate_v8_lock_epilogue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
686 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
687 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
688 }
a61af66fc99e Initial load
duke
parents:
diff changeset
689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
693
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // Support for jint Atomic::cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
696 //
a61af66fc99e Initial load
duke
parents:
diff changeset
697 // Arguments :
a61af66fc99e Initial load
duke
parents:
diff changeset
698 //
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // exchange_value: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
700 // dest: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
701 // compare_value: O2
a61af66fc99e Initial load
duke
parents:
diff changeset
702 //
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // Results:
a61af66fc99e Initial load
duke
parents:
diff changeset
704 //
a61af66fc99e Initial load
duke
parents:
diff changeset
705 // O0: the value previously stored in dest
a61af66fc99e Initial load
duke
parents:
diff changeset
706 //
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // Overwrites (v8): O3,O4,O5
a61af66fc99e Initial load
duke
parents:
diff changeset
708 //
a61af66fc99e Initial load
duke
parents:
diff changeset
709 address generate_atomic_cmpxchg() {
a61af66fc99e Initial load
duke
parents:
diff changeset
710 StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg");
a61af66fc99e Initial load
duke
parents:
diff changeset
711 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
712
a61af66fc99e Initial load
duke
parents:
diff changeset
713 // cmpxchg(dest, compare_value, exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
714 __ cas_under_lock(O1, O2, O0,
a61af66fc99e Initial load
duke
parents:
diff changeset
715 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr(),false);
a61af66fc99e Initial load
duke
parents:
diff changeset
716 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
717 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
718
a61af66fc99e Initial load
duke
parents:
diff changeset
719 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // Support for jlong Atomic::cmpxchg(jlong exchange_value, volatile jlong *dest, jlong compare_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
723 //
a61af66fc99e Initial load
duke
parents:
diff changeset
724 // Arguments :
a61af66fc99e Initial load
duke
parents:
diff changeset
725 //
a61af66fc99e Initial load
duke
parents:
diff changeset
726 // exchange_value: O1:O0
a61af66fc99e Initial load
duke
parents:
diff changeset
727 // dest: O2
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // compare_value: O4:O3
a61af66fc99e Initial load
duke
parents:
diff changeset
729 //
a61af66fc99e Initial load
duke
parents:
diff changeset
730 // Results:
a61af66fc99e Initial load
duke
parents:
diff changeset
731 //
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // O1:O0: the value previously stored in dest
a61af66fc99e Initial load
duke
parents:
diff changeset
733 //
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // This only works on V9, on V8 we don't generate any
a61af66fc99e Initial load
duke
parents:
diff changeset
735 // code and just return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
736 //
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // Overwrites: G1,G2,G3
a61af66fc99e Initial load
duke
parents:
diff changeset
738 //
a61af66fc99e Initial load
duke
parents:
diff changeset
739 address generate_atomic_cmpxchg_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 StubCodeMark mark(this, "StubRoutines", "atomic_cmpxchg_long");
a61af66fc99e Initial load
duke
parents:
diff changeset
741 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
742
a61af66fc99e Initial load
duke
parents:
diff changeset
743 if (!VM_Version::supports_cx8())
a61af66fc99e Initial load
duke
parents:
diff changeset
744 return NULL;;
a61af66fc99e Initial load
duke
parents:
diff changeset
745 __ sllx(O0, 32, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
746 __ srl(O1, 0, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
747 __ or3(O0,O1,O0); // O0 holds 64-bit value from compare_value
a61af66fc99e Initial load
duke
parents:
diff changeset
748 __ sllx(O3, 32, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
749 __ srl(O4, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
750 __ or3(O3,O4,O3); // O3 holds 64-bit value from exchange_value
a61af66fc99e Initial load
duke
parents:
diff changeset
751 __ casx(O2, O3, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
752 __ srl(O0, 0, O1); // unpacked return value in O1:O0
a61af66fc99e Initial load
duke
parents:
diff changeset
753 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
754 __ delayed()->srlx(O0, 32, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
758
a61af66fc99e Initial load
duke
parents:
diff changeset
759
a61af66fc99e Initial load
duke
parents:
diff changeset
760 // Support for jint Atomic::add(jint add_value, volatile jint* dest).
a61af66fc99e Initial load
duke
parents:
diff changeset
761 //
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Arguments :
a61af66fc99e Initial load
duke
parents:
diff changeset
763 //
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // add_value: O0 (e.g., +1 or -1)
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // dest: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
766 //
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // Results:
a61af66fc99e Initial load
duke
parents:
diff changeset
768 //
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // O0: the new value stored in dest
a61af66fc99e Initial load
duke
parents:
diff changeset
770 //
a61af66fc99e Initial load
duke
parents:
diff changeset
771 // Overwrites (v9): O3
a61af66fc99e Initial load
duke
parents:
diff changeset
772 // Overwrites (v8): O3,O4,O5
a61af66fc99e Initial load
duke
parents:
diff changeset
773 //
a61af66fc99e Initial load
duke
parents:
diff changeset
774 address generate_atomic_add() {
a61af66fc99e Initial load
duke
parents:
diff changeset
775 StubCodeMark mark(this, "StubRoutines", "atomic_add");
a61af66fc99e Initial load
duke
parents:
diff changeset
776 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
777 __ BIND(_atomic_add_stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
780 Label(retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
781 __ BIND(retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 __ lduw(O1, 0, O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 __ add(O0, O2, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
785 __ cas(O1, O2, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 __ cmp( O2, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
787 __ br(Assembler::notEqual, false, Assembler::pn, retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
788 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
789 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
790 __ delayed()->add(O0, O2, O0); // note that cas made O2==O3
a61af66fc99e Initial load
duke
parents:
diff changeset
791 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
792 const Register& lock_reg = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
793 const Register& lock_ptr_reg = O3;
a61af66fc99e Initial load
duke
parents:
diff changeset
794 const Register& value_reg = O4;
a61af66fc99e Initial load
duke
parents:
diff changeset
795 const Register& yield_reg = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
796
a61af66fc99e Initial load
duke
parents:
diff changeset
797 Label(retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
798 Label(dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
799
a61af66fc99e Initial load
duke
parents:
diff changeset
800 generate_v8_lock_prologue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 // got lock, do the increment
a61af66fc99e Initial load
duke
parents:
diff changeset
802 __ ld(O1, 0, value_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 __ add(O0, value_reg, value_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
804 __ st(value_reg, O1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
805
a61af66fc99e Initial load
duke
parents:
diff changeset
806 // %%% only for RMO and PSO
a61af66fc99e Initial load
duke
parents:
diff changeset
807 __ membar(Assembler::StoreStore);
a61af66fc99e Initial load
duke
parents:
diff changeset
808
a61af66fc99e Initial load
duke
parents:
diff changeset
809 generate_v8_lock_epilogue(lock_reg, lock_ptr_reg, yield_reg, retry, dontyield);
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
812 __ delayed()->mov(value_reg, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
813 }
a61af66fc99e Initial load
duke
parents:
diff changeset
814
a61af66fc99e Initial load
duke
parents:
diff changeset
815 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817 Label _atomic_add_stub; // called from other stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
818
a61af66fc99e Initial load
duke
parents:
diff changeset
819
a61af66fc99e Initial load
duke
parents:
diff changeset
820 // Support for void OrderAccess::fence().
a61af66fc99e Initial load
duke
parents:
diff changeset
821 //
a61af66fc99e Initial load
duke
parents:
diff changeset
822 address generate_fence() {
a61af66fc99e Initial load
duke
parents:
diff changeset
823 StubCodeMark mark(this, "StubRoutines", "fence");
a61af66fc99e Initial load
duke
parents:
diff changeset
824 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
825
a61af66fc99e Initial load
duke
parents:
diff changeset
826 __ membar(Assembler::Membar_mask_bits(Assembler::LoadLoad | Assembler::LoadStore |
a61af66fc99e Initial load
duke
parents:
diff changeset
827 Assembler::StoreLoad | Assembler::StoreStore));
a61af66fc99e Initial load
duke
parents:
diff changeset
828 __ retl(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
829 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
832 }
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834
a61af66fc99e Initial load
duke
parents:
diff changeset
835 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // The following routine generates a subroutine to throw an asynchronous
a61af66fc99e Initial load
duke
parents:
diff changeset
837 // UnknownError when an unsafe access gets a fault that could not be
a61af66fc99e Initial load
duke
parents:
diff changeset
838 // reasonably prevented by the programmer. (Example: SIGBUS/OBJERR.)
a61af66fc99e Initial load
duke
parents:
diff changeset
839 //
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // Arguments :
a61af66fc99e Initial load
duke
parents:
diff changeset
841 //
a61af66fc99e Initial load
duke
parents:
diff changeset
842 // trapping PC: O7
a61af66fc99e Initial load
duke
parents:
diff changeset
843 //
a61af66fc99e Initial load
duke
parents:
diff changeset
844 // Results:
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // posts an asynchronous exception, skips the trapping instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
846 //
a61af66fc99e Initial load
duke
parents:
diff changeset
847
a61af66fc99e Initial load
duke
parents:
diff changeset
848 address generate_handler_for_unsafe_access() {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 StubCodeMark mark(this, "StubRoutines", "handler_for_unsafe_access");
a61af66fc99e Initial load
duke
parents:
diff changeset
850 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 const int preserve_register_words = (64 * 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
853 Address preserve_addr(FP, 0, (-preserve_register_words * wordSize) + STACK_BIAS);
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 Register Lthread = L7_thread_cache;
a61af66fc99e Initial load
duke
parents:
diff changeset
856 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
859 __ mov(G1, L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
860 __ mov(G2, L2);
a61af66fc99e Initial load
duke
parents:
diff changeset
861 __ mov(G3, L3);
a61af66fc99e Initial load
duke
parents:
diff changeset
862 __ mov(G4, L4);
a61af66fc99e Initial load
duke
parents:
diff changeset
863 __ mov(G5, L5);
a61af66fc99e Initial load
duke
parents:
diff changeset
864 for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
865 __ stf(FloatRegisterImpl::D, as_FloatRegister(i), preserve_addr, i * wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 address entry_point = CAST_FROM_FN_PTR(address, handle_unsafe_access);
a61af66fc99e Initial load
duke
parents:
diff changeset
869 BLOCK_COMMENT("call handle_unsafe_access");
a61af66fc99e Initial load
duke
parents:
diff changeset
870 __ call(entry_point, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
871 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
872
a61af66fc99e Initial load
duke
parents:
diff changeset
873 __ mov(L1, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
874 __ mov(L2, G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
875 __ mov(L3, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
876 __ mov(L4, G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
877 __ mov(L5, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
878 for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
879 __ ldf(FloatRegisterImpl::D, preserve_addr, as_FloatRegister(i), i * wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
881
a61af66fc99e Initial load
duke
parents:
diff changeset
882 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
883
a61af66fc99e Initial load
duke
parents:
diff changeset
884 __ jmp(O0, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
886
a61af66fc99e Initial load
duke
parents:
diff changeset
887 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
888 }
a61af66fc99e Initial load
duke
parents:
diff changeset
889
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // Support for uint StubRoutine::Sparc::partial_subtype_check( Klass sub, Klass super );
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // Arguments :
a61af66fc99e Initial load
duke
parents:
diff changeset
893 //
a61af66fc99e Initial load
duke
parents:
diff changeset
894 // ret : O0, returned
a61af66fc99e Initial load
duke
parents:
diff changeset
895 // icc/xcc: set as O0 (depending on wordSize)
a61af66fc99e Initial load
duke
parents:
diff changeset
896 // sub : O1, argument, not changed
a61af66fc99e Initial load
duke
parents:
diff changeset
897 // super: O2, argument, not changed
a61af66fc99e Initial load
duke
parents:
diff changeset
898 // raddr: O7, blown by call
a61af66fc99e Initial load
duke
parents:
diff changeset
899 address generate_partial_subtype_check() {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
900 __ align(CodeEntryAlignment);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
901 StubCodeMark mark(this, "StubRoutines", "partial_subtype_check");
a61af66fc99e Initial load
duke
parents:
diff changeset
902 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
903 Label loop, miss;
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 // Compare super with sub directly, since super is not in its own SSA.
a61af66fc99e Initial load
duke
parents:
diff changeset
906 // The compiler used to emit this test, but we fold it in here,
a61af66fc99e Initial load
duke
parents:
diff changeset
907 // to increase overall code density, with no real loss of speed.
a61af66fc99e Initial load
duke
parents:
diff changeset
908 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
909 __ cmp(O1, O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
910 __ brx(Assembler::notEqual, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
911 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
912 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
913 __ delayed()->addcc(G0,0,O0); // set Z flags, zero result
a61af66fc99e Initial load
duke
parents:
diff changeset
914 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
916
a61af66fc99e Initial load
duke
parents:
diff changeset
917 #if defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // Do not use a 'save' because it blows the 64-bit O registers.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
919 __ add(SP,-4*wordSize,SP); // Make space for 4 temps (stack must be 2 words aligned)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
920 __ st_ptr(L0,SP,(frame::register_save_words+0)*wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
921 __ st_ptr(L1,SP,(frame::register_save_words+1)*wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
922 __ st_ptr(L2,SP,(frame::register_save_words+2)*wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 __ st_ptr(L3,SP,(frame::register_save_words+3)*wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
924 Register Rret = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
925 Register Rsub = O1;
a61af66fc99e Initial load
duke
parents:
diff changeset
926 Register Rsuper = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
927 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
928 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
929 Register Rret = I0;
a61af66fc99e Initial load
duke
parents:
diff changeset
930 Register Rsub = I1;
a61af66fc99e Initial load
duke
parents:
diff changeset
931 Register Rsuper = I2;
a61af66fc99e Initial load
duke
parents:
diff changeset
932 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
933
a61af66fc99e Initial load
duke
parents:
diff changeset
934 Register L0_ary_len = L0;
a61af66fc99e Initial load
duke
parents:
diff changeset
935 Register L1_ary_ptr = L1;
a61af66fc99e Initial load
duke
parents:
diff changeset
936 Register L2_super = L2;
a61af66fc99e Initial load
duke
parents:
diff changeset
937 Register L3_index = L3;
a61af66fc99e Initial load
duke
parents:
diff changeset
938
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
939 #ifdef _LP64
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
940 Register L4_ooptmp = L4;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
941
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
942 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
943 // this must be under UseCompressedOops check, as we rely upon fact
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
944 // that L4 not clobbered in C2 on 32-bit platforms, where we do explicit save
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
945 // on stack, see several lines above
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
946 __ encode_heap_oop(Rsuper, L4_ooptmp);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
947 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
948 #endif
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
949
0
a61af66fc99e Initial load
duke
parents:
diff changeset
950 inc_counter_np(SharedRuntime::_partial_subtype_ctr, L0, L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
951
a61af66fc99e Initial load
duke
parents:
diff changeset
952 __ ld_ptr( Rsub, sizeof(oopDesc) + Klass::secondary_supers_offset_in_bytes(), L3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
953 __ lduw(L3,arrayOopDesc::length_offset_in_bytes(),L0_ary_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
954 __ add(L3,arrayOopDesc::base_offset_in_bytes(T_OBJECT),L1_ary_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
955 __ clr(L3_index); // zero index
a61af66fc99e Initial load
duke
parents:
diff changeset
956 // Load a little early; will load 1 off the end of the array.
a61af66fc99e Initial load
duke
parents:
diff changeset
957 // Ok for now; revisit if we have other uses of this routine.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
958 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
959 __ ld(L1_ary_ptr,0,L2_super);// Will load a little early
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
960 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
961 __ ld_ptr(L1_ary_ptr,0,L2_super);// Will load a little early
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
962 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
963
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
964 assert(heapOopSize != 0, "heapOopSize should be initialized");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // The scan loop
a61af66fc99e Initial load
duke
parents:
diff changeset
966 __ BIND(loop);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
967 __ add(L1_ary_ptr, heapOopSize, L1_ary_ptr); // Bump by OOP size
0
a61af66fc99e Initial load
duke
parents:
diff changeset
968 __ cmp(L3_index,L0_ary_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
969 __ br(Assembler::equal,false,Assembler::pn,miss);
a61af66fc99e Initial load
duke
parents:
diff changeset
970 __ delayed()->inc(L3_index); // Bump index
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
971
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
972 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
973 #ifdef _LP64
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
974 __ subcc(L2_super,L4_ooptmp,Rret); // Check for match; zero in Rret for a hit
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
975 __ br( Assembler::notEqual, false, Assembler::pt, loop );
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
976 __ delayed()->ld(L1_ary_ptr,0,L2_super);// Will load a little early
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
977 #else
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
978 ShouldNotReachHere();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
979 #endif
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
980 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
981 __ subcc(L2_super,Rsuper,Rret); // Check for match; zero in Rret for a hit
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
982 __ brx( Assembler::notEqual, false, Assembler::pt, loop );
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
983 __ delayed()->ld_ptr(L1_ary_ptr,0,L2_super);// Will load a little early
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
984 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
985
a61af66fc99e Initial load
duke
parents:
diff changeset
986 // Got a hit; report success; set cache. Cache load doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
987 // happen here; for speed it is directly emitted by the compiler.
a61af66fc99e Initial load
duke
parents:
diff changeset
988 __ st_ptr( Rsuper, Rsub, sizeof(oopDesc) + Klass::secondary_super_cache_offset_in_bytes() );
a61af66fc99e Initial load
duke
parents:
diff changeset
989
a61af66fc99e Initial load
duke
parents:
diff changeset
990 #if defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
991 __ ld_ptr(SP,(frame::register_save_words+0)*wordSize,L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
992 __ ld_ptr(SP,(frame::register_save_words+1)*wordSize,L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
993 __ ld_ptr(SP,(frame::register_save_words+2)*wordSize,L2);
a61af66fc99e Initial load
duke
parents:
diff changeset
994 __ ld_ptr(SP,(frame::register_save_words+3)*wordSize,L3);
a61af66fc99e Initial load
duke
parents:
diff changeset
995 __ retl(); // Result in Rret is zero; flags set to Z
a61af66fc99e Initial load
duke
parents:
diff changeset
996 __ delayed()->add(SP,4*wordSize,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
998 __ ret(); // Result in Rret is zero; flags set to Z
a61af66fc99e Initial load
duke
parents:
diff changeset
999 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1001
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 // Hit or miss falls through here
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 __ BIND(miss);
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 __ addcc(G0,1,Rret); // set NZ flags, NZ result
a61af66fc99e Initial load
duke
parents:
diff changeset
1005
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 #if defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 __ ld_ptr(SP,(frame::register_save_words+0)*wordSize,L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 __ ld_ptr(SP,(frame::register_save_words+1)*wordSize,L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 __ ld_ptr(SP,(frame::register_save_words+2)*wordSize,L2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 __ ld_ptr(SP,(frame::register_save_words+3)*wordSize,L3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 __ retl(); // Result in Rret is != 0; flags set to NZ
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 __ delayed()->add(SP,4*wordSize,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 __ ret(); // Result in Rret is != 0; flags set to NZ
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1017
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1020
a61af66fc99e Initial load
duke
parents:
diff changeset
1021
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 // Called from MacroAssembler::verify_oop
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 address generate_verify_oop_subroutine() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 StubCodeMark mark(this, "StubRoutines", "verify_oop_stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1028
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 __ verify_oop_subroutine();
a61af66fc99e Initial load
duke
parents:
diff changeset
1030
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1033
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 static address disjoint_byte_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 static address disjoint_short_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 static address disjoint_int_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 static address disjoint_long_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 static address disjoint_oop_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1039
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 static address byte_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 static address short_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 static address int_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 static address long_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 static address oop_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1045
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 static address checkcast_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1047
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 // Verify that a register contains clean 32-bits positive value
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 // (high 32-bits are 0) so it could be used in 64-bits shifts (sllx, srax).
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 // Input:
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 // Rint - 32-bits value
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 // Rtmp - scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 void assert_clean_int(Register Rint, Register Rtmp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 #if defined(ASSERT) && defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 __ signx(Rint, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 __ cmp(Rint, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 __ breakpoint_trap(Assembler::notEqual, Assembler::xcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1063
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 // Generate overlap test for array copy stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 // Input:
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 // O0 - array1
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 // O1 - array2
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 // O2 - element count
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 // Kills temps: O3, O4
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 void array_overlap_test(address no_overlap_target, int log2_elem_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 assert(no_overlap_target != NULL, "must be generated");
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 array_overlap_test(no_overlap_target, NULL, log2_elem_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 void array_overlap_test(Label& L_no_overlap, int log2_elem_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 array_overlap_test(NULL, &L_no_overlap, log2_elem_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 void array_overlap_test(address no_overlap_target, Label* NOLp, int log2_elem_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 const Register from = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 const Register to = O1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 const Register count = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 const Register to_from = O3; // to - from
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 const Register byte_count = O4; // count << log2_elem_size
a61af66fc99e Initial load
duke
parents:
diff changeset
1087
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 __ subcc(to, from, to_from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 __ sll_ptr(count, log2_elem_size, byte_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 if (NOLp == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, no_overlap_target);
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, (*NOLp));
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 __ delayed()->cmp(to_from, byte_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 if (NOLp == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 __ brx(Assembler::greaterEqual, false, Assembler::pt, no_overlap_target);
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 __ brx(Assembler::greaterEqual, false, Assembler::pt, (*NOLp));
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1101
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 // Generate pre-write barrier for array.
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 // Input:
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 // addr - register containing starting address
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 // count - register containing element count
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 // tmp - scratch register
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 // The input registers are overwritten.
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 void gen_write_ref_array_pre_barrier(Register addr, Register count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 #if 0 // G1 only
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 BarrierSet* bs = Universe::heap()->barrier_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 if (bs->has_write_ref_pre_barrier()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 assert(bs->has_write_ref_array_pre_opt(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 "Else unsupported barrier set.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1118
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 assert(addr->is_global() && count->is_global(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 "If not, then we have to fix this code to handle more "
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 "general cases.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 // Get some new fresh output registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // Save the necessary global regs... will be used after.
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 __ mov(addr, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 __ mov(count, L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1127
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 __ mov(addr, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 // Get the count into O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 __ call(CAST_FROM_FN_PTR(address, BarrierSet::static_write_ref_array_pre));
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 __ delayed()->mov(count, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 __ mov(L0, addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 __ mov(L1, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 #endif // 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 // Generate post-write barrier for array.
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 // Input:
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 // addr - register containing starting address
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 // count - register containing element count
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 // tmp - scratch register
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 // The input registers are overwritten.
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 void gen_write_ref_array_post_barrier(Register addr, Register count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 Register tmp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 BarrierSet* bs = Universe::heap()->barrier_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
1151
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 switch (bs->kind()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 #if 0 // G1 - only
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 case BarrierSet::G1SATBCT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 case BarrierSet::G1SATBCTLogging:
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 assert(addr->is_global() && count->is_global(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 "If not, then we have to fix this code to handle more "
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 "general cases.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 // Get some new fresh output registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 __ mov(addr, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 __ call(CAST_FROM_FN_PTR(address, BarrierSet::static_write_ref_array_post));
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 __ delayed()->mov(count, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 #endif // 0 G1 - only
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 case BarrierSet::CardTableModRef:
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 case BarrierSet::CardTableExtension:
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 CardTableModRefBS* ct = (CardTableModRefBS*)bs;
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 assert_different_registers(addr, count, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 Label L_loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
1177
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
1178 __ sll_ptr(count, LogBytesPerHeapOop, count);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
1179 __ sub(count, BytesPerHeapOop, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 __ add(count, addr, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 // Use two shifts to clear out those low order two bits! (Cannot opt. into 1.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 __ srl_ptr(addr, CardTableModRefBS::card_shift, addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 __ srl_ptr(count, CardTableModRefBS::card_shift, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 __ sub(count, addr, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 Address rs(tmp, (address)ct->byte_map_base);
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 __ load_address(rs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 __ BIND(L_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 __ stb(G0, rs.base(), addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 __ subcc(count, 1, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 __ delayed()->add(addr, 1, addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1192
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 case BarrierSet::ModRef:
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 default :
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1199
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1202
a61af66fc99e Initial load
duke
parents:
diff changeset
1203
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 // Copy big chunks forward with shift
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 // Inputs:
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 // from - source arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 // to - destination array aligned to 8-bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 // count - elements count to copy >= the count equivalent to 16 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 // count_dec - elements count's decrement equivalent to 16 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 // L_copy_bytes - copy exit label
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 void copy_16_bytes_forward_with_shift(Register from, Register to,
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 Register count, int count_dec, Label& L_copy_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 Label L_loop, L_aligned_copy, L_copy_last_bytes;
a61af66fc99e Initial load
duke
parents:
diff changeset
1216
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // if both arrays have the same alignment mod 8, do 8 bytes aligned copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 __ andcc(from, 7, G1); // misaligned bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1221
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 const Register left_shift = G1; // left shift bit counter
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 const Register right_shift = G5; // right shift bit counter
a61af66fc99e Initial load
duke
parents:
diff changeset
1224
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 __ sll(G1, LogBitsPerByte, left_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 __ mov(64, right_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 __ sub(right_shift, left_shift, right_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
1228
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 // Load 2 aligned 8-bytes chunks and use one from previous iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 // to form 2 aligned 8-bytes chunks to store.
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 __ deccc(count, count_dec); // Pre-decrement 'count'
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 __ andn(from, 7, from); // Align address
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 __ ldx(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 __ inc(from, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 __ BIND(L_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 __ ldx(from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 __ deccc(count, count_dec); // Can we do next iteration after this one?
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 __ ldx(from, 8, G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 __ inc(to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 __ inc(from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 __ sllx(O3, left_shift, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 __ srlx(O4, right_shift, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 __ bset(G3, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 __ stx(O3, to, -16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 __ sllx(O4, left_shift, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 __ srlx(G4, right_shift, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 __ bset(G3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 __ stx(O4, to, -8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 __ delayed()->mov(G4, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1254
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 __ inccc(count, count_dec>>1 ); // + 8 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 __ delayed()->inc(count, count_dec>>1); // restore 'count'
a61af66fc99e Initial load
duke
parents:
diff changeset
1258
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 // copy 8 bytes, part of them already loaded in O3
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 __ ldx(from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 __ inc(to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 __ inc(from, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 __ sllx(O3, left_shift, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 __ srlx(O4, right_shift, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 __ bset(O3, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 __ stx(G3, to, -8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1267
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 __ BIND(L_copy_last_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 __ srl(right_shift, LogBitsPerByte, right_shift); // misaligned bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 __ br(Assembler::always, false, Assembler::pt, L_copy_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 __ delayed()->sub(from, right_shift, from); // restore address
a61af66fc99e Initial load
duke
parents:
diff changeset
1272
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 __ BIND(L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1275
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 // Copy big chunks backward with shift
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 // Inputs:
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 // end_from - source arrays end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 // end_to - destination array end address aligned to 8-bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 // count - elements count to copy >= the count equivalent to 16 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 // count_dec - elements count's decrement equivalent to 16 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 // L_aligned_copy - aligned copy exit label
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 // L_copy_bytes - copy exit label
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 void copy_16_bytes_backward_with_shift(Register end_from, Register end_to,
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 Register count, int count_dec,
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 Label& L_aligned_copy, Label& L_copy_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 Label L_loop, L_copy_last_bytes;
a61af66fc99e Initial load
duke
parents:
diff changeset
1290
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 // if both arrays have the same alignment mod 8, do 8 bytes aligned copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 __ andcc(end_from, 7, G1); // misaligned bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 __ delayed()->deccc(count, count_dec); // Pre-decrement 'count'
a61af66fc99e Initial load
duke
parents:
diff changeset
1295
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 const Register left_shift = G1; // left shift bit counter
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 const Register right_shift = G5; // right shift bit counter
a61af66fc99e Initial load
duke
parents:
diff changeset
1298
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 __ sll(G1, LogBitsPerByte, left_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 __ mov(64, right_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 __ sub(right_shift, left_shift, right_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
1302
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 // Load 2 aligned 8-bytes chunks and use one from previous iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 // to form 2 aligned 8-bytes chunks to store.
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 __ andn(end_from, 7, end_from); // Align address
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 __ ldx(end_from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 __ BIND(L_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 __ ldx(end_from, -8, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 __ deccc(count, count_dec); // Can we do next iteration after this one?
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 __ ldx(end_from, -16, G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 __ dec(end_to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 __ dec(end_from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 __ srlx(O3, right_shift, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 __ sllx(O4, left_shift, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 __ bset(G3, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 __ stx(O3, end_to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 __ srlx(O4, right_shift, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 __ sllx(G4, left_shift, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 __ bset(G3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 __ stx(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 __ delayed()->mov(G4, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1326
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 __ inccc(count, count_dec>>1 ); // + 8 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 __ delayed()->inc(count, count_dec>>1); // restore 'count'
a61af66fc99e Initial load
duke
parents:
diff changeset
1330
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 // copy 8 bytes, part of them already loaded in O3
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 __ ldx(end_from, -8, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 __ dec(end_to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 __ dec(end_from, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 __ srlx(O3, right_shift, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 __ sllx(O4, left_shift, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 __ bset(O3, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 __ stx(G3, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1339
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 __ BIND(L_copy_last_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 __ srl(left_shift, LogBitsPerByte, left_shift); // misaligned bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 __ br(Assembler::always, false, Assembler::pt, L_copy_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 __ delayed()->add(end_from, left_shift, end_from); // restore address
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1345
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 // Generate stub for disjoint byte copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 address generate_disjoint_byte_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1359
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 Label L_skip_alignment, L_align;
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 Label L_copy_byte, L_copy_byte_loop, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1362
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 const Register offset = O5; // offset from start of arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 // O3, O4, G3, G4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1368
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
1370
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 if (!aligned) disjoint_byte_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1374
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 // for short arrays, just do single element copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 __ cmp(count, 23); // 16 + 7
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 __ brx(Assembler::less, false, Assembler::pn, L_copy_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 __ delayed()->mov(G0, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1379
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 if (aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 // 'aligned' == true when it is known statically during compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 // of this arraycopy call site that both 'from' and 'to' addresses
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 // Aligned arrays have 4 bytes alignment in 32-bits VM
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 // and 8 bytes - in 64-bits VM. So we do it only for 32-bits VM
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 // copy a 4-bytes word if necessary to align 'to' to 8 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 __ andcc(to, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 __ delayed()->ld(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 __ inc(from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 __ inc(to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 __ dec(count, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 __ st(O3, to, -4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 // copy bytes to align 'to' on 8 byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 __ andcc(to, 7, G1); // misaligned bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 __ delayed()->neg(G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 __ inc(G1, 8); // bytes need to copy to next 8-bytes alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 __ sub(count, G1, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 __ BIND(L_align);
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 __ ldub(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 __ deccc(G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 __ inc(from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 __ stb(O3, to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 __ br(Assembler::notZero, false, Assembler::pt, L_align);
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 __ delayed()->inc(to);
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 if (!aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 // Copy with shift 16 bytes per iteration if arrays do not have
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 // the same alignment mod 8, otherwise fall through to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 // code for aligned copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 // The compare above (count >= 23) guarantes 'count' >= 16 bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 // Also jump over aligned copy after the copy with shift completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
1424
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 copy_16_bytes_forward_with_shift(from, to, count, 16, L_copy_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1427
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 // Both array are 8 bytes aligned, copy 16 bytes at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 __ and3(count, 7, G4); // Save count
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 __ srl(count, 3, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 generate_disjoint_long_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 __ mov(G4, count); // Restore count
a61af66fc99e Initial load
duke
parents:
diff changeset
1433
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 // copy tailing bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 __ BIND(L_copy_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 __ BIND(L_copy_byte_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 __ ldub(from, offset, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 __ deccc(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 __ stb(O3, to, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 __ brx(Assembler::notZero, false, Assembler::pt, L_copy_byte_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 __ delayed()->inc(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1445
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1453
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 // Generate stub for conjoint byte copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 address generate_conjoint_byte_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 // Do reverse copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1465
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 address nooverlap_target = aligned ?
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 StubRoutines::arrayof_jbyte_disjoint_arraycopy() :
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 disjoint_byte_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1472
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 Label L_skip_alignment, L_align, L_aligned_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 Label L_copy_byte, L_copy_byte_loop, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1475
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 const Register end_from = from; // source array end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 const Register end_to = to; // destination array end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1481
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
1483
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 if (!aligned) byte_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1487
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 array_overlap_test(nooverlap_target, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1489
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 __ add(to, count, end_to); // offset after last copied element
a61af66fc99e Initial load
duke
parents:
diff changeset
1491
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 // for short arrays, just do single element copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 __ cmp(count, 23); // 16 + 7
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 __ brx(Assembler::less, false, Assembler::pn, L_copy_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 __ delayed()->add(from, count, end_from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1496
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 // Align end of arrays since they could be not aligned even
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 // when arrays itself are aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1500
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 // copy bytes to align 'end_to' on 8 byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 __ andcc(end_to, 7, G1); // misaligned bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 __ sub(count, G1, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 __ BIND(L_align);
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 __ dec(end_from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 __ dec(end_to);
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 __ ldub(end_from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 __ deccc(G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 __ brx(Assembler::notZero, false, Assembler::pt, L_align);
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 __ delayed()->stb(O3, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 if (aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 // Both arrays are aligned to 8-bytes in 64-bits VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 // The 'count' is decremented in copy_16_bytes_backward_with_shift()
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 // in unaligned case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 __ dec(count, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 } else
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 // Copy with shift 16 bytes per iteration if arrays do not have
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 // the same alignment mod 8, otherwise jump to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 // code for aligned copy (and substracting 16 from 'count' before jump).
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 // Also jump over aligned copy after the copy with shift completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
1529
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 copy_16_bytes_backward_with_shift(end_from, end_to, count, 16,
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 L_aligned_copy, L_copy_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 // copy 4 elements (16 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 __ BIND(L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 __ dec(end_from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 __ ldx(end_from, 8, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 __ ldx(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 __ dec(end_to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 __ deccc(count, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 __ stx(O3, end_to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 __ delayed()->stx(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 __ inc(count, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1545
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 // copy 1 element (2 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 __ BIND(L_copy_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 __ BIND(L_copy_byte_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 __ dec(end_from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 __ dec(end_to);
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 __ ldub(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 __ deccc(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 __ brx(Assembler::greater, false, Assembler::pt, L_copy_byte_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 __ delayed()->stb(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1558
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 inc_counter_np(SharedRuntime::_jbyte_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1566
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 // Generate stub for disjoint short copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 address generate_disjoint_short_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1580
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 Label L_skip_alignment, L_skip_alignment2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 Label L_copy_2_bytes, L_copy_2_bytes_loop, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1583
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 const Register offset = O5; // offset from start of arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 // O3, O4, G3, G4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1589
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
1591
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 if (!aligned) disjoint_short_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1595
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 // for short arrays, just do single element copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 __ cmp(count, 11); // 8 + 3 (22 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 __ brx(Assembler::less, false, Assembler::pn, L_copy_2_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 __ delayed()->mov(G0, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1600
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 if (aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 // 'aligned' == true when it is known statically during compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 // of this arraycopy call site that both 'from' and 'to' addresses
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 // Aligned arrays have 4 bytes alignment in 32-bits VM
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 // and 8 bytes - in 64-bits VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 // copy a 2-elements word if necessary to align 'to' to 8 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 __ andcc(to, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 __ delayed()->ld(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 __ inc(from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 __ inc(to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 __ dec(count, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 __ st(O3, to, -4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 // copy 1 element if necessary to align 'to' on an 4 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 __ andcc(to, 3, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 __ delayed()->lduh(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 __ inc(from, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 __ inc(to, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 __ dec(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 __ sth(O3, to, -2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1630
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 // copy 2 elements to align 'to' on an 8 byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 __ andcc(to, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 __ delayed()->lduh(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 __ dec(count, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 __ lduh(from, 2, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 __ inc(from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 __ inc(to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 __ sth(O3, to, -4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 __ sth(O4, to, -2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 __ BIND(L_skip_alignment2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 if (!aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 // Copy with shift 16 bytes per iteration if arrays do not have
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 // the same alignment mod 8, otherwise fall through to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 // code for aligned copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 // Also jump over aligned copy after the copy with shift completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
1652
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 copy_16_bytes_forward_with_shift(from, to, count, 8, L_copy_2_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1655
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 // Both array are 8 bytes aligned, copy 16 bytes at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 __ and3(count, 3, G4); // Save
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 __ srl(count, 2, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 generate_disjoint_long_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 __ mov(G4, count); // restore
a61af66fc99e Initial load
duke
parents:
diff changeset
1661
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 // copy 1 element at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 __ BIND(L_copy_2_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 __ BIND(L_copy_2_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 __ lduh(from, offset, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 __ deccc(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 __ sth(O3, to, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 __ brx(Assembler::notZero, false, Assembler::pt, L_copy_2_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 __ delayed()->inc(offset, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1673
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 inc_counter_np(SharedRuntime::_jshort_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1681
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 // Generate stub for conjoint short copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 address generate_conjoint_short_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 // Do reverse copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1693
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 address nooverlap_target = aligned ?
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 StubRoutines::arrayof_jshort_disjoint_arraycopy() :
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 disjoint_short_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1700
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 Label L_skip_alignment, L_skip_alignment2, L_aligned_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 Label L_copy_2_bytes, L_copy_2_bytes_loop, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1703
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 const Register end_from = from; // source array end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 const Register end_to = to; // destination array end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1709
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 const Register byte_count = O3; // bytes count to copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1711
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
1713
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 if (!aligned) short_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1717
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 array_overlap_test(nooverlap_target, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1719
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 __ sllx(count, LogBytesPerShort, byte_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 __ add(to, byte_count, end_to); // offset after last copied element
a61af66fc99e Initial load
duke
parents:
diff changeset
1722
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 // for short arrays, just do single element copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 __ cmp(count, 11); // 8 + 3 (22 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 __ brx(Assembler::less, false, Assembler::pn, L_copy_2_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 __ delayed()->add(from, byte_count, end_from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1727
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 // Align end of arrays since they could be not aligned even
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 // when arrays itself are aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1731
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 // copy 1 element if necessary to align 'end_to' on an 4 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 __ andcc(end_to, 3, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 __ delayed()->lduh(end_from, -2, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 __ dec(end_from, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 __ dec(end_to, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 __ dec(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 __ sth(O3, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1741
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 // copy 2 elements to align 'end_to' on an 8 byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 __ andcc(end_to, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 __ br(Assembler::zero, false, Assembler::pn, L_skip_alignment2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 __ delayed()->lduh(end_from, -2, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 __ dec(count, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 __ lduh(end_from, -4, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 __ dec(end_from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 __ dec(end_to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 __ sth(O3, end_to, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 __ sth(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 __ BIND(L_skip_alignment2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 if (aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 // Both arrays are aligned to 8-bytes in 64-bits VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 // The 'count' is decremented in copy_16_bytes_backward_with_shift()
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 // in unaligned case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 __ dec(count, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 } else
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 // Copy with shift 16 bytes per iteration if arrays do not have
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 // the same alignment mod 8, otherwise jump to the next
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 // code for aligned copy (and substracting 8 from 'count' before jump).
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 // The compare above (count >= 11) guarantes 'count' >= 16 bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 // Also jump over aligned copy after the copy with shift completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
1768
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 copy_16_bytes_backward_with_shift(end_from, end_to, count, 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 L_aligned_copy, L_copy_2_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 // copy 4 elements (16 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 __ BIND(L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 __ dec(end_from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 __ ldx(end_from, 8, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 __ ldx(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 __ dec(end_to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 __ deccc(count, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 __ stx(O3, end_to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 __ delayed()->stx(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 __ inc(count, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1784
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 // copy 1 element (2 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 __ BIND(L_copy_2_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 __ BIND(L_copy_2_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 __ dec(end_from, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 __ dec(end_to, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 __ lduh(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 __ deccc(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 __ brx(Assembler::greater, false, Assembler::pt, L_copy_2_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 __ delayed()->sth(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1796
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 inc_counter_np(SharedRuntime::_jshort_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1804
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 // Generate core code for disjoint int copy (and oop copy on 32-bit).
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 // If "aligned" is true, the "from" and "to" addresses are assumed
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 // to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 // Arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 void generate_disjoint_int_copy_core(bool aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1816
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 Label L_skip_alignment, L_aligned_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 Label L_copy_16_bytes, L_copy_4_bytes, L_copy_4_bytes_loop, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1819
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 const Register offset = O5; // offset from start of arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 // O3, O4, G3, G4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1825
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 // 'aligned' == true when it is known statically during compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 // of this arraycopy call site that both 'from' and 'to' addresses
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 // are HeapWordSize aligned (see LibraryCallKit::basictype2arraycopy()).
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 // Aligned arrays have 4 bytes alignment in 32-bits VM
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 // and 8 bytes - in 64-bits VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 if (!aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 // The next check could be put under 'ifndef' since the code in
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 // generate_disjoint_long_copy_core() has own checks and set 'offset'.
a61af66fc99e Initial load
duke
parents:
diff changeset
1839
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 // for short arrays, just do single element copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 __ cmp(count, 5); // 4 + 1 (20 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_4_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 __ delayed()->mov(G0, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1844
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 // copy 1 element to align 'to' on an 8 byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 __ andcc(to, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 __ delayed()->ld(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 __ inc(from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 __ inc(to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 __ dec(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 __ st(O3, to, -4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1854
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 // if arrays have same alignment mod 8, do 4 elements copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 __ andcc(from, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 __ delayed()->ld(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1859
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 // Load 2 aligned 8-bytes chunks and use one from previous iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 // to form 2 aligned 8-bytes chunks to store.
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 // copy_16_bytes_forward_with_shift() is not used here since this
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 // code is more optimal.
a61af66fc99e Initial load
duke
parents:
diff changeset
1866
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 // copy with shift 4 elements (16 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 __ dec(count, 4); // The cmp at the beginning guaranty count >= 4
a61af66fc99e Initial load
duke
parents:
diff changeset
1869
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 __ BIND(L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 __ ldx(from, 4, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 __ deccc(count, 4); // Can we do next iteration after this one?
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 __ ldx(from, 12, G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 __ inc(to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 __ inc(from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 __ sllx(O3, 32, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1878 __ srlx(O4, 32, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 __ bset(G3, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 __ stx(O3, to, -16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 __ sllx(O4, 32, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 __ srlx(G4, 32, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 __ bset(G3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 __ stx(O4, to, -8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 __ delayed()->mov(G4, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1887
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 __ delayed()->inc(count, 4); // restore 'count'
a61af66fc99e Initial load
duke
parents:
diff changeset
1890
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 __ BIND(L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 // copy 4 elements (16 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 __ and3(count, 1, G4); // Save
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 __ srl(count, 1, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 generate_disjoint_long_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 __ mov(G4, count); // Restore
a61af66fc99e Initial load
duke
parents:
diff changeset
1898
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 // copy 1 element at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 __ BIND(L_copy_4_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 __ BIND(L_copy_4_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 __ ld(from, offset, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 __ deccc(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 __ st(O3, to, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 __ brx(Assembler::notZero, false, Assembler::pt, L_copy_4_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 __ delayed()->inc(offset, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1911
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 // Generate stub for disjoint int copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 address generate_disjoint_int_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1925
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 const Register count = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
1928
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 if (!aligned) disjoint_int_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1932
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 generate_disjoint_int_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
1934
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 inc_counter_np(SharedRuntime::_jint_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1941
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 // Generate core code for conjoint int copy (and oop copy on 32-bit).
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 // If "aligned" is true, the "from" and "to" addresses are assumed
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 // to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 // Arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 void generate_conjoint_int_copy_core(bool aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 // Do reverse copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1954
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 Label L_skip_alignment, L_aligned_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 Label L_copy_16_bytes, L_copy_4_bytes, L_copy_4_bytes_loop, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1957
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 const Register end_from = from; // source array end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 const Register end_to = to; // destination array end address
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 // O3, O4, O5, G3 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1964
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 const Register byte_count = O3; // bytes count to copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1966
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 __ sllx(count, LogBytesPerInt, byte_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 __ add(to, byte_count, end_to); // offset after last copied element
a61af66fc99e Initial load
duke
parents:
diff changeset
1969
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 __ cmp(count, 5); // for short arrays, just do single element copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_4_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 __ delayed()->add(from, byte_count, end_from);
a61af66fc99e Initial load
duke
parents:
diff changeset
1973
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 // copy 1 element to align 'to' on an 8 byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 __ andcc(end_to, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 __ br(Assembler::zero, false, Assembler::pt, L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 __ dec(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 __ dec(end_from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 __ dec(end_to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 __ ld(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 __ st(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 __ BIND(L_skip_alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
1984
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 // Check if 'end_from' and 'end_to' has the same alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 __ andcc(end_from, 7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 __ br(Assembler::zero, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 __ delayed()->dec(count, 4); // The cmp at the start guaranty cnt >= 4
a61af66fc99e Initial load
duke
parents:
diff changeset
1989
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 // copy with shift 4 elements (16 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 // Load 2 aligned 8-bytes chunks and use one from previous iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 // to form 2 aligned 8-bytes chunks to store.
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 __ ldx(end_from, -4, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 __ BIND(L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 __ ldx(end_from, -12, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 __ deccc(count, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 __ ldx(end_from, -20, O5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 __ dec(end_to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 __ dec(end_from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 __ srlx(O3, 32, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 __ sllx(O4, 32, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 __ bset(G3, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 __ stx(O3, end_to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 __ srlx(O4, 32, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 __ sllx(O5, 32, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 __ bset(O4, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 __ stx(G3, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 __ delayed()->mov(O5, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2013
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 __ br(Assembler::always, false, Assembler::pt, L_copy_4_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 __ delayed()->inc(count, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2016
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 // copy 4 elements (16 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 __ BIND(L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 __ dec(end_from, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 __ ldx(end_from, 8, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 __ ldx(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 __ dec(end_to, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 __ deccc(count, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 __ stx(O3, end_to, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_aligned_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 __ delayed()->stx(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 __ inc(count, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2029
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 // copy 1 element (4 bytes) at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 __ BIND(L_copy_4_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 __ br_zero(Assembler::zero, false, Assembler::pt, count, L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 __ BIND(L_copy_4_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 __ dec(end_from, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 __ dec(end_to, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 __ ld(end_from, 0, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 __ deccc(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 __ brx(Assembler::greater, false, Assembler::pt, L_copy_4_bytes_loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 __ delayed()->st(O4, end_to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2043
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 // Generate stub for conjoint int copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 address generate_conjoint_int_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2057
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 address nooverlap_target = aligned ?
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 StubRoutines::arrayof_jint_disjoint_arraycopy() :
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 disjoint_int_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2061
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 assert_clean_int(O2, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
2063
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 if (!aligned) int_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2067
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 array_overlap_test(nooverlap_target, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2069
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 generate_conjoint_int_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
2071
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 inc_counter_np(SharedRuntime::_jint_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2078
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 // Generate core code for disjoint long copy (and oop copy on 64-bit).
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 // "aligned" is ignored, because we must make the stronger
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 // assumption that both addresses are always 64-bit aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 // Arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 void generate_disjoint_long_copy_core(bool aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 Label L_copy_8_bytes, L_copy_16_bytes, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 const Register offset0 = O4; // element offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 const Register offset8 = O5; // next element offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2096
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 __ deccc(count, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 __ mov(G0, offset0); // offset from start of arrays (0)
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 __ brx(Assembler::negative, false, Assembler::pn, L_copy_8_bytes );
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 __ delayed()->add(offset0, 8, offset8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 __ BIND(L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 __ ldx(from, offset0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 __ ldx(from, offset8, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 __ deccc(count, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 __ stx(O3, to, offset0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 __ inc(offset0, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 __ stx(G3, to, offset8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 __ brx(Assembler::greaterEqual, false, Assembler::pt, L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 __ delayed()->inc(offset8, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2111
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 __ BIND(L_copy_8_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 __ inccc(count, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 __ brx(Assembler::zero, true, Assembler::pn, L_exit );
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 __ delayed()->mov(offset0, offset8); // Set O5 used by other stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 __ ldx(from, offset0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 __ stx(O3, to, offset0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2120
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 // Generate stub for disjoint long copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 // "aligned" is ignored, because we must make the stronger
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 // assumption that both addresses are always 64-bit aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 address generate_disjoint_long_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2135
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 assert_clean_int(O2, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
2137
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 if (!aligned) disjoint_long_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2141
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 generate_disjoint_long_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
2143
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 inc_counter_np(SharedRuntime::_jlong_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2150
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 // Generate core code for conjoint long copy (and oop copy on 64-bit).
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 // "aligned" is ignored, because we must make the stronger
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 // assumption that both addresses are always 64-bit aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 // Arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 void generate_conjoint_long_copy_core(bool aligned) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 // Do reverse copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 Label L_copy_8_bytes, L_copy_16_bytes, L_exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 const Register offset8 = O4; // element offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 const Register offset0 = O5; // previous element offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2169
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 __ subcc(count, 1, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 __ brx(Assembler::lessEqual, false, Assembler::pn, L_copy_8_bytes );
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 __ delayed()->sllx(count, LogBytesPerLong, offset8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 __ sub(offset8, 8, offset0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 __ BIND(L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 __ ldx(from, offset8, O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 __ ldx(from, offset0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 __ stx(O2, to, offset8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 __ deccc(offset8, 16); // use offset8 as counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 __ stx(O3, to, offset0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 __ brx(Assembler::greater, false, Assembler::pt, L_copy_16_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 __ delayed()->dec(offset0, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2183
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 __ BIND(L_copy_8_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 __ brx(Assembler::negative, false, Assembler::pn, L_exit );
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 __ ldx(from, 0, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 __ stx(O3, to, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 __ BIND(L_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2191
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 // Generate stub for conjoint long copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 // "aligned" is ignored, because we must make the stronger
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 // assumption that both addresses are always 64-bit aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 address generate_conjoint_long_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2205
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 assert(!aligned, "usage");
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 address nooverlap_target = disjoint_long_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2208
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 assert_clean_int(O2, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
2210
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 if (!aligned) long_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 // caller can pass a 64-bit byte count here (from Unsafe.copyMemory)
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2214
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 array_overlap_test(nooverlap_target, 3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2216
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 generate_conjoint_long_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 inc_counter_np(SharedRuntime::_jlong_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2225
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 // Generate stub for disjoint oop copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 address generate_disjoint_oop_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2235
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2239
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2243
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
2245
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 if (!aligned) disjoint_oop_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 // caller can pass a 64-bit byte count here
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2249
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 // save arguments for barrier generation
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 __ mov(to, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 __ mov(count, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 gen_write_ref_array_pre_barrier(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2254 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2255 assert_clean_int(count, O3); // Make sure 'count' is clean int.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2256 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2257 generate_disjoint_int_copy_core(aligned);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2258 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2259 generate_disjoint_long_copy_core(aligned);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2260 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2262 generate_disjoint_int_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 // O0 is used as temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 gen_write_ref_array_post_barrier(G1, G5, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2266
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 inc_counter_np(SharedRuntime::_oop_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2273
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 // Generate stub for conjoint oop copy. If "aligned" is true, the
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 // "from" and "to" addresses are assumed to be heapword aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 address generate_conjoint_oop_copy(bool aligned, const char * name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2283
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2287
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2291
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 assert_clean_int(count, O3); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
2293
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 if (!aligned) oop_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 // caller can pass a 64-bit byte count here
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 if (!aligned) BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2297
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 // save arguments for barrier generation
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 __ mov(to, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 __ mov(count, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2301
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 gen_write_ref_array_pre_barrier(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2303
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 address nooverlap_target = aligned ?
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 StubRoutines::arrayof_oop_disjoint_arraycopy() :
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 disjoint_oop_copy_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2307
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2308 array_overlap_test(nooverlap_target, LogBytesPerHeapOop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2309
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2311 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2312 generate_conjoint_int_copy_core(aligned);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2313 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2314 generate_conjoint_long_copy_core(aligned);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2315 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 generate_conjoint_int_copy_core(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2319
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 // O0 is used as temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 gen_write_ref_array_post_barrier(G1, G5, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2322
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 // O3, O4 are used as temp registers
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 inc_counter_np(SharedRuntime::_oop_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 __ delayed()->mov(G0, O0); // return 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2329
a61af66fc99e Initial load
duke
parents:
diff changeset
2330
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 // Helper for generating a dynamic type check.
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 // Smashes only the given temp registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 void generate_type_check(Register sub_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 Register super_check_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 Register super_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 Register temp,
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 Label& L_success,
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 Register deccc_hack = noreg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 assert_different_registers(sub_klass, super_check_offset, super_klass, temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2340
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 BLOCK_COMMENT("type_check:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2342
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 Label L_miss;
a61af66fc99e Initial load
duke
parents:
diff changeset
2344
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 assert_clean_int(super_check_offset, temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2346
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 // maybe decrement caller's trip count:
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 #define DELAY_SLOT delayed(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 { if (deccc_hack == noreg) __ nop(); else __ deccc(deccc_hack); }
a61af66fc99e Initial load
duke
parents:
diff changeset
2350
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 // if the pointers are equal, we are done (e.g., String[] elements)
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 __ cmp(sub_klass, super_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 __ brx(Assembler::equal, true, Assembler::pt, L_success);
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 __ DELAY_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
2355
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 // check the supertype display:
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 __ ld_ptr(sub_klass, super_check_offset, temp); // query the super type
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 __ cmp(super_klass, temp); // test the super type
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 __ brx(Assembler::equal, true, Assembler::pt, L_success);
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 __ DELAY_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
2361
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 int sc_offset = (klassOopDesc::header_size() * HeapWordSize +
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 Klass::secondary_super_cache_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 __ cmp(super_klass, sc_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 __ brx(Assembler::notEqual, true, Assembler::pt, L_miss);
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2367
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 __ mov(sub_klass->after_save(), O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 // mov(super_klass->after_save(), O2); //fill delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 assert(StubRoutines::Sparc::_partial_subtype_check != NULL, "order of generation");
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 __ call(StubRoutines::Sparc::_partial_subtype_check);
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 __ delayed()->mov(super_klass->after_save(), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
2375
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 // Upon return, the condition codes are already set.
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 __ brx(Assembler::equal, true, Assembler::pt, L_success);
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 __ DELAY_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
2379
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 #undef DELAY_SLOT
a61af66fc99e Initial load
duke
parents:
diff changeset
2381
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 // Fall through on failure!
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 __ BIND(L_miss);
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2385
a61af66fc99e Initial load
duke
parents:
diff changeset
2386
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 // Generate stub for checked oop copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 // count: O2 treated as signed
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 // ckoff: O3 (super_check_offset)
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 // ckval: O4 (super_klass)
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 // ret: O0 zero for success; (-1^K) where K is partial transfer count
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 address generate_checkcast_copy(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2398
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 const Register O0_from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 const Register O1_to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 const Register O2_count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 const Register O3_ckoff = O3; // super_check_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 const Register O4_ckval = O4; // super_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2404
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 const Register O5_offset = O5; // loop var, with stride wordSize
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 const Register G1_remain = G1; // loop var, with stride -1
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 const Register G3_oop = G3; // actual oop copied
a61af66fc99e Initial load
duke
parents:
diff changeset
2408 const Register G4_klass = G4; // oop._klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 const Register G5_super = G5; // oop._klass._primary_supers[ckval]
a61af66fc99e Initial load
duke
parents:
diff changeset
2410
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2414
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 gen_write_ref_array_pre_barrier(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2416
a61af66fc99e Initial load
duke
parents:
diff changeset
2417
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 // We sometimes save a frame (see partial_subtype_check below).
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 // If this will cause trouble, let's fail now instead of later.
a61af66fc99e Initial load
duke
parents:
diff changeset
2421 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2422 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2424
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 // caller guarantees that the arrays really are different
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 // otherwise, we would have to make conjoint checks
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 __ mov(O3, G1); // spill: overlap test smashes O3
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 __ mov(O4, G4); // spill: overlap test smashes O4
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2431 array_overlap_test(L, LogBytesPerHeapOop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 __ stop("checkcast_copy within a single array");
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 __ mov(G1, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 __ mov(G4, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 #endif //ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2438
a61af66fc99e Initial load
duke
parents:
diff changeset
2439 assert_clean_int(O2_count, G1); // Make sure 'count' is clean int.
a61af66fc99e Initial load
duke
parents:
diff changeset
2440
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 checkcast_copy_entry = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 // caller can pass a 64-bit byte count here (from generic stub)
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 BLOCK_COMMENT("Entry:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2444
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 Label load_element, store_element, do_card_marks, fail, done;
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 __ addcc(O2_count, 0, G1_remain); // initialize loop index, and test it
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 __ brx(Assembler::notZero, false, Assembler::pt, load_element);
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 __ delayed()->mov(G0, O5_offset); // offset from start of arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
2449
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 // Empty array: Nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 __ delayed()->set(0, O0); // return 0 on (trivial) success
a61af66fc99e Initial load
duke
parents:
diff changeset
2454
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 // ======== begin loop ========
a61af66fc99e Initial load
duke
parents:
diff changeset
2456 // (Loop is rotated; its entry is load_element.)
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 // Loop variables:
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 // (O5 = 0; ; O5 += wordSize) --- offset from src, dest arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
2459 // (O2 = len; O2 != 0; O2--) --- number of oops *remaining*
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 // G3, G4, G5 --- current oop, oop.klass, oop.klass.super
a61af66fc99e Initial load
duke
parents:
diff changeset
2461 __ align(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2462
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 __ bind(store_element);
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 // deccc(G1_remain); // decrement the count (hoisted)
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2465 __ store_heap_oop(G3_oop, O1_to, O5_offset); // store the oop
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2466 __ inc(O5_offset, heapOopSize); // step to next offset
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 __ brx(Assembler::zero, true, Assembler::pt, do_card_marks);
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 __ delayed()->set(0, O0); // return -1 on success
a61af66fc99e Initial load
duke
parents:
diff changeset
2469
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 // ======== loop entry is here ========
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 __ bind(load_element);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2472 __ load_heap_oop(O0_from, O5_offset, G3_oop); // load the oop
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 __ br_null(G3_oop, true, Assembler::pt, store_element);
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 __ delayed()->deccc(G1_remain); // decrement the count
a61af66fc99e Initial load
duke
parents:
diff changeset
2475
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2476 __ load_klass(G3_oop, G4_klass); // query the object klass
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2477
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 generate_type_check(G4_klass, O3_ckoff, O4_ckval, G5_super,
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 // branch to this on success:
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 store_element,
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 // decrement this on success:
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 G1_remain);
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 // ======== end loop ========
a61af66fc99e Initial load
duke
parents:
diff changeset
2484
a61af66fc99e Initial load
duke
parents:
diff changeset
2485 // It was a real error; we must depend on the caller to finish the job.
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 // Register G1 has number of *remaining* oops, O2 number of *total* oops.
a61af66fc99e Initial load
duke
parents:
diff changeset
2487 // Emit GC store barriers for the oops we have copied (O2 minus G1),
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 // and report their number to the caller.
a61af66fc99e Initial load
duke
parents:
diff changeset
2489 __ bind(fail);
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 __ subcc(O2_count, G1_remain, O2_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 __ brx(Assembler::zero, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 __ delayed()->not1(O2_count, O0); // report (-1^K) to caller
a61af66fc99e Initial load
duke
parents:
diff changeset
2493
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 __ bind(do_card_marks);
a61af66fc99e Initial load
duke
parents:
diff changeset
2495 gen_write_ref_array_post_barrier(O1_to, O2_count, O3); // store check on O1[0..O2]
a61af66fc99e Initial load
duke
parents:
diff changeset
2496
a61af66fc99e Initial load
duke
parents:
diff changeset
2497 __ bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2498 inc_counter_np(SharedRuntime::_checkcast_array_copy_ctr, O3, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 __ delayed()->nop(); // return value in 00
a61af66fc99e Initial load
duke
parents:
diff changeset
2501
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2504
a61af66fc99e Initial load
duke
parents:
diff changeset
2505
a61af66fc99e Initial load
duke
parents:
diff changeset
2506 // Generate 'unsafe' array copy stub
a61af66fc99e Initial load
duke
parents:
diff changeset
2507 // Though just as safe as the other stubs, it takes an unscaled
a61af66fc99e Initial load
duke
parents:
diff changeset
2508 // size_t argument instead of an element count.
a61af66fc99e Initial load
duke
parents:
diff changeset
2509 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 // Arguments for generated stub:
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 // from: O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 // to: O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 // count: O2 byte count, treated as ssize_t, can be zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 // Examines the alignment of the operands and dispatches
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 // to a long, int, short, or byte copy loop.
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 address generate_unsafe_copy(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2519
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 const Register O0_from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 const Register O1_to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 const Register O2_count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2523
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 const Register G1_bits = G1; // test copy of low bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2525
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2529
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 // bump this on entry, not on exit:
a61af66fc99e Initial load
duke
parents:
diff changeset
2531 inc_counter_np(SharedRuntime::_unsafe_array_copy_ctr, G1, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2532
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 __ or3(O0_from, O1_to, G1_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
2534 __ or3(O2_count, G1_bits, G1_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
2535
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 __ btst(BytesPerLong-1, G1_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 __ br(Assembler::zero, true, Assembler::pt,
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 long_copy_entry, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2539 // scale the count on the way out:
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 __ delayed()->srax(O2_count, LogBytesPerLong, O2_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2541
a61af66fc99e Initial load
duke
parents:
diff changeset
2542 __ btst(BytesPerInt-1, G1_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 __ br(Assembler::zero, true, Assembler::pt,
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 int_copy_entry, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 // scale the count on the way out:
a61af66fc99e Initial load
duke
parents:
diff changeset
2546 __ delayed()->srax(O2_count, LogBytesPerInt, O2_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2547
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 __ btst(BytesPerShort-1, G1_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 __ br(Assembler::zero, true, Assembler::pt,
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 short_copy_entry, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2551 // scale the count on the way out:
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 __ delayed()->srax(O2_count, LogBytesPerShort, O2_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2553
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 __ br(Assembler::always, false, Assembler::pt,
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 byte_copy_entry, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2557
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2559 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2560
a61af66fc99e Initial load
duke
parents:
diff changeset
2561
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 // Perform range checks on the proposed arraycopy.
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 // Kills the two temps, but nothing else.
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 // Also, clean the sign bits of src_pos and dst_pos.
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 void arraycopy_range_checks(Register src, // source array oop (O0)
a61af66fc99e Initial load
duke
parents:
diff changeset
2566 Register src_pos, // source position (O1)
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 Register dst, // destination array oo (O2)
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 Register dst_pos, // destination position (O3)
a61af66fc99e Initial load
duke
parents:
diff changeset
2569 Register length, // length of copy (O4)
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 Register temp1, Register temp2,
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 Label& L_failed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 BLOCK_COMMENT("arraycopy_range_checks:");
a61af66fc99e Initial load
duke
parents:
diff changeset
2573
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 // if (src_pos + length > arrayOop(src)->length() ) FAIL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2575
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 const Register array_length = temp1; // scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 const Register end_pos = temp2; // scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
2578
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 // Note: This next instruction may be in the delay slot of a branch:
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 __ add(length, src_pos, end_pos); // src_pos + length
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 __ lduw(src, arrayOopDesc::length_offset_in_bytes(), array_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2582 __ cmp(end_pos, array_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 __ br(Assembler::greater, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2584
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 // if (dst_pos + length > arrayOop(dst)->length() ) FAIL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 __ delayed()->add(length, dst_pos, end_pos); // dst_pos + length
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 __ lduw(dst, arrayOopDesc::length_offset_in_bytes(), array_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 __ cmp(end_pos, array_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 __ br(Assembler::greater, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2590
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 // Have to clean up high 32-bits of 'src_pos' and 'dst_pos'.
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 // Move with sign extension can be used since they are positive.
a61af66fc99e Initial load
duke
parents:
diff changeset
2593 __ delayed()->signx(src_pos, src_pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 __ signx(dst_pos, dst_pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
2595
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 BLOCK_COMMENT("arraycopy_range_checks done");
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2598
a61af66fc99e Initial load
duke
parents:
diff changeset
2599
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 // Generate generic array copy stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
2602 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 // Input:
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 // O0 - src oop
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 // O1 - src_pos
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 // O2 - dst oop
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 // O3 - dst_pos
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 // O4 - element count
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 // Output:
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 // O0 == 0 - success
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 // O0 == -1 - need to call System.arraycopy
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 address generate_generic_copy(const char *name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2615
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 Label L_failed, L_objArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
2617
a61af66fc99e Initial load
duke
parents:
diff changeset
2618 // Input registers
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 const Register src = O0; // source array oop
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 const Register src_pos = O1; // source position
a61af66fc99e Initial load
duke
parents:
diff changeset
2621 const Register dst = O2; // destination array oop
a61af66fc99e Initial load
duke
parents:
diff changeset
2622 const Register dst_pos = O3; // destination position
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 const Register length = O4; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2624
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 // registers used as temp
a61af66fc99e Initial load
duke
parents:
diff changeset
2626 const Register G3_src_klass = G3; // source array klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 const Register G4_dst_klass = G4; // destination array klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 const Register G5_lh = G5; // layout handler
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 const Register O5_temp = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
2630
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 __ align(CodeEntryAlignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 StubCodeMark mark(this, "StubRoutines", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
2634
a61af66fc99e Initial load
duke
parents:
diff changeset
2635 // bump this on entry, not on exit:
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 inc_counter_np(SharedRuntime::_generic_array_copy_ctr, G1, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2637
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 // In principle, the int arguments could be dirty.
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 //assert_clean_int(src_pos, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 //assert_clean_int(dst_pos, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 //assert_clean_int(length, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2642
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 //-----------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 // Assembler stubs will be used for this call to arraycopy
a61af66fc99e Initial load
duke
parents:
diff changeset
2645 // if the following conditions are met:
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 // (1) src and dst must not be null.
a61af66fc99e Initial load
duke
parents:
diff changeset
2648 // (2) src_pos must not be negative.
a61af66fc99e Initial load
duke
parents:
diff changeset
2649 // (3) dst_pos must not be negative.
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 // (4) length must not be negative.
a61af66fc99e Initial load
duke
parents:
diff changeset
2651 // (5) src klass and dst klass should be the same and not NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 // (6) src and dst should be arrays.
a61af66fc99e Initial load
duke
parents:
diff changeset
2653 // (7) src_pos + length must not exceed length of src.
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 // (8) dst_pos + length must not exceed length of dst.
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 BLOCK_COMMENT("arraycopy initial argument checks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2656
a61af66fc99e Initial load
duke
parents:
diff changeset
2657 // if (src == NULL) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 __ br_null(src, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2659
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 // if (src_pos < 0) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 __ delayed()->tst(src_pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 __ br(Assembler::negative, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2663 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2664
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 // if (dst == NULL) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 __ br_null(dst, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2667
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 // if (dst_pos < 0) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2669 __ delayed()->tst(dst_pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 __ br(Assembler::negative, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2671
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 // if (length < 0) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 __ delayed()->tst(length);
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 __ br(Assembler::negative, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2675
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 BLOCK_COMMENT("arraycopy argument klass checks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 // get src->klass()
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2678 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2679 __ delayed()->nop(); // ??? not good
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2680 __ load_klass(src, G3_src_klass);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2681 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2682 __ delayed()->ld_ptr(src, oopDesc::klass_offset_in_bytes(), G3_src_klass);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2683 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2684
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 // assert(src->klass() != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 BLOCK_COMMENT("assert klasses not null");
a61af66fc99e Initial load
duke
parents:
diff changeset
2688 { Label L_a, L_b;
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 __ br_notnull(G3_src_klass, false, Assembler::pt, L_b); // it is broken if klass is NULL
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2690 __ delayed()->nop();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 __ bind(L_a);
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 __ stop("broken null klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 __ bind(L_b);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2694 __ load_klass(dst, G4_dst_klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 __ br_null(G4_dst_klass, false, Assembler::pn, L_a); // this would be broken also
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 __ delayed()->mov(G0, G4_dst_klass); // scribble the temp
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 BLOCK_COMMENT("assert done");
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2700
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 // Load layout helper
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 // |array_tag| | header_size | element_type | |log2_element_size|
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 // 32 30 24 16 8 2 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2705 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2706 // array_tag: typeArray = 0x3, objArray = 0x2, non-array = 0x0
a61af66fc99e Initial load
duke
parents:
diff changeset
2707 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2708
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 int lh_offset = klassOopDesc::header_size() * HeapWordSize +
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 Klass::layout_helper_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
2711
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 // Load 32-bits signed value. Use br() instruction with it to check icc.
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 __ lduw(G3_src_klass, lh_offset, G5_lh);
a61af66fc99e Initial load
duke
parents:
diff changeset
2714
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2715 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2716 __ load_klass(dst, G4_dst_klass);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2717 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 // Handle objArrays completely differently...
a61af66fc99e Initial load
duke
parents:
diff changeset
2719 juint objArray_lh = Klass::array_layout_helper(T_OBJECT);
a61af66fc99e Initial load
duke
parents:
diff changeset
2720 __ set(objArray_lh, O5_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 __ cmp(G5_lh, O5_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2722 __ br(Assembler::equal, false, Assembler::pt, L_objArray);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2723 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2724 __ delayed()->nop();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2725 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2726 __ delayed()->ld_ptr(dst, oopDesc::klass_offset_in_bytes(), G4_dst_klass);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2727 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2728
a61af66fc99e Initial load
duke
parents:
diff changeset
2729 // if (src->klass() != dst->klass()) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 __ cmp(G3_src_klass, G4_dst_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 __ brx(Assembler::notEqual, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2732 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2733
a61af66fc99e Initial load
duke
parents:
diff changeset
2734 // if (!src->is_Array()) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2735 __ cmp(G5_lh, Klass::_lh_neutral_value); // < 0
a61af66fc99e Initial load
duke
parents:
diff changeset
2736 __ br(Assembler::greaterEqual, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2737
a61af66fc99e Initial load
duke
parents:
diff changeset
2738 // At this point, it is known to be a typeArray (array_tag 0x3).
a61af66fc99e Initial load
duke
parents:
diff changeset
2739 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2741 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 jint lh_prim_tag_in_place = (Klass::_lh_array_tag_type_value << Klass::_lh_array_tag_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 __ set(lh_prim_tag_in_place, O5_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 __ cmp(G5_lh, O5_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2745 __ br(Assembler::greaterEqual, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2746 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2747 __ stop("must be a primitive array");
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 __ delayed(); // match next insn to prev branch
a61af66fc99e Initial load
duke
parents:
diff changeset
2752 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2753
a61af66fc99e Initial load
duke
parents:
diff changeset
2754 arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 O5_temp, G4_dst_klass, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2756
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 // typeArrayKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 // src_addr = (src + array_header_in_bytes()) + (src_pos << log2elemsize);
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 // dst_addr = (dst + array_header_in_bytes()) + (dst_pos << log2elemsize);
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2762
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 const Register G4_offset = G4_dst_klass; // array offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 const Register G3_elsize = G3_src_klass; // log2 element size
a61af66fc99e Initial load
duke
parents:
diff changeset
2765
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 __ srl(G5_lh, Klass::_lh_header_size_shift, G4_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 __ and3(G4_offset, Klass::_lh_header_size_mask, G4_offset); // array_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2768 __ add(src, G4_offset, src); // src array offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 __ add(dst, G4_offset, dst); // dst array offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 __ and3(G5_lh, Klass::_lh_log2_element_size_mask, G3_elsize); // log2 element size
a61af66fc99e Initial load
duke
parents:
diff changeset
2771
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 // next registers should be set before the jump to corresponding stub
a61af66fc99e Initial load
duke
parents:
diff changeset
2773 const Register from = O0; // source array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2774 const Register to = O1; // destination array address
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 const Register count = O2; // elements count
a61af66fc99e Initial load
duke
parents:
diff changeset
2776
a61af66fc99e Initial load
duke
parents:
diff changeset
2777 // 'from', 'to', 'count' registers should be set in this order
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 // since they are the same as 'src', 'src_pos', 'dst'.
a61af66fc99e Initial load
duke
parents:
diff changeset
2779
a61af66fc99e Initial load
duke
parents:
diff changeset
2780 BLOCK_COMMENT("scale indexes to element size");
a61af66fc99e Initial load
duke
parents:
diff changeset
2781 __ sll_ptr(src_pos, G3_elsize, src_pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
2782 __ sll_ptr(dst_pos, G3_elsize, dst_pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
2783 __ add(src, src_pos, from); // src_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
2784 __ add(dst, dst_pos, to); // dst_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
2785
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 BLOCK_COMMENT("choose copy loop based on element size");
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 __ cmp(G3_elsize, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 __ br(Assembler::equal,true,Assembler::pt,StubRoutines::_jbyte_arraycopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 __ delayed()->signx(length, count); // length
a61af66fc99e Initial load
duke
parents:
diff changeset
2790
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 __ cmp(G3_elsize, LogBytesPerShort);
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 __ br(Assembler::equal,true,Assembler::pt,StubRoutines::_jshort_arraycopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 __ delayed()->signx(length, count); // length
a61af66fc99e Initial load
duke
parents:
diff changeset
2794
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 __ cmp(G3_elsize, LogBytesPerInt);
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 __ br(Assembler::equal,true,Assembler::pt,StubRoutines::_jint_arraycopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 __ delayed()->signx(length, count); // length
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 __ cmp(G3_elsize, LogBytesPerLong);
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 __ br(Assembler::equal, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2802 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 __ stop("must be long copy, but elsize is wrong");
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2806 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 __ br(Assembler::always,false,Assembler::pt,StubRoutines::_jlong_arraycopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 __ delayed()->signx(length, count); // length
a61af66fc99e Initial load
duke
parents:
diff changeset
2809
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 // objArrayKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 __ BIND(L_objArray);
a61af66fc99e Initial load
duke
parents:
diff changeset
2812 // live at this point: G3_src_klass, G4_dst_klass, src[_pos], dst[_pos], length
a61af66fc99e Initial load
duke
parents:
diff changeset
2813
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 Label L_plain_copy, L_checkcast_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 // test array classes for subtyping
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 __ cmp(G3_src_klass, G4_dst_klass); // usual case is exact equality
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 __ brx(Assembler::notEqual, true, Assembler::pn, L_checkcast_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 __ delayed()->lduw(G4_dst_klass, lh_offset, O5_temp); // hoisted from below
a61af66fc99e Initial load
duke
parents:
diff changeset
2819
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 // Identically typed arrays can be copied without element-wise checks.
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 O5_temp, G5_lh, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2823
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 __ add(src, arrayOopDesc::base_offset_in_bytes(T_OBJECT), src); //src offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 __ add(dst, arrayOopDesc::base_offset_in_bytes(T_OBJECT), dst); //dst offset
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2826 __ sll_ptr(src_pos, LogBytesPerHeapOop, src_pos);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2827 __ sll_ptr(dst_pos, LogBytesPerHeapOop, dst_pos);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 __ add(src, src_pos, from); // src_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 __ add(dst, dst_pos, to); // dst_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 __ BIND(L_plain_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 __ br(Assembler::always, false, Assembler::pt,StubRoutines::_oop_arraycopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 __ delayed()->signx(length, count); // length
a61af66fc99e Initial load
duke
parents:
diff changeset
2833
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 __ BIND(L_checkcast_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 // live at this point: G3_src_klass, G4_dst_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 // Before looking at dst.length, make sure dst is also an objArray.
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 // lduw(G4_dst_klass, lh_offset, O5_temp); // hoisted to delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 __ cmp(G5_lh, O5_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2840 __ br(Assembler::notEqual, false, Assembler::pn, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2841
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 // It is safe to examine both src.length and dst.length.
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 __ delayed(); // match next insn to prev branch
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 arraycopy_range_checks(src, src_pos, dst, dst_pos, length,
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 O5_temp, G5_lh, L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2846
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 // Marshal the base address arguments now, freeing registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
2848 __ add(src, arrayOopDesc::base_offset_in_bytes(T_OBJECT), src); //src offset
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 __ add(dst, arrayOopDesc::base_offset_in_bytes(T_OBJECT), dst); //dst offset
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2850 __ sll_ptr(src_pos, LogBytesPerHeapOop, src_pos);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
2851 __ sll_ptr(dst_pos, LogBytesPerHeapOop, dst_pos);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 __ add(src, src_pos, from); // src_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 __ add(dst, dst_pos, to); // dst_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 __ signx(length, count); // length (reloaded)
a61af66fc99e Initial load
duke
parents:
diff changeset
2855
a61af66fc99e Initial load
duke
parents:
diff changeset
2856 Register sco_temp = O3; // this register is free now
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 assert_different_registers(from, to, count, sco_temp,
a61af66fc99e Initial load
duke
parents:
diff changeset
2858 G4_dst_klass, G3_src_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
2859
a61af66fc99e Initial load
duke
parents:
diff changeset
2860 // Generate the type check.
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 int sco_offset = (klassOopDesc::header_size() * HeapWordSize +
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 Klass::super_check_offset_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2863 __ lduw(G4_dst_klass, sco_offset, sco_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 generate_type_check(G3_src_klass, sco_temp, G4_dst_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 O5_temp, L_plain_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2866
a61af66fc99e Initial load
duke
parents:
diff changeset
2867 // Fetch destination element klass from the objArrayKlass header.
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 int ek_offset = (klassOopDesc::header_size() * HeapWordSize +
a61af66fc99e Initial load
duke
parents:
diff changeset
2869 objArrayKlass::element_klass_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2870
a61af66fc99e Initial load
duke
parents:
diff changeset
2871 // the checkcast_copy loop needs two extra arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 __ ld_ptr(G4_dst_klass, ek_offset, O4); // dest elem klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 // lduw(O4, sco_offset, O3); // sco of elem klass
a61af66fc99e Initial load
duke
parents:
diff changeset
2874
a61af66fc99e Initial load
duke
parents:
diff changeset
2875 __ br(Assembler::always, false, Assembler::pt, checkcast_copy_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 __ delayed()->lduw(O4, sco_offset, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2878
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 __ BIND(L_failed);
a61af66fc99e Initial load
duke
parents:
diff changeset
2880 __ retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
2881 __ delayed()->sub(G0, 1, O0); // return -1
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2884
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 void generate_arraycopy_stubs() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2886
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 // Note: the disjoint stubs must be generated first, some of
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 // the conjoint stubs use them.
a61af66fc99e Initial load
duke
parents:
diff changeset
2889 StubRoutines::_jbyte_disjoint_arraycopy = generate_disjoint_byte_copy(false, "jbyte_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 StubRoutines::_jshort_disjoint_arraycopy = generate_disjoint_short_copy(false, "jshort_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 StubRoutines::_jint_disjoint_arraycopy = generate_disjoint_int_copy(false, "jint_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2892 StubRoutines::_jlong_disjoint_arraycopy = generate_disjoint_long_copy(false, "jlong_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2893 StubRoutines::_oop_disjoint_arraycopy = generate_disjoint_oop_copy(false, "oop_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 StubRoutines::_arrayof_jbyte_disjoint_arraycopy = generate_disjoint_byte_copy(true, "arrayof_jbyte_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 StubRoutines::_arrayof_jshort_disjoint_arraycopy = generate_disjoint_short_copy(true, "arrayof_jshort_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 StubRoutines::_arrayof_jint_disjoint_arraycopy = generate_disjoint_int_copy(true, "arrayof_jint_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 StubRoutines::_arrayof_jlong_disjoint_arraycopy = generate_disjoint_long_copy(true, "arrayof_jlong_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 StubRoutines::_arrayof_oop_disjoint_arraycopy = generate_disjoint_oop_copy(true, "arrayof_oop_disjoint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2899
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 StubRoutines::_jbyte_arraycopy = generate_conjoint_byte_copy(false, "jbyte_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 StubRoutines::_jshort_arraycopy = generate_conjoint_short_copy(false, "jshort_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2902 StubRoutines::_jint_arraycopy = generate_conjoint_int_copy(false, "jint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 StubRoutines::_jlong_arraycopy = generate_conjoint_long_copy(false, "jlong_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 StubRoutines::_oop_arraycopy = generate_conjoint_oop_copy(false, "oop_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 StubRoutines::_arrayof_jbyte_arraycopy = generate_conjoint_byte_copy(true, "arrayof_jbyte_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2906 StubRoutines::_arrayof_jshort_arraycopy = generate_conjoint_short_copy(true, "arrayof_jshort_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 // since sizeof(jint) < sizeof(HeapWord), there's a different flavor:
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 StubRoutines::_arrayof_jint_arraycopy = generate_conjoint_int_copy(true, "arrayof_jint_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 StubRoutines::_arrayof_jint_arraycopy = StubRoutines::_jint_arraycopy;
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 StubRoutines::_arrayof_jlong_arraycopy = StubRoutines::_jlong_arraycopy;
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 StubRoutines::_arrayof_oop_arraycopy = StubRoutines::_oop_arraycopy;
a61af66fc99e Initial load
duke
parents:
diff changeset
2915
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 StubRoutines::_checkcast_arraycopy = generate_checkcast_copy("checkcast_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 StubRoutines::_unsafe_arraycopy = generate_unsafe_copy("unsafe_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 StubRoutines::_generic_arraycopy = generate_generic_copy("generic_arraycopy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2920
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 void generate_initial() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 // Generates all stubs and initializes the entry points
a61af66fc99e Initial load
duke
parents:
diff changeset
2923
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 // entry points that exist in all platforms
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 // Note: This is code that could be shared among different platforms - however the benefit seems to be smaller than
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 // the disadvantage of having a much more complicated generator structure. See also comment in stubRoutines.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 StubRoutines::_forward_exception_entry = generate_forward_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
2929
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 StubRoutines::_call_stub_entry = generate_call_stub(StubRoutines::_call_stub_return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 StubRoutines::_catch_exception_entry = generate_catch_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
2932
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 //------------------------------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 // entry points that are platform specific
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 StubRoutines::Sparc::_test_stop_entry = generate_test_stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2936
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 StubRoutines::Sparc::_stop_subroutine_entry = generate_stop_subroutine();
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 StubRoutines::Sparc::_flush_callers_register_windows_entry = generate_flush_callers_register_windows();
a61af66fc99e Initial load
duke
parents:
diff changeset
2939
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 #if !defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 StubRoutines::_atomic_xchg_entry = generate_atomic_xchg();
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 StubRoutines::_atomic_cmpxchg_entry = generate_atomic_cmpxchg();
a61af66fc99e Initial load
duke
parents:
diff changeset
2943 StubRoutines::_atomic_add_entry = generate_atomic_add();
a61af66fc99e Initial load
duke
parents:
diff changeset
2944 StubRoutines::_atomic_xchg_ptr_entry = StubRoutines::_atomic_xchg_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2945 StubRoutines::_atomic_cmpxchg_ptr_entry = StubRoutines::_atomic_cmpxchg_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2946 StubRoutines::_atomic_cmpxchg_long_entry = generate_atomic_cmpxchg_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
2947 StubRoutines::_atomic_add_ptr_entry = StubRoutines::_atomic_add_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 StubRoutines::_fence_entry = generate_fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 #endif // COMPILER2 !=> _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2950
a61af66fc99e Initial load
duke
parents:
diff changeset
2951 StubRoutines::Sparc::_partial_subtype_check = generate_partial_subtype_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
2952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2953
a61af66fc99e Initial load
duke
parents:
diff changeset
2954
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 void generate_all() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 // Generates all stubs and initializes the entry points
a61af66fc99e Initial load
duke
parents:
diff changeset
2957
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 // These entry points require SharedInfo::stack0 to be set up in non-core builds
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 StubRoutines::_throw_AbstractMethodError_entry = generate_throw_exception("AbstractMethodError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_AbstractMethodError), false);
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
2960 StubRoutines::_throw_IncompatibleClassChangeError_entry= generate_throw_exception("IncompatibleClassChangeError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_IncompatibleClassChangeError), false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 StubRoutines::_throw_ArithmeticException_entry = generate_throw_exception("ArithmeticException throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_ArithmeticException), true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2962 StubRoutines::_throw_NullPointerException_entry = generate_throw_exception("NullPointerException throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException), true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2963 StubRoutines::_throw_NullPointerException_at_call_entry= generate_throw_exception("NullPointerException at call throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException_at_call), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 StubRoutines::_throw_StackOverflowError_entry = generate_throw_exception("StackOverflowError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2965
a61af66fc99e Initial load
duke
parents:
diff changeset
2966 StubRoutines::_handler_for_unsafe_access_entry =
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 generate_handler_for_unsafe_access();
a61af66fc99e Initial load
duke
parents:
diff changeset
2968
a61af66fc99e Initial load
duke
parents:
diff changeset
2969 // support for verify_oop (must happen after universe_init)
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 StubRoutines::_verify_oop_subroutine_entry = generate_verify_oop_subroutine();
a61af66fc99e Initial load
duke
parents:
diff changeset
2971
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 // arraycopy stubs used by compilers
a61af66fc99e Initial load
duke
parents:
diff changeset
2973 generate_arraycopy_stubs();
a61af66fc99e Initial load
duke
parents:
diff changeset
2974 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2975
a61af66fc99e Initial load
duke
parents:
diff changeset
2976
a61af66fc99e Initial load
duke
parents:
diff changeset
2977 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2979 // replace the standard masm with a special one:
a61af66fc99e Initial load
duke
parents:
diff changeset
2980 _masm = new MacroAssembler(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
2981
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 _stub_count = !all ? 0x100 : 0x200;
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 if (all) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2984 generate_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
2985 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 generate_initial();
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2988
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 // make sure this stub is available for all local calls
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 if (_atomic_add_stub.is_unbound()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2991 // generate a second time, if necessary
a61af66fc99e Initial load
duke
parents:
diff changeset
2992 (void) generate_atomic_add();
a61af66fc99e Initial load
duke
parents:
diff changeset
2993 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2995
a61af66fc99e Initial load
duke
parents:
diff changeset
2996
a61af66fc99e Initial load
duke
parents:
diff changeset
2997 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
2998 int _stub_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 void stub_prolog(StubCodeDesc* cdesc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 # ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 // put extra information in the stub code, to make it more readable
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3003 // Write the high part of the address
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 // [RGV] Check if there is a dependency on the size of this prolog
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 __ emit_data((intptr_t)cdesc >> 32, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
3006 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 __ emit_data((intptr_t)cdesc, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
3008 __ emit_data(++_stub_count, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
3009 # endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3010 align(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
3011 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3012
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 void align(bool at_header = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3014 // %%%%% move this constant somewhere else
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 // UltraSPARC cache line size is 8 instructions:
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 const unsigned int icache_line_size = 32;
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 const unsigned int icache_half_line_size = 16;
a61af66fc99e Initial load
duke
parents:
diff changeset
3018
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 if (at_header) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 while ((intptr_t)(__ pc()) % icache_line_size != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3021 __ emit_data(0, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 while ((intptr_t)(__ pc()) % icache_half_line_size != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3028 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3029
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 }; // end class declaration
a61af66fc99e Initial load
duke
parents:
diff changeset
3031
a61af66fc99e Initial load
duke
parents:
diff changeset
3032
a61af66fc99e Initial load
duke
parents:
diff changeset
3033 address StubGenerator::disjoint_byte_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 address StubGenerator::disjoint_short_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3035 address StubGenerator::disjoint_int_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3036 address StubGenerator::disjoint_long_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 address StubGenerator::disjoint_oop_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3038
a61af66fc99e Initial load
duke
parents:
diff changeset
3039 address StubGenerator::byte_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3040 address StubGenerator::short_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3041 address StubGenerator::int_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 address StubGenerator::long_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 address StubGenerator::oop_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3044
a61af66fc99e Initial load
duke
parents:
diff changeset
3045 address StubGenerator::checkcast_copy_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3046
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 void StubGenerator_generate(CodeBuffer* code, bool all) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 StubGenerator g(code, all);
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 }