2013-11-26 01:31:10 +01:00
|
|
|
// OpenTK.Rewrite: IL rewriter for OpenTK.dll
|
2013-11-25 00:19:54 +01:00
|
|
|
// Copyright (C) 2013 Stefanos Apostolopoulos
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using Mono.Cecil;
|
|
|
|
using Mono.Cecil.Cil;
|
2013-11-26 19:06:39 +01:00
|
|
|
using Mono.Cecil.Rocks;
|
2013-11-25 00:19:54 +01:00
|
|
|
|
|
|
|
namespace OpenTK.Rewrite
|
|
|
|
{
|
|
|
|
// Replaces OpenTK.InteropHelper method instances
|
|
|
|
// with the s IL instructions.
|
|
|
|
class Program
|
|
|
|
{
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
|
|
|
if (args.Length == 0)
|
|
|
|
{
|
2013-11-25 08:53:27 +01:00
|
|
|
Console.WriteLine("Usage: rewrite [file.dll] [file.snk]");
|
2013-11-25 00:19:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var program = new Program();
|
2013-11-25 08:53:27 +01:00
|
|
|
var file = args[0];
|
|
|
|
var key = args.Length >= 2 ? args[1] : null;
|
|
|
|
program.Rewrite(file, key);
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
|
2013-11-27 01:40:12 +01:00
|
|
|
static AssemblyDefinition mscorlib;
|
|
|
|
|
2013-11-25 08:53:27 +01:00
|
|
|
void Rewrite(string file, string keyfile)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-25 08:53:27 +01:00
|
|
|
// Specify assembly read and write parameters
|
|
|
|
// We want to keep a valid symbols file (pdb or mdb)
|
|
|
|
var read_params = new ReaderParameters();
|
|
|
|
var write_params = new WriterParameters();
|
2013-11-25 10:06:10 +01:00
|
|
|
#if false // Disabled because symbols file is locked during AfterBuild
|
2013-11-25 08:53:27 +01:00
|
|
|
var pdb = Path.ChangeExtension(file, "pdb");
|
|
|
|
var mdb = Path.ChangeExtension(file, "mdb");
|
|
|
|
ISymbolReaderProvider provider = null;
|
|
|
|
if (File.Exists(pdb))
|
|
|
|
{
|
|
|
|
provider = new Mono.Cecil.Pdb.PdbReaderProvider();
|
|
|
|
}
|
|
|
|
else if (File.Exists(mdb))
|
|
|
|
{
|
|
|
|
provider = new Mono.Cecil.Mdb.MdbReaderProvider();
|
|
|
|
}
|
|
|
|
read_params.SymbolReaderProvider = provider;
|
|
|
|
read_params.ReadSymbols = true;
|
|
|
|
write_params.WriteSymbols = true;
|
2013-11-25 10:06:10 +01:00
|
|
|
#endif
|
2013-11-25 08:53:27 +01:00
|
|
|
|
2013-11-25 10:06:10 +01:00
|
|
|
if (!String.IsNullOrEmpty(keyfile) && File.Exists(keyfile))
|
2013-11-25 08:53:27 +01:00
|
|
|
{
|
2013-11-25 10:06:10 +01:00
|
|
|
keyfile = Path.GetFullPath(keyfile);
|
2013-11-25 08:53:27 +01:00
|
|
|
var fs = new FileStream(keyfile, FileMode.Open);
|
|
|
|
var keypair = new System.Reflection.StrongNameKeyPair(fs);
|
|
|
|
fs.Close();
|
|
|
|
write_params.StrongNameKeyPair = keypair;
|
|
|
|
}
|
2013-11-25 10:06:10 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Console.Error.WriteLine("No keyfile specified or keyfile missing.");
|
|
|
|
}
|
2013-11-25 08:53:27 +01:00
|
|
|
|
|
|
|
// Load assembly and process all modules
|
|
|
|
var assembly = AssemblyDefinition.ReadAssembly(file, read_params);
|
2013-11-26 19:06:39 +01:00
|
|
|
var rewritten = assembly.CustomAttributes.FirstOrDefault(a => a.AttributeType.Name == "RewrittenAttribute");
|
|
|
|
if (rewritten == null)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-26 19:06:39 +01:00
|
|
|
foreach (var module in assembly.Modules)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-27 01:40:12 +01:00
|
|
|
foreach (var reference in module.AssemblyReferences)
|
2013-11-26 19:06:39 +01:00
|
|
|
{
|
2013-11-27 01:40:12 +01:00
|
|
|
var resolved = module.AssemblyResolver.Resolve(reference);
|
|
|
|
if (reference.Name == "mscorlib")
|
2013-11-26 19:06:39 +01:00
|
|
|
{
|
2013-11-27 01:40:12 +01:00
|
|
|
mscorlib = resolved;
|
2013-11-26 19:06:39 +01:00
|
|
|
}
|
2013-11-27 01:40:12 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-26 19:06:39 +01:00
|
|
|
|
2013-11-27 01:40:12 +01:00
|
|
|
if (mscorlib == null)
|
|
|
|
{
|
|
|
|
Console.Error.WriteLine("Falied to locate mscorlib");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (var module in assembly.Modules)
|
|
|
|
{
|
|
|
|
foreach (var type in module.Types)
|
|
|
|
{
|
|
|
|
Rewrite(type);
|
2013-11-26 19:06:39 +01:00
|
|
|
}
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-26 19:06:39 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Console.Error.WriteLine("Error: assembly has already been rewritten");
|
|
|
|
}
|
2013-11-25 00:19:54 +01:00
|
|
|
|
2013-11-25 08:53:27 +01:00
|
|
|
// Save rewritten assembly
|
|
|
|
assembly.Write(file, write_params);
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Rewrite(TypeDefinition type)
|
|
|
|
{
|
2013-11-26 01:31:10 +01:00
|
|
|
var entry_points = type.Fields.FirstOrDefault(f => f.Name == "EntryPoints");
|
|
|
|
if (entry_points != null)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-27 08:28:22 +01:00
|
|
|
// Build list of entry point signatures (one per entry point)
|
|
|
|
var entry_signatures = new List<MethodDefinition>();
|
|
|
|
entry_signatures.AddRange(type.Methods
|
2013-11-27 00:03:03 +01:00
|
|
|
.Where(t => t.CustomAttributes.Any(a => a.AttributeType.Name == "SlotAttribute")));
|
|
|
|
|
2013-11-27 08:28:22 +01:00
|
|
|
Rewrite(type, entry_points, entry_signatures);
|
2013-11-27 00:03:03 +01:00
|
|
|
|
2013-11-27 08:28:22 +01:00
|
|
|
RemoveNativeSignatures(type, entry_signatures);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type.Name == "RewrittenAttribute")
|
|
|
|
{
|
|
|
|
var rewritten_constructor = type.GetConstructors().First();
|
2013-11-27 08:45:28 +01:00
|
|
|
var rewritten = new CustomAttribute(rewritten_constructor);
|
|
|
|
rewritten.ConstructorArguments.Add(new CustomAttributeArgument(
|
2013-11-30 02:32:10 +01:00
|
|
|
type.Module.Import(mscorlib.MainModule.GetType("System.Boolean")), true));
|
2013-11-27 08:28:22 +01:00
|
|
|
type.Module.Assembly.CustomAttributes.Add(rewritten);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Rewrite(TypeDefinition type, FieldDefinition entry_points,
|
|
|
|
List<MethodDefinition> entry_signatures)
|
|
|
|
{
|
|
|
|
// Rewrite all wrapper methods
|
|
|
|
var wrapper_signatures = new List<MethodDefinition>();
|
|
|
|
wrapper_signatures.AddRange(type.Methods
|
|
|
|
.Where(m => m.IsPublic && m.CustomAttributes.Any(a => a.AttributeType.Name == "AutoGeneratedAttribute")));
|
|
|
|
|
|
|
|
foreach (var wrapper in wrapper_signatures)
|
|
|
|
{
|
|
|
|
var autogenerated = wrapper.CustomAttributes
|
|
|
|
.Where(a => a.AttributeType.Name == "AutoGeneratedAttribute");
|
|
|
|
if (autogenerated.Count() > 0)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-27 08:28:22 +01:00
|
|
|
var signature_name = (string)autogenerated.First()
|
2013-11-27 00:03:03 +01:00
|
|
|
.Fields.First(f => f.Name == "EntryPoint").Argument.Value;
|
2013-11-27 08:28:22 +01:00
|
|
|
var signature = entry_signatures.First(s => s.Name == signature_name);
|
2013-11-27 00:03:03 +01:00
|
|
|
var slot = (int)signature.CustomAttributes
|
|
|
|
.First(a => a.AttributeType.Name == "SlotAttribute")
|
|
|
|
.ConstructorArguments[0].Value;
|
|
|
|
|
|
|
|
ProcessMethod(wrapper, signature, slot, entry_points);
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-26 19:06:39 +01:00
|
|
|
|
2013-11-27 08:28:22 +01:00
|
|
|
RemoveSupportingAttributes(type);
|
|
|
|
|
|
|
|
if (type.NestedTypes.Count > 0)
|
2013-11-26 19:06:39 +01:00
|
|
|
{
|
2013-11-27 08:28:22 +01:00
|
|
|
foreach (var nested_type in type.NestedTypes)
|
|
|
|
{
|
|
|
|
Rewrite(nested_type, entry_points, entry_signatures);
|
|
|
|
}
|
2013-11-26 19:06:39 +01:00
|
|
|
}
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
|
2013-11-27 01:40:12 +01:00
|
|
|
void RemoveNativeSignatures(TypeDefinition type, List<MethodDefinition> methods)
|
|
|
|
{
|
|
|
|
while (methods.Count > 0)
|
|
|
|
{
|
|
|
|
type.Methods.Remove(methods.Last());
|
|
|
|
methods.RemoveAt(methods.Count - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveSupportingAttributes(TypeDefinition type)
|
|
|
|
{
|
|
|
|
foreach (var method in type.Methods)
|
|
|
|
{
|
|
|
|
var attr = method.CustomAttributes;
|
|
|
|
for (int i = 0; i < attr.Count; i++)
|
|
|
|
{
|
|
|
|
if (attr[i].AttributeType.Name == "AutoGeneratedAttribute")
|
|
|
|
{
|
|
|
|
attr.RemoveAt(i);
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-26 01:31:10 +01:00
|
|
|
// Create body for method
|
2013-11-27 00:03:03 +01:00
|
|
|
static void ProcessMethod(MethodDefinition wrapper, MethodDefinition native, int slot, FieldDefinition entry_points)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-27 01:40:12 +01:00
|
|
|
var nint = wrapper.DeclaringType.Module.Import(mscorlib.MainModule.GetType("System.IntPtr"));
|
2013-11-27 00:03:03 +01:00
|
|
|
var body = wrapper.Body;
|
2013-11-25 00:19:54 +01:00
|
|
|
var il = body.GetILProcessor();
|
2013-11-27 00:03:03 +01:00
|
|
|
var instructions = body.Instructions;
|
2013-11-26 01:31:10 +01:00
|
|
|
instructions.Clear();
|
|
|
|
|
|
|
|
// Declare pinned variables for every reference and array parameter
|
|
|
|
// and push each parameter on the stack
|
2013-11-27 00:03:03 +01:00
|
|
|
EmitParameters(wrapper, nint, body, il);
|
|
|
|
|
|
|
|
// Patch convenience wrappers
|
|
|
|
if (wrapper.Parameters.Count < native.Parameters.Count)
|
|
|
|
{
|
|
|
|
int parameter_count = EmitParameters(wrapper, nint, body, il);
|
|
|
|
int difference = native.Parameters.Count - parameter_count;
|
2013-11-29 19:24:38 +01:00
|
|
|
EmitConvenienceWrapper(wrapper, native, difference, body, il);
|
2013-11-27 00:03:03 +01:00
|
|
|
}
|
2013-11-25 00:19:54 +01:00
|
|
|
|
2013-11-26 01:31:10 +01:00
|
|
|
// push the entry point address on the stack
|
|
|
|
EmitEntryPoint(entry_points, il, slot);
|
2013-11-25 00:19:54 +01:00
|
|
|
|
2013-11-26 01:31:10 +01:00
|
|
|
// issue calli
|
2013-11-27 00:03:03 +01:00
|
|
|
EmitCall(il, native);
|
|
|
|
|
|
|
|
if (wrapper.ReturnType.Name != "Void")
|
|
|
|
{
|
2013-11-29 19:24:38 +01:00
|
|
|
EmitReturnTypeWrapper(wrapper, native, body, il);
|
2013-11-27 00:03:03 +01:00
|
|
|
}
|
2013-11-26 01:31:10 +01:00
|
|
|
|
|
|
|
// return
|
|
|
|
il.Emit(OpCodes.Ret);
|
2013-11-26 19:06:39 +01:00
|
|
|
|
2013-11-27 09:16:23 +01:00
|
|
|
if (body.Variables.Count > 0)
|
|
|
|
{
|
|
|
|
// Required for verifiable executables
|
|
|
|
// (otherwise peverify complains bitterly)
|
|
|
|
body.InitLocals = true;
|
|
|
|
}
|
2013-11-26 19:06:39 +01:00
|
|
|
body.OptimizeMacros();
|
2013-11-26 01:31:10 +01:00
|
|
|
}
|
|
|
|
|
2013-11-29 19:24:38 +01:00
|
|
|
private static void EmitReturnTypeWrapper(MethodDefinition wrapper, MethodDefinition native, MethodBody body, ILProcessor il)
|
|
|
|
{
|
|
|
|
if (wrapper.Parameters.Count < native.Parameters.Count)
|
|
|
|
{
|
|
|
|
// Convenience wrapper. The result is stored in the last local variable
|
|
|
|
il.Emit(OpCodes.Ldloc, body.Variables.Count - 1);
|
|
|
|
}
|
|
|
|
else if (wrapper.ReturnType != native.ReturnType)
|
|
|
|
{
|
|
|
|
if (wrapper.ReturnType.Name == "String")
|
|
|
|
{
|
|
|
|
// String return-type wrapper
|
|
|
|
// return new string((sbyte*)((void*)GetString()));
|
|
|
|
|
2013-11-30 02:32:10 +01:00
|
|
|
var intptr_to_voidpointer = wrapper.Module.Import(mscorlib.MainModule.GetType("System.IntPtr").GetMethods()
|
2013-11-29 19:24:38 +01:00
|
|
|
.First(m =>
|
|
|
|
{
|
|
|
|
return
|
|
|
|
m.Name == "op_Explicit" &&
|
|
|
|
m.ReturnType.Name == "Void*";
|
|
|
|
}));
|
|
|
|
|
2013-11-30 02:32:10 +01:00
|
|
|
var string_constructor = wrapper.Module.Import(mscorlib.MainModule.GetType("System.String").GetConstructors()
|
2013-11-29 19:24:38 +01:00
|
|
|
.First(m =>
|
|
|
|
{
|
2013-11-30 02:32:10 +01:00
|
|
|
var p = m.Parameters;
|
|
|
|
return p.Count > 0 && p[0].ParameterType.Name == "SByte*";
|
2013-11-29 19:24:38 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
il.Emit(OpCodes.Call, intptr_to_voidpointer);
|
|
|
|
il.Emit(OpCodes.Newobj, string_constructor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Console.Error.WriteLine("Return wrappers not implemented yet ({0})", native.Name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// nothing to do, the native call leaves the return value
|
|
|
|
// on the stack and we return that unmodified to the caller.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void EmitConvenienceWrapper(MethodDefinition wrapper,
|
|
|
|
MethodDefinition native, int difference, MethodBody body, ILProcessor il)
|
|
|
|
{
|
|
|
|
if (difference == 2)
|
|
|
|
{
|
|
|
|
// Convert sized out-array/reference to return value, for example:
|
|
|
|
// void GenTextures(int n, int[] textures) -> int GenTexture()
|
|
|
|
// {
|
|
|
|
// const int n = 1;
|
|
|
|
// int buffers;
|
|
|
|
// calli GenTextures(n, &textures);
|
|
|
|
// return result;
|
|
|
|
// }
|
|
|
|
body.Variables.Add(new VariableDefinition(native.Parameters.Last().ParameterType));
|
|
|
|
il.Emit(OpCodes.Ldc_I4, 1); // const int n = 1
|
|
|
|
il.Emit(OpCodes.Ldloca, body.Variables.Count - 1); // &buffers
|
|
|
|
}
|
|
|
|
else if (difference == 1 && wrapper.ReturnType.Name != "Void")
|
|
|
|
{
|
|
|
|
// Convert unsized out-array/reference to return value, for example:
|
|
|
|
// void GetBoolean(GetPName pname, out bool data) -> bool GetBoolean(GetPName pname)
|
|
|
|
// {
|
|
|
|
// bool result;
|
|
|
|
// GetBooleanv(pname, &result);
|
|
|
|
// return result;
|
|
|
|
// }
|
|
|
|
body.Variables.Add(new VariableDefinition(wrapper.ReturnType));
|
|
|
|
il.Emit(OpCodes.Ldloca, body.Variables.Count - 1);
|
|
|
|
}
|
|
|
|
else if (difference == 1 && wrapper.ReturnType.Name == "Void")
|
|
|
|
{
|
|
|
|
// Convert in-array/reference to single element, for example:
|
|
|
|
// void DeleteTextures(int n, ref int textures) -> void DeleteTexture(int texture)
|
|
|
|
// {
|
|
|
|
// const int n = 1;
|
|
|
|
// calli DeleteTextures(n, &textures);
|
|
|
|
// }
|
|
|
|
il.Emit(OpCodes.Ldc_I4, 1); // const int n = 1
|
|
|
|
il.Emit(OpCodes.Ldarga, wrapper.Parameters.Last()); // &textures
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Console.Error.WriteLine("Unknown wrapper type for ({0})", native.Name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-27 00:03:03 +01:00
|
|
|
static int EmitParameters(MethodDefinition method, TypeReference nint, MethodBody body, ILProcessor il)
|
2013-11-26 01:31:10 +01:00
|
|
|
{
|
2013-11-27 00:03:03 +01:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < method.Parameters.Count; i++)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-26 01:31:10 +01:00
|
|
|
var p = method.Parameters[i];
|
2013-11-26 19:06:39 +01:00
|
|
|
il.Emit(OpCodes.Ldarg, i);
|
|
|
|
|
2013-11-30 02:00:07 +01:00
|
|
|
if (p.ParameterType.IsByReference)
|
2013-11-29 19:24:38 +01:00
|
|
|
{
|
2013-11-30 02:00:07 +01:00
|
|
|
body.Variables.Add(new VariableDefinition(new PinnedType(p.ParameterType)));
|
2013-11-26 01:31:10 +01:00
|
|
|
var index = body.Variables.Count - 1;
|
2013-11-26 19:06:39 +01:00
|
|
|
il.Emit(OpCodes.Stloc, index);
|
|
|
|
il.Emit(OpCodes.Ldloc, index);
|
2013-11-30 02:00:07 +01:00
|
|
|
il.Emit(OpCodes.Conv_I);
|
|
|
|
}
|
|
|
|
else if (p.ParameterType.IsArray)
|
|
|
|
{
|
|
|
|
if (p.ParameterType.Name != method.Module.Import(typeof(string[])).Name)
|
|
|
|
{
|
|
|
|
// Pin the array and pass the address
|
|
|
|
// of its first element.
|
|
|
|
var element_type = p.ParameterType.GetElementType();
|
|
|
|
body.Variables.Add(new VariableDefinition(new PinnedType(new ByReferenceType(element_type))));
|
|
|
|
int pinned_index = body.Variables.Count - 1;
|
|
|
|
|
|
|
|
var empty = il.Create(OpCodes.Ldc_I4, 0);
|
|
|
|
var pin = il.Create(OpCodes.Ldarg, i);
|
|
|
|
var end = il.Create(OpCodes.Stloc, pinned_index);
|
|
|
|
|
|
|
|
// if (array == null) goto empty
|
|
|
|
il.Emit(OpCodes.Brfalse, empty);
|
|
|
|
|
|
|
|
// else if (array.Length != 0) goto pin
|
|
|
|
il.Emit(OpCodes.Ldarg, i);
|
|
|
|
il.Emit(OpCodes.Ldlen);
|
|
|
|
il.Emit(OpCodes.Conv_I4);
|
|
|
|
il.Emit(OpCodes.Brtrue, pin);
|
|
|
|
|
|
|
|
// empty: IntPtr ptr = IntPtr.Zero
|
|
|
|
il.Append(empty);
|
|
|
|
il.Emit(OpCodes.Conv_U);
|
|
|
|
il.Emit(OpCodes.Br, end);
|
|
|
|
|
|
|
|
// pin: &array[0]
|
|
|
|
il.Append(pin);
|
|
|
|
il.Emit(OpCodes.Ldc_I4, 0);
|
|
|
|
il.Emit(OpCodes.Ldelema, element_type);
|
|
|
|
|
|
|
|
// end: fixed (IntPtr ptr = &array[0])
|
|
|
|
il.Append(end);
|
|
|
|
il.Emit(OpCodes.Ldloc, pinned_index);
|
|
|
|
il.Emit(OpCodes.Conv_I);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// String[] requires special marshalling.
|
|
|
|
// Let the runtime handle this for now.
|
|
|
|
}
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-27 00:03:03 +01:00
|
|
|
return i;
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 01:31:10 +01:00
|
|
|
static void EmitEntryPoint(FieldDefinition entry_points, ILProcessor il, int slot)
|
|
|
|
{
|
|
|
|
il.Emit(OpCodes.Ldsfld, entry_points);
|
2013-11-26 19:06:39 +01:00
|
|
|
il.Emit(OpCodes.Ldc_I4, slot);
|
2013-11-26 01:31:10 +01:00
|
|
|
il.Emit(OpCodes.Ldelem_I);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EmitCall(ILProcessor il, MethodReference reference)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
|
|
|
var signature = new CallSite(reference.ReturnType)
|
|
|
|
{
|
2013-11-30 02:16:34 +01:00
|
|
|
CallingConvention = MethodCallingConvention.C,
|
2013-11-25 00:19:54 +01:00
|
|
|
};
|
2013-11-25 08:53:27 +01:00
|
|
|
|
2013-11-26 01:31:10 +01:00
|
|
|
foreach (var p in reference.Parameters)
|
2013-11-25 00:19:54 +01:00
|
|
|
{
|
2013-11-26 01:31:10 +01:00
|
|
|
signature.Parameters.Add(p);
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
2013-11-25 08:53:27 +01:00
|
|
|
|
|
|
|
// Since the last parameter is always the entry point address,
|
|
|
|
// we do not need any special preparation before emiting calli.
|
2013-11-26 01:31:10 +01:00
|
|
|
il.Emit(OpCodes.Calli, signature);
|
2013-11-25 00:19:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|