-
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.
RyuJIT: x*2 -> x+x; x*1 -> x (fp) (#33024)
* Optimize "x * 2" to "x + x" for floats * Add tests * Fix typo * Address feedback * Move to morph.cpp, also add "x*1" optimization * clean up * clean up * update op2 * Fix incorrect "fgMakeMultiUse" usage * update op1 * Address feedback * Add opts.OptimizationEnabled()
- Loading branch information
Showing
3 changed files
with
169 additions
and
0 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
133 changes: 133 additions & 0 deletions
133
src/coreclr/tests/src/JIT/opt/InstructionCombining/MulToAdd.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,133 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
using System.Linq; | ||
using System.Runtime.CompilerServices; | ||
|
||
// Test "X * 2" to "X + X" | ||
|
||
public class Program | ||
{ | ||
private static int resultCode = 100; | ||
|
||
public static int Main(string[] args) | ||
{ | ||
float[] testValues = | ||
{ | ||
0, 0.01f, 1.333f, 1/3.0f, 0.5f, 1, 2, 3, 4, | ||
MathF.PI, MathF.E, | ||
float.MinValue, float.MaxValue, | ||
int.MaxValue, long.MaxValue, | ||
int.MinValue, long.MinValue, | ||
float.NegativeInfinity, | ||
float.PositiveInfinity, | ||
float.NaN, | ||
}; | ||
|
||
testValues = testValues.Concat(testValues.Select(v => -v)).ToArray(); | ||
|
||
foreach (float testValue in testValues) | ||
{ | ||
var tf = new TestFloats(); | ||
|
||
// Case 1: argument | ||
AssertEquals(tf.TestArg(testValue), tf.TestArg_var(testValue)); | ||
|
||
// Case 2: ref argument | ||
float t1 = testValue, t2 = testValue; | ||
tf.TestArgRef(ref t1); | ||
tf.TestArgRef_var(ref t2); | ||
AssertEquals(t1, t2); | ||
|
||
// Case 3: out argument | ||
tf.TestArgOut(t1, out t1); | ||
tf.TestArgOut_var(t2, out t2); | ||
AssertEquals(t1, t2); | ||
|
||
// Case 4: field | ||
tf.TestField(); | ||
tf.TestField_var(); | ||
AssertEquals(tf.field1, tf.field2); | ||
|
||
// Case 5: call | ||
AssertEquals(tf.TestCall(), tf.TestCall_var()); | ||
AssertEquals(tf.field1, tf.field2); | ||
} | ||
|
||
return resultCode; | ||
} | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
private static void AssertEquals(float expected, float actual) | ||
{ | ||
int expectedBits = BitConverter.SingleToInt32Bits(expected); | ||
int actualBits = BitConverter.SingleToInt32Bits(actual); | ||
if (expectedBits != actualBits) | ||
{ | ||
resultCode++; | ||
Console.WriteLine($"AssertEquals: {expected} != {actual}"); | ||
} | ||
} | ||
} | ||
|
||
public class TestFloats | ||
{ | ||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public static T Var<T>(T t) => t; | ||
|
||
|
||
// Case 1: argument | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public float TestArg(float x) => x * 2; | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public float TestArg_var(float x) => x * Var(2); | ||
|
||
|
||
// Case 2: ref argument | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public void TestArgRef(ref float x) => x *= 2; | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public void TestArgRef_var(ref float x) => x *= Var(2); | ||
|
||
|
||
// Case 3: out argument | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public void TestArgOut(float x, out float y) => y = x * 2; | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public void TestArgOut_var(float x, out float y) => y = x * Var(2); | ||
|
||
|
||
// Case 4: field | ||
|
||
public float field1 = 3.14f; | ||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public void TestField() => field1 *= 2; | ||
|
||
public float field2 = 3.14f; | ||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public void TestField_var() => field2 *= Var(2); | ||
|
||
|
||
// Case 5: Call | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public float Call1() => field1++; // with side-effect | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public float Call2() => field2++; // with side-effect | ||
|
||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public float TestCall() => Call1() * 2; | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
public float TestCall_var() => Call2() * Var(2); | ||
} |
12 changes: 12 additions & 0 deletions
12
src/coreclr/tests/src/JIT/opt/InstructionCombining/MulToAdd.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,12 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<DebugType>None</DebugType> | ||
<Optimize>True</Optimize> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="MulToAdd.cs" /> | ||
</ItemGroup> | ||
</Project> |