From 3091448eae1af315ad78d9fc18ad1ee077afc795 Mon Sep 17 00:00:00 2001 From: Carol Eidt Date: Tue, 18 Jun 2019 13:12:31 -0700 Subject: Fix contained LEA handling (#25135) * Fix contained LEA handling This adds an LEA case to both `LinearScan::BuildOperandUses` and `CodeGen::genConsumeRegs`. Fix #25039 --- src/jit/codegenlinear.cpp | 4 ++ src/jit/gentree.cpp | 4 +- src/jit/lsrabuild.cpp | 4 ++ .../JitBlue/GitHub_25039/GitHub_25039.cs | 64 ++++++++++++++++++++++ .../JitBlue/GitHub_25039/GitHub_25039.csproj | 34 ++++++++++++ 5 files changed, 108 insertions(+), 2 deletions(-) create mode 100644 tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.cs create mode 100644 tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.csproj diff --git a/src/jit/codegenlinear.cpp b/src/jit/codegenlinear.cpp index 0ed39a742a..39c7cf9b7d 100644 --- a/src/jit/codegenlinear.cpp +++ b/src/jit/codegenlinear.cpp @@ -1356,6 +1356,10 @@ void CodeGen::genConsumeRegs(GenTree* tree) { genConsumeAddress(tree->AsIndir()->Addr()); } + else if (tree->OperIs(GT_LEA)) + { + genConsumeAddress(tree); + } #ifdef _TARGET_XARCH_ else if (tree->OperIsLocalRead()) { diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp index 3a0629edaf..c635c327c5 100644 --- a/src/jit/gentree.cpp +++ b/src/jit/gentree.cpp @@ -11436,8 +11436,8 @@ void Compiler::gtDispLIRNode(GenTree* node, const char* prefixMsg /* = nullptr * printf("%*s", (int)prefixIndent, ""); } - // 49 spaces for alignment - printf("%-49s", ""); + // 50 spaces for alignment + printf("%-50s", ""); #if FEATURE_SET_FLAGS // additional flag enlarges the flag field by one character printf(" "); diff --git a/src/jit/lsrabuild.cpp b/src/jit/lsrabuild.cpp index fe8b7678c2..c1f0bfa0b1 100644 --- a/src/jit/lsrabuild.cpp +++ b/src/jit/lsrabuild.cpp @@ -2761,6 +2761,10 @@ int LinearScan::BuildOperandUses(GenTree* node, regMaskTP candidates) { return BuildIndirUses(node->AsIndir(), candidates); } + if (node->OperIs(GT_LEA)) + { + return BuildAddrUses(node, candidates); + } #ifdef FEATURE_HW_INTRINSICS if (node->OperIsHWIntrinsic()) { diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.cs b/tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.cs new file mode 100644 index 0000000000..1c4b98f098 --- /dev/null +++ b/tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.cs @@ -0,0 +1,64 @@ +// 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.Diagnostics; +using System.Runtime.CompilerServices; +using System.Runtime.Intrinsics; +using System.Runtime.Intrinsics.X86; +using static System.Runtime.Intrinsics.X86.Avx; +using static System.Runtime.Intrinsics.X86.Avx2; + +class GitHub_25039 +{ + static ReadOnlySpan PermTable => new byte[] + { + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + 0, 1, 2, 3, 4, 5, 6, 7, /* 0*/ + }; + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + static unsafe Vector256 GetPermutation(byte* pBase, int pvbyte) + { + Debug.Assert(pvbyte >= 0); + Debug.Assert(pvbyte < 255); + Debug.Assert(pBase != null); + return ConvertToVector256Int32(pBase + pvbyte * 8); + } + + static unsafe int Main(string[] args) + { + if (System.Runtime.Intrinsics.X86.Avx2.IsSupported) + { + try + { + var src = new int[1024]; + fixed (int* pSrc = &src[0]) + fixed (byte* pBase = &PermTable[0]) + { + + for (var i = 0; i < 100; i++) + { + var srcv = LoadDquVector256(pSrc + i); + var pe = i & 0x7; + var permuted = PermuteVar8x32(srcv, GetPermutation(pBase, (int)pe)); + Store(pSrc + i, permuted); + } + } + } + catch (Exception e) + { + Console.WriteLine("Failed with exception " + e.Message); + return -1; + } + } + return 100; + } +} diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.csproj new file mode 100644 index 0000000000..bed7e2e916 --- /dev/null +++ b/tests/src/JIT/Regression/JitBlue/GitHub_25039/GitHub_25039.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + + + + + + + False + + + + None + True + True + + + + + + + + + + -- cgit v1.2.3