annotate src/os_cpu/linux_x86/vm/copy_linux_x86.inline.hpp @ 1603:d93949c5bdcc

6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86 Summary: Modify assembler code to check for 0 count for all copy routines. Reviewed-by: never, ysr, jcoomes
author kvn
date Thu, 10 Jun 2010 13:04:20 -0700
parents c18cbe5936b8
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2003, 2004, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
27 (void)memmove(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #else
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
29 // Includes a zero-count check.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 intx temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 __asm__ volatile(" testl %6,%6 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
32 " jz 7f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
33 " cmpl %4,%5 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
34 " leal -4(%4,%6,4),%3;"
a61af66fc99e Initial load
duke
parents:
diff changeset
35 " jbe 1f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
36 " cmpl %7,%5 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
37 " jbe 4f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
38 "1: cmpl $32,%6 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
39 " ja 3f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
40 " subl %4,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
41 "2: movl (%4),%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
42 " movl %7,(%5,%4,1) ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
43 " addl $4,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
44 " subl $1,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
45 " jnz 2b ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
46 " jmp 7f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
47 "3: rep; smovl ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
48 " jmp 7f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
49 "4: cmpl $32,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
50 " movl %7,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
51 " leal -4(%5,%6,4),%1;"
a61af66fc99e Initial load
duke
parents:
diff changeset
52 " ja 6f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
53 " subl %4,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
54 "5: movl (%4),%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
55 " movl %7,(%5,%4,1) ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
56 " subl $4,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
57 " subl $1,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
58 " jnz 5b ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
59 " jmp 7f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
60 "6: std ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
61 " rep; smovl ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
62 " cld ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
63 "7: nop "
a61af66fc99e Initial load
duke
parents:
diff changeset
64 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
65 : "0" (from), "1" (to), "2" (count), "3" (temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 : "memory", "flags");
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
72 switch (count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 case 8: to[7] = from[7];
a61af66fc99e Initial load
duke
parents:
diff changeset
74 case 7: to[6] = from[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
75 case 6: to[5] = from[5];
a61af66fc99e Initial load
duke
parents:
diff changeset
76 case 5: to[4] = from[4];
a61af66fc99e Initial load
duke
parents:
diff changeset
77 case 4: to[3] = from[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case 3: to[2] = from[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
79 case 2: to[1] = from[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
80 case 1: to[0] = from[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
81 case 0: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 (void)memcpy(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 #else
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
87 // Includes a zero-count check.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 intx temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 __asm__ volatile(" testl %6,%6 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
90 " jz 3f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
91 " cmpl $32,%6 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
92 " ja 2f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
93 " subl %4,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
94 "1: movl (%4),%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
95 " movl %7,(%5,%4,1);"
a61af66fc99e Initial load
duke
parents:
diff changeset
96 " addl $4,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
97 " subl $1,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
98 " jnz 1b ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
99 " jmp 3f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
100 "2: rep; smovl ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
101 "3: nop "
a61af66fc99e Initial load
duke
parents:
diff changeset
102 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
103 : "0" (from), "1" (to), "2" (count), "3" (temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
104 : "memory", "cc");
a61af66fc99e Initial load
duke
parents:
diff changeset
105 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static void pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
110 switch (count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 case 8: to[7] = from[7];
a61af66fc99e Initial load
duke
parents:
diff changeset
112 case 7: to[6] = from[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
113 case 6: to[5] = from[5];
a61af66fc99e Initial load
duke
parents:
diff changeset
114 case 5: to[4] = from[4];
a61af66fc99e Initial load
duke
parents:
diff changeset
115 case 4: to[3] = from[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
116 case 3: to[2] = from[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
117 case 2: to[1] = from[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
118 case 1: to[0] = from[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
119 case 0: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
121 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 *to++ = *from++;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // pd_disjoint_words is word-atomic in this implementation.
a61af66fc99e Initial load
duke
parents:
diff changeset
128 pd_disjoint_words(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 static void pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
133 pd_conjoint_words(from, to, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 static void pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 pd_disjoint_words(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 static void pd_conjoint_bytes(void* from, void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
142 (void)memmove(to, from, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 #else
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
144 // Includes a zero-count check.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 intx temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 __asm__ volatile(" testl %6,%6 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
147 " jz 13f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
148 " cmpl %4,%5 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
149 " leal -1(%4,%6),%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
150 " jbe 1f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
151 " cmpl %7,%5 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
152 " jbe 8f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
153 "1: cmpl $3,%6 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
154 " jbe 6f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
155 " movl %6,%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
156 " movl $4,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
157 " subl %4,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
158 " andl $3,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
159 " jz 2f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
160 " subl %6,%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
161 " rep; smovb ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
162 "2: movl %7,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
163 " shrl $2,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
164 " jz 5f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
165 " cmpl $32,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
166 " ja 4f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
167 " subl %4,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
168 "3: movl (%4),%%edx ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
169 " movl %%edx,(%5,%4,1);"
a61af66fc99e Initial load
duke
parents:
diff changeset
170 " addl $4,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
171 " subl $1,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
172 " jnz 3b ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
173 " addl %4,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
174 " jmp 5f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
175 "4: rep; smovl ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
176 "5: movl %7,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
177 " andl $3,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
178 " jz 13f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
179 "6: xorl %7,%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
180 "7: movb (%4,%7,1),%%dl ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
181 " movb %%dl,(%5,%7,1) ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
182 " addl $1,%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
183 " subl $1,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
184 " jnz 7b ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
185 " jmp 13f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
186 "8: std ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
187 " cmpl $12,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
188 " ja 9f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
189 " movl %7,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
190 " leal -1(%6,%5),%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
191 " jmp 11f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
192 "9: xchgl %3,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
193 " movl %6,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
194 " addl $1,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
195 " leal -1(%7,%5),%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
196 " andl $3,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
197 " jz 10f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
198 " subl %6,%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
199 " rep; smovb ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
200 "10: movl %7,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
201 " subl $3,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
202 " shrl $2,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
203 " subl $3,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
204 " rep; smovl ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
205 " andl $3,%3 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
206 " jz 12f ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
207 " movl %7,%2 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
208 " addl $3,%0 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
209 " addl $3,%1 ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
210 "11: rep; smovb ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
211 "12: cld ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
212 "13: nop ;"
a61af66fc99e Initial load
duke
parents:
diff changeset
213 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
214 : "0" (from), "1" (to), "2" (count), "3" (temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
215 : "memory", "flags", "%edx");
a61af66fc99e Initial load
duke
parents:
diff changeset
216 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 static void pd_conjoint_bytes_atomic(void* from, void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 pd_conjoint_bytes(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 static void pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _Copy_conjoint_jshorts_atomic(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 static void pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
229 _Copy_conjoint_jints_atomic(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
231 assert(HeapWordSize == BytesPerInt, "heapwords and jints must be the same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // pd_conjoint_words is word-atomic in this implementation.
a61af66fc99e Initial load
duke
parents:
diff changeset
233 pd_conjoint_words((HeapWord*)from, (HeapWord*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 static void pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
239 _Copy_conjoint_jlongs_atomic(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // Guarantee use of fild/fistp or xmm regs via some asm code, because compilers won't.
a61af66fc99e Initial load
duke
parents:
diff changeset
242 if (from > to) {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 __asm__ volatile("fildll (%0); fistpll (%1)"
a61af66fc99e Initial load
duke
parents:
diff changeset
245 :
a61af66fc99e Initial load
duke
parents:
diff changeset
246 : "r" (from), "r" (to)
a61af66fc99e Initial load
duke
parents:
diff changeset
247 : "memory" );
a61af66fc99e Initial load
duke
parents:
diff changeset
248 ++from;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 ++to;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 __asm__ volatile("fildll (%0,%2,8); fistpll (%1,%2,8)"
a61af66fc99e Initial load
duke
parents:
diff changeset
254 :
a61af66fc99e Initial load
duke
parents:
diff changeset
255 : "r" (from), "r" (to), "r" (count)
a61af66fc99e Initial load
duke
parents:
diff changeset
256 : "memory" );
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 static void pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
264 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
265 _Copy_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
267 assert(HeapWordSize == BytesPerOop, "heapwords and oops must be the same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // pd_conjoint_words is word-atomic in this implementation.
a61af66fc99e Initial load
duke
parents:
diff changeset
269 pd_conjoint_words((HeapWord*)from, (HeapWord*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 static void pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 _Copy_arrayof_conjoint_bytes(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 static void pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 _Copy_arrayof_conjoint_jshorts(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 static void pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
283 _Copy_arrayof_conjoint_jints(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
285 pd_conjoint_jints_atomic((jint*)from, (jint*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 static void pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
290 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
291 _Copy_arrayof_conjoint_jlongs(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
293 pd_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 static void pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
299 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
300 _Copy_arrayof_conjoint_jlongs(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
302 pd_conjoint_oops_atomic((oop*)from, (oop*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }