ikvm-fork/runtime/vm.cs

1669 строки
52 KiB
C#
Исходник Обычный вид История

2002-12-18 19:00:25 +03:00
/*
2004-03-08 18:18:47 +03:00
Copyright (C) 2002, 2003, 2004 Jeroen Frijters
2002-12-18 19:00:25 +03:00
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Jeroen Frijters
jeroen@frijters.net
*/
using System;
2004-09-05 13:37:58 +04:00
using System.Threading;
2004-03-16 20:10:09 +03:00
using System.Resources;
2002-12-18 19:00:25 +03:00
using System.Reflection.Emit;
using System.Reflection;
using System.IO;
using System.Collections;
using System.Xml;
using System.Diagnostics;
2003-08-21 14:06:34 +04:00
using System.Text.RegularExpressions;
2002-12-18 19:00:25 +03:00
public class JVM
{
private static bool debug = false;
private static bool noJniStubs = false;
private static bool isStaticCompiler = false;
2003-12-20 01:19:18 +03:00
private static bool compilationPhase1;
2004-03-26 13:19:21 +03:00
private static string sourcePath;
2002-12-18 19:00:25 +03:00
public static bool Debug
{
get
{
return debug;
}
set
{
debug = value;
}
}
2004-03-26 13:19:21 +03:00
public static string SourcePath
{
get
{
return sourcePath;
}
set
{
sourcePath = value;
}
}
2002-12-18 19:00:25 +03:00
public static bool NoJniStubs
{
get
{
return noJniStubs;
}
}
public static bool IsStaticCompiler
{
get
{
return isStaticCompiler;
}
}
2003-12-20 01:19:18 +03:00
public static bool IsStaticCompilerPhase1
{
get
{
return compilationPhase1;
}
}
2003-06-03 12:38:37 +04:00
public static bool CompileInnerClassesAsNestedTypes
{
get
{
// NOTE at the moment, we always do this when compiling statically
// note that it makes no sense to turn this on when we're dynamically
// running Java code, it only makes sense to turn it off when statically
// compiling code that is never used as a library.
return IsStaticCompiler;
}
}
2004-03-20 16:25:08 +03:00
internal static bool IsUnix
{
get
{
return Environment.OSVersion.ToString().IndexOf("Unix") >= 0;
}
}
2004-09-05 13:37:58 +04:00
internal static string MangleResourceName(string name)
{
// FXBUG there really shouldn't be any need to mangle the resource names,
// but in order for ILDASM/ILASM round tripping to work reliably, we have
// to make sure that we don't produce resource names that'll cause ILDASM
// to generate invalid filenames.
System.Text.StringBuilder sb = new System.Text.StringBuilder("ikvm__", name.Length + 6);
foreach(char c in name)
{
if("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-+.()$#@~=&{}[]0123456789`".IndexOf(c) != -1)
{
sb.Append(c);
}
else if(c == '/')
{
sb.Append('!');
}
else
{
sb.Append('%');
sb.Append(string.Format("{0:X4}", (int)c));
}
}
return sb.ToString();
}
2004-03-20 16:25:08 +03:00
2002-12-18 19:00:25 +03:00
private class CompilerClassLoader : ClassLoaderWrapper
{
private Hashtable classes;
2004-03-08 18:18:47 +03:00
private Hashtable remapped = new Hashtable();
private string assemblyName;
private string assemblyFile;
private string assemblyDir;
private string keyfilename;
private string version;
private bool targetIsModule;
2002-12-18 19:00:25 +03:00
private AssemblyBuilder assemblyBuilder;
2004-03-08 18:18:47 +03:00
internal CompilerClassLoader(string path, string keyfilename, string version, bool targetIsModule, string assemblyName, Hashtable classes)
2002-12-18 19:00:25 +03:00
: base(null)
{
this.classes = classes;
2004-03-08 18:18:47 +03:00
this.assemblyName = assemblyName;
FileInfo assemblyPath = new FileInfo(path);
this.assemblyFile = assemblyPath.Name;
this.assemblyDir = assemblyPath.DirectoryName;
this.targetIsModule = targetIsModule;
this.version = version;
this.keyfilename = keyfilename;
Tracer.Info(Tracer.Compiler, "Instantiate CompilerClassLoader for {0}", assemblyName);
2002-12-18 19:00:25 +03:00
}
protected override ModuleBuilder CreateModuleBuilder()
{
2003-08-21 14:06:34 +04:00
AssemblyName name = new AssemblyName();
2004-03-08 18:18:47 +03:00
name.Name = assemblyName;
2004-01-11 16:14:42 +03:00
if(keyfilename != null)
{
using(FileStream stream = File.Open(keyfilename, FileMode.Open))
{
name.KeyPair = new StrongNameKeyPair(stream);
}
}
name.Version = new Version(version);
2004-03-08 18:18:47 +03:00
assemblyBuilder = AppDomain.CurrentDomain.DefineDynamicAssembly(name, AssemblyBuilderAccess.RunAndSave, assemblyDir);
2004-01-11 16:14:42 +03:00
ModuleBuilder moduleBuilder;
2004-03-08 18:18:47 +03:00
moduleBuilder = assemblyBuilder.DefineDynamicModule(assemblyName, assemblyFile, JVM.Debug);
2004-06-07 12:28:57 +04:00
CustomAttributeBuilder ikvmModuleAttr = new CustomAttributeBuilder(typeof(JavaModuleAttribute).GetConstructor(Type.EmptyTypes), new object[0]);
2004-01-11 16:14:42 +03:00
moduleBuilder.SetCustomAttribute(ikvmModuleAttr);
2003-08-21 14:06:34 +04:00
if(JVM.Debug)
2002-12-18 19:00:25 +03:00
{
2003-08-21 14:06:34 +04:00
CustomAttributeBuilder debugAttr = new CustomAttributeBuilder(typeof(DebuggableAttribute).GetConstructor(new Type[] { typeof(bool), typeof(bool) }), new object[] { true, true });
2003-12-20 01:19:18 +03:00
assemblyBuilder.SetCustomAttribute(debugAttr);
2002-12-18 19:00:25 +03:00
}
return moduleBuilder;
}
2003-08-21 14:06:34 +04:00
internal override TypeWrapper GetTypeWrapperCompilerHook(string name)
2002-12-18 19:00:25 +03:00
{
2003-08-21 14:06:34 +04:00
TypeWrapper type = base.GetTypeWrapperCompilerHook(name);
2002-12-18 19:00:25 +03:00
if(type == null)
{
2004-03-08 18:18:47 +03:00
type = (TypeWrapper)remapped[name];
if(type != null)
{
return type;
}
2002-12-18 19:00:25 +03:00
ClassFile f = (ClassFile)classes[name];
if(f != null)
{
2003-12-20 01:19:18 +03:00
// to enhance error reporting we special case loading of netexp
2004-08-17 13:05:21 +04:00
// classes, to handle the case where the ikvmstub type doesn't exist
2003-12-20 01:19:18 +03:00
// (this happens when the .NET mscorlib.jar is used on Mono, for example)
2004-08-17 13:05:21 +04:00
string netexp = f.IKVMAssemblyAttribute;
2003-12-20 01:19:18 +03:00
if(netexp != null)
{
try
{
Assembly.Load(netexp);
}
catch(Exception)
{
Console.Error.WriteLine("netexp assembly not found: {0}", netexp);
}
2004-08-17 13:05:21 +04:00
// HACK create a new wrapper to see if the type is visible now
if(DotNetTypeWrapper.CreateDotNetTypeWrapper(name) == null)
2003-12-20 01:19:18 +03:00
{
2003-12-24 14:51:41 +03:00
return null;
2003-12-20 01:19:18 +03:00
}
}
2002-12-18 19:00:25 +03:00
type = DefineClass(f);
}
}
return type;
}
internal void SetMain(MethodInfo m, PEFileKinds target)
{
assemblyBuilder.SetEntryPoint(m, target);
}
internal void Save()
{
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "CompilerClassLoader.Save...");
2002-12-18 19:00:25 +03:00
FinishAll();
2004-01-11 16:14:42 +03:00
if(targetIsModule)
{
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "CompilerClassLoader saving temp.$$$ in {0}", assemblyDir);
2004-01-11 16:14:42 +03:00
string manifestAssembly = "temp.$$$";
assemblyBuilder.Save(manifestAssembly);
2004-03-08 18:18:47 +03:00
File.Delete(assemblyDir + manifestAssembly);
2004-01-11 16:14:42 +03:00
}
else
{
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "CompilerClassLoader saving {0} in {1}", assemblyFile, assemblyDir);
assemblyBuilder.Save(assemblyFile);
2004-01-11 16:14:42 +03:00
}
2002-12-18 19:00:25 +03:00
}
internal void AddResources(Hashtable resources)
{
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "CompilerClassLoader adding resources...");
2003-08-21 14:06:34 +04:00
ModuleBuilder moduleBuilder = this.ModuleBuilder;
2002-12-18 19:00:25 +03:00
foreach(DictionaryEntry d in resources)
{
byte[] buf = (byte[])d.Value;
if(buf.Length > 0)
{
2004-09-05 13:37:58 +04:00
IResourceWriter writer = moduleBuilder.DefineResource(JVM.MangleResourceName((string)d.Key), "");
2004-03-16 20:10:09 +03:00
writer.AddResource("ikvm", buf);
2002-12-18 19:00:25 +03:00
}
}
}
2004-03-08 18:18:47 +03:00
private static MethodAttributes MapMethodAccessModifiers(MapXml.MapModifiers mod)
{
const MapXml.MapModifiers access = MapXml.MapModifiers.Public | MapXml.MapModifiers.Protected | MapXml.MapModifiers.Private;
switch(mod & access)
{
case MapXml.MapModifiers.Public:
return MethodAttributes.Public;
case MapXml.MapModifiers.Protected:
return MethodAttributes.FamORAssem;
case MapXml.MapModifiers.Private:
return MethodAttributes.Private;
default:
return MethodAttributes.Assembly;
}
}
private static FieldAttributes MapFieldAccessModifiers(MapXml.MapModifiers mod)
{
const MapXml.MapModifiers access = MapXml.MapModifiers.Public | MapXml.MapModifiers.Protected | MapXml.MapModifiers.Private;
switch(mod & access)
{
case MapXml.MapModifiers.Public:
return FieldAttributes.Public;
case MapXml.MapModifiers.Protected:
return FieldAttributes.FamORAssem;
case MapXml.MapModifiers.Private:
return FieldAttributes.Private;
default:
return FieldAttributes.Assembly;
}
}
private class RemapperTypeWrapper : TypeWrapper
{
private TypeBuilder typeBuilder;
2004-07-10 11:19:42 +04:00
private TypeBuilder helperTypeBuilder;
2004-04-23 18:21:43 +04:00
private Type shadowType;
2004-03-08 18:18:47 +03:00
private MapXml.Class classDef;
private TypeWrapper[] interfaceWrappers;
2004-08-17 13:05:21 +04:00
internal override Assembly Assembly
{
get
{
return typeBuilder.Assembly;
}
}
2004-03-08 18:18:47 +03:00
internal override bool IsRemapped
{
get
{
return true;
}
}
private static TypeWrapper GetBaseWrapper(MapXml.Class c)
{
if((c.Modifiers & MapXml.MapModifiers.Interface) != 0)
{
return null;
}
if(c.Name == "java.lang.Object")
{
return null;
}
2004-03-16 20:10:09 +03:00
// NOTE we cannot use CoreClasses.java_lang_Object here, because that would trigger a load
// of java.lang.String and java.lang.Throwable before we've got the remapping set up.
2004-03-08 18:18:47 +03:00
return ClassLoaderWrapper.LoadClassCritical("java.lang.Object");
}
2004-08-17 13:05:21 +04:00
internal RemapperTypeWrapper(CompilerClassLoader classLoader, MapXml.Class c, MapXml.Root map)
2004-03-08 18:18:47 +03:00
: base((Modifiers)c.Modifiers, c.Name, GetBaseWrapper(c), classLoader)
{
classDef = c;
bool baseIsSealed = false;
2004-04-23 18:21:43 +04:00
shadowType = Type.GetType(c.Shadows, true);
classLoader.SetRemappedType(shadowType, this);
Type baseType = shadowType;
2004-03-08 18:18:47 +03:00
Type baseInterface = null;
if(baseType.IsInterface)
{
baseInterface = baseType;
}
TypeAttributes attrs = TypeAttributes.Public;
if((c.Modifiers & MapXml.MapModifiers.Interface) == 0)
{
attrs |= TypeAttributes.Class;
if(baseType.IsSealed)
{
baseIsSealed = true;
// FXBUG .NET framework bug
// ideally we would make the type sealed and abstract,
// but Reflection.Emit incorrectly prohibits that
// (the ECMA spec explicitly mentions this is valid)
// attrs |= TypeAttributes.Abstract | TypeAttributes.Sealed;
attrs |= TypeAttributes.Abstract;
}
}
else
{
attrs |= TypeAttributes.Interface | TypeAttributes.Abstract;
baseType = null;
}
if((c.Modifiers & MapXml.MapModifiers.Abstract) != 0)
{
attrs |= TypeAttributes.Abstract;
}
string name = c.Name.Replace('/', '.');
typeBuilder = classLoader.ModuleBuilder.DefineType(name, attrs, baseIsSealed ? typeof(object) : baseType);
if(baseInterface != null)
{
typeBuilder.AddInterfaceImplementation(baseInterface);
}
if(baseIsSealed)
{
AttributeHelper.SetModifiers(typeBuilder, (Modifiers)c.Modifiers);
}
2004-04-23 18:21:43 +04:00
if(c.scope == MapXml.Scope.Public)
2004-03-20 16:25:08 +03:00
{
// FXBUG we would like to emit an attribute with a Type argument here, but that doesn't work because
// of a bug in SetCustomAttribute that causes type arguments to be serialized incorrectly (if the type
// is in the same assembly). Normally we use AttributeHelper.FreezeDry to get around this, but that doesn't
2004-08-17 13:05:21 +04:00
// work in this case (no attribute is emitted at all). So we work around by emitting a string instead
2004-03-20 16:25:08 +03:00
ConstructorInfo remappedClassAttribute = typeof(RemappedClassAttribute).GetConstructor(new Type[] { typeof(string), typeof(Type) });
2004-04-23 18:21:43 +04:00
classLoader.assemblyBuilder.SetCustomAttribute(new CustomAttributeBuilder(remappedClassAttribute, new object[] { name, shadowType }));
2004-03-20 16:25:08 +03:00
ConstructorInfo remappedTypeAttribute = typeof(RemappedTypeAttribute).GetConstructor(new Type[] { typeof(Type) });
2004-04-23 18:21:43 +04:00
typeBuilder.SetCustomAttribute(new CustomAttributeBuilder(remappedTypeAttribute, new object[] { shadowType }));
2004-08-17 13:05:21 +04:00
AttributeHelper.HideFromJava(typeBuilder);
2004-03-20 16:25:08 +03:00
}
2004-03-08 18:18:47 +03:00
// HACK because of the above FXBUG that prevents us from making the type both abstract and sealed,
// we need to emit a private constructor (otherwise reflection will automatically generate a public
// default constructor, another lame feature)
if(baseIsSealed)
{
ConstructorBuilder cb = typeBuilder.DefineConstructor(MethodAttributes.Private, CallingConventions.Standard, Type.EmptyTypes);
ILGenerator ilgen = cb.GetILGenerator();
// lazyman's way to create a type-safe bogus constructor
ilgen.Emit(OpCodes.Ldnull);
ilgen.Emit(OpCodes.Throw);
}
2004-08-17 13:05:21 +04:00
if(c.Constructors != null)
{
foreach(MapXml.Constructor m in c.Constructors)
{
AddMethod(new RemappedConstructorWrapper(this, m));
}
}
if(c.Methods != null)
{
// TODO we should also add methods from our super classes (e.g. Throwable should have Object's methods)
foreach(MapXml.Method m in c.Methods)
{
AddMethod(new RemappedMethodWrapper(this, m, map));
}
}
}
abstract class RemappedMethodBaseWrapper : MethodWrapper
{
internal RemappedMethodBaseWrapper(RemapperTypeWrapper typeWrapper, MethodDescriptor md, Modifiers modifiers)
: base(typeWrapper, md, null, null, null, modifiers, MemberFlags.None)
{
}
internal abstract MethodBase DoLink();
internal abstract void Finish();
internal static void AddDeclaredExceptions(MethodBase mb, MapXml.Throws[] throws)
{
if(throws != null)
{
string[] exceptions = new string[throws.Length];
for(int i = 0; i < exceptions.Length; i++)
{
exceptions[i] = throws[i].Class;
}
AttributeHelper.SetThrowsAttribute(mb, exceptions);
}
}
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
sealed class RemappedConstructorWrapper : RemappedMethodBaseWrapper
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
private MapXml.Constructor m;
2004-03-08 18:18:47 +03:00
private MethodBuilder mbHelper;
2004-08-17 13:05:21 +04:00
internal RemappedConstructorWrapper(RemapperTypeWrapper typeWrapper, MapXml.Constructor m)
: base(typeWrapper, new MethodDescriptor("<init>", m.Sig), (Modifiers)m.Modifiers)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
this.m = m;
}
2004-03-08 18:18:47 +03:00
2004-08-17 13:05:21 +04:00
internal override void EmitCall(ILGenerator ilgen)
{
ilgen.Emit(OpCodes.Call, (ConstructorInfo)GetMethod());
}
internal override void EmitNewobj(ILGenerator ilgen)
{
if(mbHelper != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Call, mbHelper);
2004-03-08 18:18:47 +03:00
}
else
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Newobj, (ConstructorInfo)GetMethod());
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
}
internal override MethodBase DoLink()
{
MethodAttributes attr = MapMethodAccessModifiers(m.Modifiers);
MethodDescriptor md = new MethodDescriptor("<init>", m.Sig);
RemapperTypeWrapper typeWrapper = (RemapperTypeWrapper)DeclaringType;
Type[] paramTypes = typeWrapper.GetClassLoader().ArgTypeListFromSig(m.Sig);
ConstructorBuilder cbCore = null;
if(typeWrapper.shadowType.IsSealed)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
mbHelper = typeWrapper.typeBuilder.DefineMethod("newhelper", attr | MethodAttributes.Static, CallingConventions.Standard, typeWrapper.shadowType, paramTypes);
AttributeHelper.SetModifiers(mbHelper, (Modifiers)m.Modifiers);
AttributeHelper.SetNameSig(mbHelper, "<init>", m.Sig);
AddDeclaredExceptions(mbHelper, m.throws);
2004-03-08 18:18:47 +03:00
}
else
{
2004-08-17 13:05:21 +04:00
cbCore = typeWrapper.typeBuilder.DefineConstructor(attr, CallingConventions.Standard, paramTypes);
AddDeclaredExceptions(cbCore, m.throws);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
return cbCore;
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
internal override void Finish()
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
// TODO we should insert method tracing (if enabled)
2004-03-08 18:18:47 +03:00
2004-08-17 13:05:21 +04:00
Type[] paramTypes = this.GetParametersForDefineMethod();
ConstructorBuilder cbCore = GetMethod() as ConstructorBuilder;
if(cbCore != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ILGenerator ilgen = cbCore.GetILGenerator();
// TODO we need to support ghost (and other funky?) parameter types
if(m.body != null)
{
// TODO do we need return type conversion here?
m.body.Emit(ilgen);
}
else
{
ilgen.Emit(OpCodes.Ldarg_0);
for(int i = 0; i < paramTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)(i + 1));
}
if(m.redirect != null)
{
throw new NotImplementedException();
}
else
{
ConstructorInfo baseCon = DeclaringType.TypeAsTBD.GetConstructor(paramTypes);
if(baseCon == null)
{
// TODO better error handling
throw new InvalidOperationException("base class constructor not found: " + DeclaringType.Name + ".<init>" + m.Sig);
}
ilgen.Emit(OpCodes.Call, baseCon);
}
ilgen.Emit(OpCodes.Ret);
}
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
if(mbHelper != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ILGenerator ilgen = mbHelper.GetILGenerator();
if(m.redirect != null)
{
if(m.redirect.Type != "static" || m.redirect.Class == null || m.redirect.Name == null || m.redirect.Sig == null)
{
throw new NotImplementedException();
}
MethodDescriptor redir = new MethodDescriptor(m.redirect.Name, m.redirect.Sig);
Type[] redirParamTypes = ClassLoaderWrapper.GetBootstrapClassLoader().ArgTypeListFromSig(m.redirect.Sig);
for(int i = 0; i < redirParamTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)i);
}
// HACK if the class name contains a comma, we assume it is a .NET type
if(m.redirect.Class.IndexOf(',') >= 0)
{
Type type = Type.GetType(m.redirect.Class, true);
MethodInfo mi = type.GetMethod(m.redirect.Name, redirParamTypes);
if(mi == null)
{
throw new InvalidOperationException();
}
ilgen.Emit(OpCodes.Call, mi);
}
else
{
TypeWrapper tw = ClassLoaderWrapper.LoadClassCritical(m.redirect.Class);
MethodWrapper mw = tw.GetMethodWrapper(redir, false);
if(mw == null)
{
throw new InvalidOperationException();
}
mw.Link();
mw.EmitCall(ilgen);
}
// TODO we may need a cast here (or a stack to return type conversion)
ilgen.Emit(OpCodes.Ret);
}
else if(m.alternateBody != null)
{
m.alternateBody.Emit(ilgen);
}
else if(m.body != null)
{
// <body> doesn't make sense for helper constructors (which are actually factory methods)
throw new InvalidOperationException();
}
else
{
ConstructorInfo baseCon = DeclaringType.TypeAsTBD.GetConstructor(paramTypes);
if(baseCon == null)
{
// TODO better error handling
throw new InvalidOperationException("constructor not found: " + DeclaringType.Name + ".<init>" + m.Sig);
}
for(int i = 0; i < paramTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)i);
}
ilgen.Emit(OpCodes.Newobj, baseCon);
ilgen.Emit(OpCodes.Ret);
}
2004-03-08 18:18:47 +03:00
}
}
2004-08-17 13:05:21 +04:00
}
sealed class RemappedMethodWrapper : RemappedMethodBaseWrapper
{
private MapXml.Method m;
private MapXml.Root map;
private MethodBuilder mbHelper;
private ArrayList overriders = new ArrayList();
2004-03-08 18:18:47 +03:00
2004-08-17 13:05:21 +04:00
internal RemappedMethodWrapper(RemapperTypeWrapper typeWrapper, MapXml.Method m, MapXml.Root map)
: base(typeWrapper, new MethodDescriptor(m.Name, m.Sig), (Modifiers)m.Modifiers)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
this.m = m;
this.map = map;
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
internal override void EmitCall(ILGenerator ilgen)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Call, (MethodInfo)GetMethod());
}
2004-03-08 18:18:47 +03:00
2004-08-17 13:05:21 +04:00
internal override void EmitCallvirt(ILGenerator ilgen)
{
if(mbHelper != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Call, mbHelper);
2004-03-08 18:18:47 +03:00
}
else
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Callvirt, (MethodInfo)GetMethod());
2004-03-08 18:18:47 +03:00
}
}
2004-08-17 13:05:21 +04:00
internal override MethodBase DoLink()
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
RemapperTypeWrapper typeWrapper = (RemapperTypeWrapper)DeclaringType;
MethodDescriptor md = new MethodDescriptor(m.Name, m.Sig);
2004-03-08 18:18:47 +03:00
if(typeWrapper.IsInterface)
{
if(m.@override == null)
{
throw new InvalidOperationException(typeWrapper.Name + "." + m.Name + m.Sig);
}
2004-08-17 13:05:21 +04:00
MethodInfo interfaceMethod = typeWrapper.shadowType.GetMethod(m.@override.Name, typeWrapper.GetClassLoader().ArgTypeListFromSig(m.Sig));
2004-03-08 18:18:47 +03:00
if(interfaceMethod == null)
{
throw new InvalidOperationException(typeWrapper.Name + "." + m.Name + m.Sig);
}
if(m.throws != null)
{
// TODO we need a place to stick the declared exceptions
throw new NotImplementedException();
}
2004-07-10 11:19:42 +04:00
// if any of the remapped types has a body for this interface method, we need a helper method
// to special invocation through this interface for that type
ArrayList specialCases = null;
foreach(MapXml.Class c in map.assembly)
{
if(c.Methods != null)
{
foreach(MapXml.Method mm in c.Methods)
{
if(mm.Name == m.Name && mm.Sig == m.Sig && mm.body != null)
{
if(specialCases == null)
{
specialCases = new ArrayList();
}
specialCases.Add(c);
break;
}
}
}
}
2004-03-08 18:18:47 +03:00
CustomAttributeBuilder cab = new CustomAttributeBuilder(typeof(RemappedInterfaceMethodAttribute).GetConstructor(new Type[] { typeof(string), typeof(string) }), new object[] { m.Name, m.@override.Name } );
typeWrapper.typeBuilder.SetCustomAttribute(cab);
2004-08-17 13:05:21 +04:00
MethodBuilder helper = null;
2004-07-10 11:19:42 +04:00
if(specialCases != null)
{
2004-08-17 13:05:21 +04:00
Type[] temp = typeWrapper.GetClassLoader().ArgTypeListFromSig(m.Sig);
2004-07-10 11:19:42 +04:00
Type[] argTypes = new Type[temp.Length + 1];
temp.CopyTo(argTypes, 1);
argTypes[0] = typeWrapper.shadowType;
if(typeWrapper.helperTypeBuilder == null)
{
// FXBUG we use a nested helper class, because Reflection.Emit won't allow us to add a static method to the interface
typeWrapper.helperTypeBuilder = typeWrapper.typeBuilder.DefineNestedType("__Helper", TypeAttributes.NestedPublic | TypeAttributes.Class);
}
2004-08-17 13:05:21 +04:00
helper = typeWrapper.helperTypeBuilder.DefineMethod(m.Name, MethodAttributes.Public | MethodAttributes.Static, typeWrapper.GetClassLoader().RetTypeWrapperFromSig(m.Sig).TypeAsParameterType, argTypes);
2004-07-10 11:19:42 +04:00
ILGenerator ilgen = helper.GetILGenerator();
foreach(MapXml.Class c in specialCases)
{
TypeWrapper tw = typeWrapper.GetClassLoader().LoadClassByDottedName(c.Name);
ilgen.Emit(OpCodes.Ldarg_0);
ilgen.Emit(OpCodes.Isinst, tw.TypeAsTBD);
ilgen.Emit(OpCodes.Dup);
Label label = ilgen.DefineLabel();
ilgen.Emit(OpCodes.Brfalse_S, label);
for(int i = 1; i < argTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)i);
}
2004-08-17 13:05:21 +04:00
MethodWrapper mw = tw.GetMethodWrapper(md, false);
mw.Link();
mw.EmitCallvirt(ilgen);
2004-07-10 11:19:42 +04:00
ilgen.Emit(OpCodes.Ret);
ilgen.MarkLabel(label);
ilgen.Emit(OpCodes.Pop);
}
for(int i = 0; i < argTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)i);
}
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Callvirt, interfaceMethod);
2004-07-10 11:19:42 +04:00
ilgen.Emit(OpCodes.Ret);
}
2004-08-17 13:05:21 +04:00
mbHelper = helper;
return interfaceMethod;
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
else
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
MethodBuilder mbCore = null;
Type[] paramTypes = typeWrapper.GetClassLoader().ArgTypeListFromSig(m.Sig);
Type retType = typeWrapper.GetClassLoader().RetTypeWrapperFromSig(m.Sig).TypeAsParameterType;
if(typeWrapper.shadowType.IsSealed && (m.Modifiers & MapXml.MapModifiers.Static) == 0)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
// skip instance methods in sealed types, but we do need to add them to the overriders
if(typeWrapper.BaseTypeWrapper != null && (m.Modifiers & MapXml.MapModifiers.Private) == 0)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
RemappedMethodWrapper baseMethod = typeWrapper.BaseTypeWrapper.GetMethodWrapper(md, true) as RemappedMethodWrapper;
if(baseMethod != null &&
!baseMethod.IsFinal &&
!baseMethod.IsPrivate &&
(baseMethod.m.@override != null ||
baseMethod.m.redirect != null ||
baseMethod.m.body != null ||
baseMethod.m.alternateBody != null))
{
baseMethod.overriders.Add(typeWrapper);
}
2004-03-08 18:18:47 +03:00
}
}
2004-08-17 13:05:21 +04:00
else
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
MethodInfo overrideMethod = null;
MethodAttributes attr = MapMethodAccessModifiers(m.Modifiers);
if((m.Modifiers & MapXml.MapModifiers.Static) != 0)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
attr |= MethodAttributes.Static;
}
else if((m.Modifiers & MapXml.MapModifiers.Private) == 0 && (m.Modifiers & MapXml.MapModifiers.Final) == 0)
{
attr |= MethodAttributes.Virtual | MethodAttributes.NewSlot | MethodAttributes.CheckAccessOnOverride;
if(typeWrapper.BaseTypeWrapper != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
RemappedMethodWrapper baseMethod = typeWrapper.BaseTypeWrapper.GetMethodWrapper(md, true) as RemappedMethodWrapper;
if(baseMethod != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
baseMethod.overriders.Add(typeWrapper);
if(baseMethod.m.@override != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
overrideMethod = typeWrapper.BaseTypeWrapper.TypeAsTBD.GetMethod(baseMethod.m.@override.Name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, paramTypes, null);
if(overrideMethod == null)
{
throw new InvalidOperationException();
}
2004-03-08 18:18:47 +03:00
}
}
}
}
2004-08-17 13:05:21 +04:00
mbCore = typeWrapper.typeBuilder.DefineMethod(m.Name, attr, CallingConventions.Standard, retType, paramTypes);
if(overrideMethod != null)
{
typeWrapper.typeBuilder.DefineMethodOverride(mbCore, overrideMethod);
}
AddDeclaredExceptions(mbCore, m.throws);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
if((m.Modifiers & MapXml.MapModifiers.Static) == 0)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
// instance methods must have an instancehelper method
MethodAttributes attr = MapMethodAccessModifiers(m.Modifiers) | MethodAttributes.Static;
// NOTE instancehelpers for protected methods are made public,
// because cli.System.Object derived types can call protected methods
if((m.Modifiers & MapXml.MapModifiers.Protected) != 0)
{
attr &= ~MethodAttributes.MemberAccessMask;
attr |= MethodAttributes.Public;
// mark with specialname, so that tools (hopefully) won't show them
attr |= MethodAttributes.SpecialName;
}
Type[] exParamTypes = new Type[paramTypes.Length + 1];
Array.Copy(paramTypes, 0, exParamTypes, 1, paramTypes.Length);
exParamTypes[0] = typeWrapper.shadowType;
mbHelper = typeWrapper.typeBuilder.DefineMethod("instancehelper_" + m.Name, attr, CallingConventions.Standard, retType, exParamTypes);
AttributeHelper.SetModifiers(mbHelper, (Modifiers)m.Modifiers);
AttributeHelper.SetNameSig(mbHelper, m.Name, m.Sig);
AddDeclaredExceptions(mbHelper, m.throws);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
return mbCore;
2004-03-08 18:18:47 +03:00
}
}
2004-08-17 13:05:21 +04:00
internal override void Finish()
2004-03-08 18:18:47 +03:00
{
// TODO we should insert method tracing (if enabled)
2004-08-17 13:05:21 +04:00
MethodDescriptor md = this.Descriptor;
Type[] paramTypes = this.GetParametersForDefineMethod();
2004-03-08 18:18:47 +03:00
2004-08-17 13:05:21 +04:00
MethodBuilder mbCore = GetMethod() as MethodBuilder;
2004-03-08 18:18:47 +03:00
2004-08-17 13:05:21 +04:00
// NOTE sealed types don't have instance methods (only instancehelpers)
if(mbCore != null)
{
ILGenerator ilgen = mbCore.GetILGenerator();
MethodInfo baseMethod = null;
if(m.@override != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
baseMethod = DeclaringType.TypeAsTBD.GetMethod(m.@override.Name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, paramTypes, null);
if(baseMethod == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
throw new InvalidOperationException();
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
((TypeBuilder)DeclaringType.TypeAsBaseType).DefineMethodOverride(mbCore, baseMethod);
}
// TODO we need to support ghost (and other funky?) parameter types
if(m.body != null)
{
// we manually walk the instruction list, because we need to special case the ret instructions
Hashtable context = new Hashtable();
foreach(MapXml.Instruction instr in m.body.invoke)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
if(instr is MapXml.Ret)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
this.ReturnType.EmitConvStackToParameterType(ilgen, null);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
instr.Generate(context, ilgen);
2004-03-08 18:18:47 +03:00
}
}
2004-08-17 13:05:21 +04:00
else
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
int thisOffset = 0;
if((m.Modifiers & MapXml.MapModifiers.Static) == 0)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
thisOffset = 1;
ilgen.Emit(OpCodes.Ldarg_0);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
for(int i = 0; i < paramTypes.Length; i++)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Ldarg, (short)(i + thisOffset));
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
if(m.redirect != null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
EmitRedirect(DeclaringType.TypeAsTBD, ilgen);
2004-03-08 18:18:47 +03:00
}
else
{
2004-08-17 13:05:21 +04:00
if(baseMethod == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
throw new InvalidOperationException(DeclaringType.Name + "." + m.Name + m.Sig);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Call, baseMethod);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
this.ReturnType.EmitConvStackToParameterType(ilgen, null);
ilgen.Emit(OpCodes.Ret);
2004-03-08 18:18:47 +03:00
}
}
2004-08-17 13:05:21 +04:00
// NOTE static methods don't have helpers
if(mbHelper != null)
{
ILGenerator ilgen = mbHelper.GetILGenerator();
// check "this" for null
if(m.@override != null && m.redirect == null && m.body == null && m.alternateBody == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
// we're going to be calling the overridden version, so we don't need the null check
}
else
{
ilgen.Emit(OpCodes.Ldarg_0);
EmitHelper.NullCheck(ilgen);
}
if(mbCore != null &&
(m.@override == null || m.redirect != null) &&
(m.Modifiers & MapXml.MapModifiers.Private) == 0 && (m.Modifiers & MapXml.MapModifiers.Final) == 0)
{
// TODO we should have a way to supress this for overridden methods
ilgen.Emit(OpCodes.Ldarg_0);
ilgen.Emit(OpCodes.Isinst, DeclaringType.TypeAsBaseType);
ilgen.Emit(OpCodes.Dup);
Label skip = ilgen.DefineLabel();
ilgen.Emit(OpCodes.Brfalse_S, skip);
for(int i = 0; i < paramTypes.Length; i++)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Ldarg, (short)(i + 1));
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Callvirt, mbCore);
this.ReturnType.EmitConvStackToParameterType(ilgen, null);
ilgen.Emit(OpCodes.Ret);
ilgen.MarkLabel(skip);
ilgen.Emit(OpCodes.Pop);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
foreach(RemapperTypeWrapper overrider in overriders)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
RemappedMethodWrapper mw = (RemappedMethodWrapper)overrider.GetMethodWrapper(md, false);
if(mw.m.redirect == null && mw.m.body == null && mw.m.alternateBody == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
// the overridden method doesn't actually do anything special (that means it will end
// up calling the .NET method it overrides), so we don't need to special case this
2004-03-08 18:18:47 +03:00
}
else
{
ilgen.Emit(OpCodes.Ldarg_0);
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Isinst, overrider.TypeAsTBD);
2004-03-08 18:18:47 +03:00
ilgen.Emit(OpCodes.Dup);
Label skip = ilgen.DefineLabel();
ilgen.Emit(OpCodes.Brfalse_S, skip);
for(int i = 0; i < paramTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)(i + 1));
}
2004-08-17 13:05:21 +04:00
mw.Link();
mw.EmitCallvirt(ilgen);
this.ReturnType.EmitConvStackToParameterType(ilgen, null);
2004-03-08 18:18:47 +03:00
ilgen.Emit(OpCodes.Ret);
ilgen.MarkLabel(skip);
ilgen.Emit(OpCodes.Pop);
}
2004-08-17 13:05:21 +04:00
}
if(m.body != null || m.alternateBody != null)
{
MapXml.InstructionList body = m.alternateBody == null ? m.body : m.alternateBody;
// we manually walk the instruction list, because we need to special case the ret instructions
Hashtable context = new Hashtable();
foreach(MapXml.Instruction instr in body.invoke)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
if(instr is MapXml.Ret)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
this.ReturnType.EmitConvStackToParameterType(ilgen, null);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
instr.Generate(context, ilgen);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
}
else
{
Type shadowType = ((RemapperTypeWrapper)DeclaringType).shadowType;
for(int i = 0; i < paramTypes.Length + 1; i++)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Ldarg, (short)i);
}
if(m.redirect != null)
{
EmitRedirect(shadowType, ilgen);
}
else if(m.@override != null)
{
MethodInfo baseMethod = shadowType.GetMethod(m.@override.Name, BindingFlags.Instance | BindingFlags.Public, null, paramTypes, null);
if(baseMethod == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
throw new InvalidOperationException(DeclaringType.Name + "." + m.Name + m.Sig);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Callvirt, baseMethod);
2004-03-08 18:18:47 +03:00
}
else
{
2004-08-17 13:05:21 +04:00
RemappedMethodWrapper baseMethod = DeclaringType.BaseTypeWrapper.GetMethodWrapper(md, true) as RemappedMethodWrapper;
if(baseMethod == null || baseMethod.m.@override == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
throw new InvalidOperationException(DeclaringType.Name + "." + m.Name + m.Sig);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
MethodInfo overrideMethod = shadowType.GetMethod(baseMethod.m.@override.Name, BindingFlags.Instance | BindingFlags.Public, null, paramTypes, null);
if(overrideMethod == null)
2004-03-08 18:18:47 +03:00
{
2004-08-17 13:05:21 +04:00
throw new InvalidOperationException(DeclaringType.Name + "." + m.Name + m.Sig);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Callvirt, overrideMethod);
}
this.ReturnType.EmitConvStackToParameterType(ilgen, null);
ilgen.Emit(OpCodes.Ret);
}
}
// do we need a helper for non-virtual reflection invocation?
if(m.nonvirtualAlternateBody != null || (m.@override != null && overriders.Count > 0))
{
RemapperTypeWrapper typeWrapper = (RemapperTypeWrapper)DeclaringType;
Type[] argTypes = new Type[paramTypes.Length + 1];
argTypes[0] = typeWrapper.TypeAsParameterType;
this.GetParametersForDefineMethod().CopyTo(argTypes, 1);
MethodBuilder mb = typeWrapper.typeBuilder.DefineMethod("nonvirtualhelper/" + this.Name, MethodAttributes.Private | MethodAttributes.Static, this.ReturnTypeForDefineMethod, argTypes);
ILGenerator ilgen = mb.GetILGenerator();
if(m.nonvirtualAlternateBody != null)
{
m.nonvirtualAlternateBody.Emit(ilgen);
}
else
{
Type shadowType = ((RemapperTypeWrapper)DeclaringType).shadowType;
MethodInfo baseMethod = shadowType.GetMethod(m.@override.Name, BindingFlags.Instance | BindingFlags.Public, null, paramTypes, null);
if(baseMethod == null)
{
throw new InvalidOperationException(DeclaringType.Name + "." + m.Name + m.Sig);
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
ilgen.Emit(OpCodes.Ldarg_0);
for(int i = 0; i < paramTypes.Length; i++)
{
ilgen.Emit(OpCodes.Ldarg, (short)(i + 1));
}
ilgen.Emit(OpCodes.Call, baseMethod);
ilgen.Emit(OpCodes.Ret);
2004-03-08 18:18:47 +03:00
}
}
}
2004-08-17 13:05:21 +04:00
private void EmitRedirect(Type baseType, ILGenerator ilgen)
{
string redirName = m.redirect.Name;
string redirSig = m.redirect.Sig;
if(redirName == null)
{
redirName = m.Name;
}
if(redirSig == null)
{
redirSig = m.Sig;
}
ClassLoaderWrapper classLoader = ClassLoaderWrapper.GetBootstrapClassLoader();
MethodDescriptor redir = new MethodDescriptor(redirName, redirSig);
// HACK if the class name contains a comma, we assume it is a .NET type
if(m.redirect.Class == null || m.redirect.Class.IndexOf(',') >= 0)
{
// TODO better error handling
Type type = m.redirect.Class == null ? baseType : Type.GetType(m.redirect.Class, true);
Type[] redirParamTypes = classLoader.ArgTypeListFromSig(redirSig);
MethodInfo mi = type.GetMethod(m.redirect.Name, redirParamTypes);
if(mi == null)
{
throw new InvalidOperationException();
}
ilgen.Emit(OpCodes.Call, mi);
}
else
{
TypeWrapper tw = ClassLoaderWrapper.LoadClassCritical(m.redirect.Class);
MethodWrapper mw = tw.GetMethodWrapper(redir, false);
if(mw == null)
{
throw new InvalidOperationException("Missing redirect method: " + tw.Name + "." + redir.Name + redir.Signature);
}
mw.Link();
mw.EmitCall(ilgen);
}
if(!classLoader.RetTypeWrapperFromSig(redirSig).IsAssignableTo(this.ReturnType))
{
// NOTE we're passing a null context, this is safe because the return type
// should always be loadable
System.Diagnostics.Debug.Assert(!this.ReturnType.IsUnloadable);
this.ReturnType.EmitCheckcast(null, ilgen);
}
}
2004-03-08 18:18:47 +03:00
}
2004-07-10 11:19:42 +04:00
internal void Process2ndPass(MapXml.Root map)
2004-03-08 18:18:47 +03:00
{
MapXml.Class c = classDef;
TypeBuilder tb = typeBuilder;
2004-04-23 18:21:43 +04:00
bool baseIsSealed = shadowType.IsSealed;
2004-03-08 18:18:47 +03:00
if(c.Interfaces != null)
{
interfaceWrappers = new TypeWrapper[c.Interfaces.Length];
for(int i = 0; i < c.Interfaces.Length; i++)
{
TypeWrapper ifaceTypeWrapper = ClassLoaderWrapper.LoadClassCritical(c.Interfaces[i].Name);
interfaceWrappers[i] = ifaceTypeWrapper;
if(!baseIsSealed)
{
tb.AddInterfaceImplementation(ifaceTypeWrapper.TypeAsBaseType);
}
}
2004-05-14 13:31:54 +04:00
AttributeHelper.SetImplementsAttribute(tb, interfaceWrappers);
2004-03-08 18:18:47 +03:00
}
else
{
interfaceWrappers = TypeWrapper.EmptyArray;
}
2004-08-17 13:05:21 +04:00
// TODO fields should be moved to the RemapperTypeWrapper constructor as well
2004-03-08 18:18:47 +03:00
if(c.Fields != null)
{
foreach(MapXml.Field f in c.Fields)
{
if(f.redirect != null)
{
TypeWrapper tw = ClassLoaderWrapper.LoadClassCritical(f.redirect.Class);
2004-08-17 13:05:21 +04:00
MethodDescriptor redir = new MethodDescriptor(f.redirect.Name, f.redirect.Sig);
2004-03-08 18:18:47 +03:00
MethodWrapper method = tw.GetMethodWrapper(redir, false);
if(method == null || !method.IsStatic)
{
// TODO better error handling
throw new InvalidOperationException("remapping field: " + f.Name + f.Sig + " not found");
}
// TODO emit an static helper method that enables access to the field at runtime
2004-08-17 13:05:21 +04:00
method.Link();
AddField(FieldWrapper.Create1(this, GetClassLoader().FieldTypeWrapperFromSig(f.Sig), f.Name, f.Sig, (Modifiers)f.Modifiers, null, CodeEmitter.WrapCall(method), CodeEmitter.InternalError));
2004-03-08 18:18:47 +03:00
}
else if((f.Modifiers & MapXml.MapModifiers.Static) != 0)
{
FieldAttributes attr = MapFieldAccessModifiers(f.Modifiers) | FieldAttributes.Static;
if(f.Constant != null)
{
attr |= FieldAttributes.Literal;
}
else if((f.Modifiers & MapXml.MapModifiers.Final) != 0)
{
attr |= FieldAttributes.InitOnly;
}
2004-03-16 20:10:09 +03:00
FieldBuilder fb = tb.DefineField(f.Name, GetClassLoader().FieldTypeWrapperFromSig(f.Sig).TypeAsFieldType, attr);
2004-03-08 18:18:47 +03:00
object constant;
if(f.Constant != null)
{
switch(f.Sig[0])
{
case 'J':
constant = long.Parse(f.Constant);
break;
default:
// TODO support other types
throw new NotImplementedException("remapped constant field of type: " + f.Sig);
}
fb.SetConstant(constant);
2004-08-17 13:05:21 +04:00
AddField(new FieldWrapper.ConstantFieldWrapper(this, GetClassLoader().FieldTypeWrapperFromSig(f.Sig), f.Name, f.Sig, (Modifiers)f.Modifiers, fb, constant));
2004-03-08 18:18:47 +03:00
}
else
{
2004-08-17 13:05:21 +04:00
AddField(FieldWrapper.Create3(this, GetClassLoader().FieldTypeWrapperFromSig(f.Sig), fb, f.Sig, (Modifiers)f.Modifiers));
2004-03-08 18:18:47 +03:00
}
}
else
{
// TODO we should support adding arbitrary instance fields (the runtime will have to use
// a weak identity hashtable to store the extra information for subclasses that don't extend our stub)
throw new NotImplementedException(this.Name + "." + f.Name + f.Sig);
}
}
}
}
internal void Process3rdPass()
{
2004-08-17 13:05:21 +04:00
foreach(RemappedMethodBaseWrapper m in GetMethods())
{
m.Link();
}
}
internal void Process4thPass()
{
foreach(RemappedMethodBaseWrapper m in GetMethods())
2004-03-08 18:18:47 +03:00
{
m.Finish();
}
if(classDef.Clinit != null)
{
ConstructorBuilder cb = typeBuilder.DefineTypeInitializer();
ILGenerator ilgen = cb.GetILGenerator();
// TODO emit code to make sure super class is initialized
classDef.Clinit.body.Emit(ilgen);
}
// FXBUG because the AppDomain.TypeResolve event doesn't work correctly for inner classes,
// we need to explicitly finish the interface we implement (if they are ghosts, we need the nested __Interface type)
if(classDef.Interfaces != null)
{
foreach(MapXml.Interface iface in classDef.Interfaces)
{
GetClassLoader().LoadClassByDottedName(iface.Name).Finish();
}
}
typeBuilder.CreateType();
2004-07-10 11:19:42 +04:00
if(helperTypeBuilder != null)
{
helperTypeBuilder.CreateType();
}
2004-03-08 18:18:47 +03:00
}
2004-08-17 13:05:21 +04:00
internal override MethodBase LinkMethod(MethodWrapper mw)
{
return ((RemappedMethodBaseWrapper)mw).DoLink();
}
2004-03-08 18:18:47 +03:00
internal override TypeWrapper DeclaringTypeWrapper
{
get
{
// at the moment we don't support nested remapped types
return null;
}
}
2004-08-17 13:05:21 +04:00
internal override void Finish(bool forDebugSave)
2004-03-08 18:18:47 +03:00
{
}
protected override FieldWrapper GetFieldImpl(string fieldName, TypeWrapper fieldType)
{
// we don't resolve fields lazily
return null;
}
internal override TypeWrapper[] InnerClasses
{
get
{
return null;
}
}
internal override TypeWrapper[] Interfaces
{
get
{
return interfaceWrappers;
}
}
internal override Type TypeAsTBD
{
get
{
2004-04-23 18:21:43 +04:00
return shadowType;
2004-03-08 18:18:47 +03:00
}
}
internal override Type TypeAsBaseType
{
get
{
2004-03-16 20:10:09 +03:00
return typeBuilder;
2004-03-08 18:18:47 +03:00
}
}
internal override TypeBuilder TypeAsBuilder
{
get
{
return typeBuilder;
}
}
2004-03-16 20:10:09 +03:00
internal override bool IsMapUnsafeException
{
get
{
// any remapped exceptions are automatically unsafe
2004-04-23 18:21:43 +04:00
return shadowType == typeof(Exception) || shadowType.IsSubclassOf(typeof(Exception));
2004-03-16 20:10:09 +03:00
}
}
2004-03-08 18:18:47 +03:00
}
internal void EmitRemappedTypes(MapXml.Root map)
{
Tracer.Info(Tracer.Compiler, "Emit remapped types");
// 1st pass, put all types in remapped to make them loadable
2004-04-23 18:21:43 +04:00
foreach(MapXml.Class c in map.assembly)
2004-03-08 18:18:47 +03:00
{
2004-04-23 18:21:43 +04:00
if(c.Shadows != null)
{
2004-08-17 13:05:21 +04:00
remapped.Add(c.Name, new RemapperTypeWrapper(this, c, map));
2004-04-23 18:21:43 +04:00
}
2004-03-08 18:18:47 +03:00
}
DynamicTypeWrapper.SetupGhosts(map);
// 2nd pass, resolve interfaces, publish methods/fields
2004-04-23 18:21:43 +04:00
foreach(MapXml.Class c in map.assembly)
2004-03-08 18:18:47 +03:00
{
2004-04-23 18:21:43 +04:00
if(c.Shadows != null)
{
RemapperTypeWrapper typeWrapper = (RemapperTypeWrapper)remapped[c.Name];
2004-07-10 11:19:42 +04:00
typeWrapper.Process2ndPass(map);
2004-04-23 18:21:43 +04:00
}
2004-03-08 18:18:47 +03:00
}
}
internal void FinishRemappedTypes()
{
2004-08-17 13:05:21 +04:00
// 3rd pass, link the methods. Note that a side effect of the linking is the
// twiddling with the overriders array in the base methods, so we need to do this
// as a separate pass before we compile the methods
2004-03-08 18:18:47 +03:00
foreach(RemapperTypeWrapper typeWrapper in remapped.Values)
{
typeWrapper.Process3rdPass();
}
2004-08-17 13:05:21 +04:00
// 4th pass, implement methods/fields and bake the type
foreach(RemapperTypeWrapper typeWrapper in remapped.Values)
{
typeWrapper.Process4thPass();
}
2004-03-08 18:18:47 +03:00
}
2002-12-18 19:00:25 +03:00
}
2004-09-05 13:37:58 +04:00
public static void Compile(string path, string keyfilename, string version, bool targetIsModule, string assembly, string mainClass, ApartmentState apartment, PEFileKinds target, bool guessFileKind, byte[][] classes, string[] references, bool nojni, Hashtable resources, string[] classesToExclude, string remapfile)
2002-12-18 19:00:25 +03:00
{
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "JVM.Compile path: {0}, assembly: {1}", path, assembly);
2002-12-18 19:00:25 +03:00
isStaticCompiler = true;
noJniStubs = nojni;
2003-04-26 16:13:02 +04:00
foreach(string r in references)
{
2004-02-06 22:09:32 +03:00
try
{
2004-03-08 18:18:47 +03:00
Assembly reference = Assembly.LoadFrom(r);
if(reference == null)
2004-02-06 22:09:32 +03:00
{
Console.Error.WriteLine("Error: reference not found: {0}", r);
return;
}
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "Loaded reference assembly: {0}", reference.FullName);
2004-02-06 22:09:32 +03:00
}
catch(Exception x)
{
Console.Error.WriteLine("Error: invalid reference: {0} ({1})", r, x.Message);
return;
}
2003-04-26 16:13:02 +04:00
}
2002-12-18 19:00:25 +03:00
Hashtable h = new Hashtable();
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "Parsing class files");
2002-12-18 19:00:25 +03:00
for(int i = 0; i < classes.Length; i++)
{
2004-02-02 12:46:13 +03:00
ClassFile f;
try
{
2004-08-30 19:56:23 +04:00
f = new ClassFile(classes[i], 0, classes[i].Length, null, true);
2004-02-02 12:46:13 +03:00
}
2004-08-17 13:05:21 +04:00
catch(UnsupportedClassVersionError x)
2004-02-02 12:46:13 +03:00
{
Console.Error.WriteLine("Error: unsupported class file version: {0}", x.Message);
return;
}
2004-08-17 13:05:21 +04:00
catch(ClassFormatError x)
2004-02-02 12:46:13 +03:00
{
Console.Error.WriteLine("Error: invalid class file: {0}", x.Message);
return;
}
2003-05-30 16:08:59 +04:00
string name = f.Name;
2003-08-21 14:06:34 +04:00
bool excluded = false;
for(int j = 0; j < classesToExclude.Length; j++)
{
if(Regex.IsMatch(name, classesToExclude[j]))
{
excluded = true;
break;
}
}
2002-12-29 19:27:00 +03:00
if(h.ContainsKey(name))
{
2004-05-28 18:35:00 +04:00
Console.Error.WriteLine("Warning: duplicate class name: {0}", name);
excluded = true;
2002-12-29 19:27:00 +03:00
}
2003-08-21 14:06:34 +04:00
if(!excluded)
{
h[name] = f;
2003-12-20 01:19:18 +03:00
if(mainClass == null && (guessFileKind || target != PEFileKinds.Dll))
{
foreach(ClassFile.Method m in f.Methods)
{
if(m.IsPublic && m.IsStatic && m.Name == "main" && m.Signature == "([Ljava.lang.String;)V")
{
Console.Error.WriteLine("Note: found main method in class: {0}", f.Name);
mainClass = f.Name;
break;
}
}
}
2003-08-21 14:06:34 +04:00
}
2002-12-18 19:00:25 +03:00
}
2003-02-20 17:18:38 +03:00
2003-12-20 01:19:18 +03:00
if(guessFileKind && mainClass == null)
{
target = PEFileKinds.Dll;
}
2004-02-11 14:37:28 +03:00
if(target == PEFileKinds.Dll && mainClass != null)
{
Console.Error.WriteLine("Error: main class cannot be specified for library or module");
return;
}
2003-12-20 01:19:18 +03:00
if(target != PEFileKinds.Dll && mainClass == null)
{
Console.Error.WriteLine("Error: no main method found");
return;
}
if(path == null)
{
2004-01-11 16:14:42 +03:00
if(target == PEFileKinds.Dll)
{
if(targetIsModule)
{
path = assembly + ".netmodule";
}
else
{
path = assembly + ".dll";
}
}
else
{
path = assembly + ".exe";
}
2003-12-20 01:19:18 +03:00
Console.Error.WriteLine("Note: output file is: {0}", path);
}
2004-01-11 16:14:42 +03:00
if(targetIsModule)
{
// TODO if we're overwriting a user specified assembly name, we need to emit a warning
2004-03-08 18:18:47 +03:00
assembly = new FileInfo(path).Name;
2004-01-11 16:14:42 +03:00
}
if(target == PEFileKinds.Dll && !path.ToLower().EndsWith(".dll") && !targetIsModule)
2003-12-20 01:19:18 +03:00
{
Console.Error.WriteLine("Error: library output file must end with .dll");
return;
}
if(target != PEFileKinds.Dll && !path.ToLower().EndsWith(".exe"))
{
Console.Error.WriteLine("Error: executable output file must end with .exe");
return;
}
2003-02-20 17:18:38 +03:00
// make sure all inner classes have a reference to their outer class
// note that you cannot use the InnerClasses attribute in the inner class for this, because
// anonymous inner classes do not have a reference to their outer class
foreach(ClassFile classFile in h.Values)
{
2004-08-17 13:05:21 +04:00
// don't handle inner classes for ikvmstub types
if(classFile.IKVMAssemblyAttribute == null)
2003-02-20 17:18:38 +03:00
{
ClassFile.InnerClass[] innerClasses = classFile.InnerClasses;
2003-05-30 16:08:59 +04:00
if(innerClasses != null)
2003-02-20 17:18:38 +03:00
{
2003-05-30 16:08:59 +04:00
for(int j = 0; j < innerClasses.Length; j++)
2003-02-20 17:18:38 +03:00
{
2003-05-30 16:08:59 +04:00
if(innerClasses[j].outerClass != 0 && classFile.GetConstantPoolClass(innerClasses[j].outerClass) == classFile.Name)
2003-02-20 17:18:38 +03:00
{
2003-05-30 16:08:59 +04:00
string inner = classFile.GetConstantPoolClass(innerClasses[j].innerClass);
ClassFile innerClass = (ClassFile)h[inner];
if(innerClass != null)
2003-02-20 17:18:38 +03:00
{
2003-05-30 16:08:59 +04:00
if(innerClass.OuterClass != null)
{
2003-12-20 01:19:18 +03:00
Console.Error.WriteLine("Error: inner class {0} has multiple outer classes", inner);
2003-05-30 16:08:59 +04:00
return;
}
innerClass.OuterClass = classFile;
}
else
{
Console.Error.WriteLine("Warning: inner class {0} missing", inner);
2003-02-20 17:18:38 +03:00
}
}
}
}
}
}
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "Constructing compiler");
2004-01-11 16:14:42 +03:00
CompilerClassLoader loader = new CompilerClassLoader(path, keyfilename, version, targetIsModule, assembly, h);
2002-12-18 19:00:25 +03:00
ClassLoaderWrapper.SetBootstrapClassLoader(loader);
2003-12-20 01:19:18 +03:00
compilationPhase1 = true;
2004-03-08 18:18:47 +03:00
MapXml.Root map = null;
if(remapfile != null)
{
Tracer.Info(Tracer.Compiler, "Loading remapped types (1) from {0}", remapfile);
System.Xml.Serialization.XmlSerializer ser = new System.Xml.Serialization.XmlSerializer(typeof(MapXml.Root));
2004-06-14 14:36:38 +04:00
ser.UnknownElement += new System.Xml.Serialization.XmlElementEventHandler(ser_UnknownElement);
2004-03-08 18:18:47 +03:00
using(FileStream fs = File.Open(remapfile, FileMode.Open))
{
map = (MapXml.Root)ser.Deserialize(fs);
}
loader.EmitRemappedTypes(map);
}
2003-12-20 01:19:18 +03:00
// Do a sanity check to make sure some of the bootstrap classes are available
2004-03-08 18:18:47 +03:00
if(loader.LoadClassByDottedNameFast("java.lang.Object") == null)
2003-12-20 01:19:18 +03:00
{
2004-05-27 13:32:35 +04:00
Assembly classpath = Assembly.LoadWithPartialName("IKVM.GNU.Classpath");
2003-12-20 01:19:18 +03:00
if(classpath == null)
{
2004-05-27 13:32:35 +04:00
Console.Error.WriteLine("Error: bootstrap classes missing and IKVM.GNU.Classpath.dll not found");
2003-12-20 01:19:18 +03:00
return;
}
Console.Error.WriteLine("Warning: bootstrap classes are missing, automatically adding reference to {0}", classpath.Location);
Console.Error.WriteLine(" (to avoid this warning add \"-reference:{0}\" to the command line)", classpath.Location);
2004-03-08 18:18:47 +03:00
// we need to scan again for remapped types, now that we've loaded the core library
ClassLoaderWrapper.LoadRemappedTypes();
2003-12-20 01:19:18 +03:00
}
2004-03-08 18:18:47 +03:00
Tracer.Info(Tracer.Compiler, "Compiling class files (1)");
ArrayList allwrappers = new ArrayList();
2002-12-18 19:00:25 +03:00
foreach(string s in h.Keys)
{
2002-12-29 19:27:00 +03:00
TypeWrapper wrapper = null;
try
{
2003-12-24 14:51:41 +03:00
wrapper = loader.LoadClassByDottedNameFast(s);
if(wrapper == null)
{
// this should only happen for netexp types (because the other classes must exist, after all we just parsed them)
Console.Error.WriteLine("Class not found: {0}", s);
}
2004-03-08 18:18:47 +03:00
else
{
allwrappers.Add(wrapper);
}
2003-12-20 01:19:18 +03:00
}
2002-12-29 19:27:00 +03:00
catch(Exception x)
{
2003-10-17 12:08:31 +04:00
Console.Error.WriteLine("Loading class {0} failed due to:", s);
Console.Error.WriteLine(x);
2002-12-29 19:27:00 +03:00
}
if(s == mainClass && wrapper != null)
2002-12-18 19:00:25 +03:00
{
2004-08-17 13:05:21 +04:00
MethodWrapper mw = wrapper.GetMethodWrapper(new MethodDescriptor("main", "([Ljava.lang.String;)V"), false);
2002-12-18 19:00:25 +03:00
if(mw == null)
{
Console.Error.WriteLine("Error: main method not found");
return;
}
2004-08-17 13:05:21 +04:00
mw.Link();
2004-09-05 13:37:58 +04:00
MethodBuilder method = mw.GetMethod() as MethodBuilder;
2002-12-18 19:00:25 +03:00
if(method == null)
{
Console.Error.WriteLine("Error: redirected main method not supported");
return;
}
2004-09-05 13:37:58 +04:00
Type apartmentAttributeType = null;
if(apartment == ApartmentState.STA)
{
apartmentAttributeType = typeof(STAThreadAttribute);
}
else if(apartment == ApartmentState.MTA)
{
apartmentAttributeType = typeof(MTAThreadAttribute);
}
if(apartmentAttributeType != null)
{
method.SetCustomAttribute(new CustomAttributeBuilder(apartmentAttributeType.GetConstructor(Type.EmptyTypes), new object[0]));
}
2002-12-18 19:00:25 +03:00
loader.SetMain(method, target);
2003-07-24 11:29:51 +04:00
mainClass = null;
2002-12-18 19:00:25 +03:00
}
}
2003-07-24 11:29:51 +04:00
if(mainClass != null)
{
Console.Error.WriteLine("Error: main class not found");
return;
}
2003-12-20 01:19:18 +03:00
compilationPhase1 = false;
2004-03-08 18:18:47 +03:00
if(map != null)
{
DynamicTypeWrapper.LoadMappedExceptions(map);
// mark all exceptions that are unsafe for mapping with a custom attribute,
// so that at runtime we can quickly assertain if an exception type can be
// caught without filtering
foreach(TypeWrapper tw in allwrappers)
{
if(!tw.IsInterface && tw.IsMapUnsafeException)
{
tw.TypeAsBuilder.SetCustomAttribute(typeof(ExceptionIsUnsafeForMappingAttribute).GetConstructor(Type.EmptyTypes), new byte[0]);
}
}
DynamicTypeWrapper.LoadNativeMethods(map);
Tracer.Info(Tracer.Compiler, "Loading remapped types (2)");
loader.FinishRemappedTypes();
}
Tracer.Info(Tracer.Compiler, "Compiling class files (2)");
2002-12-18 19:00:25 +03:00
loader.AddResources(resources);
loader.Save();
}
2003-05-10 15:43:12 +04:00
public static void PrepareForSaveDebugImage()
{
ClassLoaderWrapper.PrepareForSaveDebugImage();
}
2002-12-18 19:00:25 +03:00
public static void SaveDebugImage(object mainClass)
{
ClassLoaderWrapper.SaveDebugImage(mainClass);
}
2002-12-27 12:01:16 +03:00
public static void SetBootstrapClassLoader(object classLoader)
{
ClassLoaderWrapper.GetBootstrapClassLoader().SetJavaClassLoader(classLoader);
}
2003-12-24 14:51:41 +03:00
internal static void CriticalFailure(string message, Exception x)
{
2004-08-17 13:05:21 +04:00
try
2003-12-24 14:51:41 +03:00
{
2004-08-17 13:05:21 +04:00
Tracer.Error(Tracer.Runtime, "CRITICAL FAILURE: {0}", message);
// NOTE we use reflection to invoke MessageBox.Show, to make sure we run on Mono as well
Assembly winForms = IsUnix ? null : Assembly.LoadWithPartialName("System.Windows.Forms");
Type messageBox = null;
if(winForms != null)
{
messageBox = winForms.GetType("System.Windows.Forms.MessageBox");
}
message = String.Format("****** Critical Failure: {1} ******{0}" +
2003-12-24 14:51:41 +03:00
"{2}{0}" +
"{3}{0}" +
"{4}",
2004-08-17 13:05:21 +04:00
Environment.NewLine,
message,
x,
x != null ? new StackTrace(x, true).ToString() : "",
new StackTrace(true));
if(messageBox != null)
{
try
{
messageBox.InvokeMember("Show", BindingFlags.InvokeMethod | BindingFlags.Static | BindingFlags.Public, null, null, new object[] { message, "IKVM.NET Critical Failure" });
}
catch
{
Console.Error.WriteLine(message);
}
}
else
{
Console.Error.WriteLine(message);
}
}
catch(Exception ex)
2003-12-24 14:51:41 +03:00
{
2004-08-17 13:05:21 +04:00
Console.Error.WriteLine(ex);
2003-12-24 14:51:41 +03:00
}
2004-08-17 13:05:21 +04:00
finally
2003-12-24 14:51:41 +03:00
{
2004-08-17 13:05:21 +04:00
Environment.Exit(666);
2003-12-24 14:51:41 +03:00
}
}
2004-06-14 14:36:38 +04:00
private static void ser_UnknownElement(object sender, System.Xml.Serialization.XmlElementEventArgs e)
{
Console.Error.WriteLine("Unknown element {0} in XML mapping file, line {1}, column {2}", e.Element.Name, e.LineNumber, e.LinePosition);
Environment.Exit(1);
}
2002-12-18 19:00:25 +03:00
}