Skip to content

Commit

Permalink
JIT: fix unused operand marking in LowerHWIntrinsicTernaryLogic
Browse files Browse the repository at this point in the history
In `LowerHWIntrinsicTernaryLogic` we do some operand swapping and replacing,
and were not accounting for this when marking operands as unused.

Fixes #106480.
  • Loading branch information
AndyAyersMS authored and github-actions committed Aug 17, 2024
1 parent 63c9565 commit 4087182
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/coreclr/jit/lowerxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3975,7 +3975,7 @@ GenTree* Lowering::LowerHWIntrinsicTernaryLogic(GenTreeHWIntrinsic* node)

if (!op1->IsCnsVec())
{
op1->SetUnusedValue();
node->Op(1)->SetUnusedValue();
op1 = comp->gtNewZeroConNode(simdType);

BlockRange().InsertBefore(node, op1);
Expand All @@ -3984,7 +3984,7 @@ GenTree* Lowering::LowerHWIntrinsicTernaryLogic(GenTreeHWIntrinsic* node)

if (!op2->IsCnsVec())
{
op2->SetUnusedValue();
node->Op(2)->SetUnusedValue();
op2 = comp->gtNewZeroConNode(simdType);

BlockRange().InsertBefore(node, op2);
Expand All @@ -3997,7 +3997,7 @@ GenTree* Lowering::LowerHWIntrinsicTernaryLogic(GenTreeHWIntrinsic* node)
{
if (!op1->IsCnsVec())
{
op1->SetUnusedValue();
node->Op(1)->SetUnusedValue();
op1 = comp->gtNewZeroConNode(simdType);

BlockRange().InsertBefore(node, op1);
Expand Down
31 changes: 31 additions & 0 deletions src/tests/JIT/Regression/JitBlue/Runtime_106480/Runtime_106480.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

// Found by Antigen
// Reduced from 121.36 KB to 3.38
// Further redued by hand

using System;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using Xunit;

public class Runtime_106480
{
Vector512<ushort> v512_ushort_102 = Vector512<ushort>.AllBitsSet;

void Problem()
{
if (Avx512F.IsSupported)
{
byte byte_126 = 5;
Avx512F.TernaryLogic(v512_ushort_102, v512_ushort_102, v512_ushort_102, byte_126);
}
}

[Fact]
public static void Test()
{
new Runtime_106480().Problem();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
</Project>

0 comments on commit 4087182

Please sign in to comment.