mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
111 lines
No EOL
4.1 KiB
C#
111 lines
No EOL
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Assembler;
|
|
using Indy.IL2CPU.IL;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
public abstract class OpCodeMap {
|
|
protected readonly SortedList<OpCodeEnum, Type> mMap = new SortedList<OpCodeEnum, Type>();
|
|
|
|
protected OpCodeMap() {
|
|
MethodHeaderOp = GetMethodHeaderOp();
|
|
MethodFooterOp = GetMethodFooterOp();
|
|
PInvokeMethodBodyOp = GetPInvokeMethodBodyOp();
|
|
CustomMethodImplementationProxyOp = GetCustomMethodImplementationProxyOp();
|
|
CustomMethodImplementationOp = GetCustomMethodImplementationOp();
|
|
InitVmtImplementationOp = GetInitVmtImplementationOp();
|
|
MainEntryPointOp = GetMainEntryPointOp();
|
|
}
|
|
|
|
protected abstract Assembly ImplementationAssembly {
|
|
get;
|
|
}
|
|
|
|
protected abstract Type GetMethodHeaderOp();
|
|
protected abstract Type GetMethodFooterOp();
|
|
protected abstract Type GetPInvokeMethodBodyOp();
|
|
protected abstract Type GetCustomMethodImplementationProxyOp();
|
|
protected abstract Type GetCustomMethodImplementationOp();
|
|
protected abstract Type GetInitVmtImplementationOp();
|
|
protected abstract Type GetMainEntryPointOp();
|
|
|
|
public virtual void Initialize(Assembler.Assembler aAssembler, IEnumerable<Assembly> aApplicationAssemblies) {
|
|
foreach (var xItem in (from item in ImplementationAssembly.GetTypes()
|
|
let xAttrib = item.GetCustomAttributes(typeof(OpCodeAttribute), true).FirstOrDefault() as OpCodeAttribute
|
|
where item.IsSubclassOf(typeof(Op)) && xAttrib != null
|
|
select new {
|
|
OpCode = xAttrib.OpCode,
|
|
Type = item
|
|
})) {
|
|
try {
|
|
mMap.Add(xItem.OpCode, xItem.Type);
|
|
} catch {
|
|
Console.WriteLine("Was adding op " + xItem.OpCode);
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
|
|
public Type GetOpForOpCode(OpCodeEnum code) {
|
|
if (!mMap.ContainsKey(code)) {
|
|
throw new NotSupportedException("OpCode '" + code + "' not supported!");
|
|
}
|
|
return mMap[code];
|
|
}
|
|
|
|
public readonly Type MethodHeaderOp;
|
|
public readonly Type MethodFooterOp;
|
|
public readonly Type PInvokeMethodBodyOp;
|
|
public readonly Type CustomMethodImplementationProxyOp;
|
|
public readonly Type CustomMethodImplementationOp;
|
|
public readonly Type InitVmtImplementationOp;
|
|
public readonly Type MainEntryPointOp;
|
|
|
|
public virtual Type GetOpForCustomMethodImplementation(string aName) {
|
|
return null;
|
|
}
|
|
|
|
public virtual IList<Assembly> GetPlugAssemblies() {
|
|
var xResult = new List<Assembly> {
|
|
typeof(OpCodeMap).Assembly,
|
|
Assembly.Load("Indy.IL2CPU")
|
|
};
|
|
return xResult;
|
|
}
|
|
|
|
public MethodBase GetCustomMethodImplementation(string aOrigMethodName, bool aInMetalMode) {
|
|
return null;
|
|
}
|
|
|
|
public virtual bool HasCustomAssembleImplementation(MethodInformation aMethod, bool aInMetalMode) {
|
|
PlugMethodAttribute xResult = ((PlugMethodAttribute[])aMethod.Method.GetCustomAttributes(typeof(PlugMethodAttribute), true)).FirstOrDefault();
|
|
if (xResult != null) {
|
|
return xResult.MethodAssembler != null;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public virtual void DoCustomAssembleImplementation(bool aInMetalMode, Assembler.Assembler aAssembler, MethodInformation aMethodInfo) {
|
|
PlugMethodAttribute xAttrib = aMethodInfo.Method.GetCustomAttributes(typeof(PlugMethodAttribute), true).Cast<PlugMethodAttribute>().FirstOrDefault();
|
|
if (xAttrib != null) {
|
|
Type xAssemblerType = xAttrib.MethodAssembler;
|
|
if (xAssemblerType != null) {
|
|
var xAssembler = (AssemblerMethod)Activator.CreateInstance(xAssemblerType);
|
|
var xNeedsMethodInfo = xAssembler as INeedsMethodInfo;
|
|
if (xNeedsMethodInfo != null) {
|
|
xNeedsMethodInfo.MethodInfo = aMethodInfo; }
|
|
xAssembler.Assemble(aAssembler);
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual void PostProcess(Assembler.Assembler aAssembler) {
|
|
}
|
|
|
|
public abstract void EmitOpDebugHeader(Assembler.Assembler aAssembler, uint aOpId, string aOpLabel);
|
|
}
|
|
} |