We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020c900 commit 6b96bb6Copy full SHA for 6b96bb6
src/hotspot/cpu/zero/vm_version_zero.cpp
@@ -145,6 +145,12 @@ void VM_Version::initialize_cpu_information(void) {
145
return;
146
}
147
148
+ // Supports 8-byte cmpxchg with compiler built-ins.
149
+ // These built-ins are supposed to be implemented on
150
+ // all platforms (even if not natively), so we claim
151
+ // the support unconditionally.
152
+ _supports_cx8 = true;
153
+
154
_no_of_cores = os::processor_count();
155
_no_of_threads = _no_of_cores;
156
_no_of_sockets = _no_of_cores;
0 commit comments