annotate src/os_cpu/windows_x86/vm/copy_windows_x86.inline.hpp @ 14304:a2866d45e99e

8027454: Do not traverse string table during G1 remark when treating them as strong roots during initial mark Summary: Do not try to unlink string table entries unconditionally during remark. This is without side effects as the preceding initial mark always uses the string table as strong roots. Needs to be fixed with class unloading during concurrent mark. Reviewed-by: brutisso, mgerdin
author tschatzl
date Mon, 20 Jan 2014 11:47:29 +0100
parents 16f9fa2bf76c
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: 1972
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: 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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef OS_CPU_WINDOWS_X86_VM_COPY_WINDOWS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define OS_CPU_WINDOWS_X86_VM_COPY_WINDOWS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 (void)memmove(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
30 }
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
34 switch (count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 case 8: to[7] = from[7];
a61af66fc99e Initial load
duke
parents:
diff changeset
36 case 7: to[6] = from[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
37 case 6: to[5] = from[5];
a61af66fc99e Initial load
duke
parents:
diff changeset
38 case 5: to[4] = from[4];
a61af66fc99e Initial load
duke
parents:
diff changeset
39 case 4: to[3] = from[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
40 case 3: to[2] = from[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
41 case 2: to[1] = from[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
42 case 1: to[0] = from[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
43 case 0: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
45 (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 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
49 (void)memcpy(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 static void pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 switch (count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 case 8: to[7] = from[7];
a61af66fc99e Initial load
duke
parents:
diff changeset
56 case 7: to[6] = from[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
57 case 6: to[5] = from[5];
a61af66fc99e Initial load
duke
parents:
diff changeset
58 case 5: to[4] = from[4];
a61af66fc99e Initial load
duke
parents:
diff changeset
59 case 4: to[3] = from[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
60 case 3: to[2] = from[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
61 case 2: to[1] = from[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
62 case 1: to[0] = from[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
63 case 0: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 default: while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 *to++ = *from++;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 static void pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 (void)memmove(to, from, count * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static void pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 pd_disjoint_words(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static void pd_conjoint_bytes(void* from, void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 (void)memmove(to, from, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static void pd_conjoint_bytes_atomic(void* from, void* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 pd_conjoint_bytes(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 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: 1972
diff changeset
88 if (from > to) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
89 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
90 // Copy forwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
91 *to++ = *from++;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
92 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
93 } else {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
94 from += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
95 to += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
96 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
97 // Copy backwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
98 *to-- = *from--;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
99 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
100 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 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: 1972
diff changeset
104 if (from > to) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
105 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
106 // Copy forwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
107 *to++ = *from++;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
108 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
109 } else {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
110 from += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
111 to += count - 1;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
112 while (count-- > 0) {
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
113 // Copy backwards
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
114 *to-- = *from--;
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
115 }
16f9fa2bf76c 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 1972
diff changeset
116 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static void pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
121 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
122 pd_conjoint_oops_atomic((oop*)from, (oop*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Guarantee use of fild/fistp or xmm regs via some asm code, because compilers won't.
a61af66fc99e Initial load
duke
parents:
diff changeset
125 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 mov eax, from;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 mov edx, to;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 mov ecx, count;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 cmp eax, edx;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 jbe downtest;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 jmp uptest;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 up:
a61af66fc99e Initial load
duke
parents:
diff changeset
133 fild qword ptr [eax];
a61af66fc99e Initial load
duke
parents:
diff changeset
134 fistp qword ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
135 add eax, 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 add edx, 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 uptest:
a61af66fc99e Initial load
duke
parents:
diff changeset
138 sub ecx, 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 jge up;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 jmp done;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 down:
a61af66fc99e Initial load
duke
parents:
diff changeset
142 fild qword ptr [eax][ecx*8];
a61af66fc99e Initial load
duke
parents:
diff changeset
143 fistp qword ptr [edx][ecx*8];
a61af66fc99e Initial load
duke
parents:
diff changeset
144 downtest:
a61af66fc99e Initial load
duke
parents:
diff changeset
145 sub ecx, 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 jge down;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 done:;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 #endif // AMD64
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_conjoint_oops_atomic(oop* from, oop* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Do better than this: inline memmove body NEEDS CLEANUP
a61af66fc99e Initial load
duke
parents:
diff changeset
154 if (from > to) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Copy forwards
a61af66fc99e Initial load
duke
parents:
diff changeset
157 *to++ = *from++;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 from += count - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 to += count - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 while (count-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // Copy backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
164 *to-- = *from--;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 static void pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
171 pd_conjoint_bytes_atomic(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
173 pd_conjoint_bytes(from, to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 static void pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 pd_conjoint_jshorts_atomic((jshort*)from, (jshort*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 static void pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 pd_conjoint_jints_atomic((jint*)from, (jint*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 static void pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 pd_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 static void pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 pd_conjoint_oops_atomic((oop*)from, (oop*)to, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
192
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
193 #endif // OS_CPU_WINDOWS_X86_VM_COPY_WINDOWS_X86_INLINE_HPP