[bcl] Remove NET_4_0 defines from class libs.
[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                         MethodBase mi = 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                 [MonoTODO]
89                 public int GetTokenFor (RuntimeFieldHandle field, RuntimeTypeHandle contextType) {
90                         throw new NotImplementedException ();
91                 }
92
93                 public void SetCode (byte[] code, int maxStackSize) {
94                         if (code == null)
95                                 throw new ArgumentNullException ("code");
96                         method.GetILGenerator ().SetCode (code, maxStackSize);
97                 }
98
99                 [CLSCompliantAttribute(false)] 
100                 public unsafe void SetCode (byte* code, int codeSize, int maxStackSize) {
101                         if (code == null)
102                                 throw new ArgumentNullException ("code");
103                         method.GetILGenerator ().SetCode (code, codeSize, maxStackSize);
104                 }
105
106                 [MonoTODO]
107                 public void SetExceptions (byte[] exceptions) {
108                         throw new NotImplementedException ();
109                 }
110
111                 [MonoTODO]
112                 [CLSCompliantAttribute(false)] 
113                 public unsafe void SetExceptions (byte* exceptions, int exceptionsSize) {
114                         throw new NotImplementedException ();
115                 }
116
117                 [MonoTODO]
118                 public void SetLocalSignature (byte[] localSignature) {
119                         throw new NotImplementedException ();
120                 }
121
122                 [CLSCompliantAttribute(false)] 
123                 public unsafe void SetLocalSignature (byte* localSignature, int signatureSize) {
124                         byte[] b = new byte [signatureSize];
125                         for (int i = 0; i < signatureSize; ++i)
126                                 b [i] = localSignature [i];
127                 }
128         }
129 }
130
131 #endif