Skip to content

Commit 59ef48c

Browse files
authored
Merge pull request #19762 from 0xdaryl/broadwell.46
(0.46.0) Disable x86 TLH prefetch by default after Broadwell
2 parents 5e0ca40 + 63d2666 commit 59ef48c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/compiler/control/J9Options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@ void J9::Options::preProcessTLHPrefetch(J9JavaVM *vm)
21782178
#else // TR_HOST_X86
21792179
preferTLHPrefetch =
21802180
(TR::Compiler->target.cpu.isGenuineIntel() &&
2181-
TR::Compiler->target.cpu.isAtMost(OMR_PROCESSOR_X86_INTEL_SKYLAKE)) ||
2181+
TR::Compiler->target.cpu.isAtMost(OMR_PROCESSOR_X86_INTEL_BROADWELL)) ||
21822182
!TR::Compiler->target.cpu.isGenuineIntel();
21832183

21842184
// Disable TM on x86 because we cannot tell whether a Haswell chip supports

0 commit comments

Comments
 (0)