annotate src/cpu/sparc/vm/stubGenerator_sparc.cpp @ 11034:e0c9a1d29eb4

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