Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix optComputeLoopSideEffects to account for HWI stores #61911

Merged
Merged
Show file tree
Hide file tree
Changes from 2 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
11 changes: 10 additions & 1 deletion src/coreclr/jit/optimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7539,6 +7539,15 @@ bool Compiler::optComputeLoopSideEffectsOfBlock(BasicBlock* blk)
}
break;

#ifdef FEATURE_HW_INTRINSICS
case GT_HWINTRINSIC:
if (tree->AsHWIntrinsic()->OperIsMemoryStore())
SingleAccretion marked this conversation as resolved.
Show resolved Hide resolved
{
memoryHavoc |= memoryKindSet(GcHeap, ByrefExposed);
}
break;
#endif // FEATURE_HW_INTRINSICS

case GT_LOCKADD:
case GT_XORR:
case GT_XAND:
Expand All @@ -7547,7 +7556,6 @@ bool Compiler::optComputeLoopSideEffectsOfBlock(BasicBlock* blk)
case GT_CMPXCHG:
case GT_MEMORYBARRIER:
{
assert(!tree->OperIs(GT_LOCKADD) && "LOCKADD should not appear before lowering");
memoryHavoc |= memoryKindSet(GcHeap, ByrefExposed);
}
break;
Expand Down Expand Up @@ -7587,6 +7595,7 @@ bool Compiler::optComputeLoopSideEffectsOfBlock(BasicBlock* blk)

default:
// All other gtOper node kinds, leave 'memoryHavoc' unchanged (i.e. false)
assert(!tree->OperRequiresAsgFlag());
break;
}
}
Expand Down
70 changes: 70 additions & 0 deletions src/tests/JIT/opt/Loops/LoopSideEffectsForHwiStores.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
using System.Runtime.CompilerServices;
SingleAccretion marked this conversation as resolved.
Show resolved Hide resolved
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using System.Runtime.Intrinsics.Arm;

unsafe class LoopSideEffectsForHwiStores
{
public static int Main()
{
static bool VerifyExpectedVtor(Vector128<int> a) => a.Equals(Vector128.Create(4));

var a = new ClassWithVtor();

fixed (Vector128<int>* p = &a.VtorField)
{
if (Sse2.IsSupported && !VerifyExpectedVtor(ProblemWithSse2(a, (byte*)p)))
{
System.Console.WriteLine("ProblemWithSse2 failed!");
return 101;
}

if (AdvSimd.IsSupported && !VerifyExpectedVtor(ProblemWithAdvSimd(a, (byte*)p)))
{
System.Console.WriteLine("ProblemWithAdvSimd failed!");
return 101;
}
}

return 100;
}

[MethodImpl(MethodImplOptions.NoInlining)]
static unsafe Vector128<int> ProblemWithSse2(ClassWithVtor a, byte* p)
{
Vector128<int> vtor = Vector128<int>.Zero;

a.VtorField = Vector128.Create(1);
a.VtorField = Sse2.Add(a.VtorField, a.VtorField);

for (int i = 0; i < 10; i++)
{
vtor = Sse2.Add(vtor, Sse2.Add(a.VtorField, a.VtorField));
Sse2.Store(p, Vector128<byte>.Zero);
}

return vtor;
}

[MethodImpl(MethodImplOptions.NoInlining)]
static unsafe Vector128<int> ProblemWithAdvSimd(ClassWithVtor a, byte* p)
{
Vector128<int> vtor = Vector128<int>.Zero;

a.VtorField = Vector128.Create(1);
a.VtorField = AdvSimd.Add(a.VtorField, a.VtorField);

for (int i = 0; i < 10; i++)
{
vtor = AdvSimd.Add(vtor, AdvSimd.Add(a.VtorField, a.VtorField));
AdvSimd.Store(p, Vector128<byte>.Zero);
}

return vtor;
}

class ClassWithVtor
{
public Vector128<int> VtorField;
}
}
14 changes: 14 additions & 0 deletions src/tests/JIT/opt/Loops/LoopSideEffectsForHwiStores.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>