annotate src/os_cpu/windows_x86/vm/orderAccess_windows_x86.inline.hpp @ 4837:eff609af17d7

7127706: G1: re-enable survivors during the initial-mark pause Summary: Re-enable survivors during the initial-mark pause. Afterwards, the concurrent marking threads have to scan them and mark everything reachable from them. The next GC will have to wait for the survivors to be scanned. Reviewed-by: brutisso, johnc
author tonyp
date Wed, 25 Jan 2012 12:58:23 -0500
parents 4fc084dac61e
children 63e54c37ac64
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
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: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
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: 844
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: 1711
diff changeset
25 #ifndef OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
26 #define OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
27
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
28 #include "runtime/atomic.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
29 #include "runtime/orderAccess.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
30 #include "vm_version_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 #pragma warning(disable: 4035) // Disables warnings reporting missing return statement
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Implementation of class OrderAccess.
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 inline void OrderAccess::loadload() { acquire(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
37 inline void OrderAccess::storestore() { release(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 inline void OrderAccess::loadstore() { acquire(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
39 inline void OrderAccess::storeload() { fence(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 inline void OrderAccess::acquire() {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 #ifndef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
43 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 mov eax, dword ptr [esp];
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #endif // !AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 inline void OrderAccess::release() {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // A volatile store has release semantics.
1711
a6bff45449bc 6973570: OrderAccess::storestore() scales poorly on multi-socket x64 and sparc: cache-line ping-ponging
ysr
parents: 1552
diff changeset
51 volatile jint local_dummy = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 inline void OrderAccess::fence() {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 #ifdef AMD64
671
d0994e5bebce 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 0
diff changeset
56 StubRoutines_fence();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
58 if (os::is_MP()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 lock add dword ptr [esp], 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 inline jbyte OrderAccess::load_acquire(volatile jbyte* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 inline jshort OrderAccess::load_acquire(volatile jshort* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 inline jint OrderAccess::load_acquire(volatile jint* p) { return *p; }
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
69 inline jlong OrderAccess::load_acquire(volatile jlong* p) { return Atomic::load(p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
70 inline jubyte OrderAccess::load_acquire(volatile jubyte* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
71 inline jushort OrderAccess::load_acquire(volatile jushort* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 inline juint OrderAccess::load_acquire(volatile juint* p) { return *p; }
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
73 inline julong OrderAccess::load_acquire(volatile julong* p) { return Atomic::load((volatile jlong*)p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 inline jfloat OrderAccess::load_acquire(volatile jfloat* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 inline jdouble OrderAccess::load_acquire(volatile jdouble* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 inline intptr_t OrderAccess::load_ptr_acquire(volatile intptr_t* p) { return *p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 inline void* OrderAccess::load_ptr_acquire(volatile void* p) { return *(void* volatile *)p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 inline void* OrderAccess::load_ptr_acquire(const volatile void* p) { return *(void* const volatile *)p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 inline void OrderAccess::release_store(volatile jbyte* p, jbyte v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 inline void OrderAccess::release_store(volatile jshort* p, jshort v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 inline void OrderAccess::release_store(volatile jint* p, jint v) { *p = v; }
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
84 inline void OrderAccess::release_store(volatile jlong* p, jlong v) { Atomic::store(v, p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85 inline void OrderAccess::release_store(volatile jubyte* p, jubyte v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 inline void OrderAccess::release_store(volatile jushort* p, jushort v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 inline void OrderAccess::release_store(volatile juint* p, juint v) { *p = v; }
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
88 inline void OrderAccess::release_store(volatile julong* p, julong v) { Atomic::store((jlong)v, (volatile jlong*)p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 inline void OrderAccess::release_store(volatile jfloat* p, jfloat v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 inline void OrderAccess::release_store(volatile jdouble* p, jdouble v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 inline void OrderAccess::release_store_ptr(volatile intptr_t* p, intptr_t v) { *p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 inline void OrderAccess::release_store_ptr(volatile void* p, void* v) { *(void* volatile *)p = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 inline void OrderAccess::store_fence(jbyte* p, jbyte v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
97 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
99 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 mov edx, p;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 mov al, v;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 xchg al, byte ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 inline void OrderAccess::store_fence(jshort* p, jshort v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
109 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
111 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 mov edx, p;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 mov ax, v;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 xchg ax, word ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 inline void OrderAccess::store_fence(jint* p, jint v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
121 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
123 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 mov edx, p;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 mov eax, v;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 xchg eax, dword ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 inline void OrderAccess::store_fence(jlong* p, jlong v) { *p = v; fence(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 inline void OrderAccess::store_fence(jubyte* p, jubyte v) { store_fence((jbyte*)p, (jbyte)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 inline void OrderAccess::store_fence(jushort* p, jushort v) { store_fence((jshort*)p, (jshort)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 inline void OrderAccess::store_fence(juint* p, juint v) { store_fence((jint*)p, (jint)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 inline void OrderAccess::store_fence(julong* p, julong v) { store_fence((jlong*)p, (jlong)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
136 inline void OrderAccess::store_fence(jfloat* p, jfloat v) { *p = v; fence(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 inline void OrderAccess::store_fence(jdouble* p, jdouble v) { *p = v; fence(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 inline void OrderAccess::store_ptr_fence(intptr_t* p, intptr_t v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
141 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
143 store_fence((jint*)p, (jint)v);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 inline void OrderAccess::store_ptr_fence(void** p, void* v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
149 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
150 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
151 store_fence((jint*)p, (jint)v);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // Must duplicate definitions instead of calling store_fence because we don't want to cast away volatile.
a61af66fc99e Initial load
duke
parents:
diff changeset
156 inline void OrderAccess::release_store_fence(volatile jbyte* p, jbyte v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
158 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
160 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 mov edx, p;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 mov al, v;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 xchg al, byte ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 inline void OrderAccess::release_store_fence(volatile jshort* p, jshort v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
170 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
171 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
172 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 mov edx, p;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 mov ax, v;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 xchg ax, word ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 inline void OrderAccess::release_store_fence(volatile jint* p, jint v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
182 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
183 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
184 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 mov edx, p;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 mov eax, v;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 xchg eax, dword ptr [edx];
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
192 inline void OrderAccess::release_store_fence(volatile jlong* p, jlong v) { release_store(p, v); fence(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 inline void OrderAccess::release_store_fence(volatile jubyte* p, jubyte v) { release_store_fence((volatile jbyte*)p, (jbyte)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 inline void OrderAccess::release_store_fence(volatile jushort* p, jushort v) { release_store_fence((volatile jshort*)p, (jshort)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 inline void OrderAccess::release_store_fence(volatile juint* p, juint v) { release_store_fence((volatile jint*)p, (jint)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 inline void OrderAccess::release_store_fence(volatile julong* p, julong v) { release_store_fence((volatile jlong*)p, (jlong)v); }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 inline void OrderAccess::release_store_fence(volatile jfloat* p, jfloat v) { *p = v; fence(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 inline void OrderAccess::release_store_fence(volatile jdouble* p, jdouble v) { *p = v; fence(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 inline void OrderAccess::release_store_ptr_fence(volatile intptr_t* p, intptr_t v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
203 *p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
204 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
205 release_store_fence((volatile jint*)p, (jint)v);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 inline void OrderAccess::release_store_ptr_fence(volatile void* p, void* v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
211 *(void* volatile *)p = v; fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
213 release_store_fence((volatile jint*)p, (jint)v);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 #pragma warning(default: 4035) // Enables warnings reporting missing return statement
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
218
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1711
diff changeset
219 #endif // OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP