Skip to content

Commit ccd67b0

Browse files
authored
Move DllImportGenerator to use DisableRuntimeMarshalling for its blittable classification (#64279)
1 parent b0e16a1 commit ccd67b0

File tree

214 files changed

+6593
-2951
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+6593
-2951
lines changed

Directory.Build.targets

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
<InformationalVersion Condition="'$(InformationalVersion)' == '' and '$(VersionSuffix)' != ''">$(ProductVersion)-$(VersionSuffix)</InformationalVersion>
2727
</PropertyGroup>
2828

29+
<ItemGroup>
30+
<SupportedNETCoreAppTargetFramework Include=".NETCoreApp,Version=v$(NETCoreAppMaximumVersion)" DisplayName=".NET $(NETCoreAppMaximumVersion)" Alias="net$(NETCoreAppMaximumVersion)" />
31+
</ItemGroup>
32+
2933
<!-- The Default behavior in VS is to show files for the first target framework in TargetFrameworks property.
3034
This is required to show all the files corresponding to all target frameworks in VS. -->
3135
<ItemGroup Condition="'$(DefaultLanguageSourceExtension)' != '' and

src/coreclr/System.Private.CoreLib/src/System/Diagnostics/Eventing/EventPipe.CoreCLR.cs

+2-5
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,8 @@ private static unsafe partial ulong Enable(
4040
[GeneratedDllImport(RuntimeHelpers.QCall, EntryPoint = "EventPipeInternal_DeleteProvider")]
4141
internal static partial void DeleteProvider(IntPtr provHandle);
4242

43-
#pragma warning disable DLLIMPORTGENANALYZER015 // Use 'GeneratedDllImportAttribute' instead of 'DllImportAttribute' to generate P/Invoke marshalling code at compile time
44-
// TODO: [DllImportGenerator] Switch to use GeneratedDllImport once we annotate blittable types used in interop in CoreLib (like Guid)
45-
[DllImport(RuntimeHelpers.QCall, EntryPoint = "EventPipeInternal_EventActivityIdControl")]
46-
internal static extern int EventActivityIdControl(uint controlCode, ref Guid activityId);
47-
#pragma warning restore DLLIMPORTGENANALYZER015
43+
[GeneratedDllImport(RuntimeHelpers.QCall, EntryPoint = "EventPipeInternal_EventActivityIdControl")]
44+
internal static partial int EventActivityIdControl(uint controlCode, ref Guid activityId);
4845

4946
[GeneratedDllImport(RuntimeHelpers.QCall, EntryPoint = "EventPipeInternal_WriteEventData")]
5047
internal static unsafe partial void WriteEventData(IntPtr eventHandle, EventProvider.EventData* pEventData, uint dataCount, Guid* activityId, Guid* relatedActivityId);

src/coreclr/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.CoreCLR.cs

+34-20
Original file line numberDiff line numberDiff line change
@@ -283,11 +283,9 @@ public static string GetTypeInfoName(ITypeInfo typeInfo!!)
283283
GetTypeFromCLSID(clsid, server, ObjectHandleOnStack.Create(ref type));
284284
return type;
285285
}
286-
#pragma warning disable DLLIMPORTGENANALYZER015 // Use 'GeneratedDllImportAttribute' instead of 'DllImportAttribute' to generate P/Invoke marshalling code at compile time
287-
// TODO: [DllImportGenerator] Switch to use GeneratedDllImport once we annotate blittable types used in interop in CoreLib (like Guid)
288-
[DllImport(RuntimeHelpers.QCall, EntryPoint = "MarshalNative_GetTypeFromCLSID", CharSet = CharSet.Unicode)]
289-
private static extern void GetTypeFromCLSID(in Guid clsid, string? server, ObjectHandleOnStack retType);
290-
#pragma warning restore DLLIMPORTGENANALYZER015
286+
287+
[GeneratedDllImport(RuntimeHelpers.QCall, EntryPoint = "MarshalNative_GetTypeFromCLSID", CharSet = CharSet.Unicode)]
288+
private static partial void GetTypeFromCLSID(in Guid clsid, string? server, ObjectHandleOnStack retType);
291289

292290
/// <summary>
293291
/// Return the IUnknown* for an Object if the current context is the one
@@ -698,32 +696,48 @@ public static object BindToMoniker(string monikerName)
698696
throw new NotSupportedException(SR.NotSupported_COM);
699697
}
700698

701-
CreateBindCtx(0, out IBindCtx bindctx);
702-
703-
MkParseDisplayName(bindctx, monikerName, out _, out IMoniker pmoniker);
704-
BindMoniker(pmoniker, 0, ref IID_IUnknown, out object obj);
699+
ThrowExceptionForHR(CreateBindCtx(0, out IntPtr bindctx));
705700

