File tree 3 files changed +688
-245
lines changed
3 files changed +688
-245
lines changed Original file line number Diff line number Diff line change @@ -5575,26 +5575,16 @@ TR_J9InlinerPolicy::supressInliningRecognizedInitialCallee(TR_CallSite* callsite
5575
5575
case TR::java_lang_Class_cast:
5576
5576
return true ; // Call will be transformed into checkcast
5577
5577
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.
5592
5578
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
+ {
5593
5582
if (comp->cg ()->getSupportsInlineStringHashCode ())
5594
5583
{
5595
5584
return true ;
5596
5585
}
5597
5586
break ;
5587
+ }
5598
5588
case TR::jdk_internal_util_ArraysSupport_vectorizedHashCode:
5599
5589
{
5600
5590
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