Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/coreclr/vm/codeman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,13 @@ void EEJitManager::SetCpuInfo()
CPUCompileFlags.Set(InstructionSet_Sha256);
}

if (((cpuFeatures & ARM64IntrinsicConstants_Sve) != 0) && CLRConfig::GetConfigValue(CLRConfig::EXTERNAL_EnableArm64Sve))
if (((cpuFeatures & ARM64IntrinsicConstants_Sve) != 0) && CLRConfig::GetConfigValue(CLRConfig::EXTERNAL_EnableArm64Sve)
#ifdef FEATURE_INTERPRETER
// SVE intrinsics support for the FFR register adds a new concept of per method saved logical FFR state
// which the interpreter does not model.
&& !g_pConfig->EnableInterpreter()
#endif
)
{
uint32_t maxVectorTLength = (maxVectorTBitWidth / 8);
uint64_t sveLengthFromOS = GetSveLengthFromOS();
Expand Down
Loading