Don't check inferred dynamic type arguments against best candidate constraints.
[mono.git] / mcs / mcs / generic.cs
1 //
2 // generic.cs: Generics support
3 //
4 // Authors: Martin Baulig (martin@ximian.com)
5 //          Miguel de Icaza (miguel@ximian.com)
6 //          Marek Safar (marek.safar@gmail.com)
7 //
8 // Dual licensed under the terms of the MIT X11 or GNU GPL
9 //
10 // Copyright 2001, 2002, 2003 Ximian, Inc (http://www.ximian.com)
11 // Copyright 2004-2008 Novell, Inc
12 //
13 using System;
14 using System.Reflection;
15 using System.Reflection.Emit;
16 using System.Globalization;
17 using System.Collections.Generic;
18 using System.Text;
19 using System.Linq;
20         
21 namespace Mono.CSharp {
22         public enum Variance
23         {
24                 //
25                 // Don't add or modify internal values, they are used as -/+ calculation signs
26                 //
27                 None                    = 0,
28                 Covariant               = 1,
29                 Contravariant   = -1
30         }
31
32         [Flags]
33         public enum SpecialConstraint
34         {
35                 None            = 0,
36                 Constructor = 1 << 2,
37                 Class           = 1 << 3,
38                 Struct          = 1 << 4
39         }
40
41         public class SpecialContraintExpr : FullNamedExpression
42         {
43                 public SpecialContraintExpr (SpecialConstraint constraint, Location loc)
44                 {
45                         this.loc = loc;
46                         this.Constraint = constraint;
47                 }
48
49                 public SpecialConstraint Constraint { get; private set; }
50
51                 protected override Expression DoResolve (ResolveContext rc)
52                 {
53                         throw new NotImplementedException ();
54                 }
55         }
56
57         //
58         // A set of parsed constraints for a type parameter
59         //
60         public class Constraints
61         {
62                 SimpleMemberName tparam;
63                 List<FullNamedExpression> constraints;
64                 Location loc;
65                 bool resolved;
66                 bool resolving;
67                 
68                 public Constraints (SimpleMemberName tparam, List<FullNamedExpression> constraints, Location loc)
69                 {
70                         this.tparam = tparam;
71                         this.constraints = constraints;
72                         this.loc = loc;
73                 }
74
75                 #region Properties
76
77                 public Location Location {
78                         get {
79                                 return loc;
80                         }
81                 }
82
83                 public SimpleMemberName TypeParameter {
84                         get {
85                                 return tparam;
86                         }
87                 }
88
89                 #endregion
90
91                 bool CheckConflictingInheritedConstraint (TypeSpec ba, TypeSpec bb, IMemberContext context, Location loc)
92                 {
93                         if (!TypeSpec.IsBaseClass (ba, bb, false) && !TypeSpec.IsBaseClass (bb, ba, false)) {
94                                 context.Compiler.Report.Error (455, loc,
95                                         "Type parameter `{0}' inherits conflicting constraints `{1}' and `{2}'",
96                                         tparam.Value,
97                                         ba.GetSignatureForError (), bb.GetSignatureForError ());
98                                 return false;
99                         }
100
101                         return true;
102                 }
103
104                 public void CheckGenericConstraints (IMemberContext context)
105                 {
106                         foreach (var c in constraints) {
107                                 var ge = c as GenericTypeExpr;
108                                 if (ge != null)
109                                         ge.CheckConstraints (context);
110                         }
111                 }
112
113                 //
114                 // Resolve the constraints types with only possible early checks, return
115                 // value `false' is reserved for recursive failure
116                 //
117                 public bool Resolve (IMemberContext context, TypeParameter tp)
118                 {
119                         if (resolved)
120                                 return true;
121
122                         if (resolving)
123                                 return false;
124
125                         resolving = true;
126                         var spec = tp.Type;
127                         List<TypeParameterSpec> tparam_types = null;
128                         bool iface_found = false;
129
130                         spec.BaseType = TypeManager.object_type;
131
132                         for (int i = 0; i < constraints.Count; ++i) {
133                                 var constraint = constraints[i];
134
135                                 if (constraint is SpecialContraintExpr) {
136                                         spec.SpecialConstraint |= ((SpecialContraintExpr) constraint).Constraint;
137                                         if (spec.HasSpecialStruct)
138                                                 spec.BaseType = TypeManager.value_type;
139
140                                         // Set to null as it does not have a type
141                                         constraints[i] = null;
142                                         continue;
143                                 }
144
145                                 var type_expr = constraints[i] = constraint.ResolveAsTypeTerminal (context, false);
146                                 if (type_expr == null)
147                                         continue;
148
149                                 var gexpr = type_expr as GenericTypeExpr;
150                                 if (gexpr != null && gexpr.HasDynamicArguments ()) {
151                                         context.Compiler.Report.Error (1968, constraint.Location,
152                                                 "A constraint cannot be the dynamic type `{0}'", gexpr.GetSignatureForError ());
153                                         continue;
154                                 }
155
156                                 var type = type_expr.Type;
157
158                                 if (!context.CurrentMemberDefinition.IsAccessibleAs (type)) {
159                                         context.Compiler.Report.SymbolRelatedToPreviousError (type);
160                                         context.Compiler.Report.Error (703, loc,
161                                                 "Inconsistent accessibility: constraint type `{0}' is less accessible than `{1}'",
162                                                 type.GetSignatureForError (), context.GetSignatureForError ());
163                                 }
164
165                                 if (type.IsInterface) {
166                                         if (!spec.AddInterface (type)) {
167                                                 context.Compiler.Report.Error (405, constraint.Location,
168                                                         "Duplicate constraint `{0}' for type parameter `{1}'", type.GetSignatureForError (), tparam.Value);
169                                         }
170
171                                         iface_found = true;
172                                         continue;
173                                 }
174
175
176                                 var constraint_tp = type as TypeParameterSpec;
177                                 if (constraint_tp != null) {
178                                         if (tparam_types == null) {
179                                                 tparam_types = new List<TypeParameterSpec> (2);
180                                         } else if (tparam_types.Contains (constraint_tp)) {
181                                                 context.Compiler.Report.Error (405, constraint.Location,
182                                                         "Duplicate constraint `{0}' for type parameter `{1}'", type.GetSignatureForError (), tparam.Value);
183                                                 continue;
184                                         }
185
186                                         //
187                                         // Checks whether each generic method parameter constraint type
188                                         // is valid with respect to T
189                                         //
190                                         if (tp.IsMethodTypeParameter) {
191                                                 TypeManager.CheckTypeVariance (type, Variance.Contravariant, context);
192                                         }
193
194                                         var tp_def = constraint_tp.MemberDefinition as TypeParameter;
195                                         if (tp_def != null && !tp_def.ResolveConstraints (context)) {
196                                                 context.Compiler.Report.Error (454, constraint.Location,
197                                                         "Circular constraint dependency involving `{0}' and `{1}'",
198                                                         constraint_tp.GetSignatureForError (), tp.GetSignatureForError ());
199                                                 continue;
200                                         }
201
202                                         //
203                                         // Checks whether there are no conflicts between type parameter constraints
204                                         //
205                                         // class Foo<T, U>
206                                         //      where T : A
207                                         //      where U : B, T
208                                         //
209                                         // A and B are not convertible and only 1 class constraint is allowed
210                                         //
211                                         if (constraint_tp.HasTypeConstraint) {
212                                                 if (spec.HasTypeConstraint || spec.HasSpecialStruct) {
213                                                         if (!CheckConflictingInheritedConstraint (spec.BaseType, constraint_tp.BaseType, context, constraint.Location))
214                                                                 continue;
215                                                 } else {
216                                                         for (int ii = 0; ii < tparam_types.Count; ++ii) {
217                                                                 if (!tparam_types[ii].HasTypeConstraint)
218                                                                         continue;
219
220                                                                 if (!CheckConflictingInheritedConstraint (tparam_types[ii].BaseType, constraint_tp.BaseType, context, constraint.Location))
221                                                                         break;
222                                                         }
223                                                 }
224                                         }
225
226                                         if (constraint_tp.HasSpecialStruct) {
227                                                 context.Compiler.Report.Error (456, constraint.Location,
228                                                         "Type parameter `{0}' has the `struct' constraint, so it cannot be used as a constraint for `{1}'",
229                                                         constraint_tp.GetSignatureForError (), tp.GetSignatureForError ());
230                                                 continue;
231                                         }
232
233                                         tparam_types.Add (constraint_tp);
234                                         continue;
235                                 }
236
237                                 if (iface_found || spec.HasTypeConstraint) {
238                                         context.Compiler.Report.Error (406, constraint.Location,
239                                                 "The class type constraint `{0}' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list",
240                                                 type.GetSignatureForError ());
241                                 }
242
243                                 if (spec.HasSpecialStruct || spec.HasSpecialClass) {
244                                         context.Compiler.Report.Error (450, type_expr.Location,
245                                                 "`{0}': cannot specify both a constraint class and the `class' or `struct' constraint",
246                                                 type.GetSignatureForError ());
247                                 }
248
249                                 if (type == InternalType.Dynamic) {
250                                         context.Compiler.Report.Error (1967, constraint.Location, "A constraint cannot be the dynamic type");
251                                         continue;
252                                 }
253
254                                 if (type.IsSealed || !type.IsClass) {
255                                         context.Compiler.Report.Error (701, loc,
256                                                 "`{0}' is not a valid constraint. A constraint must be an interface, a non-sealed class or a type parameter",
257                                                 TypeManager.CSharpName (type));
258                                         continue;
259                                 }
260
261                                 if (type.IsStatic) {
262                                         context.Compiler.Report.Error (717, constraint.Location,
263                                                 "`{0}' is not a valid constraint. Static classes cannot be used as constraints",
264                                                 type.GetSignatureForError ());
265                                 } else if (type == TypeManager.array_type || type == TypeManager.delegate_type ||
266                                                         type == TypeManager.enum_type || type == TypeManager.value_type ||
267                                                         type == TypeManager.object_type || type == TypeManager.multicast_delegate_type) {
268                                         context.Compiler.Report.Error (702, constraint.Location,
269                                                 "A constraint cannot be special class `{0}'", type.GetSignatureForError ());
270                                         continue;
271                                 }
272
273                                 spec.BaseType = type;
274                         }
275
276                         if (tparam_types != null)
277                                 spec.TypeArguments = tparam_types.ToArray ();
278
279                         resolving = false;
280                         resolved = true;
281                         return true;
282                 }
283
284                 public void VerifyClsCompliance (Report report)
285                 {
286                         foreach (var c in constraints)
287                         {
288                                 if (c == null)
289                                         continue;
290
291                                 if (!c.Type.IsCLSCompliant ()) {
292                                         report.SymbolRelatedToPreviousError (c.Type);
293                                         report.Warning (3024, 1, loc, "Constraint type `{0}' is not CLS-compliant",
294                                                 c.Type.GetSignatureForError ());
295                                 }
296                         }
297                 }
298         }
299
300         //
301         // A type parameter for a generic type or generic method definition
302         //
303         public class TypeParameter : MemberCore, ITypeDefinition
304         {
305                 static readonly string[] attribute_target = new string [] { "type parameter" };
306                 
307                 Constraints constraints;
308                 GenericTypeParameterBuilder builder;
309                 TypeParameterSpec spec;
310
311                 public TypeParameter (DeclSpace parent, int index, MemberName name, Constraints constraints, Attributes attrs, Variance variance)
312                         : base (parent, name, attrs)
313                 {
314                         this.constraints = constraints;
315                         this.spec = new TypeParameterSpec (null, index, this, SpecialConstraint.None, variance, null);
316                 }
317
318                 public TypeParameter (TypeParameterSpec spec, DeclSpace parent, TypeSpec parentSpec, MemberName name, Attributes attrs)
319                         : base (parent, name, attrs)
320                 {
321                         this.spec = new TypeParameterSpec (parentSpec, spec.DeclaredPosition, spec.MemberDefinition, spec.SpecialConstraint, spec.Variance, null) {
322                                 BaseType = spec.BaseType,
323                                 InterfacesDefined = spec.InterfacesDefined,
324                                 TypeArguments = spec.TypeArguments
325                         };
326                 }
327
328                 #region Properties
329
330                 public override AttributeTargets AttributeTargets {
331                         get {
332                                 return AttributeTargets.GenericParameter;
333                         }
334                 }
335
336                 public override string DocCommentHeader {
337                         get {
338                                 throw new InvalidOperationException (
339                                         "Unexpected attempt to get doc comment from " + this.GetType ());
340                         }
341                 }
342
343                 public bool IsMethodTypeParameter {
344                         get {
345                                 return spec.IsMethodOwned;
346                         }
347                 }
348
349                 public string Namespace {
350                         get {
351                                 return null;
352                         }
353                 }
354
355                 public TypeParameterSpec Type {
356                         get {
357                                 return spec;
358                         }
359                 }
360
361                 public int TypeParametersCount {
362                         get {
363                                 return 0;
364                         }
365                 }
366
367                 public TypeParameterSpec[] TypeParameters {
368                         get {
369                                 return null;
370                         }
371                 }
372
373                 public override string[] ValidAttributeTargets {
374                         get {
375                                 return attribute_target;
376                         }
377                 }
378
379                 public Variance Variance {
380                         get {
381                                 return spec.Variance;
382                         }
383                 }
384
385                 #endregion
386
387                 //
388                 // This is called for each part of a partial generic type definition.
389                 //
390                 // If partial type parameters constraints are not null and we don't
391                 // already have constraints they become our constraints. If we already
392                 // have constraints, we must check that they're the same.
393                 //
394                 public bool AddPartialConstraints (TypeContainer part, TypeParameter tp)
395                 {
396                         if (builder == null)
397                                 throw new InvalidOperationException ();
398
399                         var new_constraints = tp.constraints;
400                         if (new_constraints == null)
401                                 return true;
402
403                         // TODO: could create spec only
404                         //tp.Define (null, -1, part.Definition);
405                         tp.spec.DeclaringType = part.Definition;
406                         if (!tp.ResolveConstraints (part))
407                                 return false;
408
409                         if (constraints != null)
410                                 return spec.HasSameConstraintsDefinition (tp.Type);
411
412                         // Copy constraint from resolved part to partial container
413                         spec.SpecialConstraint = tp.spec.SpecialConstraint;
414                         spec.InterfacesDefined = tp.spec.InterfacesDefined;
415                         spec.TypeArguments = tp.spec.TypeArguments;
416                         spec.BaseType = tp.spec.BaseType;
417                         
418                         return true;
419                 }
420
421                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
422                 {
423                         builder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), cdata);
424                 }
425
426                 public void CheckGenericConstraints ()
427                 {
428                         if (constraints != null)
429                                 constraints.CheckGenericConstraints (this);
430                 }
431
432                 public TypeParameter CreateHoistedCopy (TypeContainer declaringType, TypeSpec declaringSpec)
433                 {
434                         return new TypeParameter (spec, declaringType, declaringSpec, MemberName, null);
435                 }
436
437                 public override bool Define ()
438                 {
439                         return true;
440                 }
441
442                 //
443                 // This is the first method which is called during the resolving
444                 // process; we're called immediately after creating the type parameters
445                 // with SRE (by calling `DefineGenericParameters()' on the TypeBuilder /
446                 // MethodBuilder).
447                 //
448                 public void Define (GenericTypeParameterBuilder type, TypeSpec declaringType)
449                 {
450                         if (builder != null)
451                                 throw new InternalErrorException ();
452
453                         this.builder = type;
454                         spec.DeclaringType = declaringType;
455                         spec.SetMetaInfo (type);
456                 }
457
458                 public void EmitConstraints (GenericTypeParameterBuilder builder)
459                 {
460                         var attr = GenericParameterAttributes.None;
461                         if (spec.Variance == Variance.Contravariant)
462                                 attr |= GenericParameterAttributes.Contravariant;
463                         else if (spec.Variance == Variance.Covariant)
464                                 attr |= GenericParameterAttributes.Covariant;
465
466                         if (spec.HasSpecialClass)
467                                 attr |= GenericParameterAttributes.ReferenceTypeConstraint;
468                         else if (spec.HasSpecialStruct)
469                                 attr |= GenericParameterAttributes.NotNullableValueTypeConstraint | GenericParameterAttributes.DefaultConstructorConstraint;
470
471                         if (spec.HasSpecialConstructor)
472                                 attr |= GenericParameterAttributes.DefaultConstructorConstraint;
473
474                         if (spec.BaseType != TypeManager.object_type)
475                                 builder.SetBaseTypeConstraint (spec.BaseType.GetMetaInfo ());
476
477                         if (spec.InterfacesDefined != null)
478                                 builder.SetInterfaceConstraints (spec.InterfacesDefined.Select (l => l.GetMetaInfo ()).ToArray ());
479
480                         if (spec.TypeArguments != null)
481                                 builder.SetInterfaceConstraints (spec.TypeArguments.Select (l => l.GetMetaInfo ()).ToArray ());
482
483                         builder.SetGenericParameterAttributes (attr);
484                 }
485
486                 public override void Emit ()
487                 {
488                         EmitConstraints (builder);
489
490                         if (OptAttributes != null)
491                                 OptAttributes.Emit ();
492
493                         base.Emit ();
494                 }
495
496                 public void ErrorInvalidVariance (IMemberContext mc, Variance expected)
497                 {
498                         Report.SymbolRelatedToPreviousError (mc.CurrentMemberDefinition);
499                         string input_variance = Variance == Variance.Contravariant ? "contravariant" : "covariant";
500                         string gtype_variance;
501                         switch (expected) {
502                         case Variance.Contravariant: gtype_variance = "contravariantly"; break;
503                         case Variance.Covariant: gtype_variance = "covariantly"; break;
504                         default: gtype_variance = "invariantly"; break;
505                         }
506
507                         Delegate d = mc as Delegate;
508                         string parameters = d != null ? d.Parameters.GetSignatureForError () : "";
509
510                         Report.Error (1961, Location,
511                                 "The {2} type parameter `{0}' must be {3} valid on `{1}{4}'",
512                                         GetSignatureForError (), mc.GetSignatureForError (), input_variance, gtype_variance, parameters);
513                 }
514
515                 public TypeSpec GetAttributeCoClass ()
516                 {
517                         return null;
518                 }
519
520                 public string GetAttributeDefaultMember ()
521                 {
522                         throw new NotSupportedException ();
523                 }
524
525                 public AttributeUsageAttribute GetAttributeUsage (PredefinedAttribute pa)
526                 {
527                         throw new NotSupportedException ();
528                 }
529
530                 public override string GetSignatureForError ()
531                 {
532                         return MemberName.Name;
533                 }
534
535                 public MemberCache LoadMembers (TypeSpec declaringType)
536                 {
537                         throw new NotSupportedException ("Not supported for compiled definition");
538                 }
539
540                 //
541                 // Resolves all type parameter constraints
542                 //
543                 public bool ResolveConstraints (IMemberContext context)
544                 {
545                         if (constraints != null)
546                                 return constraints.Resolve (context, this);
547
548                         if (spec.BaseType == null)
549                                 spec.BaseType = TypeManager.object_type;
550
551                         return true;
552                 }
553
554                 public static TypeParameter FindTypeParameter (TypeParameter[] tparams, string name)
555                 {
556                         foreach (var tp in tparams) {
557                                 if (tp.Name == name)
558                                         return tp;
559                         }
560
561                         return null;
562                 }
563
564                 public override bool IsClsComplianceRequired ()
565                 {
566                         return false;
567                 }
568
569                 public new void VerifyClsCompliance ()
570                 {
571                         if (constraints != null)
572                                 constraints.VerifyClsCompliance (Report);
573                 }
574         }
575
576         [System.Diagnostics.DebuggerDisplay ("{DisplayDebugInfo()}")]
577         public class TypeParameterSpec : TypeSpec
578         {
579                 public static readonly new TypeParameterSpec[] EmptyTypes = new TypeParameterSpec[0];
580
581                 Variance variance;
582                 SpecialConstraint spec;
583                 readonly int tp_pos;
584                 TypeSpec[] targs;
585                 TypeSpec[] ifaces_defined;
586
587                 //
588                 // Creates type owned type parameter
589                 //
590                 public TypeParameterSpec (TypeSpec declaringType, int index, ITypeDefinition definition, SpecialConstraint spec, Variance variance, Type info)
591                         : base (MemberKind.TypeParameter, declaringType, definition, info, Modifiers.PUBLIC)
592                 {
593                         this.variance = variance;
594                         this.spec = spec;
595                         state &= ~StateFlags.Obsolete_Undetected;
596                         tp_pos = index;
597                 }
598
599                 //
600                 // Creates method owned type parameter
601                 //
602                 public TypeParameterSpec (int index, ITypeDefinition definition, SpecialConstraint spec, Variance variance, Type info)
603                         : this (null, index, definition, spec, variance, info)
604                 {
605                 }
606
607                 #region Properties
608
609                 public int DeclaredPosition {
610                         get {
611                                 return tp_pos;
612                         }
613                 }
614
615                 public bool HasSpecialConstructor {
616                         get {
617                                 return (spec & SpecialConstraint.Constructor) != 0;
618                         }
619                 }
620
621                 public bool HasSpecialClass {
622                         get {
623                                 return (spec & SpecialConstraint.Class) != 0;
624                         }
625                 }
626
627                 public bool HasSpecialStruct {
628                         get {
629                                 return (spec & SpecialConstraint.Struct) != 0;
630                         }
631                 }
632
633                 public bool HasTypeConstraint {
634                         get {
635                                 return BaseType != TypeManager.object_type && BaseType != TypeManager.value_type;
636                         }
637                 }
638
639                 public override IList<TypeSpec> Interfaces {
640                         get {
641                                 if ((state & StateFlags.InterfacesExpanded) == 0) {
642                                         if (ifaces != null) {
643                                                 for (int i = 0; i < ifaces.Count; ++i ) {
644                                                         var iface_type = ifaces[i];
645                                                         if (iface_type.Interfaces != null) {
646                                                                 if (ifaces_defined == null)
647                                                                         ifaces_defined = ifaces.ToArray ();
648
649                                                                 for (int ii = 0; ii < iface_type.Interfaces.Count; ++ii) {
650                                                                         var ii_iface_type = iface_type.Interfaces [ii];
651
652                                                                         AddInterface (ii_iface_type);
653                                                                 }
654                                                         }
655                                                 }
656                                         }
657
658                                         if (ifaces_defined == null && ifaces != null)
659                                                 ifaces_defined = ifaces.ToArray ();
660
661                                         state |= StateFlags.InterfacesExpanded;
662                                 }
663
664                                 return ifaces;
665                         }
666                 }
667
668                 //
669                 // Unexpanded interfaces list
670                 //
671                 public TypeSpec[] InterfacesDefined {
672                         get {
673                                 if (ifaces_defined == null && ifaces != null)
674                                         ifaces_defined = ifaces.ToArray ();
675
676                                 return ifaces_defined;
677                         }
678                         set {
679                                 ifaces_defined = value;
680                         }
681                 }
682
683                 public bool IsConstrained {
684                         get {
685                                 return spec != SpecialConstraint.None || ifaces != null || targs != null || HasTypeConstraint;
686                         }
687                 }
688
689                 //
690                 // Returns whether the type parameter is "known to be a reference type"
691                 //
692                 public bool IsReferenceType {
693                         get {
694                                 return (spec & SpecialConstraint.Class) != 0 || HasTypeConstraint;
695                         }
696                 }
697
698                 public bool IsValueType {       // TODO: Do I need this ?
699                         get {
700                                 // TODO MemberCache: probably wrong
701                                 return HasSpecialStruct;
702                         }
703                 }
704
705                 public override string Name {
706                         get {
707                                 return definition.Name;
708                         }
709                 }
710
711                 public bool IsMethodOwned {
712                         get {
713                                 return DeclaringType == null;
714                         }
715                 }
716
717                 public SpecialConstraint SpecialConstraint {
718                         get {
719                                 return spec;
720                         }
721                         set {
722                                 spec = value;
723                         }
724                 }
725
726                 //
727                 // Types used to inflate the generic type
728                 //
729                 public new TypeSpec[] TypeArguments {
730                         get {
731                                 return targs;
732                         }
733                         set {
734                                 targs = value;
735                         }
736                 }
737
738                 public Variance Variance {
739                         get {
740                                 return variance;
741                         }
742                 }
743
744                 #endregion
745
746                 public string DisplayDebugInfo ()
747                 {
748                         var s = GetSignatureForError ();
749                         return IsMethodOwned ? s + "!!" : s + "!";
750                 }
751
752                 //
753                 // Finds effective base class
754                 //
755                 public TypeSpec GetEffectiveBase ()
756                 {
757                         if (HasSpecialStruct) {
758                                 return TypeManager.value_type;
759                         }
760
761                         if (BaseType != null && targs == null)
762                                 return BaseType;
763
764                         var types = targs;
765                         if (HasTypeConstraint) {
766                                 Array.Resize (ref types, types.Length + 1);
767                                 types[types.Length - 1] = BaseType;
768                         }
769
770                         if (types != null)
771                                 return Convert.FindMostEncompassedType (types.Select (l => l.BaseType));
772
773                         return TypeManager.object_type;
774                 }
775
776                 public override string GetSignatureForError ()
777                 {
778                         return Name;
779                 }
780
781                 //
782                 // Constraints have to match by definition but not position, used by
783                 // partial classes or methods
784                 //
785                 public bool HasSameConstraintsDefinition (TypeParameterSpec other)
786                 {
787                         if (spec != other.spec)
788                                 return false;
789
790                         if (BaseType != other.BaseType)
791                                 return false;
792
793                         if (!TypeSpecComparer.Override.IsSame (InterfacesDefined, other.InterfacesDefined))
794                                 return false;
795
796                         if (!TypeSpecComparer.Override.IsSame (targs, other.targs))
797                                 return false;
798
799                         return true;
800                 }
801
802                 //
803                 // Constraints have to match by using same set of types, used by
804                 // implicit interface implementation
805                 //
806                 public bool HasSameConstraintsImplementation (TypeParameterSpec other)
807                 {
808                         if (spec != other.spec)
809                                 return false;
810
811                         //
812                         // It can be same base type or inflated type parameter
813                         //
814                         // interface I<T> { void Foo<U> where U : T; }
815                         // class A : I<int> { void Foo<X> where X : int {} }
816                         //
817                         bool found;
818                         if (!TypeSpecComparer.Override.IsEqual (BaseType, other.BaseType)) {
819                                 if (other.targs == null)
820                                         return false;
821
822                                 found = false;
823                                 foreach (var otarg in other.targs) {
824                                         if (TypeSpecComparer.Override.IsEqual (BaseType, otarg)) {
825                                                 found = true;
826                                                 break;
827                                         }
828                                 }
829
830                                 if (!found)
831                                         return false;
832                         }
833
834                         // Check interfaces implementation -> definition
835                         if (InterfacesDefined != null) {
836                                 foreach (var iface in InterfacesDefined) {
837                                         found = false;
838                                         if (other.InterfacesDefined != null) {
839                                                 foreach (var oiface in other.InterfacesDefined) {
840                                                         if (TypeSpecComparer.Override.IsEqual (iface, oiface)) {
841                                                                 found = true;
842                                                                 break;
843                                                         }
844                                                 }
845                                         }
846
847                                         if (found)
848                                                 continue;
849
850                                         if (other.targs != null) {
851                                                 foreach (var otarg in other.targs) {
852                                                         if (TypeSpecComparer.Override.IsEqual (BaseType, otarg)) {
853                                                                 found = true;
854                                                                 break;
855                                                         }
856                                                 }
857                                         }
858
859                                         if (!found)
860                                                 return false;
861                                 }
862                         }
863
864                         // Check interfaces implementation <- definition
865                         if (other.InterfacesDefined != null) {
866                                 if (InterfacesDefined == null)
867                                         return false;
868
869                                 foreach (var oiface in other.InterfacesDefined) {
870                                         found = false;
871                                         foreach (var iface in InterfacesDefined) {
872                                                 if (TypeSpecComparer.Override.IsEqual (iface, oiface)) {
873                                                         found = true;
874                                                         break;
875                                                 }
876                                         }
877
878                                         if (!found)
879                                                 return false;
880                                 }
881                         }
882
883                         // Check type parameters implementation -> definition
884                         if (targs != null) {
885                                 if (other.targs == null)
886                                         return false;
887
888                                 foreach (var targ in targs) {
889                                         found = false;
890                                         foreach (var otarg in other.targs) {
891                                                 if (TypeSpecComparer.Override.IsEqual (targ, otarg)) {
892                                                         found = true;
893                                                         break;
894                                                 }
895                                         }
896
897                                         if (!found)
898                                                 return false;
899                                 }
900                         }
901
902                         // Check type parameters implementation <- definition
903                         if (other.targs != null) {
904                                 foreach (var otarg in other.targs) {
905                                         // Ignore inflated type arguments, were checked above
906                                         if (!otarg.IsGenericParameter)
907                                                 continue;
908
909                                         if (targs == null)
910                                                 return false;
911
912                                         found = false;
913                                         foreach (var targ in targs) {
914                                                 if (TypeSpecComparer.Override.IsEqual (targ, otarg)) {
915                                                         found = true;
916                                                         break;
917                                                 }
918                                         }
919
920                                         if (!found)
921                                                 return false;
922                                 }                               
923                         }
924
925                         return true;
926                 }
927
928                 public static TypeParameterSpec[] InflateConstraints (TypeParameterInflator inflator, TypeParameterSpec[] tparams)
929                 {
930                         TypeParameterSpec[] constraints = null;
931
932                         for (int i = 0; i < tparams.Length; ++i) {
933                                 var tp = tparams[i];
934                                 if (tp.HasTypeConstraint || tp.Interfaces != null || tp.TypeArguments != null) {
935                                         if (constraints == null) {
936                                                 constraints = new TypeParameterSpec[tparams.Length];
937                                                 Array.Copy (tparams, constraints, constraints.Length);
938                                         }
939
940                                         constraints[i] = (TypeParameterSpec) constraints[i].InflateMember (inflator);
941                                 }
942                         }
943
944                         if (constraints == null)
945                                 constraints = tparams;
946
947                         return constraints;
948                 }
949
950                 public void InflateConstraints (TypeParameterInflator inflator, TypeParameterSpec tps)
951                 {
952                         tps.BaseType = inflator.Inflate (BaseType);
953                         if (ifaces != null) {
954                                 tps.ifaces = new List<TypeSpec> (ifaces.Count);
955                                 for (int i = 0; i < ifaces.Count; ++i)
956                                         tps.ifaces.Add (inflator.Inflate (ifaces[i]));
957                         }
958                         if (targs != null) {
959                                 tps.targs = new TypeSpec[targs.Length];
960                                 for (int i = 0; i < targs.Length; ++i)
961                                         tps.targs[i] = inflator.Inflate (targs[i]);
962                         }
963                 }
964
965                 public override MemberSpec InflateMember (TypeParameterInflator inflator)
966                 {
967                         var tps = (TypeParameterSpec) MemberwiseClone ();
968                         InflateConstraints (inflator, tps);
969                         return tps;
970                 }
971
972                 //
973                 // Populates type parameter members using type parameter constraints
974                 // The trick here is to be called late enough but not too late to
975                 // populate member cache with all members from other types
976                 //
977                 protected override void InitializeMemberCache (bool onlyTypes)
978                 {
979                         cache = new MemberCache ();
980                         if (ifaces != null) {
981                                 foreach (var iface_type in Interfaces) {
982                                         cache.AddInterface (iface_type);
983                                 }
984                         }
985                 }
986
987                 public bool IsConvertibleToInterface (TypeSpec iface)
988                 {
989                         if (Interfaces != null) {
990                                 foreach (var t in Interfaces) {
991                                         if (t == iface)
992                                                 return true;
993                                 }
994                         }
995
996                         if (TypeArguments != null) {
997                                 foreach (var t in TypeArguments) {
998                                         if (((TypeParameterSpec) t).IsConvertibleToInterface (iface))
999                                                 return true;
1000                                 }
1001                         }
1002
1003                         return false;
1004                 }
1005
1006                 public override TypeSpec Mutate (TypeParameterMutator mutator)
1007                 {
1008                         return mutator.Mutate (this);
1009                 }
1010         }
1011
1012         public struct TypeParameterInflator
1013         {
1014                 readonly TypeSpec type;
1015                 readonly TypeParameterSpec[] tparams;
1016                 readonly TypeSpec[] targs;
1017
1018                 public TypeParameterInflator (TypeParameterInflator nested, TypeSpec type)
1019                         : this (type, nested.tparams, nested.targs)
1020                 {
1021                 }
1022
1023                 public TypeParameterInflator (TypeSpec type, TypeParameterSpec[] tparams, TypeSpec[] targs)
1024                 {
1025                         if (tparams.Length != targs.Length)
1026                                 throw new ArgumentException ("Invalid arguments");
1027
1028                         this.tparams = tparams;
1029                         this.targs = targs;
1030                         this.type = type;
1031                 }
1032
1033                 //
1034                 // Type parameters to inflate
1035                 //
1036                 public TypeParameterSpec[] TypeParameters {
1037                         get {
1038                                 return tparams;
1039                         }
1040                 }
1041
1042                 public TypeSpec Inflate (TypeSpec ts)
1043                 {
1044                         var tp = ts as TypeParameterSpec;
1045                         if (tp != null)
1046                                 return Inflate (tp);
1047
1048                         var ac = ts as ArrayContainer;
1049                         if (ac != null) {
1050                                 var et = Inflate (ac.Element);
1051                                 if (et != ac.Element)
1052                                         return ArrayContainer.MakeType (et, ac.Rank);
1053
1054                                 return ac;
1055                         }
1056
1057                         //
1058                         // When inflating a nested type, inflate its parent first
1059                         // in case it's using same type parameters (was inflated within the type)
1060                         //
1061                         if (ts.IsNested) {
1062                                 var parent = Inflate (ts.DeclaringType);
1063                                 if (ts.DeclaringType != parent) {
1064                                         //
1065                                         // Keep the inflated type arguments
1066                                         // 
1067                                         var targs = ts.TypeArguments;
1068
1069                                         //
1070                                         // Parent was inflated, find the same type on inflated type
1071                                         // to use same cache for nested types on same generic parent
1072                                         //
1073                                         // TODO: Should use BindingRestriction.DeclaredOnly or GetMember
1074                                         ts = MemberCache.FindNestedType (parent, ts.Name, targs.Length);
1075
1076                                         //
1077                                         // Handle the tricky case where parent shares local type arguments
1078                                         // which means inflating inflated type
1079                                         //
1080                                         // class Test<T> {
1081                                         //              public static Nested<T> Foo () { return null; }
1082                                         //
1083                                         //              public class Nested<U> {}
1084                                         //      }
1085                                         //
1086                                         //  return type of Test<string>.Foo() has to be Test<string>.Nested<string> 
1087                                         //
1088                                         if (targs.Length > 0) {
1089                                                 var inflated_targs = new TypeSpec [targs.Length];
1090                                                 for (var i = 0; i < targs.Length; ++i)
1091                                                         inflated_targs[i] = Inflate (targs[i]);
1092
1093                                                 ts = ts.MakeGenericType (inflated_targs);
1094                                         }
1095
1096                                         return ts;
1097                                 }
1098                         }
1099
1100                         // Inflate generic type
1101                         if (ts.Arity > 0)
1102                                 return InflateTypeParameters (ts);
1103
1104                         return ts;
1105                 }
1106
1107                 public TypeSpec Inflate (TypeParameterSpec tp)
1108                 {
1109                         for (int i = 0; i < tparams.Length; ++i)
1110                                 if (tparams [i] == tp)
1111                                         return targs[i];
1112
1113                         // This can happen when inflating nested types
1114                         // without type arguments specified
1115                         return tp;
1116                 }
1117
1118                 //
1119                 // Inflates generic types
1120                 //
1121                 TypeSpec InflateTypeParameters (TypeSpec type)
1122                 {
1123                         var targs = new TypeSpec[type.Arity];
1124                         var i = 0;
1125
1126                         var gti = type as InflatedTypeSpec;
1127
1128                         //
1129                         // Inflating using outside type arguments, var v = new Foo<int> (), class Foo<T> {}
1130                         //
1131                         if (gti != null) {
1132                                 for (; i < targs.Length; ++i)
1133                                         targs[i] = Inflate (gti.TypeArguments[i]);
1134
1135                                 return gti.GetDefinition ().MakeGenericType (targs);
1136                         }
1137
1138                         //
1139                         // Inflating parent using inside type arguments, class Foo<T> { ITest<T> foo; }
1140                         //
1141                         var args = type.MemberDefinition.TypeParameters;
1142                         foreach (var ds_tp in args)
1143                                 targs[i++] = Inflate (ds_tp);
1144
1145                         return type.MakeGenericType (targs);
1146                 }
1147
1148                 public TypeSpec TypeInstance {
1149                         get { return type; }
1150                 }
1151         }
1152
1153         //
1154         // Before emitting any code we have to change all MVAR references to VAR
1155         // when the method is of generic type and has hoisted variables
1156         //
1157         public class TypeParameterMutator
1158         {
1159                 TypeParameter[] mvar;
1160                 TypeParameter[] var;
1161                 Dictionary<TypeSpec, TypeSpec> mutated_typespec = new Dictionary<TypeSpec, TypeSpec> ();
1162
1163                 public TypeParameterMutator (TypeParameter[] mvar, TypeParameter[] var)
1164                 {
1165                         if (mvar.Length != var.Length)
1166                                 throw new ArgumentException ();
1167
1168                         this.mvar = mvar;
1169                         this.var = var;
1170                 }
1171
1172                 #region Properties
1173
1174                 public TypeParameter[] MethodTypeParameters {
1175                         get {
1176                                 return mvar;
1177                         }
1178                 }
1179
1180                 #endregion
1181
1182                 public static TypeSpec GetMemberDeclaringType (TypeSpec type)
1183                 {
1184                         if (type is InflatedTypeSpec) {
1185                                 if (type.DeclaringType == null)
1186                                         return type.GetDefinition ();
1187
1188                                 var parent = GetMemberDeclaringType (type.DeclaringType);
1189                                 type = MemberCache.GetMember<TypeSpec> (parent, type);
1190                         }
1191
1192                         return type;
1193                 }
1194
1195                 public TypeSpec Mutate (TypeSpec ts)
1196                 {
1197                         TypeSpec value;
1198                         if (mutated_typespec.TryGetValue (ts, out value))
1199                                 return value;
1200
1201                         value = ts.Mutate (this);
1202                         mutated_typespec.Add (ts, value);
1203                         return value;
1204                 }
1205
1206                 public TypeParameterSpec Mutate (TypeParameterSpec tp)
1207                 {
1208                         for (int i = 0; i < mvar.Length; ++i) {
1209                                 if (mvar[i].Type == tp)
1210                                         return var[i].Type;
1211                         }
1212
1213                         return tp;
1214                 }
1215
1216                 public TypeSpec[] Mutate (TypeSpec[] targs)
1217                 {
1218                         TypeSpec[] mutated = new TypeSpec[targs.Length];
1219                         bool changed = false;
1220                         for (int i = 0; i < targs.Length; ++i) {
1221                                 mutated[i] = Mutate (targs[i]);
1222                                 changed |= targs[i] != mutated[i];
1223                         }
1224
1225                         return changed ? mutated : targs;
1226                 }
1227         }
1228
1229         /// <summary>
1230         ///   A TypeExpr which already resolved to a type parameter.
1231         /// </summary>
1232         public class TypeParameterExpr : TypeExpr {
1233                 
1234                 public TypeParameterExpr (TypeParameter type_parameter, Location loc)
1235                 {
1236                         this.type = type_parameter.Type;
1237                         this.eclass = ExprClass.TypeParameter;
1238                         this.loc = loc;
1239                 }
1240
1241                 protected override TypeExpr DoResolveAsTypeStep (IMemberContext ec)
1242                 {
1243                         throw new NotSupportedException ();
1244                 }
1245
1246                 public override FullNamedExpression ResolveAsTypeStep (IMemberContext ec, bool silent)
1247                 {
1248                         return this;
1249                 }
1250
1251                 public override bool CheckAccessLevel (IMemberContext ds)
1252                 {
1253                         return true;
1254                 }
1255         }
1256
1257         public class InflatedTypeSpec : TypeSpec
1258         {
1259                 TypeSpec[] targs;
1260                 TypeParameterSpec[] constraints;
1261                 readonly TypeSpec open_type;
1262
1263                 public InflatedTypeSpec (TypeSpec openType, TypeSpec declaringType, TypeSpec[] targs)
1264                         : base (openType.Kind, declaringType, openType.MemberDefinition, null, openType.Modifiers)
1265                 {
1266                         if (targs == null)
1267                                 throw new ArgumentNullException ("targs");
1268
1269 //                      this.state = openType.state;
1270                         this.open_type = openType;
1271                         this.targs = targs;
1272                 }
1273
1274                 #region Properties
1275
1276                 public override TypeSpec BaseType {
1277                         get {
1278                                 if (cache == null || (state & StateFlags.PendingBaseTypeInflate) != 0)
1279                                         InitializeMemberCache (true);
1280
1281                                 return base.BaseType;
1282                         }
1283                 }
1284
1285                 //
1286                 // Inflated type parameters with constraints array, mapping with type arguments is based on index
1287                 //
1288                 public TypeParameterSpec[] Constraints {
1289                         get {
1290                                 if (constraints == null) {
1291                                         var inflator = new TypeParameterInflator (this, MemberDefinition.TypeParameters, targs);
1292                                         constraints = TypeParameterSpec.InflateConstraints (inflator, MemberDefinition.TypeParameters);
1293                                 }
1294
1295                                 return constraints;
1296                         }
1297                 }
1298
1299                 public override IList<TypeSpec> Interfaces {
1300                         get {
1301                                 if (cache == null)
1302                                         InitializeMemberCache (true);
1303
1304                                 return base.Interfaces;
1305                         }
1306                 }
1307
1308                 public override MemberCache MemberCacheTypes {
1309                         get {
1310                                 if (cache == null)
1311                                         InitializeMemberCache (true);
1312
1313                                 return cache;
1314                         }
1315                 }
1316
1317                 //
1318                 // Types used to inflate the generic  type
1319                 //
1320                 public override TypeSpec[] TypeArguments {
1321                         get {
1322                                 return targs;
1323                         }
1324                 }
1325
1326                 #endregion
1327
1328                 Type CreateMetaInfo (TypeParameterMutator mutator)
1329                 {
1330                         //
1331                         // Converts nested type arguments into right order
1332                         // Foo<string, bool>.Bar<int> => string, bool, int
1333                         //
1334                         var all = new List<Type> ();
1335                         TypeSpec type = this;
1336                         TypeSpec definition = type;
1337                         do {
1338                                 if (type.GetDefinition().IsGeneric) {
1339                                         all.InsertRange (0,
1340                                                 type.TypeArguments != TypeSpec.EmptyTypes ?
1341                                                 type.TypeArguments.Select (l => l.GetMetaInfo ()) :
1342                                                 type.MemberDefinition.TypeParameters.Select (l => l.GetMetaInfo ()));
1343                                 }
1344
1345                                 definition = definition.GetDefinition ();
1346                                 type = type.DeclaringType;
1347                         } while (type != null);
1348
1349                         return definition.GetMetaInfo ().MakeGenericType (all.ToArray ());
1350                 }
1351
1352                 public override ObsoleteAttribute GetAttributeObsolete ()
1353                 {
1354                         return open_type.GetAttributeObsolete ();
1355                 }
1356
1357                 protected override bool IsNotCLSCompliant ()
1358                 {
1359                         if (base.IsNotCLSCompliant ())
1360                                 return true;
1361
1362                         foreach (var ta in TypeArguments) {
1363                                 if (ta.MemberDefinition.IsNotCLSCompliant ())
1364                                         return true;
1365                         }
1366
1367                         return false;
1368                 }
1369
1370                 public override TypeSpec GetDefinition ()
1371                 {
1372                         return open_type;
1373                 }
1374
1375                 public override Type GetMetaInfo ()
1376                 {
1377                         if (info == null)
1378                                 info = CreateMetaInfo (null);
1379
1380                         return info;
1381                 }
1382
1383                 public override string GetSignatureForError ()
1384                 {
1385                         if (TypeManager.IsNullableType (open_type))
1386                                 return targs[0].GetSignatureForError () + "?";
1387
1388                         return base.GetSignatureForError ();
1389                 }
1390
1391                 protected override string GetTypeNameSignature ()
1392                 {
1393                         if (targs.Length == 0 || MemberDefinition is AnonymousTypeClass)
1394                                 return null;
1395
1396                         return "<" + TypeManager.CSharpName (targs) + ">";
1397                 }
1398
1399                 protected override void InitializeMemberCache (bool onlyTypes)
1400                 {
1401                         if (cache == null)
1402                                 cache = new MemberCache (onlyTypes ? open_type.MemberCacheTypes : open_type.MemberCache);
1403
1404                         TypeParameterSpec[] tparams_full;
1405                         TypeSpec[] targs_full = targs;
1406                         if (IsNested) {
1407                                 //
1408                                 // Special case is needed when we are inflating an open type (nested type definition)
1409                                 // on inflated parent. Consider following case
1410                                 //
1411                                 // Foo<T>.Bar<U> => Foo<string>.Bar<U>
1412                                 //
1413                                 // Any later inflation of Foo<string>.Bar<U> has to also inflate T if used inside Bar<U>
1414                                 //
1415                                 List<TypeSpec> merged_targs = null;
1416                                 List<TypeParameterSpec> merged_tparams = null;
1417
1418                                 var type = DeclaringType;
1419
1420                                 do {
1421                                         if (type.TypeArguments.Length > 0) {
1422                                                 if (merged_targs == null) {
1423                                                         merged_targs = new List<TypeSpec> ();
1424                                                         merged_tparams = new List<TypeParameterSpec> ();
1425                                                         if (targs.Length > 0) {
1426                                                                 merged_targs.AddRange (targs);
1427                                                                 merged_tparams.AddRange (open_type.MemberDefinition.TypeParameters);
1428                                                         }
1429                                                 }
1430                                                 merged_tparams.AddRange (type.MemberDefinition.TypeParameters);
1431                                                 merged_targs.AddRange (type.TypeArguments);
1432                                         }
1433                                         type = type.DeclaringType;
1434                                 } while (type != null);
1435
1436                                 if (merged_targs != null) {
1437                                         // Type arguments are not in the right order but it should not matter in this case
1438                                         targs_full = merged_targs.ToArray ();
1439                                         tparams_full = merged_tparams.ToArray ();
1440                                 } else if (targs.Length == 0) {
1441                                         tparams_full = TypeParameterSpec.EmptyTypes;
1442                                 } else {
1443                                         tparams_full = open_type.MemberDefinition.TypeParameters;
1444                                 }
1445                         } else if (targs.Length == 0) {
1446                                 tparams_full = TypeParameterSpec.EmptyTypes;
1447                         } else {
1448                                 tparams_full = open_type.MemberDefinition.TypeParameters;
1449                         }
1450
1451                         var inflator = new TypeParameterInflator (this, tparams_full, targs_full);
1452
1453                         //
1454                         // Two stage inflate due to possible nested types recursive
1455                         // references
1456                         //
1457                         // class A<T> {
1458                         //    B b;
1459                         //    class B {
1460                         //      T Value;
1461                         //    }
1462                         // }
1463                         //
1464                         // When resolving type of `b' members of `B' cannot be 
1465                         // inflated because are not yet available in membercache
1466                         //
1467                         if ((state & StateFlags.PendingMemberCacheMembers) == 0) {
1468                                 open_type.MemberCacheTypes.InflateTypes (cache, inflator);
1469
1470                                 //
1471                                 // Inflate any implemented interfaces
1472                                 //
1473                                 if (open_type.Interfaces != null) {
1474                                         ifaces = new List<TypeSpec> (open_type.Interfaces.Count);
1475                                         foreach (var iface in open_type.Interfaces) {
1476                                                 var iface_inflated = inflator.Inflate (iface);
1477                                                 AddInterface (iface_inflated);
1478                                         }
1479                                 }
1480
1481                                 //
1482                                 // Handles the tricky case of recursive nested base generic type
1483                                 //
1484                                 // class A<T> : Base<A<T>.Nested> {
1485                                 //    class Nested {}
1486                                 // }
1487                                 //
1488                                 // When inflating A<T>. base type is not yet known, secondary
1489                                 // inflation is required (not common case) once base scope
1490                                 // is known
1491                                 //
1492                                 if (open_type.BaseType == null) {
1493                                         if (IsClass)
1494                                                 state |= StateFlags.PendingBaseTypeInflate;
1495                                 } else {
1496                                         BaseType = inflator.Inflate (open_type.BaseType);
1497                                 }
1498                         } else if ((state & StateFlags.PendingBaseTypeInflate) != 0) {
1499                                 BaseType = inflator.Inflate (open_type.BaseType);
1500                                 state &= ~StateFlags.PendingBaseTypeInflate;
1501                         }
1502
1503                         if (onlyTypes) {
1504                                 state |= StateFlags.PendingMemberCacheMembers;
1505                                 return;
1506                         }
1507
1508                         var tc = open_type.MemberDefinition as TypeContainer;
1509                         if (tc != null && !tc.HasMembersDefined)
1510                                 throw new InternalErrorException ("Inflating MemberCache with undefined members");
1511
1512                         if ((state & StateFlags.PendingBaseTypeInflate) != 0) {
1513                                 BaseType = inflator.Inflate (open_type.BaseType);
1514                                 state &= ~StateFlags.PendingBaseTypeInflate;
1515                         }
1516
1517                         state &= ~StateFlags.PendingMemberCacheMembers;
1518                         open_type.MemberCache.InflateMembers (cache, open_type, inflator);
1519                 }
1520
1521                 public override TypeSpec Mutate (TypeParameterMutator mutator)
1522                 {
1523                         var targs = TypeArguments;
1524                         if (targs != null)
1525                                 targs = mutator.Mutate (targs);
1526
1527                         var decl = DeclaringType;
1528                         if (IsNested && DeclaringType.IsGenericOrParentIsGeneric)
1529                                 decl = mutator.Mutate (decl);
1530
1531                         if (targs == TypeArguments && decl == DeclaringType)
1532                                 return this;
1533
1534                         var mutated = (InflatedTypeSpec) MemberwiseClone ();
1535                         if (decl != DeclaringType) {
1536                                 // Gets back MethodInfo in case of metaInfo was inflated
1537                                 //mutated.info = MemberCache.GetMember<TypeSpec> (DeclaringType.GetDefinition (), this).info;
1538
1539                                 mutated.declaringType = decl;
1540                                 mutated.state |= StateFlags.PendingMetaInflate;
1541                         }
1542
1543                         if (targs != null) {
1544                                 mutated.targs = targs;
1545                                 mutated.info = null;
1546                         }
1547
1548                         return mutated;
1549                 }
1550         }
1551
1552
1553         //
1554         // Tracks the type arguments when instantiating a generic type. It's used
1555         // by both type arguments and type parameters
1556         //
1557         public class TypeArguments
1558         {
1559                 List<FullNamedExpression> args;
1560                 TypeSpec[] atypes;
1561
1562                 public TypeArguments (params FullNamedExpression[] types)
1563                 {
1564                         this.args = new List<FullNamedExpression> (types);
1565                 }
1566
1567                 public void Add (FullNamedExpression type)
1568                 {
1569                         args.Add (type);
1570                 }
1571
1572                 // TODO: Kill this monster
1573                 public TypeParameterName[] GetDeclarations ()
1574                 {
1575                         return args.ConvertAll (i => (TypeParameterName) i).ToArray ();
1576                 }
1577
1578                 /// <summary>
1579                 ///   We may only be used after Resolve() is called and return the fully
1580                 ///   resolved types.
1581                 /// </summary>
1582                 // TODO: Not needed, just return type from resolve
1583                 public TypeSpec[] Arguments {
1584                         get {
1585                                 return atypes;
1586                         }
1587                 }
1588
1589                 public int Count {
1590                         get {
1591                                 return args.Count;
1592                         }
1593                 }
1594
1595                 public virtual bool IsEmpty {
1596                         get {
1597                                 return false;
1598                         }
1599                 }
1600
1601                 public string GetSignatureForError()
1602                 {
1603                         StringBuilder sb = new StringBuilder ();
1604                         for (int i = 0; i < Count; ++i) {
1605                                 var expr = args[i];
1606                                 if (expr != null)
1607                                         sb.Append (expr.GetSignatureForError ());
1608
1609                                 if (i + 1 < Count)
1610                                         sb.Append (',');
1611                         }
1612
1613                         return sb.ToString ();
1614                 }
1615
1616                 /// <summary>
1617                 ///   Resolve the type arguments.
1618                 /// </summary>
1619                 public virtual bool Resolve (IMemberContext ec)
1620                 {
1621                         if (atypes != null)
1622                             return atypes.Length != 0;
1623
1624                         int count = args.Count;
1625                         bool ok = true;
1626
1627                         atypes = new TypeSpec [count];
1628
1629                         for (int i = 0; i < count; i++){
1630                                 TypeExpr te = args[i].ResolveAsTypeTerminal (ec, false);
1631                                 if (te == null) {
1632                                         ok = false;
1633                                         continue;
1634                                 }
1635
1636                                 atypes[i] = te.Type;
1637
1638                                 if (te.Type.IsStatic) {
1639                                         ec.Compiler.Report.Error (718, te.Location, "`{0}': static classes cannot be used as generic arguments",
1640                                                 te.GetSignatureForError ());
1641                                         ok = false;
1642                                 }
1643
1644                                 if (te.Type.IsPointer || TypeManager.IsSpecialType (te.Type)) {
1645                                         ec.Compiler.Report.Error (306, te.Location,
1646                                                 "The type `{0}' may not be used as a type argument",
1647                                                 te.GetSignatureForError ());
1648                                         ok = false;
1649                                 }
1650                         }
1651
1652                         if (!ok)
1653                                 atypes = TypeSpec.EmptyTypes;
1654
1655                         return ok;
1656                 }
1657
1658                 public TypeArguments Clone ()
1659                 {
1660                         TypeArguments copy = new TypeArguments ();
1661                         foreach (var ta in args)
1662                                 copy.args.Add (ta);
1663
1664                         return copy;
1665                 }
1666         }
1667
1668         public class UnboundTypeArguments : TypeArguments
1669         {
1670                 public UnboundTypeArguments (int arity)
1671                         : base (new FullNamedExpression[arity])
1672                 {
1673                 }
1674
1675                 public override bool IsEmpty {
1676                         get {
1677                                 return true;
1678                         }
1679                 }
1680
1681                 public override bool Resolve (IMemberContext ec)
1682                 {
1683                         // Nothing to be resolved
1684                         return true;
1685                 }
1686         }
1687
1688         public class TypeParameterName : SimpleName
1689         {
1690                 Attributes attributes;
1691                 Variance variance;
1692
1693                 public TypeParameterName (string name, Attributes attrs, Location loc)
1694                         : this (name, attrs, Variance.None, loc)
1695                 {
1696                 }
1697
1698                 public TypeParameterName (string name, Attributes attrs, Variance variance, Location loc)
1699                         : base (name, loc)
1700                 {
1701                         attributes = attrs;
1702                         this.variance = variance;
1703                 }
1704
1705                 public Attributes OptAttributes {
1706                         get {
1707                                 return attributes;
1708                         }
1709                 }
1710
1711                 public Variance Variance {
1712                         get {
1713                                 return variance;
1714                         }
1715                 }
1716         }
1717
1718         //
1719         // A type expression of generic type with type arguments
1720         //
1721         class GenericTypeExpr : TypeExpr
1722         {
1723                 TypeArguments args;
1724                 TypeSpec open_type;
1725                 bool constraints_checked;
1726
1727                 /// <summary>
1728                 ///   Instantiate the generic type `t' with the type arguments `args'.
1729                 ///   Use this constructor if you already know the fully resolved
1730                 ///   generic type.
1731                 /// </summary>          
1732                 public GenericTypeExpr (TypeSpec open_type, TypeArguments args, Location l)
1733                 {
1734                         this.open_type = open_type;
1735                         loc = l;
1736                         this.args = args;
1737                 }
1738
1739                 public TypeArguments TypeArguments {
1740                         get { return args; }
1741                 }
1742
1743                 public override string GetSignatureForError ()
1744                 {
1745                         return TypeManager.CSharpName (type);
1746                 }
1747
1748                 protected override TypeExpr DoResolveAsTypeStep (IMemberContext ec)
1749                 {
1750                         if (!args.Resolve (ec))
1751                                 return null;
1752
1753                         TypeSpec[] atypes = args.Arguments;
1754
1755                         //
1756                         // Now bind the parameters
1757                         //
1758                         type = open_type.MakeGenericType (atypes);
1759
1760                         //
1761                         // Check constraints when context is not method/base type
1762                         //
1763                         if (!ec.HasUnresolvedConstraints)
1764                                 CheckConstraints (ec);
1765
1766                         return this;
1767                 }
1768
1769                 //
1770                 // Checks the constraints of open generic type against type
1771                 // arguments. Has to be called after all members have been defined
1772                 //
1773                 public bool CheckConstraints (IMemberContext ec)
1774                 {
1775                         if (constraints_checked)
1776                                 return true;
1777
1778                         constraints_checked = true;
1779
1780                         var gtype = (InflatedTypeSpec) type;
1781                         var constraints = gtype.Constraints;
1782                         if (constraints == null)
1783                                 return true;
1784
1785                         return new ConstraintChecker(ec).CheckAll (open_type, args.Arguments, constraints, loc);
1786                 }
1787         
1788                 public override bool CheckAccessLevel (IMemberContext mc)
1789                 {
1790                         DeclSpace c = mc.CurrentMemberDefinition as DeclSpace;
1791                         if (c == null)
1792                                 c = mc.CurrentMemberDefinition.Parent;
1793
1794                         return c.CheckAccessLevel (open_type);
1795                 }
1796
1797                 public bool HasDynamicArguments ()
1798                 {
1799                         return HasDynamicArguments (args.Arguments);
1800                 }
1801
1802                 static bool HasDynamicArguments (TypeSpec[] args)
1803                 {
1804                         for (int i = 0; i < args.Length; ++i) {
1805                                 var item = args[i];
1806
1807                                 if (item == InternalType.Dynamic)
1808                                         return true;
1809
1810                                 if (TypeManager.IsGenericType (item))
1811                                         return HasDynamicArguments (TypeManager.GetTypeArguments (item));
1812
1813                                 if (item.IsArray) {
1814                                         while (item.IsArray) {
1815                                                 item = ((ArrayContainer) item).Element;
1816                                         }
1817
1818                                         if (item == InternalType.Dynamic)
1819                                                 return true;
1820                                 }
1821                         }
1822
1823                         return false;
1824                 }
1825
1826                 public override bool Equals (object obj)
1827                 {
1828                         GenericTypeExpr cobj = obj as GenericTypeExpr;
1829                         if (cobj == null)
1830                                 return false;
1831
1832                         if ((type == null) || (cobj.type == null))
1833                                 return false;
1834
1835                         return type == cobj.type;
1836                 }
1837
1838                 public override int GetHashCode ()
1839                 {
1840                         return base.GetHashCode ();
1841                 }
1842         }
1843
1844         //
1845         // Generic type with unbound type arguments, used for typeof (G<,,>)
1846         //
1847         class GenericOpenTypeExpr : TypeExpr
1848         {
1849                 public GenericOpenTypeExpr (TypeSpec type, /*UnboundTypeArguments args,*/ Location loc)
1850                 {
1851                         this.type = type.GetDefinition ();
1852                         this.loc = loc;
1853                 }
1854
1855                 protected override TypeExpr DoResolveAsTypeStep (IMemberContext ec)
1856                 {
1857                         return this;
1858                 }
1859         }
1860
1861         struct ConstraintChecker
1862         {
1863                 IMemberContext mc;
1864                 bool ignore_inferred_dynamic;
1865
1866                 public ConstraintChecker (IMemberContext ctx)
1867                 {
1868                         this.mc = ctx;
1869                         ignore_inferred_dynamic = false;
1870                 }
1871
1872                 #region Properties
1873
1874                 public bool IgnoreInferredDynamic {
1875                         get {
1876                                 return ignore_inferred_dynamic;
1877                         }
1878                         set {
1879                                 ignore_inferred_dynamic = value;
1880                         }
1881                 }
1882
1883                 #endregion
1884
1885                 //
1886                 // Checks all type arguments againts type parameters constraints
1887                 // NOTE: It can run in probing mode when `mc' is null
1888                 //
1889                 public bool CheckAll (MemberSpec context, TypeSpec[] targs, TypeParameterSpec[] tparams, Location loc)
1890                 {
1891                         for (int i = 0; i < tparams.Length; i++) {
1892                                 if (ignore_inferred_dynamic && targs[i] == InternalType.Dynamic)
1893                                         continue;
1894
1895                                 if (!CheckConstraint (context, targs [i], tparams [i], loc))
1896                                         return false;
1897                         }
1898
1899                         return true;
1900                 }
1901
1902                 bool CheckConstraint (MemberSpec context, TypeSpec atype, TypeParameterSpec tparam, Location loc)
1903                 {
1904                         //
1905                         // First, check the `class' and `struct' constraints.
1906                         //
1907                         if (tparam.HasSpecialClass && !TypeManager.IsReferenceType (atype)) {
1908                                 if (mc != null) {
1909                                         mc.Compiler.Report.Error (452, loc,
1910                                                 "The type `{0}' must be a reference type in order to use it as type parameter `{1}' in the generic type or method `{2}'",
1911                                                 TypeManager.CSharpName (atype), tparam.GetSignatureForError (), context.GetSignatureForError ());
1912                                 }
1913
1914                                 return false;
1915                         }
1916
1917                         if (tparam.HasSpecialStruct && (!TypeManager.IsValueType (atype) || TypeManager.IsNullableType (atype))) {
1918                                 if (mc != null) {
1919                                         mc.Compiler.Report.Error (453, loc,
1920                                                 "The type `{0}' must be a non-nullable value type in order to use it as type parameter `{1}' in the generic type or method `{2}'",
1921                                                 TypeManager.CSharpName (atype), tparam.GetSignatureForError (), context.GetSignatureForError ());
1922                                 }
1923
1924                                 return false;
1925                         }
1926
1927                         bool ok = true;
1928
1929                         //
1930                         // The class constraint comes next.
1931                         //
1932                         if (tparam.HasTypeConstraint) {
1933                                 if (!CheckConversion (mc, context, atype, tparam, tparam.BaseType, loc)) {
1934                                         if (mc == null)
1935                                                 return false;
1936
1937                                         ok = false;
1938                                 }
1939                         }
1940
1941                         //
1942                         // Now, check the interfaces and type parameters constraints
1943                         //
1944                         if (tparam.Interfaces != null) {
1945                                 if (TypeManager.IsNullableType (atype)) {
1946                                         if (mc == null)
1947                                                 return false;
1948
1949                                         mc.Compiler.Report.Error (313, loc,
1950                                                 "The type `{0}' cannot be used as type parameter `{1}' in the generic type or method `{2}'. The nullable type `{0}' never satisfies interface constraint",
1951                                                 atype.GetSignatureForError (), tparam.GetSignatureForError (), context.GetSignatureForError ());
1952                                         ok = false;
1953                                 } else {
1954                                         foreach (TypeSpec iface in tparam.Interfaces) {
1955                                                 if (!CheckConversion (mc, context, atype, tparam, iface, loc)) {
1956                                                         if (mc == null)
1957                                                                 return false;
1958
1959                                                         ok = false;
1960                                                 }
1961                                         }
1962                                 }
1963                         }
1964
1965                         //
1966                         // Finally, check the constructor constraint.
1967                         //
1968                         if (!tparam.HasSpecialConstructor)
1969                                 return ok;
1970
1971                         if (!HasDefaultConstructor (atype)) {
1972                                 if (mc != null) {
1973                                         mc.Compiler.Report.SymbolRelatedToPreviousError (atype);
1974                                         mc.Compiler.Report.Error (310, loc,
1975                                                 "The type `{0}' must have a public parameterless constructor in order to use it as parameter `{1}' in the generic type or method `{2}'",
1976                                                 TypeManager.CSharpName (atype), tparam.GetSignatureForError (), context.GetSignatureForError ());
1977                                 }
1978                                 return false;
1979                         }
1980
1981                         return ok;
1982                 }
1983
1984                 static bool HasDynamicTypeArgument (TypeSpec[] targs)
1985                 {
1986                         for (int i = 0; i < targs.Length; ++i) {
1987                                 var targ = targs [i];
1988                                 if (targ == InternalType.Dynamic)
1989                                         return true;
1990
1991                                 if (HasDynamicTypeArgument (targ.TypeArguments))
1992                                         return true;
1993                         }
1994
1995                         return false;
1996                 }
1997
1998                 bool CheckConversion (IMemberContext mc, MemberSpec context, TypeSpec atype, TypeParameterSpec tparam, TypeSpec ttype, Location loc)
1999                 {
2000                         var expr = new EmptyExpression (atype);
2001                         if (Convert.ImplicitStandardConversionExists (expr, ttype))
2002                                 return true;
2003
2004                         //
2005                         // When partial/full type inference finds a dynamic type argument delay
2006                         // the constraint check to runtime, it can succeed for real underlying
2007                         // dynamic type
2008                         //
2009                         if (ignore_inferred_dynamic && HasDynamicTypeArgument (ttype.TypeArguments))
2010                                 return true;
2011
2012                         if (mc != null) {
2013                                 mc.Compiler.Report.SymbolRelatedToPreviousError (tparam);
2014                                 if (TypeManager.IsValueType (atype)) {
2015                                         mc.Compiler.Report.Error (315, loc,
2016                                                 "The type `{0}' cannot be used as type parameter `{1}' in the generic type or method `{2}'. There is no boxing conversion from `{0}' to `{3}'",
2017                                                 atype.GetSignatureForError (), tparam.GetSignatureForError (), context.GetSignatureForError (), ttype.GetSignatureForError ());
2018                                 } else if (atype.IsGenericParameter) {
2019                                         mc.Compiler.Report.Error (314, loc,
2020                                                 "The type `{0}' cannot be used as type parameter `{1}' in the generic type or method `{2}'. There is no boxing or type parameter conversion from `{0}' to `{3}'",
2021                                                 atype.GetSignatureForError (), tparam.GetSignatureForError (), context.GetSignatureForError (), ttype.GetSignatureForError ());
2022                                 } else {
2023                                         mc.Compiler.Report.Error (311, loc,
2024                                                 "The type `{0}' cannot be used as type parameter `{1}' in the generic type or method `{2}'. There is no implicit reference conversion from `{0}' to `{3}'",
2025                                                 atype.GetSignatureForError (), tparam.GetSignatureForError (), context.GetSignatureForError (), ttype.GetSignatureForError ());
2026                                 }
2027                         }
2028
2029                         return false;
2030                 }
2031
2032                 bool HasDefaultConstructor (TypeSpec atype)
2033                 {
2034                         var tp = atype as TypeParameterSpec;
2035                         if (tp != null) {
2036                                 return tp.HasSpecialConstructor || tp.HasSpecialStruct;
2037                         }
2038
2039                         if (atype.IsStruct || atype.IsEnum)
2040                                 return true;
2041
2042                         if (atype.IsAbstract)
2043                                 return false;
2044
2045                         var tdef = atype.GetDefinition ();
2046
2047                         //
2048                         // In some circumstances MemberCache is not yet populated and members
2049                         // cannot be defined yet (recursive type new constraints)
2050                         //
2051                         // class A<T> where T : B<T>, new () {}
2052                         // class B<T> where T : A<T>, new () {}
2053                         //
2054                         var tc = tdef.MemberDefinition as Class;
2055                         if (tc != null) {
2056                                 if (tc.InstanceConstructors == null) {
2057                                         // Default ctor will be generated later
2058                                         return true;
2059                                 }
2060
2061                                 foreach (var c in tc.InstanceConstructors) {
2062                                         if (c.ParameterInfo.IsEmpty) {
2063                                                 if ((c.ModFlags & Modifiers.PUBLIC) != 0)
2064                                                         return true;
2065                                         }
2066                                 }
2067
2068                                 return false;
2069                         }
2070
2071                         var found = MemberCache.FindMember (tdef,
2072                                 MemberFilter.Constructor (ParametersCompiled.EmptyReadOnlyParameters),
2073                                 BindingRestriction.DeclaredOnly | BindingRestriction.InstanceOnly);
2074
2075                         return found != null && (found.Modifiers & Modifiers.PUBLIC) != 0;
2076                 }
2077         }
2078
2079         /// <summary>
2080         ///   A generic method definition.
2081         /// </summary>
2082         public class GenericMethod : DeclSpace
2083         {
2084                 ParametersCompiled parameters;
2085
2086                 public GenericMethod (NamespaceEntry ns, DeclSpace parent, MemberName name,
2087                                       FullNamedExpression return_type, ParametersCompiled parameters)
2088                         : base (ns, parent, name, null)
2089                 {
2090                         this.parameters = parameters;
2091                 }
2092
2093                 public GenericMethod (NamespaceEntry ns, DeclSpace parent, MemberName name, TypeParameter[] tparams,
2094                                           FullNamedExpression return_type, ParametersCompiled parameters)
2095                         : this (ns, parent, name, return_type, parameters)
2096                 {
2097                         this.type_params = tparams;
2098                 }
2099
2100                 public override TypeParameter[] CurrentTypeParameters {
2101                         get {
2102                                 return base.type_params;
2103                         }
2104                 }
2105
2106                 public override TypeBuilder DefineType ()
2107                 {
2108                         throw new Exception ();
2109                 }
2110
2111                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
2112                 {
2113                         throw new NotSupportedException ();
2114                 }
2115
2116                 public override bool Define ()
2117                 {
2118                         throw new NotSupportedException ();
2119                 }
2120
2121                 /// <summary>
2122                 ///   Define and resolve the type parameters.
2123                 ///   We're called from Method.Define().
2124                 /// </summary>
2125                 public bool Define (MethodOrOperator m)
2126                 {
2127                         TypeParameterName[] names = MemberName.TypeArguments.GetDeclarations ();
2128                         string[] snames = new string [names.Length];
2129                         var block = m.Block;
2130                         for (int i = 0; i < names.Length; i++) {
2131                                 string type_argument_name = names[i].Name;
2132
2133                                 if (block == null) {
2134                                         int idx = parameters.GetParameterIndexByName (type_argument_name);
2135                                         if (idx >= 0) {
2136                                                 var b = m.Block;
2137                                                 if (b == null)
2138                                                         b = new ToplevelBlock (Compiler, Location);
2139
2140                                                 b.Error_AlreadyDeclaredTypeParameter (type_argument_name, parameters[i].Location);
2141                                         }
2142                                 } else {
2143                                         INamedBlockVariable variable = null;
2144                                         block.GetLocalName (type_argument_name, m.Block, ref variable);
2145                                         if (variable != null)
2146                                                 variable.Block.Error_AlreadyDeclaredTypeParameter (type_argument_name, variable.Location);
2147                                 }
2148
2149                                 snames[i] = type_argument_name;
2150                         }
2151
2152                         GenericTypeParameterBuilder[] gen_params = m.MethodBuilder.DefineGenericParameters (snames);
2153                         for (int i = 0; i < TypeParameters.Length; i++)
2154                                 TypeParameters [i].Define (gen_params [i], null);
2155
2156                         return true;
2157                 }
2158
2159                 public void EmitAttributes ()
2160                 {
2161                         if (OptAttributes != null)
2162                                 OptAttributes.Emit ();
2163                 }
2164
2165                 public override string GetSignatureForError ()
2166                 {
2167                         return base.GetSignatureForError () + parameters.GetSignatureForError ();
2168                 }
2169
2170                 public override AttributeTargets AttributeTargets {
2171                         get {
2172                                 return AttributeTargets.Method | AttributeTargets.ReturnValue;
2173                         }
2174                 }
2175
2176                 public override string DocCommentHeader {
2177                         get { return "M:"; }
2178                 }
2179
2180                 public new void VerifyClsCompliance ()
2181                 {
2182                         foreach (TypeParameter tp in TypeParameters) {
2183                                 tp.VerifyClsCompliance ();
2184                         }
2185                 }
2186         }
2187
2188         public partial class TypeManager
2189         {
2190                 public static Variance CheckTypeVariance (TypeSpec t, Variance expected, IMemberContext member)
2191                 {
2192                         var tp = t as TypeParameterSpec;
2193                         if (tp != null) {
2194                                 Variance v = tp.Variance;
2195                                 if (expected == Variance.None && v != expected ||
2196                                         expected == Variance.Covariant && v == Variance.Contravariant ||
2197                                         expected == Variance.Contravariant && v == Variance.Covariant) {
2198                                         ((TypeParameter)tp.MemberDefinition).ErrorInvalidVariance (member, expected);
2199                                 }
2200
2201                                 return expected;
2202                         }
2203
2204                         if (t.TypeArguments.Length > 0) {
2205                                 var targs_definition = t.MemberDefinition.TypeParameters;
2206                                 TypeSpec[] targs = GetTypeArguments (t);
2207                                 for (int i = 0; i < targs.Length; ++i) {
2208                                         Variance v = targs_definition[i].Variance;
2209                                         CheckTypeVariance (targs[i], (Variance) ((int)v * (int)expected), member);
2210                                 }
2211
2212                                 return expected;
2213                         }
2214
2215                         if (t.IsArray)
2216                                 return CheckTypeVariance (GetElementType (t), expected, member);
2217
2218                         return Variance.None;
2219                 }
2220         }
2221
2222         //
2223         // Implements C# type inference
2224         //
2225         class TypeInference
2226         {
2227                 //
2228                 // Tracks successful rate of type inference
2229                 //
2230                 int score = int.MaxValue;
2231                 readonly Arguments arguments;
2232                 readonly int arg_count;
2233
2234                 public TypeInference (Arguments arguments)
2235                 {
2236                         this.arguments = arguments;
2237                         if (arguments != null)
2238                                 arg_count = arguments.Count;
2239                 }
2240
2241                 public int InferenceScore {
2242                         get {
2243                                 return score;
2244                         }
2245                 }
2246
2247                 public TypeSpec[] InferMethodArguments (ResolveContext ec, MethodSpec method)
2248                 {
2249                         var method_generic_args = method.GenericDefinition.TypeParameters;
2250                         TypeInferenceContext context = new TypeInferenceContext (method_generic_args);
2251                         if (!context.UnfixedVariableExists)
2252                                 return TypeSpec.EmptyTypes;
2253
2254                         AParametersCollection pd = method.Parameters;
2255                         if (!InferInPhases (ec, context, pd))
2256                                 return null;
2257
2258                         return context.InferredTypeArguments;
2259                 }
2260
2261                 //
2262                 // Implements method type arguments inference
2263                 //
2264                 bool InferInPhases (ResolveContext ec, TypeInferenceContext tic, AParametersCollection methodParameters)
2265                 {
2266                         int params_arguments_start;
2267                         if (methodParameters.HasParams) {
2268                                 params_arguments_start = methodParameters.Count - 1;
2269                         } else {
2270                                 params_arguments_start = arg_count;
2271                         }
2272
2273                         TypeSpec [] ptypes = methodParameters.Types;
2274                         
2275                         //
2276                         // The first inference phase
2277                         //
2278                         TypeSpec method_parameter = null;
2279                         for (int i = 0; i < arg_count; i++) {
2280                                 Argument a = arguments [i];
2281                                 if (a == null)
2282                                         continue;
2283                                 
2284                                 if (i < params_arguments_start) {
2285                                         method_parameter = methodParameters.Types [i];
2286                                 } else if (i == params_arguments_start) {
2287                                         if (arg_count == params_arguments_start + 1 && TypeManager.HasElementType (a.Type))
2288                                                 method_parameter = methodParameters.Types [params_arguments_start];
2289                                         else
2290                                                 method_parameter = TypeManager.GetElementType (methodParameters.Types [params_arguments_start]);
2291
2292                                         ptypes = (TypeSpec[]) ptypes.Clone ();
2293                                         ptypes [i] = method_parameter;
2294                                 }
2295
2296                                 //
2297                                 // When a lambda expression, an anonymous method
2298                                 // is used an explicit argument type inference takes a place
2299                                 //
2300                                 AnonymousMethodExpression am = a.Expr as AnonymousMethodExpression;
2301                                 if (am != null) {
2302                                         if (am.ExplicitTypeInference (ec, tic, method_parameter))
2303                                                 --score; 
2304                                         continue;
2305                                 }
2306
2307                                 if (a.IsByRef) {
2308                                         score -= tic.ExactInference (a.Type, method_parameter);
2309                                         continue;
2310                                 }
2311
2312                                 if (a.Expr.Type == InternalType.Null)
2313                                         continue;
2314
2315                                 if (TypeManager.IsValueType (method_parameter)) {
2316                                         score -= tic.LowerBoundInference (a.Type, method_parameter);
2317                                         continue;
2318                                 }
2319
2320                                 //
2321                                 // Otherwise an output type inference is made
2322                                 //
2323                                 score -= tic.OutputTypeInference (ec, a.Expr, method_parameter);
2324                         }
2325
2326                         //
2327                         // Part of the second phase but because it happens only once
2328                         // we don't need to call it in cycle
2329                         //
2330                         bool fixed_any = false;
2331                         if (!tic.FixIndependentTypeArguments (ec, ptypes, ref fixed_any))
2332                                 return false;
2333
2334                         return DoSecondPhase (ec, tic, ptypes, !fixed_any);
2335                 }
2336
2337                 bool DoSecondPhase (ResolveContext ec, TypeInferenceContext tic, TypeSpec[] methodParameters, bool fixDependent)
2338                 {
2339                         bool fixed_any = false;
2340                         if (fixDependent && !tic.FixDependentTypes (ec, ref fixed_any))
2341                                 return false;
2342
2343                         // If no further unfixed type variables exist, type inference succeeds
2344                         if (!tic.UnfixedVariableExists)
2345                                 return true;
2346
2347                         if (!fixed_any && fixDependent)
2348                                 return false;
2349                         
2350                         // For all arguments where the corresponding argument output types
2351                         // contain unfixed type variables but the input types do not,
2352                         // an output type inference is made
2353                         for (int i = 0; i < arg_count; i++) {
2354                                 
2355                                 // Align params arguments
2356                                 TypeSpec t_i = methodParameters [i >= methodParameters.Length ? methodParameters.Length - 1: i];
2357                                 
2358                                 if (!TypeManager.IsDelegateType (t_i)) {
2359                                         if (t_i.GetDefinition () != TypeManager.expression_type)
2360                                                 continue;
2361
2362                                         t_i = TypeManager.GetTypeArguments (t_i) [0];
2363                                 }
2364
2365                                 var mi = Delegate.GetInvokeMethod (ec.Compiler, t_i);
2366                                 TypeSpec rtype = mi.ReturnType;
2367
2368                                 if (tic.IsReturnTypeNonDependent (ec, mi, rtype))
2369                                         score -= tic.OutputTypeInference (ec, arguments [i].Expr, t_i);
2370                         }
2371
2372
2373                         return DoSecondPhase (ec, tic, methodParameters, true);
2374                 }
2375         }
2376
2377         public class TypeInferenceContext
2378         {
2379                 enum BoundKind
2380                 {
2381                         Exact   = 0,
2382                         Lower   = 1,
2383                         Upper   = 2
2384                 }
2385
2386                 class BoundInfo : IEquatable<BoundInfo>
2387                 {
2388                         public readonly TypeSpec Type;
2389                         public readonly BoundKind Kind;
2390
2391                         public BoundInfo (TypeSpec type, BoundKind kind)
2392                         {
2393                                 this.Type = type;
2394                                 this.Kind = kind;
2395                         }
2396                         
2397                         public override int GetHashCode ()
2398                         {
2399                                 return Type.GetHashCode ();
2400                         }
2401
2402                         #region IEquatable<BoundInfo> Members
2403
2404                         public bool Equals (BoundInfo other)
2405                         {
2406                                 return Type == other.Type && Kind == other.Kind;
2407                         }
2408
2409                         #endregion
2410                 }
2411
2412                 readonly TypeSpec[] unfixed_types;
2413                 readonly TypeSpec[] fixed_types;
2414                 readonly List<BoundInfo>[] bounds;
2415                 bool failed;
2416
2417                 // TODO MemberCache: Could it be TypeParameterSpec[] ??
2418                 public TypeInferenceContext (TypeSpec[] typeArguments)
2419                 {
2420                         if (typeArguments.Length == 0)
2421                                 throw new ArgumentException ("Empty generic arguments");
2422
2423                         fixed_types = new TypeSpec [typeArguments.Length];
2424                         for (int i = 0; i < typeArguments.Length; ++i) {
2425                                 if (typeArguments [i].IsGenericParameter) {
2426                                         if (bounds == null) {
2427                                                 bounds = new List<BoundInfo> [typeArguments.Length];
2428                                                 unfixed_types = new TypeSpec [typeArguments.Length];
2429                                         }
2430                                         unfixed_types [i] = typeArguments [i];
2431                                 } else {
2432                                         fixed_types [i] = typeArguments [i];
2433                                 }
2434                         }
2435                 }
2436
2437                 // 
2438                 // Used together with AddCommonTypeBound fo implement
2439                 // 7.4.2.13 Finding the best common type of a set of expressions
2440                 //
2441                 public TypeInferenceContext ()
2442                 {
2443                         fixed_types = new TypeSpec [1];
2444                         unfixed_types = new TypeSpec [1];
2445                         unfixed_types[0] = InternalType.Arglist; // it can be any internal type
2446                         bounds = new List<BoundInfo> [1];
2447                 }
2448
2449                 public TypeSpec[] InferredTypeArguments {
2450                         get {
2451                                 return fixed_types;
2452                         }
2453                 }
2454
2455                 public void AddCommonTypeBound (TypeSpec type)
2456                 {
2457                         AddToBounds (new BoundInfo (type, BoundKind.Lower), 0);
2458                 }
2459
2460                 void AddToBounds (BoundInfo bound, int index)
2461                 {
2462                         //
2463                         // Some types cannot be used as type arguments
2464                         //
2465                         if (bound.Type == TypeManager.void_type || bound.Type.IsPointer)
2466                                 return;
2467
2468                         var a = bounds [index];
2469                         if (a == null) {
2470                                 a = new List<BoundInfo> (2);
2471                                 a.Add (bound);
2472                                 bounds [index] = a;
2473                                 return;
2474                         }
2475
2476                         if (a.Contains (bound))
2477                                 return;
2478
2479                         a.Add (bound);
2480                 }
2481                 
2482                 bool AllTypesAreFixed (TypeSpec[] types)
2483                 {
2484                         foreach (TypeSpec t in types) {
2485                                 if (t.IsGenericParameter) {
2486                                         if (!IsFixed (t))
2487                                                 return false;
2488                                         continue;
2489                                 }
2490
2491                                 if (TypeManager.IsGenericType (t))
2492                                         return AllTypesAreFixed (TypeManager.GetTypeArguments (t));
2493                         }
2494                         
2495                         return true;
2496                 }               
2497
2498                 //
2499                 // 26.3.3.8 Exact Inference
2500                 //
2501                 public int ExactInference (TypeSpec u, TypeSpec v)
2502                 {
2503                         // If V is an array type
2504                         if (v.IsArray) {
2505                                 if (!u.IsArray)
2506                                         return 0;
2507
2508                                 // TODO MemberCache: GetMetaInfo ()
2509                                 if (u.GetMetaInfo ().GetArrayRank () != v.GetMetaInfo ().GetArrayRank ())
2510                                         return 0;
2511
2512                                 return ExactInference (TypeManager.GetElementType (u), TypeManager.GetElementType (v));
2513                         }
2514
2515                         // If V is constructed type and U is constructed type
2516                         if (TypeManager.IsGenericType (v)) {
2517                                 if (!TypeManager.IsGenericType (u))
2518                                         return 0;
2519
2520                                 TypeSpec [] ga_u = TypeManager.GetTypeArguments (u);
2521                                 TypeSpec [] ga_v = TypeManager.GetTypeArguments (v);
2522                                 if (ga_u.Length != ga_v.Length)
2523                                         return 0;
2524
2525                                 int score = 0;
2526                                 for (int i = 0; i < ga_u.Length; ++i)
2527                                         score += ExactInference (ga_u [i], ga_v [i]);
2528
2529                                 return score > 0 ? 1 : 0;
2530                         }
2531
2532                         // If V is one of the unfixed type arguments
2533                         int pos = IsUnfixed (v);
2534                         if (pos == -1)
2535                                 return 0;
2536
2537                         AddToBounds (new BoundInfo (u, BoundKind.Exact), pos);
2538                         return 1;
2539                 }
2540
2541                 public bool FixAllTypes (ResolveContext ec)
2542                 {
2543                         for (int i = 0; i < unfixed_types.Length; ++i) {
2544                                 if (!FixType (ec, i))
2545                                         return false;
2546                         }
2547                         return true;
2548                 }
2549
2550                 //
2551                 // All unfixed type variables Xi are fixed for which all of the following hold:
2552                 // a, There is at least one type variable Xj that depends on Xi
2553                 // b, Xi has a non-empty set of bounds
2554                 // 
2555                 public bool FixDependentTypes (ResolveContext ec, ref bool fixed_any)
2556                 {
2557                         for (int i = 0; i < unfixed_types.Length; ++i) {
2558                                 if (unfixed_types[i] == null)
2559                                         continue;
2560
2561                                 if (bounds[i] == null)
2562                                         continue;
2563
2564                                 if (!FixType (ec, i))
2565                                         return false;
2566                                 
2567                                 fixed_any = true;
2568                         }
2569
2570                         return true;
2571                 }
2572
2573                 //
2574                 // All unfixed type variables Xi which depend on no Xj are fixed
2575                 //
2576                 public bool FixIndependentTypeArguments (ResolveContext ec, TypeSpec[] methodParameters, ref bool fixed_any)
2577                 {
2578                         var types_to_fix = new List<TypeSpec> (unfixed_types);
2579                         for (int i = 0; i < methodParameters.Length; ++i) {
2580                                 TypeSpec t = methodParameters[i];
2581
2582                                 if (!TypeManager.IsDelegateType (t)) {
2583                                         if (TypeManager.expression_type == null || t.MemberDefinition != TypeManager.expression_type.MemberDefinition)
2584                                                 continue;
2585
2586                                         t =  TypeManager.GetTypeArguments (t) [0];
2587                                 }
2588
2589                                 if (t.IsGenericParameter)
2590                                         continue;
2591
2592                                 var invoke = Delegate.GetInvokeMethod (ec.Compiler, t);
2593                                 TypeSpec rtype = invoke.ReturnType;
2594                                 if (!rtype.IsGenericParameter && !TypeManager.IsGenericType (rtype))
2595                                         continue;
2596
2597                                 // Remove dependent types, they cannot be fixed yet
2598                                 RemoveDependentTypes (types_to_fix, rtype);
2599                         }
2600
2601                         foreach (TypeSpec t in types_to_fix) {
2602                                 if (t == null)
2603                                         continue;
2604
2605                                 int idx = IsUnfixed (t);
2606                                 if (idx >= 0 && !FixType (ec, idx)) {
2607                                         return false;
2608                                 }
2609                         }
2610
2611                         fixed_any = types_to_fix.Count > 0;
2612                         return true;
2613                 }
2614
2615                 //
2616                 // 26.3.3.10 Fixing
2617                 //
2618                 public bool FixType (ResolveContext ec, int i)
2619                 {
2620                         // It's already fixed
2621                         if (unfixed_types[i] == null)
2622                                 throw new InternalErrorException ("Type argument has been already fixed");
2623
2624                         if (failed)
2625                                 return false;
2626
2627                         var candidates = bounds [i];
2628                         if (candidates == null)
2629                                 return false;
2630
2631                         if (candidates.Count == 1) {
2632                                 unfixed_types[i] = null;
2633                                 TypeSpec t = candidates[0].Type;
2634                                 if (t == InternalType.Null)
2635                                         return false;
2636
2637                                 fixed_types [i] = t;
2638                                 return true;
2639                         }
2640
2641                         //
2642                         // Determines a unique type from which there is
2643                         // a standard implicit conversion to all the other
2644                         // candidate types.
2645                         //
2646                         TypeSpec best_candidate = null;
2647                         int cii;
2648                         int candidates_count = candidates.Count;
2649                         for (int ci = 0; ci < candidates_count; ++ci) {
2650                                 BoundInfo bound = candidates [ci];
2651                                 for (cii = 0; cii < candidates_count; ++cii) {
2652                                         if (cii == ci)
2653                                                 continue;
2654
2655                                         BoundInfo cbound = candidates[cii];
2656                                         
2657                                         // Same type parameters with different bounds
2658                                         if (cbound.Type == bound.Type) {
2659                                                 if (bound.Kind != BoundKind.Exact)
2660                                                         bound = cbound;
2661
2662                                                 continue;
2663                                         }
2664
2665                                         if (bound.Kind == BoundKind.Exact || cbound.Kind == BoundKind.Exact) {
2666                                                 if (cbound.Kind == BoundKind.Lower) {
2667                                                         if (!Convert.ImplicitConversionExists (ec, new TypeExpression (cbound.Type, Location.Null), bound.Type)) {
2668                                                                 break;
2669                                                         }
2670
2671                                                         continue;
2672                                                 }
2673                                                 if (cbound.Kind == BoundKind.Upper) {
2674                                                         if (!Convert.ImplicitConversionExists (ec, new TypeExpression (bound.Type, Location.Null), cbound.Type)) {
2675                                                                 break;
2676                                                         }
2677
2678                                                         continue;
2679                                                 }
2680                                                 
2681                                                 if (bound.Kind != BoundKind.Exact) {
2682                                                         if (!Convert.ImplicitConversionExists (ec, new TypeExpression (bound.Type, Location.Null), cbound.Type)) {
2683                                                                 break;
2684                                                         }
2685
2686                                                         bound = cbound;
2687                                                         continue;
2688                                                 }
2689                                                 
2690                                                 break;
2691                                         }
2692
2693                                         if (bound.Kind == BoundKind.Lower) {
2694                                                 if (cbound.Kind == BoundKind.Lower) {
2695                                                         if (!Convert.ImplicitConversionExists (ec, new TypeExpression (cbound.Type, Location.Null), bound.Type)) {
2696                                                                 break;
2697                                                         }
2698                                                 } else {
2699                                                         if (!Convert.ImplicitConversionExists (ec, new TypeExpression (bound.Type, Location.Null), cbound.Type)) {
2700                                                                 break;
2701                                                         }
2702
2703                                                         bound = cbound;
2704                                                 }
2705
2706                                                 continue;
2707                                         }
2708
2709                                         if (bound.Kind == BoundKind.Upper) {
2710                                                 if (!Convert.ImplicitConversionExists (ec, new TypeExpression (bound.Type, Location.Null), cbound.Type)) {
2711                                                         break;
2712                                                 }
2713                                         } else {
2714                                                 throw new NotImplementedException ("variance conversion");
2715                                         }
2716                                 }
2717
2718                                 if (cii != candidates_count)
2719                                         continue;
2720
2721                                 //
2722                                 // We already have the best candidate, break if thet are different
2723                                 //
2724                                 // Dynamic is never ambiguous as we prefer dynamic over other best candidate types
2725                                 //
2726                                 if (best_candidate != null) {
2727
2728                                         if (best_candidate == InternalType.Dynamic)
2729                                                 continue;
2730
2731                                         if (bound.Type != InternalType.Dynamic && best_candidate != bound.Type)
2732                                                 return false;
2733                                 }
2734
2735                                 best_candidate = bound.Type;
2736                         }
2737
2738                         if (best_candidate == null)
2739                                 return false;
2740
2741                         unfixed_types[i] = null;
2742                         fixed_types[i] = best_candidate;
2743                         return true;
2744                 }
2745                 
2746                 //
2747                 // Uses inferred or partially infered types to inflate delegate type argument. Returns
2748                 // null when type parameter was not yet inferres
2749                 //
2750                 public TypeSpec InflateGenericArgument (TypeSpec parameter)
2751                 {
2752                         var tp = parameter as TypeParameterSpec;
2753                         if (tp != null) {
2754                                 //
2755                                 // Type inference work on generic arguments (MVAR) only
2756                                 //
2757                                 if (!tp.IsMethodOwned)
2758                                         return parameter;
2759
2760                                 return fixed_types [tp.DeclaredPosition] ?? parameter;
2761                         }
2762
2763                         var gt = parameter as InflatedTypeSpec;
2764                         if (gt != null) {
2765                                 var inflated_targs = new TypeSpec [gt.TypeArguments.Length];
2766                                 for (int ii = 0; ii < inflated_targs.Length; ++ii) {
2767                                         var inflated = InflateGenericArgument (gt.TypeArguments [ii]);
2768                                         if (inflated == null)
2769                                                 return null;
2770
2771                                         inflated_targs[ii] = inflated;
2772                                 }
2773
2774                                 return gt.GetDefinition ().MakeGenericType (inflated_targs);
2775                         }
2776
2777                         return parameter;
2778                 }
2779                 
2780                 //
2781                 // Tests whether all delegate input arguments are fixed and generic output type
2782                 // requires output type inference 
2783                 //
2784                 public bool IsReturnTypeNonDependent (ResolveContext ec, MethodSpec invoke, TypeSpec returnType)
2785                 {
2786                         if (returnType.IsGenericParameter) {
2787                                 if (IsFixed (returnType))
2788                                     return false;
2789                         } else if (TypeManager.IsGenericType (returnType)) {
2790                                 if (TypeManager.IsDelegateType (returnType)) {
2791                                         invoke = Delegate.GetInvokeMethod (ec.Compiler, returnType);
2792                                         return IsReturnTypeNonDependent (ec, invoke, invoke.ReturnType);
2793                                 }
2794                                         
2795                                 TypeSpec[] g_args = TypeManager.GetTypeArguments (returnType);
2796                                 
2797                                 // At least one unfixed return type has to exist 
2798                                 if (AllTypesAreFixed (g_args))
2799                                         return false;
2800                         } else {
2801                                 return false;
2802                         }
2803
2804                         // All generic input arguments have to be fixed
2805                         AParametersCollection d_parameters = invoke.Parameters;
2806                         return AllTypesAreFixed (d_parameters.Types);
2807                 }
2808                 
2809                 bool IsFixed (TypeSpec type)
2810                 {
2811                         return IsUnfixed (type) == -1;
2812                 }               
2813
2814                 int IsUnfixed (TypeSpec type)
2815                 {
2816                         if (!type.IsGenericParameter)
2817                                 return -1;
2818
2819                         //return unfixed_types[type.GenericParameterPosition] != null;
2820                         for (int i = 0; i < unfixed_types.Length; ++i) {
2821                                 if (unfixed_types [i] == type)
2822                                         return i;
2823                         }
2824
2825                         return -1;
2826                 }
2827
2828                 //
2829                 // 26.3.3.9 Lower-bound Inference
2830                 //
2831                 public int LowerBoundInference (TypeSpec u, TypeSpec v)
2832                 {
2833                         return LowerBoundInference (u, v, false);
2834                 }
2835
2836                 //
2837                 // Lower-bound (false) or Upper-bound (true) inference based on inversed argument
2838                 //
2839                 int LowerBoundInference (TypeSpec u, TypeSpec v, bool inversed)
2840                 {
2841                         // If V is one of the unfixed type arguments
2842                         int pos = IsUnfixed (v);
2843                         if (pos != -1) {
2844                                 AddToBounds (new BoundInfo (u, inversed ? BoundKind.Upper : BoundKind.Lower), pos);
2845                                 return 1;
2846                         }                       
2847
2848                         // If U is an array type
2849                         var u_ac = u as ArrayContainer;
2850                         if (u_ac != null) {
2851                                 var v_ac = v as ArrayContainer;
2852                                 if (v_ac != null) {
2853                                         if (u_ac.Rank != v_ac.Rank)
2854                                                 return 0;
2855
2856                                         if (TypeManager.IsValueType (u_ac.Element))
2857                                                 return ExactInference (u_ac.Element, v_ac.Element);
2858
2859                                         return LowerBoundInference (u_ac.Element, v_ac.Element, inversed);
2860                                 }
2861
2862                                 if (u_ac.Rank != 1)
2863                                         return 0;
2864
2865                                 if (TypeManager.IsGenericType (v)) {
2866                                         TypeSpec g_v = v.GetDefinition ();
2867                                         if (g_v != TypeManager.generic_ilist_type &&
2868                                                 g_v != TypeManager.generic_icollection_type &&
2869                                                 g_v != TypeManager.generic_ienumerable_type)
2870                                                 return 0;
2871
2872                                         var v_i = TypeManager.GetTypeArguments (v) [0];
2873                                         if (TypeManager.IsValueType (u_ac.Element))
2874                                                 return ExactInference (u_ac.Element, v_i);
2875
2876                                         return LowerBoundInference (u_ac.Element, v_i);
2877                                 }
2878                         } else if (TypeManager.IsGenericType (v)) {
2879                                 //
2880                                 // if V is a constructed type C<V1..Vk> and there is a unique type C<U1..Uk>
2881                                 // such that U is identical to, inherits from (directly or indirectly),
2882                                 // or implements (directly or indirectly) C<U1..Uk>
2883                                 //
2884                                 var u_candidates = new List<TypeSpec> ();
2885                                 var open_v = v.MemberDefinition;
2886
2887                                 for (TypeSpec t = u; t != null; t = t.BaseType) {
2888                                         if (open_v == t.MemberDefinition)
2889                                                 u_candidates.Add (t);
2890
2891                                         if (t.Interfaces != null) {
2892                                                 foreach (var iface in t.Interfaces) {
2893                                                         if (open_v == iface.MemberDefinition)
2894                                                                 u_candidates.Add (iface);
2895                                                 }
2896                                         }
2897                                 }
2898
2899                                 TypeSpec [] unique_candidate_targs = null;
2900                                 TypeSpec[] ga_v = TypeManager.GetTypeArguments (v);
2901                                 foreach (TypeSpec u_candidate in u_candidates) {
2902                                         //
2903                                         // The unique set of types U1..Uk means that if we have an interface I<T>,
2904                                         // class U : I<int>, I<long> then no type inference is made when inferring
2905                                         // type I<T> by applying type U because T could be int or long
2906                                         //
2907                                         if (unique_candidate_targs != null) {
2908                                                 TypeSpec[] second_unique_candidate_targs = TypeManager.GetTypeArguments (u_candidate);
2909                                                 if (TypeSpecComparer.Equals (unique_candidate_targs, second_unique_candidate_targs)) {
2910                                                         unique_candidate_targs = second_unique_candidate_targs;
2911                                                         continue;
2912                                                 }
2913
2914                                                 //
2915                                                 // This should always cause type inference failure
2916                                                 //
2917                                                 failed = true;
2918                                                 return 1;
2919                                         }
2920
2921                                         unique_candidate_targs = TypeManager.GetTypeArguments (u_candidate);
2922                                 }
2923
2924                                 if (unique_candidate_targs != null) {
2925                                         var ga_open_v = open_v.TypeParameters;
2926                                         int score = 0;
2927                                         for (int i = 0; i < unique_candidate_targs.Length; ++i) {
2928                                                 Variance variance = ga_open_v [i].Variance;
2929
2930                                                 TypeSpec u_i = unique_candidate_targs [i];
2931                                                 if (variance == Variance.None || TypeManager.IsValueType (u_i)) {
2932                                                         if (ExactInference (u_i, ga_v [i]) == 0)
2933                                                                 ++score;
2934                                                 } else {
2935                                                         bool upper_bound = (variance == Variance.Contravariant && !inversed) ||
2936                                                                 (variance == Variance.Covariant && inversed);
2937
2938                                                         if (LowerBoundInference (u_i, ga_v [i], upper_bound) == 0)
2939                                                                 ++score;
2940                                                 }
2941                                         }
2942                                         return score;
2943                                 }
2944                         }
2945
2946                         return 0;
2947                 }
2948
2949                 //
2950                 // 26.3.3.6 Output Type Inference
2951                 //
2952                 public int OutputTypeInference (ResolveContext ec, Expression e, TypeSpec t)
2953                 {
2954                         // If e is a lambda or anonymous method with inferred return type
2955                         AnonymousMethodExpression ame = e as AnonymousMethodExpression;
2956                         if (ame != null) {
2957                                 TypeSpec rt = ame.InferReturnType (ec, this, t);
2958                                 var invoke = Delegate.GetInvokeMethod (ec.Compiler, t);
2959
2960                                 if (rt == null) {
2961                                         AParametersCollection pd = invoke.Parameters;
2962                                         return ame.Parameters.Count == pd.Count ? 1 : 0;
2963                                 }
2964
2965                                 TypeSpec rtype = invoke.ReturnType;
2966                                 return LowerBoundInference (rt, rtype) + 1;
2967                         }
2968
2969                         //
2970                         // if E is a method group and T is a delegate type or expression tree type
2971                         // return type Tb with parameter types T1..Tk and return type Tb, and overload
2972                         // resolution of E with the types T1..Tk yields a single method with return type U,
2973                         // then a lower-bound inference is made from U for Tb.
2974                         //
2975                         if (e is MethodGroupExpr) {
2976                                 if (!TypeManager.IsDelegateType (t)) {
2977                                         if (TypeManager.expression_type == null || t.MemberDefinition != TypeManager.expression_type.MemberDefinition)
2978                                                 return 0;
2979
2980                                         t = TypeManager.GetTypeArguments (t)[0];
2981                                 }
2982
2983                                 var invoke = Delegate.GetInvokeMethod (ec.Compiler, t);
2984                                 TypeSpec rtype = invoke.ReturnType;
2985
2986                                 if (!rtype.IsGenericParameter && !TypeManager.IsGenericType (rtype))
2987                                         return 0;
2988
2989                                 // LAMESPEC: Standard does not specify that all methodgroup arguments
2990                                 // has to be fixed but it does not specify how to do recursive type inference
2991                                 // either. We choose the simple option and infer return type only
2992                                 // if all delegate generic arguments are fixed.
2993                                 TypeSpec[] param_types = new TypeSpec [invoke.Parameters.Count];
2994                                 for (int i = 0; i < param_types.Length; ++i) {
2995                                         var inflated = InflateGenericArgument (invoke.Parameters.Types[i]);
2996                                         if (inflated == null)
2997                                                 return 0;
2998
2999                                         param_types[i] = inflated;
3000                                 }
3001
3002                                 MethodGroupExpr mg = (MethodGroupExpr) e;
3003                                 Arguments args = DelegateCreation.CreateDelegateMethodArguments (invoke.Parameters, param_types, e.Location);
3004                                 mg = mg.OverloadResolve (ec, ref args, null, OverloadResolver.Restrictions.CovariantDelegate | OverloadResolver.Restrictions.ProbingOnly);
3005                                 if (mg == null)
3006                                         return 0;
3007
3008                                 return LowerBoundInference (mg.BestCandidate.ReturnType, rtype) + 1;
3009                         }
3010
3011                         //
3012                         // if e is an expression with type U, then
3013                         // a lower-bound inference is made from U for T
3014                         //
3015                         return LowerBoundInference (e.Type, t) * 2;
3016                 }
3017
3018                 void RemoveDependentTypes (List<TypeSpec> types, TypeSpec returnType)
3019                 {
3020                         int idx = IsUnfixed (returnType);
3021                         if (idx >= 0) {
3022                                 types [idx] = null;
3023                                 return;
3024                         }
3025
3026                         if (TypeManager.IsGenericType (returnType)) {
3027                                 foreach (TypeSpec t in TypeManager.GetTypeArguments (returnType)) {
3028                                         RemoveDependentTypes (types, t);
3029                                 }
3030                         }
3031                 }
3032
3033                 public bool UnfixedVariableExists {
3034                         get {
3035                                 if (unfixed_types == null)
3036                                         return false;
3037
3038                                 foreach (TypeSpec ut in unfixed_types)
3039                                         if (ut != null)
3040                                                 return true;
3041                                 return false;
3042                         }
3043                 }
3044         }
3045 }