[mcs] Report more unsafe code errors in iterators. Fixes #56616
[mono.git] / mcs / mcs / ecore.cs
1 //
2 // ecore.cs: Core of the Expression representation for the intermediate tree.
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Marek Safar (marek.safar@gmail.com)
7 //
8 // Copyright 2001, 2002, 2003 Ximian, Inc.
9 // Copyright 2003-2008 Novell, Inc.
10 // Copyright 2011-2012 Xamarin Inc.
11 //
12 //
13
14 using System;
15 using System.Collections.Generic;
16 using System.Text;
17 using SLE = System.Linq.Expressions;
18 using System.Linq;
19
20 #if STATIC
21 using IKVM.Reflection;
22 using IKVM.Reflection.Emit;
23 #else
24 using System.Reflection;
25 using System.Reflection.Emit;
26 #endif
27
28 namespace Mono.CSharp {
29
30         /// <remarks>
31         ///   The ExprClass class contains the is used to pass the 
32         ///   classification of an expression (value, variable, namespace,
33         ///   type, method group, property access, event access, indexer access,
34         ///   nothing).
35         /// </remarks>
36         public enum ExprClass : byte {
37                 Unresolved      = 0,
38                 
39                 Value,
40                 Variable,
41                 Namespace,
42                 Type,
43                 TypeParameter,
44                 MethodGroup,
45                 PropertyAccess,
46                 EventAccess,
47                 IndexerAccess,
48                 Nothing, 
49         }
50
51         /// <remarks>
52         ///   This is used to tell Resolve in which types of expressions we're
53         ///   interested.
54         /// </remarks>
55         [Flags]
56         public enum ResolveFlags {
57                 // Returns Value, Variable, PropertyAccess, EventAccess or IndexerAccess.
58                 VariableOrValue         = 1,
59
60                 // Returns a type expression.
61                 Type                    = 1 << 1,
62
63                 // Returns a method group.
64                 MethodGroup             = 1 << 2,
65
66                 TypeParameter   = 1 << 3,
67
68                 // Mask of all the expression class flags.
69                 MaskExprClass = VariableOrValue | Type | MethodGroup | TypeParameter,
70         }
71
72         //
73         // This is just as a hint to AddressOf of what will be done with the
74         // address.
75         [Flags]
76         public enum AddressOp {
77                 Store = 1,
78                 Load  = 2,
79                 LoadStore = 3
80         };
81         
82         /// <summary>
83         ///   This interface is implemented by variables
84         /// </summary>
85         public interface IMemoryLocation {
86                 /// <summary>
87                 ///   The AddressOf method should generate code that loads
88                 ///   the address of the object and leaves it on the stack.
89                 ///
90                 ///   The `mode' argument is used to notify the expression
91                 ///   of whether this will be used to read from the address or
92                 ///   write to the address.
93                 ///
94                 ///   This is just a hint that can be used to provide good error
95                 ///   reporting, and should have no other side effects. 
96                 /// </summary>
97                 void AddressOf (EmitContext ec, AddressOp mode);
98         }
99
100         //
101         // An expressions resolved as a direct variable reference
102         //
103         public interface IVariableReference : IFixedExpression
104         {
105                 bool IsHoisted { get; }
106                 string Name { get; }
107                 VariableInfo VariableInfo { get; }
108
109                 void SetHasAddressTaken ();
110         }
111
112         //
113         // Implemented by an expression which could be or is always
114         // fixed
115         //
116         public interface IFixedExpression
117         {
118                 bool IsFixed { get; }
119         }
120
121         public interface IExpressionCleanup
122         {
123                 void EmitCleanup (EmitContext ec);
124         }
125
126         /// <remarks>
127         ///   Base class for expressions
128         /// </remarks>
129         public abstract class Expression
130         {
131                 public ExprClass eclass;
132                 protected TypeSpec type;
133                 protected Location loc;
134
135                 public TypeSpec Type {
136                         get { return type; }
137                         set { type = value; }
138                 }
139
140                 public virtual bool IsSideEffectFree {
141                         get {
142                                 return false;
143                         }
144                 }
145
146                 public Location Location {
147                         get { return loc; }
148                 }
149
150                 public virtual bool IsNull {
151                         get {
152                                 return false;
153                         }
154                 }
155
156                 //
157                 // Used to workaround parser limitation where we cannot get
158                 // start of statement expression location
159                 //
160                 public virtual Location StartLocation {
161                         get {
162                                 return loc;
163                         }
164                 }
165
166                 public virtual MethodGroupExpr CanReduceLambda (AnonymousMethodBody body)
167                 {
168                         //
169                         // Return method-group expression when the expression can be used as
170                         // lambda replacement. A good example is array sorting where instead of
171                         // code like
172                         //
173                         //  Array.Sort (s, (a, b) => String.Compare (a, b));
174                         //
175                         // we can use method group directly
176                         //
177                         //  Array.Sort (s, String.Compare);
178                         //
179                         // Correct overload will be used because we do the reduction after
180                         // best candidate was found.
181                         //
182                         return null;
183                 }
184
185                 //
186                 // Returns true when the expression during Emit phase breaks stack
187                 // by using await expression
188                 //
189                 public virtual bool ContainsEmitWithAwait ()
190                 {
191                         return false;
192                 }
193
194                 /// <summary>
195                 ///   Performs semantic analysis on the Expression
196                 /// </summary>
197                 ///
198                 /// <remarks>
199                 ///   The Resolve method is invoked to perform the semantic analysis
200                 ///   on the node.
201                 ///
202                 ///   The return value is an expression (it can be the
203                 ///   same expression in some cases) or a new
204                 ///   expression that better represents this node.
205                 ///   
206                 ///   For example, optimizations of Unary (LiteralInt)
207                 ///   would return a new LiteralInt with a negated
208                 ///   value.
209                 ///   
210                 ///   If there is an error during semantic analysis,
211                 ///   then an error should be reported (using Report)
212                 ///   and a null value should be returned.
213                 ///   
214                 ///   There are two side effects expected from calling
215                 ///   Resolve(): the the field variable "eclass" should
216                 ///   be set to any value of the enumeration
217                 ///   `ExprClass' and the type variable should be set
218                 ///   to a valid type (this is the type of the
219                 ///   expression).
220                 /// </remarks>
221                 protected abstract Expression DoResolve (ResolveContext rc);
222
223                 public virtual Expression DoResolveLValue (ResolveContext rc, Expression right_side)
224                 {
225                         return null;
226                 }
227
228                 //
229                 // This is used if the expression should be resolved as a type or namespace name.
230                 // the default implementation fails.   
231                 //
232                 public virtual TypeSpec ResolveAsType (IMemberContext mc, bool allowUnboundTypeArguments = false)
233                 {
234                         var rc = mc as ResolveContext ?? new ResolveContext (mc);
235                         Expression e = Resolve (rc);
236                         if (e != null)
237                                 e.Error_UnexpectedKind (rc, ResolveFlags.Type, loc);
238
239                         return null;
240                 }
241
242                 public static void ErrorIsInaccesible (IMemberContext rc, string member, Location loc)
243                 {
244                         rc.Module.Compiler.Report.Error (122, loc, "`{0}' is inaccessible due to its protection level", member);
245                 }
246
247                 public void Error_ExpressionMustBeConstant (ResolveContext rc, Location loc, string e_name)
248                 {
249                         rc.Report.Error (133, loc, "The expression being assigned to `{0}' must be constant", e_name);
250                 }
251
252                 public void Error_ConstantCanBeInitializedWithNullOnly (ResolveContext rc, TypeSpec type, Location loc, string name)
253                 {
254                         rc.Report.Error (134, loc, "A constant `{0}' of reference type `{1}' can only be initialized with null",
255                                 name, type.GetSignatureForError ());
256                 }
257
258                 protected virtual void Error_InvalidExpressionStatement (Report report, Location loc)
259                 {
260                         report.Error (201, loc, "Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement");
261                 }
262
263                 public void Error_InvalidExpressionStatement (BlockContext bc)
264                 {
265                         Error_InvalidExpressionStatement (bc.Report, loc);
266                 }
267
268                 public void Error_InvalidExpressionStatement (Report report)
269                 {
270                         Error_InvalidExpressionStatement (report, loc);
271                 }
272
273                 public static void Error_VoidInvalidInTheContext (Location loc, Report Report)
274                 {
275                         Report.Error (1547, loc, "Keyword `void' cannot be used in this context");
276                 }
277
278                 public virtual void Error_ValueCannotBeConverted (ResolveContext ec, TypeSpec target, bool expl)
279                 {
280                         Error_ValueCannotBeConvertedCore (ec, loc, target, expl);
281                 }
282
283                 protected void Error_ValueCannotBeConvertedCore (ResolveContext ec, Location loc, TypeSpec target, bool expl)
284                 {
285                         // The error was already reported as CS1660
286                         if (type == InternalType.AnonymousMethod)
287                                 return;
288
289                         if (type == InternalType.ErrorType || target == InternalType.ErrorType)
290                                 return;
291
292                         if (type.MemberDefinition.DeclaringAssembly.IsMissing ||
293                                 target.MemberDefinition.DeclaringAssembly.IsMissing)
294                                 return;
295
296                         string from_type = type.GetSignatureForError ();
297                         string to_type = target.GetSignatureForError ();
298                         if (from_type == to_type) {
299                                 from_type = type.GetSignatureForErrorIncludingAssemblyName ();
300                                 to_type = target.GetSignatureForErrorIncludingAssemblyName ();
301                         }
302
303                         if (expl) {
304                                 ec.Report.Error (30, loc, "Cannot convert type `{0}' to `{1}'",
305                                         from_type, to_type);
306                                 return;
307                         }
308
309                         ec.Report.DisableReporting ();
310                         bool expl_exists = Convert.ExplicitConversion (ec, this, target, Location.Null) != null;
311                         ec.Report.EnableReporting ();
312
313                         if (expl_exists) {
314                                 ec.Report.Error (266, loc,
315                                         "Cannot implicitly convert type `{0}' to `{1}'. An explicit conversion exists (are you missing a cast?)",
316                                         from_type, to_type);
317                         } else {
318                                 ec.Report.Error (29, loc, "Cannot implicitly convert type `{0}' to `{1}'",
319                                         from_type, to_type);
320                         }
321                 }
322
323                 public void Error_TypeArgumentsCannotBeUsed (IMemberContext context, MemberSpec member, Location loc)
324                 {
325                         // Better message for possible generic expressions
326                         if (member != null && (member.Kind & MemberKind.GenericMask) != 0) {
327                                 var report = context.Module.Compiler.Report;
328                                 report.SymbolRelatedToPreviousError (member);
329                                 if (member is TypeSpec)
330                                         member = ((TypeSpec) member).GetDefinition ();
331                                 else
332                                         member = ((MethodSpec) member).GetGenericMethodDefinition ();
333
334                                 string name = member.Kind == MemberKind.Method ? "method" : "type";
335                                 if (member.IsGeneric) {
336                                         report.Error (305, loc, "Using the generic {0} `{1}' requires `{2}' type argument(s)",
337                                                 name, member.GetSignatureForError (), member.Arity.ToString ());
338                                 } else {
339                                         report.Error (308, loc, "The non-generic {0} `{1}' cannot be used with the type arguments",
340                                                 name, member.GetSignatureForError ());
341                                 }
342                         } else {
343                                 Error_TypeArgumentsCannotBeUsed (context, ExprClassName, GetSignatureForError (), loc);
344                         }
345                 }
346
347                 public static void Error_TypeArgumentsCannotBeUsed (IMemberContext context, string exprType, string name, Location loc)
348                 {
349                         context.Module.Compiler.Report.Error (307, loc, "The {0} `{1}' cannot be used with type arguments",
350                                 exprType, name);
351                 }
352
353                 public virtual void Error_TypeDoesNotContainDefinition (ResolveContext ec, TypeSpec type, string name)
354                 {
355                         Error_TypeDoesNotContainDefinition (ec, loc, type, name);
356                 }
357
358                 public static void Error_TypeDoesNotContainDefinition (ResolveContext ec, Location loc, TypeSpec type, string name)
359                 {
360                         ec.Report.SymbolRelatedToPreviousError (type);
361                         ec.Report.Error (117, loc, "`{0}' does not contain a definition for `{1}'",
362                                 type.GetSignatureForError (), name);
363                 }
364
365                 public virtual void Error_ValueAssignment (ResolveContext rc, Expression rhs)
366                 {
367                         if (rhs == EmptyExpression.LValueMemberAccess || rhs == EmptyExpression.LValueMemberOutAccess) {
368                                 // Already reported as CS1612
369                         } else if (rhs == EmptyExpression.OutAccess) {
370                                 rc.Report.Error (1510, loc, "A ref or out argument must be an assignable variable");
371                         } else {
372                                 rc.Report.Error (131, loc, "The left-hand side of an assignment must be a variable, a property or an indexer");
373                         }
374                 }
375
376                 protected void Error_VoidPointerOperation (ResolveContext rc)
377                 {
378                         rc.Report.Error (242, loc, "The operation in question is undefined on void pointers");
379                 }
380
381                 public static void Warning_UnreachableExpression (ResolveContext rc, Location loc)
382                 {
383                         rc.Report.Warning (429, 4, loc, "Unreachable expression code detected");
384                 }
385
386                 public ResolveFlags ExprClassToResolveFlags {
387                         get {
388                                 switch (eclass) {
389                                 case ExprClass.Type:
390                                 case ExprClass.Namespace:
391                                         return ResolveFlags.Type;
392                                         
393                                 case ExprClass.MethodGroup:
394                                         return ResolveFlags.MethodGroup;
395                                         
396                                 case ExprClass.TypeParameter:
397                                         return ResolveFlags.TypeParameter;
398                                         
399                                 case ExprClass.Value:
400                                 case ExprClass.Variable:
401                                 case ExprClass.PropertyAccess:
402                                 case ExprClass.EventAccess:
403                                 case ExprClass.IndexerAccess:
404                                         return ResolveFlags.VariableOrValue;
405                                         
406                                 default:
407                                         throw new InternalErrorException (loc.ToString () + " " +  GetType () + " ExprClass is Invalid after resolve");
408                                 }
409                         }
410                 }
411
412                 //
413                 // Implements identical simple name and type-name resolution
414                 //
415                 public Expression ProbeIdenticalTypeName (ResolveContext rc, Expression left, SimpleName name)
416                 {
417                         var t = left.Type;
418                         if (t.Kind == MemberKind.InternalCompilerType || t is ElementTypeSpec || t.Arity > 0)
419                                 return left;
420
421                         // In a member access of the form E.I, if E is a single identifier, and if the meaning of E as a simple-name is
422                         // a constant, field, property, local variable, or parameter with the same type as the meaning of E as a type-name
423
424                         if (left is MemberExpr || left is VariableReference) {
425                                 var identical_type = rc.LookupNamespaceOrType (name.Name, 0, LookupMode.Probing, loc) as TypeExpr;
426                                 if (identical_type != null && identical_type.Type == left.Type)
427                                         return identical_type;
428                         }
429
430                         return left;
431                 }
432
433                 public virtual string GetSignatureForError ()
434                 {
435                         return type.GetDefinition ().GetSignatureForError ();
436                 }
437
438                 public static bool IsNeverNull (Expression expr)
439                 {
440                         if (expr is This || expr is New || expr is ArrayCreation || expr is DelegateCreation || expr is ConditionalMemberAccess)
441                                 return true;
442
443                         var c = expr as Constant;
444                         if (c != null)
445                                 return !c.IsNull;
446
447                         var tc = expr as TypeCast;
448                         if (tc != null)
449                                 return IsNeverNull (tc.Child);
450
451                         return false;
452                 }
453
454                 protected static bool IsNullPropagatingValid (TypeSpec type)
455                 {
456                         switch (type.Kind) {
457                         case MemberKind.Struct:
458                                 return type.IsNullableType;
459                         case MemberKind.Enum:
460                         case MemberKind.Void:
461                         case MemberKind.PointerType:
462                                 return false;
463                         case MemberKind.InternalCompilerType:
464                                 return type.BuiltinType == BuiltinTypeSpec.Type.Dynamic;
465                         case MemberKind.TypeParameter:
466                                 return !((TypeParameterSpec) type).IsValueType;
467                         default:
468                                 return true;
469                         }
470                 }
471
472                 public virtual bool HasConditionalAccess ()
473                 {
474                         return false;
475                 }
476
477                 protected TypeSpec LiftMemberType (ResolveContext rc, TypeSpec type)
478                 {
479                         var tps = type as TypeParameterSpec;
480                         if (tps != null && !(tps.IsReferenceType || tps.IsValueType)) {
481                                 Error_OperatorCannotBeApplied (rc, loc, "?", type);
482                         }
483
484                         return TypeSpec.IsValueType (type) && !type.IsNullableType ?
485                                 Nullable.NullableInfo.MakeType (rc.Module, type) :
486                                 type;
487                 }
488                
489                 /// <summary>
490                 ///   Resolves an expression and performs semantic analysis on it.
491                 /// </summary>
492                 ///
493                 /// <remarks>
494                 ///   Currently Resolve wraps DoResolve to perform sanity
495                 ///   checking and assertion checking on what we expect from Resolve.
496                 /// </remarks>
497                 public Expression Resolve (ResolveContext ec, ResolveFlags flags)
498                 {
499                         if (eclass != ExprClass.Unresolved) {
500                                 if ((flags & ExprClassToResolveFlags) == 0) {
501                                         Error_UnexpectedKind (ec, flags, loc);
502                                         return null;
503                                 }
504
505                                 return this;
506                         }
507                         
508                         Expression e;
509                         try {
510                                 e = DoResolve (ec);
511
512                                 if (e == null)
513                                         return null;
514
515                                 if ((flags & e.ExprClassToResolveFlags) == 0) {
516                                         e.Error_UnexpectedKind (ec, flags, loc);
517                                         return null;
518                                 }
519
520                                 if (e.type == null)
521                                         throw new InternalErrorException ("Expression `{0}' didn't set its type in DoResolve", e.GetType ());
522
523                                 return e;
524                         } catch (Exception ex) {
525                                 if (loc.IsNull || ec.Module.Compiler.Settings.BreakOnInternalError || ex is CompletionResult || ec.Report.IsDisabled || ex is FatalException ||
526                                         ec.Report.Printer is NullReportPrinter)
527                                         throw;
528
529                                 ec.Report.Error (584, loc, "Internal compiler error: {0}", ex.Message);
530                                 return ErrorExpression.Instance;        // TODO: Add location
531                         }
532                 }
533
534                 /// <summary>
535                 ///   Resolves an expression and performs semantic analysis on it.
536                 /// </summary>
537                 public Expression Resolve (ResolveContext rc)
538                 {
539                         return Resolve (rc, ResolveFlags.VariableOrValue | ResolveFlags.MethodGroup);
540                 }
541
542                 /// <summary>
543                 ///   Resolves an expression for LValue assignment
544                 /// </summary>
545                 ///
546                 /// <remarks>
547                 ///   Currently ResolveLValue wraps DoResolveLValue to perform sanity
548                 ///   checking and assertion checking on what we expect from Resolve
549                 /// </remarks>
550                 public Expression ResolveLValue (ResolveContext ec, Expression right_side)
551                 {
552                         int errors = ec.Report.Errors;
553                         bool out_access = right_side == EmptyExpression.OutAccess;
554
555                         Expression e = DoResolveLValue (ec, right_side);
556
557                         if (e != null && out_access && !(e is IMemoryLocation)) {
558                                 // FIXME: There's no problem with correctness, the 'Expr = null' handles that.
559                                 //        Enabling this 'throw' will "only" result in deleting useless code elsewhere,
560
561                                 //throw new InternalErrorException ("ResolveLValue didn't return an IMemoryLocation: " +
562                                 //                                e.GetType () + " " + e.GetSignatureForError ());
563                                 e = null;
564                         }
565
566                         if (e == null) {
567                                 if (errors == ec.Report.Errors) {
568                                         Error_ValueAssignment (ec, right_side);
569                                 }
570                                 return null;
571                         }
572
573                         if (e.eclass == ExprClass.Unresolved)
574                                 throw new Exception ("Expression " + e + " ExprClass is Invalid after resolve");
575
576                         if ((e.type == null) && !(e is GenericTypeExpr))
577                                 throw new Exception ("Expression " + e + " did not set its type after Resolve");
578
579                         return e;
580                 }
581
582                 public Constant ResolveLabelConstant (ResolveContext rc)
583                 {
584                         var expr = Resolve (rc);
585                         if (expr == null)
586                                 return null;
587
588                         Constant c = expr as Constant;
589                         if (c == null) {
590                                 if (expr.type != InternalType.ErrorType)
591                                         rc.Report.Error (150, expr.StartLocation, "A constant value is expected");
592
593                                 return null;
594                         }
595
596                         return c;
597                 }
598
599                 public virtual void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType, TypeSpec parameterType)
600                 {
601                         if (Attribute.IsValidArgumentType (parameterType)) {
602                                 rc.Module.Compiler.Report.Error (182, loc,
603                                         "An attribute argument must be a constant expression, typeof expression or array creation expression");
604                         } else {
605                                 rc.Module.Compiler.Report.Error (181, loc,
606                                         "Attribute constructor parameter has type `{0}', which is not a valid attribute parameter type",
607                                         targetType.GetSignatureForError ());
608                         }
609                 }
610
611                 /// <summary>
612                 ///   Emits the code for the expression
613                 /// </summary>
614                 ///
615                 /// <remarks>
616                 ///   The Emit method is invoked to generate the code
617                 ///   for the expression.  
618                 /// </remarks>
619                 public abstract void Emit (EmitContext ec);
620
621
622                 // Emit code to branch to @target if this expression is equivalent to @on_true.
623                 // The default implementation is to emit the value, and then emit a brtrue or brfalse.
624                 // Subclasses can provide more efficient implementations, but those MUST be equivalent,
625                 // including the use of conditional branches.  Note also that a branch MUST be emitted
626                 public virtual void EmitBranchable (EmitContext ec, Label target, bool on_true)
627                 {
628                         Emit (ec);
629                         ec.Emit (on_true ? OpCodes.Brtrue : OpCodes.Brfalse, target);
630                 }
631
632                 // Emit this expression for its side effects, not for its value.
633                 // The default implementation is to emit the value, and then throw it away.
634                 // Subclasses can provide more efficient implementations, but those MUST be equivalent
635                 public virtual void EmitSideEffect (EmitContext ec)
636                 {
637                         Emit (ec);
638                         ec.Emit (OpCodes.Pop);
639                 }
640
641                 //
642                 // Emits the expression into temporary field variable. The method
643                 // should be used for await expressions only
644                 //
645                 public virtual Expression EmitToField (EmitContext ec)
646                 {
647                         //
648                         // This is the await prepare Emit method. When emitting code like
649                         // a + b we emit code like
650                         //
651                         // a.Emit ()
652                         // b.Emit ()
653                         // Opcodes.Add
654                         //
655                         // For await a + await b we have to interfere the flow to keep the
656                         // stack clean because await yields from the expression. The emit
657                         // then changes to
658                         //
659                         // a = a.EmitToField () // a is changed to temporary field access
660                         // b = b.EmitToField ()
661                         // a.Emit ()
662                         // b.Emit ()
663                         // Opcodes.Add
664                         //
665                         //
666                         // The idea is to emit expression and leave the stack empty with
667                         // result value still available.
668                         //
669                         // Expressions should override this default implementation when
670                         // optimized version can be provided (e.g. FieldExpr)
671                         //
672                         //
673                         // We can optimize for side-effect free expressions, they can be
674                         // emitted out of order
675                         //
676                         if (IsSideEffectFree)
677                                 return this;
678
679                         bool needs_temporary = ContainsEmitWithAwait ();
680                         if (!needs_temporary)
681                                 ec.EmitThis ();
682
683                         // Emit original code
684                         var field = EmitToFieldSource (ec);
685                         if (field == null) {
686                                 //
687                                 // Store the result to temporary field when we
688                                 // cannot load `this' directly
689                                 //
690                                 field = ec.GetTemporaryField (type);
691                                 if (needs_temporary) {
692                                         //
693                                         // Create temporary local (we cannot load `this' before Emit)
694                                         //
695                                         var temp = ec.GetTemporaryLocal (type);
696                                         ec.Emit (OpCodes.Stloc, temp);
697
698                                         ec.EmitThis ();
699                                         ec.Emit (OpCodes.Ldloc, temp);
700                                         field.EmitAssignFromStack (ec);
701
702                                         ec.FreeTemporaryLocal (temp, type);
703                                 } else {
704                                         field.EmitAssignFromStack (ec);
705                                 }
706                         }
707
708                         return field;
709                 }
710
711                 protected virtual FieldExpr EmitToFieldSource (EmitContext ec)
712                 {
713                         //
714                         // Default implementation calls Emit method
715                         //
716                         Emit (ec);
717                         return null;
718                 }
719
720                 protected static void EmitExpressionsList (EmitContext ec, List<Expression> expressions)
721                 {
722                         if (ec.HasSet (BuilderContext.Options.AsyncBody)) {
723                                 bool contains_await = false;
724
725                                 for (int i = 1; i < expressions.Count; ++i) {
726                                         if (expressions[i].ContainsEmitWithAwait ()) {
727                                                 contains_await = true;
728                                                 break;
729                                         }
730                                 }
731
732                                 if (contains_await) {
733                                         for (int i = 0; i < expressions.Count; ++i) {
734                                                 expressions[i] = expressions[i].EmitToField (ec);
735                                         }
736                                 }
737                         }
738
739                         for (int i = 0; i < expressions.Count; ++i) {
740                                 expressions[i].Emit (ec);
741                         }
742                 }
743
744                 /// <summary>
745                 ///   Protected constructor.  Only derivate types should
746                 ///   be able to be created
747                 /// </summary>
748
749                 protected Expression ()
750                 {
751                 }
752
753                 /// <summary>
754                 ///   Returns a fully formed expression after a MemberLookup
755                 /// </summary>
756                 /// 
757                 static Expression ExprClassFromMemberInfo (MemberSpec spec, Location loc)
758                 {
759                         if (spec is EventSpec)
760                                 return new EventExpr ((EventSpec) spec, loc);
761                         if (spec is ConstSpec)
762                                 return new ConstantExpr ((ConstSpec) spec, loc);
763                         if (spec is FieldSpec)
764                                 return new FieldExpr ((FieldSpec) spec, loc);
765                         if (spec is PropertySpec)
766                                 return new PropertyExpr ((PropertySpec) spec, loc);
767                         if (spec is TypeSpec)
768                                 return new TypeExpression (((TypeSpec) spec), loc);
769
770                         return null;
771                 }
772
773                 public static MethodSpec ConstructorLookup (ResolveContext rc, TypeSpec type, ref Arguments args, Location loc)
774                 {
775                         var ctors = MemberCache.FindMembers (type, Constructor.ConstructorName, true);
776                         if (ctors == null) {
777                                 switch (type.Kind) {
778                                 case MemberKind.Struct:
779                                         // Every struct has implicit default constructor if not provided by user
780                                         if (args == null)
781                                                 return null;
782
783                                         rc.Report.SymbolRelatedToPreviousError (type);
784                                         // Report meaningful error for struct as they always have default ctor in C# context
785                                         OverloadResolver.Error_ConstructorMismatch (rc, type, args == null ? 0 : args.Count, loc);
786                                         break;
787                                 case MemberKind.MissingType:
788                                 case MemberKind.InternalCompilerType:
789 // LAMESPEC: dynamic is not really object
790 //                                      if (type.BuiltinType == BuiltinTypeSpec.Type.Object)
791 //                                              goto default;
792                                         break;
793                                 default:
794                                         rc.Report.SymbolRelatedToPreviousError (type);
795                                         rc.Report.Error (143, loc, "The class `{0}' has no constructors defined",
796                                                 type.GetSignatureForError ());
797                                         break;
798                                 }
799
800                                 return null;
801                         }
802
803                         if (args == null && type.IsStruct) {
804                                 bool includes_empty = false;
805                                 foreach (MethodSpec ctor in ctors) {
806                                         if (ctor.Parameters.IsEmpty) {
807                                                 includes_empty = true;
808                                         }
809                                 }
810
811                                 if (!includes_empty)
812                                         return null;
813                         }
814
815                         var r = new OverloadResolver (ctors, OverloadResolver.Restrictions.NoBaseMembers, loc);
816                         if (!rc.HasSet (ResolveContext.Options.BaseInitializer)) {
817                                 r.InstanceQualifier = new ConstructorInstanceQualifier (type);
818                         }
819
820                         return r.ResolveMember<MethodSpec> (rc, ref args);
821                 }
822
823                 [Flags]
824                 public enum MemberLookupRestrictions
825                 {
826                         None = 0,
827                         InvocableOnly = 1,
828                         ExactArity = 1 << 2,
829                         ReadAccess = 1 << 3,
830                         EmptyArguments = 1 << 4,
831                         IgnoreArity = 1 << 5,
832                         IgnoreAmbiguity = 1 << 6,
833                         NameOfExcluded = 1 << 7,
834                         DontSetConditionalAccess = 1 << 8
835                 }
836
837                 //
838                 // Lookup type `queried_type' for code in class `container_type' with a qualifier of
839                 // `qualifier_type' or null to lookup members in the current class.
840                 //
841                 public static Expression MemberLookup (IMemberContext rc, bool errorMode, TypeSpec queried_type, string name, int arity, MemberLookupRestrictions restrictions, Location loc)
842                 {
843                         var members = MemberCache.FindMembers (queried_type, name, false);
844
845                         if (members != null) {
846                                 Expression expr;
847                                 do {
848                                         expr = MemberLookupToExpression (rc, members, errorMode, queried_type, name, arity, restrictions, loc);
849                                         if (expr != null)
850                                                 return expr;
851
852                                         if (members [0].DeclaringType.BaseType == null)
853                                                 members = null;
854                                         else
855                                                 members = MemberCache.FindMembers (members [0].DeclaringType.BaseType, name, false);
856                                 } while (members != null);
857                         }
858
859                         var tps = queried_type as TypeParameterSpec;
860                         if (tps != null) {
861                                 members = MemberCache.FindInterfaceMembers (tps, name);
862                                 if (members != null)
863                                         return MemberLookupToExpression (rc, members, errorMode, queried_type, name, arity, restrictions, loc);
864                         }
865
866                         return null;
867                 }
868
869                 public static Expression MemberLookupToExpression (IMemberContext rc, IList<MemberSpec> members, bool errorMode, TypeSpec queried_type, string name, int arity, MemberLookupRestrictions restrictions, Location loc)
870                 {
871                         MemberSpec non_method = null;
872                         MemberSpec ambig_non_method = null;
873
874                         for (int i = 0; i < members.Count; ++i) {
875                                 var member = members [i];
876
877                                 // HACK: for events because +=/-= can appear at same class only, should use OverrideToBase there
878                                 if ((member.Modifiers & Modifiers.OVERRIDE) != 0 && member.Kind != MemberKind.Event)
879                                         continue;
880
881                                 if ((member.Modifiers & Modifiers.BACKING_FIELD) != 0 || member.Kind == MemberKind.Operator)
882                                         continue;
883
884                                 if ((arity > 0 || (restrictions & MemberLookupRestrictions.ExactArity) != 0) && member.Arity != arity)
885                                         continue;
886
887                                 if (!errorMode) {
888                                         if (!member.IsAccessible (rc))
889                                                 continue;
890
891                                         //
892                                         // With runtime binder we can have a situation where queried type is inaccessible
893                                         // because it came via dynamic object, the check about inconsisted accessibility
894                                         // had no effect as the type was unknown during compilation
895                                         //
896                                         // class A {
897                                         //              private class N { }
898                                         //
899                                         //              public dynamic Foo ()
900                                         //              {
901                                         //                      return new N ();
902                                         //              }
903                                         //      }
904                                         //
905                                         if (rc.Module.Compiler.IsRuntimeBinder && !member.DeclaringType.IsAccessible (rc))
906                                                 continue;
907                                 }
908
909                                 if ((restrictions & MemberLookupRestrictions.InvocableOnly) != 0) {
910                                         if (member is MethodSpec) {
911                                                 return new MethodGroupExpr (members, queried_type, loc);
912                                         }
913
914                                         if (!Invocation.IsMemberInvocable (member))
915                                                 continue;
916                                 }
917
918                                 if (non_method == null || member is MethodSpec || non_method.IsNotCSharpCompatible) {
919                                         non_method = member;
920                                 } else if (!errorMode && !member.IsNotCSharpCompatible) {
921                                         //
922                                         // Interface members that are hidden by class members are removed from the set when T is a type parameter and
923                                         // T has both an effective base class other than object and a non-empty effective interface set.
924                                         //
925                                         // The spec has more complex rules but we simply remove all members declared in an interface declaration.
926                                         //
927                                         var tps = queried_type as TypeParameterSpec;
928                                         if (tps != null && tps.HasTypeConstraint) {
929                                                 if (non_method.DeclaringType.IsClass && member.DeclaringType.IsInterface)
930                                                         continue;
931
932                                                 if (non_method.DeclaringType.IsInterface && member.DeclaringType.IsInterface) {
933                                                         non_method = member;
934                                                         continue;
935                                                 }
936                                         }
937
938                                         ambig_non_method = member;
939                                 }
940                         }
941
942                         if (non_method != null) {
943                                 if (ambig_non_method != null && rc != null && (restrictions & MemberLookupRestrictions.IgnoreAmbiguity) == 0) {
944                                         var report = rc.Module.Compiler.Report;
945                                         report.SymbolRelatedToPreviousError (non_method);
946                                         report.SymbolRelatedToPreviousError (ambig_non_method);
947                                         report.Error (229, loc, "Ambiguity between `{0}' and `{1}'",
948                                                 non_method.GetSignatureForError (), ambig_non_method.GetSignatureForError ());
949                                 }
950
951                                 if (non_method is MethodSpec)
952                                         return new MethodGroupExpr (members, queried_type, loc);
953
954                                 return ExprClassFromMemberInfo (non_method, loc);
955                         }
956
957                         return null;
958                 }
959
960                 protected static void Error_NamedArgument (NamedArgument na, Report Report)
961                 {
962                         Report.Error (1742, na.Location, "An element access expression cannot use named argument");
963                 }
964
965                 protected virtual void Error_NegativeArrayIndex (ResolveContext ec, Location loc)
966                 {
967                         throw new NotImplementedException ();
968                 }
969
970                 public virtual void Error_OperatorCannotBeApplied (ResolveContext rc, Location loc, string oper, TypeSpec t)
971                 {
972                         if (t == InternalType.ErrorType)
973                                 return;
974
975                         rc.Report.Error (23, loc, "The `{0}' operator cannot be applied to operand of type `{1}'",
976                                 oper, t.GetSignatureForError ());
977                 }
978
979                 protected void Error_PointerInsideExpressionTree (ResolveContext ec)
980                 {
981                         ec.Report.Error (1944, loc, "An expression tree cannot contain an unsafe pointer operation");
982                 }
983
984                 protected void Error_NullShortCircuitInsideExpressionTree (ResolveContext rc)
985                 {
986                         rc.Report.Error (8072, loc, "An expression tree cannot contain a null propagating operator");
987                 }
988
989                 protected void Error_NullPropagatingLValue (ResolveContext rc)
990                 {
991                         rc.Report.Error (-1030, loc, "The left-hand side of an assignment cannot contain a null propagating operator");
992                 }
993
994                 public virtual void FlowAnalysis (FlowAnalysisContext fc)
995                 {
996                 }
997
998                 //
999                 // Special version of flow analysis for expressions which can return different
1000                 // on-true and on-false result. Used by &&, ||, ?: expressions
1001                 //
1002                 public virtual void FlowAnalysisConditional (FlowAnalysisContext fc)
1003                 {
1004                         FlowAnalysis (fc);
1005                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = fc.DefiniteAssignment;
1006                 }
1007
1008                 /// <summary>
1009                 ///   Returns an expression that can be used to invoke operator true
1010                 ///   on the expression if it exists.
1011                 /// </summary>
1012                 protected static Expression GetOperatorTrue (ResolveContext ec, Expression e, Location loc)
1013                 {
1014                         return GetOperatorTrueOrFalse (ec, e, true, loc);
1015                 }
1016
1017                 /// <summary>
1018                 ///   Returns an expression that can be used to invoke operator false
1019                 ///   on the expression if it exists.
1020                 /// </summary>
1021                 protected static Expression GetOperatorFalse (ResolveContext ec, Expression e, Location loc)
1022                 {
1023                         return GetOperatorTrueOrFalse (ec, e, false, loc);
1024                 }
1025
1026                 static Expression GetOperatorTrueOrFalse (ResolveContext ec, Expression e, bool is_true, Location loc)
1027                 {
1028                         var op = is_true ? Operator.OpType.True : Operator.OpType.False;
1029                         var type = e.type;
1030                         if (type.IsNullableType)
1031                                 type = Nullable.NullableInfo.GetUnderlyingType (type);
1032
1033                         var methods = MemberCache.GetUserOperator (type, op, false);
1034                         if (methods == null)
1035                                 return null;
1036
1037                         Arguments arguments = new Arguments (1);
1038                         arguments.Add (new Argument (e));
1039
1040                         var res = new OverloadResolver (methods, OverloadResolver.Restrictions.BaseMembersIncluded | OverloadResolver.Restrictions.NoBaseMembers, loc);
1041                         var oper = res.ResolveOperator (ec, ref arguments);
1042
1043                         if (oper == null)
1044                                 return null;
1045
1046                         return new UserOperatorCall (oper, arguments, null, loc);
1047                 }
1048                 
1049                 public virtual string ExprClassName
1050                 {
1051                         get {
1052                                 switch (eclass){
1053                                 case ExprClass.Unresolved:
1054                                         return "Unresolved";
1055                                 case ExprClass.Value:
1056                                         return "value";
1057                                 case ExprClass.Variable:
1058                                         return "variable";
1059                                 case ExprClass.Namespace:
1060                                         return "namespace";
1061                                 case ExprClass.Type:
1062                                         return "type";
1063                                 case ExprClass.MethodGroup:
1064                                         return "method group";
1065                                 case ExprClass.PropertyAccess:
1066                                         return "property access";
1067                                 case ExprClass.EventAccess:
1068                                         return "event access";
1069                                 case ExprClass.IndexerAccess:
1070                                         return "indexer access";
1071                                 case ExprClass.Nothing:
1072                                         return "null";
1073                                 case ExprClass.TypeParameter:
1074                                         return "type parameter";
1075                                 }
1076                                 throw new Exception ("Should not happen");
1077                         }
1078                 }
1079                 
1080                 /// <summary>
1081                 ///   Reports that we were expecting `expr' to be of class `expected'
1082                 /// </summary>
1083                 public static void Error_UnexpectedKind (IMemberContext ctx, Expression memberExpr, string expected, string was, Location loc)
1084                 {
1085                         var name = memberExpr.GetSignatureForError ();
1086
1087                         ctx.Module.Compiler.Report.Error (118, loc, "`{0}' is a `{1}' but a `{2}' was expected", name, was, expected);
1088                 }
1089
1090                 public virtual void Error_UnexpectedKind (ResolveContext ec, ResolveFlags flags, Location loc)
1091                 {
1092                         string [] valid = new string [4];
1093                         int count = 0;
1094
1095                         if ((flags & ResolveFlags.VariableOrValue) != 0) {
1096                                 valid [count++] = "variable";
1097                                 valid [count++] = "value";
1098                         }
1099
1100                         if ((flags & ResolveFlags.Type) != 0)
1101                                 valid [count++] = "type";
1102
1103                         if ((flags & ResolveFlags.MethodGroup) != 0)
1104                                 valid [count++] = "method group";
1105
1106                         if (count == 0)
1107                                 valid [count++] = "unknown";
1108
1109                         StringBuilder sb = new StringBuilder (valid [0]);
1110                         for (int i = 1; i < count - 1; i++) {
1111                                 sb.Append ("', `");
1112                                 sb.Append (valid [i]);
1113                         }
1114                         if (count > 1) {
1115                                 sb.Append ("' or `");
1116                                 sb.Append (valid [count - 1]);
1117                         }
1118
1119                         ec.Report.Error (119, loc, 
1120                                 "Expression denotes a `{0}', where a `{1}' was expected", ExprClassName, sb.ToString ());
1121                 }
1122                 
1123                 public static void UnsafeError (ResolveContext ec, Location loc)
1124                 {
1125                         UnsafeError (ec.Report, loc);
1126                 }
1127
1128                 public static void UnsafeError (Report Report, Location loc)
1129                 {
1130                         Report.Error (214, loc, "Pointers and fixed size buffers may only be used in an unsafe context");
1131                 }
1132
1133                 public static void UnsafeInsideIteratorError (ResolveContext rc, Location loc)
1134                 {
1135                         UnsafeInsideIteratorError (rc.Report, loc);
1136                 }
1137
1138                 public static void UnsafeInsideIteratorError (Report report, Location loc)
1139                 {
1140                         report.Error (1629, loc, "Unsafe code may not appear in iterators");
1141                 }
1142
1143                 //
1144                 // Converts `source' to an int, uint, long or ulong.
1145                 //
1146                 protected Expression ConvertExpressionToArrayIndex (ResolveContext ec, Expression source, bool pointerArray = false)
1147                 {
1148                         var btypes = ec.BuiltinTypes;
1149
1150                         if (source.type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
1151                                 Arguments args = new Arguments (1);
1152                                 args.Add (new Argument (source));
1153                                 return new DynamicConversion (btypes.Int, CSharpBinderFlags.ConvertArrayIndex, args, source.loc).Resolve (ec);
1154                         }
1155
1156                         Expression converted;
1157                         
1158                         using (ec.Set (ResolveContext.Options.CheckedScope)) {
1159                                 converted = Convert.ImplicitConversion (ec, source, btypes.Int, source.loc);
1160                                 if (converted == null)
1161                                         converted = Convert.ImplicitConversion (ec, source, btypes.UInt, source.loc);
1162                                 if (converted == null)
1163                                         converted = Convert.ImplicitConversion (ec, source, btypes.Long, source.loc);
1164                                 if (converted == null)
1165                                         converted = Convert.ImplicitConversion (ec, source, btypes.ULong, source.loc);
1166
1167                                 if (converted == null) {
1168                                         source.Error_ValueCannotBeConverted (ec, btypes.Int, false);
1169                                         return null;
1170                                 }
1171                         }
1172
1173                         if (pointerArray)
1174                                 return converted;
1175
1176                         //
1177                         // Only positive constants are allowed at compile time
1178                         //
1179                         Constant c = converted as Constant;
1180                         if (c != null && c.IsNegative)
1181                                 Error_NegativeArrayIndex (ec, source.loc);
1182
1183                         // No conversion needed to array index
1184                         if (converted.Type.BuiltinType == BuiltinTypeSpec.Type.Int)
1185                                 return converted;
1186
1187                         return new ArrayIndexCast (converted, btypes.Int).Resolve (ec);
1188                 }
1189
1190                 public Expression MakePointerAccess (ResolveContext rc, TypeSpec type, Arguments args)
1191                 {
1192                         if (args.Count != 1){
1193                                 rc.Report.Error (196, loc, "A pointer must be indexed by only one value");
1194                                 return null;
1195                         }
1196
1197                         var arg = args [0];
1198                         if (arg is NamedArgument)
1199                                 Error_NamedArgument ((NamedArgument) arg, rc.Report);
1200
1201                         var index = arg.Expr.Resolve (rc);
1202                         if (index == null)
1203                                 return null;
1204
1205                         index = ConvertExpressionToArrayIndex (rc, index, true);
1206
1207                         Expression p = new PointerArithmetic (Binary.Operator.Addition, this, index, type, loc);
1208                         return new Indirection (p, loc);
1209                 }
1210
1211                 //
1212                 // Derived classes implement this method by cloning the fields that
1213                 // could become altered during the Resolve stage
1214                 //
1215                 // Only expressions that are created for the parser need to implement
1216                 // this.
1217                 //
1218                 protected virtual void CloneTo (CloneContext clonectx, Expression target)
1219                 {
1220                         throw new NotImplementedException (
1221                                 String.Format (
1222                                         "CloneTo not implemented for expression {0}", this.GetType ()));
1223                 }
1224
1225                 //
1226                 // Clones an expression created by the parser.
1227                 //
1228                 // We only support expressions created by the parser so far, not
1229                 // expressions that have been resolved (many more classes would need
1230                 // to implement CloneTo).
1231                 //
1232                 // This infrastructure is here merely for Lambda expressions which
1233                 // compile the same code using different type values for the same
1234                 // arguments to find the correct overload
1235                 //
1236                 public virtual Expression Clone (CloneContext clonectx)
1237                 {
1238                         Expression cloned = (Expression) MemberwiseClone ();
1239                         CloneTo (clonectx, cloned);
1240
1241                         return cloned;
1242                 }
1243
1244                 //
1245                 // Implementation of expression to expression tree conversion
1246                 //
1247                 public abstract Expression CreateExpressionTree (ResolveContext ec);
1248
1249                 protected Expression CreateExpressionFactoryCall (ResolveContext ec, string name, Arguments args)
1250                 {
1251                         return CreateExpressionFactoryCall (ec, name, null, args, loc);
1252                 }
1253
1254                 protected Expression CreateExpressionFactoryCall (ResolveContext ec, string name, TypeArguments typeArguments, Arguments args)
1255                 {
1256                         return CreateExpressionFactoryCall (ec, name, typeArguments, args, loc);
1257                 }
1258
1259                 public static Expression CreateExpressionFactoryCall (ResolveContext ec, string name, TypeArguments typeArguments, Arguments args, Location loc)
1260                 {
1261                         return new Invocation (new MemberAccess (CreateExpressionTypeExpression (ec, loc), name, typeArguments, loc), args);
1262                 }
1263
1264                 protected static TypeExpr CreateExpressionTypeExpression (ResolveContext ec, Location loc)
1265                 {
1266                         var t = ec.Module.PredefinedTypes.Expression.Resolve ();
1267                         if (t == null)
1268                                 return null;
1269
1270                         return new TypeExpression (t, loc);
1271                 }
1272
1273                 //
1274                 // Implemented by all expressions which support conversion from
1275                 // compiler expression to invokable runtime expression. Used by
1276                 // dynamic C# binder.
1277                 //
1278                 public virtual SLE.Expression MakeExpression (BuilderContext ctx)
1279                 {
1280                         throw new NotImplementedException ("MakeExpression for " + GetType ());
1281                 }
1282                         
1283                 public virtual object Accept (StructuralVisitor visitor)
1284                 {
1285                         return visitor.Visit (this);
1286                 }
1287         }
1288
1289         /// <summary>
1290         ///   This is just a base class for expressions that can
1291         ///   appear on statements (invocations, object creation,
1292         ///   assignments, post/pre increment and decrement).  The idea
1293         ///   being that they would support an extra Emition interface that
1294         ///   does not leave a result on the stack.
1295         /// </summary>
1296         public abstract class ExpressionStatement : Expression
1297         {
1298                 public virtual void MarkReachable (Reachability rc)
1299                 {
1300                 }
1301
1302                 public virtual ExpressionStatement ResolveStatement (BlockContext ec)
1303                 {
1304                         Expression e = Resolve (ec);
1305                         if (e == null)
1306                                 return null;
1307
1308                         ExpressionStatement es = e as ExpressionStatement;
1309                         if (es == null || e is AnonymousMethodBody) {
1310                                 var reduced = e as IReducedExpressionStatement;
1311                                 if (reduced != null) {
1312                                         return EmptyExpressionStatement.Instance;
1313                                 }
1314
1315                                 Error_InvalidExpressionStatement (ec);
1316                         }
1317
1318                         //
1319                         // This is quite expensive warning, try to limit the damage
1320                         //
1321                         if (MemberAccess.IsValidDotExpression (e.Type) && !(e is Assign || e is Await)) {
1322                                 WarningAsyncWithoutWait (ec, e);
1323                         }
1324
1325                         return es;
1326                 }
1327
1328                 static void WarningAsyncWithoutWait (BlockContext bc, Expression e)
1329                 {
1330                         if (bc.CurrentAnonymousMethod is AsyncInitializer) {
1331                                 var awaiter = new AwaitStatement.AwaitableMemberAccess (e) {
1332                                         ProbingMode = true
1333                                 };
1334
1335                                 //
1336                                 // Need to do full resolve because GetAwaiter can be extension method
1337                                 // available only in this context
1338                                 //
1339                                 var mg = awaiter.Resolve (bc) as MethodGroupExpr;
1340                                 if (mg == null)
1341                                         return;
1342
1343                                 var arguments = new Arguments (0);
1344                                 mg = mg.OverloadResolve (bc, ref arguments, null, OverloadResolver.Restrictions.ProbingOnly);
1345                                 if (mg == null)
1346                                         return;
1347
1348                                 //
1349                                 // Use same check rules as for real await
1350                                 //
1351                                 var awaiter_definition = bc.Module.GetAwaiter (mg.BestCandidateReturnType);
1352                                 if (!awaiter_definition.IsValidPattern || !awaiter_definition.INotifyCompletion)
1353                                         return;
1354
1355                                 bc.Report.Warning (4014, 1, e.Location,
1356                                         "The statement is not awaited and execution of current method continues before the call is completed. Consider using `await' operator");
1357                                 return;
1358                         }
1359
1360                         var inv = e as Invocation;
1361                         if (inv != null && inv.MethodGroup != null && inv.MethodGroup.BestCandidate.IsAsync) {
1362                                 // The warning won't be reported for imported methods to maintain warning compatiblity with csc 
1363                                 bc.Report.Warning (4014, 1, e.Location,
1364                                         "The statement is not awaited and execution of current method continues before the call is completed. Consider using `await' operator or calling `Wait' method");
1365                                 return;
1366                         }
1367                 }
1368
1369                 /// <summary>
1370                 ///   Requests the expression to be emitted in a `statement'
1371                 ///   context.  This means that no new value is left on the
1372                 ///   stack after invoking this method (constrasted with
1373                 ///   Emit that will always leave a value on the stack).
1374                 /// </summary>
1375                 public abstract void EmitStatement (EmitContext ec);
1376
1377                 public override void EmitSideEffect (EmitContext ec)
1378                 {
1379                         EmitStatement (ec);
1380                 }
1381         }
1382
1383         interface IReducedExpressionStatement
1384         {
1385         }
1386
1387         /// <summary>
1388         ///   This kind of cast is used to encapsulate the child
1389         ///   whose type is child.Type into an expression that is
1390         ///   reported to return "return_type".  This is used to encapsulate
1391         ///   expressions which have compatible types, but need to be dealt
1392         ///   at higher levels with.
1393         ///
1394         ///   For example, a "byte" expression could be encapsulated in one
1395         ///   of these as an "unsigned int".  The type for the expression
1396         ///   would be "unsigned int".
1397         ///
1398         /// </summary>
1399         public abstract class TypeCast : Expression
1400         {
1401                 protected readonly Expression child;
1402
1403                 protected TypeCast (Expression child, TypeSpec return_type)
1404                 {
1405                         eclass = child.eclass;
1406                         loc = child.Location;
1407                         type = return_type;
1408                         this.child = child;
1409                 }
1410
1411                 public Expression Child {
1412                         get {
1413                                 return child;
1414                         }
1415                 }
1416
1417                 public override bool ContainsEmitWithAwait ()
1418                 {
1419                         return child.ContainsEmitWithAwait ();
1420                 }
1421
1422                 public override Expression CreateExpressionTree (ResolveContext ec)
1423                 {
1424                         Arguments args = new Arguments (2);
1425                         args.Add (new Argument (child.CreateExpressionTree (ec)));
1426                         args.Add (new Argument (new TypeOf (type, loc)));
1427
1428                         if (type.IsPointer || child.Type.IsPointer)
1429                                 Error_PointerInsideExpressionTree (ec);
1430
1431                         return CreateExpressionFactoryCall (ec, ec.HasSet (ResolveContext.Options.CheckedScope) ? "ConvertChecked" : "Convert", args);
1432                 }
1433
1434                 protected override Expression DoResolve (ResolveContext ec)
1435                 {
1436                         // This should never be invoked, we are born in fully
1437                         // initialized state.
1438
1439                         return this;
1440                 }
1441
1442                 public override void Emit (EmitContext ec)
1443                 {
1444                         child.Emit (ec);
1445                 }
1446
1447                 public override void FlowAnalysis (FlowAnalysisContext fc)
1448                 {
1449                         child.FlowAnalysis (fc);
1450                 }
1451
1452                 public override SLE.Expression MakeExpression (BuilderContext ctx)
1453                 {
1454 #if STATIC
1455                         return base.MakeExpression (ctx);
1456 #else
1457                         return ctx.HasSet (BuilderContext.Options.CheckedScope) ?
1458                                 SLE.Expression.ConvertChecked (child.MakeExpression (ctx), type.GetMetaInfo ()) :
1459                                 SLE.Expression.Convert (child.MakeExpression (ctx), type.GetMetaInfo ());
1460 #endif
1461                 }
1462
1463                 protected override void CloneTo (CloneContext clonectx, Expression t)
1464                 {
1465                         // Nothing to clone
1466                 }
1467
1468                 public override bool IsNull {
1469                         get { return child.IsNull; }
1470                 }
1471         }
1472
1473         public class EmptyCast : TypeCast {
1474                 EmptyCast (Expression child, TypeSpec target_type)
1475                         : base (child, target_type)
1476                 {
1477                 }
1478
1479                 public static Expression Create (Expression child, TypeSpec type)
1480                 {
1481                         Constant c = child as Constant;
1482                         if (c != null) {
1483                                 var enum_constant = c as EnumConstant;
1484                                 if (enum_constant != null)
1485                                         c = enum_constant.Child;
1486
1487                                 if (!(c is ReducedExpression.ReducedConstantExpression)) {
1488                                         if (c.Type == type)
1489                                                 return c;
1490
1491                                         var res = c.ConvertImplicitly (type);
1492                                         if (res != null)
1493                                                 return res;
1494                                 }
1495                         }
1496
1497                         EmptyCast e = child as EmptyCast;
1498                         if (e != null)
1499                                 return new EmptyCast (e.child, type);
1500
1501                         return new EmptyCast (child, type);
1502                 }
1503
1504                 public override void EmitBranchable (EmitContext ec, Label label, bool on_true)
1505                 {
1506                         child.EmitBranchable (ec, label, on_true);
1507                 }
1508
1509                 public override void EmitSideEffect (EmitContext ec)
1510                 {
1511                         child.EmitSideEffect (ec);
1512                 }
1513         }
1514
1515         //
1516         // Used for predefined type user operator (no obsolete check, etc.)
1517         //
1518         public class OperatorCast : TypeCast
1519         {
1520                 readonly MethodSpec conversion_operator;
1521
1522                 public OperatorCast (Expression expr, TypeSpec target_type)
1523                         : this (expr, target_type, target_type, false)
1524                 {
1525                 }
1526                 
1527                 public OperatorCast (Expression expr, TypeSpec target_type, bool find_explicit)
1528                         : this (expr, target_type, target_type, find_explicit)
1529                 {
1530                 }
1531                 
1532                 public OperatorCast (Expression expr, TypeSpec declaringType, TypeSpec returnType, bool isExplicit)
1533                         : base (expr, returnType)
1534                 {
1535                         var op = isExplicit ? Operator.OpType.Explicit : Operator.OpType.Implicit;
1536                         var mi = MemberCache.GetUserOperator (declaringType, op, true);
1537
1538                         if (mi != null) {
1539                                 foreach (MethodSpec oper in mi) {
1540                                         if (oper.ReturnType != returnType)
1541                                                 continue;
1542
1543                                         if (oper.Parameters.Types[0] == expr.Type) {
1544                                                 conversion_operator = oper;
1545                                                 return;
1546                                         }
1547                                 }
1548                         }
1549
1550                         throw new InternalErrorException ("Missing predefined user operator between `{0}' and `{1}'",
1551                                 returnType.GetSignatureForError (), expr.Type.GetSignatureForError ());
1552                 }
1553
1554                 public override void Emit (EmitContext ec)
1555                 {
1556                         child.Emit (ec);
1557                         ec.Emit (OpCodes.Call, conversion_operator);
1558                 }
1559         }
1560         
1561         //
1562         // Constant specialization of EmptyCast.
1563         // We need to special case this since an empty cast of
1564         // a constant is still a constant. 
1565         //
1566         public class EmptyConstantCast : Constant
1567         {
1568                 public readonly Constant child;
1569
1570                 public EmptyConstantCast (Constant child, TypeSpec type)
1571                         : base (child.Location)
1572                 {
1573                         if (child == null)
1574                                 throw new ArgumentNullException ("child");
1575
1576                         this.child = child;
1577                         this.eclass = child.eclass;
1578                         this.type = type;
1579                 }
1580
1581                 public override Constant ConvertExplicitly (bool in_checked_context, TypeSpec target_type)
1582                 {
1583                         if (child.Type == target_type)
1584                                 return child;
1585
1586                         // FIXME: check that 'type' can be converted to 'target_type' first
1587                         return child.ConvertExplicitly (in_checked_context, target_type);
1588                 }
1589
1590                 public override Expression CreateExpressionTree (ResolveContext ec)
1591                 {
1592                         Arguments args = Arguments.CreateForExpressionTree (ec, null,
1593                                 child.CreateExpressionTree (ec),
1594                                 new TypeOf (type, loc));
1595
1596                         if (type.IsPointer)
1597                                 Error_PointerInsideExpressionTree (ec);
1598
1599                         return CreateExpressionFactoryCall (ec, "Convert", args);
1600                 }
1601
1602                 public override bool IsDefaultValue {
1603                         get { return child.IsDefaultValue; }
1604                 }
1605
1606                 public override bool IsNegative {
1607                         get { return child.IsNegative; }
1608                 }
1609
1610                 public override bool IsNull {
1611                         get { return child.IsNull; }
1612                 }
1613                 
1614                 public override bool IsOneInteger {
1615                         get { return child.IsOneInteger; }
1616                 }
1617
1618                 public override bool IsSideEffectFree {
1619                         get {
1620                                 return child.IsSideEffectFree;
1621                         }
1622                 }
1623
1624                 public override bool IsZeroInteger {
1625                         get { return child.IsZeroInteger; }
1626                 }
1627
1628                 public override void Emit (EmitContext ec)
1629                 {
1630                         child.Emit (ec);                        
1631                 }
1632
1633                 public override void EmitBranchable (EmitContext ec, Label label, bool on_true)
1634                 {
1635                         child.EmitBranchable (ec, label, on_true);
1636
1637                         // Only to make verifier happy
1638                         if (TypeManager.IsGenericParameter (type) && child.IsNull)
1639                                 ec.Emit (OpCodes.Unbox_Any, type);
1640                 }
1641
1642                 public override void EmitSideEffect (EmitContext ec)
1643                 {
1644                         child.EmitSideEffect (ec);
1645                 }
1646
1647                 public override object GetValue ()
1648                 {
1649                         return child.GetValue ();
1650                 }
1651
1652                 public override string GetValueAsLiteral ()
1653                 {
1654                         return child.GetValueAsLiteral ();
1655                 }
1656
1657                 public override long GetValueAsLong ()
1658                 {
1659                         return child.GetValueAsLong ();
1660                 }
1661
1662                 public override Constant ConvertImplicitly (TypeSpec target_type)
1663                 {
1664                         if (type == target_type)
1665                                 return this;
1666
1667                         // FIXME: Do we need to check user conversions?
1668                         if (!Convert.ImplicitStandardConversionExists (this, target_type))
1669                                 return null;
1670
1671                         return child.ConvertImplicitly (target_type);
1672                 }
1673         }
1674
1675         /// <summary>
1676         ///  This class is used to wrap literals which belong inside Enums
1677         /// </summary>
1678         public class EnumConstant : Constant
1679         {
1680                 public Constant Child;
1681
1682                 public EnumConstant (Constant child, TypeSpec enum_type)
1683                         : base (child.Location)
1684                 {
1685                         this.Child = child;
1686
1687                         this.eclass = ExprClass.Value;
1688                         this.type = enum_type;
1689                 }
1690
1691                 protected EnumConstant (Location loc)
1692                         : base (loc)
1693                 {
1694                 }
1695
1696                 public override void Emit (EmitContext ec)
1697                 {
1698                         Child.Emit (ec);
1699                 }
1700
1701                 public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType, TypeSpec parameterType)
1702                 {
1703                         Child.EncodeAttributeValue (rc, enc, Child.Type, parameterType);
1704                 }
1705
1706                 public override void EmitBranchable (EmitContext ec, Label label, bool on_true)
1707                 {
1708                         Child.EmitBranchable (ec, label, on_true);
1709                 }
1710
1711                 public override void EmitSideEffect (EmitContext ec)
1712                 {
1713                         Child.EmitSideEffect (ec);
1714                 }
1715
1716                 public override string GetSignatureForError()
1717                 {
1718                         return Type.GetSignatureForError ();
1719                 }
1720
1721                 public override object GetValue ()
1722                 {
1723                         return Child.GetValue ();
1724                 }
1725
1726 #if !STATIC
1727                 public override object GetTypedValue ()
1728                 {
1729                         //
1730                         // The method can be used in dynamic context only (on closed types)
1731                         //
1732                         // System.Enum.ToObject cannot be called on dynamic types
1733                         // EnumBuilder has to be used, but we cannot use EnumBuilder
1734                         // because it does not properly support generics
1735                         //
1736                         return System.Enum.ToObject (type.GetMetaInfo (), Child.GetValue ());
1737                 }
1738 #endif
1739
1740                 public override string GetValueAsLiteral ()
1741                 {
1742                         return Child.GetValueAsLiteral ();
1743                 }
1744
1745                 public override long GetValueAsLong ()
1746                 {
1747                         return Child.GetValueAsLong ();
1748                 }
1749
1750                 public EnumConstant Increment()
1751                 {
1752                         return new EnumConstant (((IntegralConstant) Child).Increment (), type);
1753                 }
1754
1755                 public override bool IsDefaultValue {
1756                         get {
1757                                 return Child.IsDefaultValue;
1758                         }
1759                 }
1760
1761                 public override bool IsSideEffectFree {
1762                         get {
1763                                 return Child.IsSideEffectFree;
1764                         }
1765                 }
1766
1767                 public override bool IsZeroInteger {
1768                         get { return Child.IsZeroInteger; }
1769                 }
1770
1771                 public override bool IsNegative {
1772                         get {
1773                                 return Child.IsNegative;
1774                         }
1775                 }
1776
1777                 public override Constant ConvertExplicitly (bool in_checked_context, TypeSpec target_type)
1778                 {
1779                         if (Child.Type == target_type)
1780                                 return Child;
1781
1782                         return Child.ConvertExplicitly (in_checked_context, target_type);
1783                 }
1784
1785                 public override Constant ConvertImplicitly (TypeSpec type)
1786                 {
1787                         if (this.type == type) {
1788                                 return this;
1789                         }
1790
1791                         if (!Convert.ImplicitStandardConversionExists (this, type)){
1792                                 return null;
1793                         }
1794
1795                         return Child.ConvertImplicitly (type);
1796                 }
1797         }
1798
1799         /// <summary>
1800         ///   This kind of cast is used to encapsulate Value Types in objects.
1801         ///
1802         ///   The effect of it is to box the value type emitted by the previous
1803         ///   operation.
1804         /// </summary>
1805         public class BoxedCast : TypeCast {
1806
1807                 public BoxedCast (Expression expr, TypeSpec target_type)
1808                         : base (expr, target_type)
1809                 {
1810                         eclass = ExprClass.Value;
1811                 }
1812                 
1813                 protected override Expression DoResolve (ResolveContext ec)
1814                 {
1815                         // This should never be invoked, we are born in fully
1816                         // initialized state.
1817
1818                         return this;
1819                 }
1820
1821                 public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType, TypeSpec parameterType)
1822                 {
1823                         // Only boxing to object type is supported
1824                         if (targetType.BuiltinType != BuiltinTypeSpec.Type.Object) {
1825                                 base.EncodeAttributeValue (rc, enc, targetType, parameterType);
1826                                 return;
1827                         }
1828
1829                         enc.Encode (child.Type);
1830                         child.EncodeAttributeValue (rc, enc, child.Type, parameterType);
1831                 }
1832
1833                 public override void Emit (EmitContext ec)
1834                 {
1835                         base.Emit (ec);
1836                         
1837                         ec.Emit (OpCodes.Box, child.Type);
1838                 }
1839
1840                 public override void EmitSideEffect (EmitContext ec)
1841                 {
1842                         // boxing is side-effectful, since it involves runtime checks, except when boxing to Object or ValueType
1843                         // so, we need to emit the box+pop instructions in most cases
1844                         if (child.Type.IsStruct &&
1845                             (type.BuiltinType == BuiltinTypeSpec.Type.Object || type.BuiltinType == BuiltinTypeSpec.Type.ValueType))
1846                                 child.EmitSideEffect (ec);
1847                         else
1848                                 base.EmitSideEffect (ec);
1849                 }
1850         }
1851
1852         public class UnboxCast : TypeCast {
1853                 public UnboxCast (Expression expr, TypeSpec return_type)
1854                         : base (expr, return_type)
1855                 {
1856                 }
1857
1858                 protected override Expression DoResolve (ResolveContext ec)
1859                 {
1860                         // This should never be invoked, we are born in fully
1861                         // initialized state.
1862
1863                         return this;
1864                 }
1865
1866                 public override void Emit (EmitContext ec)
1867                 {
1868                         base.Emit (ec);
1869
1870                         ec.Emit (OpCodes.Unbox_Any, type);
1871                 }
1872         }
1873         
1874         /// <summary>
1875         ///   This is used to perform explicit numeric conversions.
1876         ///
1877         ///   Explicit numeric conversions might trigger exceptions in a checked
1878         ///   context, so they should generate the conv.ovf opcodes instead of
1879         ///   conv opcodes.
1880         /// </summary>
1881         public class ConvCast : TypeCast {
1882                 public enum Mode : byte {
1883                         I1_U1, I1_U2, I1_U4, I1_U8, I1_CH,
1884                         U1_I1, U1_CH,
1885                         I2_I1, I2_U1, I2_U2, I2_U4, I2_U8, I2_CH,
1886                         U2_I1, U2_U1, U2_I2, U2_CH,
1887                         I4_I1, I4_U1, I4_I2, I4_U2, I4_U4, I4_U8, I4_CH,
1888                         U4_I1, U4_U1, U4_I2, U4_U2, U4_I4, U4_CH,
1889                         I8_I1, I8_U1, I8_I2, I8_U2, I8_I4, I8_U4, I8_U8, I8_CH, I8_I,
1890                         U8_I1, U8_U1, U8_I2, U8_U2, U8_I4, U8_U4, U8_I8, U8_CH, U8_I,
1891                         CH_I1, CH_U1, CH_I2,
1892                         R4_I1, R4_U1, R4_I2, R4_U2, R4_I4, R4_U4, R4_I8, R4_U8, R4_CH,
1893                         R8_I1, R8_U1, R8_I2, R8_U2, R8_I4, R8_U4, R8_I8, R8_U8, R8_CH, R8_R4,
1894                         I_I8,
1895                 }
1896
1897                 Mode mode;
1898                 
1899                 public ConvCast (Expression child, TypeSpec return_type, Mode m)
1900                         : base (child, return_type)
1901                 {
1902                         mode = m;
1903                 }
1904
1905                 protected override Expression DoResolve (ResolveContext ec)
1906                 {
1907                         // This should never be invoked, we are born in fully
1908                         // initialized state.
1909
1910                         return this;
1911                 }
1912
1913                 public override string ToString ()
1914                 {
1915                         return String.Format ("ConvCast ({0}, {1})", mode, child);
1916                 }
1917                 
1918                 public override void Emit (EmitContext ec)
1919                 {
1920                         base.Emit (ec);
1921                         Emit (ec, mode);
1922                 }
1923
1924                 public static void Emit (EmitContext ec, Mode mode)
1925                 {
1926                         if (ec.HasSet (EmitContext.Options.CheckedScope)) {
1927                                 switch (mode){
1928                                 case Mode.I1_U1: ec.Emit (OpCodes.Conv_Ovf_U1); break;
1929                                 case Mode.I1_U2: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1930                                 case Mode.I1_U4: ec.Emit (OpCodes.Conv_Ovf_U4); break;
1931                                 case Mode.I1_U8: ec.Emit (OpCodes.Conv_Ovf_U8); break;
1932                                 case Mode.I1_CH: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1933
1934                                 case Mode.U1_I1: ec.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1935                                 case Mode.U1_CH: /* nothing */ break;
1936
1937                                 case Mode.I2_I1: ec.Emit (OpCodes.Conv_Ovf_I1); break;
1938                                 case Mode.I2_U1: ec.Emit (OpCodes.Conv_Ovf_U1); break;
1939                                 case Mode.I2_U2: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1940                                 case Mode.I2_U4: ec.Emit (OpCodes.Conv_Ovf_U4); break;
1941                                 case Mode.I2_U8: ec.Emit (OpCodes.Conv_Ovf_U8); break;
1942                                 case Mode.I2_CH: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1943
1944                                 case Mode.U2_I1: ec.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1945                                 case Mode.U2_U1: ec.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1946                                 case Mode.U2_I2: ec.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1947                                 case Mode.U2_CH: /* nothing */ break;
1948
1949                                 case Mode.I4_I1: ec.Emit (OpCodes.Conv_Ovf_I1); break;
1950                                 case Mode.I4_U1: ec.Emit (OpCodes.Conv_Ovf_U1); break;
1951                                 case Mode.I4_I2: ec.Emit (OpCodes.Conv_Ovf_I2); break;
1952                                 case Mode.I4_U4: ec.Emit (OpCodes.Conv_Ovf_U4); break;
1953                                 case Mode.I4_U2: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1954                                 case Mode.I4_U8: ec.Emit (OpCodes.Conv_Ovf_U8); break;
1955                                 case Mode.I4_CH: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1956
1957                                 case Mode.U4_I1: ec.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1958                                 case Mode.U4_U1: ec.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1959                                 case Mode.U4_I2: ec.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1960                                 case Mode.U4_U2: ec.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1961                                 case Mode.U4_I4: ec.Emit (OpCodes.Conv_Ovf_I4_Un); break;
1962                                 case Mode.U4_CH: ec.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1963
1964                                 case Mode.I8_I1: ec.Emit (OpCodes.Conv_Ovf_I1); break;
1965                                 case Mode.I8_U1: ec.Emit (OpCodes.Conv_Ovf_U1); break;
1966                                 case Mode.I8_I2: ec.Emit (OpCodes.Conv_Ovf_I2); break;
1967                                 case Mode.I8_U2: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1968                                 case Mode.I8_I4: ec.Emit (OpCodes.Conv_Ovf_I4); break;
1969                                 case Mode.I8_U4: ec.Emit (OpCodes.Conv_Ovf_U4); break;
1970                                 case Mode.I8_U8: ec.Emit (OpCodes.Conv_Ovf_U8); break;
1971                                 case Mode.I8_CH: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1972                                 case Mode.I8_I: ec.Emit (OpCodes.Conv_Ovf_U); break;
1973
1974                                 case Mode.U8_I1: ec.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1975                                 case Mode.U8_U1: ec.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1976                                 case Mode.U8_I2: ec.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1977                                 case Mode.U8_U2: ec.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1978                                 case Mode.U8_I4: ec.Emit (OpCodes.Conv_Ovf_I4_Un); break;
1979                                 case Mode.U8_U4: ec.Emit (OpCodes.Conv_Ovf_U4_Un); break;
1980                                 case Mode.U8_I8: ec.Emit (OpCodes.Conv_Ovf_I8_Un); break;
1981                                 case Mode.U8_CH: ec.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1982                                 case Mode.U8_I: ec.Emit (OpCodes.Conv_Ovf_U_Un); break;
1983
1984                                 case Mode.CH_I1: ec.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1985                                 case Mode.CH_U1: ec.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1986                                 case Mode.CH_I2: ec.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1987
1988                                 case Mode.R4_I1: ec.Emit (OpCodes.Conv_Ovf_I1); break;
1989                                 case Mode.R4_U1: ec.Emit (OpCodes.Conv_Ovf_U1); break;
1990                                 case Mode.R4_I2: ec.Emit (OpCodes.Conv_Ovf_I2); break;
1991                                 case Mode.R4_U2: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1992                                 case Mode.R4_I4: ec.Emit (OpCodes.Conv_Ovf_I4); break;
1993                                 case Mode.R4_U4: ec.Emit (OpCodes.Conv_Ovf_U4); break;
1994                                 case Mode.R4_I8: ec.Emit (OpCodes.Conv_Ovf_I8); break;
1995                                 case Mode.R4_U8: ec.Emit (OpCodes.Conv_Ovf_U8); break;
1996                                 case Mode.R4_CH: ec.Emit (OpCodes.Conv_Ovf_U2); break;
1997
1998                                 case Mode.R8_I1: ec.Emit (OpCodes.Conv_Ovf_I1); break;
1999                                 case Mode.R8_U1: ec.Emit (OpCodes.Conv_Ovf_U1); break;
2000                                 case Mode.R8_I2: ec.Emit (OpCodes.Conv_Ovf_I2); break;
2001                                 case Mode.R8_U2: ec.Emit (OpCodes.Conv_Ovf_U2); break;
2002                                 case Mode.R8_I4: ec.Emit (OpCodes.Conv_Ovf_I4); break;
2003                                 case Mode.R8_U4: ec.Emit (OpCodes.Conv_Ovf_U4); break;
2004                                 case Mode.R8_I8: ec.Emit (OpCodes.Conv_Ovf_I8); break;
2005                                 case Mode.R8_U8: ec.Emit (OpCodes.Conv_Ovf_U8); break;
2006                                 case Mode.R8_CH: ec.Emit (OpCodes.Conv_Ovf_U2); break;
2007                                 case Mode.R8_R4: ec.Emit (OpCodes.Conv_R4); break;
2008
2009                                 case Mode.I_I8: ec.Emit (OpCodes.Conv_Ovf_I8_Un); break;
2010                                 }
2011                         } else {
2012                                 switch (mode){
2013                                 case Mode.I1_U1: ec.Emit (OpCodes.Conv_U1); break;
2014                                 case Mode.I1_U2: ec.Emit (OpCodes.Conv_U2); break;
2015                                 case Mode.I1_U4: ec.Emit (OpCodes.Conv_U4); break;
2016                                 case Mode.I1_U8: ec.Emit (OpCodes.Conv_I8); break;
2017                                 case Mode.I1_CH: ec.Emit (OpCodes.Conv_U2); break;
2018
2019                                 case Mode.U1_I1: ec.Emit (OpCodes.Conv_I1); break;
2020                                 case Mode.U1_CH: ec.Emit (OpCodes.Conv_U2); break;
2021
2022                                 case Mode.I2_I1: ec.Emit (OpCodes.Conv_I1); break;
2023                                 case Mode.I2_U1: ec.Emit (OpCodes.Conv_U1); break;
2024                                 case Mode.I2_U2: ec.Emit (OpCodes.Conv_U2); break;
2025                                 case Mode.I2_U4: ec.Emit (OpCodes.Conv_U4); break;
2026                                 case Mode.I2_U8: ec.Emit (OpCodes.Conv_I8); break;
2027                                 case Mode.I2_CH: ec.Emit (OpCodes.Conv_U2); break;
2028
2029                                 case Mode.U2_I1: ec.Emit (OpCodes.Conv_I1); break;
2030                                 case Mode.U2_U1: ec.Emit (OpCodes.Conv_U1); break;
2031                                 case Mode.U2_I2: ec.Emit (OpCodes.Conv_I2); break;
2032                                 case Mode.U2_CH: /* nothing */ break;
2033
2034                                 case Mode.I4_I1: ec.Emit (OpCodes.Conv_I1); break;
2035                                 case Mode.I4_U1: ec.Emit (OpCodes.Conv_U1); break;
2036                                 case Mode.I4_I2: ec.Emit (OpCodes.Conv_I2); break;
2037                                 case Mode.I4_U4: /* nothing */ break;
2038                                 case Mode.I4_U2: ec.Emit (OpCodes.Conv_U2); break;
2039                                 case Mode.I4_U8: ec.Emit (OpCodes.Conv_I8); break;
2040                                 case Mode.I4_CH: ec.Emit (OpCodes.Conv_U2); break;
2041
2042                                 case Mode.U4_I1: ec.Emit (OpCodes.Conv_I1); break;
2043                                 case Mode.U4_U1: ec.Emit (OpCodes.Conv_U1); break;
2044                                 case Mode.U4_I2: ec.Emit (OpCodes.Conv_I2); break;
2045                                 case Mode.U4_U2: ec.Emit (OpCodes.Conv_U2); break;
2046                                 case Mode.U4_I4: /* nothing */ break;
2047                                 case Mode.U4_CH: ec.Emit (OpCodes.Conv_U2); break;
2048
2049                                 case Mode.I8_I1: ec.Emit (OpCodes.Conv_I1); break;
2050                                 case Mode.I8_U1: ec.Emit (OpCodes.Conv_U1); break;
2051                                 case Mode.I8_I2: ec.Emit (OpCodes.Conv_I2); break;
2052                                 case Mode.I8_U2: ec.Emit (OpCodes.Conv_U2); break;
2053                                 case Mode.I8_I4: ec.Emit (OpCodes.Conv_I4); break;
2054                                 case Mode.I8_U4: ec.Emit (OpCodes.Conv_U4); break;
2055                                 case Mode.I8_U8: /* nothing */ break;
2056                                 case Mode.I8_CH: ec.Emit (OpCodes.Conv_U2); break;
2057                                 case Mode.I8_I: ec.Emit (OpCodes.Conv_U); break;
2058
2059                                 case Mode.U8_I1: ec.Emit (OpCodes.Conv_I1); break;
2060                                 case Mode.U8_U1: ec.Emit (OpCodes.Conv_U1); break;
2061                                 case Mode.U8_I2: ec.Emit (OpCodes.Conv_I2); break;
2062                                 case Mode.U8_U2: ec.Emit (OpCodes.Conv_U2); break;
2063                                 case Mode.U8_I4: ec.Emit (OpCodes.Conv_I4); break;
2064                                 case Mode.U8_U4: ec.Emit (OpCodes.Conv_U4); break;
2065                                 case Mode.U8_I8: /* nothing */ break;
2066                                 case Mode.U8_CH: ec.Emit (OpCodes.Conv_U2); break;
2067                                 case Mode.U8_I: ec.Emit (OpCodes.Conv_U); break;
2068
2069                                 case Mode.CH_I1: ec.Emit (OpCodes.Conv_I1); break;
2070                                 case Mode.CH_U1: ec.Emit (OpCodes.Conv_U1); break;
2071                                 case Mode.CH_I2: ec.Emit (OpCodes.Conv_I2); break;
2072
2073                                 case Mode.R4_I1: ec.Emit (OpCodes.Conv_I1); break;
2074                                 case Mode.R4_U1: ec.Emit (OpCodes.Conv_U1); break;
2075                                 case Mode.R4_I2: ec.Emit (OpCodes.Conv_I2); break;
2076                                 case Mode.R4_U2: ec.Emit (OpCodes.Conv_U2); break;
2077                                 case Mode.R4_I4: ec.Emit (OpCodes.Conv_I4); break;
2078                                 case Mode.R4_U4: ec.Emit (OpCodes.Conv_U4); break;
2079                                 case Mode.R4_I8: ec.Emit (OpCodes.Conv_I8); break;
2080                                 case Mode.R4_U8: ec.Emit (OpCodes.Conv_U8); break;
2081                                 case Mode.R4_CH: ec.Emit (OpCodes.Conv_U2); break;
2082
2083                                 case Mode.R8_I1: ec.Emit (OpCodes.Conv_I1); break;
2084                                 case Mode.R8_U1: ec.Emit (OpCodes.Conv_U1); break;
2085                                 case Mode.R8_I2: ec.Emit (OpCodes.Conv_I2); break;
2086                                 case Mode.R8_U2: ec.Emit (OpCodes.Conv_U2); break;
2087                                 case Mode.R8_I4: ec.Emit (OpCodes.Conv_I4); break;
2088                                 case Mode.R8_U4: ec.Emit (OpCodes.Conv_U4); break;
2089                                 case Mode.R8_I8: ec.Emit (OpCodes.Conv_I8); break;
2090                                 case Mode.R8_U8: ec.Emit (OpCodes.Conv_U8); break;
2091                                 case Mode.R8_CH: ec.Emit (OpCodes.Conv_U2); break;
2092                                 case Mode.R8_R4: ec.Emit (OpCodes.Conv_R4); break;
2093
2094                                 case Mode.I_I8: ec.Emit (OpCodes.Conv_U8); break;
2095                                 }
2096                         }
2097                 }
2098         }
2099         
2100         class OpcodeCast : TypeCast
2101         {
2102                 readonly OpCode op;
2103                 
2104                 public OpcodeCast (Expression child, TypeSpec return_type, OpCode op)
2105                         : base (child, return_type)
2106                 {
2107                         this.op = op;
2108                 }
2109
2110                 protected override Expression DoResolve (ResolveContext ec)
2111                 {
2112                         // This should never be invoked, we are born in fully
2113                         // initialized state.
2114
2115                         return this;
2116                 }
2117
2118                 public override void Emit (EmitContext ec)
2119                 {
2120                         base.Emit (ec);
2121                         ec.Emit (op);
2122                 }
2123
2124                 public TypeSpec UnderlyingType {
2125                         get { return child.Type; }
2126                 }
2127         }
2128
2129         //
2130         // Opcode casts expression with 2 opcodes but only
2131         // single expression tree node
2132         //
2133         class OpcodeCastDuplex : OpcodeCast
2134         {
2135                 readonly OpCode second;
2136
2137                 public OpcodeCastDuplex (Expression child, TypeSpec returnType, OpCode first, OpCode second)
2138                         : base (child, returnType, first)
2139                 {
2140                         this.second = second;
2141                 }
2142
2143                 public override void Emit (EmitContext ec)
2144                 {
2145                         base.Emit (ec);
2146                         ec.Emit (second);
2147                 }
2148         }
2149
2150         /// <summary>
2151         ///   This kind of cast is used to encapsulate a child and cast it
2152         ///   to the class requested
2153         /// </summary>
2154         public sealed class ClassCast : TypeCast {
2155                 readonly bool forced;
2156                 
2157                 public ClassCast (Expression child, TypeSpec return_type)
2158                         : base (child, return_type)
2159                 {
2160                 }
2161                 
2162                 public ClassCast (Expression child, TypeSpec return_type, bool forced)
2163                         : base (child, return_type)
2164                 {
2165                         this.forced = forced;
2166                 }
2167
2168                 public override void Emit (EmitContext ec)
2169                 {
2170                         base.Emit (ec);
2171
2172                         bool gen = TypeManager.IsGenericParameter (child.Type);
2173                         if (gen)
2174                                 ec.Emit (OpCodes.Box, child.Type);
2175                         
2176                         if (type.IsGenericParameter) {
2177                                 ec.Emit (OpCodes.Unbox_Any, type);
2178                                 return;
2179                         }
2180                         
2181                         if (gen && !forced)
2182                                 return;
2183                         
2184                         ec.Emit (OpCodes.Castclass, type);
2185                 }
2186         }
2187
2188         //
2189         // Created during resolving pahse when an expression is wrapped or constantified
2190         // and original expression can be used later (e.g. for expression trees)
2191         //
2192         public class ReducedExpression : Expression
2193         {
2194                 public class ReducedConstantExpression : EmptyConstantCast
2195                 {
2196                         readonly Expression orig_expr;
2197
2198                         public ReducedConstantExpression (Constant expr, Expression orig_expr)
2199                                 : base (expr, expr.Type)
2200                         {
2201                                 this.orig_expr = orig_expr;
2202                         }
2203
2204                         public Expression OriginalExpression {
2205                                 get {
2206                                         return orig_expr;
2207                                 }
2208                         }
2209
2210                         public override Constant ConvertImplicitly (TypeSpec target_type)
2211                         {
2212                                 Constant c = base.ConvertImplicitly (target_type);
2213                                 if (c != null)
2214                                         c = new ReducedConstantExpression (c, orig_expr);
2215
2216                                 return c;
2217                         }
2218
2219                         public override Expression CreateExpressionTree (ResolveContext ec)
2220                         {
2221                                 return orig_expr.CreateExpressionTree (ec);
2222                         }
2223
2224                         public override Constant ConvertExplicitly (bool in_checked_context, TypeSpec target_type)
2225                         {
2226                                 Constant c = base.ConvertExplicitly (in_checked_context, target_type);
2227                                 if (c != null)
2228                                         c = new ReducedConstantExpression (c, orig_expr);
2229                                 return c;
2230                         }
2231
2232                         public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType, TypeSpec parameterType)
2233                         {
2234                                 //
2235                                 // LAMESPEC: Reduced conditional expression is allowed as an attribute argument
2236                                 //
2237                                 if (orig_expr is Conditional)
2238                                         child.EncodeAttributeValue (rc, enc, targetType,parameterType);
2239                                 else
2240                                         base.EncodeAttributeValue (rc, enc, targetType, parameterType);
2241                         }
2242                 }
2243
2244                 sealed class ReducedConstantStatement : ReducedConstantExpression, IReducedExpressionStatement
2245                 {
2246                         public ReducedConstantStatement (Constant expr, Expression origExpr)
2247                                 : base (expr, origExpr)
2248                         {
2249                         }
2250                 }
2251
2252                 sealed class ReducedExpressionStatement : ExpressionStatement
2253                 {
2254                         readonly Expression orig_expr;
2255                         readonly ExpressionStatement stm;
2256
2257                         public ReducedExpressionStatement (ExpressionStatement stm, Expression orig)
2258                         {
2259                                 this.orig_expr = orig;
2260                                 this.stm = stm;
2261                                 this.eclass = stm.eclass;
2262                                 this.type = stm.Type;
2263
2264                                 this.loc = orig.Location;
2265                         }
2266
2267                         public override bool ContainsEmitWithAwait ()
2268                         {
2269                                 return stm.ContainsEmitWithAwait ();
2270                         }
2271
2272                         public override Expression CreateExpressionTree (ResolveContext ec)
2273                         {
2274                                 return orig_expr.CreateExpressionTree (ec);
2275                         }
2276
2277                         protected override Expression DoResolve (ResolveContext ec)
2278                         {
2279                                 return this;
2280                         }
2281
2282                         public override void Emit (EmitContext ec)
2283                         {
2284                                 stm.Emit (ec);
2285                         }
2286
2287                         public override void EmitStatement (EmitContext ec)
2288                         {
2289                                 stm.EmitStatement (ec);
2290                         }
2291
2292                         public override void FlowAnalysis (FlowAnalysisContext fc)
2293                         {
2294                                 stm.FlowAnalysis (fc);
2295                         }
2296                 }
2297
2298                 readonly Expression expr, orig_expr;
2299
2300                 private ReducedExpression (Expression expr, Expression orig_expr)
2301                 {
2302                         this.expr = expr;
2303                         this.eclass = expr.eclass;
2304                         this.type = expr.Type;
2305                         this.orig_expr = orig_expr;
2306                         this.loc = orig_expr.Location;
2307                 }
2308
2309                 #region Properties
2310
2311                 public override bool IsSideEffectFree {
2312                         get {
2313                                 return expr.IsSideEffectFree;
2314                         }
2315                 }
2316
2317                 public Expression OriginalExpression {
2318                         get {
2319                                 return orig_expr;
2320                         }
2321                 }
2322
2323                 #endregion
2324
2325                 public override bool ContainsEmitWithAwait ()
2326                 {
2327                         return expr.ContainsEmitWithAwait ();
2328                 }
2329
2330                 //
2331                 // Creates fully resolved expression switcher
2332                 //
2333                 public static Constant Create (Constant expr, Expression originalExpr)
2334                 {
2335                         if (expr.eclass == ExprClass.Unresolved)
2336                                 throw new ArgumentException ("Unresolved expression");
2337
2338                         if (originalExpr is ExpressionStatement)
2339                                 return new ReducedConstantStatement (expr, originalExpr);
2340
2341                         return new ReducedConstantExpression (expr, originalExpr);
2342                 }
2343
2344                 public static ExpressionStatement Create (ExpressionStatement s, Expression orig)
2345                 {
2346                         return new ReducedExpressionStatement (s, orig);
2347                 }
2348
2349                 public static Expression Create (Expression expr, Expression original_expr)
2350                 {
2351                         return Create (expr, original_expr, true);
2352                 }
2353
2354                 //
2355                 // Creates unresolved reduce expression. The original expression has to be
2356                 // already resolved. Created expression is constant based based on `expr'
2357                 // value unless canBeConstant is used
2358                 //
2359                 public static Expression Create (Expression expr, Expression original_expr, bool canBeConstant)
2360                 {
2361                         if (canBeConstant) {
2362                                 Constant c = expr as Constant;
2363                                 if (c != null)
2364                                         return Create (c, original_expr);
2365                         }
2366
2367                         ExpressionStatement s = expr as ExpressionStatement;
2368                         if (s != null)
2369                                 return Create (s, original_expr);
2370
2371                         if (expr.eclass == ExprClass.Unresolved)
2372                                 throw new ArgumentException ("Unresolved expression");
2373
2374                         return new ReducedExpression (expr, original_expr);
2375                 }
2376
2377                 public override Expression CreateExpressionTree (ResolveContext ec)
2378                 {
2379                         return orig_expr.CreateExpressionTree (ec);
2380                 }
2381
2382                 protected override Expression DoResolve (ResolveContext ec)
2383                 {
2384                         return this;
2385                 }
2386
2387                 public override void Emit (EmitContext ec)
2388                 {
2389                         expr.Emit (ec);
2390                 }
2391
2392                 public override Expression EmitToField (EmitContext ec)
2393                 {
2394                         return expr.EmitToField(ec);
2395                 }
2396
2397                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
2398                 {
2399                         expr.EmitBranchable (ec, target, on_true);
2400                 }
2401
2402                 public override void FlowAnalysis (FlowAnalysisContext fc)
2403                 {
2404                         expr.FlowAnalysis (fc);
2405                 }
2406
2407                 public override SLE.Expression MakeExpression (BuilderContext ctx)
2408                 {
2409                         return orig_expr.MakeExpression (ctx);
2410                 }
2411         }
2412
2413         //
2414         // Standard composite pattern
2415         //
2416         public abstract class CompositeExpression : Expression
2417         {
2418                 protected Expression expr;
2419
2420                 protected CompositeExpression (Expression expr)
2421                 {
2422                         this.expr = expr;
2423                         this.loc = expr.Location;
2424                 }
2425
2426                 public override bool ContainsEmitWithAwait ()
2427                 {
2428                         return expr.ContainsEmitWithAwait ();
2429                 }
2430
2431                 public override Expression CreateExpressionTree (ResolveContext rc)
2432                 {
2433                         return expr.CreateExpressionTree (rc);
2434                 }
2435
2436                 public Expression Child {
2437                         get { return expr; }
2438                 }
2439
2440                 protected override Expression DoResolve (ResolveContext rc)
2441                 {
2442                         expr = expr.Resolve (rc);
2443                         if (expr == null)
2444                                 return null;
2445
2446                         type = expr.Type;
2447                         eclass = expr.eclass;
2448                         return this;
2449                 }
2450
2451                 public override void Emit (EmitContext ec)
2452                 {
2453                         expr.Emit (ec);
2454                 }
2455
2456                 public override bool IsNull {
2457                         get { return expr.IsNull; }
2458                 }
2459         }
2460
2461         //
2462         // Base of expressions used only to narrow resolve flow
2463         //
2464         public abstract class ShimExpression : Expression
2465         {
2466                 protected Expression expr;
2467
2468                 protected ShimExpression (Expression expr)
2469                 {
2470                         this.expr = expr;
2471                 }
2472
2473                 public Expression Expr {
2474                         get {
2475                                 return expr;
2476                         }
2477                 }
2478
2479                 protected override void CloneTo (CloneContext clonectx, Expression t)
2480                 {
2481                         if (expr == null)
2482                                 return;
2483
2484                         ShimExpression target = (ShimExpression) t;
2485                         target.expr = expr.Clone (clonectx);
2486                 }
2487
2488                 public override bool ContainsEmitWithAwait ()
2489                 {
2490                         return expr.ContainsEmitWithAwait ();
2491                 }
2492
2493                 public override Expression CreateExpressionTree (ResolveContext ec)
2494                 {
2495                         throw new NotSupportedException ("ET");
2496                 }
2497
2498                 public override void Emit (EmitContext ec)
2499                 {
2500                         throw new InternalErrorException ("Missing Resolve call");
2501                 }
2502         }
2503
2504         public class UnreachableExpression : Expression
2505         {
2506                 public UnreachableExpression (Expression expr)
2507                 {
2508                         this.loc = expr.Location;
2509                 }
2510
2511                 public override Expression CreateExpressionTree (ResolveContext ec)
2512                 {
2513                         // TODO: is it ok
2514                         throw new NotImplementedException ();
2515                 }
2516
2517                 protected override Expression DoResolve (ResolveContext rc)
2518                 {
2519                         throw new NotSupportedException ();
2520                 }
2521
2522                 public override void FlowAnalysis (FlowAnalysisContext fc)
2523                 {
2524                         fc.Report.Warning (429, 4, loc, "Unreachable expression code detected");
2525                 }
2526
2527                 public override void Emit (EmitContext ec)
2528                 {
2529                 }
2530
2531                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
2532                 {
2533                 }
2534         }
2535
2536         //
2537         // Unresolved type name expressions
2538         //
2539         public abstract class ATypeNameExpression : FullNamedExpression
2540         {
2541                 string name;
2542                 protected TypeArguments targs;
2543
2544                 protected ATypeNameExpression (string name, Location l)
2545                 {
2546                         this.name = name;
2547                         loc = l;
2548                 }
2549
2550                 protected ATypeNameExpression (string name, TypeArguments targs, Location l)
2551                 {
2552                         this.name = name;
2553                         this.targs = targs;
2554                         loc = l;
2555                 }
2556
2557                 protected ATypeNameExpression (string name, int arity, Location l)
2558                         : this (name, new UnboundTypeArguments (arity, l), l)
2559                 {
2560                 }
2561
2562                 #region Properties
2563
2564                 public int Arity {
2565                         get {
2566                                 return targs == null ? 0 : targs.Count;
2567                         }
2568                 }
2569
2570                 public bool HasTypeArguments {
2571                         get {
2572                                 return targs != null && !targs.IsEmpty;
2573                         }
2574                 }
2575
2576                 public string Name {
2577                         get {
2578                                 return name;
2579                         }
2580                         set {
2581                                 name = value;
2582                         }
2583                 }
2584
2585                 public TypeArguments TypeArguments {
2586                         get {
2587                                 return targs;
2588                         }
2589                 }
2590
2591                 #endregion
2592
2593                 public override bool Equals (object obj)
2594                 {
2595                         ATypeNameExpression atne = obj as ATypeNameExpression;
2596                         return atne != null && atne.Name == Name &&
2597                                 (targs == null || targs.Equals (atne.targs));
2598                 }
2599
2600                 public override int GetHashCode ()
2601                 {
2602                         return Name.GetHashCode ();
2603                 }
2604
2605                 // TODO: Move it to MemberCore
2606                 public static string GetMemberType (MemberCore mc)
2607                 {
2608                         if (mc is Property)
2609                                 return "property";
2610                         if (mc is Indexer)
2611                                 return "indexer";
2612                         if (mc is FieldBase)
2613                                 return "field";
2614                         if (mc is MethodCore)
2615                                 return "method";
2616                         if (mc is EnumMember)
2617                                 return "enum";
2618                         if (mc is Event)
2619                                 return "event";
2620
2621                         return "type";
2622                 }
2623
2624                 public override string GetSignatureForError ()
2625                 {
2626                         if (targs != null) {
2627                                 return Name + "<" + targs.GetSignatureForError () + ">";
2628                         }
2629
2630                         return Name;
2631                 }
2632
2633                 public abstract Expression LookupNameExpression (ResolveContext rc, MemberLookupRestrictions restriction);
2634         }
2635         
2636         /// <summary>
2637         ///   SimpleName expressions are formed of a single word and only happen at the beginning 
2638         ///   of a dotted-name.
2639         /// </summary>
2640         public class SimpleName : ATypeNameExpression
2641         {
2642                 public SimpleName (string name, Location l)
2643                         : base (name, l)
2644                 {
2645                 }
2646
2647                 public SimpleName (string name, TypeArguments args, Location l)
2648                         : base (name, args, l)
2649                 {
2650                 }
2651
2652                 public SimpleName (string name, int arity, Location l)
2653                         : base (name, arity, l)
2654                 {
2655                 }
2656
2657                 public SimpleName GetMethodGroup ()
2658                 {
2659                         return new SimpleName (Name, targs, loc);
2660                 }
2661
2662                 protected override Expression DoResolve (ResolveContext rc)
2663                 {
2664                         return SimpleNameResolve (rc, null);
2665                 }
2666
2667                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
2668                 {
2669                         return SimpleNameResolve (ec, right_side);
2670                 }
2671
2672                 public void Error_NameDoesNotExist (ResolveContext rc)
2673                 {
2674                         rc.Report.Error (103, loc, "The name `{0}' does not exist in the current context", Name);
2675                 }
2676
2677                 protected virtual void Error_TypeOrNamespaceNotFound (IMemberContext ctx)
2678                 {
2679                         if (ctx.CurrentType != null) {
2680                                 var member = MemberLookup (ctx, false, ctx.CurrentType, Name, 0, MemberLookupRestrictions.ExactArity, loc) as MemberExpr;
2681                                 if (member != null) {
2682                                         Error_UnexpectedKind (ctx, member, "type", member.KindName, loc);
2683                                         return;
2684                                 }
2685                         }
2686
2687                         var report = ctx.Module.Compiler.Report;
2688
2689                         var retval = ctx.LookupNamespaceOrType (Name, Arity, LookupMode.IgnoreAccessibility, loc);
2690                         if (retval != null) {
2691                                 report.SymbolRelatedToPreviousError (retval.Type);
2692                                 ErrorIsInaccesible (ctx, retval.GetSignatureForError (), loc);
2693                                 return;
2694                         }
2695
2696                         retval = ctx.LookupNamespaceOrType (Name, -System.Math.Max (1, Arity), LookupMode.Probing, loc);
2697                         if (retval != null) {
2698                                 Error_TypeArgumentsCannotBeUsed (ctx, retval.Type, loc);
2699                                 return;
2700                         }
2701
2702                         var ns_candidates = ctx.Module.GlobalRootNamespace.FindTypeNamespaces (ctx, Name, Arity);
2703                         if (ns_candidates != null) {
2704                                 if (ctx is UsingAliasNamespace.AliasContext) {
2705                                         report.Error (246, loc,
2706                                                 "The type or namespace name `{1}' could not be found. Consider using fully qualified name `{0}.{1}'",
2707                                                 ns_candidates[0], Name);
2708                                 } else {
2709                                         string usings = string.Join ("' or `", ns_candidates.ToArray ());
2710                                         report.Error (246, loc,
2711                                                 "The type or namespace name `{0}' could not be found. Are you missing `{1}' using directive?",
2712                                                 Name, usings);
2713                                 }
2714                         } else {
2715                                 report.Error (246, loc,
2716                                         "The type or namespace name `{0}' could not be found. Are you missing an assembly reference?",
2717                                         Name);
2718                         }
2719                 }
2720
2721                 public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext mc, bool allowUnboundTypeArguments)
2722                 {
2723                         FullNamedExpression fne = mc.LookupNamespaceOrType (Name, Arity, LookupMode.Normal, loc);
2724
2725                         if (fne != null) {
2726                                 if (fne.Type != null && Arity > 0) {
2727                                         if (HasTypeArguments) {
2728                                                 GenericTypeExpr ct = new GenericTypeExpr (fne.Type, targs, loc);
2729                                                 if (ct.ResolveAsType (mc) == null)
2730                                                         return null;
2731
2732                                                 return ct;
2733                                         }
2734
2735                                         targs.Resolve (mc, allowUnboundTypeArguments);
2736
2737                                         return new GenericOpenTypeExpr (fne.Type, loc);
2738                                 }
2739
2740                                 //
2741                                 // dynamic namespace is ignored when dynamic is allowed (does not apply to types)
2742                                 //
2743                                 if (!(fne is NamespaceExpression))
2744                                         return fne;
2745                         }
2746
2747                         if (Arity == 0 && Name == "dynamic" && !(mc is NamespaceContainer) && mc.Module.Compiler.Settings.Version > LanguageVersion.V_3) {
2748                                 if (!mc.Module.PredefinedAttributes.Dynamic.IsDefined) {
2749                                         mc.Module.Compiler.Report.Error (1980, Location,
2750                                                 "Dynamic keyword requires `{0}' to be defined. Are you missing System.Core.dll assembly reference?",
2751                                                 mc.Module.PredefinedAttributes.Dynamic.GetSignatureForError ());
2752                                 }
2753
2754                                 fne = new DynamicTypeExpr (loc);
2755                                 fne.ResolveAsType (mc);
2756                         }
2757
2758                         if (fne != null)
2759                                 return fne;
2760
2761                         Error_TypeOrNamespaceNotFound (mc);
2762                         return null;
2763                 }
2764
2765                 public bool IsPossibleTypeOrNamespace (IMemberContext mc)
2766                 {
2767                         return mc.LookupNamespaceOrType (Name, Arity, LookupMode.Probing, loc) != null;
2768                 }
2769
2770                 public bool IsPossibleType (IMemberContext mc)
2771                 {
2772                         return mc.LookupNamespaceOrType (Name, Arity, LookupMode.Probing, loc) is TypeExpr;
2773                 }
2774
2775                 public override Expression LookupNameExpression (ResolveContext rc, MemberLookupRestrictions restrictions)
2776                 {
2777                         int lookup_arity = Arity;
2778                         bool errorMode = false;
2779                         Expression e;
2780                         Block current_block = rc.CurrentBlock;
2781                         INamedBlockVariable variable = null;
2782                         bool variable_found = false;
2783
2784                         while (true) {
2785                                 //
2786                                 // Stage 1: binding to local variables or parameters
2787                                 //
2788                                 // LAMESPEC: It should take invocableOnly into account but that would break csc compatibility
2789                                 //
2790                                 if (current_block != null && lookup_arity == 0) {
2791                                         if (current_block.ParametersBlock.TopBlock.GetLocalName (Name, current_block.Original, ref variable)) {
2792                                                 if (!variable.IsDeclared) {
2793                                                         // We found local name in accessible block but it's not
2794                                                         // initialized yet, maybe the user wanted to bind to something else
2795                                                         errorMode = true;
2796                                                         variable_found = true;
2797                                                 } else {
2798                                                         e = variable.CreateReferenceExpression (rc, loc);
2799                                                         if (e != null) {
2800                                                                 if (Arity > 0)
2801                                                                         Error_TypeArgumentsCannotBeUsed (rc, "variable", Name, loc);
2802
2803                                                                 return e;
2804                                                         }
2805                                                 }
2806                                         }
2807                                 }
2808
2809                                 //
2810                                 // Stage 2: Lookup members if we are inside a type up to top level type for nested types
2811                                 //
2812                                 TypeSpec member_type = rc.CurrentType;
2813                                 for (; member_type != null; member_type = member_type.DeclaringType) {
2814                                         e = MemberLookup (rc, errorMode, member_type, Name, lookup_arity, restrictions, loc);
2815                                         if (e == null)
2816                                                 continue;
2817
2818                                         var me = e as MemberExpr;
2819                                         if (me == null) {
2820                                                 // The name matches a type, defer to ResolveAsTypeStep
2821                                                 if (e is TypeExpr)
2822                                                         break;
2823
2824                                                 continue;
2825                                         }
2826
2827                                         if (errorMode) {
2828                                                 if (variable != null) {
2829                                                         if (me is FieldExpr || me is ConstantExpr || me is EventExpr || me is PropertyExpr) {
2830                                                                 rc.Report.Error (844, loc,
2831                                                                         "A local variable `{0}' cannot be used before it is declared. Consider renaming the local variable when it hides the member `{1}'",
2832                                                                         Name, me.GetSignatureForError ());
2833                                                         } else {
2834                                                                 break;
2835                                                         }
2836                                                 } else if (me is MethodGroupExpr || me is PropertyExpr || me is IndexerExpr) {
2837                                                         // Leave it to overload resolution to report correct error
2838                                                 } else {
2839                                                         // TODO: rc.Report.SymbolRelatedToPreviousError ()
2840                                                         ErrorIsInaccesible (rc, me.GetSignatureForError (), loc);
2841                                                 }
2842                                         } else {
2843                                                 //
2844                                                 // MemberLookup does not check accessors availability, this is actually needed for properties only
2845                                                 //
2846                                                 var pe = me as PropertyExpr;
2847                                                 if (pe != null) {
2848
2849                                                         // Break as there is no other overload available anyway
2850                                                         if ((restrictions & MemberLookupRestrictions.ReadAccess) != 0) {
2851                                                                 if (!pe.PropertyInfo.HasGet || !pe.PropertyInfo.Get.IsAccessible (rc))
2852                                                                         break;
2853
2854                                                                 pe.Getter = pe.PropertyInfo.Get;
2855                                                         } else {
2856                                                                 if (!pe.PropertyInfo.HasSet) {
2857                                                                         if (rc.HasSet (ResolveContext.Options.ConstructorScope) && pe.IsAutoPropertyAccess &&
2858                                                                                 pe.PropertyInfo.DeclaringType == rc.CurrentType && pe.IsStatic == rc.IsStatic) {
2859                                                                                 var p = (Property) pe.PropertyInfo.MemberDefinition;
2860                                                                                 return new FieldExpr (p.BackingField, loc);
2861                                                                         }
2862
2863                                                                         variable_found = true;
2864                                                                         break;
2865                                                                 }
2866
2867                                                                 if (!pe.PropertyInfo.Set.IsAccessible (rc)) {
2868                                                                         variable_found = true;
2869                                                                         break;
2870                                                                 }
2871
2872                                                                 pe.Setter = pe.PropertyInfo.Set;
2873                                                         }
2874                                                 }
2875                                         }
2876
2877                                         // TODO: It's used by EventExpr -> FieldExpr transformation only
2878                                         // TODO: Should go to MemberAccess
2879                                         me = me.ResolveMemberAccess (rc, null, null);
2880
2881                                         if (Arity > 0) {
2882                                                 targs.Resolve (rc, false);
2883                                                 me.SetTypeArguments (rc, targs);
2884                                         }
2885
2886                                         return me;
2887                                 }
2888
2889                                 var expr = NamespaceContainer.LookupStaticUsings (rc, Name, Arity, loc);
2890                                 if (expr != null) {
2891                                         if (Arity > 0) {
2892                                                 targs.Resolve (rc, false);
2893
2894                                                 var me = expr as MemberExpr;
2895                                                 if (me != null)
2896                                                         me.SetTypeArguments (rc, targs);
2897                                         }
2898                                         return expr;
2899                                 }
2900
2901                                 //
2902                                 // Stage 3: Lookup nested types, namespaces and type parameters in the context
2903                                 //
2904                                 if ((restrictions & MemberLookupRestrictions.InvocableOnly) == 0 && !variable_found) {
2905                                         if (IsPossibleTypeOrNamespace (rc)) {
2906                                                 return ResolveAsTypeOrNamespace (rc, false);
2907                                         }
2908                                 }
2909
2910                                 if ((restrictions & MemberLookupRestrictions.NameOfExcluded) == 0 && Name == "nameof")
2911                                         return new NameOf (this);
2912
2913                                 if (errorMode) {
2914                                         if (variable_found) {
2915                                                 rc.Report.Error (841, loc, "A local variable `{0}' cannot be used before it is declared", Name);
2916                                         } else {
2917                                                 if (Arity > 0) {
2918                                                         var tparams = rc.CurrentTypeParameters;
2919                                                         if (tparams != null) {
2920                                                                 if (tparams.Find (Name) != null) {
2921                                                                         Error_TypeArgumentsCannotBeUsed (rc, "type parameter", Name, loc);
2922                                                                         return null;
2923                                                                 }
2924                                                         }
2925
2926                                                         var ct = rc.CurrentType;
2927                                                         do {
2928                                                                 if (ct.MemberDefinition.TypeParametersCount > 0) {
2929                                                                         foreach (var ctp in ct.MemberDefinition.TypeParameters) {
2930                                                                                 if (ctp.Name == Name) {
2931                                                                                         Error_TypeArgumentsCannotBeUsed (rc, "type parameter", Name, loc);
2932                                                                                         return null;
2933                                                                                 }
2934                                                                         }
2935                                                                 }
2936
2937                                                                 ct = ct.DeclaringType;
2938                                                         } while (ct != null);
2939                                                 }
2940
2941                                                 if ((restrictions & MemberLookupRestrictions.InvocableOnly) == 0) {
2942                                                         e = rc.LookupNamespaceOrType (Name, Arity, LookupMode.IgnoreAccessibility, loc);
2943                                                         if (e != null) {
2944                                                                 rc.Report.SymbolRelatedToPreviousError (e.Type);
2945                                                                 ErrorIsInaccesible (rc, e.GetSignatureForError (), loc);
2946                                                                 return e;
2947                                                         }
2948                                                 } else {
2949                                                         var me = MemberLookup (rc, false, rc.CurrentType, Name, Arity, restrictions & ~MemberLookupRestrictions.InvocableOnly, loc) as MemberExpr;
2950                                                         if (me != null) {
2951                                                                 Error_UnexpectedKind (rc, me, "method group", me.KindName, loc);
2952                                                                 return ErrorExpression.Instance;
2953                                                         }
2954                                                 }
2955
2956                                                 e = rc.LookupNamespaceOrType (Name, -System.Math.Max (1, Arity), LookupMode.Probing, loc);
2957                                                 if (e != null) {
2958                                                         if (e.Type.Arity != Arity && (restrictions & MemberLookupRestrictions.IgnoreArity) == 0) {
2959                                                                 Error_TypeArgumentsCannotBeUsed (rc, e.Type, loc);
2960                                                                 return e;
2961                                                         }
2962
2963                                                         if (e is TypeExpr) {
2964                                                                 // TypeExpression does not have correct location
2965                                                                 if (e is TypeExpression)
2966                                                                         e = new TypeExpression (e.Type, loc);
2967
2968                                                                 return e;
2969                                                         }
2970                                                 }
2971
2972                                                 Error_NameDoesNotExist (rc);
2973                                         }
2974
2975                                         return ErrorExpression.Instance;
2976                                 }
2977
2978                                 if (rc.Module.Evaluator != null) {
2979                                         var fi = rc.Module.Evaluator.LookupField (Name);
2980                                         if (fi != null)
2981                                                 return new FieldExpr (fi.Item1, loc);
2982                                 }
2983
2984                                 lookup_arity = 0;
2985                                 errorMode = true;
2986                         }
2987                 }
2988                 
2989                 Expression SimpleNameResolve (ResolveContext ec, Expression right_side)
2990                 {
2991                         Expression e = LookupNameExpression (ec, right_side == null ? MemberLookupRestrictions.ReadAccess : MemberLookupRestrictions.None);
2992
2993                         if (e == null)
2994                                 return null;
2995
2996                         if (e is FullNamedExpression && e.eclass != ExprClass.Unresolved) {
2997                                 Error_UnexpectedKind (ec, e, "variable", e.ExprClassName, loc);
2998                                 return e;
2999                         }
3000
3001                         if (right_side != null) {
3002                                 e = e.ResolveLValue (ec, right_side);
3003                         } else {
3004                                 e = e.Resolve (ec);
3005                         }
3006
3007                         return e;
3008                 }
3009                 
3010                 public override object Accept (StructuralVisitor visitor)
3011                 {
3012                         return visitor.Visit (this);
3013                 }
3014         }
3015
3016         /// <summary>
3017         ///   Represents a namespace or a type.  The name of the class was inspired by
3018         ///   section 10.8.1 (Fully Qualified Names).
3019         /// </summary>
3020         public abstract class FullNamedExpression : Expression
3021         {
3022                 protected override void CloneTo (CloneContext clonectx, Expression target)
3023                 {
3024                         // Do nothing, most unresolved type expressions cannot be
3025                         // resolved to different type
3026                 }
3027
3028                 public override bool ContainsEmitWithAwait ()
3029                 {
3030                         return false;
3031                 }
3032
3033                 public override Expression CreateExpressionTree (ResolveContext ec)
3034                 {
3035                         throw new NotSupportedException ("ET");
3036                 }
3037
3038                 public abstract FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext mc, bool allowUnboundTypeArguments);
3039
3040                 //
3041                 // This is used to resolve the expression as a type, a null
3042                 // value will be returned if the expression is not a type
3043                 // reference
3044                 //
3045                 public override TypeSpec ResolveAsType (IMemberContext mc, bool allowUnboundTypeArguments = false)
3046                 {
3047                         FullNamedExpression fne = ResolveAsTypeOrNamespace (mc, allowUnboundTypeArguments);
3048
3049                         if (fne == null)
3050                                 return null;
3051
3052                         TypeExpr te = fne as TypeExpr;
3053                         if (te == null) {
3054                                 Error_UnexpectedKind (mc, fne, "type", fne.ExprClassName, loc);
3055                                 return null;
3056                         }
3057
3058                         te.loc = loc;
3059
3060                         type = te.Type;
3061
3062                         var dep = type.GetMissingDependencies ();
3063                         if (dep != null) {
3064                                 ImportedTypeDefinition.Error_MissingDependency (mc, dep, loc);
3065                         }
3066
3067                         if (type.Kind == MemberKind.Void) {
3068                                 mc.Module.Compiler.Report.Error (673, loc, "System.Void cannot be used from C#. Consider using `void'");
3069                         }
3070
3071                         //
3072                         // Obsolete checks cannot be done when resolving base context as they
3073                         // require type dependencies to be set but we are in process of resolving them
3074                         //
3075                         if (mc is ResolveContext) {
3076                                 var oa = type.GetAttributeObsolete ();
3077                                 if (oa != null && !mc.IsObsolete)
3078                                         AttributeTester.Report_ObsoleteMessage (oa, type.GetSignatureForError (), fne.Location, mc.Module.Compiler.Report);
3079                         }
3080
3081                         return type;
3082                 }
3083
3084
3085                 public override void Emit (EmitContext ec)
3086                 {
3087                         throw new InternalErrorException ("FullNamedExpression `{0}' found in resolved tree",
3088                                 GetSignatureForError ());
3089                 }
3090         }
3091         
3092         /// <summary>
3093         ///   Expression that evaluates to a type
3094         /// </summary>
3095         public abstract class TypeExpr : FullNamedExpression
3096         {
3097                 public sealed override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext mc, bool allowUnboundTypeArguments)
3098                 {
3099                         ResolveAsType (mc);
3100                         return this;
3101                 }
3102
3103                 protected sealed override Expression DoResolve (ResolveContext ec)
3104                 {
3105                         ResolveAsType (ec);
3106                         return this;
3107                 }
3108
3109                 public override bool Equals (object obj)
3110                 {
3111                         TypeExpr tobj = obj as TypeExpr;
3112                         if (tobj == null)
3113                                 return false;
3114
3115                         return Type == tobj.Type;
3116                 }
3117
3118                 public override int GetHashCode ()
3119                 {
3120                         return Type.GetHashCode ();
3121                 }
3122         }
3123
3124         /// <summary>
3125         ///   Fully resolved Expression that already evaluated to a type
3126         /// </summary>
3127         public class TypeExpression : TypeExpr
3128         {
3129                 public TypeExpression (TypeSpec t, Location l)
3130                 {
3131                         Type = t;
3132                         eclass = ExprClass.Type;
3133                         loc = l;
3134                 }
3135
3136                 public sealed override TypeSpec ResolveAsType (IMemberContext mc, bool allowUnboundTypeArguments = false)
3137                 {
3138                         return type;
3139                 }
3140         }
3141
3142         public class NamespaceExpression : FullNamedExpression
3143         {
3144                 readonly Namespace ns;
3145
3146                 public NamespaceExpression (Namespace ns, Location loc)
3147                 {
3148                         this.ns = ns;
3149                         this.Type = InternalType.Namespace;
3150                         this.eclass = ExprClass.Namespace;
3151                         this.loc = loc;
3152                 }
3153
3154                 public Namespace Namespace {
3155                         get {
3156                                 return ns;
3157                         }
3158                 }
3159
3160                 protected override Expression DoResolve (ResolveContext rc)
3161                 {
3162                         throw new NotImplementedException ();
3163                 }
3164
3165                 public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext mc, bool allowUnboundTypeArguments)
3166                 {
3167                         return this;
3168                 }
3169
3170                 public void Error_NamespaceDoesNotExist (IMemberContext ctx, string name, int arity, Location loc)
3171                 {
3172                         var retval = Namespace.LookupType (ctx, name, arity, LookupMode.IgnoreAccessibility, loc);
3173                         if (retval != null) {
3174 //                              ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (retval.MemberDefinition);
3175                                 ErrorIsInaccesible (ctx, retval.GetSignatureForError (), loc);
3176                                 return;
3177                         }
3178
3179                         retval = Namespace.LookupType (ctx, name, -System.Math.Max (1, arity), LookupMode.Probing, loc);
3180                         if (retval != null) {
3181                                 Error_TypeArgumentsCannotBeUsed (ctx, retval, loc);
3182                                 return;
3183                         }
3184
3185                         Namespace ns;
3186                         if (arity > 0 && Namespace.TryGetNamespace (name, out ns)) {
3187                                 Error_TypeArgumentsCannotBeUsed (ctx, ExprClassName, ns.GetSignatureForError (), loc);
3188                                 return;
3189                         }
3190
3191                         string assembly = null;
3192                         string possible_name = Namespace.GetSignatureForError () + "." + name;
3193
3194                         // Only assembly unique name should be added
3195                         switch (possible_name) {
3196                         case "System.Drawing":
3197                         case "System.Web.Services":
3198                         case "System.Web":
3199                         case "System.Data":
3200                         case "System.Configuration":
3201                         case "System.Data.Services":
3202                         case "System.DirectoryServices":
3203                         case "System.Json":
3204                         case "System.Net.Http":
3205                         case "System.Numerics":
3206                         case "System.Runtime.Caching":
3207                         case "System.ServiceModel":
3208                         case "System.Transactions":
3209                         case "System.Web.Routing":
3210                         case "System.Xml.Linq":
3211                         case "System.Xml":
3212                                 assembly = possible_name;
3213                                 break;
3214
3215                         case "System.Linq":
3216                         case "System.Linq.Expressions":
3217                                 assembly = "System.Core";
3218                                 break;
3219
3220                         case "System.Windows.Forms":
3221                         case "System.Windows.Forms.Layout":
3222                                 assembly = "System.Windows.Forms";
3223                                 break;
3224                         }
3225
3226                         assembly = assembly == null ? "an" : "`" + assembly + "'";
3227
3228                         if (Namespace is GlobalRootNamespace) {
3229                                 ctx.Module.Compiler.Report.Error (400, loc,
3230                                         "The type or namespace name `{0}' could not be found in the global namespace. Are you missing {1} assembly reference?",
3231                                         name, assembly);
3232                         } else {
3233                                 ctx.Module.Compiler.Report.Error (234, loc,
3234                                         "The type or namespace name `{0}' does not exist in the namespace `{1}'. Are you missing {2} assembly reference?",
3235                                         name, GetSignatureForError (), assembly);
3236                         }
3237                 }
3238
3239                 public override string GetSignatureForError ()
3240                 {
3241                         return ns.GetSignatureForError ();
3242                 }
3243
3244                 public FullNamedExpression LookupTypeOrNamespace (IMemberContext ctx, string name, int arity, LookupMode mode, Location loc)
3245                 {
3246                         return ns.LookupTypeOrNamespace (ctx, name, arity, mode, loc);
3247                 }
3248
3249                 public override string ToString ()
3250                 {
3251                         return Namespace.Name;
3252                 }
3253     }
3254
3255         /// <summary>
3256         ///   This class denotes an expression which evaluates to a member
3257         ///   of a struct or a class.
3258         /// </summary>
3259         public abstract class MemberExpr : Expression, OverloadResolver.IInstanceQualifier
3260         {
3261                 protected bool conditional_access_receiver;
3262
3263                 //
3264                 // An instance expression associated with this member, if it's a
3265                 // non-static member
3266                 //
3267                 public Expression InstanceExpression;
3268
3269                 /// <summary>
3270                 ///   The name of this member.
3271                 /// </summary>
3272                 public abstract string Name {
3273                         get;
3274                 }
3275
3276                 //
3277                 // When base.member is used
3278                 //
3279                 public bool IsBase {
3280                         get { return InstanceExpression is BaseThis; }
3281                 }
3282
3283                 /// <summary>
3284                 ///   Whether this is an instance member.
3285                 /// </summary>
3286                 public abstract bool IsInstance {
3287                         get;
3288                 }
3289
3290                 /// <summary>
3291                 ///   Whether this is a static member.
3292                 /// </summary>
3293                 public abstract bool IsStatic {
3294                         get;
3295                 }
3296
3297                 public abstract string KindName {
3298                         get;
3299                 }
3300
3301                 public bool ConditionalAccess { get; set; }
3302
3303                 protected abstract TypeSpec DeclaringType {
3304                         get;
3305                 }
3306
3307                 TypeSpec OverloadResolver.IInstanceQualifier.InstanceType {
3308                         get {
3309                                 return InstanceExpression.Type;
3310                         }
3311                 }
3312
3313                 //
3314                 // Converts best base candidate for virtual method starting from QueriedBaseType
3315                 //
3316                 protected MethodSpec CandidateToBaseOverride (ResolveContext rc, MethodSpec method)
3317                 {
3318                         //
3319                         // Only when base.member is used and method is virtual
3320                         //
3321                         if (!IsBase)
3322                                 return method;
3323
3324                         //
3325                         // Overload resulution works on virtual or non-virtual members only (no overrides). That
3326                         // means for base.member access we have to find the closest match after we found best candidate
3327                         //
3328                         if ((method.Modifiers & (Modifiers.ABSTRACT | Modifiers.VIRTUAL | Modifiers.OVERRIDE)) != 0) {
3329                                 //
3330                                 // The method could already be what we are looking for
3331                                 //
3332                                 TypeSpec[] targs = null;
3333                                 if (method.DeclaringType != InstanceExpression.Type) {
3334                                         //
3335                                         // Candidate can have inflated MVAR parameters and we need to find
3336                                         // base match for original definition not inflated parameter types
3337                                         //
3338                                         var parameters = method.Parameters;
3339                                         if (method.Arity > 0) {
3340                                                 parameters = ((IParametersMember) method.MemberDefinition).Parameters;
3341                                                 var inflated = method.DeclaringType as InflatedTypeSpec;
3342                                                 if (inflated != null) {
3343                                                         parameters = parameters.Inflate (inflated.CreateLocalInflator (rc));
3344                                                 }
3345                                         }
3346
3347                                         var filter = new MemberFilter (method.Name, method.Arity, MemberKind.Method, parameters, null);
3348                                         var base_override = MemberCache.FindMember (InstanceExpression.Type, filter, BindingRestriction.InstanceOnly | BindingRestriction.OverrideOnly) as MethodSpec;
3349                                         if (base_override != null && base_override.DeclaringType != method.DeclaringType) {
3350                                                 if (base_override.IsGeneric)
3351                                                         targs = method.TypeArguments;
3352
3353                                                 method = base_override;
3354                                         }
3355                                 }
3356
3357                                 //
3358                                 // When base access is used inside anonymous method/iterator/etc we need to
3359                                 // get back to the context of original type. We do it by emiting proxy
3360                                 // method in original class and rewriting base call to this compiler
3361                                 // generated method call which does the actual base invocation. This may
3362                                 // introduce redundant storey but with `this' only but it's tricky to avoid
3363                                 // at this stage as we don't know what expressions follow base
3364                                 //
3365                                 // TODO: It's needed only when the method with base call is moved to a storey
3366                                 //
3367                                 if (rc.CurrentAnonymousMethod != null) {
3368                                         if (targs == null && method.IsGeneric) {
3369                                                 targs = method.TypeArguments;
3370                                                 method = method.GetGenericMethodDefinition ();
3371                                         }
3372
3373                                         if (method.Parameters.HasArglist)
3374                                                 throw new NotImplementedException ("__arglist base call proxy");
3375
3376                                         method = rc.CurrentMemberDefinition.Parent.PartialContainer.CreateHoistedBaseCallProxy (rc, method);
3377
3378                                         // Ideally this should apply to any proxy rewrite but in the case of unary mutators on
3379                                         // get/set member expressions second call would fail to proxy because left expression
3380                                         // would be of 'this' and not 'base' because we share InstanceExpression for get/set
3381                                         // FIXME: The async check is another hack but will probably fail with mutators
3382                                         if (rc.CurrentType.IsStruct || rc.CurrentAnonymousMethod.Storey is AsyncTaskStorey)
3383                                                 InstanceExpression = new This (loc).Resolve (rc);
3384                                 }
3385
3386                                 if (targs != null)
3387                                         method = method.MakeGenericMethod (rc, targs);
3388                         }
3389
3390                         //
3391                         // Only base will allow this invocation to happen.
3392                         //
3393                         if (method.IsAbstract) {
3394                                 rc.Report.SymbolRelatedToPreviousError (method);
3395                                 Error_CannotCallAbstractBase (rc, method.GetSignatureForError ());
3396                         }
3397
3398                         return method;
3399                 }
3400
3401                 protected void CheckProtectedMemberAccess (ResolveContext rc, MemberSpec member)
3402                 {
3403                         if (InstanceExpression == null)
3404                                 return;
3405
3406                         if ((member.Modifiers & Modifiers.PROTECTED) != 0 && !(InstanceExpression is This)) {
3407                                 if (!CheckProtectedMemberAccess (rc, member, InstanceExpression.Type)) {
3408                                         Error_ProtectedMemberAccess (rc, member, InstanceExpression.Type, loc);
3409                                 }
3410                         }
3411                 }
3412
3413                 bool OverloadResolver.IInstanceQualifier.CheckProtectedMemberAccess (ResolveContext rc, MemberSpec member)
3414                 {
3415                         if (InstanceExpression == null)
3416                                 return true;
3417
3418                         return InstanceExpression is This || CheckProtectedMemberAccess (rc, member, InstanceExpression.Type);
3419                 }
3420
3421                 public static bool CheckProtectedMemberAccess<T> (ResolveContext rc, T member, TypeSpec qualifier) where T : MemberSpec
3422                 {
3423                         var ct = rc.CurrentType;
3424                         if (ct == qualifier)
3425                                 return true;
3426
3427                         if ((member.Modifiers & Modifiers.INTERNAL) != 0 && member.DeclaringType.MemberDefinition.IsInternalAsPublic (ct.MemberDefinition.DeclaringAssembly))
3428                                 return true;
3429
3430                         qualifier = qualifier.GetDefinition ();
3431                         if (ct != qualifier && !IsSameOrBaseQualifier (ct, qualifier)) {
3432                                 return false;
3433                         }
3434
3435                         return true;
3436                 }
3437
3438                 public override bool ContainsEmitWithAwait ()
3439                 {
3440                         return InstanceExpression != null && InstanceExpression.ContainsEmitWithAwait ();
3441                 }
3442
3443                 public override bool HasConditionalAccess ()
3444                 {
3445                         return ConditionalAccess || (InstanceExpression != null && InstanceExpression.HasConditionalAccess ());
3446                 }
3447
3448                 static bool IsSameOrBaseQualifier (TypeSpec type, TypeSpec qtype)
3449                 {
3450                         do {
3451                                 type = type.GetDefinition ();
3452
3453                                 if (type == qtype || TypeManager.IsFamilyAccessible (qtype, type))
3454                                         return true;
3455
3456                                 type = type.DeclaringType;
3457                         } while (type != null);
3458
3459                         return false;
3460                 }
3461
3462                 protected void DoBestMemberChecks<T> (ResolveContext rc, T member) where T : MemberSpec, IInterfaceMemberSpec
3463                 {
3464                         if (InstanceExpression != null) {
3465                                 InstanceExpression = InstanceExpression.Resolve (rc);
3466                                 CheckProtectedMemberAccess (rc, member);
3467                         }
3468
3469                         if (member.MemberType.IsPointer) {
3470                                 if (rc.CurrentIterator != null) {
3471                                         UnsafeInsideIteratorError (rc, loc);
3472                                 } else if (!rc.IsUnsafe) {
3473                                         UnsafeError (rc, loc);
3474                                 }
3475                         }
3476
3477                         var dep = member.GetMissingDependencies ();
3478                         if (dep != null) {
3479                                 ImportedTypeDefinition.Error_MissingDependency (rc, dep, loc);
3480                         }
3481
3482                         member.CheckObsoleteness (rc, loc);
3483
3484                         if (!(member is FieldSpec))
3485                                 member.MemberDefinition.SetIsUsed ();
3486                 }
3487
3488                 protected virtual void Error_CannotCallAbstractBase (ResolveContext rc, string name)
3489                 {
3490                         rc.Report.Error (205, loc, "Cannot call an abstract base member `{0}'", name);
3491                 }
3492
3493                 public static void Error_ProtectedMemberAccess (ResolveContext rc, MemberSpec member, TypeSpec qualifier, Location loc)
3494                 {
3495                         rc.Report.SymbolRelatedToPreviousError (member);
3496                         rc.Report.Error (1540, loc,
3497                                 "Cannot access protected member `{0}' via a qualifier of type `{1}'. The qualifier must be of type `{2}' or derived from it",
3498                                 member.GetSignatureForError (), qualifier.GetSignatureForError (), rc.CurrentType.GetSignatureForError ());
3499                 }
3500
3501                 public override void FlowAnalysis (FlowAnalysisContext fc)
3502                 {
3503                         if (InstanceExpression != null) {
3504                                 InstanceExpression.FlowAnalysis (fc);
3505                         }
3506                 }
3507
3508                 protected void ResolveConditionalAccessReceiver (ResolveContext rc)
3509                 {
3510                         if (!rc.HasSet (ResolveContext.Options.DontSetConditionalAccessReceiver) && HasConditionalAccess ()) {
3511                                 conditional_access_receiver = true;
3512                         }
3513                 }
3514
3515                 public bool ResolveInstanceExpression (ResolveContext rc, Expression rhs)
3516                 {
3517                         if (!ResolveInstanceExpressionCore (rc, rhs))
3518                                 return false;
3519
3520                         //
3521                         // Check intermediate value modification which won't have any effect
3522                         //
3523                         if (rhs != null && TypeSpec.IsValueType (InstanceExpression.Type)) {
3524                                 var fexpr = InstanceExpression as FieldExpr;
3525                                 if (fexpr != null) {
3526                                         if (!fexpr.Spec.IsReadOnly || rc.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.ConstructorScope))
3527                                                 return true;
3528
3529                                         if (fexpr.IsStatic) {
3530                                                 rc.Report.Error (1650, loc, "Fields of static readonly field `{0}' cannot be assigned to (except in a static constructor or a variable initializer)",
3531                                                         fexpr.GetSignatureForError ());
3532                                         } else {
3533                                                 rc.Report.Error (1648, loc, "Members of readonly field `{0}' cannot be modified (except in a constructor or a variable initializer)",
3534                                                         fexpr.GetSignatureForError ());
3535                                         }
3536
3537                                         return true;
3538                                 }
3539
3540                                 if (InstanceExpression is PropertyExpr || InstanceExpression is IndexerExpr || InstanceExpression is Invocation) {
3541                                         if (rc.CurrentInitializerVariable != null) {
3542                                                 rc.Report.Error (1918, loc, "Members of value type `{0}' cannot be assigned using a property `{1}' object initializer",
3543                                                         InstanceExpression.Type.GetSignatureForError (), InstanceExpression.GetSignatureForError ());
3544                                         } else {
3545                                                 rc.Report.Error (1612, loc,
3546                                                         "Cannot modify a value type return value of `{0}'. Consider storing the value in a temporary variable",
3547                                                         InstanceExpression.GetSignatureForError ());
3548                                         }
3549
3550                                         return true;
3551                                 }
3552
3553                                 var lvr = InstanceExpression as LocalVariableReference;
3554                                 if (lvr != null) {
3555
3556                                         if (!lvr.local_info.IsReadonly)
3557                                                 return true;
3558
3559                                         rc.Report.Error (1654, loc, "Cannot assign to members of `{0}' because it is a `{1}'",
3560                                                 InstanceExpression.GetSignatureForError (), lvr.local_info.GetReadOnlyContext ());
3561                                 }
3562                         }
3563
3564                         return true;
3565                 }
3566
3567                 bool ResolveInstanceExpressionCore (ResolveContext rc, Expression rhs)
3568                 {
3569                         if (IsStatic) {
3570                                 if (InstanceExpression != null) {
3571                                         if (InstanceExpression is TypeExpr) {
3572                                                 var t = InstanceExpression.Type;
3573                                                 do {
3574                                                         t.CheckObsoleteness (rc, loc);
3575
3576                                                         t = t.DeclaringType;
3577                                                 } while (t != null);
3578                                         } else {
3579                                                 var runtime_expr = InstanceExpression as RuntimeValueExpression;
3580                                                 if (runtime_expr == null || !runtime_expr.IsSuggestionOnly) {
3581                                                         rc.Report.Error (176, loc,
3582                                                                 "Static member `{0}' cannot be accessed with an instance reference, qualify it with a type name instead",
3583                                                                 GetSignatureForError ());
3584                                                 }
3585                                         }
3586
3587                                         InstanceExpression = null;
3588                                 }
3589
3590                                 return false;
3591                         }
3592
3593                         if (InstanceExpression == null || InstanceExpression is TypeExpr) {
3594                                 if (InstanceExpression != null || !This.IsThisAvailable (rc, true)) {
3595                                         if (rc.HasSet (ResolveContext.Options.FieldInitializerScope)) {
3596                                                 rc.Report.Error (236, loc,
3597                                                         "A field initializer cannot reference the nonstatic field, method, or property `{0}'",
3598                                                         GetSignatureForError ());
3599                                         } else {
3600                                                 var fe = this as FieldExpr;
3601                                                 if (fe != null && fe.Spec.MemberDefinition is PrimaryConstructorField) {
3602                                                         if (rc.HasSet (ResolveContext.Options.BaseInitializer)) {
3603                                                                 rc.Report.Error (9005, loc, "Constructor initializer cannot access primary constructor parameters");
3604                                                         } else  {
3605                                                                 rc.Report.Error (9006, loc, "An object reference is required to access primary constructor parameter `{0}'",
3606                                                                         fe.Name);
3607                                                         }
3608                                                 } else {
3609                                                         rc.Report.Error (120, loc,
3610                                                                 "An object reference is required to access non-static member `{0}'",
3611                                                                 GetSignatureForError ());
3612                                                 }
3613                                         }
3614
3615                                         InstanceExpression = new CompilerGeneratedThis (rc.CurrentType, loc).Resolve (rc);
3616                                         return false;
3617                                 }
3618
3619                                 if (!TypeManager.IsFamilyAccessible (rc.CurrentType, DeclaringType)) {
3620                                         rc.Report.Error (38, loc,
3621                                                 "Cannot access a nonstatic member of outer type `{0}' via nested type `{1}'",
3622                                                 DeclaringType.GetSignatureForError (), rc.CurrentType.GetSignatureForError ());
3623                                 }
3624
3625                                 InstanceExpression = new This (loc).Resolve (rc);
3626                                 return false;
3627                         }
3628
3629                         var me = InstanceExpression as MemberExpr;
3630                         if (me != null) {
3631                                 me.ResolveInstanceExpressionCore (rc, rhs);
3632
3633                                 var fe = me as FieldExpr;
3634                                 if (fe != null && fe.IsMarshalByRefAccess (rc)) {
3635                                         rc.Report.SymbolRelatedToPreviousError (me.DeclaringType);
3636                                         rc.Report.Warning (1690, 1, loc,
3637                                                 "Cannot call methods, properties, or indexers on `{0}' because it is a value type member of a marshal-by-reference class",
3638                                                 me.GetSignatureForError ());
3639                                 }
3640
3641                                 return true;
3642                         }
3643
3644                         //
3645                         // Additional checks for l-value member access
3646                         //
3647                         if (rhs != null) {
3648                                 if (InstanceExpression is UnboxCast) {
3649                                         rc.Report.Error (445, InstanceExpression.Location, "Cannot modify the result of an unboxing conversion");
3650                                 }
3651                         }
3652
3653                         return true;
3654                 }
3655
3656                 public virtual MemberExpr ResolveMemberAccess (ResolveContext ec, Expression left, SimpleName original)
3657                 {
3658                         if (left != null && !ConditionalAccess && !ec.HasSet (ResolveContext.Options.NameOfScope) && left.IsNull && TypeSpec.IsReferenceType (left.Type)) {
3659                                 ec.Report.Warning (1720, 1, left.Location,
3660                                         "Expression will always cause a `{0}'", "System.NullReferenceException");
3661                         }
3662
3663                         InstanceExpression = left;
3664                         return this;
3665                 }
3666
3667                 public virtual void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
3668                 {
3669
3670                 }
3671
3672                 protected void EmitInstance (EmitContext ec, bool prepare_for_load)
3673                 {
3674                         var inst = new InstanceEmitter (InstanceExpression, TypeSpec.IsValueType (InstanceExpression.Type));
3675                         inst.Emit (ec, ConditionalAccess);
3676
3677                         if (prepare_for_load)
3678                                 ec.Emit (OpCodes.Dup);
3679                 }
3680
3681                 public abstract void SetTypeArguments (ResolveContext ec, TypeArguments ta);
3682         }
3683
3684         public class ExtensionMethodCandidates
3685         {
3686                 readonly NamespaceContainer container;
3687                 readonly IList<MethodSpec> methods;
3688                 readonly int index;
3689                 readonly IMemberContext context;
3690
3691                 public ExtensionMethodCandidates (IMemberContext context, IList<MethodSpec> methods, NamespaceContainer nsContainer, int lookupIndex)
3692                 {
3693                         this.context = context;
3694                         this.methods = methods;
3695                         this.container = nsContainer;
3696                         this.index = lookupIndex;
3697                 }
3698
3699                 public NamespaceContainer Container {
3700                         get {
3701                                 return container;
3702                         }
3703                 }
3704
3705                 public IMemberContext Context {
3706                         get {
3707                                 return context;
3708                         }
3709                 }
3710
3711                 public int LookupIndex {
3712                         get {
3713                                 return index;
3714                         }
3715                 }
3716
3717                 public IList<MethodSpec> Methods {
3718                         get {
3719                                 return methods;
3720                         }
3721                 }
3722         }
3723
3724         // 
3725         // Represents a group of extension method candidates for whole namespace
3726         // 
3727         class ExtensionMethodGroupExpr : MethodGroupExpr, OverloadResolver.IErrorHandler
3728         {
3729                 ExtensionMethodCandidates candidates;
3730                 public Expression ExtensionExpression;
3731
3732                 public ExtensionMethodGroupExpr (ExtensionMethodCandidates candidates, Expression extensionExpr, Location loc)
3733                         : base (candidates.Methods.Cast<MemberSpec>().ToList (), extensionExpr.Type, loc)
3734                 {
3735                         this.candidates = candidates;
3736                         this.ExtensionExpression = extensionExpr;
3737                 }
3738
3739                 public override bool IsStatic {
3740                         get { return true; }
3741                 }
3742
3743                 //
3744                 // For extension methodgroup we are not looking for base members but parent
3745                 // namespace extension methods
3746                 //
3747                 public override IList<MemberSpec> GetBaseMembers (TypeSpec type)
3748                 {
3749                         // TODO: candidates are null only when doing error reporting, that's
3750                         // incorrect. We have to discover same extension methods in error mode
3751                         if (candidates == null)
3752                                 return null;
3753
3754                         int arity = type_arguments == null ? 0 : type_arguments.Count;
3755
3756                         candidates = candidates.Container.LookupExtensionMethod (candidates.Context, Name, arity, candidates.LookupIndex);
3757                         if (candidates == null)
3758                                 return null;
3759
3760                         return candidates.Methods.Cast<MemberSpec> ().ToList ();
3761                 }
3762
3763                 public static bool IsExtensionTypeCompatible (TypeSpec argType, TypeSpec extensionType)
3764                 {
3765                         //
3766                         // Indentity, implicit reference or boxing conversion must exist for the extension parameter
3767                         //
3768                         // LAMESPEC: or implicit type parameter conversion
3769                         //
3770                         return argType == extensionType ||
3771                                 TypeSpecComparer.IsEqual (argType, extensionType) ||
3772                                 Convert.ImplicitReferenceConversionExists (argType, extensionType, false) ||
3773                                 Convert.ImplicitBoxingConversion (null, argType, extensionType) != null;
3774                 }
3775
3776                 public override void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
3777                 {
3778                         rc.Report.Error (8093, expr.Location, "An argument to nameof operator cannot be extension method group");
3779                 }
3780
3781                 public override MethodGroupExpr LookupExtensionMethod (ResolveContext rc)
3782                 {
3783                         // We are already here
3784                         return null;
3785                 }
3786
3787                 public override MethodGroupExpr OverloadResolve (ResolveContext ec, ref Arguments arguments, OverloadResolver.IErrorHandler ehandler, OverloadResolver.Restrictions restr)
3788                 {
3789                         if (arguments == null)
3790                                 arguments = new Arguments (1);
3791
3792                         ExtensionExpression = ExtensionExpression.Resolve (ec);
3793                         if (ExtensionExpression == null)
3794                                 return null;
3795
3796                         var cand = candidates;
3797                         var atype = ConditionalAccess ? Argument.AType.ExtensionTypeConditionalAccess : Argument.AType.ExtensionType;
3798                         arguments.Insert (0, new Argument (ExtensionExpression, atype));
3799                         var res = base.OverloadResolve (ec, ref arguments, ehandler ?? this, restr);
3800                         
3801                         // Restore candidates in case we are running in probing mode 
3802                         candidates = cand;
3803
3804                         // Store resolved argument and restore original arguments
3805                         if (res == null) {
3806                                 // Clean-up modified arguments for error reporting
3807                                 arguments.RemoveAt (0);
3808                                 return null;
3809                         }
3810
3811                         var me = ExtensionExpression as MemberExpr;
3812                         if (me != null) {
3813                                 me.ResolveInstanceExpression (ec, null);
3814                                 var fe = me as FieldExpr;
3815                                 if (fe != null)
3816                                         fe.Spec.MemberDefinition.SetIsUsed ();
3817                         }
3818
3819                         InstanceExpression = null;
3820                         return this;
3821                 }
3822
3823                 #region IErrorHandler Members
3824
3825                 bool OverloadResolver.IErrorHandler.AmbiguousCandidates (ResolveContext rc, MemberSpec best, MemberSpec ambiguous)
3826                 {
3827                         return false;
3828                 }
3829
3830                 bool OverloadResolver.IErrorHandler.ArgumentMismatch (ResolveContext rc, MemberSpec best, Argument arg, int index)
3831                 {
3832                         rc.Report.SymbolRelatedToPreviousError (best);
3833
3834                         if (index == 0) {
3835                                 rc.Report.Error (1929, loc,
3836                                         "Type `{0}' does not contain a member `{1}' and the best extension method overload `{2}' requires an instance of type `{3}'",
3837                                         queried_type.GetSignatureForError (), Name, best.GetSignatureForError (), ((MethodSpec)best).Parameters.ExtensionMethodType.GetSignatureForError ());
3838                         } else {
3839                                 rc.Report.Error (1928, loc,
3840                                         "Type `{0}' does not contain a member `{1}' and the best extension method overload `{2}' has some invalid arguments",
3841                                         queried_type.GetSignatureForError (), Name, best.GetSignatureForError ());
3842                         }
3843
3844                         return true;
3845                 }
3846
3847                 bool OverloadResolver.IErrorHandler.NoArgumentMatch (ResolveContext rc, MemberSpec best)
3848                 {
3849                         return false;
3850                 }
3851
3852                 bool OverloadResolver.IErrorHandler.TypeInferenceFailed (ResolveContext rc, MemberSpec best)
3853                 {
3854                         return false;
3855                 }
3856
3857                 #endregion
3858         }
3859
3860         /// <summary>
3861         ///   MethodGroupExpr represents a group of method candidates which
3862         ///   can be resolved to the best method overload
3863         /// </summary>
3864         public class MethodGroupExpr : MemberExpr, OverloadResolver.IBaseMembersProvider
3865         {
3866                 static readonly MemberSpec[] Excluded = new MemberSpec[0];
3867
3868                 protected IList<MemberSpec> Methods;
3869                 MethodSpec best_candidate;
3870                 TypeSpec best_candidate_return;
3871                 protected TypeArguments type_arguments;
3872
3873                 SimpleName simple_name;
3874                 protected TypeSpec queried_type;
3875
3876                 public MethodGroupExpr (IList<MemberSpec> mi, TypeSpec type, Location loc)
3877                 {
3878                         Methods = mi;
3879                         this.loc = loc;
3880                         this.type = InternalType.MethodGroup;
3881
3882                         eclass = ExprClass.MethodGroup;
3883                         queried_type = type;
3884                 }
3885
3886                 public MethodGroupExpr (MethodSpec m, TypeSpec type, Location loc)
3887                         : this (new MemberSpec[] { m }, type, loc)
3888                 {
3889                 }
3890
3891                 #region Properties
3892
3893                 public MethodSpec BestCandidate {
3894                         get {
3895                                 return best_candidate;
3896                         }
3897                 }
3898
3899                 public TypeSpec BestCandidateReturnType {
3900                         get {
3901                                 return best_candidate_return;
3902                         }
3903                 }
3904
3905                 public IList<MemberSpec> Candidates {
3906                         get {
3907                                 return Methods;
3908                         }
3909                 }
3910
3911                 protected override TypeSpec DeclaringType {
3912                         get {
3913                                 return queried_type;
3914                         }
3915                 }
3916
3917                 public bool IsConditionallyExcluded {
3918                         get {
3919                                 return Methods == Excluded;
3920                         }
3921                 }
3922
3923                 public override bool IsInstance {
3924                         get {
3925                                 if (best_candidate != null)
3926                                         return !best_candidate.IsStatic;
3927
3928                                 return false;
3929                         }
3930                 }
3931
3932                 public override bool IsSideEffectFree {
3933                         get {
3934                                 return InstanceExpression == null || InstanceExpression.IsSideEffectFree;
3935                         }
3936                 }
3937
3938                 public override bool IsStatic {
3939                         get {
3940                                 if (best_candidate != null)
3941                                         return best_candidate.IsStatic;
3942
3943                                 return false;
3944                         }
3945                 }
3946
3947                 public override string KindName {
3948                         get { return "method"; }
3949                 }
3950
3951                 public override string Name {
3952                         get {
3953                                 if (best_candidate != null)
3954                                         return best_candidate.Name;
3955
3956                                 // TODO: throw ?
3957                                 return Methods.First ().Name;
3958                         }
3959                 }
3960
3961                 #endregion
3962
3963                 //
3964                 // When best candidate is already know this factory can be used
3965                 // to avoid expensive overload resolution to be called
3966                 //
3967                 // NOTE: InstanceExpression has to be set manually
3968                 //
3969                 public static MethodGroupExpr CreatePredefined (MethodSpec best, TypeSpec queriedType, Location loc)
3970                 {
3971                         return new MethodGroupExpr (best, queriedType, loc) {
3972                                 best_candidate = best,
3973                                 best_candidate_return = best.ReturnType
3974                         };
3975                 }
3976
3977                 public override string GetSignatureForError ()
3978                 {
3979                         if (best_candidate != null)
3980                                 return best_candidate.GetSignatureForError ();
3981
3982                         return Methods.First ().GetSignatureForError ();
3983                 }
3984
3985                 public override Expression CreateExpressionTree (ResolveContext ec)
3986                 {
3987                         if (best_candidate == null) {
3988                                 ec.Report.Error (1953, loc, "An expression tree cannot contain an expression with method group");
3989                                 return null;
3990                         }
3991
3992                         if (IsConditionallyExcluded)
3993                                 ec.Report.Error (765, loc,
3994                                         "Partial methods with only a defining declaration or removed conditional methods cannot be used in an expression tree");
3995
3996                         if (ConditionalAccess)
3997                                 Error_NullShortCircuitInsideExpressionTree (ec);
3998
3999                         return new TypeOfMethod (best_candidate, loc);
4000                 }
4001                 
4002                 protected override Expression DoResolve (ResolveContext ec)
4003                 {
4004                         this.eclass = ExprClass.MethodGroup;
4005
4006                         if (InstanceExpression != null) {
4007                                 InstanceExpression = InstanceExpression.Resolve (ec);
4008                                 if (InstanceExpression == null)
4009                                         return null;
4010                         }
4011
4012                         return this;
4013                 }
4014
4015                 public override void Emit (EmitContext ec)
4016                 {
4017                         throw new NotSupportedException ();
4018                 }
4019
4020                 public void EmitCall (EmitContext ec, Arguments arguments, bool statement)
4021                 {
4022                         var call = new CallEmitter ();
4023                         call.InstanceExpression = InstanceExpression;
4024                         call.ConditionalAccess = ConditionalAccess;
4025
4026                         if (statement)
4027                                 call.EmitStatement (ec, best_candidate, arguments, loc);
4028                         else
4029                                 call.Emit (ec, best_candidate, arguments, loc);
4030                 }
4031
4032                 public void EmitCall (EmitContext ec, Arguments arguments, TypeSpec conditionalAccessReceiver, bool statement)
4033                 {
4034                         var ca = ec.ConditionalAccess;
4035                         ec.ConditionalAccess = new ConditionalAccessContext (conditionalAccessReceiver, ec.DefineLabel ()) {
4036                                 Statement = statement
4037                         };
4038
4039                         EmitCall (ec, arguments, statement);
4040
4041                         ec.CloseConditionalAccess (!statement && best_candidate_return != conditionalAccessReceiver && conditionalAccessReceiver.IsNullableType ? conditionalAccessReceiver : null);
4042                         ec.ConditionalAccess = ca;
4043                 }
4044
4045                 public override void Error_ValueCannotBeConverted (ResolveContext ec, TypeSpec target, bool expl)
4046                 {
4047                         if (target != InternalType.ErrorType) {
4048                                 ec.Report.Error (428, loc, "Cannot convert method group `{0}' to non-delegate type `{1}'. Consider using parentheses to invoke the method",
4049                                         Name, target.GetSignatureForError ());
4050                         }
4051                 }
4052
4053                 public bool HasAccessibleCandidate (ResolveContext rc)
4054                 {
4055                         foreach (var candidate in Candidates) {
4056                                 if (candidate.IsAccessible (rc))
4057                                         return true;
4058                         }
4059
4060                         return false;
4061                 }
4062
4063                 public static bool IsExtensionMethodArgument (Expression expr)
4064                 {
4065                         //
4066                         // LAMESPEC: No details about which expressions are not allowed
4067                         //
4068                         return !(expr is TypeExpr) && !(expr is BaseThis);
4069                 }
4070
4071                 /// <summary>
4072                 ///   Find the Applicable Function Members (7.4.2.1)
4073                 ///
4074                 ///   me: Method Group expression with the members to select.
4075                 ///       it might contain constructors or methods (or anything
4076                 ///       that maps to a method).
4077                 ///
4078                 ///   Arguments: ArrayList containing resolved Argument objects.
4079                 ///
4080                 ///   loc: The location if we want an error to be reported, or a Null
4081                 ///        location for "probing" purposes.
4082                 ///
4083                 ///   Returns: The MethodBase (either a ConstructorInfo or a MethodInfo)
4084                 ///            that is the best match of me on Arguments.
4085                 ///
4086                 /// </summary>
4087                 public virtual MethodGroupExpr OverloadResolve (ResolveContext ec, ref Arguments args, OverloadResolver.IErrorHandler cerrors, OverloadResolver.Restrictions restr)
4088                 {
4089                         // TODO: causes issues with probing mode, remove explicit Kind check
4090                         if (best_candidate != null && best_candidate.Kind == MemberKind.Destructor)
4091                                 return this;
4092
4093                         var r = new OverloadResolver (Methods, type_arguments, restr, loc);
4094                         if ((restr & OverloadResolver.Restrictions.NoBaseMembers) == 0) {
4095                                 r.BaseMembersProvider = this;
4096                                 r.InstanceQualifier = this;
4097                         }
4098
4099                         if (cerrors != null)
4100                                 r.CustomErrors = cerrors;
4101
4102                         // TODO: When in probing mode do IsApplicable only and when called again do VerifyArguments for full error reporting
4103                         best_candidate = r.ResolveMember<MethodSpec> (ec, ref args);
4104                         if (best_candidate == null) {
4105                                 if (!r.BestCandidateIsDynamic)
4106                                         return null;
4107
4108                                 if (simple_name != null && ec.IsStatic)
4109                                         InstanceExpression = ProbeIdenticalTypeName (ec, InstanceExpression, simple_name);
4110
4111                                 return this;
4112                         }
4113
4114                         // Overload resolver had to create a new method group, all checks bellow have already been executed
4115                         if (r.BestCandidateNewMethodGroup != null)
4116                                 return r.BestCandidateNewMethodGroup;
4117
4118                         if (best_candidate.Kind == MemberKind.Method && (restr & OverloadResolver.Restrictions.ProbingOnly) == 0) {
4119                                 if (InstanceExpression != null) {
4120                                         if (best_candidate.IsExtensionMethod && args[0].Expr == InstanceExpression) {
4121                                                 InstanceExpression = null;
4122                                         } else {
4123                                                 if (simple_name != null && best_candidate.IsStatic) {
4124                                                         InstanceExpression = ProbeIdenticalTypeName (ec, InstanceExpression, simple_name);
4125                                                 }
4126
4127                                                 InstanceExpression.Resolve (ec, ResolveFlags.VariableOrValue | ResolveFlags.MethodGroup | ResolveFlags.Type);
4128                                         }
4129                                 }
4130
4131                                 ResolveInstanceExpression (ec, null);
4132                         }
4133
4134                         var base_override = CandidateToBaseOverride (ec, best_candidate);
4135                         if (base_override == best_candidate) {
4136                                 best_candidate_return = r.BestCandidateReturnType;
4137                         } else {
4138                                 best_candidate = base_override;
4139                                 best_candidate_return = best_candidate.ReturnType;
4140                         }
4141
4142                         if (best_candidate.IsGeneric && (restr & OverloadResolver.Restrictions.ProbingOnly) == 0 && TypeParameterSpec.HasAnyTypeParameterConstrained (best_candidate.GenericDefinition)) {
4143                                 ConstraintChecker cc = new ConstraintChecker (ec);
4144                                 cc.CheckAll (best_candidate.GetGenericMethodDefinition (), best_candidate.TypeArguments, best_candidate.Constraints, loc);
4145                         }
4146
4147                         //
4148                         // Additional check for possible imported base override method which
4149                         // could not be done during IsOverrideMethodBaseTypeAccessible
4150                         //
4151                         if (best_candidate.IsVirtual && (best_candidate.DeclaringType.Modifiers & Modifiers.PROTECTED) != 0 &&
4152                                 best_candidate.MemberDefinition.IsImported && !best_candidate.DeclaringType.IsAccessible (ec)) {
4153                                 ec.Report.SymbolRelatedToPreviousError (best_candidate);
4154                                 ErrorIsInaccesible (ec, best_candidate.GetSignatureForError (), loc);
4155                         }
4156
4157                         // Speed up the check by not doing it on disallowed targets
4158                         if (best_candidate_return.Kind == MemberKind.Void && best_candidate.IsConditionallyExcluded (ec))
4159                                 Methods = Excluded;
4160
4161                         return this;
4162                 }
4163
4164                 public override MemberExpr ResolveMemberAccess (ResolveContext ec, Expression left, SimpleName original)
4165                 {
4166                         var fe = left as FieldExpr;
4167                         if (fe != null) {
4168                                 //
4169                                 // Using method-group on struct fields makes the struct assigned. I am not sure
4170                                 // why but that's what .net does
4171                                 //
4172                                 fe.Spec.MemberDefinition.SetIsAssigned ();
4173                         }
4174
4175                         simple_name = original;
4176                         return base.ResolveMemberAccess (ec, left, original);
4177                 }
4178
4179                 public override void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
4180                 {
4181                         if (!HasAccessibleCandidate (rc)) {
4182                                 ErrorIsInaccesible (rc, expr.GetSignatureForError (), loc);
4183                         }
4184
4185                         if (expr.HasTypeArguments) {
4186                                 rc.Report.Error (8084, expr.Location, "An argument to nameof operator cannot be method group with type arguments");
4187                         }
4188                 }
4189
4190                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
4191                 {
4192                         type_arguments = ta;
4193                 }
4194
4195                 #region IBaseMembersProvider Members
4196
4197                 public virtual IList<MemberSpec> GetBaseMembers (TypeSpec type)
4198                 {
4199                         var baseType = type.BaseType;
4200                         
4201                         IList<MemberSpec> members = baseType == null ? null : MemberCache.FindMembers (baseType, Methods [0].Name, false);
4202
4203                         if (members == null && !type.IsInterface) {
4204                                 var tps = queried_type as TypeParameterSpec;
4205                                 if (tps != null)
4206                                         members = MemberCache.FindInterfaceMembers (tps, Methods [0].Name);
4207                         }
4208
4209                         return members;
4210                 }
4211
4212                 public IParametersMember GetOverrideMemberParameters (MemberSpec member)
4213                 {
4214                         if (queried_type == member.DeclaringType)
4215                                 return null;
4216
4217                         return MemberCache.FindMember (queried_type, new MemberFilter ((MethodSpec) member),
4218                                 BindingRestriction.InstanceOnly | BindingRestriction.OverrideOnly) as IParametersMember;
4219                 }
4220
4221                 //
4222                 // Extension methods lookup after ordinary methods candidates failed to apply
4223                 //
4224                 public virtual MethodGroupExpr LookupExtensionMethod (ResolveContext rc)
4225                 {
4226                         if (InstanceExpression == null || InstanceExpression.eclass == ExprClass.Type)
4227                                 return null;
4228
4229                         if (!IsExtensionMethodArgument (InstanceExpression))
4230                                 return null;
4231
4232                         int arity = type_arguments == null ? 0 : type_arguments.Count;
4233                         var methods = rc.LookupExtensionMethod (Methods[0].Name, arity);
4234                         if (methods == null)
4235                                 return null;
4236
4237                         var emg = new ExtensionMethodGroupExpr (methods, InstanceExpression, loc);
4238                         emg.SetTypeArguments (rc, type_arguments);
4239                         emg.ConditionalAccess = ConditionalAccess;
4240                         return emg;
4241                 }
4242
4243                 #endregion
4244         }
4245
4246         struct ConstructorInstanceQualifier : OverloadResolver.IInstanceQualifier
4247         {
4248                 public ConstructorInstanceQualifier (TypeSpec type)
4249                         : this ()
4250                 {
4251                         InstanceType = type;
4252                 }
4253
4254                 public TypeSpec InstanceType { get; private set; }
4255
4256                 public bool CheckProtectedMemberAccess (ResolveContext rc, MemberSpec member)
4257                 {
4258                         return MemberExpr.CheckProtectedMemberAccess (rc, member, InstanceType);
4259                 }
4260         }
4261
4262         public struct OverloadResolver
4263         {
4264                 [Flags]
4265                 public enum Restrictions
4266                 {
4267                         None = 0,
4268                         DelegateInvoke = 1,
4269                         ProbingOnly     = 1 << 1,
4270                         CovariantDelegate = 1 << 2,
4271                         NoBaseMembers = 1 << 3,
4272                         BaseMembersIncluded = 1 << 4,
4273                         GetEnumeratorLookup = 1 << 5
4274                 }
4275
4276                 public interface IBaseMembersProvider
4277                 {
4278                         IList<MemberSpec> GetBaseMembers (TypeSpec baseType);
4279                         IParametersMember GetOverrideMemberParameters (MemberSpec member);
4280                         MethodGroupExpr LookupExtensionMethod (ResolveContext rc);
4281                 }
4282
4283                 public interface IErrorHandler
4284                 {
4285                         bool AmbiguousCandidates (ResolveContext rc, MemberSpec best, MemberSpec ambiguous);
4286                         bool ArgumentMismatch (ResolveContext rc, MemberSpec best, Argument a, int index);
4287                         bool NoArgumentMatch (ResolveContext rc, MemberSpec best);
4288                         bool TypeInferenceFailed (ResolveContext rc, MemberSpec best);
4289                 }
4290
4291                 public interface IInstanceQualifier
4292                 {
4293                         TypeSpec InstanceType { get; }
4294                         bool CheckProtectedMemberAccess (ResolveContext rc, MemberSpec member);
4295                 }
4296
4297                 sealed class NoBaseMembers : IBaseMembersProvider
4298                 {
4299                         public static readonly IBaseMembersProvider Instance = new NoBaseMembers ();
4300
4301                         public IList<MemberSpec> GetBaseMembers (TypeSpec baseType)
4302                         {
4303                                 return null;
4304                         }
4305
4306                         public IParametersMember GetOverrideMemberParameters (MemberSpec member)
4307                         {
4308                                 return null;
4309                         }
4310
4311                         public MethodGroupExpr LookupExtensionMethod (ResolveContext rc)
4312                         {
4313                                 return null;
4314                         }
4315                 }
4316
4317                 struct AmbiguousCandidate
4318                 {
4319                         public readonly MemberSpec Member;
4320                         public readonly bool Expanded;
4321                         public readonly AParametersCollection Parameters;
4322
4323                         public AmbiguousCandidate (MemberSpec member, AParametersCollection parameters, bool expanded)
4324                         {
4325                                 Member = member;
4326                                 Parameters = parameters;
4327                                 Expanded = expanded;
4328                         }
4329                 }
4330
4331                 Location loc;
4332                 IList<MemberSpec> members;
4333                 TypeArguments type_arguments;
4334                 IBaseMembersProvider base_provider;
4335                 IErrorHandler custom_errors;
4336                 IInstanceQualifier instance_qualifier;
4337                 Restrictions restrictions;
4338                 MethodGroupExpr best_candidate_extension_group;
4339                 TypeSpec best_candidate_return_type;
4340
4341                 SessionReportPrinter lambda_conv_msgs;
4342
4343                 public OverloadResolver (IList<MemberSpec> members, Restrictions restrictions, Location loc)
4344                         : this (members, null, restrictions, loc)
4345                 {
4346                 }
4347
4348                 public OverloadResolver (IList<MemberSpec> members, TypeArguments targs, Restrictions restrictions, Location loc)
4349                         : this ()
4350                 {
4351                         if (members == null || members.Count == 0)
4352                                 throw new ArgumentException ("empty members set");
4353
4354                         this.members = members;
4355                         this.loc = loc;
4356                         type_arguments = targs;
4357                         this.restrictions = restrictions;
4358                         if (IsDelegateInvoke)
4359                                 this.restrictions |= Restrictions.NoBaseMembers;
4360
4361                         base_provider = NoBaseMembers.Instance;
4362                 }
4363
4364                 #region Properties
4365
4366                 public IBaseMembersProvider BaseMembersProvider {
4367                         get {
4368                                 return base_provider;
4369                         }
4370                         set {
4371                                 base_provider = value;
4372                         }
4373                 }
4374
4375                 public bool BestCandidateIsDynamic { get; set; }
4376
4377                 //
4378                 // Best candidate was found in newly created MethodGroupExpr, used by extension methods
4379                 //
4380                 public MethodGroupExpr BestCandidateNewMethodGroup {
4381                         get {
4382                                 return best_candidate_extension_group;
4383                         }
4384                 }
4385
4386                 //
4387                 // Return type can be different between best candidate and closest override
4388                 //
4389                 public TypeSpec BestCandidateReturnType {
4390                         get {
4391                                 return best_candidate_return_type;
4392                         }
4393                 }
4394
4395                 public IErrorHandler CustomErrors {
4396                         get {
4397                                 return custom_errors;
4398                         }
4399                         set {
4400                                 custom_errors = value;
4401                         }
4402                 }
4403
4404                 TypeSpec DelegateType {
4405                         get {
4406                                 if ((restrictions & Restrictions.DelegateInvoke) == 0)
4407                                         throw new InternalErrorException ("Not running in delegate mode", loc);
4408
4409                                 return members [0].DeclaringType;
4410                         }
4411                 }
4412
4413                 public IInstanceQualifier InstanceQualifier {
4414                         get {
4415                                 return instance_qualifier;
4416                         }
4417                         set {
4418                                 instance_qualifier = value;
4419                         }
4420                 }
4421
4422                 bool IsProbingOnly {
4423                         get {
4424                                 return (restrictions & Restrictions.ProbingOnly) != 0;
4425                         }
4426                 }
4427
4428                 bool IsDelegateInvoke {
4429                         get {
4430                                 return (restrictions & Restrictions.DelegateInvoke) != 0;
4431                         }
4432                 }
4433
4434                 #endregion
4435
4436                 //
4437                 //  7.4.3.3  Better conversion from expression
4438                 //  Returns :   1    if a->p is better,
4439                 //              2    if a->q is better,
4440                 //              0 if neither is better
4441                 //
4442                 static int BetterExpressionConversion (ResolveContext ec, Argument a, TypeSpec p, TypeSpec q)
4443                 {
4444                         TypeSpec argument_type = a.Type;
4445
4446                         //
4447                         // Exactly matching Expression phase
4448                         //
4449
4450                         //
4451                         // If argument is an anonymous function
4452                         //
4453                         if (argument_type == InternalType.AnonymousMethod && ec.Module.Compiler.Settings.Version > LanguageVersion.ISO_2) {
4454                                 //
4455                                 // p and q are delegate types or expression tree types
4456                                 //
4457                                 if (p.IsExpressionTreeType || q.IsExpressionTreeType) {
4458                                         if (q.MemberDefinition != p.MemberDefinition) {
4459                                                 return 0;
4460                                         }
4461
4462                                         //
4463                                         // Uwrap delegate from Expression<T>
4464                                         //
4465                                         q = TypeManager.GetTypeArguments (q) [0];
4466                                         p = TypeManager.GetTypeArguments (p) [0];
4467                                 }
4468
4469                                 var p_m = Delegate.GetInvokeMethod (p);
4470                                 var q_m = Delegate.GetInvokeMethod (q);
4471
4472                                 //
4473                                 // With identical parameter lists
4474                                 //
4475                                 if (!TypeSpecComparer.Equals (p_m.Parameters.Types, q_m.Parameters.Types))
4476                                         return 0;
4477
4478                                 p = p_m.ReturnType;
4479                                 var orig_q = q;
4480                                 q = q_m.ReturnType;
4481
4482                                 //
4483                                 // if p is void returning, and q has a return type Y, then C2 is the better conversion.
4484                                 //
4485                                 if (p.Kind == MemberKind.Void) {
4486                                         return q.Kind != MemberKind.Void ? 2 : 0;
4487                                 }
4488
4489                                 //
4490                                 // if p has a return type Y, and q is void returning, then C1 is the better conversion.
4491                                 //
4492                                 if (q.Kind == MemberKind.Void) {
4493                                         return p.Kind != MemberKind.Void ? 1 : 0;
4494                                 }
4495
4496                                 var am = (AnonymousMethodExpression)a.Expr;
4497
4498                                 //
4499                                 // When anonymous method is an asynchronous, and P has a return type Task<Y1>, and Q has a return type Task<Y2>
4500                                 // better conversion is performed between underlying types Y1 and Y2
4501                                 //
4502                                 if (p.IsGenericTask || q.IsGenericTask) {
4503                                         if (am.Block.IsAsync && p.IsGenericTask && q.IsGenericTask) {
4504                                                 q = q.TypeArguments [0];
4505                                                 p = p.TypeArguments [0];
4506                                         }
4507                                 }
4508
4509                                 if (q != p) {
4510                                         //
4511                                         // An inferred return type X exists for E in the context of the parameter list, and
4512                                         // an identity conversion exists from X to the return type of D
4513                                         //
4514                                         var inferred_type = am.InferReturnType (ec, null, orig_q);
4515                                         if (inferred_type != null) {
4516                                                 if (inferred_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
4517                                                         inferred_type = ec.BuiltinTypes.Object;
4518
4519                                                 if (inferred_type == p)
4520                                                         return 1;
4521
4522                                                 if (inferred_type == q)
4523                                                         return 2;
4524                                         }
4525                                 }
4526                         }
4527
4528                         if (argument_type == p)
4529                                 return 1;
4530
4531                         if (argument_type == q)
4532                                 return 2;
4533
4534                         return IsBetterConversionTarget (ec, p, q);
4535                 }
4536
4537                 static int IsBetterConversionTarget (ResolveContext rc, TypeSpec p, TypeSpec q)
4538                 {
4539                         if ((p.Kind == MemberKind.Delegate || p.IsExpressionTreeType) && (q.Kind == MemberKind.Delegate || q.IsExpressionTreeType)) {
4540
4541                                 if (p.Kind != MemberKind.Delegate) {
4542                                         p = TypeManager.GetTypeArguments (p) [0];
4543                                 }
4544
4545                                 if (q.Kind != MemberKind.Delegate) {
4546                                         q = TypeManager.GetTypeArguments (q) [0];
4547                                 }
4548
4549                                 var p_m = Delegate.GetInvokeMethod (p);
4550                                 var q_m = Delegate.GetInvokeMethod (q);
4551
4552                                 p = p_m.ReturnType;
4553                                 q = q_m.ReturnType;
4554
4555                                 //
4556                                 // if p is void returning, and q has a return type Y, then C2 is the better conversion.
4557                                 //
4558                                 if (p.Kind == MemberKind.Void) {
4559                                         return q.Kind != MemberKind.Void ? 2 : 0;
4560                                 }
4561
4562                                 //
4563                                 // if p has a return type Y, and q is void returning, then C1 is the better conversion.
4564                                 //
4565                                 if (q.Kind == MemberKind.Void) {
4566                                         return p.Kind != MemberKind.Void ? 1 : 0;
4567                                 }
4568
4569                                 return IsBetterConversionTarget (rc, p, q);
4570                         }
4571
4572                         if (p.IsGenericTask && q.IsGenericTask) {
4573                                 q = q.TypeArguments [0];
4574                                 p = p.TypeArguments [0];
4575                                 return IsBetterConversionTarget (rc, p, q);
4576                         }
4577
4578                         var p_orig = p;
4579                         if (p.IsNullableType) {
4580                                 p = Nullable.NullableInfo.GetUnderlyingType (p);
4581                                 if (!BuiltinTypeSpec.IsPrimitiveTypeOrDecimal (p))
4582                                         return BetterTypeConversionImplicitConversion (rc, p_orig, q);
4583
4584                                 //
4585                                 // Spec expects implicit conversion check between p and q, q and p
4586                                 // to be done before nullable unwrapping but that's expensive operation.
4587                                 // 
4588                                 // Extra manual tweak is needed because BetterTypeConversion works on
4589                                 // unwrapped types
4590                                 //
4591                                 if (p == q)
4592                                         return 2;
4593                         }
4594
4595                         var q_orig = q;
4596                         if (q.IsNullableType) {
4597                                 q = Nullable.NullableInfo.GetUnderlyingType (q);
4598                                 if (!BuiltinTypeSpec.IsPrimitiveTypeOrDecimal (q))
4599                                         return BetterTypeConversionImplicitConversion (rc, p_orig, q_orig);
4600
4601                                 if (q == p)
4602                                         return 1;
4603                         }
4604
4605                         return BetterTypeConversion (rc, p, q);
4606                 }
4607
4608                 //
4609                 // 7.4.3.4  Better conversion from type
4610                 //
4611                 public static int BetterTypeConversion (ResolveContext ec, TypeSpec p, TypeSpec q)
4612                 {
4613                         if (p == null || q == null)
4614                                 throw new InternalErrorException ("BetterTypeConversion got a null conversion");
4615
4616                         switch (p.BuiltinType) {
4617                         case BuiltinTypeSpec.Type.Int:
4618                                 if (q.BuiltinType == BuiltinTypeSpec.Type.UInt || q.BuiltinType == BuiltinTypeSpec.Type.ULong)
4619                                         return 1;
4620                                 break;
4621                         case BuiltinTypeSpec.Type.Long:
4622                                 if (q.BuiltinType == BuiltinTypeSpec.Type.ULong)
4623                                         return 1;
4624                                 break;
4625                         case BuiltinTypeSpec.Type.SByte:
4626                                 switch (q.BuiltinType) {
4627                                 case BuiltinTypeSpec.Type.Byte:
4628                                 case BuiltinTypeSpec.Type.UShort:
4629                                 case BuiltinTypeSpec.Type.UInt:
4630                                 case BuiltinTypeSpec.Type.ULong:
4631                                         return 1;
4632                                 }
4633                                 break;
4634                         case BuiltinTypeSpec.Type.Short:
4635                                 switch (q.BuiltinType) {
4636                                 case BuiltinTypeSpec.Type.UShort:
4637                                 case BuiltinTypeSpec.Type.UInt:
4638                                 case BuiltinTypeSpec.Type.ULong:
4639                                         return 1;
4640                                 }
4641                                 break;
4642                         case BuiltinTypeSpec.Type.Dynamic:
4643                                 // LAMESPEC: Dynamic conversions is not considered
4644                                 p = ec.Module.Compiler.BuiltinTypes.Object;
4645                                 break;
4646                         }
4647
4648                         switch (q.BuiltinType) {
4649                         case BuiltinTypeSpec.Type.Int:
4650                                 if (p.BuiltinType == BuiltinTypeSpec.Type.UInt || p.BuiltinType == BuiltinTypeSpec.Type.ULong)
4651                                         return 2;
4652                                 break;
4653                         case BuiltinTypeSpec.Type.Long:
4654                                 if (p.BuiltinType == BuiltinTypeSpec.Type.ULong)
4655                                         return 2;
4656                                 break;
4657                         case BuiltinTypeSpec.Type.SByte:
4658                                 switch (p.BuiltinType) {
4659                                 case BuiltinTypeSpec.Type.Byte:
4660                                 case BuiltinTypeSpec.Type.UShort:
4661                                 case BuiltinTypeSpec.Type.UInt:
4662                                 case BuiltinTypeSpec.Type.ULong:
4663                                         return 2;
4664                                 }
4665                                 break;
4666                         case BuiltinTypeSpec.Type.Short:
4667                                 switch (p.BuiltinType) {
4668                                 case BuiltinTypeSpec.Type.UShort:
4669                                 case BuiltinTypeSpec.Type.UInt:
4670                                 case BuiltinTypeSpec.Type.ULong:
4671                                         return 2;
4672                                 }
4673                                 break;
4674                         case BuiltinTypeSpec.Type.Dynamic:
4675                                 // LAMESPEC: Dynamic conversions is not considered
4676                                 q = ec.Module.Compiler.BuiltinTypes.Object;
4677                                 break;
4678                         }
4679
4680                         return BetterTypeConversionImplicitConversion (ec, p, q);
4681                 }
4682
4683                 static int BetterTypeConversionImplicitConversion (ResolveContext rc, TypeSpec p, TypeSpec q)
4684                 {
4685                         // TODO: this is expensive
4686                         Expression p_tmp = new EmptyExpression (p);
4687                         Expression q_tmp = new EmptyExpression (q);
4688
4689                         bool p_to_q = Convert.ImplicitConversionExists (rc, p_tmp, q);
4690                         bool q_to_p = Convert.ImplicitConversionExists (rc, q_tmp, p);
4691
4692                         if (p_to_q && !q_to_p)
4693                                 return 1;
4694
4695                         if (q_to_p && !p_to_q)
4696                                 return 2;
4697
4698                         return 0;
4699                 }
4700
4701                 /// <summary>
4702                 ///   Determines "Better function" between candidate
4703                 ///   and the current best match
4704                 /// </summary>
4705                 /// <remarks>
4706                 ///    Returns a boolean indicating :
4707                 ///     false if candidate ain't better
4708                 ///     true  if candidate is better than the current best match
4709                 /// </remarks>
4710                 bool BetterFunction (ResolveContext ec, Arguments args, MemberSpec candidate, AParametersCollection cparam, bool candidate_params,
4711                         MemberSpec best, AParametersCollection bparam, bool best_params)
4712                 {
4713                         AParametersCollection candidate_pd = ((IParametersMember) candidate).Parameters;
4714                         AParametersCollection best_pd = ((IParametersMember) best).Parameters;
4715
4716                         int candidate_better_count = 0;
4717                         int best_better_count = 0;
4718
4719                         bool are_equivalent = true;
4720                         int args_count = args == null ? 0 : args.Count;
4721                         int j = 0;
4722                         Argument a = null;
4723                         TypeSpec ct, bt;
4724                         for (int c_idx = 0, b_idx = 0; j < args_count; ++j, ++c_idx, ++b_idx) {
4725                                 a = args[j];
4726
4727                                 // Default arguments are ignored for better decision
4728                                 if (a.IsDefaultArgument)
4729                                         break;
4730
4731                                 //
4732                                 // When comparing named argument the parameter type index has to be looked up
4733                                 // in original parameter set (override version for virtual members)
4734                                 //
4735                                 NamedArgument na = a as NamedArgument;
4736                                 if (na != null) {
4737                                         int idx = cparam.GetParameterIndexByName (na.Name);
4738                                         ct = candidate_pd.Types[idx];
4739                                         if (candidate_params && candidate_pd.FixedParameters[idx].ModFlags == Parameter.Modifier.PARAMS)
4740                                                 ct = TypeManager.GetElementType (ct);
4741
4742                                         idx = bparam.GetParameterIndexByName (na.Name);
4743                                         bt = best_pd.Types[idx];
4744                                         if (best_params && best_pd.FixedParameters[idx].ModFlags == Parameter.Modifier.PARAMS)
4745                                                 bt = TypeManager.GetElementType (bt);
4746                                 } else {
4747                                         ct = candidate_pd.Types[c_idx];
4748                                         bt = best_pd.Types[b_idx];
4749
4750                                         if (candidate_params && candidate_pd.FixedParameters[c_idx].ModFlags == Parameter.Modifier.PARAMS) {
4751                                                 ct = TypeManager.GetElementType (ct);
4752                                                 --c_idx;
4753                                         }
4754
4755                                         if (best_params && best_pd.FixedParameters[b_idx].ModFlags == Parameter.Modifier.PARAMS) {
4756                                                 bt = TypeManager.GetElementType (bt);
4757                                                 --b_idx;
4758                                         }
4759                                 }
4760
4761                                 if (TypeSpecComparer.IsEqual (ct, bt))
4762                                         continue;
4763
4764                                 are_equivalent = false;
4765                                 int result = BetterExpressionConversion (ec, a, ct, bt);
4766
4767                                 // for each argument, the conversion to 'ct' should be no worse than 
4768                                 // the conversion to 'bt'.
4769                                 if (result == 2) {
4770                                         //
4771                                         // No optional parameters tie breaking rules for delegates overload resolution
4772                                         //
4773                                         if ((restrictions & Restrictions.CovariantDelegate) != 0)
4774                                                 return false;
4775
4776                                         ++best_better_count;
4777                                         continue;
4778                                 }
4779
4780                                 // for at least one argument, the conversion to 'ct' should be better than 
4781                                 // the conversion to 'bt'.
4782                                 if (result != 0)
4783                                         ++candidate_better_count;
4784                         }
4785
4786                         if (candidate_better_count != 0 && best_better_count == 0)
4787                                 return true;
4788
4789                         if (best_better_count > 0 && candidate_better_count == 0)
4790                                 return false;
4791
4792                         //
4793                         // LAMESPEC: Tie-breaking rules for not equivalent parameter types
4794                         //
4795                         if (!are_equivalent) {
4796                                 while (j < args_count && !args [j++].IsDefaultArgument) ;
4797
4798                                 //
4799                                 // A candidate with no default parameters is still better when there
4800                                 // is no better expression conversion and does not have more parameters
4801                                 //
4802                                 if (candidate_pd.Count < best_pd.Count) {
4803                                         if (candidate_params)
4804                                                 return false;
4805                                         
4806                                         if (!candidate_pd.FixedParameters [j - 1].HasDefaultValue)
4807                                                 return true;
4808
4809                                         if (best_pd.FixedParameters [j].HasDefaultValue)
4810                                                 return true;
4811                                         
4812                                 } else if (candidate_pd.Count == best_pd.Count) {
4813                                         if (candidate_params)
4814                                                 return false;
4815
4816                                         if (!candidate_pd.FixedParameters [j - 1].HasDefaultValue && best_pd.FixedParameters [j - 1].HasDefaultValue)
4817                                                 return true;
4818
4819                                         if (candidate_pd.FixedParameters [j - 1].HasDefaultValue && best_pd.HasParams)
4820                                                 return true;
4821                                 }
4822
4823                                 return false;
4824                         }
4825
4826                         //
4827                         // If candidate is applicable in its normal form and best has a params array and is applicable
4828                         // only in its expanded form, then candidate is better
4829                         //
4830                         if (candidate_params != best_params)
4831                                 return !candidate_params;
4832
4833                         //
4834                         // We have not reached end of parameters list due to params or used default parameters
4835                         //
4836                         bool defaults_ambiguity = false;
4837                         while (j < candidate_pd.Count && j < best_pd.Count) {
4838                                 var cand_param = candidate_pd.FixedParameters [j];
4839                                 var best_param = best_pd.FixedParameters [j];
4840
4841                                 if (cand_param.HasDefaultValue != best_param.HasDefaultValue && (!candidate_pd.HasParams || !best_pd.HasParams))
4842                                         return cand_param.HasDefaultValue;
4843
4844                                 defaults_ambiguity = true;
4845                                 if (candidate_pd.Count == best_pd.Count) {
4846                                         //
4847                                         // LAMESPEC:
4848                                         //
4849                                         // void Foo (int i = 0) is better than void Foo (params int[]) for Foo ()
4850                                         // void Foo (string[] s, string value = null) is better than Foo (string s, params string[]) for Foo (null) or Foo ()
4851                                         //
4852                                         if (cand_param.HasDefaultValue) {
4853                                                 ++j;
4854                                                 continue;
4855                                         }
4856
4857                                         break;
4858                                 }
4859
4860                                 //
4861                                 // Neither is better when not all arguments are provided
4862                                 //
4863                                 // void Foo (string s, int i = 0) <-> Foo (string s, int i = 0, int i2 = 0)
4864                                 // void Foo (string s, int i = 0) <-> Foo (string s, byte i = 0)
4865                                 // void Foo (string s, params int[]) <-> Foo (string s, params byte[])
4866                                 //
4867                                 ++j;
4868                         }
4869
4870                         if (candidate_pd.Count != best_pd.Count) {
4871                                 if (defaults_ambiguity && best_pd.Count - 1 == j)
4872                                         return best_pd.HasParams;
4873
4874                                 return candidate_pd.Count < best_pd.Count;
4875                         }
4876
4877                         //
4878                         // One is a non-generic method and second is a generic method, then non-generic is better
4879                         //
4880                         if (best.IsGeneric != candidate.IsGeneric)
4881                                 return best.IsGeneric;
4882
4883                         //
4884                         // Both methods have the same number of parameters, and the parameters have equal types
4885                         // Pick the "more specific" signature using rules over original (non-inflated) types
4886                         //
4887                         var candidate_def_pd = ((IParametersMember) candidate.MemberDefinition).Parameters;
4888                         var best_def_pd = ((IParametersMember) best.MemberDefinition).Parameters;
4889
4890                         bool specific_at_least_once = false;
4891                         for (j = 0; j < args_count; ++j) {
4892                                 NamedArgument na = args_count == 0 ? null : args [j] as NamedArgument;
4893                                 if (na != null) {
4894                                         ct = candidate_def_pd.Types[cparam.GetParameterIndexByName (na.Name)];
4895                                         bt = best_def_pd.Types[bparam.GetParameterIndexByName (na.Name)];
4896                                 } else {
4897                                         ct = candidate_def_pd.Types[j];
4898                                         bt = best_def_pd.Types[j];
4899                                 }
4900
4901                                 if (ct == bt)
4902                                         continue;
4903                                 TypeSpec specific = MoreSpecific (ct, bt);
4904                                 if (specific == bt)
4905                                         return false;
4906                                 if (specific == ct)
4907                                         specific_at_least_once = true;
4908                         }
4909
4910                         if (specific_at_least_once)
4911                                 return true;
4912
4913                         return false;
4914                 }
4915
4916                 static bool CheckInflatedArguments (MethodSpec ms)
4917                 {
4918                         if (!TypeParameterSpec.HasAnyTypeParameterTypeConstrained (ms.GenericDefinition))
4919                                 return true;
4920
4921                         // Setup constraint checker for probing only
4922                         ConstraintChecker cc = new ConstraintChecker (null);
4923
4924                         var mp = ms.Parameters.Types;
4925                         for (int i = 0; i < mp.Length; ++i) {
4926                                 var type = mp[i] as InflatedTypeSpec;
4927                                 if (type == null)
4928                                         continue;
4929
4930                                 var targs = type.TypeArguments;
4931                                 if (targs.Length == 0)
4932                                         continue;
4933
4934                                 // TODO: Checking inflated MVAR arguments should be enough
4935                                 if (!cc.CheckAll (type.GetDefinition (), targs, type.Constraints, Location.Null))
4936                                         return false;
4937                         }
4938
4939                         return true;
4940                 }
4941
4942                 public static void Error_ConstructorMismatch (ResolveContext rc, TypeSpec type, int argCount, Location loc)
4943                 {
4944                         rc.Report.Error (1729, loc,
4945                                 "The type `{0}' does not contain a constructor that takes `{1}' arguments",
4946                                 type.GetSignatureForError (), argCount.ToString ());
4947                 }
4948
4949                 //
4950                 // Determines if the candidate method is applicable to the given set of arguments
4951                 // There could be two different set of parameters for same candidate where one
4952                 // is the closest override for default values and named arguments checks and second
4953                 // one being the virtual base for the parameter types and modifiers.
4954                 //
4955                 // A return value rates candidate method compatibility,
4956                 // -1 = fatal error
4957                 // 0 = the best, int.MaxValue = the worst
4958                 //
4959                 int IsApplicable (ResolveContext ec, ref Arguments arguments, int arg_count, ref MemberSpec candidate, IParametersMember pm, ref bool params_expanded_form, ref bool dynamicArgument, ref TypeSpec returnType, bool errorMode)
4960                 {
4961                         //
4962                         // Each step has allocated 10 values, it can overflow for
4963                         // more than 10 arguments but that's ok as it's used for
4964                         // better error reporting only
4965                         //
4966                         const int ArgumentCountMismatch         = 1000000000;
4967                         const int NamedArgumentsMismatch        = 100000000;
4968                         const int DefaultArgumentMismatch       = 10000000;
4969                         const int UnexpectedTypeArguments       = 1000000;
4970                         const int TypeArgumentsMismatch         = 100000;
4971                         const int InflatedTypesMismatch         = 10000;
4972
4973                         // Parameters of most-derived type used mainly for named and optional parameters
4974                         var pd = pm.Parameters;
4975
4976                         // Used for params modifier only, that's legacy of C# 1.0 which uses base type for
4977                         // params modifier instead of most-derived type
4978                         var cpd = ((IParametersMember) candidate).Parameters;
4979                         int param_count = pd.Count;
4980                         int optional_count = 0;
4981                         int score;
4982                         Arguments orig_args = arguments;
4983
4984                         if (arg_count != param_count) {
4985                                 //
4986                                 // No arguments expansion when doing exact match for delegates
4987                                 //
4988                                 if ((restrictions & Restrictions.CovariantDelegate) == 0) {
4989                                         for (int i = 0; i < pd.Count; ++i) {
4990                                                 if (pd.FixedParameters[i].HasDefaultValue) {
4991                                                         optional_count = pd.Count - i;
4992                                                         break;
4993                                                 }
4994                                         }
4995                                 }
4996
4997                                 if (optional_count != 0) {
4998                                         // Readjust expected number when params used
4999                                         if (cpd.HasParams) {
5000                                                 optional_count--;
5001                                                 if (arg_count < param_count)
5002                                                         param_count--;
5003                                         } else if (arg_count > param_count) {
5004                                                 int args_gap = System.Math.Abs (arg_count - param_count);
5005                                                 return ArgumentCountMismatch + args_gap;
5006                                         } else if (arg_count < param_count - optional_count) {
5007                                                 int args_gap = System.Math.Abs (param_count - optional_count - arg_count);
5008                                                 return ArgumentCountMismatch + args_gap;
5009                                         }
5010                                 } else if (arg_count != param_count) {
5011                                         int args_gap = System.Math.Abs (arg_count - param_count);
5012                                         if (!cpd.HasParams)
5013                                                 return ArgumentCountMismatch + args_gap;
5014                                         if (arg_count < param_count - 1)
5015                                                 return ArgumentCountMismatch + args_gap;
5016                                 }
5017
5018                                 // Resize to fit optional arguments
5019                                 if (optional_count != 0) {
5020                                         if (arguments == null) {
5021                                                 arguments = new Arguments (optional_count);
5022                                         } else {
5023                                                 // Have to create a new container, so the next run can do same
5024                                                 var resized = new Arguments (param_count);
5025                                                 resized.AddRange (arguments);
5026                                                 arguments = resized;
5027                                         }
5028
5029                                         for (int i = arg_count; i < param_count; ++i)
5030                                                 arguments.Add (null);
5031                                 }
5032                         }
5033
5034                         if (arg_count > 0) {
5035                                 //
5036                                 // Shuffle named arguments to the right positions if there are any
5037                                 //
5038                                 if (arguments[arg_count - 1] is NamedArgument) {
5039                                         arg_count = arguments.Count;
5040
5041                                         for (int i = 0; i < arg_count; ++i) {
5042                                                 bool arg_moved = false;
5043                                                 while (true) {
5044                                                         NamedArgument na = arguments[i] as NamedArgument;
5045                                                         if (na == null)
5046                                                                 break;
5047
5048                                                         int index = pd.GetParameterIndexByName (na.Name);
5049
5050                                                         // Named parameter not found
5051                                                         if (index < 0)
5052                                                                 return NamedArgumentsMismatch - i;
5053
5054                                                         // already reordered
5055                                                         if (index == i)
5056                                                                 break;
5057
5058                                                         Argument temp;
5059                                                         if (index >= param_count) {
5060                                                                 // When using parameters which should not be available to the user
5061                                                                 if ((cpd.FixedParameters[index].ModFlags & Parameter.Modifier.PARAMS) == 0)
5062                                                                         break;
5063
5064                                                                 arguments.Add (null);
5065                                                                 ++arg_count;
5066                                                                 temp = null;
5067                                                         } else {
5068                                                                 if (index == arg_count)
5069                                                                         return NamedArgumentsMismatch - i - 1;
5070
5071                                                                 temp = arguments [index];
5072
5073                                                                 // The slot has been taken by positional argument
5074                                                                 if (temp != null && !(temp is NamedArgument))
5075                                                                         return NamedArgumentsMismatch - i - 1;
5076                                                         }
5077
5078                                                         if (!arg_moved) {
5079                                                                 arguments = arguments.MarkOrderedArgument (na);
5080                                                                 arg_moved = true;
5081                                                         }
5082
5083                                                         if (arguments == orig_args) {
5084                                                                 arguments = new Arguments (orig_args.Count);
5085                                                                 arguments.AddRange (orig_args);
5086                                                         }
5087
5088                                                         arguments[index] = arguments[i];
5089                                                         arguments[i] = temp;
5090
5091                                                         if (temp == null)
5092                                                                 break;
5093                                                 }
5094                                         }
5095                                 } else {
5096                                         arg_count = arguments.Count;
5097                                 }
5098                         } else if (arguments != null) {
5099                                 arg_count = arguments.Count;
5100                         }
5101
5102                         //
5103                         // Don't do any expensive checks when the candidate cannot succeed
5104                         //
5105                         if (arg_count != param_count && !cpd.HasParams)
5106                                 return DefaultArgumentMismatch - System.Math.Abs (param_count - arg_count);
5107
5108                         var dep = candidate.GetMissingDependencies ();
5109                         if (dep != null) {
5110                                 ImportedTypeDefinition.Error_MissingDependency (ec, dep, loc);
5111                                 return -1;
5112                         }
5113
5114                         //
5115                         // 1. Handle generic method using type arguments when specified or type inference
5116                         //
5117                         TypeSpec[] ptypes;
5118                         var ms = candidate as MethodSpec;
5119                         if (ms != null && ms.IsGeneric) {
5120                                 if (type_arguments != null) {
5121                                         var g_args_count = ms.Arity;
5122                                         if (g_args_count != type_arguments.Count)
5123                                                 return TypeArgumentsMismatch - System.Math.Abs (type_arguments.Count - g_args_count);
5124
5125                                         if (type_arguments.Arguments != null)
5126                                                 ms = ms.MakeGenericMethod (ec, type_arguments.Arguments);
5127                                 } else {
5128                                         //
5129                                         // Deploy custom error reporting for infered anonymous expression or lambda methods. When
5130                                         // probing lambda methods keep all errors reported in separate set and once we are done and no best
5131                                         // candidate was found use the set to report more details about what was wrong with lambda body.
5132                                         // The general idea is to distinguish between code errors and errors caused by
5133                                         // trial-and-error type inference
5134                                         //
5135                                         if (lambda_conv_msgs == null) {
5136                                                 for (int i = 0; i < arg_count; i++) {
5137                                                         Argument a = arguments[i];
5138                                                         if (a == null)
5139                                                                 continue;
5140
5141                                                         var am = a.Expr as AnonymousMethodExpression;
5142                                                         if (am != null) {
5143                                                                 if (lambda_conv_msgs == null)
5144                                                                         lambda_conv_msgs = new SessionReportPrinter ();
5145
5146                                                                 am.TypeInferenceReportPrinter = lambda_conv_msgs;
5147                                                         }
5148                                                 }
5149                                         }
5150
5151                                         var ti = new TypeInference (arguments);
5152                                         TypeSpec[] i_args = ti.InferMethodArguments (ec, ms);
5153
5154                                         if (i_args == null)
5155                                                 return TypeArgumentsMismatch - ti.InferenceScore;
5156
5157                                         //
5158                                         // Clear any error messages when the result was success
5159                                         //
5160                                         if (lambda_conv_msgs != null)
5161                                                 lambda_conv_msgs.ClearSession ();
5162
5163                                         if (i_args.Length != 0) {
5164                                                 if (!errorMode) {
5165                                                         for (int i = 0; i < i_args.Length; ++i) {
5166                                                                 var ta = i_args [i];
5167                                                                 if (!ta.IsAccessible (ec))
5168                                                                         return TypeArgumentsMismatch - i;
5169                                                         }
5170                                                 }
5171
5172                                                 ms = ms.MakeGenericMethod (ec, i_args);
5173                                         }
5174                                 }
5175
5176                                 //
5177                                 // Type arguments constraints have to match for the method to be applicable
5178                                 //
5179                                 if (!CheckInflatedArguments (ms)) {
5180                                         candidate = ms;
5181                                         return InflatedTypesMismatch;
5182                                 }
5183
5184                                 //
5185                                 // We have a generic return type and at same time the method is override which
5186                                 // means we have to also inflate override return type in case the candidate is
5187                                 // best candidate and override return type is different to base return type.
5188                                 // 
5189                                 // virtual Foo<T, object> with override Foo<T, dynamic>
5190                                 //
5191                                 if (candidate != pm) {
5192                                         MethodSpec override_ms = (MethodSpec) pm;
5193                                         var inflator = new TypeParameterInflator (ec, ms.DeclaringType, override_ms.GenericDefinition.TypeParameters, ms.TypeArguments);
5194                                         returnType = inflator.Inflate (returnType);
5195                                 } else {
5196                                         returnType = ms.ReturnType;
5197                                 }
5198
5199                                 candidate = ms;
5200                                 pd = ms.Parameters;
5201                                 ptypes = pd.Types;
5202                         } else {
5203                                 if (type_arguments != null)
5204                                         return UnexpectedTypeArguments;
5205
5206                                 ptypes = cpd.Types;
5207                         }
5208
5209                         //
5210                         // 2. Each argument has to be implicitly convertible to method parameter
5211                         //
5212                         Parameter.Modifier p_mod = 0;
5213                         TypeSpec pt = null;
5214
5215                         for (int i = 0; i < arg_count; i++) {
5216                                 Argument a = arguments[i];
5217                                 if (a == null) {
5218                                         var fp = pd.FixedParameters[i];
5219                                         if (!fp.HasDefaultValue) {
5220                                                 arguments = orig_args;
5221                                                 return arg_count * 2 + 2;
5222                                         }
5223
5224                                         //
5225                                         // Get the default value expression, we can use the same expression
5226                                         // if the type matches
5227                                         //
5228                                         Expression e = fp.DefaultValue;
5229                                         if (e != null) {
5230                                                 e = ResolveDefaultValueArgument (ec, ptypes[i], e, loc);
5231                                                 if (e == null) {
5232                                                         // Restore for possible error reporting
5233                                                         for (int ii = i; ii < arg_count; ++ii)
5234                                                                 arguments.RemoveAt (i);
5235
5236                                                         return (arg_count - i) * 2 + 1;
5237                                                 }
5238                                         }
5239
5240                                         if ((fp.ModFlags & Parameter.Modifier.CallerMask) != 0) {
5241                                                 //
5242                                                 // LAMESPEC: Attributes can be mixed together with build-in priority
5243                                                 //
5244                                                 if ((fp.ModFlags & Parameter.Modifier.CallerLineNumber) != 0) {
5245                                                         e = new IntLiteral (ec.BuiltinTypes, loc.Row, loc);
5246                                                 } else if ((fp.ModFlags & Parameter.Modifier.CallerFilePath) != 0) {
5247                                                         e = new StringLiteral (ec.BuiltinTypes, loc.SourceFile.GetFullPathName (ec.Module.Compiler.Settings.PathMap), loc);
5248                                                 } else if (ec.MemberContext.CurrentMemberDefinition != null) {
5249                                                         e = new StringLiteral (ec.BuiltinTypes, ec.MemberContext.CurrentMemberDefinition.GetCallerMemberName (), loc);
5250                                                 }
5251                                         }
5252
5253                                         arguments[i] = new Argument (e, Argument.AType.Default);
5254                                         continue;
5255                                 }
5256
5257                                 if (p_mod != Parameter.Modifier.PARAMS) {
5258                                         p_mod = (pd.FixedParameters[i].ModFlags & ~Parameter.Modifier.PARAMS) | (cpd.FixedParameters[i].ModFlags & Parameter.Modifier.PARAMS);
5259                                         pt = ptypes [i];
5260                                 } else if (!params_expanded_form) {
5261                                         params_expanded_form = true;
5262                                         pt = ((ElementTypeSpec) pt).Element;
5263                                         i -= 2;
5264                                         continue;
5265                                 }
5266
5267                                 score = 1;
5268                                 if (!params_expanded_form) {
5269                                         if (a.IsExtensionType) {
5270                                                 if (ExtensionMethodGroupExpr.IsExtensionTypeCompatible (a.Type, pt)) {
5271                                                         score = 0;
5272                                                         continue;
5273                                                 }
5274                                         } else {
5275                                                 score = IsArgumentCompatible (ec, a, p_mod, pt);
5276
5277                                                 if (score < 0)
5278                                                         dynamicArgument = true;
5279                                         }
5280                                 }
5281
5282                                 //
5283                                 // It can be applicable in expanded form (when not doing exact match like for delegates)
5284                                 //
5285                                 if (score != 0 && (p_mod & Parameter.Modifier.PARAMS) != 0 && (restrictions & Restrictions.CovariantDelegate) == 0) {
5286                                         if (!params_expanded_form) {
5287                                                 pt = ((ElementTypeSpec) pt).Element;
5288                                         }
5289
5290                                         if (score > 0)
5291                                                 score = IsArgumentCompatible (ec, a, Parameter.Modifier.NONE, pt);
5292
5293                                         if (score < 0) {
5294                                                 params_expanded_form = true;
5295                                                 dynamicArgument = true;
5296                                         } else if (score == 0 || arg_count > pd.Count) {
5297                                                 params_expanded_form = true;
5298                                         }
5299                                 }
5300
5301                                 if (score > 0) {
5302                                         if (params_expanded_form)
5303                                                 ++score;
5304                                         return (arg_count - i) * 2 + score;
5305                                 }
5306                         }
5307
5308                         //
5309                         // Restore original arguments for dynamic binder to keep the intention of original source code
5310                         //
5311                         if (dynamicArgument)
5312                                 arguments = orig_args;
5313
5314                         return 0;
5315                 }
5316
5317                 public static Expression ResolveDefaultValueArgument (ResolveContext ec, TypeSpec ptype, Expression e, Location loc)
5318                 {
5319                         if (e is Constant && e.Type == ptype)
5320                                 return e;
5321
5322                         //
5323                         // LAMESPEC: No idea what the exact rules are for System.Reflection.Missing.Value instead of null
5324                         //
5325                         if (e == EmptyExpression.MissingValue && (ptype.BuiltinType == BuiltinTypeSpec.Type.Object || ptype.BuiltinType == BuiltinTypeSpec.Type.Dynamic)) {
5326                                 e = new MemberAccess (new MemberAccess (new MemberAccess (
5327                                         new QualifiedAliasMember (QualifiedAliasMember.GlobalAlias, "System", loc), "Reflection", loc), "Missing", loc), "Value", loc);
5328                         } else if (e is Constant) {
5329                                 //
5330                                 // Handles int to int? conversions, DefaultParameterValue check
5331                                 //
5332                                 e = Convert.ImplicitConversionStandard (ec, e, ptype, loc);
5333                                 if (e == null)
5334                                         return null;
5335                         } else {
5336                                 e = new DefaultValueExpression (new TypeExpression (ptype, loc), loc);
5337                         }
5338
5339                         return e.Resolve (ec);
5340                 }
5341
5342                 //
5343                 // Tests argument compatibility with the parameter
5344                 // The possible return values are
5345                 // 0 - success
5346                 // 1 - modifier mismatch
5347                 // 2 - type mismatch
5348                 // -1 - dynamic binding required
5349                 //
5350                 int IsArgumentCompatible (ResolveContext ec, Argument argument, Parameter.Modifier param_mod, TypeSpec parameter)
5351                 {
5352                         //
5353                         // Types have to be identical when ref or out modifer
5354                         // is used and argument is not of dynamic type
5355                         //
5356                         if (((argument.Modifier | param_mod) & Parameter.Modifier.RefOutMask) != 0) {
5357                                 var arg_type = argument.Type;
5358
5359                                 if ((argument.Modifier & Parameter.Modifier.RefOutMask) != (param_mod & Parameter.Modifier.RefOutMask)) {
5360                                         //
5361                                         // Using dynamic for ref/out parameter can still succeed at runtime
5362                                         //
5363                                         if (arg_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic && (argument.Modifier & Parameter.Modifier.RefOutMask) == 0 && (restrictions & Restrictions.CovariantDelegate) == 0)
5364                                                 return -1;
5365
5366                                         return 1;
5367                                 }
5368
5369                                 if (arg_type != parameter) {
5370                                         if (arg_type == InternalType.VarOutType)
5371                                                 return 0;
5372
5373                                         //
5374                                         // Do full equality check after quick path
5375                                         //
5376                                         if (!TypeSpecComparer.IsEqual (arg_type, parameter)) {
5377                                                 //
5378                                                 // Using dynamic for ref/out parameter can still succeed at runtime
5379                                                 //
5380                                                 if (arg_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic && (argument.Modifier & Parameter.Modifier.RefOutMask) == 0 && (restrictions & Restrictions.CovariantDelegate) == 0)
5381                                                         return -1;
5382
5383                                                 return 2;
5384                                         }
5385                                 }
5386
5387                         } else {
5388                                 if (argument.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic && (restrictions & Restrictions.CovariantDelegate) == 0)
5389                                         return -1;
5390
5391                                 //
5392                                 // Use implicit conversion in all modes to return same candidates when the expression
5393                                 // is used as argument or delegate conversion
5394                                 //
5395                                 if (!Convert.ImplicitConversionExists (ec, argument.Expr, parameter)) {
5396                                         return parameter.IsDelegate && argument.Expr is AnonymousMethodExpression ? 2 : 3;
5397                                 }
5398                         }
5399
5400                         return 0;
5401                 }
5402
5403                 static TypeSpec MoreSpecific (TypeSpec p, TypeSpec q)
5404                 {
5405                         if (TypeManager.IsGenericParameter (p) && !TypeManager.IsGenericParameter (q))
5406                                 return q;
5407                         if (!TypeManager.IsGenericParameter (p) && TypeManager.IsGenericParameter (q))
5408                                 return p;
5409
5410                         var ac_p = p as ArrayContainer;
5411                         if (ac_p != null) {
5412                                 var ac_q = q as ArrayContainer;
5413                                 if (ac_q == null)
5414                                         return null;
5415
5416                                 TypeSpec specific = MoreSpecific (ac_p.Element, ac_q.Element);
5417                                 if (specific == ac_p.Element)
5418                                         return p;
5419                                 if (specific == ac_q.Element)
5420                                         return q;
5421                         } else if (p.IsGeneric && q.IsGeneric) {
5422                                 var pargs = TypeManager.GetTypeArguments (p);
5423                                 var qargs = TypeManager.GetTypeArguments (q);
5424
5425                                 bool p_specific_at_least_once = false;
5426                                 bool q_specific_at_least_once = false;
5427
5428                                 for (int i = 0; i < pargs.Length; i++) {
5429                                         TypeSpec specific = MoreSpecific (pargs[i], qargs[i]);
5430                                         if (specific == pargs[i])
5431                                                 p_specific_at_least_once = true;
5432                                         if (specific == qargs[i])
5433                                                 q_specific_at_least_once = true;
5434                                 }
5435
5436                                 if (p_specific_at_least_once && !q_specific_at_least_once)
5437                                         return p;
5438                                 if (!p_specific_at_least_once && q_specific_at_least_once)
5439                                         return q;
5440                         }
5441
5442                         return null;
5443                 }
5444
5445                 //
5446                 // Find the best method from candidate list
5447                 //
5448                 public T ResolveMember<T> (ResolveContext rc, ref Arguments args) where T : MemberSpec, IParametersMember
5449                 {
5450                         List<AmbiguousCandidate> ambiguous_candidates = null;
5451
5452                         MemberSpec best_candidate;
5453                         Arguments best_candidate_args = null;
5454                         bool best_candidate_params = false;
5455                         bool best_candidate_dynamic = false;
5456                         int best_candidate_rate;
5457                         IParametersMember best_parameter_member = null;
5458
5459                         int args_count = args != null ? args.Count : 0;
5460
5461                         Arguments candidate_args = args;
5462                         bool error_mode = false;
5463                         MemberSpec invocable_member = null;
5464                         int applicable_candidates = 0;
5465
5466                         while (true) {
5467                                 best_candidate = null;
5468                                 best_candidate_rate = int.MaxValue;
5469
5470                                 var type_members = members;
5471                                 do {
5472                                         for (int i = 0; i < type_members.Count; ++i) {
5473                                                 var member = type_members[i];
5474
5475                                                 //
5476                                                 // Methods in a base class are not candidates if any method in a derived
5477                                                 // class is applicable
5478                                                 //
5479                                                 if ((member.Modifiers & Modifiers.OVERRIDE) != 0)
5480                                                         continue;
5481
5482                                                 if (!error_mode) {
5483                                                         if (!member.IsAccessible (rc))
5484                                                                 continue;
5485
5486                                                         if (rc.IsRuntimeBinder && !member.DeclaringType.IsAccessible (rc))
5487                                                                 continue;
5488
5489                                                         if ((member.Modifiers & (Modifiers.PROTECTED | Modifiers.STATIC)) == Modifiers.PROTECTED &&
5490                                                                 instance_qualifier != null && !instance_qualifier.CheckProtectedMemberAccess (rc, member)) {
5491                                                                 continue;
5492                                                         }
5493                                                 }
5494
5495                                                 IParametersMember pm = member as IParametersMember;
5496                                                 if (pm == null) {
5497                                                         //
5498                                                         // Will use it later to report ambiguity between best method and invocable member
5499                                                         //
5500                                                         if (Invocation.IsMemberInvocable (member))
5501                                                                 invocable_member = member;
5502
5503                                                         continue;
5504                                                 }
5505
5506                                                 //
5507                                                 // Overload resolution is looking for base member but using parameter names
5508                                                 // and default values from the closest member. That means to do expensive lookup
5509                                                 // for the closest override for virtual or abstract members
5510                                                 //
5511                                                 if ((member.Modifiers & (Modifiers.VIRTUAL | Modifiers.ABSTRACT)) != 0) {
5512                                                         var override_params = base_provider.GetOverrideMemberParameters (member);
5513                                                         if (override_params != null)
5514                                                                 pm = override_params;
5515                                                 }
5516
5517                                                 //
5518                                                 // Check if the member candidate is applicable
5519                                                 //
5520                                                 bool params_expanded_form = false;
5521                                                 bool dynamic_argument = false;
5522                                                 TypeSpec rt = pm.MemberType;
5523                                                 int candidate_rate = IsApplicable (rc, ref candidate_args, args_count, ref member, pm, ref params_expanded_form, ref dynamic_argument, ref rt, error_mode);
5524
5525                                                 if (lambda_conv_msgs != null)
5526                                                         lambda_conv_msgs.EndSession ();
5527
5528                                                 //
5529                                                 // How does it score compare to others
5530                                                 //
5531                                                 if (candidate_rate < best_candidate_rate) {
5532
5533                                                         // Fatal error (missing dependency), cannot continue
5534                                                         if (candidate_rate < 0)
5535                                                                 return null;
5536
5537                                                         applicable_candidates = 1;
5538                                                         if ((restrictions & Restrictions.GetEnumeratorLookup) != 0 && candidate_args.Count != 0) {
5539                                                                 // Only parameterless methods are considered
5540                                                         } else {
5541                                                                 best_candidate_rate = candidate_rate;
5542                                                                 best_candidate = member;
5543                                                                 best_candidate_args = candidate_args;
5544                                                                 best_candidate_params = params_expanded_form;
5545                                                                 best_candidate_dynamic = dynamic_argument;
5546                                                                 best_parameter_member = pm;
5547                                                                 best_candidate_return_type = rt;
5548                                                         }
5549                                                 } else if (candidate_rate == 0) {
5550                                                         //
5551                                                         // The member look is done per type for most operations but sometimes
5552                                                         // it's not possible like for binary operators overload because they
5553                                                         // are unioned between 2 sides
5554                                                         //
5555                                                         if ((restrictions & Restrictions.BaseMembersIncluded) != 0) {
5556                                                                 if (TypeSpec.IsBaseClass (best_candidate.DeclaringType, member.DeclaringType, true))
5557                                                                         continue;
5558                                                         }
5559
5560                                                         ++applicable_candidates;
5561                                                         bool is_better;
5562                                                         if (best_candidate.DeclaringType.IsInterface && member.DeclaringType.ImplementsInterface (best_candidate.DeclaringType, false)) {
5563                                                                 //
5564                                                                 // We pack all interface members into top level type which makes the overload resolution
5565                                                                 // more complicated for interfaces. We compensate it by removing methods with same
5566                                                                 // signature when building the cache hence this path should not really be hit often
5567                                                                 //
5568                                                                 // Example:
5569                                                                 // interface IA { void Foo (int arg); }
5570                                                                 // interface IB : IA { void Foo (params int[] args); }
5571                                                                 //
5572                                                                 // IB::Foo is the best overload when calling IB.Foo (1)
5573                                                                 //
5574                                                                 is_better = true;
5575                                                                 if (ambiguous_candidates != null) {
5576                                                                         foreach (var amb_cand in ambiguous_candidates) {
5577                                                                                 if (member.DeclaringType.ImplementsInterface (best_candidate.DeclaringType, false)) {
5578                                                                                         continue;
5579                                                                                 }
5580
5581                                                                                 is_better = false;
5582                                                                                 break;
5583                                                                         }
5584
5585                                                                         if (is_better)
5586                                                                                 ambiguous_candidates = null;
5587                                                                 }
5588                                                         } else {
5589                                                                 // Is the new candidate better
5590                                                                 is_better = BetterFunction (rc, candidate_args, member, pm.Parameters, params_expanded_form, best_candidate, best_parameter_member.Parameters, best_candidate_params);
5591                                                         }
5592
5593                                                         if (is_better) {
5594                                                                 best_candidate = member;
5595                                                                 best_candidate_args = candidate_args;
5596                                                                 best_candidate_params = params_expanded_form;
5597                                                                 best_candidate_dynamic = dynamic_argument;
5598                                                                 best_parameter_member = pm;
5599                                                                 best_candidate_return_type = rt;
5600                                                         } else {
5601                                                                 // It's not better but any other found later could be but we are not sure yet
5602                                                                 if (ambiguous_candidates == null)
5603                                                                         ambiguous_candidates = new List<AmbiguousCandidate> ();
5604
5605                                                                 ambiguous_candidates.Add (new AmbiguousCandidate (member, pm.Parameters, params_expanded_form));
5606                                                         }
5607                                                 }
5608
5609                                                 // Restore expanded arguments
5610                                                 candidate_args = args;
5611                                         }
5612                                 } while (best_candidate_rate != 0 && (type_members = base_provider.GetBaseMembers (type_members[0].DeclaringType)) != null);
5613
5614                                 //
5615                                 // We've found exact match
5616                                 //
5617                                 if (best_candidate_rate == 0)
5618                                         break;
5619
5620                                 //
5621                                 // Try extension methods lookup when no ordinary method match was found and provider enables it
5622                                 //
5623                                 if (!error_mode) {
5624                                         var emg = base_provider.LookupExtensionMethod (rc);
5625                                         if (emg != null) {
5626                                                 emg = emg.OverloadResolve (rc, ref args, null, restrictions);
5627                                                 if (emg != null) {
5628                                                         best_candidate_extension_group = emg;
5629                                                         return (T) (MemberSpec) emg.BestCandidate;
5630                                                 }
5631                                         }
5632                                 }
5633
5634                                 // Don't run expensive error reporting mode for probing
5635                                 if (IsProbingOnly)
5636                                         return null;
5637
5638                                 if (error_mode)
5639                                         break;
5640
5641                                 if (lambda_conv_msgs != null && !lambda_conv_msgs.IsEmpty)
5642                                         break;
5643
5644                                 lambda_conv_msgs = null;
5645                                 error_mode = true;
5646                         }
5647
5648                         //
5649                         // No best member match found, report an error
5650                         //
5651                         if (best_candidate_rate != 0 || error_mode) {
5652                                 ReportOverloadError (rc, best_candidate, best_parameter_member, best_candidate_args, best_candidate_params);
5653                                 return null;
5654                         }
5655
5656                         if (best_candidate_dynamic) {
5657                                 if (args[0].IsExtensionType) {
5658                                         rc.Report.Error (1973, loc,
5659                                                 "Type `{0}' does not contain a member `{1}' and the best extension method overload `{2}' cannot be dynamically dispatched. Consider calling the method without the extension method syntax",
5660                                                 args [0].Type.GetSignatureForError (), best_candidate.Name, best_candidate.GetSignatureForError ());
5661                                 }
5662
5663                                 //
5664                                 // Check type constraints only when explicit type arguments are used
5665                                 //
5666                                 if (applicable_candidates == 1 && best_candidate.IsGeneric && type_arguments != null) {
5667                                         MethodSpec bc = best_candidate as MethodSpec;
5668                                         if (bc != null && TypeParameterSpec.HasAnyTypeParameterConstrained (bc.GenericDefinition)) {
5669                                                 ConstraintChecker cc = new ConstraintChecker (rc);
5670                                                 cc.CheckAll (bc.GetGenericMethodDefinition (), bc.TypeArguments, bc.Constraints, loc);
5671                                         }
5672                                 }
5673
5674                                 BestCandidateIsDynamic = true;
5675                                 return null;
5676                         }
5677
5678                         //
5679                         // These flags indicates we are running delegate probing conversion. No need to
5680                         // do more expensive checks
5681                         // 
5682                         if ((restrictions & (Restrictions.ProbingOnly | Restrictions.CovariantDelegate)) == (Restrictions.CovariantDelegate | Restrictions.ProbingOnly))
5683                                 return (T) best_candidate;
5684
5685                         if (ambiguous_candidates != null) {
5686                                 //
5687                                 // Now check that there are no ambiguities i.e the selected method
5688                                 // should be better than all the others
5689                                 //
5690                                 for (int ix = 0; ix < ambiguous_candidates.Count; ix++) {
5691                                         var candidate = ambiguous_candidates [ix];
5692
5693                                         if (!BetterFunction (rc, best_candidate_args, best_candidate, best_parameter_member.Parameters, best_candidate_params, candidate.Member, candidate.Parameters, candidate.Expanded)) {
5694                                                 var ambiguous = candidate.Member;
5695                                                 if (custom_errors == null || !custom_errors.AmbiguousCandidates (rc, best_candidate, ambiguous)) {
5696                                                         rc.Report.SymbolRelatedToPreviousError (best_candidate);
5697                                                         rc.Report.SymbolRelatedToPreviousError (ambiguous);
5698                                                         rc.Report.Error (121, loc, "The call is ambiguous between the following methods or properties: `{0}' and `{1}'",
5699                                                                 best_candidate.GetSignatureForError (), ambiguous.GetSignatureForError ());
5700                                                 }
5701
5702                                                 return (T) best_candidate;
5703                                         }
5704                                 }
5705                         }
5706
5707                         if (invocable_member != null && !IsProbingOnly) {
5708                                 rc.Report.SymbolRelatedToPreviousError (best_candidate);
5709                                 rc.Report.SymbolRelatedToPreviousError (invocable_member);
5710                                 rc.Report.Warning (467, 2, loc, "Ambiguity between method `{0}' and invocable non-method `{1}'. Using method group",
5711                                         best_candidate.GetSignatureForError (), invocable_member.GetSignatureForError ());
5712                         }
5713
5714                         //
5715                         // And now check if the arguments are all
5716                         // compatible, perform conversions if
5717                         // necessary etc. and return if everything is
5718                         // all right
5719                         //
5720                         if (!VerifyArguments (rc, ref best_candidate_args, best_candidate, best_parameter_member, best_candidate_params))
5721                                 return null;
5722
5723                         if (best_candidate == null)
5724                                 return null;
5725
5726                         //
5727                         // Don't run possibly expensive checks in probing mode
5728                         //
5729                         if (!IsProbingOnly && !rc.IsInProbingMode) {
5730                                 //
5731                                 // Check ObsoleteAttribute on the best method
5732                                 //
5733                                 best_candidate.CheckObsoleteness (rc, loc);
5734
5735                                 best_candidate.MemberDefinition.SetIsUsed ();
5736                         }
5737
5738                         args = best_candidate_args;
5739                         return (T) best_candidate;
5740                 }
5741
5742                 public MethodSpec ResolveOperator (ResolveContext rc, ref Arguments args)
5743                 {
5744                         return ResolveMember<MethodSpec> (rc, ref args);
5745                 }
5746
5747                 void ReportArgumentMismatch (ResolveContext ec, int idx, MemberSpec method,
5748                                                                                                         Argument a, AParametersCollection expected_par, TypeSpec paramType)
5749                 {
5750                         if (custom_errors != null && custom_errors.ArgumentMismatch (ec, method, a, idx))
5751                                 return;
5752
5753                         if (a.Type == InternalType.ErrorType)
5754                                 return;
5755
5756                         if (a is CollectionElementInitializer.ElementInitializerArgument) {
5757                                 ec.Report.SymbolRelatedToPreviousError (method);
5758                                 if ((expected_par.FixedParameters[idx].ModFlags & Parameter.Modifier.RefOutMask) != 0) {
5759                                         ec.Report.Error (1954, loc, "The best overloaded collection initalizer method `{0}' cannot have `ref' or `out' modifier",
5760                                                 TypeManager.CSharpSignature (method));
5761                                         return;
5762                                 }
5763                                 ec.Report.Error (1950, loc, "The best overloaded collection initalizer method `{0}' has some invalid arguments",
5764                                           TypeManager.CSharpSignature (method));
5765                         } else if (IsDelegateInvoke) {
5766                                 ec.Report.Error (1594, loc, "Delegate `{0}' has some invalid arguments",
5767                                         DelegateType.GetSignatureForError ());
5768                         } else {
5769                                 ec.Report.SymbolRelatedToPreviousError (method);
5770                                 ec.Report.Error (1502, loc, "The best overloaded method match for `{0}' has some invalid arguments",
5771                                         method.GetSignatureForError ());
5772                         }
5773
5774                         Parameter.Modifier mod = idx >= expected_par.Count ? 0 : expected_par.FixedParameters[idx].ModFlags;
5775
5776                         string index = (idx + 1).ToString ();
5777                         if (((mod & Parameter.Modifier.RefOutMask) ^ (a.Modifier & Parameter.Modifier.RefOutMask)) != 0) {
5778                                 if ((mod & Parameter.Modifier.RefOutMask) == 0)
5779                                         ec.Report.Error (1615, a.Expr.Location, "Argument `#{0}' does not require `{1}' modifier. Consider removing `{1}' modifier",
5780                                                 index, Parameter.GetModifierSignature (a.Modifier));
5781                                 else
5782                                         ec.Report.Error (1620, a.Expr.Location, "Argument `#{0}' is missing `{1}' modifier",
5783                                                 index, Parameter.GetModifierSignature (mod));
5784                         } else {
5785                                 string p1 = a.GetSignatureForError ();
5786                                 string p2 = paramType.GetSignatureForError ();
5787
5788                                 if (p1 == p2) {
5789                                         p1 = a.Type.GetSignatureForErrorIncludingAssemblyName ();
5790                                         p2 = paramType.GetSignatureForErrorIncludingAssemblyName ();
5791                                 }
5792
5793                                 if ((mod & Parameter.Modifier.RefOutMask) != 0) {
5794                                         p1 = Parameter.GetModifierSignature (a.Modifier) + " " + p1;
5795                                         p2 = Parameter.GetModifierSignature (a.Modifier) + " " + p2;
5796                                 }
5797
5798                                 ec.Report.Error (1503, a.Expr.Location,
5799                                         "Argument `#{0}' cannot convert `{1}' expression to type `{2}'", index, p1, p2);
5800                         }
5801                 }
5802
5803                 //
5804                 // We have failed to find exact match so we return error info about the closest match
5805                 //
5806                 void ReportOverloadError (ResolveContext rc, MemberSpec best_candidate, IParametersMember pm, Arguments args, bool params_expanded)
5807                 {
5808                         int ta_count = type_arguments == null ? 0 : type_arguments.Count;
5809                         int arg_count = args == null ? 0 : args.Count;
5810
5811                         if (ta_count != best_candidate.Arity && (ta_count > 0 || ((IParametersMember) best_candidate).Parameters.IsEmpty)) {
5812                                 var mg = new MethodGroupExpr (new [] { best_candidate }, best_candidate.DeclaringType, loc);
5813                                 mg.Error_TypeArgumentsCannotBeUsed (rc, best_candidate, loc);
5814                                 return;
5815                         }
5816
5817                         if (lambda_conv_msgs != null && lambda_conv_msgs.Merge (rc.Report.Printer)) {
5818                                 return;
5819                         }
5820
5821
5822                         if ((best_candidate.Modifiers & (Modifiers.PROTECTED | Modifiers.STATIC)) == Modifiers.PROTECTED &&
5823                                 InstanceQualifier != null && !InstanceQualifier.CheckProtectedMemberAccess (rc, best_candidate)) {
5824                                 MemberExpr.Error_ProtectedMemberAccess (rc, best_candidate, InstanceQualifier.InstanceType, loc);
5825                         }
5826
5827                         //
5828                         // For candidates which match on parameters count report more details about incorrect arguments
5829                         //
5830                         if (pm != null) {
5831                                 if (pm.Parameters.Count == arg_count || params_expanded || HasUnfilledParams (best_candidate, pm, args)) {
5832                                         // Reject any inaccessible member
5833                                         if (!best_candidate.IsAccessible (rc) || !best_candidate.DeclaringType.IsAccessible (rc)) {
5834                                                 rc.Report.SymbolRelatedToPreviousError (best_candidate);
5835                                                 Expression.ErrorIsInaccesible (rc, best_candidate.GetSignatureForError (), loc);
5836                                                 return;
5837                                         }
5838
5839                                         var ms = best_candidate as MethodSpec;
5840                                         if (ms != null && ms.IsGeneric) {
5841                                                 bool constr_ok = true;
5842                                                 if (ms.TypeArguments != null)
5843                                                         constr_ok = new ConstraintChecker (rc.MemberContext).CheckAll (ms.GetGenericMethodDefinition (), ms.TypeArguments, ms.Constraints, loc);
5844
5845                                                 if (ta_count == 0 && ms.TypeArguments == null) {
5846                                                         if (custom_errors != null && custom_errors.TypeInferenceFailed (rc, best_candidate))
5847                                                                 return;
5848
5849                                                         if (constr_ok) {
5850                                                                 rc.Report.Error (411, loc,
5851                                                                         "The type arguments for method `{0}' cannot be inferred from the usage. Try specifying the type arguments explicitly",
5852                                                                         ms.GetGenericMethodDefinition ().GetSignatureForError ());
5853                                                         }
5854
5855                                                         return;
5856                                                 }
5857                                         }
5858
5859                                         VerifyArguments (rc, ref args, best_candidate, pm, params_expanded);
5860                                         return;
5861                                 }
5862                         }
5863
5864                         //
5865                         // We failed to find any method with correct argument count, report best candidate
5866                         //
5867                         if (custom_errors != null && custom_errors.NoArgumentMatch (rc, best_candidate))
5868                                 return;
5869
5870                         if (best_candidate.Kind == MemberKind.Constructor) {
5871                                 rc.Report.SymbolRelatedToPreviousError (best_candidate);
5872                                 Error_ConstructorMismatch (rc, best_candidate.DeclaringType, arg_count, loc);
5873                         } else if (IsDelegateInvoke) {
5874                                 rc.Report.SymbolRelatedToPreviousError (DelegateType);
5875                                 rc.Report.Error (1593, loc, "Delegate `{0}' does not take `{1}' arguments",
5876                                         DelegateType.GetSignatureForError (), arg_count.ToString ());
5877                         } else {
5878                                 string name = best_candidate.Kind == MemberKind.Indexer ? "this" : best_candidate.Name;
5879                                 rc.Report.SymbolRelatedToPreviousError (best_candidate);
5880                                 rc.Report.Error (1501, loc, "No overload for method `{0}' takes `{1}' arguments",
5881                                         name, arg_count.ToString ());
5882                         }
5883                 }
5884
5885                 static bool HasUnfilledParams (MemberSpec best_candidate, IParametersMember pm, Arguments args)
5886                 {
5887                         var p = ((IParametersMember)best_candidate).Parameters;
5888                         if (!p.HasParams)
5889                                 return false;
5890
5891                         string name = null;
5892                         for (int i = p.Count - 1; i != 0; --i) {
5893                                 var fp = p.FixedParameters [i];
5894                                 if ((fp.ModFlags & Parameter.Modifier.PARAMS) == 0)
5895                                         continue;
5896
5897                                 name = fp.Name;
5898                                 break;
5899                         }
5900
5901                         if (args == null)
5902                                 return false;
5903
5904                         foreach (var arg in args) {
5905                                 var na = arg as NamedArgument;
5906                                 if (na == null)
5907                                         continue;
5908
5909                                 if (na.Name == name) {
5910                                         name = null;
5911                                         break;
5912                                 }
5913                         }
5914
5915                         if (name == null)
5916                                 return false;
5917
5918                         return args.Count + 1 == pm.Parameters.Count;
5919                 }
5920
5921                 bool VerifyArguments (ResolveContext ec, ref Arguments args, MemberSpec member, IParametersMember pm, bool chose_params_expanded)
5922                 {
5923                         var pd = pm.Parameters;
5924                         var cpd = ((IParametersMember) member).Parameters;
5925                         var ptypes = cpd.Types;
5926
5927                         Parameter.Modifier p_mod = 0;
5928                         TypeSpec pt = null;
5929                         int a_idx = 0, a_pos = 0;
5930                         Argument a = null;
5931                         ArrayInitializer params_initializers = null;
5932                         bool has_unsafe_arg = pm.MemberType.IsPointer;
5933                         int arg_count = args == null ? 0 : args.Count;
5934
5935                         for (; a_idx < arg_count; a_idx++, ++a_pos) {
5936                                 a = args[a_idx];
5937                                 if (a == null)
5938                                         continue;
5939
5940                                 if (p_mod != Parameter.Modifier.PARAMS) {
5941                                         p_mod = cpd.FixedParameters [a_idx].ModFlags;
5942                                         pt = ptypes[a_idx];
5943                                         has_unsafe_arg |= pt.IsPointer;
5944
5945                                         if (p_mod == Parameter.Modifier.PARAMS) {
5946                                                 if (chose_params_expanded) {
5947                                                         params_initializers = new ArrayInitializer (arg_count - a_idx, a.Expr.Location);
5948                                                         pt = TypeManager.GetElementType (pt);
5949                                                 }
5950                                         }
5951                                 }
5952
5953                                 //
5954                                 // Types have to be identical when ref or out modifer is used 
5955                                 //
5956                                 if (((a.Modifier | p_mod) & Parameter.Modifier.RefOutMask) != 0) {
5957                                         if ((a.Modifier & Parameter.Modifier.RefOutMask) != (p_mod & Parameter.Modifier.RefOutMask))
5958                                                 break;
5959
5960                                         var arg_type = a.Type;
5961                                         if (arg_type == pt)
5962                                                 continue;
5963
5964                                         if (arg_type == InternalType.VarOutType) {
5965                                                 //
5966                                                 // Set underlying variable type based on parameter type
5967                                                 //
5968                                                 ((DeclarationExpression)a.Expr).Variable.Type = pt;
5969                                                 continue;
5970                                         }
5971
5972                                         if (!TypeSpecComparer.IsEqual (arg_type, pt))
5973                                                 break;
5974                                 }
5975
5976                                 NamedArgument na = a as NamedArgument;
5977                                 if (na != null) {
5978                                         int name_index = pd.GetParameterIndexByName (na.Name);
5979                                         if (name_index < 0 || name_index >= pd.Count) {
5980                                                 if (IsDelegateInvoke) {
5981                                                         ec.Report.SymbolRelatedToPreviousError (DelegateType);
5982                                                         ec.Report.Error (1746, na.Location,
5983                                                                 "The delegate `{0}' does not contain a parameter named `{1}'",
5984                                                                 DelegateType.GetSignatureForError (), na.Name);
5985                                                 } else {
5986                                                         ec.Report.SymbolRelatedToPreviousError (member);
5987                                                         ec.Report.Error (1739, na.Location,
5988                                                                 "The best overloaded method match for `{0}' does not contain a parameter named `{1}'",
5989                                                                 TypeManager.CSharpSignature (member), na.Name);
5990                                                 }
5991                                         } else if (args[name_index] != a && args[name_index] != null) {
5992                                                 if (IsDelegateInvoke)
5993                                                         ec.Report.SymbolRelatedToPreviousError (DelegateType);
5994                                                 else
5995                                                         ec.Report.SymbolRelatedToPreviousError (member);
5996
5997                                                 ec.Report.Error (1744, na.Location,
5998                                                         "Named argument `{0}' cannot be used for a parameter which has positional argument specified",
5999                                                         na.Name);
6000                                         }
6001                                 }
6002                                 
6003                                 if (a.Expr.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
6004                                         continue;
6005
6006                                 if ((restrictions & Restrictions.CovariantDelegate) != 0 && !Delegate.IsTypeCovariant (ec, a.Expr.Type, pt)) {
6007                                         if (a.IsExtensionType) {
6008                                                 // TODO: Should report better message type, something similar to CS1928/1929 instead of
6009                                                 // CS1061 but that still better than confusing CS0123
6010                                                 var ma = new MemberAccess (a.Expr, member.Name, loc);
6011                                                 ma.Error_TypeDoesNotContainDefinition (ec, a.Expr.Type, ma.Name);
6012                                         } else {
6013                                                 custom_errors.NoArgumentMatch (ec, member);
6014                                         }
6015                                         return false;
6016                                 }
6017
6018                                 Expression conv;
6019                                 if (a.IsExtensionType) {
6020                                         if (a.Expr.Type == pt || TypeSpecComparer.IsEqual (a.Expr.Type, pt)) {
6021                                                 conv = a.Expr;
6022                                         } else {
6023                                                 conv = Convert.ImplicitReferenceConversion (a.Expr, pt, false);
6024                                                 if (conv == null)
6025                                                         conv = Convert.ImplicitBoxingConversion (a.Expr, a.Expr.Type, pt);
6026                                         }
6027                                 } else {
6028                                         conv = Convert.ImplicitConversion (ec, a.Expr, pt, loc);
6029                                 }
6030
6031                                 if (conv == null)
6032                                         break;
6033
6034                                 //
6035                                 // Convert params arguments to an array initializer
6036                                 //
6037                                 if (params_initializers != null) {
6038                                         // we choose to use 'a.Expr' rather than 'conv' so that
6039                                         // we don't hide the kind of expression we have (esp. CompoundAssign.Helper)
6040                                         params_initializers.Add (a.Expr);
6041                                         args.RemoveAt (a_idx--);
6042                                         --arg_count;
6043                                         a.Expr = conv;
6044                                         continue;
6045                                 }
6046
6047                                 // Update the argument with the implicit conversion
6048                                 a.Expr = conv;
6049                         }
6050
6051                         if (a_idx != arg_count) {
6052                                 //
6053                                 // Convert all var out argument to error type for less confusing error reporting
6054                                 // when no matching overload is found
6055                                 //
6056                                 for (; a_idx < arg_count; a_idx++) {
6057                                         var arg = args [a_idx];
6058                                         if (arg == null)
6059                                                 continue;
6060
6061                                         if (arg.Type == InternalType.VarOutType) {
6062                                                 ((DeclarationExpression)arg.Expr).Variable.Type = InternalType.ErrorType;
6063                                         }
6064                                 }
6065
6066                                 ReportArgumentMismatch (ec, a_pos, member, a, pd, pt);
6067                                 return false;
6068                         }
6069
6070                         //
6071                         // Fill not provided arguments required by params modifier
6072                         //
6073                         if (params_initializers == null && arg_count + 1 == pd.Count) {
6074                                 if (args == null)
6075                                         args = new Arguments (1);
6076
6077                                 pt = ptypes[pd.Count - 1];
6078                                 pt = TypeManager.GetElementType (pt);
6079                                 has_unsafe_arg |= pt.IsPointer;
6080                                 params_initializers = new ArrayInitializer (0, loc);
6081                         }
6082
6083                         //
6084                         // Append an array argument with all params arguments
6085                         //
6086                         if (params_initializers != null) {
6087                                 args.Add (new Argument (
6088                                         new ArrayCreation (new TypeExpression (pt, loc), params_initializers, loc).Resolve (ec)));
6089                                 arg_count++;
6090                         }
6091
6092                         if (has_unsafe_arg) {
6093                                 if (ec.CurrentIterator != null) {
6094                                         Expression.UnsafeInsideIteratorError (ec, loc);
6095                                 } else if (!ec.IsUnsafe) {
6096                                         Expression.UnsafeError (ec, loc);
6097                                 }
6098                         }
6099
6100                         //
6101                         // We could infer inaccesible type arguments
6102                         //
6103                         if (type_arguments == null && member.IsGeneric) {
6104                                 var ms = (MethodSpec) member;
6105                                 foreach (var ta in ms.TypeArguments) {
6106                                         if (!ta.IsAccessible (ec)) {
6107                                                 ec.Report.SymbolRelatedToPreviousError (ta);
6108                                                 Expression.ErrorIsInaccesible (ec, member.GetSignatureForError (), loc);
6109                                                 break;
6110                                         }
6111                                 }
6112                         }
6113
6114                         return true;
6115                 }
6116         }
6117
6118         public class ConstantExpr : MemberExpr
6119         {
6120                 readonly ConstSpec constant;
6121
6122                 public ConstantExpr (ConstSpec constant, Location loc)
6123                 {
6124                         this.constant = constant;
6125                         this.loc = loc;
6126                 }
6127
6128                 public override string Name {
6129                         get { throw new NotImplementedException (); }
6130                 }
6131
6132                 public override string KindName {
6133                         get { return "constant"; }
6134                 }
6135
6136                 public override bool IsInstance {
6137                         get { return !IsStatic; }
6138                 }
6139
6140                 public override bool IsStatic {
6141                         get { return true; }
6142                 }
6143
6144                 protected override TypeSpec DeclaringType {
6145                         get { return constant.DeclaringType; }
6146                 }
6147
6148                 public override Expression CreateExpressionTree (ResolveContext ec)
6149                 {
6150                         throw new NotSupportedException ("ET");
6151                 }
6152
6153                 protected override Expression DoResolve (ResolveContext rc)
6154                 {
6155                         ResolveInstanceExpression (rc, null);
6156                         DoBestMemberChecks (rc, constant);
6157
6158                         if (rc.HasSet (ResolveContext.Options.NameOfScope)) {
6159                                 eclass = ExprClass.Value;
6160                                 type = constant.MemberType;
6161                                 return this;
6162                         }
6163
6164                         var c = constant.GetConstant (rc);
6165
6166                         // Creates reference expression to the constant value
6167                         return Constant.CreateConstantFromValue (constant.MemberType, c.GetValue (), loc);
6168                 }
6169
6170                 public override void Emit (EmitContext ec)
6171                 {
6172                         throw new NotSupportedException ();
6173                 }
6174
6175                 public override string GetSignatureForError ()
6176                 {
6177                         return constant.GetSignatureForError ();
6178                 }
6179
6180                 public override void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
6181                 {
6182                         constant.CheckObsoleteness (rc, expr.Location);
6183                 }
6184
6185                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
6186                 {
6187                         Error_TypeArgumentsCannotBeUsed (ec, "constant", GetSignatureForError (), loc);
6188                 }
6189         }
6190
6191         //
6192         // Fully resolved expression that references a Field
6193         //
6194         public class FieldExpr : MemberExpr, IDynamicAssign, IMemoryLocation, IVariableReference
6195         {
6196                 protected FieldSpec spec;
6197                 VariableInfo variable_info;
6198                 
6199                 LocalTemporary temp;
6200                 bool prepared;
6201                 
6202                 protected FieldExpr (Location l)
6203                 {
6204                         loc = l;
6205                 }
6206
6207                 public FieldExpr (FieldSpec spec, Location loc)
6208                 {
6209                         this.spec = spec;
6210                         this.loc = loc;
6211
6212                         type = spec.MemberType;
6213                 }
6214                 
6215                 public FieldExpr (FieldBase fi, Location l)
6216                         : this (fi.Spec, l)
6217                 {
6218                 }
6219
6220                 #region Properties
6221
6222                 public override string Name {
6223                         get {
6224                                 return spec.Name;
6225                         }
6226                 }
6227
6228                 public bool IsHoisted {
6229                         get {
6230                                 IVariableReference hv = InstanceExpression as IVariableReference;
6231                                 return hv != null && hv.IsHoisted;
6232                         }
6233                 }
6234
6235                 public override bool IsInstance {
6236                         get {
6237                                 return !spec.IsStatic;
6238                         }
6239                 }
6240
6241                 public override bool IsStatic {
6242                         get {
6243                                 return spec.IsStatic;
6244                         }
6245                 }
6246
6247                 public override string KindName {
6248                         get { return "field"; }
6249                 }
6250
6251                 public FieldSpec Spec {
6252                         get {
6253                                 return spec;
6254                         }
6255                 }
6256
6257                 protected override TypeSpec DeclaringType {
6258                         get {
6259                                 return spec.DeclaringType;
6260                         }
6261                 }
6262
6263                 public VariableInfo VariableInfo {
6264                         get {
6265                                 return variable_info;
6266                         }
6267                 }
6268
6269 #endregion
6270
6271                 public override string GetSignatureForError ()
6272                 {
6273                         return spec.GetSignatureForError ();
6274                 }
6275
6276                 public bool IsMarshalByRefAccess (ResolveContext rc)
6277                 {
6278                         // Checks possible ldflda of field access expression
6279                         return !spec.IsStatic && TypeSpec.IsValueType (spec.MemberType) && !(InstanceExpression is This) &&
6280                                 rc.Module.PredefinedTypes.MarshalByRefObject.Define () &&
6281                                 TypeSpec.IsBaseClass (spec.DeclaringType, rc.Module.PredefinedTypes.MarshalByRefObject.TypeSpec, false);
6282                 }
6283
6284                 public void SetHasAddressTaken ()
6285                 {
6286                         IVariableReference vr = InstanceExpression as IVariableReference;
6287                         if (vr != null) {
6288                                 vr.SetHasAddressTaken ();
6289                         }
6290                 }
6291
6292                 protected override void CloneTo (CloneContext clonectx, Expression target)
6293                 {
6294                         var t = (FieldExpr) target;
6295
6296                         if (InstanceExpression != null)
6297                                 t.InstanceExpression = InstanceExpression.Clone (clonectx);
6298                 }
6299
6300                 public override Expression CreateExpressionTree (ResolveContext ec)
6301                 {
6302                         if (ConditionalAccess) {
6303                                 Error_NullShortCircuitInsideExpressionTree (ec);
6304                         }
6305
6306                         return CreateExpressionTree (ec, true);
6307                 }
6308
6309                 public Expression CreateExpressionTree (ResolveContext ec, bool convertInstance)
6310                 {
6311                         Arguments args;
6312                         Expression instance;
6313
6314                         if (InstanceExpression == null) {
6315                                 instance = new NullLiteral (loc);
6316                         } else if (convertInstance) {
6317                                 instance = InstanceExpression.CreateExpressionTree (ec);
6318                         } else {
6319                                 args = new Arguments (1);
6320                                 args.Add (new Argument (InstanceExpression));
6321                                 instance = CreateExpressionFactoryCall (ec, "Constant", args);
6322                         }
6323
6324                         args = Arguments.CreateForExpressionTree (ec, null,
6325                                 instance,
6326                                 CreateTypeOfExpression ());
6327
6328                         return CreateExpressionFactoryCall (ec, "Field", args);
6329                 }
6330
6331                 public Expression CreateTypeOfExpression ()
6332                 {
6333                         return new TypeOfField (spec, loc);
6334                 }
6335
6336                 protected override Expression DoResolve (ResolveContext ec)
6337                 {
6338                         spec.MemberDefinition.SetIsUsed ();
6339
6340                         return DoResolve (ec, null);
6341                 }
6342
6343                 Expression DoResolve (ResolveContext ec, Expression rhs)
6344                 {
6345                         bool lvalue_instance = rhs != null && IsInstance && spec.DeclaringType.IsStruct;
6346
6347                         if (rhs != this) {
6348                                 ResolveConditionalAccessReceiver (ec);
6349
6350                                 if (ResolveInstanceExpression (ec, rhs)) {
6351                                         // Resolve the field's instance expression while flow analysis is turned
6352                                         // off: when accessing a field "a.b", we must check whether the field
6353                                         // "a.b" is initialized, not whether the whole struct "a" is initialized.
6354
6355                                         if (lvalue_instance) {
6356                                                 bool out_access = rhs == EmptyExpression.OutAccess || rhs == EmptyExpression.LValueMemberOutAccess;
6357
6358                                                 Expression right_side =
6359                                                         out_access ? EmptyExpression.LValueMemberOutAccess : EmptyExpression.LValueMemberAccess;
6360
6361                                                 InstanceExpression = InstanceExpression.ResolveLValue (ec, right_side);
6362                                         } else {
6363                                                 InstanceExpression = InstanceExpression.Resolve (ec, ResolveFlags.VariableOrValue);
6364                                         }
6365
6366                                         if (InstanceExpression == null)
6367                                                 return null;
6368                                 }
6369
6370                                 DoBestMemberChecks (ec, spec);
6371
6372                                 if (conditional_access_receiver)
6373                                         ec.With (ResolveContext.Options.DontSetConditionalAccessReceiver, false);
6374                         }
6375
6376                         var fb = spec as FixedFieldSpec;
6377                         IVariableReference var = InstanceExpression as IVariableReference;
6378
6379                         if (fb != null) {
6380                                 IFixedExpression fe = InstanceExpression as IFixedExpression;
6381                                 if (!ec.HasSet (ResolveContext.Options.FixedInitializerScope) && (fe == null || !fe.IsFixed)) {
6382                                         ec.Report.Error (1666, loc, "You cannot use fixed size buffers contained in unfixed expressions. Try using the fixed statement");
6383                                 }
6384
6385                                 if (InstanceExpression.eclass != ExprClass.Variable) {
6386                                         ec.Report.SymbolRelatedToPreviousError (spec);
6387                                         ec.Report.Error (1708, loc, "`{0}': Fixed size buffers can only be accessed through locals or fields",
6388                                                 TypeManager.GetFullNameSignature (spec));
6389                                 } else if (var != null && var.IsHoisted) {
6390                                         AnonymousMethodExpression.Error_AddressOfCapturedVar (ec, var, loc);
6391                                 }
6392
6393                                 return new FixedBufferPtr (this, fb.ElementType, loc).Resolve (ec);
6394                         }
6395
6396                         //
6397                         // Set flow-analysis variable info for struct member access. It will be check later
6398                         // for precise error reporting
6399                         //
6400                         if (var != null && var.VariableInfo != null && InstanceExpression.Type.IsStruct) {
6401                                 variable_info = var.VariableInfo.GetStructFieldInfo (Name);
6402                         }
6403
6404                         if (conditional_access_receiver)
6405                                 type = LiftMemberType (ec, type);
6406
6407                         if (ConditionalAccess && InstanceExpression != null && InstanceExpression.IsNull)
6408                                 return Constant.CreateConstantFromValue (type, null, loc);
6409
6410                         eclass = ExprClass.Variable;
6411                         return this;
6412                 }
6413
6414                 public override void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
6415                 {
6416                         spec.CheckObsoleteness (rc, expr.Location);
6417                 }
6418
6419                 public void SetFieldAssigned (FlowAnalysisContext fc)
6420                 {
6421                         if (!IsInstance)
6422                                 return;
6423
6424                         bool lvalue_instance = spec.DeclaringType.IsStruct;
6425                         if (lvalue_instance) {
6426                                 var var = InstanceExpression as IVariableReference;
6427                                 if (var != null && var.VariableInfo != null) {
6428                                         fc.SetStructFieldAssigned (var.VariableInfo, Name);
6429                                 }
6430                         }
6431
6432                         var fe = InstanceExpression as FieldExpr;
6433                         if (fe != null) {
6434                                 Expression instance;
6435
6436                                 do {
6437                                         instance = fe.InstanceExpression;
6438                                         var fe_instance = instance as FieldExpr;
6439                                         if ((fe_instance != null && !fe_instance.IsStatic) || instance is LocalVariableReference) {
6440                                                 if (TypeSpec.IsReferenceType (fe.Type) && instance.Type.IsStruct) {
6441                                                         var var = InstanceExpression as IVariableReference;
6442                                                         if (var != null && var.VariableInfo == null) {
6443                                                                 var var_inst = instance as IVariableReference;
6444                                                                 if (var_inst == null || (var_inst.VariableInfo != null && !fc.IsDefinitelyAssigned (var_inst.VariableInfo)))
6445                                                                         fc.Report.Warning (1060, 1, fe.loc, "Use of possibly unassigned field `{0}'", fe.Name);
6446                                                         }
6447                                                 }
6448
6449                                                 if (fe_instance != null) {
6450                                                         fe = fe_instance;
6451                                                         continue;
6452                                                 }
6453                                         }
6454
6455                                         break;
6456                                 } while (true);
6457
6458                                 if (instance != null && TypeSpec.IsReferenceType (instance.Type))
6459                                         instance.FlowAnalysis (fc);
6460                         } else {
6461                                 if (TypeSpec.IsReferenceType (InstanceExpression.Type))
6462                                         InstanceExpression.FlowAnalysis (fc);
6463                         }
6464                 }
6465
6466                 Expression Error_AssignToReadonly (ResolveContext rc, Expression right_side)
6467                 {
6468                         // The return value is always null.  Returning a value simplifies calling code.
6469         
6470                         if (right_side == EmptyExpression.OutAccess) {
6471                                 if (IsStatic) {
6472                                         rc.Report.Error (199, loc, "A static readonly field `{0}' cannot be passed ref or out (except in a static constructor)",
6473                                                 GetSignatureForError ());
6474                                 } else {
6475                                         rc.Report.Error (192, loc, "A readonly field `{0}' cannot be passed ref or out (except in a constructor)",
6476                                                 GetSignatureForError ());
6477                                 }
6478
6479                                 return null;
6480                         }
6481
6482                         if (right_side == EmptyExpression.LValueMemberAccess) {
6483                                 // Already reported as CS1648/CS1650
6484                                 return null;
6485                         }
6486
6487                         if (right_side == EmptyExpression.LValueMemberOutAccess) {
6488                                 if (IsStatic) {
6489                                         rc.Report.Error (1651, loc, "Fields of static readonly field `{0}' cannot be passed ref or out (except in a static constructor)",
6490                                                 GetSignatureForError ());
6491                                 } else {
6492                                         rc.Report.Error (1649, loc, "Members of readonly field `{0}' cannot be passed ref or out (except in a constructor)",
6493                                                 GetSignatureForError ());
6494                                 }
6495                                 return null;
6496                         }
6497
6498                         if (IsStatic) {
6499                                 rc.Report.Error (198, loc, "A static readonly field `{0}' cannot be assigned to (except in a static constructor or a variable initializer)",
6500                                         GetSignatureForError ());
6501                         } else {
6502                                 rc.Report.Error (191, loc, "A readonly field `{0}' cannot be assigned to (except in a constructor or a variable initializer)",
6503                                         GetSignatureForError ());
6504                         }
6505
6506                         return null;
6507                 }
6508
6509                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
6510                 {
6511                         if (HasConditionalAccess ())
6512                                 Error_NullPropagatingLValue (ec);
6513
6514                         if (spec is FixedFieldSpec) {
6515                                 // It could be much better error message but we want to be error compatible
6516                                 Error_ValueAssignment (ec, right_side);
6517                         }
6518
6519                         Expression e = DoResolve (ec, right_side);
6520
6521                         if (e == null)
6522                                 return null;
6523
6524                         spec.MemberDefinition.SetIsAssigned ();
6525
6526                         if ((right_side == EmptyExpression.UnaryAddress || right_side == EmptyExpression.OutAccess) &&
6527                                         (spec.Modifiers & Modifiers.VOLATILE) != 0) {
6528                                 ec.Report.Warning (420, 1, loc,
6529                                         "`{0}': A volatile field references will not be treated as volatile",
6530                                         spec.GetSignatureForError ());
6531                         }
6532
6533                         if (spec.IsReadOnly) {
6534                                 // InitOnly fields can only be assigned in constructors or initializers
6535                                 if (!ec.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.ConstructorScope))
6536                                         return Error_AssignToReadonly (ec, right_side);
6537
6538                                 if (ec.HasSet (ResolveContext.Options.ConstructorScope)) {
6539
6540                                         // InitOnly fields cannot be assigned-to in a different constructor from their declaring type
6541                                         if (ec.CurrentMemberDefinition.Parent.PartialContainer.Definition != spec.DeclaringType.GetDefinition ())
6542                                                 return Error_AssignToReadonly (ec, right_side);
6543                                         // static InitOnly fields cannot be assigned-to in an instance constructor
6544                                         if (IsStatic && !ec.IsStatic)
6545                                                 return Error_AssignToReadonly (ec, right_side);
6546                                         // instance constructors can't modify InitOnly fields of other instances of the same type
6547                                         if (!IsStatic && !(InstanceExpression is This))
6548                                                 return Error_AssignToReadonly (ec, right_side);
6549                                 }
6550                         }
6551
6552                         if (right_side == EmptyExpression.OutAccess && IsMarshalByRefAccess (ec)) {
6553                                 ec.Report.SymbolRelatedToPreviousError (spec.DeclaringType);
6554                                 ec.Report.Warning (197, 1, loc,
6555                                                 "Passing `{0}' as ref or out or taking its address may cause a runtime exception because it is a field of a marshal-by-reference class",
6556                                                 GetSignatureForError ());
6557                         }
6558
6559                         eclass = ExprClass.Variable;
6560                         return this;
6561                 }
6562
6563                 public override void FlowAnalysis (FlowAnalysisContext fc)
6564                 {
6565                         var var = InstanceExpression as IVariableReference;
6566                         if (var != null) {
6567                                 var vi = var.VariableInfo;
6568                                 if (vi != null && !fc.IsStructFieldDefinitelyAssigned (vi, Name)) {
6569                                         fc.Report.Error (170, loc, "Use of possibly unassigned field `{0}'", Name);
6570                                         return;
6571                                 }
6572
6573                                 if (TypeSpec.IsValueType (InstanceExpression.Type)) {
6574                                         var le = SkipLeftValueTypeAccess (InstanceExpression);
6575                                         if (le != null)
6576                                                 le.FlowAnalysis (fc);
6577
6578                                         return;
6579                                 }
6580                         }
6581
6582                         var da = conditional_access_receiver ? fc.BranchDefiniteAssignment () : null;
6583
6584                         base.FlowAnalysis (fc);
6585
6586                         if (conditional_access_receiver)
6587                                 fc.DefiniteAssignment = da;
6588                 }
6589
6590                 static Expression SkipLeftValueTypeAccess (Expression expr)
6591                 {
6592                         if (!TypeSpec.IsValueType (expr.Type))
6593                                 return expr;
6594
6595                         if (expr is VariableReference)
6596                                 return null;
6597
6598                         var fe = expr as FieldExpr;
6599                         if (fe == null)
6600                                 return expr;
6601
6602                         if (fe.InstanceExpression == null)
6603                                 return expr;
6604
6605                         return SkipLeftValueTypeAccess (fe.InstanceExpression);
6606                 }
6607
6608                 public override int GetHashCode ()
6609                 {
6610                         return spec.GetHashCode ();
6611                 }
6612                 
6613                 public bool IsFixed {
6614                         get {
6615                                 //
6616                                 // A variable of the form V.I is fixed when V is a fixed variable of a struct type
6617                                 //
6618                                 IVariableReference variable = InstanceExpression as IVariableReference;
6619                                 if (variable != null)
6620                                         return InstanceExpression.Type.IsStruct && variable.IsFixed;
6621
6622                                 IFixedExpression fe = InstanceExpression as IFixedExpression;
6623                                 return fe != null && fe.IsFixed;
6624                         }
6625                 }
6626
6627                 public override bool Equals (object obj)
6628                 {
6629                         FieldExpr fe = obj as FieldExpr;
6630                         if (fe == null)
6631                                 return false;
6632
6633                         if (spec != fe.spec)
6634                                 return false;
6635
6636                         if (InstanceExpression == null || fe.InstanceExpression == null)
6637                                 return true;
6638
6639                         return InstanceExpression.Equals (fe.InstanceExpression);
6640                 }
6641                 
6642                 public void Emit (EmitContext ec, bool leave_copy)
6643                 {
6644                         bool is_volatile = (spec.Modifiers & Modifiers.VOLATILE) != 0;
6645
6646                         if (IsStatic){
6647                                 if (is_volatile)
6648                                         ec.Emit (OpCodes.Volatile);
6649
6650                                 ec.Emit (OpCodes.Ldsfld, spec);
6651                         } else {
6652                                 var ca = ec.ConditionalAccess;
6653
6654                                 if (!prepared) {
6655                                         if (conditional_access_receiver)
6656                                                 ec.ConditionalAccess = new ConditionalAccessContext (type, ec.DefineLabel ());
6657
6658                                         EmitInstance (ec, false);
6659                                 }
6660
6661                                 // Optimization for build-in types
6662                                 if (type.IsStruct && type == ec.CurrentType && InstanceExpression.Type == type) {
6663                                         ec.EmitLoadFromPtr (type);
6664                                 } else {
6665                                         var ff = spec as FixedFieldSpec;
6666                                         if (ff != null) {
6667                                                 ec.Emit (OpCodes.Ldflda, spec);
6668                                                 ec.Emit (OpCodes.Ldflda, ff.Element);
6669                                         } else {
6670                                                 if (is_volatile)
6671                                                         ec.Emit (OpCodes.Volatile);
6672
6673                                                 ec.Emit (OpCodes.Ldfld, spec);
6674                                         }
6675                                 }
6676
6677                                 if (conditional_access_receiver) {
6678                                         ec.CloseConditionalAccess (type.IsNullableType && type != spec.MemberType ? type : null);
6679                                         ec.ConditionalAccess = ca;
6680                                 }
6681                         }
6682
6683                         if (leave_copy) {
6684                                 ec.Emit (OpCodes.Dup);
6685                                 if (!IsStatic) {
6686                                         temp = new LocalTemporary (this.Type);
6687                                         temp.Store (ec);
6688                                 }
6689                         }
6690                 }
6691
6692                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
6693                 {
6694                         bool has_await_source = ec.HasSet (BuilderContext.Options.AsyncBody) && source.ContainsEmitWithAwait ();
6695                         if (isCompound && !(source is DynamicExpressionStatement) && !has_await_source) {
6696                                 prepared = true;
6697                         }
6698
6699                         if (IsInstance) {
6700                                 if (ConditionalAccess)
6701                                         throw new NotImplementedException ("null operator assignment");
6702
6703                                 if (has_await_source)
6704                                         source = source.EmitToField (ec);
6705
6706                                 EmitInstance (ec, prepared);
6707                         }
6708
6709                         source.Emit (ec);
6710
6711                         if (leave_copy || ec.NotifyEvaluatorOnStore) {
6712                                 ec.Emit (OpCodes.Dup);
6713                                 if (!IsStatic) {
6714                                         temp = new LocalTemporary (this.Type);
6715                                         temp.Store (ec);
6716                                 }
6717                         }
6718
6719                         if ((spec.Modifiers & Modifiers.VOLATILE) != 0)
6720                                 ec.Emit (OpCodes.Volatile);
6721                                         
6722                         spec.MemberDefinition.SetIsAssigned ();
6723
6724                         if (IsStatic)
6725                                 ec.Emit (OpCodes.Stsfld, spec);
6726                         else
6727                                 ec.Emit (OpCodes.Stfld, spec);
6728
6729                         if (ec.NotifyEvaluatorOnStore) {
6730                                 if (!IsStatic)
6731                                         throw new NotImplementedException ("instance field write");
6732
6733                                 if (leave_copy)
6734                                         ec.Emit (OpCodes.Dup);
6735
6736                                 ec.Module.Evaluator.EmitValueChangedCallback (ec, Name, type, loc);
6737                         }
6738                         
6739                         if (temp != null) {
6740                                 temp.Emit (ec);
6741                                 temp.Release (ec);
6742                                 temp = null;
6743                         }
6744                 }
6745
6746                 //
6747                 // Emits store to field with prepared values on stack
6748                 //
6749                 public void EmitAssignFromStack (EmitContext ec)
6750                 {
6751                         if (IsStatic) {
6752                                 ec.Emit (OpCodes.Stsfld, spec);
6753                         } else {
6754                                 ec.Emit (OpCodes.Stfld, spec);
6755                         }
6756                 }
6757
6758                 public override void Emit (EmitContext ec)
6759                 {
6760                         Emit (ec, false);
6761                 }
6762
6763                 public override void EmitSideEffect (EmitContext ec)
6764                 {
6765                         bool is_volatile = (spec.Modifiers & Modifiers.VOLATILE) != 0;
6766
6767                         if (is_volatile) // || is_marshal_by_ref ())
6768                                 base.EmitSideEffect (ec);
6769                 }
6770
6771                 public virtual void AddressOf (EmitContext ec, AddressOp mode)
6772                 {
6773                         if ((mode & AddressOp.Store) != 0)
6774                                 spec.MemberDefinition.SetIsAssigned ();
6775                         if ((mode & AddressOp.Load) != 0)
6776                                 spec.MemberDefinition.SetIsUsed ();
6777
6778                         //
6779                         // Handle initonly fields specially: make a copy and then
6780                         // get the address of the copy.
6781                         //
6782                         bool need_copy;
6783                         if (spec.IsReadOnly){
6784                                 need_copy = true;
6785                                 if (ec.HasSet (EmitContext.Options.ConstructorScope) && spec.DeclaringType == ec.CurrentType) {
6786                                         if (IsStatic){
6787                                                 if (ec.IsStatic)
6788                                                         need_copy = false;
6789                                         } else
6790                                                 need_copy = false;
6791                                 }
6792                         } else
6793                                 need_copy = false;
6794                         
6795                         if (need_copy) {
6796                                 Emit (ec);
6797                                 var temp = ec.GetTemporaryLocal (type);
6798                                 ec.Emit (OpCodes.Stloc, temp);
6799                                 ec.Emit (OpCodes.Ldloca, temp);
6800                                 return;
6801                         }
6802
6803
6804                         if (IsStatic){
6805                                 ec.Emit (OpCodes.Ldsflda, spec);
6806                         } else {
6807                                 if (!prepared)
6808                                         EmitInstance (ec, false);
6809                                 ec.Emit (OpCodes.Ldflda, spec);
6810                         }
6811                 }
6812
6813                 public SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
6814                 {
6815                         return MakeExpression (ctx);
6816                 }
6817
6818                 public override SLE.Expression MakeExpression (BuilderContext ctx)
6819                 {
6820 #if STATIC
6821                         return base.MakeExpression (ctx);
6822 #else
6823                         return SLE.Expression.Field (
6824                                 IsStatic ? null : InstanceExpression.MakeExpression (ctx),
6825                                 spec.GetMetaInfo ());
6826 #endif
6827                 }
6828
6829                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
6830                 {
6831                         Error_TypeArgumentsCannotBeUsed (ec, "field", GetSignatureForError (), loc);
6832                 }
6833         }
6834
6835         
6836         //
6837         // Expression that evaluates to a Property.
6838         //
6839         // This is not an LValue because we need to re-write the expression. We
6840         // can not take data from the stack and store it.
6841         //
6842         sealed class PropertyExpr : PropertyOrIndexerExpr<PropertySpec>
6843         {
6844                 Arguments arguments;
6845                 FieldExpr backing_field;
6846
6847                 public PropertyExpr (PropertySpec spec, Location l)
6848                         : base (l)
6849                 {
6850                         best_candidate = spec;
6851                         type = spec.MemberType;
6852                 }
6853
6854                 #region Properties
6855
6856                 protected override Arguments Arguments {
6857                         get {
6858                                 return arguments;
6859                         }
6860                         set {
6861                                 arguments = value;
6862                         }
6863                 }
6864
6865                 protected override TypeSpec DeclaringType {
6866                         get {
6867                                 return best_candidate.DeclaringType;
6868                         }
6869                 }
6870
6871                 public override string Name {
6872                         get {
6873                                 return best_candidate.Name;
6874                         }
6875                 }
6876
6877                 public bool IsAutoPropertyAccess {
6878                         get {
6879                                 var prop = best_candidate.MemberDefinition as Property;
6880                                 return prop != null && prop.BackingField != null;
6881                         }
6882                 }
6883
6884                 public override bool IsInstance {
6885                         get {
6886                                 return !IsStatic;
6887                         }
6888                 }
6889
6890                 public override bool IsStatic {
6891                         get {
6892                                 return best_candidate.IsStatic;
6893                         }
6894                 }
6895
6896                 public override string KindName {
6897                         get { return "property"; }
6898                 }
6899
6900                 public PropertySpec PropertyInfo {
6901                         get {
6902                                 return best_candidate;
6903                         }
6904                 }
6905
6906                 #endregion
6907
6908                 public override MethodGroupExpr CanReduceLambda (AnonymousMethodBody body)
6909                 {
6910                         if (best_candidate == null || !(best_candidate.IsStatic || InstanceExpression is This))
6911                                 return null;
6912
6913                         var args_count = arguments == null ? 0 : arguments.Count;
6914                         if (args_count != body.Parameters.Count && args_count == 0)
6915                                 return null;
6916
6917                         var mg = MethodGroupExpr.CreatePredefined (best_candidate.Get, DeclaringType, loc);
6918                         mg.InstanceExpression = InstanceExpression;
6919
6920                         return mg;
6921                 }
6922
6923                 public static PropertyExpr CreatePredefined (PropertySpec spec, Location loc)
6924                 {
6925                         return new PropertyExpr (spec, loc) {
6926                                 Getter = spec.Get,
6927                                 Setter = spec.Set
6928                         };
6929                 }
6930
6931                 public override Expression CreateExpressionTree (ResolveContext ec)
6932                 {
6933                         if (ConditionalAccess) {
6934                                 Error_NullShortCircuitInsideExpressionTree (ec);
6935                         }
6936
6937                         Arguments args;
6938                         if (IsSingleDimensionalArrayLength ()) {
6939                                 args = new Arguments (1);
6940                                 args.Add (new Argument (InstanceExpression.CreateExpressionTree (ec)));
6941                                 return CreateExpressionFactoryCall (ec, "ArrayLength", args);
6942                         }
6943
6944                         args = new Arguments (2);
6945                         if (InstanceExpression == null)
6946                                 args.Add (new Argument (new NullLiteral (loc)));
6947                         else
6948                                 args.Add (new Argument (InstanceExpression.CreateExpressionTree (ec)));
6949                         args.Add (new Argument (new TypeOfMethod (Getter, loc)));
6950                         return CreateExpressionFactoryCall (ec, "Property", args);
6951                 }
6952
6953                 public Expression CreateSetterTypeOfExpression (ResolveContext rc)
6954                 {
6955                         DoResolveLValue (rc, null);
6956                         return new TypeOfMethod (Setter, loc);
6957                 }
6958
6959                 public override string GetSignatureForError ()
6960                 {
6961                         return best_candidate.GetSignatureForError ();
6962                 }
6963
6964                 public override SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
6965                 {
6966 #if STATIC
6967                         return base.MakeExpression (ctx);
6968 #else
6969                         return SLE.Expression.Property (InstanceExpression.MakeExpression (ctx), (MethodInfo) Setter.GetMetaInfo ());
6970 #endif
6971                 }
6972
6973                 public override SLE.Expression MakeExpression (BuilderContext ctx)
6974                 {
6975 #if STATIC
6976                         return base.MakeExpression (ctx);
6977 #else
6978                         return SLE.Expression.Property (InstanceExpression.MakeExpression (ctx), (MethodInfo) Getter.GetMetaInfo ());
6979 #endif
6980                 }
6981
6982                 void Error_PropertyNotValid (ResolveContext ec)
6983                 {
6984                         ec.Report.SymbolRelatedToPreviousError (best_candidate);
6985                         ec.Report.Error (1546, loc, "Property or event `{0}' is not supported by the C# language",
6986                                 GetSignatureForError ());
6987                 }
6988
6989                 bool IsSingleDimensionalArrayLength ()
6990                 {
6991                         if (best_candidate.DeclaringType.BuiltinType != BuiltinTypeSpec.Type.Array || !best_candidate.HasGet || Name != "Length")
6992                                 return false;
6993
6994                         ArrayContainer ac = InstanceExpression.Type as ArrayContainer;
6995                         return ac != null && ac.Rank == 1;
6996                 }
6997
6998                 public override void Emit (EmitContext ec, bool leave_copy)
6999                 {
7000                         //
7001                         // Special case: length of single dimension array property is turned into ldlen
7002                         //
7003                         if (IsSingleDimensionalArrayLength ()) {
7004                                 if (conditional_access_receiver) {
7005                                         ec.ConditionalAccess = new ConditionalAccessContext (type, ec.DefineLabel ());
7006                                 }
7007
7008                                 EmitInstance (ec, false);
7009
7010                                 ec.Emit (OpCodes.Ldlen);
7011                                 ec.Emit (OpCodes.Conv_I4);
7012
7013                                 if (conditional_access_receiver) {
7014                                         ec.CloseConditionalAccess (type);
7015                                 }
7016
7017                                 return;
7018                         }
7019
7020                         base.Emit (ec, leave_copy);
7021                 }
7022
7023                 public override void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
7024                 {
7025                         if (backing_field != null) {
7026                                 backing_field.EmitAssign (ec, source, leave_copy, false);
7027                                 return;
7028                         }
7029
7030                         Arguments args;
7031                         LocalTemporary await_source_arg = null;
7032
7033                         if (isCompound && !(source is DynamicExpressionStatement)) {
7034                                 emitting_compound_assignment = true;
7035                                 source.Emit (ec);
7036
7037                                 if (has_await_arguments) {
7038                                         await_source_arg = new LocalTemporary (Type);
7039                                         await_source_arg.Store (ec);
7040
7041                                         args = new Arguments (1);
7042                                         args.Add (new Argument (await_source_arg));
7043
7044                                         if (leave_copy) {
7045                                                 temp = await_source_arg;
7046                                         }
7047
7048                                         has_await_arguments = false;
7049                                 } else {
7050                                         args = null;
7051
7052                                         if (leave_copy) {
7053                                                 ec.Emit (OpCodes.Dup);
7054                                                 temp = new LocalTemporary (this.Type);
7055                                                 temp.Store (ec);
7056                                         }
7057                                 }
7058                         } else {
7059                                 args = arguments ?? new Arguments (1);
7060
7061                                 if (leave_copy) {
7062                                         source.Emit (ec);
7063                                         temp = new LocalTemporary (this.Type);
7064                                         temp.Store (ec);
7065                                         args.Add (new Argument (temp));
7066                                 } else {
7067                                         args.Add (new Argument (source));
7068                                 }
7069                         }
7070
7071                         emitting_compound_assignment = false;
7072
7073                         var call = new CallEmitter ();
7074                         call.InstanceExpression = InstanceExpression;
7075                         if (args == null)
7076                                 call.InstanceExpressionOnStack = true;
7077
7078                         if (ConditionalAccess) {
7079                                 call.ConditionalAccess = true;
7080                         }
7081
7082                         if (leave_copy)
7083                                 call.Emit (ec, Setter, args, loc);
7084                         else
7085                                 call.EmitStatement (ec, Setter, args, loc);
7086
7087                         if (temp != null) {
7088                                 temp.Emit (ec);
7089                                 temp.Release (ec);
7090                         }
7091
7092                         if (await_source_arg != null) {
7093                                 await_source_arg.Release (ec);
7094                         }
7095                 }
7096
7097                 public override void FlowAnalysis (FlowAnalysisContext fc)
7098                 {
7099                         var prop = best_candidate.MemberDefinition as Property;
7100                         if (prop != null && prop.BackingField != null) {
7101                                 var var = InstanceExpression as IVariableReference;
7102                                 if (var != null) {
7103                                         var vi = var.VariableInfo;
7104                                         if (vi != null && !fc.IsStructFieldDefinitelyAssigned (vi, prop.BackingField.Name)) {
7105                                                 fc.Report.Error (8079, loc, "Use of possibly unassigned auto-implemented property `{0}'", Name);
7106                                                 return;
7107                                         }
7108
7109                                         if (TypeSpec.IsValueType (InstanceExpression.Type) && InstanceExpression is VariableReference)
7110                                                 return;
7111                                 }
7112                         }
7113
7114                         var da = conditional_access_receiver ? fc.BranchDefiniteAssignment () : null;
7115
7116                         base.FlowAnalysis (fc);
7117
7118                         if (conditional_access_receiver)
7119                                 fc.DefiniteAssignment = da;
7120                 }
7121
7122                 protected override Expression OverloadResolve (ResolveContext rc, Expression right_side)
7123                 {
7124                         eclass = ExprClass.PropertyAccess;
7125
7126                         if (best_candidate.IsNotCSharpCompatible) {
7127                                 Error_PropertyNotValid (rc);
7128                         }
7129
7130                         ResolveInstanceExpression (rc, right_side);
7131
7132                         if ((best_candidate.Modifiers & (Modifiers.ABSTRACT | Modifiers.VIRTUAL)) != 0 && best_candidate.DeclaringType != InstanceExpression.Type) {
7133                                 var filter = new MemberFilter (best_candidate.Name, 0, MemberKind.Property, null, null);
7134                                 var p = MemberCache.FindMember (InstanceExpression.Type, filter, BindingRestriction.InstanceOnly | BindingRestriction.OverrideOnly) as PropertySpec;
7135                                 if (p != null) {
7136                                         type = p.MemberType;
7137                                 }
7138                         }
7139
7140                         DoBestMemberChecks (rc, best_candidate);
7141
7142                         // Handling of com-imported properties with any number of default property parameters
7143                         if (best_candidate.HasGet && !best_candidate.Get.Parameters.IsEmpty) {
7144                                 var p = best_candidate.Get.Parameters;
7145                                 arguments = new Arguments (p.Count);
7146                                 for (int i = 0; i < p.Count; ++i) {
7147                                         arguments.Add (new Argument (OverloadResolver.ResolveDefaultValueArgument (rc, p.Types [i], p.FixedParameters [i].DefaultValue, loc)));
7148                                 }
7149                         } else if (best_candidate.HasSet && best_candidate.Set.Parameters.Count > 1) {
7150                                 var p = best_candidate.Set.Parameters;
7151                                 arguments = new Arguments (p.Count - 1);
7152                                 for (int i = 0; i < p.Count - 1; ++i) {
7153                                         arguments.Add (new Argument (OverloadResolver.ResolveDefaultValueArgument (rc, p.Types [i], p.FixedParameters [i].DefaultValue, loc)));
7154                                 }
7155                         }
7156
7157                         return this;
7158                 }
7159
7160                 protected override bool ResolveAutopropertyAssignment (ResolveContext rc, Expression rhs)
7161                 {
7162                         if (!rc.HasSet (ResolveContext.Options.ConstructorScope))
7163                                 return false;
7164
7165                         var prop = best_candidate.MemberDefinition as Property;
7166                         if (prop == null || prop.Parent.PartialContainer != rc.CurrentMemberDefinition.Parent.PartialContainer) {
7167                                 var ps = MemberCache.FindMember (rc.CurrentType, MemberFilter.Property (best_candidate.Name, best_candidate.MemberType), BindingRestriction.DeclaredOnly) as PropertySpec;
7168                                 if (ps == null)
7169                                         return false;
7170
7171                                 prop = (Property)ps.MemberDefinition;
7172                         }
7173
7174                         var spec = prop.BackingField;
7175                         if (spec == null)
7176                                 return false;
7177
7178                         if (rc.IsStatic != spec.IsStatic)
7179                                 return false;
7180
7181                         if (!spec.IsStatic && (!(InstanceExpression is This) || InstanceExpression is BaseThis))
7182                                 return false;
7183
7184                         backing_field = new FieldExpr (prop.BackingField, loc);
7185                         backing_field.ResolveLValue (rc, rhs);
7186                         return true;
7187                 }
7188
7189                 public override void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
7190                 {
7191                         if (!best_candidate.IsAccessible (rc))
7192                                 ErrorIsInaccesible (rc, best_candidate.GetSignatureForError (), expr.Location);
7193
7194                         best_candidate.CheckObsoleteness (rc, expr.Location);
7195                 }
7196
7197                 public void SetBackingFieldAssigned (FlowAnalysisContext fc)
7198                 {
7199                         if (backing_field != null) {
7200                                 backing_field.SetFieldAssigned (fc);
7201                                 return;
7202                         }
7203
7204                         if (!IsAutoPropertyAccess)
7205                                 return;
7206
7207                         var prop = best_candidate.MemberDefinition as Property;
7208                         if (prop != null && prop.BackingField != null) {
7209                                 bool lvalue_instance = best_candidate.DeclaringType.IsStruct;
7210                                 if (lvalue_instance) {
7211                                         var var = InstanceExpression as IVariableReference;
7212                                         if (var != null && var.VariableInfo != null) {
7213                                                 fc.SetStructFieldAssigned (var.VariableInfo, prop.BackingField.Name);
7214                                         }
7215                                 }
7216                         }
7217                 }
7218
7219                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
7220                 {
7221                         Error_TypeArgumentsCannotBeUsed (ec, "property", GetSignatureForError (), loc);
7222                 }
7223         }
7224
7225         abstract class PropertyOrIndexerExpr<T> : MemberExpr, IDynamicAssign where T : PropertySpec
7226         {
7227                 // getter and setter can be different for base calls
7228                 MethodSpec getter, setter;
7229                 protected T best_candidate;
7230
7231                 protected LocalTemporary temp;
7232                 protected bool emitting_compound_assignment;
7233                 protected bool has_await_arguments;
7234
7235                 protected PropertyOrIndexerExpr (Location l)
7236                 {
7237                         loc = l;
7238                 }
7239
7240                 #region Properties
7241
7242                 protected abstract Arguments Arguments { get; set; }
7243
7244                 public MethodSpec Getter {
7245                         get {
7246                                 return getter;
7247                         }
7248                         set {
7249                                 getter = value;
7250                         }
7251                 }
7252
7253                 public MethodSpec Setter {
7254                         get {
7255                                 return setter;
7256                         }
7257                         set {
7258                                 setter = value;
7259                         }
7260                 }
7261
7262                 #endregion
7263
7264                 protected override Expression DoResolve (ResolveContext ec)
7265                 {
7266                         if (eclass == ExprClass.Unresolved) {
7267                                 ResolveConditionalAccessReceiver (ec);
7268
7269                                 var expr = OverloadResolve (ec, null);
7270                                 if (expr == null)
7271                                         return null;
7272
7273                                 if (expr != this) {
7274                                         using (ec.With (ResolveContext.Options.DontSetConditionalAccessReceiver, conditional_access_receiver))
7275                                                 return expr.Resolve (ec);
7276                                 }
7277
7278                                 if (conditional_access_receiver) {
7279                                         type = LiftMemberType (ec, type);
7280                                 }
7281                         }
7282
7283                         if (!ResolveGetter (ec))
7284                                 return null;
7285
7286                         return this;
7287                 }
7288
7289                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
7290                 {
7291                         if (HasConditionalAccess ())
7292                                 Error_NullPropagatingLValue (rc);
7293
7294                         if (right_side == EmptyExpression.OutAccess) {
7295                                 // TODO: best_candidate can be null at this point
7296                                 INamedBlockVariable variable = null;
7297                                 if (best_candidate != null && rc.CurrentBlock.ParametersBlock.TopBlock.GetLocalName (best_candidate.Name, rc.CurrentBlock, ref variable) && variable is Linq.RangeVariable) {
7298                                         rc.Report.Error (1939, loc, "A range variable `{0}' may not be passes as `ref' or `out' parameter",
7299                                                 best_candidate.Name);
7300                                 } else {
7301                                         right_side.DoResolveLValue (rc, this);
7302                                 }
7303                                 return null;
7304                         }
7305
7306                         if (eclass == ExprClass.Unresolved) {
7307                                 var expr = OverloadResolve (rc, right_side);
7308                                 if (expr == null)
7309                                         return null;
7310
7311                                 if (expr != this)
7312                                         return expr.ResolveLValue (rc, right_side);
7313                         } else {
7314                                 ResolveInstanceExpression (rc, right_side);
7315                         }
7316
7317                         if (!best_candidate.HasSet) {
7318                                 if (ResolveAutopropertyAssignment (rc, right_side))
7319                                         return this;
7320
7321                                 rc.Report.Error (200, loc, "Property or indexer `{0}' cannot be assigned to (it is read-only)",
7322                                         GetSignatureForError ());
7323                                 return null;
7324                         }
7325
7326                         if (!best_candidate.Set.IsAccessible (rc) || !best_candidate.Set.DeclaringType.IsAccessible (rc)) {
7327                                 if (best_candidate.HasDifferentAccessibility) {
7328                                         rc.Report.SymbolRelatedToPreviousError (best_candidate.Set);
7329                                         rc.Report.Error (272, loc, "The property or indexer `{0}' cannot be used in this context because the set accessor is inaccessible",
7330                                                 GetSignatureForError ());
7331                                 } else {
7332                                         rc.Report.SymbolRelatedToPreviousError (best_candidate.Set);
7333                                         ErrorIsInaccesible (rc, best_candidate.GetSignatureForError (), loc);
7334                                 }
7335                         }
7336
7337                         if (best_candidate.HasDifferentAccessibility)
7338                                 CheckProtectedMemberAccess (rc, best_candidate.Set);
7339
7340                         setter = CandidateToBaseOverride (rc, best_candidate.Set);
7341                         return this;
7342                 }
7343
7344                 void EmitConditionalAccess (EmitContext ec, ref CallEmitter call, MethodSpec method, Arguments arguments)
7345                 {
7346                         var ca = ec.ConditionalAccess;
7347                         ec.ConditionalAccess = new ConditionalAccessContext (type, ec.DefineLabel ());
7348
7349                         call.Emit (ec, method, arguments, loc);
7350
7351                         ec.CloseConditionalAccess (method.ReturnType != type && type.IsNullableType ? type : null);
7352                         ec.ConditionalAccess = ca;
7353                 }
7354
7355                 //
7356                 // Implements the IAssignMethod interface for assignments
7357                 //
7358                 public virtual void Emit (EmitContext ec, bool leave_copy)
7359                 {
7360                         var call = new CallEmitter ();
7361                         call.ConditionalAccess = ConditionalAccess;
7362                         call.InstanceExpression = InstanceExpression;
7363                         if (has_await_arguments)
7364                                 call.HasAwaitArguments = true;
7365                         else
7366                                 call.DuplicateArguments = emitting_compound_assignment;
7367
7368                         if (conditional_access_receiver)
7369                                 EmitConditionalAccess (ec, ref call, Getter, Arguments);
7370                         else
7371                                 call.Emit (ec, Getter, Arguments, loc);
7372
7373                         if (call.HasAwaitArguments) {
7374                                 InstanceExpression = call.InstanceExpression;
7375                                 Arguments = call.EmittedArguments;
7376                                 has_await_arguments = true;
7377                         }
7378
7379                         if (leave_copy) {
7380                                 ec.Emit (OpCodes.Dup);
7381                                 temp = new LocalTemporary (Type);
7382                                 temp.Store (ec);
7383                         }
7384                 }
7385
7386                 public abstract void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound);
7387
7388                 public override void Emit (EmitContext ec)
7389                 {
7390                         Emit (ec, false);
7391                 }
7392
7393                 protected override FieldExpr EmitToFieldSource (EmitContext ec)
7394                 {
7395                         has_await_arguments = true;
7396                         Emit (ec, false);
7397                         return null;
7398                 }
7399
7400                 public abstract SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source);
7401
7402                 protected abstract Expression OverloadResolve (ResolveContext rc, Expression right_side);
7403
7404                 bool ResolveGetter (ResolveContext rc)
7405                 {
7406                         if (!best_candidate.HasGet) {
7407                                 if (InstanceExpression != EmptyExpression.Null) {
7408                                         rc.Report.SymbolRelatedToPreviousError (best_candidate);
7409                                         rc.Report.Error (154, loc, "The property or indexer `{0}' cannot be used in this context because it lacks the `get' accessor",
7410                                                 best_candidate.GetSignatureForError ());
7411                                         return false;
7412                                 }
7413                         } else if (!best_candidate.Get.IsAccessible (rc) || !best_candidate.Get.DeclaringType.IsAccessible (rc)) {
7414                                 if (best_candidate.HasDifferentAccessibility) {
7415                                         rc.Report.SymbolRelatedToPreviousError (best_candidate.Get);
7416                                         rc.Report.Error (271, loc, "The property or indexer `{0}' cannot be used in this context because the get accessor is inaccessible",
7417                                                 TypeManager.CSharpSignature (best_candidate));
7418                                 } else {
7419                                         rc.Report.SymbolRelatedToPreviousError (best_candidate.Get);
7420                                         ErrorIsInaccesible (rc, best_candidate.Get.GetSignatureForError (), loc);
7421                                 }
7422                         }
7423
7424                         if (best_candidate.HasDifferentAccessibility) {
7425                                 CheckProtectedMemberAccess (rc, best_candidate.Get);
7426                         }
7427
7428                         getter = CandidateToBaseOverride (rc, best_candidate.Get);
7429                         return true;
7430                 }
7431
7432                 protected virtual bool ResolveAutopropertyAssignment (ResolveContext rc, Expression rhs)
7433                 {
7434                         return false;
7435                 }
7436         }
7437
7438         /// <summary>
7439         ///   Fully resolved expression that evaluates to an Event
7440         /// </summary>
7441         public class EventExpr : MemberExpr, IAssignMethod
7442         {
7443                 readonly EventSpec spec;
7444                 MethodSpec op;
7445
7446                 public EventExpr (EventSpec spec, Location loc)
7447                 {
7448                         this.spec = spec;
7449                         this.loc = loc;
7450                 }
7451
7452                 #region Properties
7453
7454                 protected override TypeSpec DeclaringType {
7455                         get {
7456                                 return spec.DeclaringType;
7457                         }
7458                 }
7459
7460                 public override string Name {
7461                         get {
7462                                 return spec.Name;
7463                         }
7464                 }
7465
7466                 public override bool IsInstance {
7467                         get {
7468                                 return !spec.IsStatic;
7469                         }
7470                 }
7471
7472                 public override bool IsStatic {
7473                         get {
7474                                 return spec.IsStatic;
7475                         }
7476                 }
7477
7478                 public override string KindName {
7479                         get { return "event"; }
7480                 }
7481
7482                 public MethodSpec Operator {
7483                         get {
7484                                 return op;
7485                         }
7486                 }
7487
7488                 #endregion
7489
7490                 public override MemberExpr ResolveMemberAccess (ResolveContext ec, Expression left, SimpleName original)
7491                 {
7492                         //
7493                         // If the event is local to this class and we are not lhs of +=/-= we transform ourselves into a FieldExpr
7494                         //
7495                         if (!ec.HasSet (ResolveContext.Options.CompoundAssignmentScope)) {
7496                                 if (spec.BackingField != null &&
7497                                         (spec.DeclaringType == ec.CurrentType || TypeManager.IsNestedChildOf (ec.CurrentType, spec.DeclaringType.MemberDefinition))) {
7498
7499                                         spec.MemberDefinition.SetIsUsed ();
7500
7501                                         spec.CheckObsoleteness (ec, loc);
7502
7503                                         if ((spec.Modifiers & (Modifiers.ABSTRACT | Modifiers.EXTERN)) != 0)
7504                                                 Error_AssignmentEventOnly (ec);
7505
7506                                         FieldExpr ml = new FieldExpr (spec.BackingField, loc);
7507
7508                                         InstanceExpression = null;
7509
7510                                         return ml.ResolveMemberAccess (ec, left, original);
7511                                 }
7512                         }
7513
7514                         return base.ResolveMemberAccess (ec, left, original);
7515                 }
7516
7517                 public override Expression CreateExpressionTree (ResolveContext ec)
7518                 {
7519                         throw new NotSupportedException ("ET");
7520                 }
7521
7522                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
7523                 {
7524                         if (right_side == EmptyExpression.EventAddition) {
7525                                 op = spec.AccessorAdd;
7526                         } else if (right_side == EmptyExpression.EventSubtraction) {
7527                                 op = spec.AccessorRemove;
7528                         }
7529
7530                         if (op == null) {
7531                                 Error_AssignmentEventOnly (ec);
7532                                 return null;
7533                         }
7534
7535                         if (HasConditionalAccess ())
7536                                 Error_NullPropagatingLValue (ec);
7537
7538                         op = CandidateToBaseOverride (ec, op);
7539                         return this;
7540                 }
7541
7542                 protected override Expression DoResolve (ResolveContext ec)
7543                 {
7544                         eclass = ExprClass.EventAccess;
7545                         type = spec.MemberType;
7546
7547                         ResolveInstanceExpression (ec, null);
7548
7549                         if (!ec.HasSet (ResolveContext.Options.CompoundAssignmentScope)) {
7550                                 Error_AssignmentEventOnly (ec);
7551                         }
7552
7553                         DoBestMemberChecks (ec, spec);
7554                         return this;
7555                 }               
7556
7557                 public override void Emit (EmitContext ec)
7558                 {
7559                         throw new NotSupportedException ();
7560                         //Error_CannotAssign ();
7561                 }
7562
7563                 #region IAssignMethod Members
7564
7565                 public void Emit (EmitContext ec, bool leave_copy)
7566                 {
7567                         throw new NotImplementedException ();
7568                 }
7569
7570                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
7571                 {
7572                         if (leave_copy || !isCompound)
7573                                 throw new NotImplementedException ("EventExpr::EmitAssign");
7574
7575                         Arguments args = new Arguments (1);
7576                         args.Add (new Argument (source));
7577
7578                         // TODO: Wrong, needs receiver
7579 //                      if (NullShortCircuit) {
7580 //                              ec.ConditionalAccess = new ConditionalAccessContext (type, ec.DefineLabel ());
7581 //                      }
7582
7583                         var call = new CallEmitter ();
7584                         call.InstanceExpression = InstanceExpression;
7585                         call.ConditionalAccess = ConditionalAccess;
7586                         call.EmitStatement (ec, op, args, loc);
7587
7588 //                      if (NullShortCircuit)
7589 //                              ec.CloseConditionalAccess (null);
7590                 }
7591
7592                 #endregion
7593
7594                 void Error_AssignmentEventOnly (ResolveContext ec)
7595                 {
7596                         if (spec.DeclaringType == ec.CurrentType || TypeManager.IsNestedChildOf (ec.CurrentType, spec.DeclaringType.MemberDefinition)) {
7597                                 ec.Report.Error (79, loc,
7598                                         "The event `{0}' can only appear on the left hand side of `+=' or `-=' operator",
7599                                         GetSignatureForError ());
7600                         } else {
7601                                 ec.Report.Error (70, loc,
7602                                         "The event `{0}' can only appear on the left hand side of += or -= when used outside of the type `{1}'",
7603                                         GetSignatureForError (), spec.DeclaringType.GetSignatureForError ());
7604                         }
7605                 }
7606
7607                 protected override void Error_CannotCallAbstractBase (ResolveContext rc, string name)
7608                 {
7609                         name = name.Substring (0, name.LastIndexOf ('.'));
7610                         base.Error_CannotCallAbstractBase (rc, name);
7611                 }
7612
7613                 public override string GetSignatureForError ()
7614                 {
7615                         return TypeManager.CSharpSignature (spec);
7616                 }
7617
7618                 public override void ResolveNameOf (ResolveContext rc, ATypeNameExpression expr)
7619                 {
7620                         spec.CheckObsoleteness (rc, expr.Location);
7621                 }
7622
7623                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
7624                 {
7625                         Error_TypeArgumentsCannotBeUsed (ec, "event", GetSignatureForError (), loc);
7626                 }
7627         }
7628
7629         public class TemporaryVariableReference : VariableReference
7630         {
7631                 public class Declarator : Statement
7632                 {
7633                         TemporaryVariableReference variable;
7634
7635                         public Declarator (TemporaryVariableReference variable)
7636                         {
7637                                 this.variable = variable;
7638                                 loc = variable.loc;
7639                         }
7640
7641                         protected override void DoEmit (EmitContext ec)
7642                         {
7643                                 variable.li.CreateBuilder (ec);
7644                         }
7645
7646                         public override void Emit (EmitContext ec)
7647                         {
7648                                 // Don't create sequence point
7649                                 DoEmit (ec);
7650                         }
7651
7652                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
7653                         {
7654                                 return false;
7655                         }
7656
7657                         protected override void CloneTo (CloneContext clonectx, Statement target)
7658                         {
7659                                 // Nothing
7660                         }
7661                 }
7662
7663                 LocalVariable li;
7664
7665                 public TemporaryVariableReference (LocalVariable li, Location loc)
7666                 {
7667                         this.li = li;
7668                         this.type = li.Type;
7669                         this.loc = loc;
7670                 }
7671
7672                 public override bool IsLockedByStatement {
7673                         get {
7674                                 return false;
7675                         }
7676                         set {
7677                         }
7678                 }
7679
7680                 public LocalVariable LocalInfo {
7681                     get {
7682                         return li;
7683                     }
7684                 }
7685
7686                 public static TemporaryVariableReference Create (TypeSpec type, Block block, Location loc, bool writeToSymbolFile = false)
7687                 {
7688                         var li = LocalVariable.CreateCompilerGenerated (type, block, loc, writeToSymbolFile);
7689                         return new TemporaryVariableReference (li, loc);
7690                 }
7691
7692                 protected override Expression DoResolve (ResolveContext ec)
7693                 {
7694                         eclass = ExprClass.Variable;
7695
7696                         //
7697                         // Don't capture temporary variables except when using
7698                         // state machine redirection and block yields
7699                         //
7700                         if (ec.CurrentAnonymousMethod is StateMachineInitializer &&
7701                                 (ec.CurrentBlock.Explicit.HasYield || ec.CurrentBlock.Explicit.HasAwait) &&
7702                                 ec.IsVariableCapturingRequired) {
7703                                 AnonymousMethodStorey storey = li.Block.Explicit.CreateAnonymousMethodStorey (ec);
7704                                 storey.CaptureLocalVariable (ec, li);
7705                         }
7706
7707                         return this;
7708                 }
7709
7710                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
7711                 {
7712                         return Resolve (ec);
7713                 }
7714                 
7715                 public override void Emit (EmitContext ec)
7716                 {
7717                         li.CreateBuilder (ec);
7718
7719                         Emit (ec, false);
7720                 }
7721
7722                 public void EmitAssign (EmitContext ec, Expression source)
7723                 {
7724                         li.CreateBuilder (ec);
7725
7726                         EmitAssign (ec, source, false, false);
7727                 }
7728
7729                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
7730                 {
7731                         return li.HoistedVariant;
7732                 }
7733
7734                 public override bool IsFixed {
7735                         get { return true; }
7736                 }
7737
7738                 public override bool IsRef {
7739                         get { return false; }
7740                 }
7741
7742                 public override string Name {
7743                         get { throw new NotImplementedException (); }
7744                 }
7745
7746                 public override void SetHasAddressTaken ()
7747                 {
7748                         throw new NotImplementedException ();
7749                 }
7750
7751                 protected override ILocalVariable Variable {
7752                         get { return li; }
7753                 }
7754
7755                 public override VariableInfo VariableInfo {
7756                         get { return null; }
7757                 }
7758         }
7759
7760         /// 
7761         /// Handles `var' contextual keyword; var becomes a keyword only
7762         /// if no type called var exists in a variable scope
7763         /// 
7764         class VarExpr : SimpleName
7765         {
7766                 public VarExpr (Location loc)
7767                         : base ("var", loc)
7768                 {
7769                 }
7770
7771                 public bool InferType (ResolveContext ec, Expression right_side)
7772                 {
7773                         if (type != null)
7774                                 throw new InternalErrorException ("An implicitly typed local variable could not be redefined");
7775                         
7776                         type = right_side.Type;
7777                         if (type == InternalType.NullLiteral || type.Kind == MemberKind.Void || type == InternalType.AnonymousMethod || type == InternalType.MethodGroup) {
7778                                 ec.Report.Error (815, loc,
7779                                         "An implicitly typed local variable declaration cannot be initialized with `{0}'",
7780                                         type.GetSignatureForError ());
7781                                 type = InternalType.ErrorType;
7782                                 return false;
7783                         }
7784
7785                         eclass = ExprClass.Variable;
7786                         return true;
7787                 }
7788
7789                 protected override void Error_TypeOrNamespaceNotFound (IMemberContext ec)
7790                 {
7791                         if (ec.Module.Compiler.Settings.Version < LanguageVersion.V_3)
7792                                 base.Error_TypeOrNamespaceNotFound (ec);
7793                         else
7794                                 ec.Module.Compiler.Report.Error (825, loc, "The contextual keyword `var' may only appear within a local variable declaration");
7795                 }
7796         }
7797 }