Use Mono_IsInflatedMethod.
[mono.git] / mcs / gmcs / const.cs
1 //
2 // const.cs: Constant declarations.
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.
8 //
9 //
10
11 //
12 // This is needed because the following situation arises:
13 //
14 //     The FieldBuilder is declared with the real type for an enumeration
15 //
16 //     When we attempt to set the value for the constant, the FieldBuilder.SetConstant
17 //     function aborts because it requires its argument to be of the same type
18 //
19
20 namespace Mono.CSharp {
21
22         using System;
23         using System.Reflection;
24         using System.Reflection.Emit;
25         using System.Collections;
26
27         public class Const : FieldBase {
28                 public Expression Expr;
29                 EmitContext const_ec;
30
31                 object ConstantValue = null;
32                 Type type;
33
34                 bool in_transit = false;
35
36                 public const int AllowedModifiers =
37                         Modifiers.NEW |
38                         Modifiers.PUBLIC |
39                         Modifiers.PROTECTED |
40                         Modifiers.INTERNAL |
41                         Modifiers.PRIVATE;
42
43                 public Const (Expression constant_type, string name, Expression expr,
44                               int mod_flags, Attributes attrs, Location loc)
45                         : base (constant_type, mod_flags, AllowedModifiers,
46                                 new MemberName (name), null, attrs, loc)
47                 {
48                         Expr = expr;
49                 }
50
51                 public FieldAttributes FieldAttr {
52                         get {
53                                 return FieldAttributes.Literal | FieldAttributes.Static |
54                                         Modifiers.FieldAttr (ModFlags) ;
55                         }
56                 }
57
58 #if DEBUG
59                 void dump_tree (Type t)
60                 {
61                         Console.WriteLine ("Dumping hierarchy");
62                         while (t != null){
63                                 Console.WriteLine ("   " + t.FullName + " " +
64                                         (t.GetType ().IsEnum ? "yes" : "no"));
65                                 t = t.BaseType;
66                         }
67                 }
68 #endif
69
70                 /// <summary>
71                 ///   Defines the constant in the @parent
72                 /// </summary>
73                 public override bool Define (TypeContainer parent)
74                 {
75                         type = parent.ResolveType (Type, false, Location);
76
77                         if (type == null)
78                                 return false;
79
80                         const_ec = new EmitContext (parent, Location, null, type, ModFlags);
81                         
82                         Type ttype = type;
83                         while (ttype.IsArray)
84                             ttype = TypeManager.GetElementType (ttype);
85                         
86                         if (!TypeManager.IsBuiltinType (ttype) &&
87                             (!ttype.IsSubclassOf (TypeManager.enum_type))) {
88                                 Report.Error (
89                                         -3, Location,
90                                         "Constant type is not valid (only system types are allowed)");
91                                 return false;
92                         }
93
94                         Type ptype = parent.TypeBuilder.BaseType;
95
96                         if (ptype != null) {
97                                 MemberList list = TypeContainer.FindMembers (
98                                         ptype, MemberTypes.Field, BindingFlags.Public,
99                                         System.Type.FilterName, Name);
100                                 
101                                 if (list.Count == 0)
102                                         if ((ModFlags & Modifiers.NEW) != 0)
103                                                 WarningNotHiding (parent);
104
105                         } else if ((ModFlags & Modifiers.NEW) != 0)
106                                 WarningNotHiding (parent);
107
108                         FieldBuilder = parent.TypeBuilder.DefineField (Name, type, FieldAttr);
109
110                         TypeManager.RegisterConstant (FieldBuilder, this);
111
112                         return true;
113                 }
114
115                 //
116                 // Changes the type of the constant expression `expr' to the Type `type'
117                 // Returns null on failure.
118                 //
119                 public static Constant ChangeType (Location loc, Constant expr, Type type)
120                 {
121                         bool fail;
122
123                         // from the null type to any reference-type.
124                         if (expr is NullLiteral && !type.IsValueType && !TypeManager.IsEnumType (type))
125                                 return NullLiteral.Null;
126
127                         if (!Convert.ImplicitStandardConversionExists (expr, type)){
128                                 Convert.Error_CannotImplicitConversion (loc, expr.Type, type);
129                                 return null;
130                         }
131                         
132                         object constant_value = TypeManager.ChangeType (expr.GetValue (), type, out fail);
133                         if (fail){
134                                 Convert.Error_CannotImplicitConversion (loc, expr.Type, type);
135                                 
136                                 //
137                                 // We should always catch the error before this is ever
138                                 // reached, by calling Convert.ImplicitStandardConversionExists
139                                 //
140                                 throw new Exception (
141                                                      String.Format ("LookupConstantValue: This should never be reached {0} {1}", expr.Type, type));
142                         }
143
144                         Constant retval;
145                         if (type == TypeManager.int32_type)
146                                 retval = new IntConstant ((int) constant_value);
147                         else if (type == TypeManager.uint32_type)
148                                 retval = new UIntConstant ((uint) constant_value);
149                         else if (type == TypeManager.int64_type)
150                                 retval = new LongConstant ((long) constant_value);
151                         else if (type == TypeManager.uint64_type)
152                                 retval = new ULongConstant ((ulong) constant_value);
153                         else if (type == TypeManager.float_type)
154                                 retval = new FloatConstant ((float) constant_value);
155                         else if (type == TypeManager.double_type)
156                                 retval = new DoubleConstant ((double) constant_value);
157                         else if (type == TypeManager.string_type)
158                                 retval = new StringConstant ((string) constant_value);
159                         else if (type == TypeManager.short_type)
160                                 retval = new ShortConstant ((short) constant_value);
161                         else if (type == TypeManager.ushort_type)
162                                 retval = new UShortConstant ((ushort) constant_value);
163                         else if (type == TypeManager.sbyte_type)
164                                 retval = new SByteConstant ((sbyte) constant_value);
165                         else if (type == TypeManager.byte_type)
166                                 retval = new ByteConstant ((byte) constant_value);
167                         else if (type == TypeManager.char_type)
168                                 retval = new CharConstant ((char) constant_value);
169                         else if (type == TypeManager.bool_type)
170                                 retval = new BoolConstant ((bool) constant_value);
171                         else
172                                 throw new Exception ("LookupConstantValue: Unhandled constant type: " + type);
173                         
174                         return retval;
175                 }
176                 
177                 /// <summary>
178                 ///  Looks up the value of a constant field. Defines it if it hasn't
179                 ///  already been. Similar to LookupEnumValue in spirit.
180                 /// </summary>
181                 public object LookupConstantValue ()
182                 {
183                         if (ConstantValue != null)
184                                 return ConstantValue;
185
186                         if (in_transit) {
187                                 Report.Error (110, Location,
188                                               "The evaluation of the constant value for `" +
189                                               Name + "' involves a circular definition.");
190                                 return null;
191                         }
192
193                         in_transit = true;
194                         int errors = Report.Errors;
195
196                         //
197                         // We might have cleared Expr ourselves in a recursive definition
198                         //
199                         if (Expr == null)
200                                 return null;
201                         
202                         Expr = Expr.Resolve (const_ec);
203
204                         in_transit = false;
205
206                         if (Expr == null) {
207                                 if (errors == Report.Errors)
208                                         Report.Error (150, Location, "A constant value is expected");
209                                 return null;
210                         }
211
212                         Constant ce = Expr as Constant;
213                         if (ce == null){
214                                 UnCheckedExpr un_expr = Expr as UnCheckedExpr;
215                                 CheckedExpr ch_expr = Expr as CheckedExpr;
216
217                                 if ((un_expr != null) && (un_expr.Expr is Constant))
218                                         Expr = un_expr.Expr;
219                                 else if ((ch_expr != null) && (ch_expr.Expr is Constant))
220                                         Expr = ch_expr.Expr;
221                                 else if (Expr is ArrayCreation) {
222                                         ArrayCreation ac = (ArrayCreation) Expr;
223
224                                         Expr = ac.TurnIntoConstant ();
225                                         if (Expr == null){
226                                                 Report.Error (150, Location, "A constant value is expected");
227                                                 return null;
228                                         }
229                                 } else {
230                                         if (errors == Report.Errors)
231                                                 Report.Error (150, Location, "A constant value is expected");
232                                         return null;
233                                 }
234                         }
235
236                         if (type != ce.Type) {
237                                 ce = ChangeType (Location, ce, type);
238                                 if (ce == null)
239                                         return null;
240                                 Expr = ce;
241                         }
242                         ConstantValue = ce.GetValue ();
243
244                         if (type.IsEnum){
245                                 //
246                                 // This sadly does not work for our user-defined enumerations types ;-(
247                                 //
248                                 try {
249                                         ConstantValue = System.Enum.ToObject (
250                                                 type, ConstantValue);
251                                 } catch (ArgumentException){
252                                         Report.Error (
253                                                 -16, Location,
254                                                 ".NET SDK 1.0 does not permit to create the constant "+
255                                                 " field from a user-defined enumeration");
256                                 }
257                         }
258
259                         FieldBuilder.SetConstant (ConstantValue);
260
261                         if (!TypeManager.RegisterFieldValue (FieldBuilder, ConstantValue))
262                                 return null;
263
264                         return ConstantValue;
265                 }
266                 
267                 
268                 /// <summary>
269                 ///  Emits the field value by evaluating the expression
270                 /// </summary>
271                 public void Emit (TypeContainer parent)
272                 {
273                         LookupConstantValue ();
274                         
275                         return;
276                 }
277         }
278 }
279
280