Skip to content

Commit d4bce38

Browse files
github-actions[bot]tannergoodingjeffschwMSFT
authored
[release/9.0] Ensure that Vector128.CreateSequence works on x86 for non-constant 64-bit inputs (#107147)
* Ensure that Vector128.CreateSequence works on x86 for non-constant 64-bit inputs * Update Runtime_106372.cs --------- Co-authored-by: Tanner Gooding <[email protected]> Co-authored-by: Jeff Schwartz <[email protected]>
1 parent dbd8c9d commit d4bce38

File tree

3 files changed

+44
-8
lines changed

3 files changed

+44
-8
lines changed

src/coreclr/jit/hwintrinsicxarch.cpp

+11-8
Original file line numberDiff line numberDiff line change
@@ -2338,16 +2338,19 @@ GenTree* Compiler::impSpecialIntrinsic(NamedIntrinsic intrinsic,
23382338
}
23392339
}
23402340

2341-
if (varTypeIsLong(simdBaseType) && !impStackTop(0).val->OperIsConst())
2341+
if (varTypeIsLong(simdBaseType))
23422342
{
2343-
// When op2 is a constant, we can skip the multiplication allowing us to always
2344-
// generate better code. However, if it isn't then we need to fallback in the
2345-
// cases where multiplication isn't supported.
2346-
2347-
if ((simdSize != 64) && !canUseEvexEncoding())
2343+
if (!impStackTop(0).val->OperIsConst())
23482344
{
2349-
// TODO-XARCH-CQ: We should support long/ulong multiplication
2350-
break;
2345+
// When op2 is a constant, we can skip the multiplication allowing us to always
2346+
// generate better code. However, if it isn't then we need to fallback in the
2347+
// cases where multiplication isn't supported.
2348+
2349+
if ((simdSize != 64) && !canUseEvexEncoding())
2350+
{
2351+
// TODO-XARCH-CQ: We should support long/ulong multiplication
2352+
break;
2353+
}
23512354
}
23522355

23532356
#if defined(TARGET_X86)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
using System;
5+
using System.Runtime.Intrinsics;
6+
using Xunit;
7+
8+
// Found by Antigen
9+
// Reduced from 161.42 KB to 874 B.
10+
// Further reduced by hand.
11+
//
12+
// Assert failure(PID 35056 [0x000088f0], Thread: 28500 [0x6f54]): Assertion failed 'unreached' in 'TestClass:Method0():this' during 'Importation' (IL size 116; hash 0x46e9aa75; Tier0)
13+
// File: C:\wk\runtime\src\coreclr\jit\gentree.cpp:22552
14+
// Image: C:\wk\runtime\artifacts\tests\coreclr\windows.x86.Checked\Tests\Core_Root\corerun.exe
15+
16+
public class Runtime_106372
17+
{
18+
static long s_long_11 = 1;
19+
20+
public static void TestEntryPoint()
21+
{
22+
Vector128<long> result = Vector128.CreateSequence(s_long_11, -2);
23+
Assert.Equal(Vector128.Create(+1L, -1L), result);
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<Optimize>True</Optimize>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<Compile Include="$(MSBuildProjectName).cs" />
7+
</ItemGroup>
8+
</Project>

0 commit comments

Comments
 (0)