|
// 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 Internal.Text;
using Internal.TypeSystem;
using ILCompiler.DependencyAnalysis.X86;
namespace ILCompiler.DependencyAnalysis.ReadyToRun
{
/// <summary>
/// This node emits a thunk calling DelayLoad_Helper with a given instance signature
/// to populate its indirection cell.
/// </summary>
public partial class ImportThunk
{
protected override void EmitCode(NodeFactory factory, ref X86Emitter instructionEncoder, bool relocsOnly)
{
switch (_thunkKind)
{
case ImportThunkKind.Eager:
break;
case ImportThunkKind.DelayLoadHelper:
case ImportThunkKind.VirtualStubDispatch:
instructionEncoder.EmitXOR(Register.EAX, Register.EAX);
if (!relocsOnly)
{
// push table index
instructionEncoder.EmitPUSH((sbyte)_containingImportSection.IndexFromBeginningOfArray);
}
// push [module]
instructionEncoder.EmitPUSH(factory.ModuleImport);
break;
case ImportThunkKind.Lazy:
// mov edx, [module]
instructionEncoder.EmitMOV(Register.EDX, factory.ModuleImport);
break;
default:
throw new NotSupportedException(_thunkKind.ToString() + " is not supported");
}
instructionEncoder.EmitJMP(_helperCell);
}
}
}
|