Skip to content

Commit adbe066

Browse files
Bhavana-KilambiNingsheng Jian
authored and
Ningsheng Jian
committedFeb 14, 2022
8239927: Product variable PrefetchFieldsAhead is unused and should be removed
Reviewed-by: njian, dholmes
1 parent eff5daf commit adbe066

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed
 

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

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1818,9 +1818,6 @@ void VM_Version::get_processor_features() {
18181818
if (FLAG_IS_DEFAULT(PrefetchScanIntervalInBytes)) {
18191819
FLAG_SET_DEFAULT(PrefetchScanIntervalInBytes, 576);
18201820
}
1821-
if (FLAG_IS_DEFAULT(PrefetchFieldsAhead)) {
1822-
FLAG_SET_DEFAULT(PrefetchFieldsAhead, 1);
1823-
}
18241821
#endif
18251822

18261823
if (FLAG_IS_DEFAULT(ContendedPaddingWidth) &&
@@ -1883,9 +1880,6 @@ void VM_Version::get_processor_features() {
18831880
if (PrefetchScanIntervalInBytes > 0) {
18841881
log->print_cr("PrefetchScanIntervalInBytes %d", (int) PrefetchScanIntervalInBytes);
18851882
}
1886-
if (PrefetchFieldsAhead > 0) {
1887-
log->print_cr("PrefetchFieldsAhead %d", (int) PrefetchFieldsAhead);
1888-
}
18891883
if (ContendedPaddingWidth > 0) {
18901884
log->print_cr("ContendedPaddingWidth %d", (int) ContendedPaddingWidth);
18911885
}

‎src/hotspot/share/gc/shared/gc_globals.hpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -503,10 +503,6 @@
503503
"How far ahead to prefetch scan area (<= 0 means off)") \
504504
range(-1, max_jint) \
505505
\
506-
product(intx, PrefetchFieldsAhead, -1, \
507-
"How many fields ahead to prefetch in oop scan (<= 0 means off)") \
508-
range(-1, max_jint) \
509-
\
510506
product(bool, VerifyDuringStartup, false, DIAGNOSTIC, \
511507
"Verify memory system before executing any Java code " \
512508
"during VM initialization") \

‎src/hotspot/share/runtime/arguments.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,7 @@ static SpecialFlag const special_jvm_flags[] = {
548548

549549
{ "FilterSpuriousWakeups", JDK_Version::jdk(18), JDK_Version::jdk(19), JDK_Version::jdk(20) },
550550
{ "MinInliningThreshold", JDK_Version::jdk(18), JDK_Version::jdk(19), JDK_Version::jdk(20) },
551+
{ "PrefetchFieldsAhead", JDK_Version::undefined(), JDK_Version::jdk(19), JDK_Version::jdk(20) },
551552
#ifdef ASSERT
552553
{ "DummyObsoleteTestFlag", JDK_Version::undefined(), JDK_Version::jdk(18), JDK_Version::undefined() },
553554
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.