Merge pull request #409 from Alkarex/patch-1
[mono.git] / mcs / class / corlib / System.Reflection.Emit / DynamicILInfo.cs
1 //
2 // System.Reflection.Emit/DynamicILInfo.cs
3 //
4 // Author:
5 //   Zoltan Varga (vargaz@gmail.com)
6 //
7 // Copyright (C) 2007 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if !FULL_AOT_RUNTIME
30 using System;
31 using System.Reflection;
32 using System.Runtime.InteropServices;
33
34 namespace System.Reflection.Emit {
35
36         [ComVisible (true)]
37         public class DynamicILInfo {
38
39                 DynamicMethod method;
40
41                 internal DynamicILInfo ()
42                 {
43                 }
44
45                 internal DynamicILInfo (DynamicMethod method)
46                 {
47                         this.method = method;
48                 }
49
50                 public DynamicMethod DynamicMethod { 
51                         get {
52                                 return method;
53                         }
54                 }
55
56                 [MonoTODO]
57                 public int GetTokenFor (byte[] signature) {
58                         throw new NotImplementedException ();
59                 }
60
61                 public int GetTokenFor (DynamicMethod method) {
62                         return this.method.GetILGenerator ().TokenGenerator.GetToken (method, false);
63                 }
64
65                 public int GetTokenFor (RuntimeFieldHandle field) {
66                         return this.method.GetILGenerator ().TokenGenerator.GetToken (FieldInfo.GetFieldFromHandle (field), false);
67                 }
68
69                 public int GetTokenFor (RuntimeMethodHandle method) {
70                         MethodInfo mi = (MethodInfo)MethodBase.GetMethodFromHandle (method);
71                         return this.method.GetILGenerator ().TokenGenerator.GetToken (mi, false);
72                 }
73
74                 public int GetTokenFor (RuntimeTypeHandle type) {
75                         Type t = Type.GetTypeFromHandle (type);
76                         return this.method.GetILGenerator ().TokenGenerator.GetToken (t, false);
77                 }
78
79                 public int GetTokenFor (string literal) {
80                         return method.GetILGenerator ().TokenGenerator.GetToken (literal);
81                 }
82
83                 [MonoTODO]
84                 public int GetTokenFor (RuntimeMethodHandle method, RuntimeTypeHandle contextType) {
85                         throw new NotImplementedException ();
86                 }
87
88 #if NET_4_0
89                 [MonoTODO]
90                 public int GetTokenFor (RuntimeFieldHandle field, RuntimeTypeHandle contextType) {
91                         throw new NotImplementedException ();
92                 }
93 #endif
94
95                 public void SetCode (byte[] code, int maxStackSize) {
96                         if (code == null)
97                                 throw new ArgumentNullException ("code");
98                         method.GetILGenerator ().SetCode (code, maxStackSize);
99                 }
100
101                 [CLSCompliantAttribute(false)] 
102                 public unsafe void SetCode (byte* code, int codeSize, int maxStackSize) {
103                         if (code == null)
104                                 throw new ArgumentNullException ("code");
105                         method.GetILGenerator ().SetCode (code, codeSize, maxStackSize);
106                 }
107
108                 [MonoTODO]
109                 public void SetExceptions (byte[] exceptions) {
110                         throw new NotImplementedException ();
111                 }
112
113                 [MonoTODO]
114                 [CLSCompliantAttribute(false)] 
115                 public unsafe void SetExceptions (byte* exceptions, int exceptionsSize) {
116                         throw new NotImplementedException ();
117                 }
118
119                 [MonoTODO]
120                 public void SetLocalSignature (byte[] localSignature) {
121                         throw new NotImplementedException ();
122                 }
123
124                 [CLSCompliantAttribute(false)] 
125                 public unsafe void SetLocalSignature (byte* localSignature, int signatureSize) {
126                         byte[] b = new byte [signatureSize];
127                         for (int i = 0; i < signatureSize; ++i)
128                                 b [i] = localSignature [i];
129                 }
130         }
131 }
132
133 #endif