mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8029190: VM_Version::determine_features() asserts on Fujitsu Sparc64 CPUs
Fix code to allow testing on Fujitsu Sparc64 CPUs Reviewed-by: kvn
This commit is contained in:
parent
c5b9d5ccd3
commit
f0010291f7
3 changed files with 28 additions and 19 deletions
|
@ -89,6 +89,27 @@ void VM_Version::initialize() {
|
||||||
_supports_cx8 = has_v9();
|
_supports_cx8 = has_v9();
|
||||||
_supports_atomic_getset4 = true; // swap instruction
|
_supports_atomic_getset4 = true; // swap instruction
|
||||||
|
|
||||||
|
// There are Fujitsu Sparc64 CPUs which support blk_init as well so
|
||||||
|
// we have to take this check out of the 'is_niagara()' block below.
|
||||||
|
if (has_blk_init()) {
|
||||||
|
// When using CMS or G1, we cannot use memset() in BOT updates
|
||||||
|
// because the sun4v/CMT version in libc_psr uses BIS which
|
||||||
|
// exposes "phantom zeros" to concurrent readers. See 6948537.
|
||||||
|
if (FLAG_IS_DEFAULT(UseMemSetInBOT) && (UseConcMarkSweepGC || UseG1GC)) {
|
||||||
|
FLAG_SET_DEFAULT(UseMemSetInBOT, false);
|
||||||
|
}
|
||||||
|
// Issue a stern warning if the user has explicitly set
|
||||||
|
// UseMemSetInBOT (it is known to cause issues), but allow
|
||||||
|
// use for experimentation and debugging.
|
||||||
|
if (UseConcMarkSweepGC || UseG1GC) {
|
||||||
|
if (UseMemSetInBOT) {
|
||||||
|
assert(!FLAG_IS_DEFAULT(UseMemSetInBOT), "Error");
|
||||||
|
warning("Experimental flag -XX:+UseMemSetInBOT is known to cause instability"
|
||||||
|
" on sun4v; please understand that you are using at your own risk!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (is_niagara()) {
|
if (is_niagara()) {
|
||||||
// Indirect branch is the same cost as direct
|
// Indirect branch is the same cost as direct
|
||||||
if (FLAG_IS_DEFAULT(UseInlineCaches)) {
|
if (FLAG_IS_DEFAULT(UseInlineCaches)) {
|
||||||
|
@ -98,12 +119,6 @@ void VM_Version::initialize() {
|
||||||
if (FLAG_IS_DEFAULT(OptoLoopAlignment)) {
|
if (FLAG_IS_DEFAULT(OptoLoopAlignment)) {
|
||||||
FLAG_SET_DEFAULT(OptoLoopAlignment, 4);
|
FLAG_SET_DEFAULT(OptoLoopAlignment, 4);
|
||||||
}
|
}
|
||||||
// When using CMS or G1, we cannot use memset() in BOT updates
|
|
||||||
// because the sun4v/CMT version in libc_psr uses BIS which
|
|
||||||
// exposes "phantom zeros" to concurrent readers. See 6948537.
|
|
||||||
if (FLAG_IS_DEFAULT(UseMemSetInBOT) && (UseConcMarkSweepGC || UseG1GC)) {
|
|
||||||
FLAG_SET_DEFAULT(UseMemSetInBOT, false);
|
|
||||||
}
|
|
||||||
#ifdef _LP64
|
#ifdef _LP64
|
||||||
// 32-bit oops don't make sense for the 64-bit VM on sparc
|
// 32-bit oops don't make sense for the 64-bit VM on sparc
|
||||||
// since the 32-bit VM has the same registers and smaller objects.
|
// since the 32-bit VM has the same registers and smaller objects.
|
||||||
|
|
|
@ -94,7 +94,13 @@ protected:
|
||||||
static bool is_M_family(int features) { return (features & M_family_m) != 0; }
|
static bool is_M_family(int features) { return (features & M_family_m) != 0; }
|
||||||
static bool is_T_family(int features) { return (features & T_family_m) != 0; }
|
static bool is_T_family(int features) { return (features & T_family_m) != 0; }
|
||||||
static bool is_niagara() { return is_T_family(_features); }
|
static bool is_niagara() { return is_T_family(_features); }
|
||||||
DEBUG_ONLY( static bool is_niagara(int features) { return (features & sun4v_m) != 0; } )
|
#ifdef ASSERT
|
||||||
|
static bool is_niagara(int features) {
|
||||||
|
// 'sun4v_m' may be defined on both Sun/Oracle Sparc CPUs as well as
|
||||||
|
// on Fujitsu Sparc64 CPUs, but only Sun/Oracle Sparcs can be 'niagaras'.
|
||||||
|
return (features & sun4v_m) != 0 && (features & sparc64_family_m) == 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Returns true if it is niagara1 (T1).
|
// Returns true if it is niagara1 (T1).
|
||||||
static bool is_T1_model(int features) { return is_T_family(features) && ((features & T1_model_m) != 0); }
|
static bool is_T1_model(int features) { return is_T_family(features) && ((features & T1_model_m) != 0); }
|
||||||
|
|
|
@ -2278,18 +2278,6 @@ bool Arguments::check_vm_args_consistency() {
|
||||||
status = status && verify_percentage(MarkSweepDeadRatio, "MarkSweepDeadRatio");
|
status = status && verify_percentage(MarkSweepDeadRatio, "MarkSweepDeadRatio");
|
||||||
|
|
||||||
status = status && verify_min_value(MarkSweepAlwaysCompactCount, 1, "MarkSweepAlwaysCompactCount");
|
status = status && verify_min_value(MarkSweepAlwaysCompactCount, 1, "MarkSweepAlwaysCompactCount");
|
||||||
#ifdef SPARC
|
|
||||||
if (UseConcMarkSweepGC || UseG1GC) {
|
|
||||||
// Issue a stern warning if the user has explicitly set
|
|
||||||
// UseMemSetInBOT (it is known to cause issues), but allow
|
|
||||||
// use for experimentation and debugging.
|
|
||||||
if (VM_Version::is_sun4v() && UseMemSetInBOT) {
|
|
||||||
assert(!FLAG_IS_DEFAULT(UseMemSetInBOT), "Error");
|
|
||||||
warning("Experimental flag -XX:+UseMemSetInBOT is known to cause instability"
|
|
||||||
" on sun4v; please understand that you are using at your own risk!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif // SPARC
|
|
||||||
|
|
||||||
if (PrintNMTStatistics) {
|
if (PrintNMTStatistics) {
|
||||||
#if INCLUDE_NMT
|
#if INCLUDE_NMT
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue