Skip to content

Commit 625603d

Browse files
committed
Fast-Path String and Vector Hash Code Methods on Power
Fast-path ArraysSupport.vectorizedHashCode and String.hashCodeImplCompressed methods on Power. The String.hashCodeImplDecompressed method has already been fast-pathed. Since the other methods use the same logic, the existing code can be modified to recognise and accomodate them. Signed-off-by: Luke Li <[email protected]>
1 parent 43f5280 commit 625603d

File tree

3 files changed

+688
-245
lines changed

3 files changed

+688
-245
lines changed

runtime/compiler/optimizer/InlinerTempForJ9.cpp

+4-14
Original file line numberDiff line numberDiff line change
@@ -5575,26 +5575,16 @@ TR_J9InlinerPolicy::supressInliningRecognizedInitialCallee(TR_CallSite* callsite
55755575
case TR::java_lang_Class_cast:
55765576
return true; // Call will be transformed into checkcast
55775577
case TR::java_lang_String_hashCodeImplDecompressed:
5578-
/*
5579-
* X86 and z want to avoid inlining both java_lang_String_hashCodeImplDecompressed and java_lang_String_hashCodeImplCompressed
5580-
* so they can be recognized and replaced with a custom fast implementation.
5581-
* Power currently only has the custom fast implementation for java_lang_String_hashCodeImplDecompressed.
5582-
* As a result, Power only wants to prevent inlining of java_lang_String_hashCodeImplDecompressed.
5583-
* When Power gets a fast implementation of TR::java_lang_String_hashCodeImplCompressed, this case can be merged into the case
5584-
* for java_lang_String_hashCodeImplCompressed instead of using a fallthrough.
5585-
*/
5586-
if (!TR::Compiler->om.canGenerateArraylets() && !TR::Compiler->om.isOffHeapAllocationEnabled() &&
5587-
comp->target().cpu.isPower() && comp->target().cpu.isAtLeast(OMR_PROCESSOR_PPC_P8) && comp->target().cpu.supportsFeature(OMR_FEATURE_PPC_HAS_VSX) && !comp->compileRelocatableCode())
5588-
{
5589-
return true;
5590-
}
5591-
// Intentional fallthrough here.
55925578
case TR::java_lang_String_hashCodeImplCompressed:
5579+
// X86, Z and Power have custom fast implementations for these 2 methods
5580+
// so their inlining should be avoided.
5581+
{
55935582
if (comp->cg()->getSupportsInlineStringHashCode())
55945583
{
55955584
return true;
55965585
}
55975586
break;
5587+
}
55985588
case TR::jdk_internal_util_ArraysSupport_vectorizedHashCode:
55995589
{
56005590
if (comp->cg()->getSupportsInlineVectorizedHashCode())

runtime/compiler/p/codegen/J9CodeGenerator.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,20 @@ J9::Power::CodeGenerator::initialize()
123123
if (!comp->getOption(TR_DisableReadMonitors))
124124
cg->setSupportsReadOnlyLocks();
125125

126+
if (!TR::Compiler->om.canGenerateArraylets()
127+
&& !TR::Compiler->om.isOffHeapAllocationEnabled()
128+
&& comp->target().cpu.isAtLeast(OMR_PROCESSOR_PPC_P8)
129+
&& comp->target().cpu.supportsFeature(OMR_FEATURE_PPC_HAS_VSX)
130+
&& !comp->compileRelocatableCode()
131+
#ifdef J9VM_OPT_JITSERVER
132+
&& !comp->isOutOfProcessCompilation()
133+
#endif
134+
)
135+
{
136+
cg->setSupportsInlineStringHashCode();
137+
cg->setSupportsInlineVectorizedHashCode();
138+
}
139+
126140
static bool disableTLHPrefetch = (feGetEnv("TR_DisableTLHPrefetch") != NULL);
127141

128142
// Enable software prefetch of the TLH and configure the TLH prefetching

0 commit comments

Comments
 (0)