706-
return obj;
701+
try
702+
{
703+
ThrowExceptionForHR(MkParseDisplayName(bindctx, monikerName, out _, out IntPtr pmoniker));
704+
try
705+
{
706+
ThrowExceptionForHR(BindMoniker(pmoniker, 0, ref IID_IUnknown, out IntPtr ptr));
707+
try
708+
{
709+
return GetObjectForIUnknown(ptr);
710+
}
711+
finally
712+
{
713+
Release(ptr);
714+
}
715+
}
716+
finally
717+
{
718+
Release(pmoniker);
719+
}
720+
}
721+
finally
722+
{
723+
Release(bindctx);
724+
}
707725
}
708-
#pragma warning disable DLLIMPORTGENANALYZER015 // Use 'GeneratedDllImportAttribute' instead of 'DllImportAttribute' to generate P/Invoke marshalling code at compile time
709-
// These methods use built-in COM interop, which is not supported by the source generator.
710-
711726
// Revist after https://github.com/mono/linker/issues/1989 is fixed
712727
[UnconditionalSuppressMessage("ReflectionAnalysis", "IL2050:UnrecognizedReflectionPattern",
713728
Justification = "The calling method is annotated with RequiresUnreferencedCode")]
714-
[DllImport(Interop.Libraries.Ole32, PreserveSig = false)]
715-
private static extern void CreateBindCtx(uint reserved, out IBindCtx ppbc);
729+
[GeneratedDllImport(Interop.Libraries.Ole32)]
730+
private static partial int CreateBindCtx(uint reserved, out IntPtr ppbc);
716731

717732
[UnconditionalSuppressMessage("ReflectionAnalysis", "IL2050:UnrecognizedReflectionPattern",
718733
Justification = "The calling method is annotated with RequiresUnreferencedCode")]
719-
[DllImport(Interop.Libraries.Ole32, PreserveSig = false)]
720-
private static extern void MkParseDisplayName(IBindCtx pbc, [MarshalAs(UnmanagedType.LPWStr)] string szUserName, out uint pchEaten, out IMoniker ppmk);
734+
[GeneratedDllImport(Interop.Libraries.Ole32, PreserveSig = false)]
735+
private static partial int MkParseDisplayName(IntPtr pbc, [MarshalAs(UnmanagedType.LPWStr)] string szUserName, out uint pchEaten, out IntPtr ppmk);
721736

722737
[UnconditionalSuppressMessage("ReflectionAnalysis", "IL2050:UnrecognizedReflectionPattern",
723738
Justification = "The calling method is annotated with RequiresUnreferencedCode")]
724-
[DllImport(Interop.Libraries.Ole32, PreserveSig = false)]
725-
private static extern void BindMoniker(IMoniker pmk, uint grfOpt, ref Guid iidResult, [MarshalAs(UnmanagedType.Interface)] out object ppvResult);
726-
#pragma warning restore DLLIMPORTGENANALYZER015
739+
[GeneratedDllImport(Interop.Libraries.Ole32, PreserveSig = false)]
740+
private static partial int BindMoniker(IntPtr pmk, uint grfOpt, ref Guid iidResult, out IntPtr ppvResult);
727741

728742
[SupportedOSPlatform("windows")]
729743
[MethodImpl(MethodImplOptions.InternalCall)]

src/coreclr/nativeaot/Runtime.Base/src/System/Runtime/InternalCalls.cs

+37-25
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ internal enum ClassLibFunctionId
4646
IDynamicCastableGetInterfaceImplementation = 9,
4747
}
4848

49-
internal static class InternalCalls
49+
internal static partial class InternalCalls
5050
{
5151
//
5252
// internalcalls for System.GC.
@@ -59,17 +59,19 @@ internal static void RhCollect(int generation, InternalGCCollectionMode mode)
5959
RhpCollect(generation, mode);
6060
}
6161

62-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
63-
private static extern void RhpCollect(int generation, InternalGCCollectionMode mode);
62+
[GeneratedDllImport(Redhawk.BaseName)]
63+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
64+
private static partial void RhpCollect(int generation, InternalGCCollectionMode mode);
6465

6566
[RuntimeExport("RhGetGcTotalMemory")]
6667
internal static long RhGetGcTotalMemory()
6768
{
6869
return RhpGetGcTotalMemory();
6970
}
7071

71-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
72-
private static extern long RhpGetGcTotalMemory();
72+
[GeneratedDllImport(Redhawk.BaseName)]
73+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
74+
private static partial long RhpGetGcTotalMemory();
7375

