Set the HasExplicitSize flag when a class size is specified in metadata. (dotnet...
authorJeremy Koritzinsky <jekoritz@microsoft.com>
Fri, 24 May 2019 22:26:14 +0000 (15:26 -0700)
committerJan Kotas <jkotas@microsoft.com>
Fri, 24 May 2019 22:26:14 +0000 (15:26 -0700)
* Set the HasExplicitSize flag when a class size is specified in metadata.

* Add test from @mikedn.

Commit migrated from https://github.com/dotnet/coreclr/commit/0bdf613f09a3bf409717beb939195b39e40c6828

src/coreclr/src/vm/class.cpp
src/coreclr/tests/src/Loader/classloader/SequentialLayout/Regress/ExplicitSize/ExplicitSize.cs [new file with mode: 0644]
src/coreclr/tests/src/Loader/classloader/SequentialLayout/Regress/ExplicitSize/ExplicitSize.csproj [new file with mode: 0644]

index 10271c9..e52ca61 100644 (file)
@@ -3767,6 +3767,13 @@ VOID EEClassLayoutInfo::CollectLayoutFieldMetadataThrowing(
     {
         classSizeInMetadata = 0;
     }
+    else
+    {
+        // If we can get the class size from metadata, that means that the user
+        // explicitly provided a value to the StructLayoutAttribute.Size field
+        // or explicitly provided the size in IL.
+        pEEClassLayoutInfoOut->SetHasExplicitSize(TRUE);
+    }
 
     BYTE parentAlignmentRequirement = 0;
     if (fParentHasLayout)
diff --git a/src/coreclr/tests/src/Loader/classloader/SequentialLayout/Regress/ExplicitSize/ExplicitSize.cs b/src/coreclr/tests/src/Loader/classloader/SequentialLayout/Regress/ExplicitSize/ExplicitSize.cs
new file mode 100644 (file)
index 0000000..14cf90d
--- /dev/null
@@ -0,0 +1,35 @@
+// 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.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+unsafe class Program
+{
+    [StructLayout(LayoutKind.Sequential, Size = 16)]
+    struct GUID
+    {
+        private int align;
+    }
+
+    static int Main()
+    {
+        Guid initialGuid = Guid.Parse("E6218D43-3C16-48BF-9C3C-8076FF5AFCD0");
+        GUID g = default;
+        Test(initialGuid, &g);
+        return Unsafe.As<GUID, Guid>(ref g) == initialGuid ? 100 : 101;
+    }
+
+    [MethodImpl(MethodImplOptions.NoInlining)]
+    static GUID GetGUID(ref Guid guid) => Unsafe.As<Guid, GUID>(ref guid);
+
+    [MethodImpl(MethodImplOptions.NoInlining)]
+    static unsafe void Test(Guid initialGuid, GUID* result)
+    {
+        Guid g = initialGuid;
+        GUID guid = GetGUID(ref g);
+        Unsafe.CopyBlock(result, &guid, (uint)sizeof(GUID));
+    }
+}
diff --git a/src/coreclr/tests/src/Loader/classloader/SequentialLayout/Regress/ExplicitSize/ExplicitSize.csproj b/src/coreclr/tests/src/Loader/classloader/SequentialLayout/Regress/ExplicitSize/ExplicitSize.csproj
new file mode 100644 (file)
index 0000000..667fd21
--- /dev/null
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <AssemblyName>ExplicitSize</AssemblyName>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+    <OutputType>Exe</OutputType>
+    <CLRTestPriority>1</CLRTestPriority>
+  </PropertyGroup>
+  <ItemGroup>
+    <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+      <Visible>False</Visible>
+    </CodeAnalysisDependentAssemblyPaths>
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="ExplicitSize.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+  </ItemGroup>
+  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+</Project>