|
|
@@ -624,26 +624,8 @@ bool InliningDecider::GetBuiltInInfoCommon(
|
|
|
break;
|
|
|
#endif
|
|
|
|
|
|
-#ifdef ENABLE_SIMDJS
|
|
|
- // SIMD_JS
|
|
|
- // we only inline, and hence type-spec on IA
|
|
|
-#if defined(_M_X64) || defined(_M_IX86)
|
|
|
default:
|
|
|
- {
|
|
|
-#if 0 // TODO OOP JIT, inline SIMD
|
|
|
- // inline only if simdjs and simd128 type-spec is enabled.
|
|
|
- if (scriptContext->GetConfig()->IsSimdjsEnabled() && SIMD128_TYPE_SPEC_FLAG)
|
|
|
- {
|
|
|
- *inlineCandidateOpCode = scriptContext->GetThreadContext()->GetSimdOpcodeFromFuncInfo(funcInfo);
|
|
|
- }
|
|
|
- else
|
|
|
-#endif
|
|
|
- {
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
-#endif
|
|
|
-#endif // ENABLE_SIMDJS
|
|
|
+ return false;
|
|
|
}
|
|
|
return true;
|
|
|
}
|