-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JIT: Add out-of-bounds fallback for AdvSimd.ShiftRightLogical (#105777)
Fixes #105621. When its immediate is out-of-bounds, AdvSimd.ShiftRightLogical can be transformed into AdvSimd.ShiftLogical, which takes the immediate in a register. This means AdvSimd.ShiftRightLogical will no longer throw ArgumentOutOfRangeException in Debug or Release; when optimizing, we'd previously fold the intrinsic away, thus creating behavioral discrepancies.
- Loading branch information
1 parent
71d8ae6
commit 74c608d
Showing
4 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
src/tests/JIT/Regression/JitBlue/Runtime_105621/Runtime_105621.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
// Generated by Fuzzlyn v2.1 on 2024-07-28 20:49:49 | ||
// Run on Arm64 Linux | ||
// Seed: 14204794442367797079-vectort,vector64,vector128,armadvsimd,armadvsimdarm64,armaes,armarmbase,armarmbasearm64,armcrc32,armcrc32arm64,armdp,armrdm,armrdmarm64,armsha1,armsha256 | ||
// Reduced from 12.6 KiB to 0.4 KiB in 00:00:17 | ||
// Debug: Throws 'System.ArgumentOutOfRangeException' | ||
// Release: Runs successfully | ||
using System; | ||
using System.Runtime.Intrinsics; | ||
using System.Runtime.Intrinsics.Arm; | ||
using Xunit; | ||
|
||
public class Runtime_105621 | ||
{ | ||
[Fact] | ||
public static void TestShiftByZero() | ||
{ | ||
if (AdvSimd.IsSupported) | ||
{ | ||
var vr3 = Vector64.Create<byte>(0); | ||
var vr4 = AdvSimd.ShiftRightLogical(vr3, 0); | ||
Assert.Equal(vr3, vr4); | ||
} | ||
} | ||
|
||
[Fact] | ||
public static void TestShiftToZero() | ||
{ | ||
if (AdvSimd.IsSupported) | ||
{ | ||
var vr3 = Vector64.Create<byte>(128); | ||
var vr4 = AdvSimd.ShiftRightLogical(vr3, 9); | ||
Assert.Equal(vr4, Vector64<byte>.Zero); | ||
} | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/tests/JIT/Regression/JitBlue/Runtime_105621/Runtime_105621.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Optimize>False</Optimize> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="$(MSBuildProjectName).cs" /> | ||
</ItemGroup> | ||
</Project> |