Skip to content

Commit 974bec3

Browse files
authored
Merge pull request eclipse-omr#7241 from BradleyWood/rnprefetchtlh
x86: Remove deprecated TR_EnableNewX86PrefetchTLH
2 parents 6391cf4 + e217fec commit 974bec3

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

compiler/control/OMROptions.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,6 @@ TR::OptionTable OMR::Options::_jitOptions[] = {
741741
{"enableMutableCallSiteGuards", "O\tenable virtual guards for calls to java.lang.invoke.MutableCallSite.getTarget().invokeExact(...) (including invokedynamic)", RESET_OPTION_BIT(TR_DisableMutableCallSiteGuards), "F"},
742742
{"enableNewAllocationProfiling", "O\tenable profiling of new allocations", SET_OPTION_BIT(TR_EnableNewAllocationProfiling), "F"},
743743
{"enableNewCheckCastInstanceOf", "O\tenable new Checkcast/InstanceOf evaluator", SET_OPTION_BIT(TR_EnableNewCheckCastInstanceOf), "F"},
744-
{"enableNewX86PrefetchTLH", "O\tenable new X86 TLH prefetch algorithm", SET_OPTION_BIT(TR_EnableNewX86PrefetchTLH), "F"},
745744
{"enableNodeGC", "M\tenable node recycling", SET_OPTION_BIT(TR_EnableNodeGC), "F"},
746745
{"enableOldEDO", "O\tenable the old EDO mechanism", SET_OPTION_BIT(TR_EnableOldEDO), "F", NOT_IN_SUBSET},
747746
{"enableOnsiteCacheForSuperClassTest", "O\tenable onsite cache for super class test", SET_OPTION_BIT(TR_EnableOnsiteCacheForSuperClassTest), "F"},

compiler/control/OMROptions.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ enum TR_CompilationOptions
401401
TR_EnableSequentialLoadStoreWarm = 0x00020000 + 10,
402402
TR_EnableSequentialLoadStoreCold = 0x00040000 + 10,
403403
// Available = 0x00080000 + 10,
404-
TR_EnableNewX86PrefetchTLH = 0x00100000 + 10,
404+
// Available = 0x00100000 + 10,
405405
// Available = 0x00200000 + 10,
406406
TR_ConservativeCompilation = 0x00400000 + 10,
407407
// Available = 0x00800000 + 10,

compiler/runtime/Helpers.inc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,10 @@ SETVAL(TR_X86interpreterUnresolvedStaticFieldSetterGlue,TR_FSRH+29)
165165
SETVAL(TR_X86interpreterUnresolvedFieldGlue,TR_FSRH+30)
166166
SETVAL(TR_X86interpreterUnresolvedFieldSetterGlue,TR_FSRH+31)
167167
SETVAL(TR_X86prefetchTLH,TR_FSRH+32)
168-
SETVAL(TR_X86newPrefetchTLH,TR_FSRH+33)
169-
SETVAL(TR_X86CodeCachePrefetchHelper,TR_FSRH+34)
170-
SETVAL(TR_X86interpreterUnresolvedConstantDynamicGlue,TR_FSRH+35)
171-
SETVAL(TR_X86interpreterStaticAndSpecialGlue,TR_FSRH+36)
172-
SETVAL(TR_LXRH,TR_FSRH+37)
168+
SETVAL(TR_X86CodeCachePrefetchHelper,TR_FSRH+33)
169+
SETVAL(TR_X86interpreterUnresolvedConstantDynamicGlue,TR_FSRH+34)
170+
SETVAL(TR_X86interpreterStaticAndSpecialGlue,TR_FSRH+35)
171+
SETVAL(TR_LXRH,TR_FSRH+36)
173172

174173
SETVAL(TR_IA32longDivide,TR_LXRH+0)
175174
SETVAL(TR_IA32longRemainder,TR_LXRH+1)

0 commit comments

Comments
 (0)