2006-10-04 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / mcs / convert.cs
1 //
2 // conversion.cs: various routines for implementing conversions.
3 //
4 // Authors:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Ravi Pratap (ravi@ximian.com)
7 //
8 // (C) 2001, 2002, 2003 Ximian, Inc.
9 //
10
11 namespace Mono.CSharp {
12         using System;
13         using System.Collections;
14         using System.Diagnostics;
15         using System.Reflection;
16         using System.Reflection.Emit;
17
18         //
19         // A container class for all the conversion operations
20         //
21         public class Convert {
22 #if GMCS_SOURCE
23                 static bool TypeParameter_to_Null (Type target_type)
24                 {
25                         GenericConstraints gc = TypeManager.GetTypeParameterConstraints (target_type);
26                         if (gc == null)
27                                 return false;
28
29                         if (gc.HasReferenceTypeConstraint)
30                                 return true;
31                         if (gc.HasClassConstraint && !TypeManager.IsValueType (gc.ClassConstraint))
32                                 return true;
33
34                         return false;
35                 }
36
37                 static Type TypeParam_EffectiveBaseType (GenericConstraints gc)
38                 {
39                         ArrayList list = new ArrayList ();
40                         list.Add (gc.EffectiveBaseClass);
41                         foreach (Type t in gc.InterfaceConstraints) {
42                                 if (!TypeManager.IsGenericParameter (t))
43                                         continue;
44
45                                 GenericConstraints new_gc = TypeManager.GetTypeParameterConstraints (t);
46                                 if (new_gc != null)
47                                         list.Add (TypeParam_EffectiveBaseType (new_gc));
48                         }
49                         return FindMostEncompassedType (list);
50                 }
51 #endif
52
53                 //
54                 // From a one-dimensional array-type S[] to System.Collections.IList<S> and base
55                 // interfaces of this interface.
56                 //
57                 // From a one-dimensional array-type S[] to System.Collections.IList<T> and base
58                 // interfaces of this interface, provided there is an implicit reference conversion
59                 // from S to T.
60                 //
61                 static bool Array_To_IList (Type array, Type list)
62                 {
63 #if GMCS_SOURCE
64                         if (!array.IsArray || (array.GetArrayRank () != 1) || !list.IsGenericType)
65                                 return false;
66
67                         Type gt = list.GetGenericTypeDefinition ();
68                         if ((gt != TypeManager.generic_ilist_type) &&
69                             (gt != TypeManager.generic_icollection_type) &&
70                             (gt != TypeManager.generic_ienumerable_type))
71                                 return false;
72
73                         Type element_type = TypeManager.GetElementType (array);
74                         Type arg_type = TypeManager.GetTypeArguments (list) [0];
75
76                         if (element_type == arg_type)
77                                 return true;
78
79                         if (MyEmptyExpr == null)
80                                 MyEmptyExpr = new EmptyExpression ();
81                         MyEmptyExpr.SetType (TypeManager.GetElementType (array));
82
83                         return ImplicitReferenceConversionExists (MyEmptyExpr, arg_type);
84 #else
85                         return false;
86 #endif
87                 }
88
89                 static Expression ImplicitTypeParameterConversion (Expression expr,
90                                                                    Type target_type)
91                 {
92 #if GMCS_SOURCE
93                         Type expr_type = expr.Type;
94
95                         GenericConstraints gc = TypeManager.GetTypeParameterConstraints (expr_type);
96
97                         if (gc == null) {
98                                 if (target_type == TypeManager.object_type)
99                                         return new BoxedCast (expr, target_type);
100
101                                 return null;
102                         }
103
104                         // We're converting from a type parameter which is known to be a reference type.
105                         Type base_type = TypeParam_EffectiveBaseType (gc);
106
107                         if (TypeManager.IsSubclassOf (base_type, target_type))
108                                 return new ClassCast (expr, target_type);
109
110                         if (target_type.IsInterface) {
111                                 if (TypeManager.ImplementsInterface (base_type, target_type))
112                                         return new ClassCast (expr, target_type);
113
114                                 foreach (Type t in gc.InterfaceConstraints) {
115                                         if (TypeManager.IsSubclassOf (t, target_type))
116                                                 return new ClassCast (expr, target_type);
117                                         if (TypeManager.ImplementsInterface (t, target_type))
118                                                 return new ClassCast (expr, target_type);
119                                 }
120                         }
121
122                         foreach (Type t in gc.InterfaceConstraints) {
123                                 if (!TypeManager.IsGenericParameter (t))
124                                         continue;
125                                 if (TypeManager.IsSubclassOf (t, target_type))
126                                         return new ClassCast (expr, target_type);
127                                 if (TypeManager.ImplementsInterface (t, target_type))
128                                         return new ClassCast (expr, target_type);
129                         }
130 #endif
131                         return null;
132                 }
133
134                 static bool ExplicitTypeParameterConversionExists (Type source_type, Type target_type)
135                 {
136 #if GMCS_SOURCE
137                         if (target_type.IsInterface)
138                                 return true;
139
140                         if (TypeManager.IsGenericParameter (target_type)) {
141                                 GenericConstraints gc = TypeManager.GetTypeParameterConstraints (target_type);
142                                 if (gc == null)
143                                         return false;
144
145                                 foreach (Type iface in gc.InterfaceConstraints) {
146                                         if (!TypeManager.IsGenericParameter (iface))
147                                                 continue;
148
149                                         if (TypeManager.IsSubclassOf (source_type, iface))
150                                                 return true;
151                                 }
152                         }
153 #endif
154                         return false;
155                 }
156
157                 static Expression ExplicitTypeParameterConversion (Expression source, Type target_type)
158                 {
159 #if GMCS_SOURCE
160                         Type source_type = source.Type;
161
162                         if (target_type.IsInterface)
163                                 return new ClassCast (source, target_type);
164
165                         if (TypeManager.IsGenericParameter (target_type)) {
166                                 GenericConstraints gc = TypeManager.GetTypeParameterConstraints (target_type);
167                                 if (gc == null)
168                                         return null;
169
170                                 foreach (Type iface in gc.InterfaceConstraints) {
171                                         if (!TypeManager.IsGenericParameter (iface))
172                                                 continue;
173
174                                         if (TypeManager.IsSubclassOf (source_type, iface))
175                                                 return new ClassCast (source, target_type);
176                                 }
177                         }
178 #endif
179                         return null;
180                 }
181
182                 static EmptyExpression MyEmptyExpr;
183                 static public Expression ImplicitReferenceConversion (Expression expr, Type target_type)
184                 {
185                         Type expr_type = expr.Type;
186
187                         if (expr_type == null && expr.eclass == ExprClass.MethodGroup){
188                                 // if we are a method group, emit a warning
189
190                                 expr.Emit (null);
191                         }
192
193                         if (expr_type == TypeManager.void_type)
194                                 return null;
195
196                         if (TypeManager.IsGenericParameter (expr_type))
197                                 return ImplicitTypeParameterConversion (expr, target_type);
198
199                         //
200                         // notice that it is possible to write "ValueType v = 1", the ValueType here
201                         // is an abstract class, and not really a value type, so we apply the same rules.
202                         //
203                         if (target_type == TypeManager.object_type) {
204                                 //
205                                 // A pointer type cannot be converted to object
206                                 //
207                                 if (expr_type.IsPointer)
208                                         return null;
209
210                                 if (TypeManager.IsValueType (expr_type))
211                                         return new BoxedCast (expr, target_type);
212                                 if (expr_type.IsClass || expr_type.IsInterface || expr_type == TypeManager.enum_type){
213                                         if (expr_type == TypeManager.anonymous_method_type)
214                                                 return null;
215                                         return new EmptyCast (expr, target_type);
216                                 }
217
218                                 return null;
219                         } else if (target_type == TypeManager.value_type) {
220                                 if (TypeManager.IsValueType (expr_type))
221                                         return new BoxedCast (expr, target_type);
222                                 if (expr_type == TypeManager.null_type)
223                                         return new EmptyConstantCast ((Constant)expr, target_type);
224
225                                 return null;
226                         } else if (TypeManager.IsSubclassOf (expr_type, target_type)) {
227                                 //
228                                 // Special case: enumeration to System.Enum.
229                                 // System.Enum is not a value type, it is a class, so we need
230                                 // a boxing conversion
231                                 //
232                                 if (expr_type.IsEnum || TypeManager.IsGenericParameter (expr_type))
233                                         return new BoxedCast (expr, target_type);
234
235                                 return new EmptyCast (expr, target_type);
236                         }
237
238                         // This code is kind of mirrored inside ImplicitStandardConversionExists
239                         // with the small distinction that we only probe there
240                         //
241                         // Always ensure that the code here and there is in sync
242
243                         // from the null type to any reference-type.
244                         if (expr_type == TypeManager.null_type) {
245                                 NullConstant nc = (NullConstant)expr;
246                                 return nc.ToType(target_type);
247                         }
248
249                         // from any class-type S to any interface-type T.
250                         if (target_type.IsInterface) {
251                                 if (target_type != TypeManager.iconvertible_type &&
252                                     expr_type.IsValueType && (expr is Constant) &&
253                                     !(expr is IntLiteral || expr is BoolLiteral ||
254                                       expr is FloatLiteral || expr is DoubleLiteral ||
255                                       expr is LongLiteral || expr is CharLiteral ||
256                                       expr is StringLiteral || expr is DecimalLiteral ||
257                                       expr is UIntLiteral || expr is ULongLiteral)) {
258                                         return null;
259                                 }
260
261                                 if (TypeManager.ImplementsInterface (expr_type, target_type)){
262                                         if (TypeManager.IsGenericParameter (expr_type) || TypeManager.IsValueType (expr_type))
263                                                 return new BoxedCast (expr, target_type);
264                                         else
265                                                 return new EmptyCast (expr, target_type);
266                                 }
267                         }
268
269                         // from any interface type S to interface-type T.
270                         if (expr_type.IsInterface && target_type.IsInterface) {
271                                 if (TypeManager.ImplementsInterface (expr_type, target_type))
272                                         return new EmptyCast (expr, target_type);
273                                 else
274                                         return null;
275                         }
276
277                         // from an array-type S to an array-type of type T
278                         if (expr_type.IsArray && target_type.IsArray) {
279                                 if (expr_type.GetArrayRank () == target_type.GetArrayRank ()) {
280
281                                         Type expr_element_type = TypeManager.GetElementType (expr_type);
282
283                                         if (MyEmptyExpr == null)
284                                                 MyEmptyExpr = new EmptyExpression ();
285
286                                         MyEmptyExpr.SetType (expr_element_type);
287                                         Type target_element_type = TypeManager.GetElementType (target_type);
288
289                                         if (!expr_element_type.IsValueType && !target_element_type.IsValueType)
290                                                 if (ImplicitStandardConversionExists (MyEmptyExpr,
291                                                                                       target_element_type))
292                                                         return new EmptyCast (expr, target_type);
293                                 }
294                         }
295
296                         // from an array-type to System.Array
297                         if (expr_type.IsArray && target_type == TypeManager.array_type)
298                                 return new EmptyCast (expr, target_type);
299
300                         // from an array-type of type T to IList<T>
301                         if (expr_type.IsArray && Array_To_IList (expr_type, target_type))
302                                 return new EmptyCast (expr, target_type);
303
304                         // from any delegate type to System.Delegate
305                         if ((expr_type == TypeManager.delegate_type || TypeManager.IsDelegateType (expr_type)) &&
306                             target_type == TypeManager.delegate_type)
307                                 return new EmptyCast (expr, target_type);
308
309                         // from any array-type or delegate type into System.ICloneable.
310                         if (expr_type.IsArray ||
311                             expr_type == TypeManager.delegate_type || TypeManager.IsDelegateType (expr_type))
312                                 if (target_type == TypeManager.icloneable_type)
313                                         return new EmptyCast (expr, target_type);
314
315                         // from a generic type definition to a generic instance.
316                         if (TypeManager.IsEqual (expr_type, target_type))
317                                 return new EmptyCast (expr, target_type);
318
319                         return null;
320                 }
321
322                 //
323                 // Tests whether an implicit reference conversion exists between expr_type
324                 // and target_type
325                 //
326                 public static bool ImplicitReferenceConversionExists (Expression expr, Type target_type)
327                 {
328                         if (target_type.IsValueType)
329                                 return false;
330
331                         Type expr_type = expr.Type;
332
333                         if (TypeManager.IsGenericParameter (expr_type))
334                                 return ImplicitTypeParameterConversion (expr, target_type) != null;
335
336                         //
337                         // This is the boxed case.
338                         //
339                         if (target_type == TypeManager.object_type) {
340                                 if (expr_type.IsClass || TypeManager.IsValueType (expr_type) ||
341                                     expr_type.IsInterface || expr_type == TypeManager.enum_type)
342                                         if (target_type != TypeManager.anonymous_method_type)
343                                         return true;
344
345                                 return false;
346                         } else if (TypeManager.IsSubclassOf (expr_type, target_type))
347                                 return true;
348
349                         // Please remember that all code below actually comes
350                         // from ImplicitReferenceConversion so make sure code remains in sync
351
352                         // from any class-type S to any interface-type T.
353                         if (target_type.IsInterface) {
354                                 if (target_type != TypeManager.iconvertible_type &&
355                                     expr_type.IsValueType && (expr is Constant) &&
356                                     !(expr is IntLiteral || expr is BoolLiteral ||
357                                       expr is FloatLiteral || expr is DoubleLiteral ||
358                                       expr is LongLiteral || expr is CharLiteral ||
359                                       expr is StringLiteral || expr is DecimalLiteral ||
360                                       expr is UIntLiteral || expr is ULongLiteral)) {
361                                         return false;
362                                 }
363
364                                 if (TypeManager.ImplementsInterface (expr_type, target_type))
365                                         return true;
366                         }
367
368                         // from any interface type S to interface-type T.
369                         if (expr_type.IsInterface && target_type.IsInterface)
370                                 if (TypeManager.ImplementsInterface (expr_type, target_type))
371                                         return true;
372
373                         // from an array-type S to an array-type of type T
374                         if (expr_type.IsArray && target_type.IsArray) {
375                                 if (expr_type.GetArrayRank () == target_type.GetArrayRank ()) {
376
377                                         Type expr_element_type = expr_type.GetElementType ();
378
379                                         if (MyEmptyExpr == null)
380                                                 MyEmptyExpr = new EmptyExpression ();
381
382                                         MyEmptyExpr.SetType (expr_element_type);
383                                         Type target_element_type = TypeManager.GetElementType (target_type);
384
385                                         if (!expr_element_type.IsValueType && !target_element_type.IsValueType)
386                                                 if (ImplicitStandardConversionExists (MyEmptyExpr,
387                                                                                       target_element_type))
388                                                         return true;
389                                 }
390                         }
391
392                         // from an array-type to System.Array
393                         if (expr_type.IsArray && (target_type == TypeManager.array_type))
394                                 return true;
395
396                         // from an array-type of type T to IList<T>
397                         if (expr_type.IsArray && Array_To_IList (expr_type, target_type))
398                                 return true;
399
400                         // from any delegate type to System.Delegate
401                         if ((expr_type == TypeManager.delegate_type || TypeManager.IsDelegateType (expr_type)) &&
402                             target_type == TypeManager.delegate_type)
403                                 if (target_type.IsAssignableFrom (expr_type))
404                                         return true;
405
406                         // from any array-type or delegate type into System.ICloneable.
407                         if (expr_type.IsArray ||
408                             expr_type == TypeManager.delegate_type || TypeManager.IsDelegateType (expr_type))
409                                 if (target_type == TypeManager.icloneable_type)
410                                         return true;
411
412                         // from the null type to any reference-type.
413                         if (expr_type == TypeManager.null_type){
414                                 if (target_type.IsPointer)
415                                         return true;
416
417                                 if (!target_type.IsValueType)
418                                         return true;
419                         }
420
421                         // from a generic type definition to a generic instance.
422                         if (TypeManager.IsEqual (expr_type, target_type))
423                                 return true;
424
425                         return false;
426                 }
427
428                 /// <summary>
429                 ///   Implicit Numeric Conversions.
430                 ///
431                 ///   expr is the expression to convert, returns a new expression of type
432                 ///   target_type or null if an implicit conversion is not possible.
433                 /// </summary>
434                 static public Expression ImplicitNumericConversion (Expression expr,
435                                                                     Type target_type)
436                 {
437                         Type expr_type = expr.Type;
438
439                         //
440                         // Attempt to do the implicit constant expression conversions
441
442                         if (expr is Constant){
443                                 if (expr is IntConstant){
444                                         Expression e;
445
446                                         e = TryImplicitIntConversion (target_type, (IntConstant) expr);
447
448                                         if (e != null)
449                                                 return e;
450                                 } else if (expr is LongConstant && target_type == TypeManager.uint64_type){
451                                         //
452                                         // Try the implicit constant expression conversion
453                                         // from long to ulong, instead of a nice routine,
454                                         // we just inline it
455                                         //
456                                         long v = ((LongConstant) expr).Value;
457                                         if (v >= 0)
458                                                 return new ULongConstant ((ulong) v, expr.Location);
459                                 }
460                         }
461
462                         Type real_target_type = target_type;
463
464                         if (expr_type == TypeManager.sbyte_type){
465                                 //
466                                 // From sbyte to short, int, long, float, double, decimal
467                                 //
468                                 if (real_target_type == TypeManager.int32_type)
469                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I4);
470                                 if (real_target_type == TypeManager.int64_type)
471                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
472                                 if (real_target_type == TypeManager.double_type)
473                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
474                                 if (real_target_type == TypeManager.float_type)
475                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
476                                 if (real_target_type == TypeManager.short_type)
477                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I2);
478                                 if (real_target_type == TypeManager.decimal_type)
479                                         return new CastToDecimal (expr);
480                         } else if (expr_type == TypeManager.byte_type){
481                                 //
482                                 // From byte to short, ushort, int, uint, long, ulong, float, double, decimal
483                                 //
484                                 if ((real_target_type == TypeManager.short_type) ||
485                                     (real_target_type == TypeManager.ushort_type) ||
486                                     (real_target_type == TypeManager.int32_type) ||
487                                     (real_target_type == TypeManager.uint32_type))
488                                         return new EmptyCast (expr, target_type);
489
490                                 if (real_target_type == TypeManager.uint64_type)
491                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U8);
492                                 if (real_target_type == TypeManager.int64_type)
493                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
494                                 if (real_target_type == TypeManager.float_type)
495                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
496                                 if (real_target_type == TypeManager.double_type)
497                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
498                                 if (real_target_type == TypeManager.decimal_type)
499                                         return new CastToDecimal (expr);
500
501                         } else if (expr_type == TypeManager.short_type){
502                                 //
503                                 // From short to int, long, float, double, decimal
504                                 //
505                                 if (real_target_type == TypeManager.int32_type)
506                                         return new EmptyCast (expr, target_type);
507                                 if (real_target_type == TypeManager.int64_type)
508                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
509                                 if (real_target_type == TypeManager.double_type)
510                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
511                                 if (real_target_type == TypeManager.float_type)
512                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
513                                 if (real_target_type == TypeManager.decimal_type)
514                                         return new CastToDecimal (expr);
515
516                         } else if (expr_type == TypeManager.ushort_type){
517                                 //
518                                 // From ushort to int, uint, long, ulong, float, double, decimal
519                                 //
520                                 if (real_target_type == TypeManager.uint32_type)
521                                         return new EmptyCast (expr, target_type);
522
523                                 if (real_target_type == TypeManager.uint64_type)
524                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U8);
525                                 if (real_target_type == TypeManager.int32_type)
526                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I4);
527                                 if (real_target_type == TypeManager.int64_type)
528                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
529                                 if (real_target_type == TypeManager.double_type)
530                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
531                                 if (real_target_type == TypeManager.float_type)
532                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
533                                 if (real_target_type == TypeManager.decimal_type)
534                                         return new CastToDecimal (expr);
535                         } else if (expr_type == TypeManager.int32_type){
536                                 //
537                                 // From int to long, float, double, decimal
538                                 //
539                                 if (real_target_type == TypeManager.int64_type)
540                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
541                                 if (real_target_type == TypeManager.double_type)
542                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
543                                 if (real_target_type == TypeManager.float_type)
544                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
545                                 if (real_target_type == TypeManager.decimal_type)
546                                         return new CastToDecimal (expr);
547                         } else if (expr_type == TypeManager.uint32_type){
548                                 //
549                                 // From uint to long, ulong, float, double, decimal
550                                 //
551                                 if (real_target_type == TypeManager.int64_type)
552                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U8);
553                                 if (real_target_type == TypeManager.uint64_type)
554                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U8);
555                                 if (real_target_type == TypeManager.double_type)
556                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R_Un,
557                                                                OpCodes.Conv_R8);
558                                 if (real_target_type == TypeManager.float_type)
559                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R_Un,
560                                                                OpCodes.Conv_R4);
561                                 if (real_target_type == TypeManager.decimal_type)
562                                         return new CastToDecimal (expr);
563                         } else if (expr_type == TypeManager.int64_type){
564                                 //
565                                 // From long/ulong to float, double
566                                 //
567                                 if (real_target_type == TypeManager.double_type)
568                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
569                                 if (real_target_type == TypeManager.float_type)
570                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
571                                 if (real_target_type == TypeManager.decimal_type)
572                                         return new CastToDecimal (expr);
573                         } else if (expr_type == TypeManager.uint64_type){
574                                 //
575                                 // From ulong to float, double
576                                 //
577                                 if (real_target_type == TypeManager.double_type)
578                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R_Un,
579                                                                OpCodes.Conv_R8);
580                                 if (real_target_type == TypeManager.float_type)
581                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R_Un,
582                                                                OpCodes.Conv_R4);
583                                 if (real_target_type == TypeManager.decimal_type)
584                                         return new CastToDecimal (expr);
585                         } else if (expr_type == TypeManager.char_type){
586                                 //
587                                 // From char to ushort, int, uint, long, ulong, float, double, decimal
588                                 //
589                                 if ((real_target_type == TypeManager.ushort_type) ||
590                                     (real_target_type == TypeManager.int32_type) ||
591                                     (real_target_type == TypeManager.uint32_type))
592                                         return new EmptyCast (expr, target_type);
593                                 if (real_target_type == TypeManager.uint64_type)
594                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U8);
595                                 if (real_target_type == TypeManager.int64_type)
596                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
597                                 if (real_target_type == TypeManager.float_type)
598                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R4);
599                                 if (real_target_type == TypeManager.double_type)
600                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
601                                 if (real_target_type == TypeManager.decimal_type)
602                                         return new CastToDecimal (expr);
603                         } else if (expr_type == TypeManager.float_type){
604                                 //
605                                 // float to double
606                                 //
607                                 if (real_target_type == TypeManager.double_type)
608                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_R8);
609                         }
610
611                         return null;
612                 }
613
614                 /// <summary>
615                 ///  Same as ImplicitStandardConversionExists except that it also looks at
616                 ///  implicit user defined conversions - needed for overload resolution
617                 /// </summary>
618                 public static bool ImplicitConversionExists (EmitContext ec, Expression expr, Type target_type)
619                 {
620 #if GMCS_SOURCE
621                         if (expr is NullLiteral) {
622                                 if (TypeManager.IsGenericParameter (target_type))
623                                         return TypeParameter_to_Null (target_type);
624
625                                 if (TypeManager.IsNullableType (target_type))
626                                         return true;
627                         }
628 #endif
629                         if (ImplicitStandardConversionExists (expr, target_type))
630                                 return true;
631
632                         return ImplicitUserConversion (ec, expr, target_type, Location.Null) != null;
633                 }
634
635                 public static bool ImplicitUserConversionExists (EmitContext ec, Type source, Type target)
636                 {
637                         return ImplicitUserConversion (ec, new EmptyExpression (source), target, Location.Null) != null;
638                 }
639
640                 /// <summary>
641                 ///  Determines if a standard implicit conversion exists from
642                 ///  expr_type to target_type
643                 ///
644                 ///  ec should point to a real EmitContext if expr.Type is TypeManager.anonymous_method_type.
645                 /// </summary>
646                 public static bool ImplicitStandardConversionExists (Expression expr, Type target_type)
647                 {
648                         Type expr_type = expr.Type;
649 #if GMCS_SOURCE
650                         if (TypeManager.IsNullableType (target_type)) {
651                                 // if implicit standard conversion S -> T exists, S -> T? and S? -> T? also exists
652                                 target_type = TypeManager.GetTypeArguments (target_type) [0];
653
654                                 // S? -> T?
655                                 if (TypeManager.IsNullableType (expr_type)) {
656                                         EmptyExpression new_expr = EmptyExpression.Grab ();
657                                         new_expr.SetType (TypeManager.GetTypeArguments (expr_type) [0]);
658                                         bool retval = ImplicitStandardConversionExists (new_expr, target_type);
659                                         EmptyExpression.Release (new_expr);
660                                         return retval;
661                                 }
662                         }
663 #endif
664                         if (expr_type == TypeManager.void_type)
665                                 return false;
666
667                         //Console.WriteLine ("Expr is {0}", expr);
668                         //Console.WriteLine ("{0} -> {1} ?", expr_type, target_type);
669                         if (expr_type.Equals (target_type))
670                                 return true;
671
672
673                         // First numeric conversions
674
675                         if (expr_type == TypeManager.sbyte_type){
676                                 //
677                                 // From sbyte to short, int, long, float, double, decimal
678                                 //
679                                 if ((target_type == TypeManager.int32_type) ||
680                                     (target_type == TypeManager.int64_type) ||
681                                     (target_type == TypeManager.double_type) ||
682                                     (target_type == TypeManager.float_type)  ||
683                                     (target_type == TypeManager.short_type) ||
684                                     (target_type == TypeManager.decimal_type))
685                                         return true;
686
687                         } else if (expr_type == TypeManager.byte_type){
688                                 //
689                                 // From byte to short, ushort, int, uint, long, ulong, float, double, decimal
690                                 //
691                                 if ((target_type == TypeManager.short_type) ||
692                                     (target_type == TypeManager.ushort_type) ||
693                                     (target_type == TypeManager.int32_type) ||
694                                     (target_type == TypeManager.uint32_type) ||
695                                     (target_type == TypeManager.uint64_type) ||
696                                     (target_type == TypeManager.int64_type) ||
697                                     (target_type == TypeManager.float_type) ||
698                                     (target_type == TypeManager.double_type) ||
699                                     (target_type == TypeManager.decimal_type))
700                                         return true;
701
702                         } else if (expr_type == TypeManager.short_type){
703                                 //
704                                 // From short to int, long, double, float, decimal
705                                 //
706                                 if ((target_type == TypeManager.int32_type) ||
707                                     (target_type == TypeManager.int64_type) ||
708                                     (target_type == TypeManager.double_type) ||
709                                     (target_type == TypeManager.float_type) ||
710                                     (target_type == TypeManager.decimal_type))
711                                         return true;
712
713                         } else if (expr_type == TypeManager.ushort_type){
714                                 //
715                                 // From ushort to int, uint, long, ulong, double, float, decimal
716                                 //
717                                 if ((target_type == TypeManager.uint32_type) ||
718                                     (target_type == TypeManager.uint64_type) ||
719                                     (target_type == TypeManager.int32_type) ||
720                                     (target_type == TypeManager.int64_type) ||
721                                     (target_type == TypeManager.double_type) ||
722                                     (target_type == TypeManager.float_type) ||
723                                     (target_type == TypeManager.decimal_type))
724                                         return true;
725
726                         } else if (expr_type == TypeManager.int32_type){
727                                 //
728                                 // From int to long, double, float, decimal
729                                 //
730                                 if ((target_type == TypeManager.int64_type) ||
731                                     (target_type == TypeManager.double_type) ||
732                                     (target_type == TypeManager.float_type) ||
733                                     (target_type == TypeManager.decimal_type))
734                                         return true;
735
736                         } else if (expr_type == TypeManager.uint32_type){
737                                 //
738                                 // From uint to long, ulong, double, float, decimal
739                                 //
740                                 if ((target_type == TypeManager.int64_type) ||
741                                     (target_type == TypeManager.uint64_type) ||
742                                     (target_type == TypeManager.double_type) ||
743                                     (target_type == TypeManager.float_type) ||
744                                     (target_type == TypeManager.decimal_type))
745                                         return true;
746
747                         } else if ((expr_type == TypeManager.uint64_type) ||
748                                    (expr_type == TypeManager.int64_type)) {
749                                 //
750                                 // From long/ulong to double, float, decimal
751                                 //
752                                 if ((target_type == TypeManager.double_type) ||
753                                     (target_type == TypeManager.float_type) ||
754                                     (target_type == TypeManager.decimal_type))
755                                         return true;
756
757                         } else if (expr_type == TypeManager.char_type){
758                                 //
759                                 // From char to ushort, int, uint, ulong, long, float, double, decimal
760                                 //
761                                 if ((target_type == TypeManager.ushort_type) ||
762                                     (target_type == TypeManager.int32_type) ||
763                                     (target_type == TypeManager.uint32_type) ||
764                                     (target_type == TypeManager.uint64_type) ||
765                                     (target_type == TypeManager.int64_type) ||
766                                     (target_type == TypeManager.float_type) ||
767                                     (target_type == TypeManager.double_type) ||
768                                     (target_type == TypeManager.decimal_type))
769                                         return true;
770
771                         } else if (expr_type == TypeManager.float_type){
772                                 //
773                                 // float to double
774                                 //
775                                 if (target_type == TypeManager.double_type)
776                                         return true;
777                         }
778
779                         if (expr.eclass == ExprClass.MethodGroup){
780                                 if (TypeManager.IsDelegateType (target_type) && RootContext.Version != LanguageVersion.ISO_1){
781                                         MethodGroupExpr mg = expr as MethodGroupExpr;
782                                         if (mg != null){
783                                                 return DelegateCreation.ImplicitStandardConversionExists (mg, target_type) != null;
784                                         }
785                                 }
786                         }
787
788                         if (ImplicitReferenceConversionExists (expr, target_type))
789                                 return true;
790
791                         //
792                         // Implicit Constant Expression Conversions
793                         //
794                         if (expr is IntConstant){
795                                 int value = ((IntConstant) expr).Value;
796
797                                 if (target_type == TypeManager.sbyte_type){
798                                         if (value >= SByte.MinValue && value <= SByte.MaxValue)
799                                                 return true;
800                                 } else if (target_type == TypeManager.byte_type){
801                                         if (value >= 0 && value <= Byte.MaxValue)
802                                                 return true;
803                                 } else if (target_type == TypeManager.short_type){
804                                         if (value >= Int16.MinValue && value <= Int16.MaxValue)
805                                                 return true;
806                                 } else if (target_type == TypeManager.ushort_type){
807                                         if (value >= UInt16.MinValue && value <= UInt16.MaxValue)
808                                                 return true;
809                                 } else if (target_type == TypeManager.uint32_type){
810                                         if (value >= 0)
811                                                 return true;
812                                 } else if (target_type == TypeManager.uint64_type){
813                                          //
814                                          // we can optimize this case: a positive int32
815                                          // always fits on a uint64.  But we need an opcode
816                                          // to do it.
817                                          //
818                                         if (value >= 0)
819                                                 return true;
820                                 }
821
822                                 if (value == 0 && expr is IntLiteral && TypeManager.IsEnumType (target_type))
823                                         return true;
824                         }
825
826                         if (expr is LongConstant && target_type == TypeManager.uint64_type){
827                                 //
828                                 // Try the implicit constant expression conversion
829                                 // from long to ulong, instead of a nice routine,
830                                 // we just inline it
831                                 //
832                                 long v = ((LongConstant) expr).Value;
833                                 if (v >= 0)
834                                         return true;
835                         }
836
837                         if ((target_type == TypeManager.enum_type ||
838                              target_type.IsSubclassOf (TypeManager.enum_type)) &&
839                              expr is IntLiteral){
840                                 IntLiteral i = (IntLiteral) expr;
841
842                                 if (i.Value == 0)
843                                         return true;
844                         }
845
846                         //
847                         // If `expr_type' implements `target_type' (which is an iface)
848                         // see TryImplicitIntConversion
849                         //
850                         if (target_type.IsInterface && target_type.IsAssignableFrom (expr_type))
851                                 return true;
852
853                         if (target_type == TypeManager.void_ptr_type && expr_type.IsPointer)
854                                 return true;
855
856                         if (expr_type == TypeManager.anonymous_method_type){
857                                 if (!TypeManager.IsDelegateType (target_type))
858                                         return false;
859
860                                 AnonymousMethod am = (AnonymousMethod) expr;
861                                 return am.ImplicitStandardConversionExists (target_type);
862                         }
863
864                         return false;
865                 }
866
867                 /// <summary>
868                 ///  Finds "most encompassed type" according to the spec (13.4.2)
869                 ///  amongst the methods in the MethodGroupExpr
870                 /// </summary>
871                 static Type FindMostEncompassedType (ArrayList types)
872                 {
873                         Type best = null;
874
875                         if (types.Count == 0)
876                                 return null;
877
878                         if (types.Count == 1)
879                                 return (Type) types [0];
880
881                         EmptyExpression expr = EmptyExpression.Grab ();
882
883                         foreach (Type t in types) {
884                                 if (best == null) {
885                                         best = t;
886                                         continue;
887                                 }
888
889                                 expr.SetType (t);
890                                 if (ImplicitStandardConversionExists (expr, best))
891                                         best = t;
892                         }
893
894                         expr.SetType (best);
895                         foreach (Type t in types) {
896                                 if (best == t)
897                                         continue;
898                                 if (!ImplicitStandardConversionExists (expr, t)) {
899                                         best = null;
900                                         break;
901                                 }
902                         }
903
904                         EmptyExpression.Release (expr);
905
906                         return best;
907                 }
908
909                 /// <summary>
910                 ///  Finds "most encompassing type" according to the spec (13.4.2)
911                 ///  amongst the types in the given set
912                 /// </summary>
913                 static Type FindMostEncompassingType (ArrayList types)
914                 {
915                         Type best = null;
916
917                         if (types.Count == 0)
918                                 return null;
919
920                         if (types.Count == 1)
921                                 return (Type) types [0];
922
923                         EmptyExpression expr = EmptyExpression.Grab ();
924
925                         foreach (Type t in types) {
926                                 if (best == null) {
927                                         best = t;
928                                         continue;
929                                 }
930
931                                 expr.SetType (best);
932                                 if (ImplicitStandardConversionExists (expr, t))
933                                         best = t;
934                         }
935
936                         foreach (Type t in types) {
937                                 if (best == t)
938                                         continue;
939                                 expr.SetType (t);
940                                 if (!ImplicitStandardConversionExists (expr, best)) {
941                                         best = null;
942                                         break;
943                                 }
944                         }
945
946                         EmptyExpression.Release (expr);
947
948                         return best;
949                 }
950
951                 /// <summary>
952                 ///   Finds the most specific source Sx according to the rules of the spec (13.4.4)
953                 ///   by making use of FindMostEncomp* methods. Applies the correct rules separately
954                 ///   for explicit and implicit conversion operators.
955                 /// </summary>
956                 static public Type FindMostSpecificSource (IList list,
957                                                            Expression source, bool apply_explicit_conv_rules)
958                 {
959                         ArrayList src_types_set = new ArrayList ();
960
961                         //
962                         // If any operator converts from S then Sx = S
963                         //
964                         Type source_type = source.Type;
965                         foreach (MethodBase mb in list){
966                                 ParameterData pd = TypeManager.GetParameterData (mb);
967                                 Type param_type = pd.ParameterType (0);
968
969                                 if (param_type == source_type)
970                                         return param_type;
971
972                                 src_types_set.Add (param_type);
973                         }
974
975                         //
976                         // Explicit Conv rules
977                         //
978                         if (apply_explicit_conv_rules) {
979                                 ArrayList candidate_set = new ArrayList ();
980
981                                 foreach (Type param_type in src_types_set){
982                                         if (ImplicitStandardConversionExists (source, param_type))
983                                                 candidate_set.Add (param_type);
984                                 }
985
986                                 if (candidate_set.Count != 0)
987                                         return FindMostEncompassedType (candidate_set);
988                         }
989
990                         //
991                         // Final case
992                         //
993                         if (apply_explicit_conv_rules)
994                                 return FindMostEncompassingType (src_types_set);
995                         else
996                                 return FindMostEncompassedType (src_types_set);
997                 }
998
999                 /// <summary>
1000                 ///  Finds the most specific target Tx according to section 13.4.4
1001                 /// </summary>
1002                 static public Type FindMostSpecificTarget (IList list,
1003                                                            Type target, bool apply_explicit_conv_rules)
1004                 {
1005                         ArrayList tgt_types_set = new ArrayList ();
1006
1007                         //
1008                         // If any operator converts to T then Tx = T
1009                         //
1010                         foreach (MethodInfo mi in list){
1011                                 Type ret_type = mi.ReturnType;
1012                                 if (ret_type == target)
1013                                         return ret_type;
1014
1015                                 tgt_types_set.Add (ret_type);
1016                         }
1017
1018                         //
1019                         // Explicit conv rules
1020                         //
1021                         if (apply_explicit_conv_rules) {
1022                                 ArrayList candidate_set = new ArrayList ();
1023
1024                                 EmptyExpression expr = EmptyExpression.Grab ();
1025
1026                                 foreach (Type ret_type in tgt_types_set){
1027                                         expr.SetType (ret_type);
1028
1029                                         if (ImplicitStandardConversionExists (expr, target))
1030                                                 candidate_set.Add (ret_type);
1031                                 }
1032
1033                                 EmptyExpression.Release (expr);
1034
1035                                 if (candidate_set.Count != 0)
1036                                         return FindMostEncompassingType (candidate_set);
1037                         }
1038
1039                         //
1040                         // Okay, final case !
1041                         //
1042                         if (apply_explicit_conv_rules)
1043                                 return FindMostEncompassedType (tgt_types_set);
1044                         else
1045                                 return FindMostEncompassingType (tgt_types_set);
1046                 }
1047
1048                 /// <summary>
1049                 ///  User-defined Implicit conversions
1050                 /// </summary>
1051                 static public Expression ImplicitUserConversion (EmitContext ec, Expression source,
1052                                                                  Type target, Location loc)
1053                 {
1054                         return UserDefinedConversion (ec, source, target, loc, false);
1055                 }
1056
1057                 /// <summary>
1058                 ///  User-defined Explicit conversions
1059                 /// </summary>
1060                 static public Expression ExplicitUserConversion (EmitContext ec, Expression source,
1061                                                                  Type target, Location loc)
1062                 {
1063                         return UserDefinedConversion (ec, source, target, loc, true);
1064                 }
1065
1066                 static void AddConversionOperators (ArrayList list,
1067                                                     Expression source, Type target_type,
1068                                                     bool look_for_explicit,
1069                                                     MethodGroupExpr mg)
1070                 {
1071                         if (mg == null)
1072                                 return;
1073
1074                         Type source_type = source.Type;
1075                         EmptyExpression expr = EmptyExpression.Grab ();
1076                         foreach (MethodInfo m in mg.Methods) {
1077                                 ParameterData pd = TypeManager.GetParameterData (m);
1078                                 Type return_type = m.ReturnType;
1079                                 Type arg_type = pd.ParameterType (0);
1080
1081                                 if (source_type != arg_type) {
1082                                         if (!ImplicitStandardConversionExists (source, arg_type)) {
1083                                                 if (!look_for_explicit)
1084                                                         continue;
1085                                                 expr.SetType (arg_type);
1086                                                 if (!ImplicitStandardConversionExists (expr, source_type))
1087                                                         continue;
1088                                         }
1089                                 }
1090
1091                                 if (target_type != return_type) {
1092                                         expr.SetType (return_type);
1093                                         if (!ImplicitStandardConversionExists (expr, target_type)) {
1094                                                 if (!look_for_explicit)
1095                                                         continue;
1096                                                 expr.SetType (target_type);
1097                                                 if (!ImplicitStandardConversionExists (expr, return_type))
1098                                                         continue;
1099                                         }
1100                                 }
1101
1102                                 list.Add (m);
1103                         }
1104
1105                         EmptyExpression.Release (expr);
1106                 }
1107
1108                 /// <summary>
1109                 ///   Compute the user-defined conversion operator from source_type to target_type.
1110                 ///   `look_for_explicit' controls whether we should also include the list of explicit operators
1111                 /// </summary>
1112                 static MethodInfo GetConversionOperator (EmitContext ec, Expression source, Type target_type, bool look_for_explicit)
1113                 {
1114                         ArrayList ops = new ArrayList (4);
1115
1116                         Type source_type = source.Type;
1117
1118                         if (source_type != TypeManager.decimal_type) {
1119                                 AddConversionOperators (ops, source, target_type, look_for_explicit,
1120                                         Expression.MethodLookup (ec, source_type, "op_Implicit", Location.Null) as MethodGroupExpr);
1121                                 if (look_for_explicit) {
1122                                         AddConversionOperators (ops, source, target_type, look_for_explicit,
1123                                                 Expression.MethodLookup (
1124                                                         ec, source_type, "op_Explicit", Location.Null) as MethodGroupExpr);
1125                                 }
1126                         }
1127
1128                         if (target_type != TypeManager.decimal_type) {
1129                                 AddConversionOperators (ops, source, target_type, look_for_explicit,
1130                                         Expression.MethodLookup (ec, target_type, "op_Implicit", Location.Null) as MethodGroupExpr);
1131                                 if (look_for_explicit) {
1132                                         AddConversionOperators (ops, source, target_type, look_for_explicit,
1133                                                 Expression.MethodLookup (
1134                                                         ec, target_type, "op_Explicit", Location.Null) as MethodGroupExpr);
1135                                 }
1136                         }
1137
1138                         if (ops.Count == 0)
1139                                 return null;
1140
1141                         Type most_specific_source = FindMostSpecificSource (ops, source, look_for_explicit);
1142                         if (most_specific_source == null)
1143                                 return null;
1144
1145                         Type most_specific_target = FindMostSpecificTarget (ops, target_type, look_for_explicit);
1146                         if (most_specific_target == null)
1147                                 return null;
1148
1149                         MethodInfo method = null;
1150
1151                         foreach (MethodInfo m in ops) {
1152                                 if (m.ReturnType != most_specific_target)
1153                                         continue;
1154                                 if (TypeManager.GetParameterData (m).ParameterType (0) != most_specific_source)
1155                                         continue;
1156                                 // Ambiguous: more than one conversion operator satisfies the signature.
1157                                 if (method != null)
1158                                         return null;
1159                                 method = m;
1160                         }
1161
1162                         return method;
1163                 }
1164
1165                 static DoubleHash explicit_conv = new DoubleHash (100);
1166                 static DoubleHash implicit_conv = new DoubleHash (100);
1167
1168                 /// <summary>
1169                 ///   User-defined conversions
1170                 /// </summary>
1171                 static public Expression UserDefinedConversion (EmitContext ec, Expression source,
1172                                                                 Type target, Location loc,
1173                                                                 bool look_for_explicit)
1174                 {
1175                         Type source_type = source.Type;
1176                         MethodInfo method = null;
1177
1178                         object o;
1179                         DoubleHash hash = look_for_explicit ? explicit_conv : implicit_conv;
1180
1181                         if (!(source is Constant) && hash.Lookup (source_type, target, out o)) {
1182                                 method = (MethodInfo) o;
1183                         } else {
1184                                 method = GetConversionOperator (ec, source, target, look_for_explicit);
1185                                 if (!(source is Constant))
1186                                         hash.Insert (source_type, target, method);
1187                         }
1188
1189                         if (method == null)
1190                                 return null;
1191
1192                         Type most_specific_source = TypeManager.GetParameterData (method).ParameterType (0);
1193
1194                         //
1195                         // This will do the conversion to the best match that we
1196                         // found.  Now we need to perform an implict standard conversion
1197                         // if the best match was not the type that we were requested
1198                         // by target.
1199                         //
1200                         if (look_for_explicit)
1201                                 source = ExplicitConversionStandard (ec, source, most_specific_source, loc);
1202                         else
1203                                 source = ImplicitConversionStandard (ec, source, most_specific_source, loc);
1204
1205                         if (source == null)
1206                                 return null;
1207
1208                         Expression e;
1209                         e =  new UserCast (method, source, loc);
1210                         if (e.Type != target){
1211                                 if (!look_for_explicit)
1212                                         e = ImplicitConversionStandard (ec, e, target, loc);
1213                                 else
1214                                         e = ExplicitConversionStandard (ec, e, target, loc);
1215                         }
1216
1217                         return e;
1218                 }
1219
1220                 /// <summary>
1221                 ///   Converts implicitly the resolved expression `expr' into the
1222                 ///   `target_type'.  It returns a new expression that can be used
1223                 ///   in a context that expects a `target_type'.
1224                 /// </summary>
1225                 static public Expression ImplicitConversion (EmitContext ec, Expression expr,
1226                                                              Type target_type, Location loc)
1227                 {
1228                         Expression e;
1229
1230                         if (target_type == null)
1231                                 throw new Exception ("Target type is null");
1232
1233                         e = ImplicitConversionStandard (ec, expr, target_type, loc);
1234                         if (e != null)
1235                                 return e;
1236
1237                         e = ImplicitUserConversion (ec, expr, target_type, loc);
1238                         if (e != null)
1239                                 return e;
1240
1241                         return null;
1242                 }
1243
1244
1245                 /// <summary>
1246                 ///   Attempts to apply the `Standard Implicit
1247                 ///   Conversion' rules to the expression `expr' into
1248                 ///   the `target_type'.  It returns a new expression
1249                 ///   that can be used in a context that expects a
1250                 ///   `target_type'.
1251                 ///
1252                 ///   This is different from `ImplicitConversion' in that the
1253                 ///   user defined implicit conversions are excluded.
1254                 /// </summary>
1255                 static public Expression ImplicitConversionStandard (EmitContext ec, Expression expr,
1256                                                                      Type target_type, Location loc)
1257                 {
1258                         Type expr_type = expr.Type;
1259                         Expression e;
1260 #if GMCS_SOURCE
1261                         // TODO: refactor to be a part of constant infrastructure
1262                         if (expr is NullLiteral) {
1263                             if (TypeManager.IsNullableType (target_type))
1264                                 return new Nullable.NullableLiteral (target_type, loc);
1265                         }
1266
1267                         if (TypeManager.IsNullableType (target_type)) {
1268                                 Type target = TypeManager.GetTypeArguments (target_type) [0];
1269
1270                                 if (TypeManager.IsNullableType (expr.Type)) {
1271                                         e = new Nullable.LiftedConversion (
1272                                                 expr, target_type, false, false, loc).Resolve (ec);
1273                                         if (e != null)
1274                                                 return e;
1275                                 } else {
1276                                         e = ImplicitConversion (ec, expr, target, loc);
1277                                         if (e != null)
1278                                                 return Nullable.Wrap.Create (e, ec);
1279                                 }
1280                         }
1281 #endif
1282                         if (expr.eclass == ExprClass.MethodGroup){
1283                                 if (!TypeManager.IsDelegateType (target_type)){
1284                                         return null;
1285                                 }
1286
1287                                 //
1288                                 // Only allow anonymous method conversions on post ISO_1
1289                                 //
1290                                 if (RootContext.Version != LanguageVersion.ISO_1){
1291                                         MethodGroupExpr mg = expr as MethodGroupExpr;
1292                                         if (mg != null)
1293                                                 return ImplicitDelegateCreation.Create (
1294                                                         ec, mg, target_type, loc);
1295                                 }
1296                         }
1297
1298                         if (expr_type.Equals (target_type) && !TypeManager.IsNullType (expr_type))
1299                                 return expr;
1300
1301                         e = ImplicitNumericConversion (expr, target_type);
1302                         if (e != null)
1303                                 return e;
1304
1305                         e = ImplicitReferenceConversion (expr, target_type);
1306                         if (e != null)
1307                                 return e;
1308
1309                         if (TypeManager.IsEnumType (target_type) && expr is IntLiteral){
1310                                 IntLiteral i = (IntLiteral) expr;
1311
1312                                 if (i.Value == 0)
1313                                         return new EnumConstant ((Constant) expr, target_type);
1314                         }
1315
1316                         if (ec.InUnsafe) {
1317                                 if (expr_type.IsPointer){
1318                                         if (target_type == TypeManager.void_ptr_type)
1319                                                 return new EmptyCast (expr, target_type);
1320
1321                                         //
1322                                         // yep, comparing pointer types cant be done with
1323                                         // t1 == t2, we have to compare their element types.
1324                                         //
1325                                         if (target_type.IsPointer){
1326                                                 if (TypeManager.GetElementType(target_type) == TypeManager.GetElementType(expr_type))
1327                                                         return expr;
1328
1329                                                 //return null;
1330                                         }
1331                                 }
1332
1333                                 if (expr_type == TypeManager.null_type && target_type.IsPointer)
1334                                         return new EmptyCast (NullPointer.Null, target_type);
1335                         }
1336
1337                         if (expr_type == TypeManager.anonymous_method_type){
1338                                 if (!TypeManager.IsDelegateType (target_type)){
1339                                         Report.Error (1660, loc,
1340                                                 "Cannot convert anonymous method block to type `{0}' because it is not a delegate type",
1341                                                 TypeManager.CSharpName (target_type));
1342                                         return null;
1343                                 }
1344
1345                                 AnonymousMethod am = (AnonymousMethod) expr;
1346                                 int errors = Report.Errors;
1347
1348                                 Expression conv = am.Compatible (ec, target_type);
1349                                 if (conv != null)
1350                                         return conv;
1351
1352                                 //
1353                                 // We return something instead of null, to avoid
1354                                 // the duplicate error, since am.Compatible would have
1355                                 // reported that already
1356                                 //
1357                                 if (errors != Report.Errors)
1358                                         return new EmptyCast (expr, target_type);
1359                         }
1360
1361                         return null;
1362                 }
1363
1364                 /// <summary>
1365                 ///   Attempts to perform an implicit constant conversion of the IntConstant
1366                 ///   into a different data type using casts (See Implicit Constant
1367                 ///   Expression Conversions)
1368                 /// </summary>
1369                 static public Expression TryImplicitIntConversion (Type target_type, IntConstant ic)
1370                 {
1371                         int value = ic.Value;
1372
1373                         if (target_type == TypeManager.sbyte_type){
1374                                 if (value >= SByte.MinValue && value <= SByte.MaxValue)
1375                                         return new SByteConstant ((sbyte) value, ic.Location);
1376                         } else if (target_type == TypeManager.byte_type){
1377                                 if (value >= Byte.MinValue && value <= Byte.MaxValue)
1378                                         return new ByteConstant ((byte) value, ic.Location);
1379                         } else if (target_type == TypeManager.short_type){
1380                                 if (value >= Int16.MinValue && value <= Int16.MaxValue)
1381                                         return new ShortConstant ((short) value, ic.Location);
1382                         } else if (target_type == TypeManager.ushort_type){
1383                                 if (value >= UInt16.MinValue && value <= UInt16.MaxValue)
1384                                         return new UShortConstant ((ushort) value, ic.Location);
1385                         } else if (target_type == TypeManager.uint32_type){
1386                                 if (value >= 0)
1387                                         return new UIntConstant ((uint) value, ic.Location);
1388                         } else if (target_type == TypeManager.uint64_type){
1389                                 //
1390                                 // we can optimize this case: a positive int32
1391                                 // always fits on a uint64.  But we need an opcode
1392                                 // to do it.
1393                                 //
1394                                 if (value >= 0)
1395                                         return new ULongConstant ((ulong) value, ic.Location);
1396                         } else if (target_type == TypeManager.double_type)
1397                                 return new DoubleConstant ((double) value, ic.Location);
1398                         else if (target_type == TypeManager.float_type)
1399                                 return new FloatConstant ((float) value, ic.Location);
1400
1401                         if (value == 0 && ic is IntLiteral && TypeManager.IsEnumType (target_type)){
1402                                 Type underlying = TypeManager.EnumToUnderlying (target_type);
1403                                 Constant e = (Constant) ic;
1404
1405                                 //
1406                                 // Possibly, we need to create a different 0 literal before passing
1407                                 // to EnumConstant
1408                                 //
1409                                 if (underlying == TypeManager.int64_type)
1410                                         e = new LongLiteral (0, ic.Location);
1411                                 else if (underlying == TypeManager.uint64_type)
1412                                         e = new ULongLiteral (0, ic.Location);
1413
1414                                 return new EnumConstant (e, target_type);
1415                         }
1416
1417                         //
1418                         // If `target_type' is an interface and the type of `ic' implements the interface
1419                         // e.g. target_type is IComparable, IConvertible, IFormattable
1420                         //
1421                         if (target_type.IsInterface && target_type.IsAssignableFrom (ic.Type))
1422                                 return new BoxedCast (ic, target_type);
1423
1424                         return null;
1425                 }
1426
1427                 /// <summary>
1428                 ///   Attempts to implicitly convert `source' into `target_type', using
1429                 ///   ImplicitConversion.  If there is no implicit conversion, then
1430                 ///   an error is signaled
1431                 /// </summary>
1432                 static public Expression ImplicitConversionRequired (EmitContext ec, Expression source,
1433                                                                      Type target_type, Location loc)
1434                 {
1435                         Expression e = ImplicitConversion (ec, source, target_type, loc);
1436                         if (e != null)
1437                                 return e;
1438
1439                         source.Error_ValueCannotBeConverted (loc, target_type, false);
1440                         return null;
1441                 }
1442
1443                 /// <summary>
1444                 ///   Performs the explicit numeric conversions
1445                 /// </summary>
1446                 public static Expression ExplicitNumericConversion (Expression expr, Type target_type)
1447                 {
1448                         Type expr_type = expr.Type;
1449                         Type real_target_type = target_type;
1450
1451                         if (expr_type == TypeManager.sbyte_type){
1452                                 //
1453                                 // From sbyte to byte, ushort, uint, ulong, char
1454                                 //
1455                                 if (real_target_type == TypeManager.byte_type)
1456                                         return new ConvCast (expr, target_type, ConvCast.Mode.I1_U1);
1457                                 if (real_target_type == TypeManager.ushort_type)
1458                                         return new ConvCast (expr, target_type, ConvCast.Mode.I1_U2);
1459                                 if (real_target_type == TypeManager.uint32_type)
1460                                         return new ConvCast (expr, target_type, ConvCast.Mode.I1_U4);
1461                                 if (real_target_type == TypeManager.uint64_type)
1462                                         return new ConvCast (expr, target_type, ConvCast.Mode.I1_U8);
1463                                 if (real_target_type == TypeManager.char_type)
1464                                         return new ConvCast (expr, target_type, ConvCast.Mode.I1_CH);
1465                         } else if (expr_type == TypeManager.byte_type){
1466                                 //
1467                                 // From byte to sbyte and char
1468                                 //
1469                                 if (real_target_type == TypeManager.sbyte_type)
1470                                         return new ConvCast (expr, target_type, ConvCast.Mode.U1_I1);
1471                                 if (real_target_type == TypeManager.char_type)
1472                                         return new ConvCast (expr, target_type, ConvCast.Mode.U1_CH);
1473                         } else if (expr_type == TypeManager.short_type){
1474                                 //
1475                                 // From short to sbyte, byte, ushort, uint, ulong, char
1476                                 //
1477                                 if (real_target_type == TypeManager.sbyte_type)
1478                                         return new ConvCast (expr, target_type, ConvCast.Mode.I2_I1);
1479                                 if (real_target_type == TypeManager.byte_type)
1480                                         return new ConvCast (expr, target_type, ConvCast.Mode.I2_U1);
1481                                 if (real_target_type == TypeManager.ushort_type)
1482                                         return new ConvCast (expr, target_type, ConvCast.Mode.I2_U2);
1483                                 if (real_target_type == TypeManager.uint32_type)
1484                                         return new ConvCast (expr, target_type, ConvCast.Mode.I2_U4);
1485                                 if (real_target_type == TypeManager.uint64_type)
1486                                         return new ConvCast (expr, target_type, ConvCast.Mode.I2_U8);
1487                                 if (real_target_type == TypeManager.char_type)
1488                                         return new ConvCast (expr, target_type, ConvCast.Mode.I2_CH);
1489                         } else if (expr_type == TypeManager.ushort_type){
1490                                 //
1491                                 // From ushort to sbyte, byte, short, char
1492                                 //
1493                                 if (real_target_type == TypeManager.sbyte_type)
1494                                         return new ConvCast (expr, target_type, ConvCast.Mode.U2_I1);
1495                                 if (real_target_type == TypeManager.byte_type)
1496                                         return new ConvCast (expr, target_type, ConvCast.Mode.U2_U1);
1497                                 if (real_target_type == TypeManager.short_type)
1498                                         return new ConvCast (expr, target_type, ConvCast.Mode.U2_I2);
1499                                 if (real_target_type == TypeManager.char_type)
1500                                         return new ConvCast (expr, target_type, ConvCast.Mode.U2_CH);
1501                         } else if (expr_type == TypeManager.int32_type){
1502                                 //
1503                                 // From int to sbyte, byte, short, ushort, uint, ulong, char
1504                                 //
1505                                 if (real_target_type == TypeManager.sbyte_type)
1506                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_I1);
1507                                 if (real_target_type == TypeManager.byte_type)
1508                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_U1);
1509                                 if (real_target_type == TypeManager.short_type)
1510                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_I2);
1511                                 if (real_target_type == TypeManager.ushort_type)
1512                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_U2);
1513                                 if (real_target_type == TypeManager.uint32_type)
1514                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_U4);
1515                                 if (real_target_type == TypeManager.uint64_type)
1516                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_U8);
1517                                 if (real_target_type == TypeManager.char_type)
1518                                         return new ConvCast (expr, target_type, ConvCast.Mode.I4_CH);
1519                         } else if (expr_type == TypeManager.uint32_type){
1520                                 //
1521                                 // From uint to sbyte, byte, short, ushort, int, char
1522                                 //
1523                                 if (real_target_type == TypeManager.sbyte_type)
1524                                         return new ConvCast (expr, target_type, ConvCast.Mode.U4_I1);
1525                                 if (real_target_type == TypeManager.byte_type)
1526                                         return new ConvCast (expr, target_type, ConvCast.Mode.U4_U1);
1527                                 if (real_target_type == TypeManager.short_type)
1528                                         return new ConvCast (expr, target_type, ConvCast.Mode.U4_I2);
1529                                 if (real_target_type == TypeManager.ushort_type)
1530                                         return new ConvCast (expr, target_type, ConvCast.Mode.U4_U2);
1531                                 if (real_target_type == TypeManager.int32_type)
1532                                         return new ConvCast (expr, target_type, ConvCast.Mode.U4_I4);
1533                                 if (real_target_type == TypeManager.char_type)
1534                                         return new ConvCast (expr, target_type, ConvCast.Mode.U4_CH);
1535                         } else if (expr_type == TypeManager.int64_type){
1536                                 //
1537                                 // From long to sbyte, byte, short, ushort, int, uint, ulong, char
1538                                 //
1539                                 if (real_target_type == TypeManager.sbyte_type)
1540                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_I1);
1541                                 if (real_target_type == TypeManager.byte_type)
1542                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_U1);
1543                                 if (real_target_type == TypeManager.short_type)
1544                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_I2);
1545                                 if (real_target_type == TypeManager.ushort_type)
1546                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_U2);
1547                                 if (real_target_type == TypeManager.int32_type)
1548                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_I4);
1549                                 if (real_target_type == TypeManager.uint32_type)
1550                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_U4);
1551                                 if (real_target_type == TypeManager.uint64_type)
1552                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_U8);
1553                                 if (real_target_type == TypeManager.char_type)
1554                                         return new ConvCast (expr, target_type, ConvCast.Mode.I8_CH);
1555                         } else if (expr_type == TypeManager.uint64_type){
1556                                 //
1557                                 // From ulong to sbyte, byte, short, ushort, int, uint, long, char
1558                                 //
1559                                 if (real_target_type == TypeManager.sbyte_type)
1560                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_I1);
1561                                 if (real_target_type == TypeManager.byte_type)
1562                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_U1);
1563                                 if (real_target_type == TypeManager.short_type)
1564                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_I2);
1565                                 if (real_target_type == TypeManager.ushort_type)
1566                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_U2);
1567                                 if (real_target_type == TypeManager.int32_type)
1568                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_I4);
1569                                 if (real_target_type == TypeManager.uint32_type)
1570                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_U4);
1571                                 if (real_target_type == TypeManager.int64_type)
1572                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_I8);
1573                                 if (real_target_type == TypeManager.char_type)
1574                                         return new ConvCast (expr, target_type, ConvCast.Mode.U8_CH);
1575                         } else if (expr_type == TypeManager.char_type){
1576                                 //
1577                                 // From char to sbyte, byte, short
1578                                 //
1579                                 if (real_target_type == TypeManager.sbyte_type)
1580                                         return new ConvCast (expr, target_type, ConvCast.Mode.CH_I1);
1581                                 if (real_target_type == TypeManager.byte_type)
1582                                         return new ConvCast (expr, target_type, ConvCast.Mode.CH_U1);
1583                                 if (real_target_type == TypeManager.short_type)
1584                                         return new ConvCast (expr, target_type, ConvCast.Mode.CH_I2);
1585                         } else if (expr_type == TypeManager.float_type){
1586                                 //
1587                                 // From float to sbyte, byte, short,
1588                                 // ushort, int, uint, long, ulong, char
1589                                 // or decimal
1590                                 //
1591                                 if (real_target_type == TypeManager.sbyte_type)
1592                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_I1);
1593                                 if (real_target_type == TypeManager.byte_type)
1594                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_U1);
1595                                 if (real_target_type == TypeManager.short_type)
1596                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_I2);
1597                                 if (real_target_type == TypeManager.ushort_type)
1598                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_U2);
1599                                 if (real_target_type == TypeManager.int32_type)
1600                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_I4);
1601                                 if (real_target_type == TypeManager.uint32_type)
1602                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_U4);
1603                                 if (real_target_type == TypeManager.int64_type)
1604                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_I8);
1605                                 if (real_target_type == TypeManager.uint64_type)
1606                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_U8);
1607                                 if (real_target_type == TypeManager.char_type)
1608                                         return new ConvCast (expr, target_type, ConvCast.Mode.R4_CH);
1609                                 if (real_target_type == TypeManager.decimal_type)
1610                                         return new CastToDecimal (expr, true);
1611                         } else if (expr_type == TypeManager.double_type){
1612                                 //
1613                                 // From double to sbyte, byte, short,
1614                                 // ushort, int, uint, long, ulong,
1615                                 // char, float or decimal
1616                                 //
1617                                 if (real_target_type == TypeManager.sbyte_type)
1618                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_I1);
1619                                 if (real_target_type == TypeManager.byte_type)
1620                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_U1);
1621                                 if (real_target_type == TypeManager.short_type)
1622                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_I2);
1623                                 if (real_target_type == TypeManager.ushort_type)
1624                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_U2);
1625                                 if (real_target_type == TypeManager.int32_type)
1626                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_I4);
1627                                 if (real_target_type == TypeManager.uint32_type)
1628                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_U4);
1629                                 if (real_target_type == TypeManager.int64_type)
1630                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_I8);
1631                                 if (real_target_type == TypeManager.uint64_type)
1632                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_U8);
1633                                 if (real_target_type == TypeManager.char_type)
1634                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_CH);
1635                                 if (real_target_type == TypeManager.float_type)
1636                                         return new ConvCast (expr, target_type, ConvCast.Mode.R8_R4);
1637                                 if (real_target_type == TypeManager.decimal_type)
1638                                         return new CastToDecimal (expr, true);
1639                         } else if (expr_type == TypeManager.decimal_type) {
1640                                 return new CastFromDecimal (expr, target_type).Resolve ();
1641                         }
1642                         return null;
1643                 }
1644
1645                 /// <summary>
1646                 ///  Returns whether an explicit reference conversion can be performed
1647                 ///  from source_type to target_type
1648                 /// </summary>
1649                 public static bool ExplicitReferenceConversionExists (Type source_type, Type target_type)
1650                 {
1651                         bool target_is_type_param = TypeManager.IsGenericParameter (target_type);
1652                         bool target_is_value_type = target_type.IsValueType;
1653
1654                         if (source_type == target_type)
1655                                 return true;
1656
1657                         //
1658                         // From generic parameter to any type
1659                         //
1660                         if (TypeManager.IsGenericParameter (source_type))
1661                                 return ExplicitTypeParameterConversionExists (source_type, target_type);
1662
1663                         //
1664                         // From object to a generic parameter
1665                         //
1666                         if (source_type == TypeManager.object_type && target_is_type_param)
1667                                 return true;
1668
1669                         //
1670                         // From object to any reference type
1671                         //
1672                         if (source_type == TypeManager.object_type && !target_is_value_type)
1673                                 return true;
1674
1675                         //
1676                         // From any class S to any class-type T, provided S is a base class of T
1677                         //
1678                         if (TypeManager.IsSubclassOf (target_type, source_type))
1679                                 return true;
1680
1681                         //
1682                         // From any interface type S to any interface T provided S is not derived from T
1683                         //
1684                         if (source_type.IsInterface && target_type.IsInterface){
1685                                 if (!TypeManager.IsSubclassOf (target_type, source_type))
1686                                         return true;
1687                         }
1688
1689                         //
1690                         // From any class type S to any interface T, provided S is not sealed
1691                         // and provided S does not implement T.
1692                         //
1693                         if (target_type.IsInterface && !source_type.IsSealed &&
1694                             !TypeManager.ImplementsInterface (source_type, target_type))
1695                                 return true;
1696
1697                         //
1698                         // From any interface-type S to to any class type T, provided T is not
1699                         // sealed, or provided T implements S.
1700                         //
1701                         if (source_type.IsInterface &&
1702                             (!target_type.IsSealed || TypeManager.ImplementsInterface (target_type, source_type)))
1703                                 return true;
1704
1705
1706                         // From an array type S with an element type Se to an array type T with an
1707                         // element type Te provided all the following are true:
1708                         //     * S and T differe only in element type, in other words, S and T
1709                         //       have the same number of dimensions.
1710                         //     * Both Se and Te are reference types
1711                         //     * An explicit referenc conversions exist from Se to Te
1712                         //
1713                         if (source_type.IsArray && target_type.IsArray) {
1714                                 if (source_type.GetArrayRank () == target_type.GetArrayRank ()) {
1715
1716                                         Type source_element_type = TypeManager.GetElementType (source_type);
1717                                         Type target_element_type = TypeManager.GetElementType (target_type);
1718
1719                                         if (TypeManager.IsGenericParameter (source_element_type) ||
1720                                             (!source_element_type.IsValueType && !target_element_type.IsValueType))
1721                                                 if (ExplicitReferenceConversionExists (source_element_type,
1722                                                                                        target_element_type))
1723                                                         return true;
1724                                 }
1725                         }
1726
1727
1728                         // From System.Array to any array-type
1729                         if (source_type == TypeManager.array_type &&
1730                             target_type.IsArray){
1731                                 return true;
1732                         }
1733
1734                         //
1735                         // From System delegate to any delegate-type
1736                         //
1737                         if (source_type == TypeManager.delegate_type &&
1738                             TypeManager.IsDelegateType (target_type))
1739                                 return true;
1740
1741                         //
1742                         // From ICloneable to Array or Delegate types
1743                         //
1744                         if (source_type == TypeManager.icloneable_type &&
1745                             (target_type == TypeManager.array_type ||
1746                              target_type == TypeManager.delegate_type))
1747                                 return true;
1748
1749                         return false;
1750                 }
1751
1752                 /// <summary>
1753                 ///   Implements Explicit Reference conversions
1754                 /// </summary>
1755                 static Expression ExplicitReferenceConversion (Expression source, Type target_type)
1756                 {
1757                         Type source_type = source.Type;
1758                         bool target_is_type_param = TypeManager.IsGenericParameter (target_type);
1759                         bool target_is_value_type = target_type.IsValueType;
1760
1761                         //
1762                         // From object to a generic parameter
1763                         //
1764                         if (source_type == TypeManager.object_type && target_is_type_param)
1765                                 return new UnboxCast (source, target_type);
1766
1767                         //
1768                         // Explicit type parameter conversion.
1769                         //
1770
1771                         if (TypeManager.IsGenericParameter (source_type))
1772                                 return ExplicitTypeParameterConversion (source, target_type);
1773
1774                         //
1775                         // From object to any reference type
1776                         //
1777                         if (source_type == TypeManager.object_type && !target_is_value_type)
1778                                 return new ClassCast (source, target_type);
1779
1780                         //
1781                         // Unboxing conversion.
1782                         //
1783                         if (((source_type == TypeManager.enum_type &&
1784                                 !(source is EmptyCast)) ||
1785                                 source_type == TypeManager.value_type) && target_is_value_type)
1786                                 return new UnboxCast (source, target_type);
1787
1788                         //
1789                         // From any class S to any class-type T, provided S is a base class of T
1790                         //
1791                         if (TypeManager.IsSubclassOf (target_type, source_type))
1792                                 return new ClassCast (source, target_type);
1793
1794                         //
1795                         // From any interface type S to any interface T provided S is not derived from T
1796                         //
1797                         if (source_type.IsInterface && target_type.IsInterface){
1798                                 if (TypeManager.ImplementsInterface (source_type, target_type))
1799                                         return null;
1800                                 else
1801                                         return new ClassCast (source, target_type);
1802                         }
1803
1804                         //
1805                         // From any class type S to any interface T, provides S is not sealed
1806                         // and provided S does not implement T.
1807                         //
1808                         if (target_type.IsInterface && !source_type.IsSealed) {
1809                                 if (TypeManager.ImplementsInterface (source_type, target_type))
1810                                         return null;
1811                                 else
1812                                         return new ClassCast (source, target_type);
1813
1814                         }
1815
1816                         //
1817                         // From any interface-type S to to any class type T, provided T is not
1818                         // sealed, or provided T implements S.
1819                         //
1820                         if (source_type.IsInterface) {
1821                                 if (!target_type.IsSealed || TypeManager.ImplementsInterface (target_type, source_type)) {
1822                                         if (target_type.IsClass)
1823                                                 return new ClassCast (source, target_type);
1824                                         else
1825                                                 return new UnboxCast (source, target_type);
1826                                 }
1827
1828                                 return null;
1829                         }
1830
1831                         // From an array type S with an element type Se to an array type T with an
1832                         // element type Te provided all the following are true:
1833                         //     * S and T differe only in element type, in other words, S and T
1834                         //       have the same number of dimensions.
1835                         //     * Both Se and Te are reference types
1836                         //     * An explicit referenc conversions exist from Se to Te
1837                         //
1838                         if (source_type.IsArray && target_type.IsArray) {
1839                                 if (source_type.GetArrayRank () == target_type.GetArrayRank ()) {
1840
1841                                         Type source_element_type = TypeManager.GetElementType (source_type);
1842                                         Type target_element_type = TypeManager.GetElementType (target_type);
1843
1844                                         if (!source_element_type.IsValueType && !target_element_type.IsValueType)
1845                                                 if (ExplicitReferenceConversionExists (source_element_type,
1846                                                                                        target_element_type))
1847                                                         return new ClassCast (source, target_type);
1848                                 }
1849                         }
1850
1851
1852                         // From System.Array to any array-type
1853                         if (source_type == TypeManager.array_type &&
1854                             target_type.IsArray) {
1855                                 return new ClassCast (source, target_type);
1856                         }
1857
1858                         //
1859                         // From System delegate to any delegate-type
1860                         //
1861                         if (source_type == TypeManager.delegate_type &&
1862                             TypeManager.IsDelegateType (target_type))
1863                                 return new ClassCast (source, target_type);
1864
1865                         //
1866                         // From ICloneable to Array or Delegate types
1867                         //
1868                         if (source_type == TypeManager.icloneable_type &&
1869                             (target_type == TypeManager.array_type ||
1870                              target_type == TypeManager.delegate_type))
1871                                 return new ClassCast (source, target_type);
1872
1873                         return null;
1874                 }
1875
1876                 /// <summary>
1877                 ///   Performs an explicit conversion of the expression `expr' whose
1878                 ///   type is expr.Type to `target_type'.
1879                 /// </summary>
1880                 static public Expression ExplicitConversionCore (EmitContext ec, Expression expr,
1881                                                                  Type target_type, Location loc)
1882                 {
1883                         Type expr_type = expr.Type;
1884
1885                         // Explicit conversion includes implicit conversion and it used for enum underlying types too
1886                         Expression ne = ImplicitConversionStandard (ec, expr, target_type, loc);
1887                         if (ne != null)
1888                                 return ne;
1889
1890                         //
1891                         // Unboxing conversions; only object types can be convertible to enum
1892                         //
1893                         if (expr_type == TypeManager.object_type && target_type.IsValueType || expr_type == TypeManager.enum_type)
1894                                 return new UnboxCast (expr, target_type);
1895
1896                         if (TypeManager.IsEnumType (expr_type)) {
1897                                 if (expr is EnumConstant)
1898                                         return ExplicitConversionCore (ec, ((EnumConstant) expr).Child, target_type, loc);
1899
1900                                 return ExplicitConversionCore (ec, new EmptyCast (expr, TypeManager.EnumToUnderlying (expr_type)), target_type, loc);
1901                         }
1902
1903                         if (TypeManager.IsEnumType (target_type)){
1904                                 Expression ce = ExplicitConversionCore (ec, expr, TypeManager.EnumToUnderlying (target_type), loc);
1905                                 if (ce != null)
1906                                         return new EmptyCast (ce, target_type);
1907                         }
1908
1909                         ne = ExplicitNumericConversion (expr, target_type);
1910                         if (ne != null)
1911                                 return ne;
1912
1913                         //
1914                         // Skip the ExplicitReferenceConversion because we can not convert
1915                         // from Null to a ValueType, and ExplicitReference wont check against
1916                         // null literal explicitly
1917                         //
1918                         if (expr_type != TypeManager.null_type){
1919                                 ne = ExplicitReferenceConversion (expr, target_type);
1920                                 if (ne != null)
1921                                         return ne;
1922                         }
1923
1924                         if (ec.InUnsafe){
1925                                 ne = ExplicitUnsafe (expr, target_type);
1926                                 if (ne != null)
1927                                         return ne;
1928                         }
1929
1930                         ne = ExplicitUserConversion (ec, expr, target_type, loc);
1931                         if (ne != null)
1932                                 return ne;
1933
1934                         return null;
1935                 }
1936
1937                 public static Expression ExplicitUnsafe (Expression expr, Type target_type)
1938                 {
1939                         Type expr_type = expr.Type;
1940
1941                         if (target_type.IsPointer){
1942                                 if (expr_type.IsPointer)
1943                                         return new EmptyCast (expr, target_type);
1944
1945                                 if (expr_type == TypeManager.sbyte_type ||
1946                                         expr_type == TypeManager.short_type ||
1947                                         expr_type == TypeManager.int32_type ||
1948                                         expr_type == TypeManager.int64_type)
1949                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I);
1950
1951                                 if (expr_type == TypeManager.ushort_type ||
1952                                         expr_type == TypeManager.uint32_type ||
1953                                         expr_type == TypeManager.uint64_type ||
1954                                         expr_type == TypeManager.byte_type)
1955                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U);
1956                         }
1957
1958                         if (expr_type.IsPointer){
1959                                 if (target_type == TypeManager.sbyte_type)
1960                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I1);
1961                                 else if (target_type == TypeManager.byte_type)
1962                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U1);
1963                                 else if (target_type == TypeManager.short_type)
1964                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I2);
1965                                 else if (target_type == TypeManager.ushort_type)
1966                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U2);
1967                                 else if (target_type == TypeManager.int32_type)
1968                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I4);
1969                                 else if (target_type == TypeManager.uint32_type)
1970                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U4);
1971                                 else if (target_type == TypeManager.uint64_type)
1972                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_U8);
1973                                 else if (target_type == TypeManager.int64_type){
1974                                         return new OpcodeCast (expr, target_type, OpCodes.Conv_I8);
1975                                 }
1976                         }
1977                         return null;
1978                 }
1979
1980                 /// <summary>
1981                 ///   Same as ExplicitConversion, only it doesn't include user defined conversions
1982                 /// </summary>
1983                 static public Expression ExplicitConversionStandard (EmitContext ec, Expression expr,
1984                                                                      Type target_type, Location l)
1985                 {
1986                         int errors = Report.Errors;
1987                         Expression ne = ImplicitConversionStandard (ec, expr, target_type, l);
1988                         if (Report.Errors > errors)
1989                                 return null;
1990
1991                         if (ne != null)
1992                                 return ne;
1993
1994                         ne = ExplicitNumericConversion (expr, target_type);
1995                         if (ne != null)
1996                                 return ne;
1997
1998                         ne = ExplicitReferenceConversion (expr, target_type);
1999                         if (ne != null)
2000                                 return ne;
2001
2002                         if (ec.InUnsafe && expr.Type == TypeManager.void_ptr_type && target_type.IsPointer)
2003                                 return new EmptyCast (expr, target_type);
2004
2005                         expr.Error_ValueCannotBeConverted (l, target_type, true);
2006                         return null;
2007                 }
2008
2009                 /// <summary>
2010                 ///   Performs an explicit conversion of the expression `expr' whose
2011                 ///   type is expr.Type to `target_type'.
2012                 /// </summary>
2013                 static public Expression ExplicitConversion (EmitContext ec, Expression expr,
2014                         Type target_type, Location loc)
2015                 {
2016                         Expression e;
2017 #if GMCS_SOURCE
2018                         Type expr_type = expr.Type;
2019                         if (TypeManager.IsNullableType (target_type)) {
2020                                 if (TypeManager.IsNullableType (expr_type)) {
2021                                         e = new Nullable.LiftedConversion (
2022                                                 expr, target_type, false, true, loc).Resolve (ec);
2023                                         if (e != null)
2024                                                 return e;
2025                                 } else if (expr_type == TypeManager.object_type) {
2026                                         return new UnboxCast (expr, target_type);
2027                                 } else {
2028                                         Type target = TypeManager.GetTypeArguments (target_type) [0];
2029
2030                                         e = ExplicitConversionCore (ec, expr, target, loc);
2031                                         if (e != null)
2032                                                 return Nullable.Wrap.Create (e, ec);
2033                                 }
2034                         } else if (TypeManager.IsNullableType (expr_type)) {
2035                                 Expression source = Nullable.Unwrap.Create (expr, ec);
2036                                 if (source != null) {
2037                                         e = ExplicitConversionCore (ec, source, target_type, loc);
2038                                         if (e != null)
2039                                                 return e;
2040                                 }
2041                         }
2042 #endif
2043                         e = ExplicitConversionCore (ec, expr, target_type, loc);
2044                         if (e != null)
2045                                 return e;
2046
2047                         expr.Error_ValueCannotBeConverted (loc, target_type, true);
2048                         return null;
2049                 }
2050         }
2051 }