7476
[RuntimeExport("RhStartNoGCRegion")]
7577
internal static int RhStartNoGCRegion(long totalSize, bool hasLohSize, long lohSize, bool disallowFullBlockingGC)
@@ -284,39 +286,49 @@ internal static extern unsafe bool RhpCallFilterFunclet(
284286

285287
// Block the current thread until at least one object needs to be finalized (returns true) or
286288
// memory is low (returns false and the finalizer thread should initiate a garbage collection).
287-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
288-
internal static extern uint RhpWaitForFinalizerRequest();
289+
[GeneratedDllImport(Redhawk.BaseName)]
290+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
291+
internal static partial uint RhpWaitForFinalizerRequest();
289292

290293
// Indicate that the current round of finalizations is complete.
291-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
292-
internal static extern void RhpSignalFinalizationComplete();
294+
[GeneratedDllImport(Redhawk.BaseName)]
295+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
296+
internal static partial void RhpSignalFinalizationComplete();
293297

294-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
295-
internal static extern void RhpAcquireCastCacheLock();
298+
[GeneratedDllImport(Redhawk.BaseName)]
299+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
300+
internal static partial void RhpAcquireCastCacheLock();
296301

297-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
298-
internal static extern void RhpReleaseCastCacheLock();
302+
[GeneratedDllImport(Redhawk.BaseName)]
303+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
304+
internal static partial void RhpReleaseCastCacheLock();
299305

300-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
301-
internal static extern ulong RhpGetTickCount64();
306+
[GeneratedDllImport(Redhawk.BaseName)]
307+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
308+
internal static partial ulong RhpGetTickCount64();
302309

303-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
304-
internal static extern void RhpAcquireThunkPoolLock();
310+
[GeneratedDllImport(Redhawk.BaseName)]
311+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
312+
internal static partial void RhpAcquireThunkPoolLock();
305313

306-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
307-
internal static extern void RhpReleaseThunkPoolLock();
314+
[GeneratedDllImport(Redhawk.BaseName)]
315+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
316+
internal static partial void RhpReleaseThunkPoolLock();
308317

309-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
310-
internal static extern IntPtr RhAllocateThunksMapping();
318+
[GeneratedDllImport(Redhawk.BaseName)]
319+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
320+
internal static partial IntPtr RhAllocateThunksMapping();
311321

312322
// Enters a no GC region, possibly doing a blocking GC if there is not enough
313323
// memory available to satisfy the caller's request.
314-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
315-
internal static extern int RhpStartNoGCRegion(long totalSize, bool hasLohSize, long lohSize, bool disallowFullBlockingGC);
324+
[GeneratedDllImport(Redhawk.BaseName)]
325+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
326+
internal static partial int RhpStartNoGCRegion(long totalSize, bool hasLohSize, long lohSize, bool disallowFullBlockingGC);
316327

317328
// Exits a no GC region, possibly doing a GC to clean up the garbage that
318329
// the caller allocated.
319-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
320-
internal static extern int RhpEndNoGCRegion();
330+
[GeneratedDllImport(Redhawk.BaseName)]
331+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
332+
internal static partial int RhpEndNoGCRegion();
321333
}
322334
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
namespace System.Runtime.InteropServices
5+
{
6+
/// <summary>
7+
/// Provides an equivalent to <see cref="UnmanagedCallersOnlyAttribute"/> for native
8+
/// functions declared in .NET.
9+
/// </summary>
10+
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
11+
public sealed class UnmanagedCallConvAttribute : Attribute
12+
{
13+
public UnmanagedCallConvAttribute()
14+
{
15+
}
16+
17+
/// <summary>
18+
/// Types indicating calling conventions for the unmanaged target.
19+
/// </summary>
20+
/// <remarks>
21+
/// If <c>null</c>, the semantics are identical to <c>CallingConvention.Winapi</c>.
22+
/// </remarks>
23+
public Type[]? CallConvs;
24+
}
25+
}

src/coreclr/nativeaot/Runtime.Base/src/System/Runtime/RuntimeExports.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace System.Runtime
1616
{
17-
internal static class RuntimeExports
17+
internal static partial class RuntimeExports
1818
{
1919
//
2020
// internal calls for allocation
@@ -301,8 +301,9 @@ public static unsafe int RhGetCurrentThreadStackTrace(IntPtr[] outputBuffer)
301301
return RhpGetCurrentThreadStackTrace(pOutputBuffer, (uint)((outputBuffer != null) ? outputBuffer.Length : 0), new UIntPtr(&pOutputBuffer));
302302
}
303303

304-
[DllImport(Redhawk.BaseName, CallingConvention = CallingConvention.Cdecl)]
305-
private static extern unsafe int RhpGetCurrentThreadStackTrace(IntPtr* pOutputBuffer, uint outputBufferLength, UIntPtr addressInCurrentFrame);
304+
[GeneratedDllImport(Redhawk.BaseName)]
305+
[UnmanagedCallConv(CallConvs = new Type[] { typeof(CallConvCdecl) })]
306+
private static unsafe partial int RhpGetCurrentThreadStackTrace(IntPtr* pOutputBuffer, uint outputBufferLength, UIntPtr addressInCurrentFrame);
306307

307308
// Worker for RhGetCurrentThreadStackTrace. RhGetCurrentThreadStackTrace just allocates a transition
308309
// frame that will be used to seed the stack trace and this method does all the real work.

0 commit comments

Comments
 (0)