-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JIT] Fix - Do not remove
CAST
nodes on store if the LCL_VAR
is a…
… parameter or struct field (#85734) * Do not remove CAST nodes on assignment if the LCL_VAR is a parameter. * Added NormalizeOnLoad rules from SingleAccretion. Added description of why we cannot remove CAST nodes from parameters. * Remove morph optimization for NormalizeOnLoad in fgMorphLocalVar. Update test. * Do not OptimizeCastOnStore for params and struct fields * Update src/coreclr/jit/morph.cpp Co-authored-by: Jakob Botsch Nielsen <[email protected]> * Formatting --------- Co-authored-by: Jakob Botsch Nielsen <[email protected]>
- Loading branch information
1 parent
2ec8a68
commit 42322f5
Showing
5 changed files
with
129 additions
and
3 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
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
98 changes: 98 additions & 0 deletions
98
src/tests/JIT/Regression/JitBlue/Runtime_85382/Runtime_85382.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,98 @@ | ||
// 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.Collections; | ||
using System.Collections.Generic; | ||
using System.Runtime.CompilerServices; | ||
using Xunit; | ||
|
||
public class Test | ||
{ | ||
// This is trying to verify that we properly zero-extend on all platforms. | ||
public class Program | ||
{ | ||
public static long s_15; | ||
public static sbyte s_17; | ||
public static ushort s_21 = 36659; | ||
public static int Test() | ||
{ | ||
s_15 = ~1; | ||
return M40(0); | ||
} | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public static void Consume(ushort x) { } | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public static int M40(ushort arg0) | ||
{ | ||
for (int var0 = 0; var0 < 2; var0++) | ||
{ | ||
arg0 = 65535; | ||
arg0 &= (ushort)(s_15++ >> s_17); | ||
arg0 %= s_21; | ||
} | ||
|
||
Consume(arg0); | ||
|
||
if (arg0 != 28876) | ||
{ | ||
return 0; | ||
} | ||
return 100; | ||
} | ||
} | ||
|
||
public class Program2 | ||
{ | ||
public static long s_15; | ||
public static sbyte s_17; | ||
public static ushort s_21 = 36659; | ||
public static int Test() | ||
{ | ||
s_15 = ~1; | ||
return M40(); | ||
} | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public static void Consume(ushort x) { } | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public static int M40() | ||
{ | ||
S s = default; | ||
for (int var0 = 0; var0 < 2; var0++) | ||
{ | ||
s.U = 65535; | ||
s.U &= (ushort)(s_15++ >> s_17); | ||
s.U %= s_21; | ||
} | ||
|
||
Consume(s.U); | ||
|
||
if (s.U != 28876) | ||
{ | ||
return 0; | ||
} | ||
return 100; | ||
} | ||
|
||
public struct S { public ushort U; } | ||
} | ||
|
||
[Fact] | ||
public static int TestEntryPoint() { | ||
if (Test.Program.Test() != 100) | ||
{ | ||
return 0; | ||
} | ||
|
||
if (Test.Program2.Test() != 100) | ||
{ | ||
return 0; | ||
} | ||
|
||
return 100; | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/tests/JIT/Regression/JitBlue/Runtime_85382/Runtime_85382.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>True</Optimize> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="$(MSBuildProjectName).cs" /> | ||
</ItemGroup> | ||
</Project> |