annotate src/cpu/sparc/vm/copy_sparc.hpp @ 21125:41f048caa3dd

Predefine value outside of COMPILERGRAAL
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Mon, 27 Apr 2015 18:36:16 +0200
parents 7f1743e1a14e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
4010
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
2 * Copyright (c) 2003, 2011, 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: 196
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
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: 196
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: 1579
diff changeset
25 #ifndef CPU_SPARC_VM_COPY_SPARC_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1579
diff changeset
26 #define CPU_SPARC_VM_COPY_SPARC_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1579
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Inline functions for memory copy and fill.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 (void)memmove(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
32 }
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 switch (count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 case 8: to[7] = from[7];
a61af66fc99e Initial load
duke
parents:
diff changeset
37 case 7: to[6] = from[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
38 case 6: to[5] = from[5];
a61af66fc99e Initial load
duke
parents:
diff changeset
39 case 5: to[4] = from[4];
a61af66fc99e Initial load
duke
parents:
diff changeset
40 case 4: to[3] = from[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
41 case 3: to[2] = from[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
42 case 2: to[1] = from[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
43 case 1: to[0] = from[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
44 case 0: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 default: (void)memcpy(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static void pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 switch (count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 case 8: to[7] = from[7];
a61af66fc99e Initial load
duke
parents:
diff changeset
53 case 7: to[6] = from[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
54 case 6: to[5] = from[5];
a61af66fc99e Initial load
duke
parents:
diff changeset
55 case 5: to[4] = from[4];
a61af66fc99e Initial load
duke
parents:
diff changeset
56 case 4: to[3] = from[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
57 case 3: to[2] = from[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
58 case 2: to[1] = from[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
59 case 1: to[0] = from[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
60 case 0: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 default: while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 *to++ = *from++;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static void pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 (void)memmove(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static void pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 pd_disjoint_words(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static void pd_conjoint_bytes(void* from, void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 (void)memmove(to, from, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static void pd_conjoint_bytes_atomic(void* from, void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 (void)memmove(to, from, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static void pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) {
4010
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
85 if (from > to) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
86 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
87 // Copy forwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
88 *to++ = *from++;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
89 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
90 } else {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
91 from += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
92 to += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
93 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
94 // Copy backwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
95 *to-- = *from--;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
96 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
97 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 static void pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) {
4010
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
101 if (from > to) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
102 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
103 // Copy forwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
104 *to++ = *from++;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
105 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
106 } else {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
107 from += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
108 to += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
109 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
110 // Copy backwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
111 *to-- = *from--;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
112 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 3892
diff changeset
113 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 static void pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
118 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 pd_conjoint_oops_atomic((oop*)from, (oop*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Guarantee use of ldd/std via some asm code, because compiler won't.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // See solaris_sparc.il.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 _Copy_conjoint_jlongs_atomic(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static void pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Do better than this: inline memmove body NEEDS CLEANUP
a61af66fc99e Initial load
duke
parents:
diff changeset
129 if (from > to) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Copy forwards
a61af66fc99e Initial load
duke
parents:
diff changeset
132 *to++ = *from++;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 from += count - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 to += count - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Copy backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
139 *to-- = *from--;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 static void pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 pd_conjoint_bytes_atomic(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 static void pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 pd_conjoint_jshorts_atomic((jshort*)from, (jshort*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 static void pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 pd_conjoint_jints_atomic((jint*)from, (jint*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 static void pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 pd_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 static void pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 pd_conjoint_oops_atomic((oop*)from, (oop*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
165 #ifdef _LP64
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
166 guarantee(mask_bits((uintptr_t)tohw, right_n_bits(LogBytesPerLong)) == 0,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
167 "unaligned fill words");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
168 julong* to = (julong*)tohw;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
169 julong v = ((julong)value << 32) | value;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
170 while (count-- > 0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
171 *to++ = v;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
172 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
173 #else // _LP64
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
174 juint* to = (juint*)tohw;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
175 while (count-- > 0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
176 *to++ = value;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
177 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
178 #endif // _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
181 typedef void (*_zero_Fn)(HeapWord* to, size_t count);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
182
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) {
1571
2d127394260e 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 196
diff changeset
184 assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
186 if (value == 0 && UseBlockZeroing &&
17961
7f1743e1a14e 8043206: Fix signed vs. unsigned comparison warning in copy_sparc.hpp
mikael
parents: 4010
diff changeset
187 (count > (size_t)(BlockZeroingLowLimit >> LogHeapWordSize))) {
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
188 // Call it only when block zeroing is used
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
189 ((_zero_Fn)StubRoutines::zero_aligned_words())(tohw, count);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
190 } else {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
191 julong* to = (julong*)tohw;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 julong v = ((julong)value << 32) | value;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // If count is odd, odd will be equal to 1 on 32-bit platform
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // and be equal to 0 on 64-bit platform.
a61af66fc99e Initial load
duke
parents:
diff changeset
195 size_t odd = count % (BytesPerLong / HeapWordSize) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
196
1571
2d127394260e 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 196
diff changeset
197 size_t aligned_count = align_object_offset(count - odd) / HeapWordsPerLong;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
198 julong* end = ((julong*)tohw) + aligned_count - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 while (to <= end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 DEBUG_ONLY(count -= BytesPerLong / HeapWordSize ;)
a61af66fc99e Initial load
duke
parents:
diff changeset
201 *to++ = v;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 assert(count == odd, "bad bounds on loop filling to aligned words");
a61af66fc99e Initial load
duke
parents:
diff changeset
204 if (odd) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 *((juint*)to) = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 1972
diff changeset
208 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 static void pd_fill_to_bytes(void* to, size_t count, jubyte value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 (void)memset(to, value, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 static void pd_zero_to_words(HeapWord* tohw, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 pd_fill_to_words(tohw, count, 0);
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_zero_to_bytes(void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 (void)memset(to, 0, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1579
diff changeset
222
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1579
diff changeset
223 #endif // CPU_SPARC_VM_COPY_SPARC_HPP