From: David Wrighton Date: Wed, 17 Oct 2018 03:39:34 +0000 (-0700) Subject: Fix resetting of m_hasArgLocDescForStructInRegs (dotnet/coreclr#20450) X-Git-Tag: submit/tizen/20210909.063632~11030^2~3672 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3ce411558ea9d7b52e9d4f32ace0f6c3cac2907;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix resetting of m_hasArgLocDescForStructInRegs (dotnet/coreclr#20450) - Also add testcase Fixes dotnet/coreclr#20449 Commit migrated from https://github.com/dotnet/coreclr/commit/cf1b104f428bcb0cd1667ecdc1a613b7ddf1d1cd --- diff --git a/src/coreclr/src/vm/callingconvention.h b/src/coreclr/src/vm/callingconvention.h index 59553fb..b66279c 100644 --- a/src/coreclr/src/vm/callingconvention.h +++ b/src/coreclr/src/vm/callingconvention.h @@ -970,7 +970,7 @@ int ArgIteratorTemplate::GetNextOffset() m_argSize = argSize; m_argTypeHandle = thValueType; -#if defined(UNIX_AMD64_ABI) +#if defined(UNIX_AMD64_ABI) || defined (_TARGET_ARM64_) m_hasArgLocDescForStructInRegs = false; #endif diff --git a/src/coreclr/tests/src/reflection/regression/hfa/hfaParam.cs b/src/coreclr/tests/src/reflection/regression/hfa/hfaParam.cs new file mode 100644 index 0000000..2368a03 --- /dev/null +++ b/src/coreclr/tests/src/reflection/regression/hfa/hfaParam.cs @@ -0,0 +1,60 @@ +// 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; + +public struct HFAStruct +{ + public float f1; + public float f2; + public float f3; +} + +public struct IntStruct +{ + public int i1; + public int i2; + public int i3; +} + + +public class Test +{ + public static int TestMethod(HFAStruct hfaStruct, IntStruct intStruct) + { + if (hfaStruct.f1 != 1.0f) + return 0; + if (hfaStruct.f2 != 2.0f) + return 1; + if (hfaStruct.f3 != 3.0f) + return 2; + if (intStruct.i1 != 1) + return 3; + if (intStruct.i2 != 2) + return 4; + if (intStruct.i3 != 3) + return 5; + + return 100; + } + + public static int Main() + { + HFAStruct hfaStruct = new HFAStruct(); + hfaStruct.f1 = 1.0f; + hfaStruct.f2 = 2.0f; + hfaStruct.f3 = 3.0f; + + IntStruct intStruct = new IntStruct(); + intStruct.i1 = 1; + intStruct.i2 = 2; + intStruct.i3 = 3; + + int result = TestMethod(hfaStruct, intStruct); + if (result != 100) + return -result; + + return (int)typeof(Test).GetMethod("TestMethod").Invoke(null, new object[] {hfaStruct, intStruct}); + } +} diff --git a/src/coreclr/tests/src/reflection/regression/hfa/hfaParam.csproj b/src/coreclr/tests/src/reflection/regression/hfa/hfaParam.csproj new file mode 100644 index 0000000..d7711ba --- /dev/null +++ b/src/coreclr/tests/src/reflection/regression/hfa/hfaParam.csproj @@ -0,0 +1,36 @@ + + + + + Debug + AnyCPU + 2.0 + {CE893CE4-177E-47D3-A5DA-DF4D64E76812} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + BuildAndRun + 1 + + + + + + + + + False + + + + + + + + + + + + + \ No newline at end of file