| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- //
- // System.Reflection.Emit/SignatureHelper.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Reflection;
- using System.Reflection.Emit;
- using System.Globalization;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace System.Reflection.Emit {
- #if NET_2_0
- [ComVisible (true)]
- [ClassInterfaceAttribute (ClassInterfaceType.None)]
- [ComDefaultInterfaceAttribute (typeof (_SignatureHelper))]
- #endif
- public sealed class SignatureHelper {
- internal enum SignatureHelperType {
- HELPER_FIELD,
- HELPER_LOCAL,
- HELPER_METHOD,
- HELPER_PROPERTY
- }
- private ModuleBuilder module;
- private Type[] arguments;
- private SignatureHelperType type;
- private Type returnType;
- private CallingConventions callConv;
- private CallingConvention unmanagedCallConv;
- internal SignatureHelper (ModuleBuilder module, SignatureHelperType type)
- {
- this.type = type;
- this.module = module;
- }
- public static SignatureHelper GetFieldSigHelper (Module mod)
- {
- if (!(mod is ModuleBuilder))
- throw new NotImplementedException ();
- return new SignatureHelper ((ModuleBuilder) mod, SignatureHelperType.HELPER_FIELD);
- }
- public static SignatureHelper GetLocalVarSigHelper (Module mod)
- {
- if (!(mod is ModuleBuilder))
- throw new NotImplementedException ();
- return new SignatureHelper ((ModuleBuilder) mod, SignatureHelperType.HELPER_LOCAL);
- }
- public static SignatureHelper GetMethodSigHelper( Module mod, CallingConventions callingConvention, Type returnType)
- {
- return GetMethodSigHelper (mod, callingConvention, (CallingConvention)0, returnType, null);
- }
- public static SignatureHelper GetMethodSigHelper( Module mod, CallingConvention unmanagedCallingConvention, Type returnType)
- {
- return GetMethodSigHelper (mod, CallingConventions.Standard, unmanagedCallingConvention, returnType, null);
- }
- public static SignatureHelper GetMethodSigHelper( Module mod, Type returnType, Type[] parameterTypes)
- {
- return GetMethodSigHelper (mod, CallingConventions.Standard,
- (CallingConvention)0, returnType,
- parameterTypes);
- }
- [MonoTODO]
- public static SignatureHelper GetPropertySigHelper( Module mod, Type returnType, Type[] parameterTypes)
- {
- throw new NotImplementedException ();
- }
- public void AddArgument (Type clsArgument)
- {
- if (arguments != null) {
- Type[] new_a = new Type [arguments.Length + 1];
- System.Array.Copy (arguments, new_a, arguments.Length);
- new_a [arguments.Length] = clsArgument;
- arguments = new_a;
- } else {
- arguments = new Type [1];
- arguments [0] = clsArgument;
- }
- }
- [MonoTODO]
- public void AddSentinel ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool Equals (object obj)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override int GetHashCode ()
- {
- throw new NotImplementedException ();
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal extern byte[] get_signature_local ();
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal extern byte[] get_signature_field ();
- public byte[] GetSignature ()
- {
- switch (type) {
- case SignatureHelperType.HELPER_LOCAL:
- return get_signature_local ();
- case SignatureHelperType.HELPER_FIELD:
- return get_signature_field ();
- default:
- throw new NotImplementedException ();
- }
- }
- public override string ToString() {
- return "SignatureHelper";
- }
- internal static SignatureHelper GetMethodSigHelper( Module mod, CallingConventions callConv, CallingConvention unmanagedCallConv, Type returnType,
- Type [] parameters)
- {
- if (!(mod is ModuleBuilder))
- throw new NotImplementedException ();
- SignatureHelper helper =
- new SignatureHelper ((ModuleBuilder)mod, SignatureHelperType.HELPER_METHOD);
- helper.returnType = returnType;
- helper.callConv = callConv;
- helper.unmanagedCallConv = unmanagedCallConv;
- if (parameters != null) {
- helper.arguments = new Type [parameters.Length];
- for (int i = 0; i < parameters.Length; ++i)
- helper.arguments [i] = parameters [i];
- }
- return helper;
- }
- }
- }
|