Skip to content

Commit c75c388

Browse files
author
David Holmes
committedNov 23, 2023
8318776: Require supports_cx8 to always be true
Reviewed-by: eosterlund, shade, dcubed
1 parent 14557e7 commit c75c388

39 files changed

+31
-444
lines changed
 

‎make/data/hotspot-symbols/symbols-unix

-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ JVM_SetStackWalkContinuation
203203
JVM_SetThreadPriority
204204
JVM_SleepNanos
205205
JVM_StartThread
206-
JVM_SupportsCX8
207206
JVM_TotalMemory
208207
JVM_UnloadLibrary
209208
JVM_WaitForReferencePendingList

‎src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1511,7 +1511,6 @@ void LIR_Assembler::casl(Register addr, Register newval, Register cmpval) {
15111511

15121512

15131513
void LIR_Assembler::emit_compare_and_swap(LIR_OpCompareAndSwap* op) {
1514-
assert(VM_Version::supports_cx8(), "wrong machine");
15151514
Register addr;
15161515
if (op->addr()->is_register()) {
15171516
addr = as_reg(op->addr());

‎src/hotspot/cpu/aarch64/vm_version_aarch64.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ static SpinWait get_spin_wait_desc() {
6868
}
6969

7070
void VM_Version::initialize() {
71-
_supports_cx8 = true;
7271
_supports_atomic_getset4 = true;
7372
_supports_atomic_getadd4 = true;
7473
_supports_atomic_getset8 = true;

‎src/hotspot/cpu/arm/c1_LIRAssembler_arm.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,6 @@ void LIR_Assembler::emit_compare_and_swap(LIR_OpCompareAndSwap* op) {
13851385
__ mov(dest, 1, eq);
13861386
__ mov(dest, 0, ne);
13871387
} else if (op->code() == lir_cas_long) {
1388-
assert(VM_Version::supports_cx8(), "wrong machine");
13891388
Register cmp_value_lo = op->cmp_value()->as_register_lo();
13901389
Register cmp_value_hi = op->cmp_value()->as_register_hi();
13911390
Register new_value_lo = op->new_value()->as_register_lo();

‎src/hotspot/cpu/arm/vm_version_arm_32.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,16 @@ void VM_Version::early_initialize() {
128128
// use proper dmb instruction
129129
get_os_cpu_info();
130130

131+
// Future cleanup: if SUPPORTS_NATIVE_CX8 is defined then we should not need
132+
// any alternative solutions. At present this allows for the theoretical
133+
// possibility of building for ARMv7 and then running on ARMv5 or 6. If that
134+
// is impossible then the ARM port folk should clean this up.
131135
_kuser_helper_version = *(int*)KUSER_HELPER_VERSION_ADDR;
136+
#ifndef SUPPORTS_NATIVE_CX8
132137
// armv7 has the ldrexd instruction that can be used to implement cx8
133138
// armv5 with linux >= 3.1 can use kernel helper routine
134139
_supports_cx8 = (supports_ldrexd() || supports_kuser_cmpxchg64());
140+
#endif
135141
}
136142

137143
void VM_Version::initialize() {
@@ -278,7 +284,7 @@ void VM_Version::initialize() {
278284
_supports_atomic_getadd8 = supports_ldrexd();
279285

280286
#ifdef COMPILER2
281-
assert(_supports_cx8 && _supports_atomic_getset4 && _supports_atomic_getadd4
287+
assert(supports_cx8() && _supports_atomic_getset4 && _supports_atomic_getadd4
282288
&& _supports_atomic_getset8 && _supports_atomic_getadd8, "C2: atomic operations must be supported");
283289
#endif
284290
char buf[512];

‎src/hotspot/cpu/ppc/vm_version_ppc.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,6 @@ void VM_Version::initialize() {
200200
print_features();
201201
}
202202

203-
// PPC64 supports 8-byte compare-exchange operations (see Atomic::cmpxchg)
204-
// and 'atomic long memory ops' (see Unsafe_GetLongVolatile).
205-
_supports_cx8 = true;
206-
207203
// Used by C1.
208204
_supports_atomic_getset4 = true;
209205
_supports_atomic_getadd4 = true;

‎src/hotspot/cpu/riscv/c1_LIRAssembler_riscv.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,6 @@ void LIR_Assembler::emit_opTypeCheck(LIR_OpTypeCheck* op) {
12511251
}
12521252

12531253
void LIR_Assembler::emit_compare_and_swap(LIR_OpCompareAndSwap* op) {
1254-
assert(VM_Version::supports_cx8(), "wrong machine");
12551254
Register addr;
12561255
if (op->addr()->is_register()) {
12571256
addr = as_reg(op->addr());

‎src/hotspot/cpu/riscv/vm_version_riscv.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ RV_FEATURE_FLAGS(ADD_RV_FEATURE_IN_LIST)
4646
nullptr};
4747

4848
void VM_Version::initialize() {
49-
_supports_cx8 = true;
5049
_supports_atomic_getset4 = true;
5150
_supports_atomic_getadd4 = true;
5251
_supports_atomic_getset8 = true;

‎src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -2670,7 +2670,6 @@ void LIR_Assembler::emit_compare_and_swap(LIR_OpCompareAndSwap* op) {
26702670
Register addr = op->addr()->as_pointer_register();
26712671
Register t1_cmp = Z_R1_scratch;
26722672
if (op->code() == lir_cas_long) {
2673-
assert(VM_Version::supports_cx8(), "wrong machine");
26742673
Register cmp_value_lo = op->cmp_value()->as_register_lo();
26752674
Register new_value_lo = op->new_value()->as_register_lo();
26762675
__ z_lgr(t1_cmp, cmp_value_lo);

‎src/hotspot/cpu/s390/vm_version_s390.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,6 @@ void VM_Version::initialize() {
287287
FLAG_SET_DEFAULT(UsePopCountInstruction, true);
288288
}
289289

290-
// z/Architecture supports 8-byte compare-exchange operations
291-
// (see Atomic::cmpxchg)
292-
// and 'atomic long memory ops' (see Unsafe_GetLongVolatile).
293-
_supports_cx8 = true;
294-
295290
_supports_atomic_getadd4 = VM_Version::has_LoadAndALUAtomicV1();
296291
_supports_atomic_getadd8 = VM_Version::has_LoadAndALUAtomicV1();
297292

‎src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1929,7 +1929,7 @@ void LIR_Assembler::emit_opTypeCheck(LIR_OpTypeCheck* op) {
19291929

19301930

19311931
void LIR_Assembler::emit_compare_and_swap(LIR_OpCompareAndSwap* op) {
1932-
if (LP64_ONLY(false &&) op->code() == lir_cas_long && VM_Version::supports_cx8()) {
1932+
if (LP64_ONLY(false &&) op->code() == lir_cas_long) {
19331933
assert(op->cmp_value()->as_register_lo() == rax, "wrong register");
19341934
assert(op->cmp_value()->as_register_hi() == rdx, "wrong register");
19351935
assert(op->new_value()->as_register_lo() == rbx, "wrong register");

‎src/hotspot/cpu/x86/gc/shenandoah/shenandoah_x86_64.ad

-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ instruct compareAndSwapP_shenandoah(rRegI res,
3333
rax_RegP oldval, rRegP newval,
3434
rFlagsReg cr)
3535
%{
36-
predicate(VM_Version::supports_cx8());
3736
match(Set res (ShenandoahCompareAndSwapP mem_ptr (Binary oldval newval)));
3837
match(Set res (ShenandoahWeakCompareAndSwapP mem_ptr (Binary oldval newval)));
3938
effect(TEMP tmp1, TEMP tmp2, KILL cr, KILL oldval);
@@ -95,7 +94,6 @@ instruct compareAndExchangeP_shenandoah(memory mem_ptr,
9594
rRegP tmp1, rRegP tmp2,
9695
rFlagsReg cr)
9796
%{
98-
predicate(VM_Version::supports_cx8());
9997
match(Set oldval (ShenandoahCompareAndExchangeP mem_ptr (Binary oldval newval)));
10098
effect(KILL cr, TEMP tmp1, TEMP tmp2);
10199
ins_cost(1000);

‎src/hotspot/cpu/x86/vm_version_x86.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,6 @@ void VM_Version::get_processor_features() {
816816
_L1_data_cache_line_size = L1_line_size();
817817
}
818818

819-
_supports_cx8 = supports_cmpxchg8();
820819
// xchg and xadd instructions
821820
_supports_atomic_getset4 = true;
822821
_supports_atomic_getadd4 = true;
@@ -3236,4 +3235,3 @@ bool VM_Version::is_intrinsic_supported(vmIntrinsicID id) {
32363235
}
32373236
return true;
32383237
}
3239-

‎src/hotspot/cpu/x86/vm_version_x86.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,6 @@ class VM_Version : public Abstract_VM_Version {
643643
// Feature identification
644644
//
645645
static bool supports_cpuid() { return _features != 0; }
646-
static bool supports_cmpxchg8() { return (_features & CPU_CX8) != 0; }
647646
static bool supports_cmov() { return (_features & CPU_CMOV) != 0; }
648647
static bool supports_fxsr() { return (_features & CPU_FXSR) != 0; }
649648
static bool supports_ht() { return (_features & CPU_HT) != 0; }

‎src/hotspot/cpu/x86/x86.ad

-5
Original file line numberDiff line numberDiff line change
@@ -1510,9 +1510,6 @@ bool Matcher::match_rule_supported(int opcode) {
15101510
#ifdef _LP64
15111511
case Op_CompareAndSwapP:
15121512
#endif
1513-
if (!VM_Version::supports_cx8()) {
1514-
return false;
1515-
}
15161513
break;
15171514
case Op_StrIndexOf:
15181515
if (!UseSSE42Intrinsics) {
@@ -10119,5 +10116,3 @@ instruct DoubleClassCheck_reg_reg_vfpclass(rRegI dst, regD src, kReg ktmp, rFlag
1011910116
%}
1012010117
ins_pipe(pipe_slow);
1012110118
%}
10122-
10123-

‎src/hotspot/cpu/x86/x86_32.ad

-2
Original file line numberDiff line numberDiff line change
@@ -7281,7 +7281,6 @@ instruct castDD_PR( regDPR dst ) %{
72817281
// No flag versions for CompareAndSwap{P,I,L} because matcher can't match them
72827282

72837283
instruct compareAndSwapL( rRegI res, eSIRegP mem_ptr, eADXRegL oldval, eBCXRegL newval, eFlagsReg cr ) %{
7284-
predicate(VM_Version::supports_cx8());
72857284
match(Set res (CompareAndSwapL mem_ptr (Binary oldval newval)));
72867285
match(Set res (WeakCompareAndSwapL mem_ptr (Binary oldval newval)));
72877286
effect(KILL cr, KILL oldval);
@@ -7350,7 +7349,6 @@ instruct compareAndSwapI( rRegI res, pRegP mem_ptr, eAXRegI oldval, eCXRegI newv
73507349
%}
73517350

73527351
instruct compareAndExchangeL( eSIRegP mem_ptr, eADXRegL oldval, eBCXRegL newval, eFlagsReg cr ) %{
7353-
predicate(VM_Version::supports_cx8());
73547352
match(Set oldval (CompareAndExchangeL mem_ptr (Binary oldval newval)));
73557353
effect(KILL cr);
73567354
format %{ "CMPXCHG8 [$mem_ptr],$newval\t# If EDX:EAX==[$mem_ptr] Then store $newval into [$mem_ptr]\n\t" %}

‎src/hotspot/cpu/x86/x86_64.ad

+2-4
Original file line numberDiff line numberDiff line change
@@ -7174,7 +7174,7 @@ instruct compareAndSwapP(rRegI res,
71747174
rax_RegP oldval, rRegP newval,
71757175
rFlagsReg cr)
71767176
%{
7177-
predicate(VM_Version::supports_cx8() && n->as_LoadStore()->barrier_data() == 0);
7177+
predicate(n->as_LoadStore()->barrier_data() == 0);
71787178
match(Set res (CompareAndSwapP mem_ptr (Binary oldval newval)));
71797179
match(Set res (WeakCompareAndSwapP mem_ptr (Binary oldval newval)));
71807180
effect(KILL cr, KILL oldval);
@@ -7197,7 +7197,6 @@ instruct compareAndSwapL(rRegI res,
71977197
rax_RegL oldval, rRegL newval,
71987198
rFlagsReg cr)
71997199
%{
7200-
predicate(VM_Version::supports_cx8());
72017200
match(Set res (CompareAndSwapL mem_ptr (Binary oldval newval)));
72027201
match(Set res (WeakCompareAndSwapL mem_ptr (Binary oldval newval)));
72037202
effect(KILL cr, KILL oldval);
@@ -7358,7 +7357,6 @@ instruct compareAndExchangeL(
73587357
rax_RegL oldval, rRegL newval,
73597358
rFlagsReg cr)
73607359
%{
7361-
predicate(VM_Version::supports_cx8());
73627360
match(Set oldval (CompareAndExchangeL mem_ptr (Binary oldval newval)));
73637361
effect(KILL cr);
73647362

@@ -7392,7 +7390,7 @@ instruct compareAndExchangeP(
73927390
rax_RegP oldval, rRegP newval,
73937391
rFlagsReg cr)
73947392
%{
7395-
predicate(VM_Version::supports_cx8() && n->as_LoadStore()->barrier_data() == 0);
7393+
predicate(n->as_LoadStore()->barrier_data() == 0);
73967394
match(Set oldval (CompareAndExchangeP mem_ptr (Binary oldval newval)));
73977395
effect(KILL cr);
73987396

‎src/hotspot/cpu/zero/vm_version_zero.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
33
* Copyright 2009 Red Hat, Inc.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -138,11 +138,13 @@ void VM_Version::initialize() {
138138
UNSUPPORTED_OPTION(CountCompiledCalls);
139139
#endif
140140

141+
#ifndef SUPPORTS_NATIVE_CX8
141142
// Supports 8-byte cmpxchg with compiler built-ins.
142143
// These built-ins are supposed to be implemented on
143144
// all platforms (even if not natively), so we claim
144145
// the support unconditionally.
145146
_supports_cx8 = true;
147+
#endif
146148
}
147149

148150
void VM_Version::initialize_cpu_information(void) {

‎src/hotspot/os_cpu/linux_arm/atomic_linux_arm.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ inline int32_t reorder_cmpxchg_func(int32_t exchange_value,
153153
inline int64_t reorder_cmpxchg_long_func(int64_t exchange_value,
154154
int64_t volatile* dest,
155155
int64_t compare_value) {
156-
assert(VM_Version::supports_cx8(), "Atomic compare and exchange int64_t not supported on this architecture!");
157156
// Warning: Arguments are swapped to avoid moving them for kernel call
158157
return (*ARMAtomicFuncs::_cmpxchg_long_func)(compare_value, exchange_value, dest);
159158
}

‎src/hotspot/share/c1/c1_Compiler.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ bool Compiler::is_intrinsic_supported(const methodHandle& method) {
110110
bool Compiler::is_intrinsic_supported(vmIntrinsics::ID id) {
111111
switch (id) {
112112
case vmIntrinsics::_compareAndSetLong:
113-
if (!VM_Version::supports_cx8()) return false;
114113
break;
115114
case vmIntrinsics::_getAndAddInt:
116115
if (!VM_Version::supports_atomic_getadd4()) return false;

‎src/hotspot/share/include/jvm.h

-6
Original file line numberDiff line numberDiff line change
@@ -781,12 +781,6 @@ JVM_DesiredAssertionStatus(JNIEnv *env, jclass unused, jclass cls);
781781
JNIEXPORT jobject JNICALL
782782
JVM_AssertionStatusDirectives(JNIEnv *env, jclass unused);
783783

784-
/*
785-
* java.util.concurrent.atomic.AtomicLong
786-
*/
787-
JNIEXPORT jboolean JNICALL
788-
JVM_SupportsCX8(void);
789-
790784
/*
791785
* java.lang.ref.Finalizer
792786
*/

‎src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,10 @@
3535
#include "runtime/atomic.hpp"
3636
#include "runtime/javaThread.hpp"
3737
#include "runtime/jniHandles.inline.hpp"
38-
#include "runtime/vm_version.hpp"
3938
#include "utilities/growableArray.hpp"
4039

4140
// returns updated value
4241
static traceid atomic_inc(traceid volatile* const dest, traceid stride = 1) {
43-
assert(VM_Version::supports_cx8(), "invariant");
4442
traceid compare_value;
4543
traceid exchange_value;
4644
do {
@@ -294,4 +292,3 @@ void JfrTraceId::untag_jdk_jfr_event_sub(const Klass* k) {
294292
}
295293
assert(IS_NOT_AN_EVENT_SUB_KLASS(k), "invariant");
296294
}
297-

‎src/hotspot/share/jfr/utilities/jfrAllocation.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@
2929
#include "memory/allocation.inline.hpp"
3030
#include "nmt/memTracker.hpp"
3131
#include "runtime/atomic.hpp"
32-
#include "runtime/vm_version.hpp"
3332
#include "utilities/debug.hpp"
3433
#include "utilities/macros.hpp"
3534
#include "utilities/nativeCallStack.hpp"
3635

3736
#ifdef ASSERT
3837
static jlong atomic_add_jlong(jlong value, jlong volatile* const dest) {
39-
assert(VM_Version::supports_cx8(), "unsupported");
4038
jlong compare_value;
4139
jlong exchange_value;
4240
do {

‎src/hotspot/share/jfr/utilities/jfrSpinlockHelper.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
#include "runtime/javaThread.hpp"
2929

30-
// this utility could be useful for non cx8 platforms
31-
3230
class JfrSpinlockHelper {
3331
private:
3432
volatile int* const _lock;

‎src/hotspot/share/oops/accessBackend.cpp

-49
Original file line numberDiff line numberDiff line change
@@ -28,60 +28,11 @@
2828
#include "oops/oop.inline.hpp"
2929
#include "runtime/javaThread.inline.hpp"
3030
#include "runtime/mutexLocker.hpp"
31-
#include "runtime/vm_version.hpp"
3231
#include "utilities/copy.hpp"
3332
#include "utilities/debug.hpp"
3433
#include "utilities/vmError.hpp"
3534

3635
namespace AccessInternal {
37-
// VM_Version::supports_cx8() is a surrogate for 'supports atomic long memory ops'.
38-
//
39-
// On platforms which do not support atomic compare-and-swap of jlong (8 byte)
40-
// values we have to use a lock-based scheme to enforce atomicity. This has to be
41-
// applied to all Unsafe operations that set the value of a jlong field. Even so
42-
// the compareAndSwapLong operation will not be atomic with respect to direct stores
43-
// to the field from Java code. It is important therefore that any Java code that
44-
// utilizes these Unsafe jlong operations does not perform direct stores. To permit
45-
// direct loads of the field from Java code we must also use Atomic::store within the
46-
// locked regions. And for good measure, in case there are direct stores, we also
47-
// employ Atomic::load within those regions. Note that the field in question must be
48-
// volatile and so must have atomic load/store accesses applied at the Java level.
49-
//
50-
// The locking scheme could utilize a range of strategies for controlling the locking
51-
// granularity: from a lock per-field through to a single global lock. The latter is
52-
// the simplest and is used for the current implementation. Note that the Java object
53-
// that contains the field, can not, in general, be used for locking. To do so can lead
54-
// to deadlocks as we may introduce locking into what appears to the Java code to be a
55-
// lock-free path.
56-
//
57-
// As all the locked-regions are very short and themselves non-blocking we can treat
58-
// them as leaf routines and elide safepoint checks (ie we don't perform any thread
59-
// state transitions even when blocking for the lock). Note that if we do choose to
60-
// add safepoint checks and thread state transitions, we must ensure that we calculate
61-
// the address of the field _after_ we have acquired the lock, else the object may have
62-
// been moved by the GC
63-
64-
#ifndef SUPPORTS_NATIVE_CX8
65-
66-
// This is intentionally in the cpp file rather than the .inline.hpp file. It seems
67-
// desirable to trade faster JDK build times (not propagating vm_version.hpp)
68-
// for slightly worse runtime atomic jlong performance on 32 bit machines with
69-
// support for 64 bit atomics.
70-
bool wide_atomic_needs_locking() {
71-
return !VM_Version::supports_cx8();
72-
}
73-
74-
AccessLocker::AccessLocker() {
75-
assert(!VM_Version::supports_cx8(), "why else?");
76-
UnsafeJlong_lock->lock_without_safepoint_check();
77-
}
78-
79-
AccessLocker::~AccessLocker() {
80-
UnsafeJlong_lock->unlock();
81-
}
82-
83-
#endif
84-
8536
// These forward copying calls to Copy without exposing the Copy type in headers unnecessarily
8637

8738
void arraycopy_arrayof_conjoint_oops(void* src, void* dst, size_t length) {

0 commit comments

Comments
 (0)
Please sign in to comment.