2006-09-19 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / gmcs / generic.cs
1 //
2 // generic.cs: Generics support
3 //
4 // Authors: Martin Baulig (martin@ximian.com)
5 //          Miguel de Icaza (miguel@ximian.com)
6 //
7 // Licensed under the terms of the GNU GPL
8 //
9 // (C) 2001, 2002, 2003 Ximian, Inc (http://www.ximian.com)
10 // (C) 2004 Novell, Inc
11 //
12 using System;
13 using System.Reflection;
14 using System.Reflection.Emit;
15 using System.Globalization;
16 using System.Collections;
17 using System.Text;
18 using System.Text.RegularExpressions;
19         
20 namespace Mono.CSharp {
21
22         /// <summary>
23         ///   Abstract base class for type parameter constraints.
24         ///   The type parameter can come from a generic type definition or from reflection.
25         /// </summary>
26         public abstract class GenericConstraints {
27                 public abstract string TypeParameter {
28                         get;
29                 }
30
31                 public abstract GenericParameterAttributes Attributes {
32                         get;
33                 }
34
35                 public bool HasConstructorConstraint {
36                         get { return (Attributes & GenericParameterAttributes.DefaultConstructorConstraint) != 0; }
37                 }
38
39                 public bool HasReferenceTypeConstraint {
40                         get { return (Attributes & GenericParameterAttributes.ReferenceTypeConstraint) != 0; }
41                 }
42
43                 public bool HasValueTypeConstraint {
44                         get { return (Attributes & GenericParameterAttributes.NotNullableValueTypeConstraint) != 0; }
45                 }
46
47                 public virtual bool HasClassConstraint {
48                         get { return ClassConstraint != null; }
49                 }
50
51                 public abstract Type ClassConstraint {
52                         get;
53                 }
54
55                 public abstract Type[] InterfaceConstraints {
56                         get;
57                 }
58
59                 public abstract Type EffectiveBaseClass {
60                         get;
61                 }
62
63                 // <summary>
64                 //   Returns whether the type parameter is "known to be a reference type".
65                 // </summary>
66                 public virtual bool IsReferenceType {
67                         get {
68                                 if (HasReferenceTypeConstraint)
69                                         return true;
70                                 if (HasValueTypeConstraint)
71                                         return false;
72
73                                 if (ClassConstraint != null) {
74                                         if (ClassConstraint.IsValueType)
75                                                 return false;
76
77                                         if (ClassConstraint != TypeManager.object_type)
78                                                 return true;
79                                 }
80
81                                 foreach (Type t in InterfaceConstraints) {
82                                         if (!t.IsGenericParameter)
83                                                 continue;
84
85                                         GenericConstraints gc = TypeManager.GetTypeParameterConstraints (t);
86                                         if ((gc != null) && gc.IsReferenceType)
87                                                 return true;
88                                 }
89
90                                 return false;
91                         }
92                 }
93
94                 // <summary>
95                 //   Returns whether the type parameter is "known to be a value type".
96                 // </summary>
97                 public virtual bool IsValueType {
98                         get {
99                                 if (HasValueTypeConstraint)
100                                         return true;
101                                 if (HasReferenceTypeConstraint)
102                                         return false;
103
104                                 if (ClassConstraint != null) {
105                                         if (!ClassConstraint.IsValueType)
106                                                 return false;
107
108                                         if (ClassConstraint != TypeManager.value_type)
109                                                 return true;
110                                 }
111
112                                 foreach (Type t in InterfaceConstraints) {
113                                         if (!t.IsGenericParameter)
114                                                 continue;
115
116                                         GenericConstraints gc = TypeManager.GetTypeParameterConstraints (t);
117                                         if ((gc != null) && gc.IsValueType)
118                                                 return true;
119                                 }
120
121                                 return false;
122                         }
123                 }
124         }
125
126         public enum SpecialConstraint
127         {
128                 Constructor,
129                 ReferenceType,
130                 ValueType
131         }
132
133         /// <summary>
134         ///   Tracks the constraints for a type parameter from a generic type definition.
135         /// </summary>
136         public class Constraints : GenericConstraints {
137                 string name;
138                 ArrayList constraints;
139                 Location loc;
140                 
141                 //
142                 // name is the identifier, constraints is an arraylist of
143                 // Expressions (with types) or `true' for the constructor constraint.
144                 // 
145                 public Constraints (string name, ArrayList constraints,
146                                     Location loc)
147                 {
148                         this.name = name;
149                         this.constraints = constraints;
150                         this.loc = loc;
151                 }
152
153                 public override string TypeParameter {
154                         get {
155                                 return name;
156                         }
157                 }
158
159                 GenericParameterAttributes attrs;
160                 TypeExpr class_constraint;
161                 ArrayList iface_constraints;
162                 ArrayList type_param_constraints;
163                 int num_constraints;
164                 Type class_constraint_type;
165                 Type[] iface_constraint_types;
166                 Type effective_base_type;
167                 bool resolved;
168                 bool resolved_types;
169
170                 /// <summary>
171                 ///   Resolve the constraints - but only resolve things into Expression's, not
172                 ///   into actual types.
173                 /// </summary>
174                 public bool Resolve (IResolveContext ec)
175                 {
176                         if (resolved)
177                                 return true;
178
179                         iface_constraints = new ArrayList ();
180                         type_param_constraints = new ArrayList ();
181
182                         foreach (object obj in constraints) {
183                                 if (HasConstructorConstraint) {
184                                         Report.Error (401, loc,
185                                                       "The new() constraint must be the last constraint specified");
186                                         return false;
187                                 }
188
189                                 if (obj is SpecialConstraint) {
190                                         SpecialConstraint sc = (SpecialConstraint) obj;
191
192                                         if (sc == SpecialConstraint.Constructor) {
193                                                 if (!HasValueTypeConstraint) {
194                                                         attrs |= GenericParameterAttributes.DefaultConstructorConstraint;
195                                                         continue;
196                                                 }
197
198                                                 Report.Error (451, loc, "The `new()' constraint " +
199                                                         "cannot be used with the `struct' constraint");
200                                                 return false;
201                                         }
202
203                                         if ((num_constraints > 0) || HasReferenceTypeConstraint || HasValueTypeConstraint) {
204                                                 Report.Error (449, loc, "The `class' or `struct' " +
205                                                               "constraint must be the first constraint specified");
206                                                 return false;
207                                         }
208
209                                         if (sc == SpecialConstraint.ReferenceType)
210                                                 attrs |= GenericParameterAttributes.ReferenceTypeConstraint;
211                                         else
212                                                 attrs |= GenericParameterAttributes.NotNullableValueTypeConstraint;
213                                         continue;
214                                 }
215
216                                 int errors = Report.Errors;
217                                 FullNamedExpression fn = ((Expression) obj).ResolveAsTypeStep (ec, false);
218
219                                 if (fn == null) {
220                                         if (errors != Report.Errors)
221                                                 return false;
222
223                                         NamespaceEntry.Error_NamespaceNotFound (loc, ((Expression)obj).GetSignatureForError ());
224                                         return false;
225                                 }
226
227                                 TypeExpr expr;
228                                 ConstructedType cexpr = fn as ConstructedType;
229                                 if (cexpr != null) {
230                                         if (!cexpr.ResolveConstructedType (ec))
231                                                 return false;
232
233                                         expr = cexpr;
234                                 } else
235                                         expr = ((Expression) obj).ResolveAsTypeTerminal (ec, false);
236
237                                 if ((expr == null) || (expr.Type == null))
238                                         return false;
239
240                                 // TODO: It's aleady done in ResolveAsBaseTerminal
241                                 if (!ec.GenericDeclContainer.AsAccessible (fn.Type, ec.GenericDeclContainer.ModFlags)) {
242                                         Report.SymbolRelatedToPreviousError (fn.Type);
243                                         Report.Error (703, loc,
244                                                 "Inconsistent accessibility: constraint type `{0}' is less accessible than `{1}'",
245                                                 fn.GetSignatureForError (), ec.GenericDeclContainer.GetSignatureForError ());
246                                         return false;
247                                 }
248
249                                 TypeParameterExpr texpr = expr as TypeParameterExpr;
250                                 if (texpr != null)
251                                         type_param_constraints.Add (expr);
252                                 else if (expr.IsInterface)
253                                         iface_constraints.Add (expr);
254                                 else if (class_constraint != null) {
255                                         Report.Error (406, loc,
256                                                       "`{0}': the class constraint for `{1}' " +
257                                                       "must come before any other constraints.",
258                                                       expr.Name, name);
259                                         return false;
260                                 } else if (HasReferenceTypeConstraint || HasValueTypeConstraint) {
261                                         Report.Error (450, loc, "`{0}': cannot specify both " +
262                                                       "a constraint class and the `class' " +
263                                                       "or `struct' constraint", expr.GetSignatureForError ());
264                                         return false;
265                                 } else
266                                         class_constraint = expr;
267
268                                 num_constraints++;
269                         }
270
271                         ArrayList list = new ArrayList ();
272                         foreach (TypeExpr iface_constraint in iface_constraints) {
273                                 foreach (Type type in list) {
274                                         if (!type.Equals (iface_constraint.Type))
275                                                 continue;
276
277                                         Report.Error (405, loc,
278                                                       "Duplicate constraint `{0}' for type " +
279                                                       "parameter `{1}'.", iface_constraint.GetSignatureForError (),
280                                                       name);
281                                         return false;
282                                 }
283
284                                 list.Add (iface_constraint.Type);
285                         }
286
287                         foreach (TypeParameterExpr expr in type_param_constraints) {
288                                 foreach (Type type in list) {
289                                         if (!type.Equals (expr.Type))
290                                                 continue;
291
292                                         Report.Error (405, loc,
293                                                       "Duplicate constraint `{0}' for type " +
294                                                       "parameter `{1}'.", expr.GetSignatureForError (), name);
295                                         return false;
296                                 }
297
298                                 list.Add (expr.Type);
299                         }
300
301                         iface_constraint_types = new Type [list.Count];
302                         list.CopyTo (iface_constraint_types, 0);
303
304                         if (class_constraint != null) {
305                                 class_constraint_type = class_constraint.Type;
306                                 if (class_constraint_type == null)
307                                         return false;
308
309                                 if (class_constraint_type.IsSealed) {
310                                         if (class_constraint_type.IsAbstract)
311                                         {
312                                                 Report.Error (717, loc, "`{0}' is not a valid constraint. Static classes cannot be used as constraints",
313                                                         TypeManager.CSharpName (class_constraint_type));
314                                         }
315                                         else
316                                         {
317                                                 Report.Error (701, loc, "`{0}' is not a valid constraint. A constraint must be an interface, " +
318                                                         "a non-sealed class or a type parameter", TypeManager.CSharpName(class_constraint_type));
319                                         }
320                                         return false;
321                                 }
322
323                                 if ((class_constraint_type == TypeManager.array_type) ||
324                                     (class_constraint_type == TypeManager.delegate_type) ||
325                                     (class_constraint_type == TypeManager.enum_type) ||
326                                     (class_constraint_type == TypeManager.value_type) ||
327                                     (class_constraint_type == TypeManager.object_type)) {
328                                         Report.Error (702, loc,
329                                                       "Bound cannot be special class `{0}'",
330                                                       TypeManager.CSharpName (class_constraint_type));
331                                         return false;
332                                 }
333                         }
334
335                         if (class_constraint_type != null)
336                                 effective_base_type = class_constraint_type;
337                         else if (HasValueTypeConstraint)
338                                 effective_base_type = TypeManager.value_type;
339                         else
340                                 effective_base_type = TypeManager.object_type;
341
342                         resolved = true;
343                         return true;
344                 }
345
346                 bool CheckTypeParameterConstraints (TypeParameter tparam, Hashtable seen)
347                 {
348                         seen.Add (tparam, true);
349
350                         Constraints constraints = tparam.Constraints;
351                         if (constraints == null)
352                                 return true;
353
354                         if (constraints.HasValueTypeConstraint) {
355                                 Report.Error (456, loc, "Type parameter `{0}' has " +
356                                               "the `struct' constraint, so it cannot " +
357                                               "be used as a constraint for `{1}'",
358                                               tparam.Name, name);
359                                 return false;
360                         }
361
362                         if (constraints.type_param_constraints == null)
363                                 return true;
364
365                         foreach (TypeParameterExpr expr in constraints.type_param_constraints) {
366                                 if (seen.Contains (expr.TypeParameter)) {
367                                         Report.Error (454, loc, "Circular constraint " +
368                                                       "dependency involving `{0}' and `{1}'",
369                                                       tparam.Name, expr.Name);
370                                         return false;
371                                 }
372
373                                 if (!CheckTypeParameterConstraints (expr.TypeParameter, seen))
374                                         return false;
375                         }
376
377                         return true;
378                 }
379
380                 /// <summary>
381                 ///   Resolve the constraints into actual types.
382                 /// </summary>
383                 public bool ResolveTypes (IResolveContext ec)
384                 {
385                         if (resolved_types)
386                                 return true;
387
388                         resolved_types = true;
389
390                         foreach (object obj in constraints) {
391                                 ConstructedType cexpr = obj as ConstructedType;
392                                 if (cexpr == null)
393                                         continue;
394
395                                 if (!cexpr.CheckConstraints (ec))
396                                         return false;
397                         }
398
399                         foreach (TypeParameterExpr expr in type_param_constraints) {
400                                 Hashtable seen = new Hashtable ();
401                                 if (!CheckTypeParameterConstraints (expr.TypeParameter, seen))
402                                         return false;
403                         }
404
405                         for (int i = 0; i < iface_constraints.Count; ++i) {
406                                 TypeExpr iface_constraint = (TypeExpr) iface_constraints [i];
407                                 iface_constraint = iface_constraint.ResolveAsTypeTerminal (ec, false);
408                                 if (iface_constraint == null)
409                                         return false;
410                                 iface_constraints [i] = iface_constraint;
411                         }
412
413                         if (class_constraint != null) {
414                                 class_constraint = class_constraint.ResolveAsTypeTerminal (ec, false);
415                                 if (class_constraint == null)
416                                         return false;
417                         }
418
419                         return true;
420                 }
421
422                 /// <summary>
423                 ///   Check whether there are no conflicts in our type parameter constraints.
424                 ///
425                 ///   This is an example:
426                 ///
427                 ///   class Foo<T,U>
428                 ///      where T : class
429                 ///      where U : T, struct
430                 /// </summary>
431                 public bool CheckDependencies ()
432                 {
433                         foreach (TypeParameterExpr expr in type_param_constraints) {
434                                 if (!CheckDependencies (expr.TypeParameter))
435                                         return false;
436                         }
437
438                         return true;
439                 }
440
441                 bool CheckDependencies (TypeParameter tparam)
442                 {
443                         Constraints constraints = tparam.Constraints;
444                         if (constraints == null)
445                                 return true;
446
447                         if (HasValueTypeConstraint && constraints.HasClassConstraint) {
448                                 Report.Error (455, loc, "Type parameter `{0}' inherits " +
449                                               "conflicting constraints `{1}' and `{2}'",
450                                               name, TypeManager.CSharpName (constraints.ClassConstraint),
451                                               "System.ValueType");
452                                 return false;
453                         }
454
455                         if (HasClassConstraint && constraints.HasClassConstraint) {
456                                 Type t1 = ClassConstraint;
457                                 TypeExpr e1 = class_constraint;
458                                 Type t2 = constraints.ClassConstraint;
459                                 TypeExpr e2 = constraints.class_constraint;
460
461                                 if (!Convert.ImplicitReferenceConversionExists (e1, t2) &&
462                                     !Convert.ImplicitReferenceConversionExists (e2, t1)) {
463                                         Report.Error (455, loc,
464                                                       "Type parameter `{0}' inherits " +
465                                                       "conflicting constraints `{1}' and `{2}'",
466                                                       name, TypeManager.CSharpName (t1), TypeManager.CSharpName (t2));
467                                         return false;
468                                 }
469                         }
470
471                         if (constraints.type_param_constraints == null)
472                                 return true;
473
474                         foreach (TypeParameterExpr expr in constraints.type_param_constraints) {
475                                 if (!CheckDependencies (expr.TypeParameter))
476                                         return false;
477                         }
478
479                         return true;
480                 }
481
482                 public override GenericParameterAttributes Attributes {
483                         get { return attrs; }
484                 }
485
486                 public override bool HasClassConstraint {
487                         get { return class_constraint != null; }
488                 }
489
490                 public override Type ClassConstraint {
491                         get { return class_constraint_type; }
492                 }
493
494                 public override Type[] InterfaceConstraints {
495                         get { return iface_constraint_types; }
496                 }
497
498                 public override Type EffectiveBaseClass {
499                         get { return effective_base_type; }
500                 }
501
502                 public bool IsSubclassOf (Type t)
503                 {
504                         if ((class_constraint_type != null) &&
505                             class_constraint_type.IsSubclassOf (t))
506                                 return true;
507
508                         if (iface_constraint_types == null)
509                                 return false;
510
511                         foreach (Type iface in iface_constraint_types) {
512                                 if (TypeManager.IsSubclassOf (iface, t))
513                                         return true;
514                         }
515
516                         return false;
517                 }
518
519                 public Location Location {
520                         get {
521                                 return loc;
522                         }
523                 }
524
525                 /// <summary>
526                 ///   This is used when we're implementing a generic interface method.
527                 ///   Each method type parameter in implementing method must have the same
528                 ///   constraints than the corresponding type parameter in the interface
529                 ///   method.  To do that, we're called on each of the implementing method's
530                 ///   type parameters.
531                 /// </summary>
532                 public bool CheckInterfaceMethod (GenericConstraints gc)
533                 {
534                         if (gc.Attributes != attrs)
535                                 return false;
536
537                         if (HasClassConstraint != gc.HasClassConstraint)
538                                 return false;
539                         if (HasClassConstraint && !TypeManager.IsEqual (gc.ClassConstraint, ClassConstraint))
540                                 return false;
541
542                         int gc_icount = gc.InterfaceConstraints != null ?
543                                 gc.InterfaceConstraints.Length : 0;
544                         int icount = InterfaceConstraints != null ?
545                                 InterfaceConstraints.Length : 0;
546
547                         if (gc_icount != icount)
548                                 return false;
549
550                         foreach (Type iface in gc.InterfaceConstraints) {
551                                 bool ok = false;
552                                 foreach (Type check in InterfaceConstraints) {
553                                         if (TypeManager.IsEqual (iface, check)) {
554                                                 ok = true;
555                                                 break;
556                                         }
557                                 }
558
559                                 if (!ok)
560                                         return false;
561                         }
562
563                         return true;
564                 }
565         }
566
567         /// <summary>
568         ///   A type parameter from a generic type definition.
569         /// </summary>
570         public class TypeParameter : MemberCore, IMemberContainer {
571                 string name;
572                 DeclSpace decl;
573                 GenericConstraints gc;
574                 Constraints constraints;
575                 Location loc;
576                 GenericTypeParameterBuilder type;
577
578                 public TypeParameter (DeclSpace parent, DeclSpace decl, string name,
579                                       Constraints constraints, Attributes attrs, Location loc)
580                         : base (parent, new MemberName (name, loc), attrs)
581                 {
582                         this.name = name;
583                         this.decl = decl;
584                         this.constraints = constraints;
585                         this.loc = loc;
586                 }
587
588                 public GenericConstraints GenericConstraints {
589                         get { return gc != null ? gc : constraints; }
590                 }
591
592                 public Constraints Constraints {
593                         get { return constraints; }
594                 }
595
596                 public bool HasConstructorConstraint {
597                         get { return constraints != null && constraints.HasConstructorConstraint; }
598                 }
599
600                 public DeclSpace DeclSpace {
601                         get { return decl; }
602                 }
603
604                 public Type Type {
605                         get { return type; }
606                 }
607
608                 /// <summary>
609                 ///   This is the first method which is called during the resolving
610                 ///   process; we're called immediately after creating the type parameters
611                 ///   with SRE (by calling `DefineGenericParameters()' on the TypeBuilder /
612                 ///   MethodBuilder).
613                 ///
614                 ///   We're either called from TypeContainer.DefineType() or from
615                 ///   GenericMethod.Define() (called from Method.Define()).
616                 /// </summary>
617                 public void Define (GenericTypeParameterBuilder type)
618                 {
619                         if (this.type != null)
620                                 throw new InvalidOperationException ();
621
622                         this.type = type;
623                         TypeManager.AddTypeParameter (type, this);
624                 }
625
626                 /// <summary>
627                 ///   This is the second method which is called during the resolving
628                 ///   process - in case of class type parameters, we're called from
629                 ///   TypeContainer.ResolveType() - after it resolved the class'es
630                 ///   base class and interfaces. For method type parameters, we're
631                 ///   called immediately after Define().
632                 ///
633                 ///   We're just resolving the constraints into expressions here, we
634                 ///   don't resolve them into actual types.
635                 ///
636                 ///   Note that in the special case of partial generic classes, we may be
637                 ///   called _before_ Define() and we may also be called multiple types.
638                 /// </summary>
639                 public bool Resolve (DeclSpace ds)
640                 {
641                         if (constraints != null) {
642                                 if (!constraints.Resolve (ds)) {
643                                         constraints = null;
644                                         return false;
645                                 }
646                         }
647
648                         return true;
649                 }
650
651                 /// <summary>
652                 ///   This is the third method which is called during the resolving
653                 ///   process.  We're called immediately after calling DefineConstraints()
654                 ///   on all of the current class'es type parameters.
655                 ///
656                 ///   Our job is to resolve the constraints to actual types.
657                 ///
658                 ///   Note that we may have circular dependencies on type parameters - this
659                 ///   is why Resolve() and ResolveType() are separate.
660                 /// </summary>
661                 public bool ResolveType (IResolveContext ec)
662                 {
663                         if (constraints != null) {
664                                 if (!constraints.ResolveTypes (ec)) {
665                                         constraints = null;
666                                         return false;
667                                 }
668                         }
669
670                         return true;
671                 }
672
673                 /// <summary>
674                 ///   This is the fourth and last method which is called during the resolving
675                 ///   process.  We're called after everything is fully resolved and actually
676                 ///   register the constraints with SRE and the TypeManager.
677                 /// </summary>
678                 public bool DefineType (IResolveContext ec)
679                 {
680                         return DefineType (ec, null, null, false);
681                 }
682
683                 /// <summary>
684                 ///   This is the fith and last method which is called during the resolving
685                 ///   process.  We're called after everything is fully resolved and actually
686                 ///   register the constraints with SRE and the TypeManager.
687                 ///
688                 ///   The `builder', `implementing' and `is_override' arguments are only
689                 ///   applicable to method type parameters.
690                 /// </summary>
691                 public bool DefineType (IResolveContext ec, MethodBuilder builder,
692                                         MethodInfo implementing, bool is_override)
693                 {
694                         if (!ResolveType (ec))
695                                 return false;
696
697                         if (implementing != null) {
698                                 if (is_override && (constraints != null)) {
699                                         Report.Error (460, loc,
700                                                 "`{0}': Cannot specify constraints for overrides or explicit interface implementation methods",
701                                                 TypeManager.CSharpSignature (builder));
702                                         return false;
703                                 }
704
705                                 MethodBase mb = TypeManager.DropGenericMethodArguments (implementing);
706
707                                 int pos = type.GenericParameterPosition;
708                                 Type mparam = mb.GetGenericArguments () [pos];
709                                 GenericConstraints temp_gc = ReflectionConstraints.GetConstraints (mparam);
710
711                                 if (temp_gc != null)
712                                         gc = new InflatedConstraints (temp_gc, implementing.DeclaringType);
713                                 else if (constraints != null)
714                                         gc = new InflatedConstraints (constraints, implementing.DeclaringType);
715
716                                 bool ok = true;
717                                 if (constraints != null) {
718                                         if (temp_gc == null)
719                                                 ok = false;
720                                         else if (!constraints.CheckInterfaceMethod (gc))
721                                                 ok = false;
722                                 } else {
723                                         if (!is_override && (temp_gc != null))
724                                                 ok = false;
725                                 }
726
727                                 if (!ok) {
728                                         Report.SymbolRelatedToPreviousError (implementing);
729
730                                         Report.Error (
731                                                 425, loc, "The constraints for type " +
732                                                 "parameter `{0}' of method `{1}' must match " +
733                                                 "the constraints for type parameter `{2}' " +
734                                                 "of interface method `{3}'. Consider using " +
735                                                 "an explicit interface implementation instead",
736                                                 Name, TypeManager.CSharpSignature (builder),
737                                                 TypeManager.CSharpName (mparam), TypeManager.CSharpSignature (mb));
738                                         return false;
739                                 }
740                         } else if (DeclSpace is Iterator) {
741                                 TypeParameter[] tparams = DeclSpace.TypeParameters;
742                                 Type[] types = new Type [tparams.Length];
743                                 for (int i = 0; i < tparams.Length; i++)
744                                         types [i] = tparams [i].Type;
745
746                                 if (constraints != null)
747                                         gc = new InflatedConstraints (constraints, types);
748                         } else {
749                                 gc = (GenericConstraints) constraints;
750                         }
751
752                         if (gc == null)
753                                 return true;
754
755                         if (gc.HasClassConstraint)
756                                 type.SetBaseTypeConstraint (gc.ClassConstraint);
757
758                         type.SetInterfaceConstraints (gc.InterfaceConstraints);
759                         type.SetGenericParameterAttributes (gc.Attributes);
760                         TypeManager.RegisterBuilder (type, gc.InterfaceConstraints);
761
762                         return true;
763                 }
764
765                 /// <summary>
766                 ///   Check whether there are no conflicts in our type parameter constraints.
767                 ///
768                 ///   This is an example:
769                 ///
770                 ///   class Foo<T,U>
771                 ///      where T : class
772                 ///      where U : T, struct
773                 /// </summary>
774                 public bool CheckDependencies ()
775                 {
776                         if (constraints != null)
777                                 return constraints.CheckDependencies ();
778
779                         return true;
780                 }
781
782                 /// <summary>
783                 ///   This is called for each part of a partial generic type definition.
784                 ///
785                 ///   If `new_constraints' is not null and we don't already have constraints,
786                 ///   they become our constraints.  If we already have constraints, we must
787                 ///   check that they're the same.
788                 ///   con
789                 /// </summary>
790                 public bool UpdateConstraints (IResolveContext ec, Constraints new_constraints)
791                 {
792                         if (type == null)
793                                 throw new InvalidOperationException ();
794
795                         if (new_constraints == null)
796                                 return true;
797
798                         if (!new_constraints.Resolve (ec))
799                                 return false;
800                         if (!new_constraints.ResolveTypes (ec))
801                                 return false;
802
803                         if (constraints != null) 
804                                 return constraints.CheckInterfaceMethod (new_constraints);
805
806                         constraints = new_constraints;
807                         return true;
808                 }
809
810                 public void EmitAttributes ()
811                 {
812                         if (OptAttributes != null)
813                                 OptAttributes.Emit ();
814                 }
815
816                 public override string DocCommentHeader {
817                         get {
818                                 throw new InvalidOperationException (
819                                         "Unexpected attempt to get doc comment from " + this.GetType () + ".");
820                         }
821                 }
822
823                 //
824                 // MemberContainer
825                 //
826
827                 public override bool Define ()
828                 {
829                         return true;
830                 }
831
832                 public override void ApplyAttributeBuilder (Attribute a,
833                                                             CustomAttributeBuilder cb)
834                 {
835                         type.SetCustomAttribute (cb);
836                 }
837
838                 public override AttributeTargets AttributeTargets {
839                         get {
840                                 return (AttributeTargets) AttributeTargets.GenericParameter;
841                         }
842                 }
843
844                 public override string[] ValidAttributeTargets {
845                         get {
846                                 return new string [] { "type parameter" };
847                         }
848                 }
849
850                 //
851                 // IMemberContainer
852                 //
853
854                 string IMemberContainer.Name {
855                         get { return Name; }
856                 }
857
858                 MemberCache IMemberContainer.BaseCache {
859                         get { return null; }
860                 }
861
862                 bool IMemberContainer.IsInterface {
863                         get { return true; }
864                 }
865
866                 MemberList IMemberContainer.GetMembers (MemberTypes mt, BindingFlags bf)
867                 {
868                         return FindMembers (mt, bf, null, null);
869                 }
870
871                 MemberCache IMemberContainer.MemberCache {
872                         get { return null; }
873                 }
874
875                 public MemberList FindMembers (MemberTypes mt, BindingFlags bf,
876                                                MemberFilter filter, object criteria)
877                 {
878                         if (constraints == null)
879                                 return MemberList.Empty;
880
881                         ArrayList members = new ArrayList ();
882
883                         if (gc.HasClassConstraint) {
884                                 MemberList list = TypeManager.FindMembers (
885                                         gc.ClassConstraint, mt, bf, filter, criteria);
886
887                                 members.AddRange (list);
888                         }
889
890                         Type[] ifaces = TypeManager.ExpandInterfaces (gc.InterfaceConstraints);
891                         foreach (Type t in ifaces) {
892                                 MemberList list = TypeManager.FindMembers (
893                                         t, mt, bf, filter, criteria);
894
895                                 members.AddRange (list);
896                         }
897
898                         return new MemberList (members);
899                 }
900
901                 public bool IsSubclassOf (Type t)
902                 {
903                         if (type.Equals (t))
904                                 return true;
905
906                         if (constraints != null)
907                                 return constraints.IsSubclassOf (t);
908
909                         return false;
910                 }
911
912                 public override string ToString ()
913                 {
914                         return "TypeParameter[" + name + "]";
915                 }
916
917                 public static string GetSignatureForError (TypeParameter[] tp)
918                 {
919                         if (tp == null || tp.Length == 0)
920                                 return "";
921
922                         StringBuilder sb = new StringBuilder ("<");
923                         for (int i = 0; i < tp.Length; ++i) {
924                                 if (i > 0)
925                                         sb.Append (",");
926                                 sb.Append (tp[i].GetSignatureForError ());
927                         }
928                         sb.Append ('>');
929                         return sb.ToString ();
930                 }
931
932                 public void InflateConstraints (Type declaring)
933                 {
934                         if (constraints != null)
935                                 gc = new InflatedConstraints (constraints, declaring);
936                 }
937
938                 protected class InflatedConstraints : GenericConstraints
939                 {
940                         GenericConstraints gc;
941                         Type base_type;
942                         Type class_constraint;
943                         Type[] iface_constraints;
944                         Type[] dargs;
945
946                         public InflatedConstraints (GenericConstraints gc, Type declaring)
947                                 : this (gc, TypeManager.GetTypeArguments (declaring))
948                         { }
949
950                         public InflatedConstraints (GenericConstraints gc, Type[] dargs)
951                         {
952                                 this.gc = gc;
953                                 this.dargs = dargs;
954
955                                 ArrayList list = new ArrayList ();
956                                 if (gc.HasClassConstraint)
957                                         list.Add (inflate (gc.ClassConstraint));
958                                 foreach (Type iface in gc.InterfaceConstraints)
959                                         list.Add (inflate (iface));
960
961                                 bool has_class_constr = false;
962                                 if (list.Count > 0) {
963                                         Type first = (Type) list [0];
964                                         has_class_constr = !first.IsInterface && !first.IsGenericParameter;
965                                 }
966
967                                 if ((list.Count > 0) && has_class_constr) {
968                                         class_constraint = (Type) list [0];
969                                         iface_constraints = new Type [list.Count - 1];
970                                         list.CopyTo (1, iface_constraints, 0, list.Count - 1);
971                                 } else {
972                                         iface_constraints = new Type [list.Count];
973                                         list.CopyTo (iface_constraints, 0);
974                                 }
975
976                                 if (HasValueTypeConstraint)
977                                         base_type = TypeManager.value_type;
978                                 else if (class_constraint != null)
979                                         base_type = class_constraint;
980                                 else
981                                         base_type = TypeManager.object_type;
982                         }
983
984                         Type inflate (Type t)
985                         {
986                                 if (t == null)
987                                         return null;
988                                 if (t.IsGenericParameter)
989                                         return dargs [t.GenericParameterPosition];
990                                 if (t.IsGenericType) {
991                                         Type[] args = t.GetGenericArguments ();
992                                         Type[] inflated = new Type [args.Length];
993
994                                         for (int i = 0; i < args.Length; i++)
995                                                 inflated [i] = inflate (args [i]);
996
997                                         t = t.GetGenericTypeDefinition ();
998                                         t = t.MakeGenericType (inflated);
999                                 }
1000
1001                                 return t;
1002                         }
1003
1004                         public override string TypeParameter {
1005                                 get { return gc.TypeParameter; }
1006                         }
1007
1008                         public override GenericParameterAttributes Attributes {
1009                                 get { return gc.Attributes; }
1010                         }
1011
1012                         public override Type ClassConstraint {
1013                                 get { return class_constraint; }
1014                         }
1015
1016                         public override Type EffectiveBaseClass {
1017                                 get { return base_type; }
1018                         }
1019
1020                         public override Type[] InterfaceConstraints {
1021                                 get { return iface_constraints; }
1022                         }
1023                 }
1024         }
1025
1026         /// <summary>
1027         ///   A TypeExpr which already resolved to a type parameter.
1028         /// </summary>
1029         public class TypeParameterExpr : TypeExpr {
1030                 TypeParameter type_parameter;
1031
1032                 public override string Name {
1033                         get {
1034                                 return type_parameter.Name;
1035                         }
1036                 }
1037
1038                 public override string FullName {
1039                         get {
1040                                 return type_parameter.Name;
1041                         }
1042                 }
1043
1044                 public TypeParameter TypeParameter {
1045                         get {
1046                                 return type_parameter;
1047                         }
1048                 }
1049                 
1050                 public TypeParameterExpr (TypeParameter type_parameter, Location loc)
1051                 {
1052                         this.type_parameter = type_parameter;
1053                         this.loc = loc;
1054                 }
1055
1056                 protected override TypeExpr DoResolveAsTypeStep (IResolveContext ec)
1057                 {
1058                         type = type_parameter.Type;
1059
1060                         return this;
1061                 }
1062
1063                 public override bool IsInterface {
1064                         get { return false; }
1065                 }
1066
1067                 public override bool CheckAccessLevel (DeclSpace ds)
1068                 {
1069                         return true;
1070                 }
1071
1072                 public void Error_CannotUseAsUnmanagedType (Location loc)
1073                 {
1074                         Report.Error (-203, loc, "Can not use type parameter as unmanaged type");
1075                 }
1076         }
1077
1078         /// <summary>
1079         ///   Tracks the type arguments when instantiating a generic type.  We're used in
1080         ///   ConstructedType.
1081         /// </summary>
1082         public class TypeArguments {
1083                 public readonly Location Location;
1084                 ArrayList args;
1085                 Type[] atypes;
1086                 int dimension;
1087                 bool has_type_args;
1088                 bool created;
1089                 
1090                 public TypeArguments (Location loc)
1091                 {
1092                         args = new ArrayList ();
1093                         this.Location = loc;
1094                 }
1095
1096                 public TypeArguments (int dimension, Location loc)
1097                 {
1098                         this.dimension = dimension;
1099                         this.Location = loc;
1100                 }
1101
1102                 public void Add (Expression type)
1103                 {
1104                         if (created)
1105                                 throw new InvalidOperationException ();
1106
1107                         args.Add (type);
1108                 }
1109
1110                 public void Add (TypeArguments new_args)
1111                 {
1112                         if (created)
1113                                 throw new InvalidOperationException ();
1114
1115                         args.AddRange (new_args.args);
1116                 }
1117
1118                 /// <summary>
1119                 ///   We're used during the parsing process: the parser can't distinguish
1120                 ///   between type parameters and type arguments.  Because of that, the
1121                 ///   parser creates a `MemberName' with `TypeArguments' for both cases and
1122                 ///   in case of a generic type definition, we call GetDeclarations().
1123                 /// </summary>
1124                 public TypeParameterName[] GetDeclarations ()
1125                 {
1126                         TypeParameterName[] ret = new TypeParameterName [args.Count];
1127                         for (int i = 0; i < args.Count; i++) {
1128                                 TypeParameterName name = args [i] as TypeParameterName;
1129                                 if (name != null) {
1130                                         ret [i] = name;
1131                                         continue;
1132                                 }
1133                                 SimpleName sn = args [i] as SimpleName;
1134                                 if (sn != null) {
1135                                         ret [i] = new TypeParameterName (sn.Name, null, sn.Location);
1136                                         continue;
1137                                 }
1138
1139                                 Report.Error (81, Location, "Type parameter declaration " +
1140                                               "must be an identifier not a type");
1141                                 return null;
1142                         }
1143                         return ret;
1144                 }
1145
1146                 /// <summary>
1147                 ///   We may only be used after Resolve() is called and return the fully
1148                 ///   resolved types.
1149                 /// </summary>
1150                 public Type[] Arguments {
1151                         get {
1152                                 return atypes;
1153                         }
1154                 }
1155
1156                 public bool HasTypeArguments {
1157                         get {
1158                                 return has_type_args;
1159                         }
1160                 }
1161
1162                 public int Count {
1163                         get {
1164                                 if (dimension > 0)
1165                                         return dimension;
1166                                 else
1167                                         return args.Count;
1168                         }
1169                 }
1170
1171                 public bool IsUnbound {
1172                         get {
1173                                 return dimension > 0;
1174                         }
1175                 }
1176
1177                 public override string ToString ()
1178                 {
1179                         StringBuilder s = new StringBuilder ();
1180
1181                         int count = Count;
1182                         for (int i = 0; i < count; i++){
1183                                 //
1184                                 // FIXME: Use TypeManager.CSharpname once we have the type
1185                                 //
1186                                 if (args != null)
1187                                         s.Append (args [i].ToString ());
1188                                 if (i+1 < count)
1189                                         s.Append (",");
1190                         }
1191                         return s.ToString ();
1192                 }
1193
1194                 public string GetSignatureForError()
1195                 {
1196                         StringBuilder sb = new StringBuilder();
1197                         for (int i = 0; i < Count; ++i)
1198                         {
1199                                 Expression expr = (Expression)args [i];
1200                                 sb.Append(expr.GetSignatureForError());
1201                                 if (i + 1 < Count)
1202                                         sb.Append(',');
1203                         }
1204                         return sb.ToString();
1205                 }
1206
1207                 /// <summary>
1208                 ///   Resolve the type arguments.
1209                 /// </summary>
1210                 public bool Resolve (IResolveContext ec)
1211                 {
1212                         int count = args.Count;
1213                         bool ok = true;
1214
1215                         atypes = new Type [count];
1216
1217                         for (int i = 0; i < count; i++){
1218                                 TypeExpr te = ((Expression) args [i]).ResolveAsTypeTerminal (ec, false);
1219                                 if (te == null) {
1220                                         ok = false;
1221                                         continue;
1222                                 }
1223                                 if (te is TypeParameterExpr)
1224                                         has_type_args = true;
1225
1226                                 if (te.Type.IsSealed && te.Type.IsAbstract) {
1227                                         Report.Error (718, Location, "`{0}': static classes cannot be used as generic arguments",
1228                                                 te.GetSignatureForError ());
1229                                         return false;
1230                                 }
1231                                 if (te.Type.IsPointer) {
1232                                         Report.Error (306, Location, "The type `{0}' may not be used " +
1233                                                           "as a type argument", TypeManager.CSharpName (te.Type));
1234                                         return false;
1235                                 }
1236
1237                                 if (te.Type == TypeManager.void_type) {
1238                                         Expression.Error_VoidInvalidInTheContext (Location);
1239                                         return false;
1240                                 }
1241
1242                                 atypes [i] = te.Type;
1243                         }
1244                         return ok;
1245                 }
1246         }
1247
1248         public class TypeParameterName : SimpleName
1249         {
1250                 Attributes attributes;
1251
1252                 public TypeParameterName (string name, Attributes attrs, Location loc)
1253                         : base (name, loc)
1254                 {
1255                         attributes = attrs;
1256                 }
1257
1258                 public Attributes OptAttributes {
1259                         get {
1260                                 return attributes;
1261                         }
1262                 }
1263         }
1264
1265         /// <summary>
1266         ///   An instantiation of a generic type.
1267         /// </summary>  
1268         public class ConstructedType : TypeExpr {
1269                 string full_name;
1270                 FullNamedExpression name;
1271                 TypeArguments args;
1272                 Type[] gen_params, atypes;
1273                 Type gt;
1274
1275                 /// <summary>
1276                 ///   Instantiate the generic type `fname' with the type arguments `args'.
1277                 /// </summary>          
1278                 public ConstructedType (FullNamedExpression fname, TypeArguments args, Location l)
1279                 {
1280                         loc = l;
1281                         this.name = fname;
1282                         this.args = args;
1283
1284                         eclass = ExprClass.Type;
1285                         full_name = name + "<" + args.ToString () + ">";
1286                 }
1287
1288                 protected ConstructedType (TypeArguments args, Location l)
1289                 {
1290                         loc = l;
1291                         this.args = args;
1292
1293                         eclass = ExprClass.Type;
1294                 }
1295
1296                 protected ConstructedType (TypeParameter[] type_params, Location l)
1297                 {
1298                         loc = l;
1299
1300                         args = new TypeArguments (l);
1301                         foreach (TypeParameter type_param in type_params)
1302                                 args.Add (new TypeParameterExpr (type_param, l));
1303
1304                         eclass = ExprClass.Type;
1305                 }
1306
1307                 /// <summary>
1308                 ///   This is used to construct the `this' type inside a generic type definition.
1309                 /// </summary>
1310                 public ConstructedType (Type t, TypeParameter[] type_params, Location l)
1311                         : this (type_params, l)
1312                 {
1313                         gt = t.GetGenericTypeDefinition ();
1314
1315                         this.name = new TypeExpression (gt, l);
1316                         full_name = gt.FullName + "<" + args.ToString () + ">";
1317                 }
1318
1319                 /// <summary>
1320                 ///   Instantiate the generic type `t' with the type arguments `args'.
1321                 ///   Use this constructor if you already know the fully resolved
1322                 ///   generic type.
1323                 /// </summary>          
1324                 public ConstructedType (Type t, TypeArguments args, Location l)
1325                         : this (args, l)
1326                 {
1327                         gt = t.GetGenericTypeDefinition ();
1328
1329                         this.name = new TypeExpression (gt, l);
1330                         full_name = gt.FullName + "<" + args.ToString () + ">";
1331                 }
1332
1333                 public TypeArguments TypeArguments {
1334                         get { return args; }
1335                 }
1336
1337                 public override string GetSignatureForError ()
1338                 {
1339                         return TypeManager.RemoveGenericArity (gt.FullName) + "<" + args.GetSignatureForError () + ">";
1340                 }
1341
1342                 protected override TypeExpr DoResolveAsTypeStep (IResolveContext ec)
1343                 {
1344                         if (!ResolveConstructedType (ec))
1345                                 return null;
1346
1347                         return this;
1348                 }
1349
1350                 /// <summary>
1351                 ///   Check the constraints; we're called from ResolveAsTypeTerminal()
1352                 ///   after fully resolving the constructed type.
1353                 /// </summary>
1354                 public bool CheckConstraints (IResolveContext ec)
1355                 {
1356                         return ConstraintChecker.CheckConstraints (ec, gt, gen_params, atypes, loc);
1357                 }
1358
1359                 /// <summary>
1360                 ///   Resolve the constructed type, but don't check the constraints.
1361                 /// </summary>
1362                 public bool ResolveConstructedType (IResolveContext ec)
1363                 {
1364                         if (type != null)
1365                                 return true;
1366                         // If we already know the fully resolved generic type.
1367                         if (gt != null)
1368                                 return DoResolveType (ec);
1369
1370                         int num_args;
1371                         Type t = name.Type;
1372
1373                         if (t == null) {
1374                                 Report.Error (246, loc, "Cannot find type `{0}'<...>", Name);
1375                                 return false;
1376                         }
1377
1378                         num_args = TypeManager.GetNumberOfTypeArguments (t);
1379                         if (num_args == 0) {
1380                                 Report.Error (308, loc,
1381                                               "The non-generic type `{0}' cannot " +
1382                                               "be used with type arguments.",
1383                                               TypeManager.CSharpName (t));
1384                                 return false;
1385                         }
1386
1387                         gt = t.GetGenericTypeDefinition ();
1388                         return DoResolveType (ec);
1389                 }
1390
1391                 bool DoResolveType (IResolveContext ec)
1392                 {
1393                         //
1394                         // Resolve the arguments.
1395                         //
1396                         if (args.Resolve (ec) == false)
1397                                 return false;
1398
1399                         gen_params = gt.GetGenericArguments ();
1400                         atypes = args.Arguments;
1401
1402                         if (atypes.Length != gen_params.Length) {
1403                                 Report.Error (305, loc,
1404                                               "Using the generic type `{0}' " +
1405                                               "requires {1} type arguments",
1406                                               TypeManager.CSharpName (gt),
1407                                               gen_params.Length.ToString ());
1408                                 return false;
1409                         }
1410
1411                         //
1412                         // Now bind the parameters.
1413                         //
1414                         type = gt.MakeGenericType (atypes);
1415                         return true;
1416                 }
1417
1418                 public Expression GetSimpleName (EmitContext ec)
1419                 {
1420                         return this;
1421                 }
1422
1423                 public override bool CheckAccessLevel (DeclSpace ds)
1424                 {
1425                         return ds.CheckAccessLevel (gt);
1426                 }
1427
1428                 public override bool AsAccessible (DeclSpace ds, int flags)
1429                 {
1430                         return ds.AsAccessible (gt, flags);
1431                 }
1432
1433                 public override bool IsClass {
1434                         get { return gt.IsClass; }
1435                 }
1436
1437                 public override bool IsValueType {
1438                         get { return gt.IsValueType; }
1439                 }
1440
1441                 public override bool IsInterface {
1442                         get { return gt.IsInterface; }
1443                 }
1444
1445                 public override bool IsSealed {
1446                         get { return gt.IsSealed; }
1447                 }
1448
1449                 public override bool Equals (object obj)
1450                 {
1451                         ConstructedType cobj = obj as ConstructedType;
1452                         if (cobj == null)
1453                                 return false;
1454
1455                         if ((type == null) || (cobj.type == null))
1456                                 return false;
1457
1458                         return type == cobj.type;
1459                 }
1460
1461                 public override int GetHashCode ()
1462                 {
1463                         return base.GetHashCode ();
1464                 }
1465
1466                 public override string Name {
1467                         get {
1468                                 return full_name;
1469                         }
1470                 }
1471
1472
1473                 public override string FullName {
1474                         get {
1475                                 return full_name;
1476                         }
1477                 }
1478         }
1479
1480         public abstract class ConstraintChecker
1481         {
1482                 protected readonly Type[] gen_params;
1483                 protected readonly Type[] atypes;
1484                 protected readonly Location loc;
1485
1486                 protected ConstraintChecker (Type[] gen_params, Type[] atypes, Location loc)
1487                 {
1488                         this.gen_params = gen_params;
1489                         this.atypes = atypes;
1490                         this.loc = loc;
1491                 }
1492
1493                 /// <summary>
1494                 ///   Check the constraints; we're called from ResolveAsTypeTerminal()
1495                 ///   after fully resolving the constructed type.
1496                 /// </summary>
1497                 public bool CheckConstraints (IResolveContext ec)
1498                 {
1499                         for (int i = 0; i < gen_params.Length; i++) {
1500                                 if (!CheckConstraints (ec, i))
1501                                         return false;
1502                         }
1503
1504                         return true;
1505                 }
1506
1507                 protected bool CheckConstraints (IResolveContext ec, int index)
1508                 {
1509                         Type atype = atypes [index];
1510                         Type ptype = gen_params [index];
1511
1512                         if (atype == ptype)
1513                                 return true;
1514
1515                         Expression aexpr = new EmptyExpression (atype);
1516
1517                         GenericConstraints gc = TypeManager.GetTypeParameterConstraints (ptype);
1518                         if (gc == null)
1519                                 return true;
1520
1521                         bool is_class, is_struct;
1522                         if (atype.IsGenericParameter) {
1523                                 GenericConstraints agc = TypeManager.GetTypeParameterConstraints (atype);
1524                                 if (agc != null) {
1525                                         if (agc is Constraints)
1526                                                 ((Constraints) agc).Resolve (ec);
1527                                         is_class = agc.HasReferenceTypeConstraint;
1528                                         is_struct = agc.HasValueTypeConstraint;
1529                                 } else {
1530                                         is_class = is_struct = false;
1531                                 }
1532                         } else {
1533 #if MS_COMPATIBLE
1534                                 is_class = false;
1535                                 if (!atype.IsGenericType)
1536 #endif
1537                                 is_class = atype.IsClass || atype.IsInterface;
1538                                 is_struct = atype.IsValueType && !TypeManager.IsNullableType (atype);
1539                         }
1540
1541                         //
1542                         // First, check the `class' and `struct' constraints.
1543                         //
1544                         if (gc.HasReferenceTypeConstraint && !is_class) {
1545                                 Report.Error (452, loc, "The type `{0}' must be " +
1546                                               "a reference type in order to use it " +
1547                                               "as type parameter `{1}' in the " +
1548                                               "generic type or method `{2}'.",
1549                                               TypeManager.CSharpName (atype),
1550                                               TypeManager.CSharpName (ptype),
1551                                               GetSignatureForError ());
1552                                 return false;
1553                         } else if (gc.HasValueTypeConstraint && !is_struct) {
1554                                 Report.Error (453, loc, "The type `{0}' must be a " +
1555                                               "non-nullable value type in order to use it " +
1556                                               "as type parameter `{1}' in the " +
1557                                               "generic type or method `{2}'.",
1558                                               TypeManager.CSharpName (atype),
1559                                               TypeManager.CSharpName (ptype),
1560                                               GetSignatureForError ());
1561                                 return false;
1562                         }
1563
1564                         //
1565                         // The class constraint comes next.
1566                         //
1567                         if (gc.HasClassConstraint) {
1568                                 if (!CheckConstraint (ec, ptype, aexpr, gc.ClassConstraint))
1569                                         return false;
1570                         }
1571
1572                         //
1573                         // Now, check the interface constraints.
1574                         //
1575                         if (gc.InterfaceConstraints != null) {
1576                                 foreach (Type it in gc.InterfaceConstraints) {
1577                                         if (!CheckConstraint (ec, ptype, aexpr, it))
1578                                                 return false;
1579                                 }
1580                         }
1581
1582                         //
1583                         // Finally, check the constructor constraint.
1584                         //
1585
1586                         if (!gc.HasConstructorConstraint)
1587                                 return true;
1588
1589                         if (TypeManager.IsBuiltinType (atype) || atype.IsValueType)
1590                                 return true;
1591
1592                         if (HasDefaultConstructor (ec.DeclContainer.TypeBuilder, atype))
1593                                 return true;
1594
1595                         Report_SymbolRelatedToPreviousError ();
1596                         Report.SymbolRelatedToPreviousError (atype);
1597                         Report.Error (310, loc, "The type `{0}' must have a public " +
1598                                       "parameterless constructor in order to use it " +
1599                                       "as parameter `{1}' in the generic type or " +
1600                                       "method `{2}'",
1601                                       TypeManager.CSharpName (atype),
1602                                       TypeManager.CSharpName (ptype),
1603                                       GetSignatureForError ());
1604                         return false;
1605                 }
1606
1607                 protected bool CheckConstraint (IResolveContext ec, Type ptype, Expression expr,
1608                                                 Type ctype)
1609                 {
1610                         if (TypeManager.HasGenericArguments (ctype)) {
1611                                 Type[] types = TypeManager.GetTypeArguments (ctype);
1612
1613                                 TypeArguments new_args = new TypeArguments (loc);
1614
1615                                 for (int i = 0; i < types.Length; i++) {
1616                                         Type t = types [i];
1617
1618                                         if (t.IsGenericParameter) {
1619                                                 int pos = t.GenericParameterPosition;
1620                                                 t = atypes [pos];
1621                                         }
1622                                         new_args.Add (new TypeExpression (t, loc));
1623                                 }
1624
1625                                 TypeExpr ct = new ConstructedType (ctype, new_args, loc);
1626                                 if (ct.ResolveAsTypeStep (ec, false) == null)
1627                                         return false;
1628                                 ctype = ct.Type;
1629                         } else if (ctype.IsGenericParameter) {
1630                                 int pos = ctype.GenericParameterPosition;
1631                                 ctype = atypes [pos];
1632                         }
1633
1634                         if (Convert.ImplicitStandardConversionExists (expr, ctype))
1635                                 return true;
1636
1637                         Error_TypeMustBeConvertible (expr.Type, ctype, ptype);
1638                         return false;
1639                 }
1640
1641                 bool HasDefaultConstructor (Type containerType, Type atype)
1642                 {
1643                         if (atype.IsAbstract)
1644                                 return false;
1645
1646                 again:
1647                         atype = TypeManager.DropGenericTypeArguments (atype);
1648                         if (atype is TypeBuilder) {
1649                                 TypeContainer tc = TypeManager.LookupTypeContainer (atype);
1650                                 if (tc.InstanceConstructors == null) {
1651                                         atype = atype.BaseType;
1652                                         goto again;
1653                                 }
1654
1655                                 foreach (Constructor c in tc.InstanceConstructors) {
1656                                         if ((c.ModFlags & Modifiers.PUBLIC) == 0)
1657                                                 continue;
1658                                         if ((c.Parameters.FixedParameters != null) &&
1659                                             (c.Parameters.FixedParameters.Length != 0))
1660                                                 continue;
1661                                         if (c.Parameters.HasArglist || c.Parameters.HasParams)
1662                                                 continue;
1663
1664                                         return true;
1665                                 }
1666                         }
1667
1668                         TypeParameter tparam = TypeManager.LookupTypeParameter (atype);
1669                         if (tparam != null)
1670                                 return tparam.HasConstructorConstraint;
1671
1672                         MemberList list = TypeManager.FindMembers (
1673                                 atype, MemberTypes.Constructor,
1674                                 BindingFlags.Public | BindingFlags.Instance |
1675                                 BindingFlags.DeclaredOnly, null, null);
1676
1677                         if (atype.IsAbstract || (list == null))
1678                                 return false;
1679
1680                         foreach (MethodBase mb in list) {
1681                                 ParameterData pd = TypeManager.GetParameterData (mb);
1682                                 if ((pd.Count == 0) && mb.IsPublic && !mb.IsStatic)
1683                                         return true;
1684                         }
1685
1686                         return false;
1687                 }
1688
1689                 protected abstract string GetSignatureForError ();
1690                 protected abstract void Report_SymbolRelatedToPreviousError ();
1691
1692                 void Error_TypeMustBeConvertible (Type atype, Type gc, Type ptype)
1693                 {
1694                         Report_SymbolRelatedToPreviousError ();
1695                         Report.SymbolRelatedToPreviousError (atype);
1696                         Report.Error (309, loc, 
1697                                       "The type `{0}' must be convertible to `{1}' in order to " +
1698                                       "use it as parameter `{2}' in the generic type or method `{3}'",
1699                                       TypeManager.CSharpName (atype), TypeManager.CSharpName (gc),
1700                                       TypeManager.CSharpName (ptype), GetSignatureForError ());
1701                 }
1702
1703                 public static bool CheckConstraints (EmitContext ec, MethodBase definition,
1704                                                      MethodBase instantiated, Location loc)
1705                 {
1706                         MethodConstraintChecker checker = new MethodConstraintChecker (
1707                                 definition, definition.GetGenericArguments (),
1708                                 instantiated.GetGenericArguments (), loc);
1709
1710                         return checker.CheckConstraints (ec);
1711                 }
1712
1713                 public static bool CheckConstraints (IResolveContext ec, Type gt, Type[] gen_params,
1714                                                      Type[] atypes, Location loc)
1715                 {
1716                         TypeConstraintChecker checker = new TypeConstraintChecker (
1717                                 gt, gen_params, atypes, loc);
1718
1719                         return checker.CheckConstraints (ec);
1720                 }
1721
1722                 protected class MethodConstraintChecker : ConstraintChecker
1723                 {
1724                         MethodBase definition;
1725
1726                         public MethodConstraintChecker (MethodBase definition, Type[] gen_params,
1727                                                         Type[] atypes, Location loc)
1728                                 : base (gen_params, atypes, loc)
1729                         {
1730                                 this.definition = definition;
1731                         }
1732
1733                         protected override string GetSignatureForError ()
1734                         {
1735                                 return TypeManager.CSharpSignature (definition);
1736                         }
1737
1738                         protected override void Report_SymbolRelatedToPreviousError ()
1739                         {
1740                                 Report.SymbolRelatedToPreviousError (definition);
1741                         }
1742                 }
1743
1744                 protected class TypeConstraintChecker : ConstraintChecker
1745                 {
1746                         Type gt;
1747
1748                         public TypeConstraintChecker (Type gt, Type[] gen_params, Type[] atypes,
1749                                                       Location loc)
1750                                 : base (gen_params, atypes, loc)
1751                         {
1752                                 this.gt = gt;
1753                         }
1754
1755                         protected override string GetSignatureForError ()
1756                         {
1757                                 return TypeManager.CSharpName (gt);
1758                         }
1759
1760                         protected override void Report_SymbolRelatedToPreviousError ()
1761                         {
1762                                 Report.SymbolRelatedToPreviousError (gt);
1763                         }
1764                 }
1765         }
1766
1767         /// <summary>
1768         ///   A generic method definition.
1769         /// </summary>
1770         public class GenericMethod : DeclSpace
1771         {
1772                 Expression return_type;
1773                 Parameters parameters;
1774
1775                 public GenericMethod (NamespaceEntry ns, DeclSpace parent, MemberName name,
1776                                       Expression return_type, Parameters parameters)
1777                         : base (ns, parent, name, null)
1778                 {
1779                         this.return_type = return_type;
1780                         this.parameters = parameters;
1781                 }
1782
1783                 public override TypeBuilder DefineType ()
1784                 {
1785                         throw new Exception ();
1786                 }
1787
1788                 public override bool Define ()
1789                 {
1790                         for (int i = 0; i < TypeParameters.Length; i++)
1791                                 if (!TypeParameters [i].Resolve (this))
1792                                         return false;
1793
1794                         return true;
1795                 }
1796
1797                 /// <summary>
1798                 ///   Define and resolve the type parameters.
1799                 ///   We're called from Method.Define().
1800                 /// </summary>
1801                 public bool Define (MethodBuilder mb, ToplevelBlock block)
1802                 {
1803                         TypeParameterName[] names = MemberName.TypeArguments.GetDeclarations ();
1804                         string[] snames = new string [names.Length];
1805                         for (int i = 0; i < names.Length; i++) {
1806                                 string type_argument_name = names[i].Name;
1807                                 Parameter p = parameters.GetParameterByName (type_argument_name);
1808                                 if (p != null) {
1809                                         Error_ParameterNameCollision (p.Location, type_argument_name, "method parameter");
1810                                         return false;
1811                                 }
1812                                 if (block != null) {
1813                                         LocalInfo li = (LocalInfo)block.Variables[type_argument_name];
1814                                         if (li != null) {
1815                                                 Error_ParameterNameCollision (li.Location, type_argument_name, "local variable");
1816                                                 return false;
1817                                         }
1818                                 }
1819                                 snames[i] = type_argument_name;
1820                         }
1821
1822                         GenericTypeParameterBuilder[] gen_params = mb.DefineGenericParameters (snames);
1823                         for (int i = 0; i < TypeParameters.Length; i++)
1824                                 TypeParameters [i].Define (gen_params [i]);
1825
1826                         if (!Define ())
1827                                 return false;
1828
1829                         for (int i = 0; i < TypeParameters.Length; i++) {
1830                                 if (!TypeParameters [i].ResolveType (this))
1831                                         return false;
1832                         }
1833
1834                         return true;
1835                 }
1836
1837                 static void Error_ParameterNameCollision (Location loc, string name, string collisionWith)
1838                 {
1839                         Report.Error (412, loc, "The type parameter name `{0}' is the same as `{1}'",
1840                                 name, collisionWith);
1841                 }
1842
1843                 /// <summary>
1844                 ///   We're called from MethodData.Define() after creating the MethodBuilder.
1845                 /// </summary>
1846                 public bool DefineType (EmitContext ec, MethodBuilder mb,
1847                                         MethodInfo implementing, bool is_override)
1848                 {
1849                         for (int i = 0; i < TypeParameters.Length; i++)
1850                                 if (!TypeParameters [i].DefineType (
1851                                             ec, mb, implementing, is_override))
1852                                         return false;
1853
1854                         bool ok = true;
1855                         foreach (Parameter p in parameters.FixedParameters){
1856                                 if (!p.Resolve (ec))
1857                                         ok = false;
1858                         }
1859                         if ((return_type != null) && (return_type.ResolveAsTypeTerminal (ec, false) == null))
1860                                 ok = false;
1861
1862                         return ok;
1863                 }
1864
1865                 public void EmitAttributes ()
1866                 {
1867                         for (int i = 0; i < TypeParameters.Length; i++)
1868                                 TypeParameters [i].EmitAttributes ();
1869
1870                         if (OptAttributes != null)
1871                                 OptAttributes.Emit ();
1872                 }
1873
1874                 public override bool DefineMembers ()
1875                 {
1876                         return true;
1877                 }
1878
1879                 public override MemberList FindMembers (MemberTypes mt, BindingFlags bf,
1880                                                         MemberFilter filter, object criteria)
1881                 {
1882                         throw new Exception ();
1883                 }               
1884
1885                 public override MemberCache MemberCache {
1886                         get {
1887                                 return null;
1888                         }
1889                 }
1890
1891                 public override AttributeTargets AttributeTargets {
1892                         get {
1893                                 return AttributeTargets.Method | AttributeTargets.ReturnValue;
1894                         }
1895                 }
1896
1897                 public override string DocCommentHeader {
1898                         get { return "M:"; }
1899                 }
1900         }
1901
1902         public class DefaultValueExpression : Expression
1903         {
1904                 Expression expr;
1905
1906                 public DefaultValueExpression (Expression expr, Location loc)
1907                 {
1908                         this.expr = expr;
1909                         this.loc = loc;
1910                 }
1911
1912                 public override Expression DoResolve (EmitContext ec)
1913                 {
1914                         TypeExpr texpr = expr.ResolveAsTypeTerminal (ec, false);
1915                         if (texpr == null)
1916                                 return null;
1917
1918                         type = texpr.Type;
1919
1920                         eclass = ExprClass.Variable;
1921                         return this;
1922                 }
1923
1924                 public override void Emit (EmitContext ec)
1925                 {
1926                         if (type.IsGenericParameter || TypeManager.IsValueType (type)) {
1927                                 LocalTemporary temp_storage = new LocalTemporary (type);
1928
1929                                 temp_storage.AddressOf (ec, AddressOp.LoadStore);
1930                                 ec.ig.Emit (OpCodes.Initobj, type);
1931                                 temp_storage.Emit (ec);
1932                         } else
1933                                 ec.ig.Emit (OpCodes.Ldnull);
1934                 }
1935         }
1936
1937         public class NullableType : TypeExpr
1938         {
1939                 Expression underlying;
1940
1941                 public NullableType (Expression underlying, Location l)
1942                 {
1943                         this.underlying = underlying;
1944                         loc = l;
1945
1946                         eclass = ExprClass.Type;
1947                 }
1948
1949                 public NullableType (Type type, Location loc)
1950                         : this (new TypeExpression (type, loc), loc)
1951                 { }
1952
1953                 public override string Name {
1954                         get { return underlying.ToString () + "?"; }
1955                 }
1956
1957                 public override string FullName {
1958                         get { return underlying.ToString () + "?"; }
1959                 }
1960
1961                 protected override TypeExpr DoResolveAsTypeStep (IResolveContext ec)
1962                 {
1963                         TypeArguments args = new TypeArguments (loc);
1964                         args.Add (underlying);
1965
1966                         ConstructedType ctype = new ConstructedType (TypeManager.generic_nullable_type, args, loc);
1967                         return ctype.ResolveAsTypeTerminal (ec, false);
1968                 }
1969         }
1970
1971         public partial class TypeManager
1972         {
1973                 //
1974                 // A list of core types that the compiler requires or uses
1975                 //
1976                 static public Type activator_type;
1977                 static public Type generic_ilist_type;
1978                 static public Type generic_icollection_type;
1979                 static public Type generic_ienumerator_type;
1980                 static public Type generic_ienumerable_type;
1981                 static public Type generic_nullable_type;
1982
1983                 // <remarks>
1984                 //   Tracks the generic parameters.
1985                 // </remarks>
1986                 static PtrHashtable builder_to_type_param;
1987
1988                 //
1989                 // These methods are called by code generated by the compiler
1990                 //
1991                 static public MethodInfo activator_create_instance;
1992
1993                 static void InitGenerics ()
1994                 {
1995                         builder_to_type_param = new PtrHashtable ();
1996                 }
1997
1998                 static void CleanUpGenerics ()
1999                 {
2000                         builder_to_type_param = null;
2001                 }
2002
2003                 static void InitGenericCoreTypes ()
2004                 {
2005                         activator_type = CoreLookupType ("System", "Activator");
2006
2007                         generic_ilist_type = CoreLookupType (
2008                                 "System.Collections.Generic", "IList", 1);
2009                         generic_icollection_type = CoreLookupType (
2010                                 "System.Collections.Generic", "ICollection", 1);
2011                         generic_ienumerator_type = CoreLookupType (
2012                                 "System.Collections.Generic", "IEnumerator", 1);
2013                         generic_ienumerable_type = CoreLookupType (
2014                                 "System.Collections.Generic", "IEnumerable", 1);
2015                         generic_nullable_type = CoreLookupType (
2016                                 "System", "Nullable", 1);
2017                 }
2018
2019                 static void InitGenericCodeHelpers ()
2020                 {
2021                         // Activator
2022                         Type [] type_arg = { type_type };
2023                         activator_create_instance = GetMethod (
2024                                 activator_type, "CreateInstance", type_arg);
2025                 }
2026
2027                 static Type CoreLookupType (string ns, string name, int arity)
2028                 {
2029                         return CoreLookupType (ns, MemberName.MakeName (name, arity));
2030                 }
2031
2032                 public static void AddTypeParameter (Type t, TypeParameter tparam)
2033                 {
2034                         if (!builder_to_type_param.Contains (t))
2035                                 builder_to_type_param.Add (t, tparam);
2036                 }
2037
2038                 public static TypeContainer LookupGenericTypeContainer (Type t)
2039                 {
2040                         t = DropGenericTypeArguments (t);
2041                         return LookupTypeContainer (t);
2042                 }
2043
2044                 public static TypeParameter LookupTypeParameter (Type t)
2045                 {
2046                         return (TypeParameter) builder_to_type_param [t];
2047                 }
2048
2049                 public static GenericConstraints GetTypeParameterConstraints (Type t)
2050                 {
2051                         if (!t.IsGenericParameter)
2052                                 throw new InvalidOperationException ();
2053
2054                         TypeParameter tparam = LookupTypeParameter (t);
2055                         if (tparam != null)
2056                                 return tparam.GenericConstraints;
2057
2058                         return ReflectionConstraints.GetConstraints (t);
2059                 }
2060
2061                 public static FieldInfo GetGenericFieldDefinition (FieldInfo fi)
2062                 {
2063                         if (fi.DeclaringType.IsGenericTypeDefinition ||
2064                             !fi.DeclaringType.IsGenericType)
2065                                 return fi;
2066
2067                         Type t = fi.DeclaringType.GetGenericTypeDefinition ();
2068                         BindingFlags bf = BindingFlags.Public | BindingFlags.NonPublic |
2069                                 BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly;
2070
2071                         foreach (FieldInfo f in t.GetFields (bf))
2072                                 if (f.MetadataToken == fi.MetadataToken)
2073                                         return f;
2074
2075                         return fi;
2076                 }
2077
2078                 /// <summary>
2079                 ///   Check whether `a' and `b' may become equal generic types.
2080                 ///   The algorithm to do that is a little bit complicated.
2081                 /// </summary>
2082                 public static bool MayBecomeEqualGenericTypes (Type a, Type b, Type[] class_infered,
2083                                                                Type[] method_infered)
2084                 {
2085                         if (a.IsGenericParameter) {
2086                                 //
2087                                 // If a is an array of a's type, they may never
2088                                 // become equal.
2089                                 //
2090                                 while (b.IsArray) {
2091                                         b = b.GetElementType ();
2092                                         if (a.Equals (b))
2093                                                 return false;
2094                                 }
2095
2096                                 //
2097                                 // If b is a generic parameter or an actual type,
2098                                 // they may become equal:
2099                                 //
2100                                 //    class X<T,U> : I<T>, I<U>
2101                                 //    class X<T> : I<T>, I<float>
2102                                 // 
2103                                 if (b.IsGenericParameter || !b.IsGenericType) {
2104                                         int pos = a.GenericParameterPosition;
2105                                         Type[] args = a.DeclaringMethod != null ? method_infered : class_infered;
2106                                         if (args [pos] == null) {
2107                                                 args [pos] = b;
2108                                                 return true;
2109                                         }
2110
2111                                         return args [pos] == a;
2112                                 }
2113
2114                                 //
2115                                 // We're now comparing a type parameter with a
2116                                 // generic instance.  They may become equal unless
2117                                 // the type parameter appears anywhere in the
2118                                 // generic instance:
2119                                 //
2120                                 //    class X<T,U> : I<T>, I<X<U>>
2121                                 //        -> error because you could instanciate it as
2122                                 //           X<X<int>,int>
2123                                 //
2124                                 //    class X<T> : I<T>, I<X<T>> -> ok
2125                                 //
2126
2127                                 Type[] bargs = GetTypeArguments (b);
2128                                 for (int i = 0; i < bargs.Length; i++) {
2129                                         if (a.Equals (bargs [i]))
2130                                                 return false;
2131                                 }
2132
2133                                 return true;
2134                         }
2135
2136                         if (b.IsGenericParameter)
2137                                 return MayBecomeEqualGenericTypes (b, a, class_infered, method_infered);
2138
2139                         //
2140                         // At this point, neither a nor b are a type parameter.
2141                         //
2142                         // If one of them is a generic instance, let
2143                         // MayBecomeEqualGenericInstances() compare them (if the
2144                         // other one is not a generic instance, they can never
2145                         // become equal).
2146                         //
2147
2148                         if (a.IsGenericType || b.IsGenericType)
2149                                 return MayBecomeEqualGenericInstances (a, b, class_infered, method_infered);
2150
2151                         //
2152                         // If both of them are arrays.
2153                         //
2154
2155                         if (a.IsArray && b.IsArray) {
2156                                 if (a.GetArrayRank () != b.GetArrayRank ())
2157                                         return false;
2158                         
2159                                 a = a.GetElementType ();
2160                                 b = b.GetElementType ();
2161
2162                                 return MayBecomeEqualGenericTypes (a, b, class_infered, method_infered);
2163                         }
2164
2165                         //
2166                         // Ok, two ordinary types.
2167                         //
2168
2169                         return a.Equals (b);
2170                 }
2171
2172                 //
2173                 // Checks whether two generic instances may become equal for some
2174                 // particular instantiation (26.3.1).
2175                 //
2176                 public static bool MayBecomeEqualGenericInstances (Type a, Type b,
2177                                                                    Type[] class_infered,
2178                                                                    Type[] method_infered)
2179                 {
2180                         if (!a.IsGenericType || !b.IsGenericType)
2181                                 return false;
2182                         if (a.GetGenericTypeDefinition () != b.GetGenericTypeDefinition ())
2183                                 return false;
2184
2185                         return MayBecomeEqualGenericInstances (
2186                                 GetTypeArguments (a), GetTypeArguments (b), class_infered, method_infered);
2187                 }
2188
2189                 public static bool MayBecomeEqualGenericInstances (Type[] aargs, Type[] bargs,
2190                                                                    Type[] class_infered,
2191                                                                    Type[] method_infered)
2192                 {
2193                         if (aargs.Length != bargs.Length)
2194                                 return false;
2195
2196                         for (int i = 0; i < aargs.Length; i++) {
2197                                 if (!MayBecomeEqualGenericTypes (aargs [i], bargs [i], class_infered, method_infered))
2198                                         return false;
2199                         }
2200
2201                         return true;
2202                 }
2203
2204                 /// <summary>
2205                 ///   Whether `mb' is a generic method definition.
2206                 /// </summary>
2207                 public static bool IsGenericMethodDefinition (MethodBase mb)
2208                 {
2209                         if (mb.DeclaringType is TypeBuilder) {
2210                                 IMethodData method = (IMethodData) builder_to_method [mb];
2211                                 if (method == null)
2212                                         return false;
2213
2214                                 return method.GenericMethod != null;
2215                         }
2216
2217                         return mb.IsGenericMethodDefinition;
2218                 }
2219
2220                 /// <summary>
2221                 ///   Whether `mb' is a generic method definition.
2222                 /// </summary>
2223                 public static bool IsGenericMethod (MethodBase mb)
2224                 {
2225                         if (mb.DeclaringType is TypeBuilder) {
2226                                 IMethodData method = (IMethodData) builder_to_method [mb];
2227                                 if (method == null)
2228                                         return false;
2229
2230                                 return method.GenericMethod != null;
2231                         }
2232
2233                         return mb.IsGenericMethod;
2234                 }
2235
2236                 //
2237                 // Type inference.
2238                 //
2239
2240                 static bool InferType (Type pt, Type at, Type[] infered)
2241                 {
2242                         if (pt.IsGenericParameter) {
2243                                 if (pt.DeclaringMethod == null)
2244                                         return pt == at;
2245
2246                                 int pos = pt.GenericParameterPosition;
2247
2248                                 if (infered [pos] == null) {
2249                                         infered [pos] = at;
2250                                         return true;
2251                                 }
2252
2253                                 if (infered [pos] != at)
2254                                         return false;
2255
2256                                 return true;
2257                         }
2258
2259                         if (!pt.ContainsGenericParameters) {
2260                                 if (at.ContainsGenericParameters)
2261                                         return InferType (at, pt, infered);
2262                                 else
2263                                         return true;
2264                         }
2265
2266                         if (at.IsArray) {
2267                                 if (pt.IsArray) {
2268                                         if (at.GetArrayRank () != pt.GetArrayRank ())
2269                                                 return false;
2270
2271                                         return InferType (pt.GetElementType (), at.GetElementType (), infered);
2272                                 }
2273
2274                                 if (!pt.IsGenericType)
2275                                         return false;
2276
2277                                 Type gt = pt.GetGenericTypeDefinition ();
2278                                 if ((gt != generic_ilist_type) && (gt != generic_icollection_type) &&
2279                                     (gt != generic_ienumerable_type))
2280                                         return false;
2281
2282                                 Type[] args = GetTypeArguments (pt);
2283                                 return InferType (args [0], at.GetElementType (), infered);
2284                         }
2285
2286                         if (pt.IsArray) {
2287                                 if (!at.IsArray ||
2288                                     (pt.GetArrayRank () != at.GetArrayRank ()))
2289                                         return false;
2290
2291                                 return InferType (pt.GetElementType (), at.GetElementType (), infered);
2292                         }
2293
2294                         if (pt.IsByRef && at.IsByRef)
2295                                 return InferType (pt.GetElementType (), at.GetElementType (), infered);
2296                         ArrayList list = new ArrayList ();
2297                         if (at.IsGenericType)
2298                                 list.Add (at);
2299                         for (Type bt = at.BaseType; bt != null; bt = bt.BaseType)
2300                                 list.Add (bt);
2301
2302                         list.AddRange (TypeManager.GetInterfaces (at));
2303
2304                         bool found_one = false;
2305
2306                         foreach (Type type in list) {
2307                                 if (!type.IsGenericType)
2308                                         continue;
2309
2310                                 Type[] infered_types = new Type [infered.Length];
2311
2312                                 if (!InferGenericInstance (pt, type, infered_types))
2313                                         continue;
2314
2315                                 for (int i = 0; i < infered_types.Length; i++) {
2316                                         if (infered [i] == null) {
2317                                                 infered [i] = infered_types [i];
2318                                                 continue;
2319                                         }
2320
2321                                         if (infered [i] != infered_types [i])
2322                                                 return false;
2323                                 }
2324
2325                                 found_one = true;
2326                         }
2327
2328                         return found_one;
2329                 }
2330
2331                 static bool InferGenericInstance (Type pt, Type at, Type[] infered_types)
2332                 {
2333                         Type[] at_args = at.GetGenericArguments ();
2334                         Type[] pt_args = pt.GetGenericArguments ();
2335
2336                         if (at_args.Length != pt_args.Length)
2337                                 return false;
2338
2339                         for (int i = 0; i < at_args.Length; i++) {
2340                                 if (!InferType (pt_args [i], at_args [i], infered_types))
2341                                         return false;
2342                         }
2343
2344                         for (int i = 0; i < infered_types.Length; i++) {
2345                                 if (infered_types [i] == null)
2346                                         return false;
2347                         }
2348
2349                         return true;
2350                 }
2351
2352                 /// <summary>
2353                 ///   Type inference.  Try to infer the type arguments from the params method
2354                 ///   `method', which is invoked with the arguments `arguments'.  This is used
2355                 ///   when resolving an Invocation or a DelegateInvocation and the user
2356                 ///   did not explicitly specify type arguments.
2357                 /// </summary>
2358                 public static bool InferParamsTypeArguments (EmitContext ec, ArrayList arguments,
2359                                                              ref MethodBase method)
2360                 {
2361                         if (!TypeManager.IsGenericMethod (method))
2362                                 return true;
2363
2364                         // if there are no arguments, there's no way to infer the type-arguments
2365                         if (arguments == null || arguments.Count == 0)
2366                                 return false;
2367
2368                         ParameterData pd = TypeManager.GetParameterData (method);
2369                         int pd_count = pd.Count;
2370                         int arg_count = arguments.Count;
2371
2372                         if (pd_count == 0)
2373                                 return false;
2374
2375                         if (pd.ParameterModifier (pd_count - 1) != Parameter.Modifier.PARAMS)
2376                                 return false;
2377
2378                         if (pd_count - 1 > arg_count)
2379                                 return false;
2380
2381                         Type[] method_args = method.GetGenericArguments ();
2382                         Type[] infered_types = new Type [method_args.Length];
2383
2384                         //
2385                         // If we have come this far, the case which
2386                         // remains is when the number of parameters is
2387                         // less than or equal to the argument count.
2388                         //
2389                         for (int i = 0; i < pd_count - 1; ++i) {
2390                                 Argument a = (Argument) arguments [i];
2391
2392                                 if ((a.Expr is NullLiteral) || (a.Expr is MethodGroupExpr))
2393                                         continue;
2394
2395                                 Type pt = pd.ParameterType (i);
2396                                 Type at = a.Type;
2397
2398                                 if (!InferType (pt, at, infered_types))
2399                                         return false;
2400                         }
2401
2402                         Type element_type = TypeManager.GetElementType (pd.ParameterType (pd_count - 1));
2403
2404                         for (int i = pd_count - 1; i < arg_count; i++) {
2405                                 Argument a = (Argument) arguments [i];
2406
2407                                 if ((a.Expr is NullLiteral) || (a.Expr is MethodGroupExpr))
2408                                         continue;
2409
2410                                 if (!InferType (element_type, a.Type, infered_types))
2411                                         return false;
2412                         }
2413
2414                         for (int i = 0; i < infered_types.Length; i++)
2415                                 if (infered_types [i] == null)
2416                                         return false;
2417
2418                         method = ((MethodInfo)method).MakeGenericMethod (infered_types);
2419                         return true;
2420                 }
2421
2422                 static bool InferTypeArguments (Type[] param_types, Type[] arg_types,
2423                                                 Type[] infered_types)
2424                 {
2425                         if (infered_types == null)
2426                                 return false;
2427
2428                         for (int i = 0; i < arg_types.Length; i++) {
2429                                 if (arg_types [i] == null)
2430                                         continue;
2431
2432                                 if (!InferType (param_types [i], arg_types [i], infered_types))
2433                                         return false;
2434                         }
2435
2436                         for (int i = 0; i < infered_types.Length; i++)
2437                                 if (infered_types [i] == null)
2438                                         return false;
2439
2440                         return true;
2441                 }
2442
2443                 /// <summary>
2444                 ///   Type inference.  Try to infer the type arguments from `method',
2445                 ///   which is invoked with the arguments `arguments'.  This is used
2446                 ///   when resolving an Invocation or a DelegateInvocation and the user
2447                 ///   did not explicitly specify type arguments.
2448                 /// </summary>
2449                 public static bool InferTypeArguments (ArrayList arguments,
2450                                                        ref MethodBase method)
2451                 {
2452                         if (!TypeManager.IsGenericMethod (method))
2453                                 return true;
2454
2455                         int arg_count;
2456                         if (arguments != null)
2457                                 arg_count = arguments.Count;
2458                         else
2459                                 arg_count = 0;
2460
2461                         ParameterData pd = TypeManager.GetParameterData (method);
2462                         if (arg_count != pd.Count)
2463                                 return false;
2464
2465                         Type[] method_args = method.GetGenericArguments ();
2466
2467                         bool is_open = false;
2468                         for (int i = 0; i < method_args.Length; i++) {
2469                                 if (method_args [i].IsGenericParameter) {
2470                                         is_open = true;
2471                                         break;
2472                                 }
2473                         }
2474
2475                         // If none of the method parameters mention a generic parameter, we can't infer the generic parameters
2476                         if (!is_open)
2477                                 return !TypeManager.IsGenericMethodDefinition (method);
2478
2479                         Type[] infered_types = new Type [method_args.Length];
2480
2481                         Type[] param_types = new Type [pd.Count];
2482                         Type[] arg_types = new Type [pd.Count];
2483
2484                         for (int i = 0; i < arg_count; i++) {
2485                                 param_types [i] = pd.ParameterType (i);
2486
2487                                 Argument a = (Argument) arguments [i];
2488                                 if ((a.Expr is NullLiteral) || (a.Expr is MethodGroupExpr) ||
2489                                     (a.Expr is AnonymousMethod))
2490                                         continue;
2491
2492                                 arg_types [i] = a.Type;
2493                         }
2494
2495                         if (!InferTypeArguments (param_types, arg_types, infered_types))
2496                                 return false;
2497
2498                         method = ((MethodInfo)method).MakeGenericMethod (infered_types);
2499                         return true;
2500                 }
2501
2502                 /// <summary>
2503                 ///   Type inference.
2504                 /// </summary>
2505                 public static bool InferTypeArguments (ParameterData apd,
2506                                                        ref MethodBase method)
2507                 {
2508                         if (!TypeManager.IsGenericMethod (method))
2509                                 return true;
2510
2511                         ParameterData pd = TypeManager.GetParameterData (method);
2512                         if (apd.Count != pd.Count)
2513                                 return false;
2514
2515                         Type[] method_args = method.GetGenericArguments ();
2516                         Type[] infered_types = new Type [method_args.Length];
2517
2518                         Type[] param_types = new Type [pd.Count];
2519                         Type[] arg_types = new Type [pd.Count];
2520
2521                         for (int i = 0; i < apd.Count; i++) {
2522                                 param_types [i] = pd.ParameterType (i);
2523                                 arg_types [i] = apd.ParameterType (i);
2524                         }
2525
2526                         if (!InferTypeArguments (param_types, arg_types, infered_types))
2527                                 return false;
2528
2529                         method = ((MethodInfo)method).MakeGenericMethod (infered_types);
2530                         return true;
2531                 }
2532
2533                 public static bool IsNullableType (Type t)
2534                 {
2535                         return generic_nullable_type == DropGenericTypeArguments (t);
2536                 }
2537
2538                 public static bool IsNullableTypeOf (Type t, Type nullable)
2539                 {
2540                         if (!IsNullableType (t))
2541                                 return false;
2542
2543                         return GetTypeArguments (t) [0] == nullable;
2544                 }
2545
2546                 public static bool IsNullableValueType (Type t)
2547                 {
2548                         if (!IsNullableType (t))
2549                                 return false;
2550
2551                         return GetTypeArguments (t) [0].IsValueType;
2552                 }
2553         }
2554
2555         public abstract class Nullable
2556         {
2557                 public sealed class NullableInfo
2558                 {
2559                         public readonly Type Type;
2560                         public readonly Type UnderlyingType;
2561                         public readonly MethodInfo HasValue;
2562                         public readonly MethodInfo Value;
2563                         public readonly ConstructorInfo Constructor;
2564
2565                         public NullableInfo (Type type)
2566                         {
2567                                 Type = type;
2568                                 UnderlyingType = TypeManager.GetTypeArguments (type) [0];
2569
2570                                 PropertyInfo has_value_pi = TypeManager.GetProperty (type, "HasValue");
2571                                 PropertyInfo value_pi = TypeManager.GetProperty (type, "Value");
2572
2573                                 HasValue = has_value_pi.GetGetMethod (false);
2574                                 Value = value_pi.GetGetMethod (false);
2575                                 Constructor = type.GetConstructor (new Type[] { UnderlyingType });
2576                         }
2577                 }
2578
2579                 public class Unwrap : Expression, IMemoryLocation, IAssignMethod
2580                 {
2581                         Expression expr;
2582                         NullableInfo info;
2583
2584                         LocalTemporary temp;
2585                         bool has_temp;
2586
2587                         protected Unwrap (Expression expr)
2588                         {
2589                                 this.expr = expr;
2590                                 this.loc = expr.Location;
2591                         }
2592
2593                         public static Unwrap Create (Expression expr, EmitContext ec)
2594                         {
2595                                 return new Unwrap (expr).Resolve (ec) as Unwrap;
2596                         }
2597
2598                         public override Expression DoResolve (EmitContext ec)
2599                         {
2600                                 expr = expr.Resolve (ec);
2601                                 if (expr == null)
2602                                         return null;
2603
2604                                 temp = new LocalTemporary (expr.Type);
2605
2606                                 info = new NullableInfo (expr.Type);
2607                                 type = info.UnderlyingType;
2608                                 eclass = expr.eclass;
2609                                 return this;
2610                         }
2611
2612                         public override void Emit (EmitContext ec)
2613                         {
2614                                 AddressOf (ec, AddressOp.LoadStore);
2615                                 ec.ig.EmitCall (OpCodes.Call, info.Value, null);
2616                         }
2617
2618                         public void EmitCheck (EmitContext ec)
2619                         {
2620                                 AddressOf (ec, AddressOp.LoadStore);
2621                                 ec.ig.EmitCall (OpCodes.Call, info.HasValue, null);
2622                         }
2623
2624                         public void Store (EmitContext ec)
2625                         {
2626                                 create_temp (ec);
2627                         }
2628
2629                         void create_temp (EmitContext ec)
2630                         {
2631                                 if ((temp != null) && !has_temp) {
2632                                         expr.Emit (ec);
2633                                         temp.Store (ec);
2634                                         has_temp = true;
2635                                 }
2636                         }
2637
2638                         public void AddressOf (EmitContext ec, AddressOp mode)
2639                         {
2640                                 create_temp (ec);
2641                                 if (temp != null)
2642                                         temp.AddressOf (ec, AddressOp.LoadStore);
2643                                 else
2644                                         ((IMemoryLocation) expr).AddressOf (ec, AddressOp.LoadStore);
2645                         }
2646
2647                         public void Emit (EmitContext ec, bool leave_copy)
2648                         {
2649                                 create_temp (ec);
2650                                 if (leave_copy) {
2651                                         if (temp != null)
2652                                                 temp.Emit (ec);
2653                                         else
2654                                                 expr.Emit (ec);
2655                                 }
2656
2657                                 Emit (ec);
2658                         }
2659
2660                         public void EmitAssign (EmitContext ec, Expression source,
2661                                                 bool leave_copy, bool prepare_for_load)
2662                         {
2663                                 InternalWrap wrap = new InternalWrap (source, info, loc);
2664                                 ((IAssignMethod) expr).EmitAssign (ec, wrap, leave_copy, false);
2665                         }
2666
2667                         protected class InternalWrap : Expression
2668                         {
2669                                 public Expression expr;
2670                                 public NullableInfo info;
2671
2672                                 public InternalWrap (Expression expr, NullableInfo info, Location loc)
2673                                 {
2674                                         this.expr = expr;
2675                                         this.info = info;
2676                                         this.loc = loc;
2677
2678                                         type = info.Type;
2679                                         eclass = ExprClass.Value;
2680                                 }
2681
2682                                 public override Expression DoResolve (EmitContext ec)
2683                                 {
2684                                         return this;
2685                                 }
2686
2687                                 public override void Emit (EmitContext ec)
2688                                 {
2689                                         expr.Emit (ec);
2690                                         ec.ig.Emit (OpCodes.Newobj, info.Constructor);
2691                                 }
2692                         }
2693                 }
2694
2695                 public class Wrap : Expression
2696                 {
2697                         Expression expr;
2698                         NullableInfo info;
2699
2700                         protected Wrap (Expression expr)
2701                         {
2702                                 this.expr = expr;
2703                                 this.loc = expr.Location;
2704                         }
2705
2706                         public static Wrap Create (Expression expr, EmitContext ec)
2707                         {
2708                                 return new Wrap (expr).Resolve (ec) as Wrap;
2709                         }
2710
2711                         public override Expression DoResolve (EmitContext ec)
2712                         {
2713                                 expr = expr.Resolve (ec);
2714                                 if (expr == null)
2715                                         return null;
2716
2717                                 TypeExpr target_type = new NullableType (expr.Type, loc);
2718                                 target_type = target_type.ResolveAsTypeTerminal (ec, false);
2719                                 if (target_type == null)
2720                                         return null;
2721
2722                                 type = target_type.Type;
2723                                 info = new NullableInfo (type);
2724                                 eclass = ExprClass.Value;
2725                                 return this;
2726                         }
2727
2728                         public override void Emit (EmitContext ec)
2729                         {
2730                                 expr.Emit (ec);
2731                                 ec.ig.Emit (OpCodes.Newobj, info.Constructor);
2732                         }
2733                 }
2734
2735                 public class NullableLiteral : NullLiteral, IMemoryLocation {
2736                         public NullableLiteral (Type target_type, Location loc)
2737                                 : base (loc)
2738                         {
2739                                 this.type = target_type;
2740
2741                                 eclass = ExprClass.Value;
2742                         }
2743                 
2744                         public override Expression DoResolve (EmitContext ec)
2745                         {
2746                                 return this;
2747                         }
2748
2749                         public override void Emit (EmitContext ec)
2750                         {
2751                                 LocalTemporary value_target = new LocalTemporary (type);
2752
2753                                 value_target.AddressOf (ec, AddressOp.Store);
2754                                 ec.ig.Emit (OpCodes.Initobj, type);
2755                                 value_target.Emit (ec);
2756                         }
2757
2758                         public void AddressOf (EmitContext ec, AddressOp Mode)
2759                         {
2760                                 LocalTemporary value_target = new LocalTemporary (type);
2761                                         
2762                                 value_target.AddressOf (ec, AddressOp.Store);
2763                                 ec.ig.Emit (OpCodes.Initobj, type);
2764                                 ((IMemoryLocation) value_target).AddressOf (ec, Mode);
2765                         }
2766                 }
2767
2768                 public abstract class Lifted : Expression, IMemoryLocation
2769                 {
2770                         Expression expr, underlying, wrap, null_value;
2771                         Unwrap unwrap;
2772
2773                         protected Lifted (Expression expr, Location loc)
2774                         {
2775                                 this.expr = expr;
2776                                 this.loc = loc;
2777                         }
2778
2779                         public override Expression DoResolve (EmitContext ec)
2780                         {
2781                                 expr = expr.Resolve (ec);
2782                                 if (expr == null)
2783                                         return null;
2784
2785                                 unwrap = Unwrap.Create (expr, ec);
2786                                 if (unwrap == null)
2787                                         return null;
2788
2789                                 underlying = ResolveUnderlying (unwrap, ec);
2790                                 if (underlying == null)
2791                                         return null;
2792
2793                                 wrap = Wrap.Create (underlying, ec);
2794                                 if (wrap == null)
2795                                         return null;
2796
2797                                 null_value = new NullableLiteral (wrap.Type, loc).Resolve (ec);
2798                                 if (null_value == null)
2799                                         return null;
2800
2801                                 type = wrap.Type;
2802                                 eclass = ExprClass.Value;
2803                                 return this;
2804                         }
2805
2806                         protected abstract Expression ResolveUnderlying (Expression unwrap, EmitContext ec);
2807
2808                         public override void Emit (EmitContext ec)
2809                         {
2810                                 ILGenerator ig = ec.ig;
2811                                 Label is_null_label = ig.DefineLabel ();
2812                                 Label end_label = ig.DefineLabel ();
2813
2814                                 unwrap.EmitCheck (ec);
2815                                 ig.Emit (OpCodes.Brfalse, is_null_label);
2816
2817                                 wrap.Emit (ec);
2818                                 ig.Emit (OpCodes.Br, end_label);
2819
2820                                 ig.MarkLabel (is_null_label);
2821                                 null_value.Emit (ec);
2822
2823                                 ig.MarkLabel (end_label);
2824                         }
2825
2826                         public void AddressOf (EmitContext ec, AddressOp mode)
2827                         {
2828                                 unwrap.AddressOf (ec, mode);
2829                         }
2830                 }
2831
2832                 public class LiftedConversion : Lifted
2833                 {
2834                         public readonly bool IsUser;
2835                         public readonly bool IsExplicit;
2836                         public readonly Type TargetType;
2837
2838                         public LiftedConversion (Expression expr, Type target_type, bool is_user,
2839                                                  bool is_explicit, Location loc)
2840                                 : base (expr, loc)
2841                         {
2842                                 this.IsUser = is_user;
2843                                 this.IsExplicit = is_explicit;
2844                                 this.TargetType = target_type;
2845                         }
2846
2847                         protected override Expression ResolveUnderlying (Expression unwrap, EmitContext ec)
2848                         {
2849                                 Type type = TypeManager.GetTypeArguments (TargetType) [0];
2850
2851                                 if (IsUser) {
2852                                         return Convert.UserDefinedConversion (ec, unwrap, type, loc, IsExplicit);
2853                                 } else {
2854                                         if (IsExplicit)
2855                                                 return Convert.ExplicitConversion (ec, unwrap, type, loc);
2856                                         else
2857                                                 return Convert.ImplicitConversion (ec, unwrap, type, loc);
2858                                 }
2859                         }
2860                 }
2861
2862                 public class LiftedUnaryOperator : Lifted
2863                 {
2864                         public readonly Unary.Operator Oper;
2865
2866                         public LiftedUnaryOperator (Unary.Operator op, Expression expr, Location loc)
2867                                 : base (expr, loc)
2868                         {
2869                                 this.Oper = op;
2870                         }
2871
2872                         protected override Expression ResolveUnderlying (Expression unwrap, EmitContext ec)
2873                         {
2874                                 return new Unary (Oper, unwrap, loc);
2875                         }
2876                 }
2877
2878                 public class LiftedConditional : Lifted
2879                 {
2880                         Expression true_expr, false_expr;
2881
2882                         public LiftedConditional (Expression expr, Expression true_expr, Expression false_expr,
2883                                                   Location loc)
2884                                 : base (expr, loc)
2885                         {
2886                                 this.true_expr = true_expr;
2887                                 this.false_expr = false_expr;
2888                         }
2889
2890                         protected override Expression ResolveUnderlying (Expression unwrap, EmitContext ec)
2891                         {
2892                                 return new Conditional (unwrap, true_expr, false_expr);
2893                         }
2894                 }
2895
2896                 public class LiftedBinaryOperator : Expression
2897                 {
2898                         public readonly Binary.Operator Oper;
2899
2900                         Expression left, right, original_left, original_right;
2901                         Expression underlying, null_value, bool_wrap;
2902                         Unwrap left_unwrap, right_unwrap;
2903                         bool is_equality, is_comparision, is_boolean;
2904
2905                         public LiftedBinaryOperator (Binary.Operator op, Expression left, Expression right,
2906                                                      Location loc)
2907                         {
2908                                 this.Oper = op;
2909                                 this.left = original_left = left;
2910                                 this.right = original_right = right;
2911                                 this.loc = loc;
2912                         }
2913
2914                         public override Expression DoResolve (EmitContext ec)
2915                         {
2916                                 if (TypeManager.IsNullableType (left.Type)) {
2917                                         left = left_unwrap = Unwrap.Create (left, ec);
2918                                         if (left == null)
2919                                                 return null;
2920                                 }
2921
2922                                 if (TypeManager.IsNullableType (right.Type)) {
2923                                         right = right_unwrap = Unwrap.Create (right, ec);
2924                                         if (right == null)
2925                                                 return null;
2926                                 }
2927
2928                                 if ((Oper == Binary.Operator.LogicalAnd) ||
2929                                     (Oper == Binary.Operator.LogicalOr)) {
2930                                         Binary.Error_OperatorCannotBeApplied (
2931                                                 loc, Binary.OperName (Oper),
2932                                                 original_left.GetSignatureForError (),
2933                                                 original_right.GetSignatureForError ());
2934                                         return null;
2935                                 }
2936
2937                                 if (((Oper == Binary.Operator.BitwiseAnd) || (Oper == Binary.Operator.BitwiseOr)) &&
2938                                     ((left.Type == TypeManager.bool_type) && (right.Type == TypeManager.bool_type))) {
2939                                         Expression empty = new EmptyExpression (TypeManager.bool_type);
2940                                         bool_wrap = Wrap.Create (empty, ec);
2941                                         null_value = new NullableLiteral (bool_wrap.Type, loc).Resolve (ec);
2942
2943                                         type = bool_wrap.Type;
2944                                         is_boolean = true;
2945                                 } else if ((Oper == Binary.Operator.Equality) || (Oper == Binary.Operator.Inequality)) {
2946                                         if (!(left is NullLiteral) && !(right is NullLiteral)) {
2947                                                 underlying = new Binary (Oper, left, right).Resolve (ec);
2948                                                 if (underlying == null)
2949                                                         return null;
2950                                         }
2951
2952                                         type = TypeManager.bool_type;
2953                                         is_equality = true;
2954                                 } else if ((Oper == Binary.Operator.LessThan) ||
2955                                            (Oper == Binary.Operator.GreaterThan) ||
2956                                            (Oper == Binary.Operator.LessThanOrEqual) ||
2957                                            (Oper == Binary.Operator.GreaterThanOrEqual)) {
2958                                         underlying = new Binary (Oper, left, right).Resolve (ec);
2959                                         if (underlying == null)
2960                                                 return null;
2961
2962                                         type = TypeManager.bool_type;
2963                                         is_comparision = true;
2964                                 } else {
2965                                         underlying = new Binary (Oper, left, right).Resolve (ec);
2966                                         if (underlying == null)
2967                                                 return null;
2968
2969                                         underlying = Wrap.Create (underlying, ec);
2970                                         if (underlying == null)
2971                                                 return null;
2972
2973                                         type = underlying.Type;
2974                                         null_value = new NullableLiteral (type, loc).Resolve (ec);
2975                                 }
2976
2977                                 eclass = ExprClass.Value;
2978                                 return this;
2979                         }
2980
2981                         void EmitBoolean (EmitContext ec)
2982                         {
2983                                 ILGenerator ig = ec.ig;
2984
2985                                 Label left_is_null_label = ig.DefineLabel ();
2986                                 Label right_is_null_label = ig.DefineLabel ();
2987                                 Label is_null_label = ig.DefineLabel ();
2988                                 Label wrap_label = ig.DefineLabel ();
2989                                 Label end_label = ig.DefineLabel ();
2990
2991                                 if (left_unwrap != null) {
2992                                         left_unwrap.EmitCheck (ec);
2993                                         ig.Emit (OpCodes.Brfalse, left_is_null_label);
2994                                 }
2995
2996                                 left.Emit (ec);
2997                                 ig.Emit (OpCodes.Dup);
2998                                 if ((Oper == Binary.Operator.BitwiseOr) || (Oper == Binary.Operator.LogicalOr))
2999                                         ig.Emit (OpCodes.Brtrue, wrap_label);
3000                                 else
3001                                         ig.Emit (OpCodes.Brfalse, wrap_label);
3002
3003                                 if (right_unwrap != null) {
3004                                         right_unwrap.EmitCheck (ec);
3005                                         ig.Emit (OpCodes.Brfalse, right_is_null_label);
3006                                 }
3007
3008                                 if ((Oper == Binary.Operator.LogicalAnd) || (Oper == Binary.Operator.LogicalOr))
3009                                         ig.Emit (OpCodes.Pop);
3010
3011                                 right.Emit (ec);
3012                                 if (Oper == Binary.Operator.BitwiseOr)
3013                                         ig.Emit (OpCodes.Or);
3014                                 else if (Oper == Binary.Operator.BitwiseAnd)
3015                                         ig.Emit (OpCodes.And);
3016                                 ig.Emit (OpCodes.Br, wrap_label);
3017
3018                                 ig.MarkLabel (left_is_null_label);
3019                                 if (right_unwrap != null) {
3020                                         right_unwrap.EmitCheck (ec);
3021                                         ig.Emit (OpCodes.Brfalse, is_null_label);
3022                                 }
3023
3024                                 right.Emit (ec);
3025                                 ig.Emit (OpCodes.Dup);
3026                                 if ((Oper == Binary.Operator.BitwiseOr) || (Oper == Binary.Operator.LogicalOr))
3027                                         ig.Emit (OpCodes.Brtrue, wrap_label);
3028                                 else
3029                                         ig.Emit (OpCodes.Brfalse, wrap_label);
3030
3031                                 ig.MarkLabel (right_is_null_label);
3032                                 ig.Emit (OpCodes.Pop);
3033                                 ig.MarkLabel (is_null_label);
3034                                 null_value.Emit (ec);
3035                                 ig.Emit (OpCodes.Br, end_label);
3036
3037                                 ig.MarkLabel (wrap_label);
3038                                 ig.Emit (OpCodes.Nop);
3039                                 bool_wrap.Emit (ec);
3040                                 ig.Emit (OpCodes.Nop);
3041
3042                                 ig.MarkLabel (end_label);
3043                         }
3044
3045                         void EmitEquality (EmitContext ec)
3046                         {
3047                                 ILGenerator ig = ec.ig;
3048
3049                                 // Given 'X? x;' for any value type X: 'x != null' is the same as 'x.HasValue'
3050                                 if (left is NullLiteral) {
3051                                         if (right_unwrap == null)
3052                                                 throw new InternalErrorException ();
3053                                         right_unwrap.EmitCheck (ec);
3054                                         if (Oper == Binary.Operator.Equality) {
3055                                                 ig.Emit (OpCodes.Ldc_I4_0);
3056                                                 ig.Emit (OpCodes.Ceq);
3057                                         }
3058                                         return;
3059                                 }
3060
3061                                 if (right is NullLiteral) {
3062                                         if (left_unwrap == null)
3063                                                 throw new InternalErrorException ();
3064                                         left_unwrap.EmitCheck (ec);
3065                                         if (Oper == Binary.Operator.Equality) {
3066                                                 ig.Emit (OpCodes.Ldc_I4_0);
3067                                                 ig.Emit (OpCodes.Ceq);
3068                                         }
3069                                         return;
3070                                 }
3071
3072                                 Label both_have_value_label = ig.DefineLabel ();
3073                                 Label end_label = ig.DefineLabel ();
3074
3075                                 if (left_unwrap != null && right_unwrap != null) {
3076                                         Label dissimilar_label = ig.DefineLabel ();
3077
3078                                         left_unwrap.EmitCheck (ec);
3079                                         ig.Emit (OpCodes.Dup);
3080                                         right_unwrap.EmitCheck (ec);
3081                                         ig.Emit (OpCodes.Bne_Un, dissimilar_label);
3082
3083                                         ig.Emit (OpCodes.Brtrue, both_have_value_label);
3084
3085                                         // both are null
3086                                         if (Oper == Binary.Operator.Equality)
3087                                                 ig.Emit (OpCodes.Ldc_I4_1);
3088                                         else
3089                                                 ig.Emit (OpCodes.Ldc_I4_0);
3090                                         ig.Emit (OpCodes.Br, end_label);
3091
3092                                         ig.MarkLabel (dissimilar_label);
3093                                         ig.Emit (OpCodes.Pop);
3094                                 } else if (left_unwrap != null) {
3095                                         left_unwrap.EmitCheck (ec);
3096                                         ig.Emit (OpCodes.Brtrue, both_have_value_label);
3097                                 } else if (right_unwrap != null) {
3098                                         right_unwrap.EmitCheck (ec);
3099                                         ig.Emit (OpCodes.Brtrue, both_have_value_label);
3100                                 } else {
3101                                         throw new InternalErrorException ("shouldn't get here");
3102                                 }
3103
3104                                 // one is null while the other isn't
3105                                 if (Oper == Binary.Operator.Equality)
3106                                         ig.Emit (OpCodes.Ldc_I4_0);
3107                                 else
3108                                         ig.Emit (OpCodes.Ldc_I4_1);
3109                                 ig.Emit (OpCodes.Br, end_label);
3110
3111                                 ig.MarkLabel (both_have_value_label);
3112                                 underlying.Emit (ec);
3113
3114                                 ig.MarkLabel (end_label);
3115                         }
3116
3117                         void EmitComparision (EmitContext ec)
3118                         {
3119                                 ILGenerator ig = ec.ig;
3120
3121                                 Label is_null_label = ig.DefineLabel ();
3122                                 Label end_label = ig.DefineLabel ();
3123
3124                                 if (left_unwrap != null) {
3125                                         left_unwrap.EmitCheck (ec);
3126                                         ig.Emit (OpCodes.Brfalse, is_null_label);
3127                                 }
3128
3129                                 if (right_unwrap != null) {
3130                                         right_unwrap.EmitCheck (ec);
3131                                         ig.Emit (OpCodes.Brfalse, is_null_label);
3132                                 }
3133
3134                                 underlying.Emit (ec);
3135                                 ig.Emit (OpCodes.Br, end_label);
3136
3137                                 ig.MarkLabel (is_null_label);
3138                                 ig.Emit (OpCodes.Ldc_I4_0);
3139
3140                                 ig.MarkLabel (end_label);
3141                         }
3142
3143                         public override void Emit (EmitContext ec)
3144                         {
3145                                 if (left_unwrap != null)
3146                                         left_unwrap.Store (ec);
3147                                 if (right_unwrap != null)
3148                                         right_unwrap.Store (ec);
3149
3150                                 if (is_boolean) {
3151                                         EmitBoolean (ec);
3152                                         return;
3153                                 } else if (is_equality) {
3154                                         EmitEquality (ec);
3155                                         return;
3156                                 } else if (is_comparision) {
3157                                         EmitComparision (ec);
3158                                         return;
3159                                 }
3160
3161                                 ILGenerator ig = ec.ig;
3162
3163                                 Label is_null_label = ig.DefineLabel ();
3164                                 Label end_label = ig.DefineLabel ();
3165
3166                                 if (left_unwrap != null) {
3167                                         left_unwrap.EmitCheck (ec);
3168                                         ig.Emit (OpCodes.Brfalse, is_null_label);
3169                                 }
3170
3171                                 if (right_unwrap != null) {
3172                                         right_unwrap.EmitCheck (ec);
3173                                         ig.Emit (OpCodes.Brfalse, is_null_label);
3174                                 }
3175
3176                                 underlying.Emit (ec);
3177                                 ig.Emit (OpCodes.Br, end_label);
3178
3179                                 ig.MarkLabel (is_null_label);
3180                                 null_value.Emit (ec);
3181
3182                                 ig.MarkLabel (end_label);
3183                         }
3184                 }
3185
3186                 public class OperatorTrueOrFalse : Expression
3187                 {
3188                         public readonly bool IsTrue;
3189
3190                         Expression expr;
3191                         Unwrap unwrap;
3192
3193                         public OperatorTrueOrFalse (Expression expr, bool is_true, Location loc)
3194                         {
3195                                 this.IsTrue = is_true;
3196                                 this.expr = expr;
3197                                 this.loc = loc;
3198                         }
3199
3200                         public override Expression DoResolve (EmitContext ec)
3201                         {
3202                                 unwrap = Unwrap.Create (expr, ec);
3203                                 if (unwrap == null)
3204                                         return null;
3205
3206                                 if (unwrap.Type != TypeManager.bool_type)
3207                                         return null;
3208
3209                                 type = TypeManager.bool_type;
3210                                 eclass = ExprClass.Value;
3211                                 return this;
3212                         }
3213
3214                         public override void Emit (EmitContext ec)
3215                         {
3216                                 ILGenerator ig = ec.ig;
3217
3218                                 Label is_null_label = ig.DefineLabel ();
3219                                 Label end_label = ig.DefineLabel ();
3220
3221                                 unwrap.EmitCheck (ec);
3222                                 ig.Emit (OpCodes.Brfalse, is_null_label);
3223
3224                                 unwrap.Emit (ec);
3225                                 if (!IsTrue) {
3226                                         ig.Emit (OpCodes.Ldc_I4_0);
3227                                         ig.Emit (OpCodes.Ceq);
3228                                 }
3229                                 ig.Emit (OpCodes.Br, end_label);
3230
3231                                 ig.MarkLabel (is_null_label);
3232                                 ig.Emit (OpCodes.Ldc_I4_0);
3233
3234                                 ig.MarkLabel (end_label);
3235                         }
3236                 }
3237
3238                 public class NullCoalescingOperator : Expression
3239                 {
3240                         Expression left, right;
3241                         Expression expr;
3242                         Unwrap unwrap;
3243
3244                         public NullCoalescingOperator (Expression left, Expression right, Location loc)
3245                         {
3246                                 this.left = left;
3247                                 this.right = right;
3248                                 this.loc = loc;
3249
3250                                 eclass = ExprClass.Value;
3251                         }
3252
3253                         public override Expression DoResolve (EmitContext ec)
3254                         {
3255                                 if (type != null)
3256                                         return this;
3257
3258                                 left = left.Resolve (ec);
3259                                 if (left == null)
3260                                         return null;
3261
3262                                 right = right.Resolve (ec);
3263                                 if (right == null)
3264                                         return null;
3265
3266                                 Type ltype = left.Type, rtype = right.Type;
3267
3268                                 if (!TypeManager.IsNullableType (ltype) && ltype.IsValueType) {
3269                                         Binary.Error_OperatorCannotBeApplied (loc, "??", ltype, rtype);
3270                                         return null;
3271                                 }
3272
3273                                 if (TypeManager.IsNullableType (ltype)) {
3274                                         NullableInfo info = new NullableInfo (ltype);
3275
3276                                         unwrap = Unwrap.Create (left, ec);
3277                                         if (unwrap == null)
3278                                                 return null;
3279
3280                                         expr = Convert.ImplicitConversion (ec, right, info.UnderlyingType, loc);
3281                                         if (expr != null) {
3282                                                 left = unwrap;
3283                                                 type = expr.Type;
3284                                                 return this;
3285                                         }
3286                                 }
3287
3288                                 expr = Convert.ImplicitConversion (ec, right, ltype, loc);
3289                                 if (expr != null) {
3290                                         type = expr.Type;
3291                                         return this;
3292                                 }
3293
3294                                 if (unwrap != null) {
3295                                         expr = Convert.ImplicitConversion (ec, unwrap, rtype, loc);
3296                                         if (expr != null) {
3297                                                 left = expr;
3298                                                 expr = right;
3299                                                 type = expr.Type;
3300                                                 return this;
3301                                         }
3302                                 }
3303
3304                                 Binary.Error_OperatorCannotBeApplied (loc, "??", ltype, rtype);
3305                                 return null;
3306                         }
3307
3308                         public override void Emit (EmitContext ec)
3309                         {
3310                                 ILGenerator ig = ec.ig;
3311
3312                                 Label is_null_label = ig.DefineLabel ();
3313                                 Label end_label = ig.DefineLabel ();
3314
3315                                 if (unwrap != null) {
3316                                         unwrap.EmitCheck (ec);
3317                                         ig.Emit (OpCodes.Brfalse, is_null_label);
3318
3319                                         left.Emit (ec);
3320                                         ig.Emit (OpCodes.Br, end_label);
3321
3322                                         ig.MarkLabel (is_null_label);
3323                                         expr.Emit (ec);
3324
3325                                         ig.MarkLabel (end_label);
3326                                 } else {
3327                                         left.Emit (ec);
3328                                         ig.Emit (OpCodes.Dup);
3329                                         ig.Emit (OpCodes.Brtrue, end_label);
3330
3331                                         ig.MarkLabel (is_null_label);
3332
3333                                         ig.Emit (OpCodes.Pop);
3334                                         expr.Emit (ec);
3335
3336                                         ig.MarkLabel (end_label);
3337                                 }
3338                         }
3339                 }
3340
3341                 public class LiftedUnaryMutator : ExpressionStatement
3342                 {
3343                         public readonly UnaryMutator.Mode Mode;
3344                         Expression expr, null_value;
3345                         UnaryMutator underlying;
3346                         Unwrap unwrap;
3347
3348                         public LiftedUnaryMutator (UnaryMutator.Mode mode, Expression expr, Location loc)
3349                         {
3350                                 this.expr = expr;
3351                                 this.Mode = mode;
3352                                 this.loc = loc;
3353
3354                                 eclass = ExprClass.Value;
3355                         }
3356
3357                         public override Expression DoResolve (EmitContext ec)
3358                         {
3359                                 expr = expr.Resolve (ec);
3360                                 if (expr == null)
3361                                         return null;
3362
3363                                 unwrap = Unwrap.Create (expr, ec);
3364                                 if (unwrap == null)
3365                                         return null;
3366
3367                                 underlying = (UnaryMutator) new UnaryMutator (Mode, unwrap, loc).Resolve (ec);
3368                                 if (underlying == null)
3369                                         return null;
3370
3371                                 null_value = new NullableLiteral (expr.Type, loc).Resolve (ec);
3372                                 if (null_value == null)
3373                                         return null;
3374
3375                                 type = expr.Type;
3376                                 return this;
3377                         }
3378
3379                         void DoEmit (EmitContext ec, bool is_expr)
3380                         {
3381                                 ILGenerator ig = ec.ig;
3382                                 Label is_null_label = ig.DefineLabel ();
3383                                 Label end_label = ig.DefineLabel ();
3384
3385                                 unwrap.EmitCheck (ec);
3386                                 ig.Emit (OpCodes.Brfalse, is_null_label);
3387
3388                                 if (is_expr)
3389                                         underlying.Emit (ec);
3390                                 else
3391                                         underlying.EmitStatement (ec);
3392                                 ig.Emit (OpCodes.Br, end_label);
3393
3394                                 ig.MarkLabel (is_null_label);
3395                                 if (is_expr)
3396                                         null_value.Emit (ec);
3397
3398                                 ig.MarkLabel (end_label);
3399                         }
3400
3401                         public override void Emit (EmitContext ec)
3402                         {
3403                                 DoEmit (ec, true);
3404                         }
3405
3406                         public override void EmitStatement (EmitContext ec)
3407                         {
3408                                 DoEmit (ec, false);
3409                         }
3410                 }
3411         }
3412 }