From: Tanner Gooding Date: Wed, 7 Jun 2023 18:05:27 +0000 (-0700) Subject: Fix handling of CreateScalarUnsafe for embedded broadcast (#87134) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~1790 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eb09ba9d222463daf604e7a4b7cdf18732afdbfd;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix handling of CreateScalarUnsafe for embedded broadcast (#87134) * Adding a regression test for dotnet/runtime#87116 * Ensure IsContainableHWIntrinsicOp takes into account whether CreateScalarUnsafe is coming from memory for embedded broadcast --- diff --git a/src/coreclr/jit/gentree.cpp b/src/coreclr/jit/gentree.cpp index f6cd9c7..6b314b0 100644 --- a/src/coreclr/jit/gentree.cpp +++ b/src/coreclr/jit/gentree.cpp @@ -25059,6 +25059,37 @@ bool GenTreeHWIntrinsic::OperIsBroadcastScalar() const #endif } +//------------------------------------------------------------------------ +// OperIsCreateScalarUnsafe: Is this HWIntrinsic a CreateScalarUnsafe node. +// +// Return Value: +// Whether "this" is a CreateScalarUnsafe node. +// +bool GenTreeHWIntrinsic::OperIsCreateScalarUnsafe() const +{ + NamedIntrinsic intrinsicId = GetHWIntrinsicId(); + + switch (intrinsicId) + { +#if defined(TARGET_ARM64) + case NI_Vector64_CreateScalarUnsafe: +#endif // TARGET_ARM64 + case NI_Vector128_CreateScalarUnsafe: +#if defined(TARGET_XARCH) + case NI_Vector256_CreateScalarUnsafe: + case NI_Vector512_CreateScalarUnsafe: +#endif // TARGET_XARCH + { + return true; + } + + default: + { + return false; + } + } +} + //------------------------------------------------------------------------------ // OperRequiresAsgFlag : Check whether the operation requires GTF_ASG flag regardless // of the children's flags. diff --git a/src/coreclr/jit/gentree.h b/src/coreclr/jit/gentree.h index 7fb272b..08bc535 100644 --- a/src/coreclr/jit/gentree.h +++ b/src/coreclr/jit/gentree.h @@ -6245,6 +6245,7 @@ struct GenTreeHWIntrinsic : public GenTreeJitIntrinsic bool OperIsMemoryStoreOrBarrier() const; bool OperIsEmbBroadcastCompatible() const; bool OperIsBroadcastScalar() const; + bool OperIsCreateScalarUnsafe() const; bool OperRequiresAsgFlag() const; bool OperRequiresCallFlag() const; diff --git a/src/coreclr/jit/lowerxarch.cpp b/src/coreclr/jit/lowerxarch.cpp index 0cd1d49..4a69c64 100644 --- a/src/coreclr/jit/lowerxarch.cpp +++ b/src/coreclr/jit/lowerxarch.cpp @@ -7599,7 +7599,7 @@ bool Lowering::IsContainableHWIntrinsicOp(GenTreeHWIntrinsic* parentNode, GenTre GenTree* op1 = hwintrinsic->Op(1); - if (IsSafeToContainMem(parentNode, hwintrinsic, op1)) + if (IsInvariantInRange(op1, parentNode, hwintrinsic)) { if (op1->isContained()) { @@ -7706,14 +7706,29 @@ bool Lowering::IsContainableHWIntrinsicOp(GenTreeHWIntrinsic* parentNode, GenTre if (intrinsicId == NI_SSE3_MoveAndDuplicate) { // NI_SSE3_MoveAndDuplicate is for Vector128 only. - assert(childNode->AsHWIntrinsic()->GetSimdBaseType() == TYP_DOUBLE); + assert(hwintrinsic->GetSimdBaseType() == TYP_DOUBLE); } + if (comp->compOpportunisticallyDependsOn(InstructionSet_AVX512F_VL) && parentNode->OperIsEmbBroadcastCompatible()) { - GenTree* broadcastOperand = childNode->AsHWIntrinsic()->Op(1); - bool childSupportsRegOptional; - if (IsContainableHWIntrinsicOp(childNode->AsHWIntrinsic(), broadcastOperand, &childSupportsRegOptional)) + GenTree* broadcastOperand = hwintrinsic->Op(1); + + if (broadcastOperand->OperIsHWIntrinsic()) + { + GenTreeHWIntrinsic* hwintrinsicOperand = broadcastOperand->AsHWIntrinsic(); + + if (hwintrinsicOperand->OperIsCreateScalarUnsafe()) + { + // CreateScalarUnsafe can contain non-memory operands such as enregistered + // locals, so we want to check if its operand is containable instead. This + // will result in such enregistered locals returning `false`. + broadcastOperand = hwintrinsicOperand->Op(1); + } + } + + bool childSupportsRegOptional; + if (IsContainableHWIntrinsicOp(hwintrinsic, broadcastOperand, &childSupportsRegOptional)) { return true; } diff --git a/src/tests/JIT/Regression/JitBlue/Runtime_87116/Runtime_87116.cs b/src/tests/JIT/Regression/JitBlue/Runtime_87116/Runtime_87116.cs new file mode 100644 index 0000000..13d4bca --- /dev/null +++ b/src/tests/JIT/Regression/JitBlue/Runtime_87116/Runtime_87116.cs @@ -0,0 +1,26 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.Intrinsics; +using Xunit; + +public class Runtime_87116 +{ + [Fact] + public static int Test() + { + return TryVectorAdd(1, 2, 1 + 2) ? 100 : 0; + } + + [MethodImpl(MethodImplOptions.NoInlining)] + public static bool TryVectorAdd(float a, float b, float c) + { + Vector128 A = Vector128.Create(a); + Vector128 B = Vector128.Create(b); + + Vector128 C = A + B; + return C == Vector128.Create(c); + } +} diff --git a/src/tests/JIT/Regression/JitBlue/Runtime_87116/Runtime_87116.csproj b/src/tests/JIT/Regression/JitBlue/Runtime_87116/Runtime_87116.csproj new file mode 100644 index 0000000..de6d5e0 --- /dev/null +++ b/src/tests/JIT/Regression/JitBlue/Runtime_87116/Runtime_87116.csproj @@ -0,0 +1,8 @@ + + + True + + + + +