|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using Internal.TypeSystem;
namespace Internal.IL.Stubs.StartupCode
{
/// <summary>
/// Startup code that does initialization, Main invocation
/// and shutdown of the runtime.
/// </summary>
public sealed partial class NativeLibraryStartupMethod : ILStubMethod
{
private TypeDesc _owningType;
private MethodSignature _signature;
private IReadOnlyCollection<MethodDesc> _libraryInitializers;
public NativeLibraryStartupMethod(TypeDesc owningType, IReadOnlyCollection<MethodDesc> libraryInitializers)
{
_owningType = owningType;
_libraryInitializers = libraryInitializers;
}
public override TypeSystemContext Context
{
get
{
return _owningType.Context;
}
}
public override TypeDesc OwningType
{
get
{
return _owningType;
}
}
public override ReadOnlySpan<byte> Name
{
get
{
return "NativeLibraryStartup"u8;
}
}
public override string DiagnosticName
{
get
{
return "NativeLibraryStartup";
}
}
public override MethodIL EmitIL()
{
ILEmitter emitter = new ILEmitter();
ILCodeStream codeStream = emitter.NewCodeStream();
// Allow the class library to run explicitly ordered class constructors first thing in start-up.
if (_libraryInitializers != null)
{
foreach (MethodDesc method in _libraryInitializers)
{
codeStream.Emit(ILOpcode.call, emitter.NewToken(method));
}
}
MetadataType startup = Context.GetOptionalHelperType("StartupCodeHelpers"u8);
// Run module initializers
MethodDesc runModuleInitializers = startup?.GetMethod("RunModuleInitializers"u8, null);
if (runModuleInitializers != null)
{
codeStream.Emit(ILOpcode.call, emitter.NewToken(runModuleInitializers));
}
codeStream.Emit(ILOpcode.ret);
return emitter.Link(this);
}
public override MethodSignature Signature
{
get
{
_signature ??= new MethodSignature(MethodSignatureFlags.Static | MethodSignatureFlags.UnmanagedCallingConvention, 0,
Context.GetWellKnownType(WellKnownType.Void),
System.Array.Empty<TypeDesc>());
return _signature;
}
}
public override bool IsUnmanagedCallersOnly
{
get
{
return true;
}
}
}
}
|