From: Carol Eidt Date: Tue, 21 Aug 2018 08:44:07 +0000 (-0700) Subject: Handle null byref in helper (#19571) X-Git-Tag: accepted/tizen/unified/20190422.045933~1395 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d9c822c062b3a97ab16ef0f9c7a33be79819fe9;p=platform%2Fupstream%2Fcoreclr.git Handle null byref in helper (#19571) Add JIT_ByRefWriteBarrier to IsIPInMarkedJitHelper so that a null dereference will be handled. Fix #19444 --- diff --git a/src/vm/amd64/JitHelpers_Fast.asm b/src/vm/amd64/JitHelpers_Fast.asm index 6b94c66..83f7132 100644 --- a/src/vm/amd64/JitHelpers_Fast.asm +++ b/src/vm/amd64/JitHelpers_Fast.asm @@ -722,7 +722,7 @@ endif add rdi, 8h add rsi, 8h ret -LEAF_END JIT_ByRefWriteBarrier, _TEXT +LEAF_END_MARKED JIT_ByRefWriteBarrier, _TEXT g_pObjectClass equ ?g_pObjectClass@@3PEAVMethodTable@@EA diff --git a/src/vm/amd64/jithelpers_fast.S b/src/vm/amd64/jithelpers_fast.S index 63b5429..37f4142 100644 --- a/src/vm/amd64/jithelpers_fast.S +++ b/src/vm/amd64/jithelpers_fast.S @@ -384,7 +384,7 @@ LEAF_ENTRY JIT_ByRefWriteBarrier, _TEXT add rdi, 8h add rsi, 8h ret -LEAF_END JIT_ByRefWriteBarrier, _TEXT +LEAF_END_MARKED JIT_ByRefWriteBarrier, _TEXT // TODO: put definition for this in asmconstants.h #define CanCast 1 diff --git a/src/vm/excep.cpp b/src/vm/excep.cpp index 5cd5e6c..da07c5a 100644 --- a/src/vm/excep.cpp +++ b/src/vm/excep.cpp @@ -6951,6 +6951,7 @@ EXTERN_C void JIT_MemCpy_End(); EXTERN_C void JIT_WriteBarrier_End(); EXTERN_C void JIT_CheckedWriteBarrier_End(); +EXTERN_C void JIT_ByRefWriteBarrier_End(); #endif // _TARGET_X86_ #if defined(_TARGET_AMD64_) && defined(_DEBUG) @@ -6977,6 +6978,7 @@ bool IsIPInMarkedJitHelper(UINT_PTR uControlPc) CHECK_RANGE(JIT_WriteBarrier) CHECK_RANGE(JIT_CheckedWriteBarrier) + CHECK_RANGE(JIT_ByRefWriteBarrier) #else #ifdef FEATURE_PAL CHECK_RANGE(JIT_WriteBarrierGroup) diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_19444/GitHub_19444.cs b/tests/src/JIT/Regression/JitBlue/GitHub_19444/GitHub_19444.cs new file mode 100644 index 0000000..73a1294 --- /dev/null +++ b/tests/src/JIT/Regression/JitBlue/GitHub_19444/GitHub_19444.cs @@ -0,0 +1,69 @@ +// 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. + +// This test case illustrates a bug where the JIT_ByRefWriteBarrier was not +// included in IsIPInMarkedJitHelper on non-32-bit-x86 platforms. + +using System; + +class C0 +{ +} + +struct S0 +{ + public C0 F0; + public ulong F4; +} + +class C1 +{ + public S0 F3; +} + +struct S1 +{ + public S0 F3; +} + +struct S2 +{ + public C0 F0; + public uint F4; +} + +class C3 +{ + public S2 F3; +} + +struct S3 +{ + public S2 F3; +} + +public class GitHub_19444 +{ + static S1 s_38; + static C1 s_43; + static S3 s_1; + static C3 s_2; + + public static int Main() + { + try + { + s_38.F3 = s_43.F3; + s_1.F3 = s_2.F3; + } + catch (System.NullReferenceException) + { + Console.WriteLine("PASS"); + return 100; + } + Console.WriteLine("FAIL"); + return -1; + } +} + diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_19444/GitHub_19444.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_19444/GitHub_19444.csproj new file mode 100644 index 0000000..95aba99 --- /dev/null +++ b/tests/src/JIT/Regression/JitBlue/GitHub_19444/GitHub_19444.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + $(MSBuildProjectName) + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + + + + + + + False + + + + + True + + + + + + + + + +