File tree 3 files changed +791
-245
lines changed
3 files changed +791
-245
lines changed Original file line number Diff line number Diff line change @@ -5592,26 +5592,16 @@ TR_J9InlinerPolicy::supressInliningRecognizedInitialCallee(TR_CallSite* callsite
5592
5592
return false ;
5593
5593
}
5594
5594
case TR::java_lang_String_hashCodeImplDecompressed:
5595
- /*
5596
- * X86 and z want to avoid inlining both java_lang_String_hashCodeImplDecompressed and java_lang_String_hashCodeImplCompressed
5597
- * so they can be recognized and replaced with a custom fast implementation.
5598
- * Power currently only has the custom fast implementation for java_lang_String_hashCodeImplDecompressed.
5599
- * As a result, Power only wants to prevent inlining of java_lang_String_hashCodeImplDecompressed.
5600
- * When Power gets a fast implementation of TR::java_lang_String_hashCodeImplCompressed, this case can be merged into the case
5601
- * for java_lang_String_hashCodeImplCompressed instead of using a fallthrough.
5602
- */
5603
- if (!TR::Compiler->om .canGenerateArraylets () && !TR::Compiler->om .isOffHeapAllocationEnabled () &&
5604
- comp->target ().cpu .isPower () && comp->target ().cpu .isAtLeast (OMR_PROCESSOR_PPC_P8) && comp->target ().cpu .supportsFeature (OMR_FEATURE_PPC_HAS_VSX) && !comp->compileRelocatableCode ())
5605
- {
5606
- return true ;
5607
- }
5608
- // Intentional fallthrough here.
5609
5595
case TR::java_lang_String_hashCodeImplCompressed:
5596
+ // X86, Z and Power have custom fast implementations for these 2 methods
5597
+ // so their inlining should be avoided.
5598
+ {
5610
5599
if (comp->cg ()->getSupportsInlineStringHashCode ())
5611
5600
{
5612
5601
return true ;
5613
5602
}
5614
5603
break ;
5604
+ }
5615
5605
case TR::jdk_internal_util_ArraysSupport_vectorizedHashCode:
5616
5606
{
5617
5607
if (comp->cg ()->getSupportsInlineVectorizedHashCode ())
Original file line number Diff line number Diff line change @@ -123,6 +123,20 @@ J9::Power::CodeGenerator::initialize()
123
123
if (!comp->getOption (TR_DisableReadMonitors))
124
124
cg->setSupportsReadOnlyLocks ();
125
125
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
+
126
140
static bool disableTLHPrefetch = (feGetEnv (" TR_DisableTLHPrefetch" ) != NULL );
127
141
128
142
// Enable software prefetch of the TLH and configure the TLH prefetching
You can’t perform that action at this time.
0 commit comments