2002-05-22 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System.Reflection.Emit / MethodBuilder.cs
1
2 //
3 // System.Reflection.Emit/MethodBuilder.cs
4 //
5 // Author:
6 //   Paolo Molaro (lupus@ximian.com)
7 //
8 // (C) 2001 Ximian, Inc.  http://www.ximian.com
9 //
10
11 using System;
12 using System.Reflection;
13 using System.Reflection.Emit;
14 using System.Globalization;
15 using System.Runtime.CompilerServices;
16 using System.Runtime.InteropServices;
17
18 namespace System.Reflection.Emit {
19         public sealed class MethodBuilder : MethodInfo {
20                 private RuntimeMethodHandle mhandle;
21                 private Type rtype;
22                 private Type[] parameters;
23                 private MethodAttributes attrs;
24                 private MethodImplAttributes iattrs;
25                 private string name;
26                 private int table_idx;
27                 private byte[] code;
28                 private ILGenerator ilgen;
29                 private TypeBuilder type;
30                 private ParameterBuilder[] pinfo;
31                 private CustomAttributeBuilder[] cattrs;
32                 private MethodInfo override_method;
33                 private string pi_dll;
34                 private string pi_entry;
35                 private CharSet ncharset;
36                 private CallingConvention native_cc;
37                 private CallingConventions call_conv;
38                 private bool init_locals = true;
39
40                 internal MethodBuilder (TypeBuilder tb, string name, MethodAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] parameterTypes) {
41                         this.name = name;
42                         this.attrs = attributes;
43                         this.call_conv = callingConvention;
44                         this.rtype = returnType;
45                         if (parameterTypes != null) {
46                                 this.parameters = new Type [parameterTypes.Length];
47                                 System.Array.Copy (parameterTypes, this.parameters, parameterTypes.Length);
48                         }
49                         type = tb;
50                         table_idx = get_next_table_index (this, 0x06, true);
51                         //Console.WriteLine ("index for "+name+" set to "+table_idx.ToString());
52                 }
53
54                 internal MethodBuilder (TypeBuilder tb, string name, MethodAttributes attributes, 
55                         CallingConventions callingConvention, Type returnType, Type[] parameterTypes, 
56                         String dllName, String entryName, CallingConvention nativeCConv, CharSet nativeCharset) 
57                         : this (tb, name, attributes, callingConvention, returnType, parameterTypes) {
58                         pi_dll = dllName;
59                         pi_entry = entryName;
60                         native_cc = nativeCConv;
61                         ncharset = nativeCharset;
62                 }
63
64                 public bool InitLocals {
65                         get {return init_locals;}
66                         set {init_locals = value;}
67                 }
68
69                 internal TypeBuilder TypeBuilder {
70                         get {return type;}
71                 }
72                 
73                 public override Type ReturnType {get {return rtype;}}
74                 public override Type ReflectedType {get {return type;}}
75                 public override Type DeclaringType {get {return type;}}
76                 public override string Name {get {return name;}}
77                 public override RuntimeMethodHandle MethodHandle {get {return mhandle;}}
78                 public override MethodAttributes Attributes {get {return attrs;}}
79                 public override ICustomAttributeProvider ReturnTypeCustomAttributes {
80                         get {return null;}
81                 }
82                 public MethodToken GetToken() {
83                         return new MethodToken(0x06000000 | table_idx);
84                 }
85                 
86                 public override MethodInfo GetBaseDefinition() {
87                         return null;
88                 }
89                 public override MethodImplAttributes GetMethodImplementationFlags() {
90                         return iattrs;
91                 }
92                 public override ParameterInfo[] GetParameters() {
93                         return null;
94                 }
95                 
96                 public void CreateMethodBody( byte[] il, int count) {
97                         code = new byte [count];
98                         System.Array.Copy(il, code, count);
99                 }
100                 public override Object Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) {
101                         return null;
102                 }
103                 public override bool IsDefined (Type attribute_type, bool inherit) {
104                         return false;
105                 }
106                 public override object[] GetCustomAttributes( bool inherit) {
107                         return null;
108                 }
109                 public override object[] GetCustomAttributes( Type attributeType, bool inherit) {
110                         return null;
111                 }
112                 public ILGenerator GetILGenerator () {
113                         return GetILGenerator (256);
114                 }
115                 public ILGenerator GetILGenerator (int size) {
116                         ilgen = new ILGenerator (this, size);
117                         return ilgen;
118                 }
119                 
120                 [MonoTODO]
121                 public ParameterBuilder DefineParameter (int position, ParameterAttributes attributes, string strParamName)
122                 {
123                         ParameterBuilder pb = new ParameterBuilder (this, position, attributes, strParamName);
124                         // check position
125                         if (pinfo == null)
126                                 pinfo = new ParameterBuilder [parameters.Length + 1];
127                         pinfo [position] = pb;
128                         return pb;
129                 }
130
131                 internal void fixup () {
132                         if (ilgen != null)
133                                 ilgen.label_fixup ();
134                 }
135
136                 public void SetCustomAttribute( CustomAttributeBuilder customBuilder) {
137                         if (cattrs != null) {
138                                 CustomAttributeBuilder[] new_array = new CustomAttributeBuilder [cattrs.Length + 1];
139                                 cattrs.CopyTo (new_array, 0);
140                                 new_array [cattrs.Length] = customBuilder;
141                                 cattrs = new_array;
142                         } else {
143                                 cattrs = new CustomAttributeBuilder [1];
144                                 cattrs [0] = customBuilder;
145                         }
146                 }
147                 public void SetCustomAttribute( ConstructorInfo con, byte[] binaryAttribute) {
148                         SetCustomAttribute (new CustomAttributeBuilder (con, binaryAttribute));
149                 }
150                 public void SetImplementationFlags( MethodImplAttributes attributes) {
151                         iattrs = attributes;
152                 }
153                 internal override int get_next_table_index (object obj, int table, bool inc) {
154                         return type.get_next_table_index (obj, table, inc);
155                 }
156
157                 internal void set_override (MethodInfo mdecl) {
158                         override_method = mdecl;
159                 }
160         }
161 }
162